xmlui 0.11.22 → 0.11.23

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.
@@ -466,22 +466,22 @@ function getElementRef(element) {
466
466
  return element.props.ref || element.ref;
467
467
  }
468
468
  const themeVars$11 = `'{"textColor-FormItemLabel": "var(--xmlui-textColor-FormItemLabel)", "fontFamily-FormItemLabel": "var(--xmlui-fontFamily-FormItemLabel)", "fontSize-FormItemLabel": "var(--xmlui-fontSize-FormItemLabel)", "fontWeight-FormItemLabel": "var(--xmlui-fontWeight-FormItemLabel)", "fontStyle-FormItemLabel": "var(--xmlui-fontStyle-FormItemLabel)", "textTransform-FormItemLabel": "var(--xmlui-textTransform-FormItemLabel)", "textColor-FormItemLabel-required": "var(--xmlui-textColor-FormItemLabel-required)", "fontSize-FormItemLabel-required": "var(--xmlui-fontSize-FormItemLabel-required)", "fontWeight-FormItemLabel-required": "var(--xmlui-fontWeight-FormItemLabel-required)", "fontStyle-FormItemLabel-required": "var(--xmlui-fontStyle-FormItemLabel-required)", "textTransform-FormItemLabel-required": "var(--xmlui-textTransform-FormItemLabel-required)", "textColor-FormItemLabel-requiredMark": "var(--xmlui-textColor-FormItemLabel-requiredMark)"}'`;
469
- const container$3 = "_container_ni4pj_14";
470
- const top$1 = "_top_ni4pj_21";
471
- const end = "_end_ni4pj_26";
472
- const bottom$1 = "_bottom_ni4pj_31";
473
- const start = "_start_ni4pj_36";
474
- const shrinkToLabel = "_shrinkToLabel_ni4pj_41";
475
- const inputLabel = "_inputLabel_ni4pj_44";
476
- const labelBreak = "_labelBreak_ni4pj_57";
477
- const required = "_required_ni4pj_62";
478
- const disabled$c = "_disabled_ni4pj_69";
479
- const requiredMark = "_requiredMark_ni4pj_73";
480
- const itemWithLabel = "_itemWithLabel_ni4pj_77";
481
- const wrapper$m = "_wrapper_ni4pj_82";
482
- const validationResultWrapper = "_validationResultWrapper_ni4pj_90";
483
- const helperTextContainer = "_helperTextContainer_ni4pj_93";
484
- const labelWrapper$1 = "_labelWrapper_ni4pj_96";
469
+ const container$3 = "_container_j6ob6_14";
470
+ const top$1 = "_top_j6ob6_21";
471
+ const end = "_end_j6ob6_26";
472
+ const bottom$1 = "_bottom_j6ob6_32";
473
+ const start = "_start_j6ob6_37";
474
+ const shrinkToLabel = "_shrinkToLabel_j6ob6_43";
475
+ const inputLabel = "_inputLabel_j6ob6_46";
476
+ const labelBreak = "_labelBreak_j6ob6_59";
477
+ const required = "_required_j6ob6_64";
478
+ const disabled$c = "_disabled_j6ob6_71";
479
+ const requiredMark = "_requiredMark_j6ob6_75";
480
+ const itemWithLabel = "_itemWithLabel_j6ob6_79";
481
+ const wrapper$i = "_wrapper_j6ob6_84";
482
+ const validationResultWrapper = "_validationResultWrapper_j6ob6_92";
483
+ const helperTextContainer = "_helperTextContainer_j6ob6_95";
484
+ const labelWrapper$1 = "_labelWrapper_j6ob6_98";
485
485
  const styles$1k = {
486
486
  themeVars: themeVars$11,
487
487
  container: container$3,
@@ -496,7 +496,7 @@ const styles$1k = {
496
496
  disabled: disabled$c,
497
497
  requiredMark,
498
498
  itemWithLabel,
499
- wrapper: wrapper$m,
499
+ wrapper: wrapper$i,
500
500
  validationResultWrapper,
501
501
  helperTextContainer,
502
502
  labelWrapper: labelWrapper$1
@@ -609,6 +609,9 @@ const ItemWithLabel = forwardRef(function ItemWithLabel2({
609
609
  isInputTemplateUsed = false,
610
610
  onLabelClick,
611
611
  layoutContext,
612
+ // Destructured to prevent passing to DOM
613
+ testId,
614
+ cloneStyle = false,
612
615
  ...rest
613
616
  }, ref) {
614
617
  const generatedId2 = useId();
@@ -670,9 +673,8 @@ const ItemWithLabel = forwardRef(function ItemWithLabel2({
670
673
  /* @__PURE__ */ jsxs("div", { className: styles$1k.wrapper, children: [
671
674
  /* @__PURE__ */ jsx(Part, { partId: PART_LABELED_ITEM, children: cloneElement(children, {
672
675
  id: !isInputTemplateUsed ? inputId : void 0,
673
- style: void 0,
674
- className: void 0,
675
- ref: inputRef
676
+ ref: inputRef,
677
+ ...cloneStyle ? {} : { style: void 0, className: void 0 }
676
678
  }) }),
677
679
  validationResult && /* @__PURE__ */ jsx("div", { className: styles$1k.validationResultWrapper, children: validationResult })
678
680
  ] })
@@ -859,6 +861,14 @@ const styles$1i = {
859
861
  base: base$2,
860
862
  clickable: clickable$3
861
863
  };
864
+ function partitionObject(obj, discriminator) {
865
+ return Object.entries(obj).reduce(
866
+ ([pass, fail], [key, value]) => {
867
+ return discriminator(key, value) ? [{ ...pass, [key]: value }, fail] : [pass, { ...fail, [key]: value }];
868
+ },
869
+ [{}, {}]
870
+ );
871
+ }
862
872
  let lastIdValue = 1;
863
873
  function generatedId() {
864
874
  return `$qid_${lastIdValue++}`;
@@ -3575,14 +3585,14 @@ const chStackComponentRenderer = createComponentRenderer(
3575
3585
  }
3576
3586
  );
3577
3587
  const themeVars$Z = `'{"padding-TextBox": "var(--xmlui-padding-TextBox)", "paddingHorizontal-TextBox": "var(--xmlui-paddingHorizontal-TextBox, var(--xmlui-padding-TextBox))", "paddingVertical-TextBox": "var(--xmlui-paddingVertical-TextBox, var(--xmlui-padding-TextBox))", "paddingLeft-TextBox": "var(--xmlui-paddingLeft-TextBox, var(--xmlui-paddingHorizontal-TextBox, var(--xmlui-padding-TextBox)))", "paddingRight-TextBox": "var(--xmlui-paddingRight-TextBox, var(--xmlui-paddingHorizontal-TextBox, var(--xmlui-padding-TextBox)))", "paddingTop-TextBox": "var(--xmlui-paddingTop-TextBox, var(--xmlui-paddingVertical-TextBox, var(--xmlui-padding-TextBox)))", "paddingBottom-TextBox": "var(--xmlui-paddingBottom-TextBox, var(--xmlui-paddingVertical-TextBox, var(--xmlui-padding-TextBox)))", "Input:backgroundColor-TextBox--disabled": "var(--xmlui-backgroundColor-TextBox--disabled)", "Input:borderRadius-TextBox--default": "var(--xmlui-borderRadius-TextBox--default)", "Input:borderRadius-TextBox--error": "var(--xmlui-borderRadius-TextBox--error)", "Input:borderRadius-TextBox--warning": "var(--xmlui-borderRadius-TextBox--warning)", "Input:borderRadius-TextBox--success": "var(--xmlui-borderRadius-TextBox--success)", "Input:borderColor-TextBox--default": "var(--xmlui-borderColor-TextBox--default)", "Input:borderWidth-TextBox--default": "var(--xmlui-borderWidth-TextBox--default)", "Input:borderStyle-TextBox--default": "var(--xmlui-borderStyle-TextBox--default)", "Input:fontSize-TextBox--default": "var(--xmlui-fontSize-TextBox--default)", "Input:backgroundColor-TextBox--default": "var(--xmlui-backgroundColor-TextBox--default)", "Input:boxShadow-TextBox--default": "var(--xmlui-boxShadow-TextBox--default)", "Input:textColor-TextBox--default": "var(--xmlui-textColor-TextBox--default)", "Input:borderColor-TextBox--default--hover": "var(--xmlui-borderColor-TextBox--default--hover)", "Input:backgroundColor-TextBox--default--hover": "var(--xmlui-backgroundColor-TextBox--default--hover)", "Input:boxShadow-TextBox--default--hover": "var(--xmlui-boxShadow-TextBox--default--hover)", "Input:textColor-TextBox--default--hover": "var(--xmlui-textColor-TextBox--default--hover)", "Input:borderColor-TextBox--default--focus": "var(--xmlui-borderColor-TextBox--default--focus)", "Input:backgroundColor-TextBox--default--focus": "var(--xmlui-backgroundColor-TextBox--default--focus)", "Input:boxShadow-TextBox--default--focus": "var(--xmlui-boxShadow-TextBox--default--focus)", "Input:textColor-TextBox--default--focus": "var(--xmlui-textColor-TextBox--default--focus)", "Input:outlineWidth-TextBox--default--focus": "var(--xmlui-outlineWidth-TextBox--default--focus)", "Input:outlineColor-TextBox--default--focus": "var(--xmlui-outlineColor-TextBox--default--focus)", "Input:outlineStyle-TextBox--default--focus": "var(--xmlui-outlineStyle-TextBox--default--focus)", "Input:outlineOffset-TextBox--default--focus": "var(--xmlui-outlineOffset-TextBox--default--focus)", "Input:textColor-placeholder-TextBox--default": "var(--xmlui-textColor-placeholder-TextBox--default)", "Input:fontSize-placeholder-TextBox--default": "var(--xmlui-fontSize-placeholder-TextBox--default)", "Input:color-adornment-TextBox--default": "var(--xmlui-color-adornment-TextBox--default)", "Input:borderColor-TextBox--error": "var(--xmlui-borderColor-TextBox--error)", "Input:borderWidth-TextBox--error": "var(--xmlui-borderWidth-TextBox--error)", "Input:borderStyle-TextBox--error": "var(--xmlui-borderStyle-TextBox--error)", "Input:fontSize-TextBox--error": "var(--xmlui-fontSize-TextBox--error)", "Input:backgroundColor-TextBox--error": "var(--xmlui-backgroundColor-TextBox--error)", "Input:boxShadow-TextBox--error": "var(--xmlui-boxShadow-TextBox--error)", "Input:textColor-TextBox--error": "var(--xmlui-textColor-TextBox--error)", "Input:borderColor-TextBox--error--hover": "var(--xmlui-borderColor-TextBox--error--hover)", "Input:backgroundColor-TextBox--error--hover": "var(--xmlui-backgroundColor-TextBox--error--hover)", "Input:boxShadow-TextBox--error--hover": "var(--xmlui-boxShadow-TextBox--error--hover)", "Input:textColor-TextBox--error--hover": "var(--xmlui-textColor-TextBox--error--hover)", "Input:borderColor-TextBox--error--focus": "var(--xmlui-borderColor-TextBox--error--focus)", "Input:backgroundColor-TextBox--error--focus": "var(--xmlui-backgroundColor-TextBox--error--focus)", "Input:boxShadow-TextBox--error--focus": "var(--xmlui-boxShadow-TextBox--error--focus)", "Input:textColor-TextBox--error--focus": "var(--xmlui-textColor-TextBox--error--focus)", "Input:outlineWidth-TextBox--error--focus": "var(--xmlui-outlineWidth-TextBox--error--focus)", "Input:outlineColor-TextBox--error--focus": "var(--xmlui-outlineColor-TextBox--error--focus)", "Input:outlineStyle-TextBox--error--focus": "var(--xmlui-outlineStyle-TextBox--error--focus)", "Input:outlineOffset-TextBox--error--focus": "var(--xmlui-outlineOffset-TextBox--error--focus)", "Input:textColor-placeholder-TextBox--error": "var(--xmlui-textColor-placeholder-TextBox--error)", "Input:fontSize-placeholder-TextBox--error": "var(--xmlui-fontSize-placeholder-TextBox--error)", "Input:color-adornment-TextBox--error": "var(--xmlui-color-adornment-TextBox--error)", "Input:borderColor-TextBox--warning": "var(--xmlui-borderColor-TextBox--warning)", "Input:borderWidth-TextBox--warning": "var(--xmlui-borderWidth-TextBox--warning)", "Input:borderStyle-TextBox--warning": "var(--xmlui-borderStyle-TextBox--warning)", "Input:fontSize-TextBox--warning": "var(--xmlui-fontSize-TextBox--warning)", "Input:backgroundColor-TextBox--warning": "var(--xmlui-backgroundColor-TextBox--warning)", "Input:boxShadow-TextBox--warning": "var(--xmlui-boxShadow-TextBox--warning)", "Input:textColor-TextBox--warning": "var(--xmlui-textColor-TextBox--warning)", "Input:borderColor-TextBox--warning--hover": "var(--xmlui-borderColor-TextBox--warning--hover)", "Input:backgroundColor-TextBox--warning--hover": "var(--xmlui-backgroundColor-TextBox--warning--hover)", "Input:boxShadow-TextBox--warning--hover": "var(--xmlui-boxShadow-TextBox--warning--hover)", "Input:textColor-TextBox--warning--hover": "var(--xmlui-textColor-TextBox--warning--hover)", "Input:borderColor-TextBox--warning--focus": "var(--xmlui-borderColor-TextBox--warning--focus)", "Input:backgroundColor-TextBox--warning--focus": "var(--xmlui-backgroundColor-TextBox--warning--focus)", "Input:boxShadow-TextBox--warning--focus": "var(--xmlui-boxShadow-TextBox--warning--focus)", "Input:textColor-TextBox--warning--focus": "var(--xmlui-textColor-TextBox--warning--focus)", "Input:outlineWidth-TextBox--warning--focus": "var(--xmlui-outlineWidth-TextBox--warning--focus)", "Input:outlineColor-TextBox--warning--focus": "var(--xmlui-outlineColor-TextBox--warning--focus)", "Input:outlineStyle-TextBox--warning--focus": "var(--xmlui-outlineStyle-TextBox--warning--focus)", "Input:outlineOffset-TextBox--warning--focus": "var(--xmlui-outlineOffset-TextBox--warning--focus)", "Input:textColor-placeholder-TextBox--warning": "var(--xmlui-textColor-placeholder-TextBox--warning)", "Input:fontSize-placeholder-TextBox--warning": "var(--xmlui-fontSize-placeholder-TextBox--warning)", "Input:color-adornment-TextBox--warning": "var(--xmlui-color-adornment-TextBox--warning)", "Input:borderColor-TextBox--success": "var(--xmlui-borderColor-TextBox--success)", "Input:borderWidth-TextBox--success": "var(--xmlui-borderWidth-TextBox--success)", "Input:borderStyle-TextBox--success": "var(--xmlui-borderStyle-TextBox--success)", "Input:fontSize-TextBox--success": "var(--xmlui-fontSize-TextBox--success)", "Input:backgroundColor-TextBox--success": "var(--xmlui-backgroundColor-TextBox--success)", "Input:boxShadow-TextBox--success": "var(--xmlui-boxShadow-TextBox--success)", "Input:textColor-TextBox--success": "var(--xmlui-textColor-TextBox--success)", "Input:borderColor-TextBox--success--hover": "var(--xmlui-borderColor-TextBox--success--hover)", "Input:backgroundColor-TextBox--success--hover": "var(--xmlui-backgroundColor-TextBox--success--hover)", "Input:boxShadow-TextBox--success--hover": "var(--xmlui-boxShadow-TextBox--success--hover)", "Input:textColor-TextBox--success--hover": "var(--xmlui-textColor-TextBox--success--hover)", "Input:borderColor-TextBox--success--focus": "var(--xmlui-borderColor-TextBox--success--focus)", "Input:backgroundColor-TextBox--success--focus": "var(--xmlui-backgroundColor-TextBox--success--focus)", "Input:boxShadow-TextBox--success--focus": "var(--xmlui-boxShadow-TextBox--success--focus)", "Input:textColor-TextBox--success--focus": "var(--xmlui-textColor-TextBox--success--focus)", "Input:outlineWidth-TextBox--success--focus": "var(--xmlui-outlineWidth-TextBox--success--focus)", "Input:outlineColor-TextBox--success--focus": "var(--xmlui-outlineColor-TextBox--success--focus)", "Input:outlineStyle-TextBox--success--focus": "var(--xmlui-outlineStyle-TextBox--success--focus)", "Input:outlineOffset-TextBox--success--focus": "var(--xmlui-outlineOffset-TextBox--success--focus)", "Input:textColor-placeholder-TextBox--success": "var(--xmlui-textColor-placeholder-TextBox--success)", "Input:fontSize-placeholder-TextBox--success": "var(--xmlui-fontSize-placeholder-TextBox--success)", "Input:color-adornment-TextBox--success": "var(--xmlui-color-adornment-TextBox--success)", "Input:color-passwordToggle-TextBox": "var(--xmlui-color-passwordToggle-TextBox)", "Input:paddingLeft-passwordToggle-TextBox": "var(--xmlui-paddingLeft-passwordToggle-TextBox)", "Input:paddingRight-passwordToggle-TextBox": "var(--xmlui-paddingRight-passwordToggle-TextBox)", "Input:color-passwordToggle-TextBox--hover": "var(--xmlui-color-passwordToggle-TextBox--hover)", "Input:color-passwordToggle-TextBox--focus": "var(--xmlui-color-passwordToggle-TextBox--focus)", "Input:gap-adornment-TextBox": "var(--xmlui-gap-adornment-TextBox)", "Input:textColor-TextBox--disabled": "var(--xmlui-textColor-TextBox--disabled)", "Input:borderColor-TextBox--disabled": "var(--xmlui-borderColor-TextBox--disabled)"}'`;
3578
- const inputRoot$1 = "_inputRoot_9uz5t_14";
3579
- const input$3 = "_input_9uz5t_14";
3580
- const adornment$4 = "_adornment_9uz5t_59";
3581
- const passwordToggle = "_passwordToggle_9uz5t_62";
3582
- const error$d = "_error_9uz5t_74";
3583
- const warning$e = "_warning_9uz5t_121";
3584
- const valid$d = "_valid_9uz5t_168";
3585
- const readOnly$4 = "_readOnly_9uz5t_238";
3588
+ const inputRoot$1 = "_inputRoot_1v8nc_14";
3589
+ const input$3 = "_input_1v8nc_14";
3590
+ const adornment$4 = "_adornment_1v8nc_60";
3591
+ const passwordToggle = "_passwordToggle_1v8nc_66";
3592
+ const error$d = "_error_1v8nc_78";
3593
+ const warning$e = "_warning_1v8nc_128";
3594
+ const valid$d = "_valid_1v8nc_178";
3595
+ const readOnly$4 = "_readOnly_1v8nc_251";
3586
3596
  const styles$1g = {
3587
3597
  themeVars: themeVars$Z,
3588
3598
  inputRoot: inputRoot$1,
@@ -3594,52 +3604,52 @@ const styles$1g = {
3594
3604
  valid: valid$d,
3595
3605
  readOnly: readOnly$4
3596
3606
  };
3597
- const wrapper$l = "_wrapper_vi4am_14";
3607
+ const wrapper$h = "_wrapper_vi4am_14";
3598
3608
  const clickable$2 = "_clickable_vi4am_22";
3599
3609
  const styles$1f = {
3600
- wrapper: wrapper$l,
3610
+ wrapper: wrapper$h,
3601
3611
  clickable: clickable$2
3602
3612
  };
3603
- const themeVars$Y = `'{"textColor-Text": "var(--xmlui-textColor-Text)", "fontFamily-Text": "var(--xmlui-fontFamily-Text)", "fontSize-Text": "var(--xmlui-fontSize-Text)", "fontStyle-Text": "var(--xmlui-fontStyle-Text)", "fontVariant-Text": "var(--xmlui-fontVariant-Text)", "fontWeight-Text": "var(--xmlui-fontWeight-Text)", "fontStretch-Text": "var(--xmlui-fontStretch-Text)", "textDecorationLine-Text": "var(--xmlui-textDecorationLine-Text)", "textDecorationColor-Text": "var(--xmlui-textDecorationColor-Text)", "textDecorationStyle-Text": "var(--xmlui-textDecorationStyle-Text)", "textDecorationThickness-Text": "var(--xmlui-textDecorationThickness-Text)", "textUnderlineOffset-Text": "var(--xmlui-textUnderlineOffset-Text)", "lineHeight-Text": "var(--xmlui-lineHeight-Text)", "backgroundColor-Text": "var(--xmlui-backgroundColor-Text)", "textTransform-Text": "var(--xmlui-textTransform-Text)", "letterSpacing-Text": "var(--xmlui-letterSpacing-Text)", "wordSpacing-Text": "var(--xmlui-wordSpacing-Text)", "textShadow-Text": "var(--xmlui-textShadow-Text)", "textIndent-Text": "var(--xmlui-textIndent-Text)", "textAlign-Text": "var(--xmlui-textAlign-Text)", "textAlignLast-Text": "var(--xmlui-textAlignLast-Text)", "wordBreak-Text": "var(--xmlui-wordBreak-Text)", "wordWrap-Text": "var(--xmlui-wordWrap-Text)", "direction-Text": "var(--xmlui-direction-Text)", "writingMode-Text": "var(--xmlui-writingMode-Text)", "lineBreak-Text": "var(--xmlui-lineBreak-Text)", "marginTop-Text": "var(--xmlui-marginTop-Text)", "marginBottom-Text": "var(--xmlui-marginBottom-Text)", "marginLeft-Text": "var(--xmlui-marginLeft-Text)", "marginRight-Text": "var(--xmlui-marginRight-Text)", "verticalAlignment-Text": "var(--xmlui-verticalAlignment-Text)", "textColor-Text--hover": "var(--xmlui-textColor-Text--hover)", "marginTop-Text-small": "var(--xmlui-marginTop-Text-small)", "marginBottom-Text-small": "var(--xmlui-marginBottom-Text-small)", "marginLeft-Text-small": "var(--xmlui-marginLeft-Text-small)", "marginRight-Text-small": "var(--xmlui-marginRight-Text-small)", "verticalAlignment-Text-small": "var(--xmlui-verticalAlignment-Text-small)", "textColor-Text-small--hover": "var(--xmlui-textColor-Text-small--hover)", "marginTop-Text-code": "var(--xmlui-marginTop-Text-code)", "marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)", "marginLeft-Text-code": "var(--xmlui-marginLeft-Text-code)", "marginRight-Text-code": "var(--xmlui-marginRight-Text-code)", "verticalAlignment-Text-code": "var(--xmlui-verticalAlignment-Text-code)", "textColor-Text-code--hover": "var(--xmlui-textColor-Text-code--hover)", "fontWeight-Text-abbr": "var(--xmlui-fontWeight-Text-abbr)", "textTransform-Text-abbr": "var(--xmlui-textTransform-Text-abbr)", "fontStyle-Text-cite": "var(--xmlui-fontStyle-Text-cite)", "fontStyle-Text-em": "var(--xmlui-fontStyle-Text-em)", "textDecorationLine-Text-deleted": "var(--xmlui-textDecorationLine-Text-deleted)", "textDecorationColor-Text-deleted": "var(--xmlui-textDecorationColor-Text-deleted)", "textDecorationStyle-Text-deleted": "var(--xmlui-textDecorationStyle-Text-deleted)", "textDecorationThickness-Text-deleted": "var(--xmlui-textDecorationThickness-Text-deleted)", "textDecorationLine-Text-inserted": "var(--xmlui-textDecorationLine-Text-inserted)", "textDecorationColor-Text-inserted": "var(--xmlui-textDecorationColor-Text-inserted)", "textDecorationStyle-Text-inserted": "var(--xmlui-textDecorationStyle-Text-inserted)", "textDecorationThickness-Text-inserted": "var(--xmlui-textDecorationThickness-Text-inserted)", "backgroundColor-Text-keyboard": "var(--xmlui-backgroundColor-Text-keyboard)", "fontFamily-Text-keyboard": "var(--xmlui-fontFamily-Text-keyboard)", "fontWeight-Text-keyboard": "var(--xmlui-fontWeight-Text-keyboard)", "fontSize-Text-keyboard": "var(--xmlui-fontSize-Text-keyboard)", "borderWidth-Text-keyboard": "var(--xmlui-borderWidth-Text-keyboard)", "borderColor-Text-keyboard": "var(--xmlui-borderColor-Text-keyboard)", "borderStyle-Text-keyboard": "var(--xmlui-borderStyle-Text-keyboard)", "borderRadius-Text-keyboard": "var(--xmlui-borderRadius-Text-keyboard)", "paddingHorizontal-Text-keyboard": "var(--xmlui-paddingHorizontal-Text-keyboard)", "backgroundColor-Text-marked": "var(--xmlui-backgroundColor-Text-marked)", "textColor-Text-marked": "var(--xmlui-textColor-Text-marked)", "fontWeight-Text-marked": "var(--xmlui-fontWeight-Text-marked)", "fontStyle-Text-marked": "var(--xmlui-fontStyle-Text-marked)", "lineHeight-Text-marked": "var(--xmlui-lineHeight-Text-marked)", "fontFamily-Text-mono": "var(--xmlui-fontFamily-Text-mono)", "fontFamily-Text-sample": "var(--xmlui-fontFamily-Text-sample)", "fontSize-Text-sample": "var(--xmlui-fontSize-Text-sample)", "fontSize-Text-sup": "var(--xmlui-fontSize-Text-sup)", "verticalAlignment-Text-sup": "var(--xmlui-verticalAlignment-Text-sup)", "fontSize-Text-sub": "var(--xmlui-fontSize-Text-sub)", "verticalAlignment-Text-sub": "var(--xmlui-verticalAlignment-Text-sub)", "fontStyle-Text-var": "var(--xmlui-fontStyle-Text-var)", "fontSize-Text-title": "var(--xmlui-fontSize-Text-title)", "fontSize-Text-subtitle": "var(--xmlui-fontSize-Text-subtitle)", "letterSpacing-Text-caption": "var(--xmlui-letterSpacing-Text-caption)", "textColor-Text-placeholder": "var(--xmlui-textColor-Text-placeholder)", "fontStyle-Text-placeholder": "var(--xmlui-fontStyle-Text-placeholder)", "fontWeight-Text-placeholder": "var(--xmlui-fontWeight-Text-placeholder)", "fontSize-Text-placeholder": "var(--xmlui-fontSize-Text-placeholder)", "fontSize-Text-paragraph": "var(--xmlui-fontSize-Text-paragraph)", "paddingVertical-Text-paragraph": "var(--xmlui-paddingVertical-Text-paragraph)", "fontSize-Text-subheading": "var(--xmlui-fontSize-Text-subheading)", "fontWeight-Text-subheading": "var(--xmlui-fontWeight-Text-subheading)", "fontStyle-Text-subheading": "var(--xmlui-fontStyle-Text-subheading)", "letterSpacing-Text-subheading": "var(--xmlui-letterSpacing-Text-subheading)", "textTransform-Text-subheading": "var(--xmlui-textTransform-Text-subheading)", "textColor-Text-subheading": "var(--xmlui-textColor-Text-subheading)", "marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)", "marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)", "paddingHorizontal-Text-tableheading": "var(--xmlui-paddingHorizontal-Text-tableheading)", "fontSize-Text-tableheading": "var(--xmlui-fontSize-Text-tableheading)", "fontWeight-Text-tableheading": "var(--xmlui-fontWeight-Text-tableheading)", "fontSize-Text-secondary": "var(--xmlui-fontSize-Text-secondary)", "textColor-Text-secondary": "var(--xmlui-textColor-Text-secondary)"}'`;
3604
- const text = "_text_ewa99_14";
3605
- const inherit = "_inherit_ewa99_82";
3606
- const abbr = "_abbr_ewa99_109";
3607
- const cite = "_cite_ewa99_113";
3608
- const em = "_em_ewa99_116";
3609
- const deleted = "_deleted_ewa99_119";
3610
- const inserted = "_inserted_ewa99_140";
3611
- const keyboard = "_keyboard_ewa99_161";
3612
- const marked = "_marked_ewa99_173";
3613
- const mono = "_mono_ewa99_195";
3614
- const sample = "_sample_ewa99_198";
3615
- const sup = "_sup_ewa99_202";
3616
- const sub = "_sub_ewa99_206";
3617
- const title$3 = "_title_ewa99_213";
3618
- const subtitle = "_subtitle_ewa99_216";
3619
- const small = "_small_ewa99_219";
3620
- const code = "_code_ewa99_279";
3621
- const caption = "_caption_ewa99_339";
3622
- const placeholder$2 = "_placeholder_ewa99_342";
3623
- const paragraph = "_paragraph_ewa99_348";
3624
- const subheading = "_subheading_ewa99_353";
3625
- const tableheading = "_tableheading_ewa99_361";
3626
- const secondary = "_secondary_ewa99_369";
3627
- const strong = "_strong_ewa99_373";
3628
- const truncateOverflow$1 = "_truncateOverflow_ewa99_380";
3629
- const preserveLinebreaks$1 = "_preserveLinebreaks_ewa99_386";
3630
- const noEllipsis$1 = "_noEllipsis_ewa99_390";
3631
- const overflowNone = "_overflowNone_ewa99_393";
3632
- const overflowScroll = "_overflowScroll_ewa99_399";
3633
- const overflowFlow = "_overflowFlow_ewa99_416";
3634
- const breakNormal = "_breakNormal_ewa99_438";
3635
- const breakWord = "_breakWord_ewa99_443";
3636
- const breakAnywhere = "_breakAnywhere_ewa99_447";
3637
- const breakKeep = "_breakKeep_ewa99_452";
3638
- const breakHyphenate = "_breakHyphenate_ewa99_456";
3613
+ const themeVars$Y = `'{"textColor-Text": "var(--xmlui-textColor-Text)", "fontFamily-Text": "var(--xmlui-fontFamily-Text)", "fontSize-Text": "var(--xmlui-fontSize-Text)", "fontStyle-Text": "var(--xmlui-fontStyle-Text)", "fontVariant-Text": "var(--xmlui-fontVariant-Text)", "fontWeight-Text": "var(--xmlui-fontWeight-Text)", "fontStretch-Text": "var(--xmlui-fontStretch-Text)", "textDecorationLine-Text": "var(--xmlui-textDecorationLine-Text)", "textDecorationColor-Text": "var(--xmlui-textDecorationColor-Text)", "textDecorationStyle-Text": "var(--xmlui-textDecorationStyle-Text)", "textDecorationThickness-Text": "var(--xmlui-textDecorationThickness-Text)", "textUnderlineOffset-Text": "var(--xmlui-textUnderlineOffset-Text)", "lineHeight-Text": "var(--xmlui-lineHeight-Text)", "backgroundColor-Text": "var(--xmlui-backgroundColor-Text)", "textTransform-Text": "var(--xmlui-textTransform-Text)", "letterSpacing-Text": "var(--xmlui-letterSpacing-Text)", "wordSpacing-Text": "var(--xmlui-wordSpacing-Text)", "textShadow-Text": "var(--xmlui-textShadow-Text)", "textIndent-Text": "var(--xmlui-textIndent-Text)", "textAlign-Text": "var(--xmlui-textAlign-Text)", "textAlignLast-Text": "var(--xmlui-textAlignLast-Text)", "wordBreak-Text": "var(--xmlui-wordBreak-Text)", "wordWrap-Text": "var(--xmlui-wordWrap-Text)", "direction-Text": "var(--xmlui-direction-Text)", "writingMode-Text": "var(--xmlui-writingMode-Text)", "lineBreak-Text": "var(--xmlui-lineBreak-Text)", "marginTop-Text": "var(--xmlui-marginTop-Text)", "marginBottom-Text": "var(--xmlui-marginBottom-Text)", "marginLeft-Text": "var(--xmlui-marginLeft-Text)", "marginRight-Text": "var(--xmlui-marginRight-Text)", "verticalAlignment-Text": "var(--xmlui-verticalAlignment-Text)", "textColor-Text--hover": "var(--xmlui-textColor-Text--hover)", "marginTop-Text-small": "var(--xmlui-marginTop-Text-small)", "marginBottom-Text-small": "var(--xmlui-marginBottom-Text-small)", "marginLeft-Text-small": "var(--xmlui-marginLeft-Text-small)", "marginRight-Text-small": "var(--xmlui-marginRight-Text-small)", "verticalAlignment-Text-small": "var(--xmlui-verticalAlignment-Text-small)", "textColor-Text-small--hover": "var(--xmlui-textColor-Text-small--hover)", "marginTop-Text-code": "var(--xmlui-marginTop-Text-code)", "marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)", "marginLeft-Text-code": "var(--xmlui-marginLeft-Text-code)", "marginRight-Text-code": "var(--xmlui-marginRight-Text-code)", "verticalAlignment-Text-code": "var(--xmlui-verticalAlignment-Text-code)", "textColor-Text-code--hover": "var(--xmlui-textColor-Text-code--hover)", "fontWeight-Text-abbr": "var(--xmlui-fontWeight-Text-abbr)", "textTransform-Text-abbr": "var(--xmlui-textTransform-Text-abbr)", "fontStyle-Text-cite": "var(--xmlui-fontStyle-Text-cite)", "fontStyle-Text-em": "var(--xmlui-fontStyle-Text-em)", "textDecorationLine-Text-deleted": "var(--xmlui-textDecorationLine-Text-deleted)", "textDecorationColor-Text-deleted": "var(--xmlui-textDecorationColor-Text-deleted)", "textDecorationStyle-Text-deleted": "var(--xmlui-textDecorationStyle-Text-deleted)", "textDecorationThickness-Text-deleted": "var(--xmlui-textDecorationThickness-Text-deleted)", "textDecorationLine-Text-inserted": "var(--xmlui-textDecorationLine-Text-inserted)", "textDecorationColor-Text-inserted": "var(--xmlui-textDecorationColor-Text-inserted)", "textDecorationStyle-Text-inserted": "var(--xmlui-textDecorationStyle-Text-inserted)", "textDecorationThickness-Text-inserted": "var(--xmlui-textDecorationThickness-Text-inserted)", "backgroundColor-Text-keyboard": "var(--xmlui-backgroundColor-Text-keyboard)", "fontFamily-Text-keyboard": "var(--xmlui-fontFamily-Text-keyboard)", "fontWeight-Text-keyboard": "var(--xmlui-fontWeight-Text-keyboard)", "fontSize-Text-keyboard": "var(--xmlui-fontSize-Text-keyboard)", "borderWidth-Text-keyboard": "var(--xmlui-borderWidth-Text-keyboard)", "borderColor-Text-keyboard": "var(--xmlui-borderColor-Text-keyboard)", "borderStyle-Text-keyboard": "var(--xmlui-borderStyle-Text-keyboard)", "borderRadius-Text-keyboard": "var(--xmlui-borderRadius-Text-keyboard)", "paddingHorizontal-Text-keyboard": "var(--xmlui-paddingHorizontal-Text-keyboard)", "backgroundColor-Text-marked": "var(--xmlui-backgroundColor-Text-marked)", "textColor-Text-marked": "var(--xmlui-textColor-Text-marked)", "fontWeight-Text-marked": "var(--xmlui-fontWeight-Text-marked)", "fontStyle-Text-marked": "var(--xmlui-fontStyle-Text-marked)", "lineHeight-Text-marked": "var(--xmlui-lineHeight-Text-marked)", "paddingHorizontal-Text-marked": "var(--xmlui-paddingHorizontal-Text-marked)", "fontFamily-Text-mono": "var(--xmlui-fontFamily-Text-mono)", "fontFamily-Text-sample": "var(--xmlui-fontFamily-Text-sample)", "fontSize-Text-sample": "var(--xmlui-fontSize-Text-sample)", "fontSize-Text-sup": "var(--xmlui-fontSize-Text-sup)", "verticalAlignment-Text-sup": "var(--xmlui-verticalAlignment-Text-sup)", "fontSize-Text-sub": "var(--xmlui-fontSize-Text-sub)", "verticalAlignment-Text-sub": "var(--xmlui-verticalAlignment-Text-sub)", "fontStyle-Text-var": "var(--xmlui-fontStyle-Text-var)", "fontSize-Text-title": "var(--xmlui-fontSize-Text-title)", "fontSize-Text-subtitle": "var(--xmlui-fontSize-Text-subtitle)", "letterSpacing-Text-caption": "var(--xmlui-letterSpacing-Text-caption)", "textColor-Text-placeholder": "var(--xmlui-textColor-Text-placeholder)", "textColor-Text-placeholder--hover": "var(--xmlui-textColor-Text-placeholder--hover)", "fontStyle-Text-placeholder": "var(--xmlui-fontStyle-Text-placeholder)", "fontWeight-Text-placeholder": "var(--xmlui-fontWeight-Text-placeholder)", "fontSize-Text-placeholder": "var(--xmlui-fontSize-Text-placeholder)", "fontSize-Text-paragraph": "var(--xmlui-fontSize-Text-paragraph)", "paddingVertical-Text-paragraph": "var(--xmlui-paddingVertical-Text-paragraph)", "fontSize-Text-subheading": "var(--xmlui-fontSize-Text-subheading)", "fontWeight-Text-subheading": "var(--xmlui-fontWeight-Text-subheading)", "fontStyle-Text-subheading": "var(--xmlui-fontStyle-Text-subheading)", "letterSpacing-Text-subheading": "var(--xmlui-letterSpacing-Text-subheading)", "textTransform-Text-subheading": "var(--xmlui-textTransform-Text-subheading)", "textColor-Text-subheading": "var(--xmlui-textColor-Text-subheading)", "textColor-Text-subheading--hover": "var(--xmlui-textColor-Text-subheading--hover)", "marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)", "marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)", "paddingHorizontal-Text-tableheading": "var(--xmlui-paddingHorizontal-Text-tableheading)", "fontSize-Text-tableheading": "var(--xmlui-fontSize-Text-tableheading)", "fontWeight-Text-tableheading": "var(--xmlui-fontWeight-Text-tableheading)", "fontSize-Text-secondary": "var(--xmlui-fontSize-Text-secondary)", "textColor-Text-secondary": "var(--xmlui-textColor-Text-secondary)", "textColor-Text-secondary--hover": "var(--xmlui-textColor-Text-secondary--hover)"}'`;
3614
+ const text = "_text_176lt_14";
3615
+ const inherit = "_inherit_176lt_82";
3616
+ const abbr = "_abbr_176lt_109";
3617
+ const cite = "_cite_176lt_113";
3618
+ const em = "_em_176lt_116";
3619
+ const deleted = "_deleted_176lt_119";
3620
+ const inserted = "_inserted_176lt_140";
3621
+ const keyboard = "_keyboard_176lt_161";
3622
+ const marked = "_marked_176lt_173";
3623
+ const mono = "_mono_176lt_197";
3624
+ const sample = "_sample_176lt_200";
3625
+ const sup = "_sup_176lt_204";
3626
+ const sub = "_sub_176lt_208";
3627
+ const title$3 = "_title_176lt_215";
3628
+ const subtitle = "_subtitle_176lt_218";
3629
+ const small = "_small_176lt_221";
3630
+ const code = "_code_176lt_281";
3631
+ const caption = "_caption_176lt_341";
3632
+ const placeholder$2 = "_placeholder_176lt_344";
3633
+ const paragraph = "_paragraph_176lt_353";
3634
+ const subheading = "_subheading_176lt_358";
3635
+ const tableheading = "_tableheading_176lt_366";
3636
+ const secondary = "_secondary_176lt_374";
3637
+ const strong = "_strong_176lt_378";
3638
+ const truncateOverflow$1 = "_truncateOverflow_176lt_385";
3639
+ const preserveLinebreaks$1 = "_preserveLinebreaks_176lt_391";
3640
+ const noEllipsis$1 = "_noEllipsis_176lt_395";
3641
+ const overflowNone = "_overflowNone_176lt_398";
3642
+ const overflowScroll = "_overflowScroll_176lt_404";
3643
+ const overflowFlow = "_overflowFlow_176lt_421";
3644
+ const breakNormal = "_breakNormal_176lt_443";
3645
+ const breakWord = "_breakWord_176lt_448";
3646
+ const breakAnywhere = "_breakAnywhere_176lt_452";
3647
+ const breakKeep = "_breakKeep_176lt_457";
3648
+ const breakHyphenate = "_breakHyphenate_176lt_461";
3639
3649
  const styles$1e = {
3640
3650
  themeVars: themeVars$Y,
3641
3651
  text,
3642
- "default": "_default_ewa99_22",
3652
+ "default": "_default_176lt_22",
3643
3653
  inherit,
3644
3654
  abbr,
3645
3655
  cite,
@@ -3652,7 +3662,7 @@ const styles$1e = {
3652
3662
  sample,
3653
3663
  sup,
3654
3664
  sub,
3655
- "var": "_var_ewa99_210",
3665
+ "var": "_var_176lt_212",
3656
3666
  title: title$3,
3657
3667
  subtitle,
3658
3668
  small,
@@ -4750,6 +4760,7 @@ const TextBoxMd = createMetadata({
4750
4760
  themeVars: parseScssVar(styles$1g.themeVars),
4751
4761
  defaultThemeVars: {
4752
4762
  // TODO: When FormItem is themed, move these defaults there
4763
+ "backgroundColor-Input": "$backgroundColor",
4753
4764
  "borderRadius-Input": "$borderRadius",
4754
4765
  "textColor-Input": "$textColor-primary",
4755
4766
  "backgroundColor-Input--disabled": "$backgroundColor--disabled",
@@ -4863,11 +4874,11 @@ const passwordInputComponentRenderer = createComponentRenderer(
4863
4874
  );
4864
4875
  }
4865
4876
  );
4866
- const wrapper$k = "_wrapper_1h2jx_14";
4867
- const root$3 = "_root_1h2jx_17";
4877
+ const root$3 = "_root_zd0ad_14";
4878
+ const themeWrapper = "_themeWrapper_zd0ad_14";
4868
4879
  const styles$1d = {
4869
- wrapper: wrapper$k,
4870
- root: root$3
4880
+ root: root$3,
4881
+ themeWrapper
4871
4882
  };
4872
4883
  function paddingSubject(name, valueSpec) {
4873
4884
  return {
@@ -5113,27 +5124,28 @@ function generateBaseFontSizes(theme2) {
5113
5124
  if (baseTrimmed.startsWith(".")) {
5114
5125
  baseTrimmed = `0${baseTrimmed}`;
5115
5126
  }
5116
- const baseNum = parseFloat(baseTrimmed);
5127
+ let baseNum = parseFloat(baseTrimmed);
5117
5128
  let baseUnit = baseTrimmed.replace(baseNum + "", "") || "px";
5118
- if (Number.isNaN(baseNum)) {
5119
- return {};
5129
+ if (baseUnit !== "px" || Number.isNaN(baseNum)) {
5130
+ baseUnit = "px";
5131
+ baseNum = 16;
5120
5132
  }
5121
5133
  const ret = {};
5122
- ret[`fontSize-tiny`] = `${0.625 * baseNum}${baseUnit}`;
5123
- ret[`fontSize-xs`] = `${0.75 * baseNum}${baseUnit}`;
5124
- ret[`fontSize-code`] = `${0.85 * baseNum}${baseUnit}`;
5125
- ret[`fontSize-sm`] = `${0.875 * baseNum}${baseUnit}`;
5126
- ret[`fontSize-base`] = base2;
5127
- ret[`fontSize-lg`] = `${1.125 * baseNum}${baseUnit}`;
5128
- ret[`fontSize-xl`] = `${1.25 * baseNum}${baseUnit}`;
5129
- ret[`fontSize-2xl`] = `${1.5 * baseNum}${baseUnit}`;
5130
- ret[`fontSize-3xl`] = `${1.875 * baseNum}${baseUnit}`;
5131
- ret[`fontSize-4xl`] = `${2.25 * baseNum}${baseUnit}`;
5132
- ret[`fontSize-5xl`] = `${3 * baseNum}${baseUnit}`;
5133
- ret[`fontSize-6xl`] = `${3.75 * baseNum}${baseUnit}`;
5134
- ret[`fontSize-7xl`] = `${4.5 * baseNum}${baseUnit}`;
5135
- ret[`fontSize-8xl`] = `${6 * baseNum}${baseUnit}`;
5136
- ret[`fontSize-9xl`] = `${8 * baseNum}${baseUnit}`;
5134
+ ret[`const-fontSize-tiny`] = `${0.625 * baseNum}${baseUnit}`;
5135
+ ret[`const-fontSize-xs`] = `${0.75 * baseNum}${baseUnit}`;
5136
+ ret[`const-fontSize-code`] = `${0.85 * baseNum}${baseUnit}`;
5137
+ ret[`const-fontSize-sm`] = `${0.875 * baseNum}${baseUnit}`;
5138
+ ret[`const-fontSize-base`] = base2;
5139
+ ret[`const-fontSize-lg`] = `${1.125 * baseNum}${baseUnit}`;
5140
+ ret[`const-fontSize-xl`] = `${1.25 * baseNum}${baseUnit}`;
5141
+ ret[`const-fontSize-2xl`] = `${1.5 * baseNum}${baseUnit}`;
5142
+ ret[`const-fontSize-3xl`] = `${1.875 * baseNum}${baseUnit}`;
5143
+ ret[`const-fontSize-4xl`] = `${2.25 * baseNum}${baseUnit}`;
5144
+ ret[`const-fontSize-5xl`] = `${3 * baseNum}${baseUnit}`;
5145
+ ret[`const-fontSize-6xl`] = `${3.75 * baseNum}${baseUnit}`;
5146
+ ret[`const-fontSize-7xl`] = `${4.5 * baseNum}${baseUnit}`;
5147
+ ret[`const-fontSize-8xl`] = `${6 * baseNum}${baseUnit}`;
5148
+ ret[`const-fontSize-9xl`] = `${8 * baseNum}${baseUnit}`;
5137
5149
  return ret;
5138
5150
  }
5139
5151
  function generateTextFontSizes(theme2) {
@@ -5722,7 +5734,7 @@ const RootThemeDefinition = {
5722
5734
  },
5723
5735
  themeVars: {
5724
5736
  // --- The unit of measurement for all sizes/spaces
5725
- "space-base": "0.25rem",
5737
+ "space-base": "0.25em",
5726
5738
  // --- Default surface color shades (form white to black)
5727
5739
  "const-color-surface-0": "white",
5728
5740
  "const-color-surface-50": "hsl(204, 30.3%, 96.5%)",
@@ -5830,7 +5842,7 @@ const RootThemeDefinition = {
5830
5842
  "textColor-primary": "$color-surface-950",
5831
5843
  "textColor-attention": "$color-danger-600",
5832
5844
  "textColor-subtitle": "$color-surface-500",
5833
- "textColor--disabled": "$color-surface-400",
5845
+ "textColor--disabled": "$color-surface-500",
5834
5846
  // --- Default background colors (component use these values as their defaults)
5835
5847
  "backgroundColor-primary": "$color-surface-50",
5836
5848
  "backgroundColor-secondary": "$color-surface-50",
@@ -5862,23 +5874,38 @@ const RootThemeDefinition = {
5862
5874
  // --- The app's default font family
5863
5875
  fontFamily: "$fontFamily-sans-serif",
5864
5876
  // --- Various font sizes (relative to the current context)
5865
- "fontSize-tiny": "0.625rem",
5866
- "fontSize-xs": "0.75rem",
5867
- "fontSize-code": "0.85rem",
5868
- "fontSize-sm": "0.875rem",
5869
- "fontSize-base": "1rem",
5870
- "fontSize-lg": "1.125rem",
5871
- "fontSize-xl": "1.25rem",
5872
- "fontSize-2xl": "1.5rem",
5873
- "fontSize-3xl": "1.875rem",
5874
- "fontSize-4xl": "2.25rem",
5875
- "fontSize-5xl": "3rem",
5876
- "fontSize-6xl": "3.75rem",
5877
- "fontSize-7xl": "4.5rem",
5878
- "fontSize-8xl": "6rem",
5879
- "fontSize-9xl": "8rem",
5880
- // --- The default font size
5877
+ "fontSize-tiny": "0.625em",
5878
+ "fontSize-xs": "0.75em",
5879
+ "fontSize-sm": "0.875em",
5880
+ "fontSize-base": "1em",
5881
+ "fontSize-lg": "1.125em",
5882
+ "fontSize-xl": "1.25em",
5883
+ "fontSize-2xl": "1.5em",
5884
+ "fontSize-3xl": "1.875em",
5885
+ "fontSize-4xl": "2.25em",
5886
+ "fontSize-5xl": "3em",
5887
+ "fontSize-6xl": "3.75em",
5888
+ "fontSize-7xl": "4.5em",
5889
+ "fontSize-8xl": "6em",
5890
+ "fontSize-9xl": "8em",
5891
+ "fontSize-code": "0.975em",
5881
5892
  fontSize: "$fontSize-base",
5893
+ // --- Various font sizes (absolute values)
5894
+ "const-fontSize-tiny": "10px",
5895
+ "const-fontSize-xs": "12px",
5896
+ "const-fontSize-sm": "14px",
5897
+ "const-fontSize-base": "16px",
5898
+ "const-fontSize-lg": "18px",
5899
+ "const-fontSize-xl": "20px",
5900
+ "const-fontSize-2xl": "24px",
5901
+ "const-fontSize-3xl": "30px",
5902
+ "const-fontSize-4xl": "36px",
5903
+ "const-fontSize-5xl": "48px",
5904
+ "const-fontSize-6xl": "60px",
5905
+ "const-fontSize-7xl": "72px",
5906
+ "const-fontSize-8xl": "96px",
5907
+ "const-fontSize-9xl": "128px",
5908
+ "const-fontSize-code": "15.6px",
5882
5909
  // --- Various line height values
5883
5910
  // --- Default line height values (relative to the base unit, "space-base")
5884
5911
  "lineHeight-none": "1",
@@ -5886,7 +5913,17 @@ const RootThemeDefinition = {
5886
5913
  "lineHeight-snug": "1.375",
5887
5914
  "lineHeight-normal": "1.5",
5888
5915
  "lineHeight-relaxed": "1.625",
5916
+ "lineHeight-relaxed-2": "1.7",
5889
5917
  "lineHeight-loose": "2",
5918
+ "lineHeight": "$lineHeight-relaxed-2",
5919
+ // --- Letter spacing values
5920
+ "letterSpacing-tighter": "-0.05em",
5921
+ "letterSpacing-tight": "-0.025em",
5922
+ "letterSpacing-normal": "0em",
5923
+ "letterSpacing-wide": "0.025em",
5924
+ "letterSpacing-wider": "0.05em",
5925
+ "letterSpacing-widest": "0.1em",
5926
+ letterSpacing: "letterSpacing-normal",
5890
5927
  // --- Predefined gap sizes
5891
5928
  "gap-none": "$space-0",
5892
5929
  "gap-tight": "$space-2",
@@ -6048,6 +6085,7 @@ const RootThemeDefinition = {
6048
6085
  },
6049
6086
  dark: {
6050
6087
  themeVars: {
6088
+ "textColor": "white",
6051
6089
  // --- Default surface color shades (form white to black)
6052
6090
  "color-surface-0": "$const-color-surface-1000",
6053
6091
  "color-surface-50": "$const-color-surface-950",
@@ -6860,7 +6898,11 @@ const XmlUiDocsThemeDefinition = {
6860
6898
  id: "xmlui-docs",
6861
6899
  extends: "xmlui",
6862
6900
  color: "$color-primary-500",
6863
- themeVars: {}
6901
+ themeVars: {
6902
+ "fontSize": "14px",
6903
+ "backgroundColor-Text-code": "rgb(from $color-surface-200 r g b / 0.4)",
6904
+ "padding-Text-code": "$space-0_5"
6905
+ }
6864
6906
  };
6865
6907
  const XmlUiBlogThemeDefinition = {
6866
6908
  id: "xmlui-blog",
@@ -6871,6 +6913,7 @@ const XmlUiBlogThemeDefinition = {
6871
6913
  "maxWidth-content-App": "800px",
6872
6914
  // --- Fundamental colors & typography
6873
6915
  backgroundColor: "$color-surface-0",
6916
+ "fontSize": "14px",
6874
6917
  "fontWeight-Text": "400",
6875
6918
  "fontWeight-bold": "700",
6876
6919
  "textColor-primary": "$color-surface-800",
@@ -6975,15 +7018,16 @@ function useCompiledTheme(activeTheme, activeTone, themes = EMPTY_ARRAY, resourc
6975
7018
  })).slice(0, themeDefChain.length - 1),
6976
7019
  {
6977
7020
  ...generateBaseSpacings(mergedThemeVars),
6978
- ...generateBaseFontSizes(mergedThemeVars),
6979
7021
  ...generatePaddingSegments(mergedThemeVars),
6980
7022
  ...generateBorderSegments(mergedThemeVars),
6981
7023
  ...generateBaseTones(mergedThemeVars),
6982
- ...generateButtonTones(mergedThemeVars)
7024
+ ...generateButtonTones(mergedThemeVars),
7025
+ ...generateBaseFontSizes(mergedThemeVars),
7026
+ ...generateTextFontSizes(mergedThemeVars)
6983
7027
  },
6984
7028
  {
6985
7029
  ...omit(themeDefChain[themeDefChain.length - 1].themeVars, "light", "dark"),
6986
- ...generateTextFontSizes(mergedThemeVars),
7030
+ //...generateTextFontSizes(mergedThemeVars),
6987
7031
  ...themeDefChain[themeDefChain.length - 1].themeVars?.[activeTone],
6988
7032
  ...themeDefChain[themeDefChain.length - 1].tones?.[activeTone]?.themeVars
6989
7033
  }
@@ -7459,7 +7503,7 @@ function Theme({
7459
7503
  ] });
7460
7504
  }
7461
7505
  return /* @__PURE__ */ jsxs(ThemeContext.Provider, { value: currentThemeContextValue, children: [
7462
- /* @__PURE__ */ jsxs("div", { className: classnames(styles$1d.wrapper, className), children: [
7506
+ /* @__PURE__ */ jsxs("div", { className: classnames(styles$1d.themeWrapper, className), children: [
7463
7507
  renderChild2 && renderChild2(node.children, { ...layoutContext, themeClassName: className }),
7464
7508
  children
7465
7509
  ] }),
@@ -7467,7 +7511,7 @@ function Theme({
7467
7511
  /* @__PURE__ */ jsx(
7468
7512
  "div",
7469
7513
  {
7470
- className: classnames(className),
7514
+ className: classnames(styles$1d.themeWrapper, className),
7471
7515
  ref: (el) => {
7472
7516
  if (el) {
7473
7517
  setCurrentThemeRoot(el);
@@ -7556,24 +7600,24 @@ const themeComponentRenderer = createComponentRenderer(
7556
7600
  }
7557
7601
  );
7558
7602
  const themeVars$X = `'{"width-navPanel-App": "var(--xmlui-width-navPanel-App)", "backgroundColor-navPanel-App": "var(--xmlui-backgroundColor-navPanel-App)", "boxShadow-header-App": "var(--xmlui-boxShadow-header-App)", "boxShadow-navPanel-App": "var(--xmlui-boxShadow-navPanel-App)", "backgroundColor-content-App": "var(--xmlui-backgroundColor-content-App)", "borderLeft-content-App": "var(--xmlui-borderLeft-content-App)", "maxWidth-content-App": "var(--xmlui-maxWidth-content-App)", "maxWidth-App": "var(--xmlui-maxWidth-App)", "backgroundColor-AppHeader": "var(--xmlui-backgroundColor-AppHeader)", "borderBottom-AppHeader": "var(--xmlui-borderBottom-AppHeader)", "scroll-padding-block-Pages": "var(--xmlui-scroll-padding-block-Pages)"}'`;
7559
- const appContainer = "_appContainer_fszde_14";
7560
- const vertical$7 = "_vertical_fszde_25";
7561
- const mainContentArea = "_mainContentArea_fszde_28";
7562
- const noScrollbarGutters = "_noScrollbarGutters_fszde_31";
7563
- const scrollWholePage = "_scrollWholePage_fszde_34";
7564
- const navPanelWrapper = "_navPanelWrapper_fszde_37";
7565
- const footerWrapper = "_footerWrapper_fszde_41";
7566
- const horizontal$6 = "_horizontal_fszde_44";
7567
- const sticky = "_sticky_fszde_50";
7568
- const headerWrapper$1 = "_headerWrapper_fszde_59";
7569
- const desktop = "_desktop_fszde_65";
7570
- const pagesContainer = "_pagesContainer_fszde_98";
7571
- const pageContentContainer = "_pageContentContainer_fszde_109";
7572
- const verticalFullHeader = "_verticalFullHeader_fszde_138";
7573
- const noFooter = "_noFooter_fszde_144";
7574
- const nonSticky = "_nonSticky_fszde_191";
7575
- const mainContentRow = "_mainContentRow_fszde_209";
7576
- const withDefaultContentPadding = "_withDefaultContentPadding_fszde_308";
7603
+ const appContainer = "_appContainer_12n9v_14";
7604
+ const vertical$7 = "_vertical_12n9v_25";
7605
+ const mainContentArea = "_mainContentArea_12n9v_28";
7606
+ const noScrollbarGutters = "_noScrollbarGutters_12n9v_31";
7607
+ const scrollWholePage = "_scrollWholePage_12n9v_34";
7608
+ const navPanelWrapper = "_navPanelWrapper_12n9v_37";
7609
+ const footerWrapper = "_footerWrapper_12n9v_41";
7610
+ const horizontal$6 = "_horizontal_12n9v_44";
7611
+ const sticky = "_sticky_12n9v_50";
7612
+ const headerWrapper$1 = "_headerWrapper_12n9v_59";
7613
+ const desktop = "_desktop_12n9v_65";
7614
+ const pagesContainer = "_pagesContainer_12n9v_98";
7615
+ const pageContentContainer = "_pageContentContainer_12n9v_109";
7616
+ const verticalFullHeader = "_verticalFullHeader_12n9v_138";
7617
+ const noFooter = "_noFooter_12n9v_144";
7618
+ const nonSticky = "_nonSticky_12n9v_191";
7619
+ const mainContentRow = "_mainContentRow_12n9v_209";
7620
+ const withDefaultContentPadding = "_withDefaultContentPadding_12n9v_309";
7577
7621
  const styles$1b = {
7578
7622
  themeVars: themeVars$X,
7579
7623
  appContainer,
@@ -7842,16 +7886,16 @@ const Logo$1 = forwardRef(function Logo2({ style: style2, alt = defaultProps$1a.
7842
7886
  }
7843
7887
  );
7844
7888
  });
7845
- const themeVars$T = `'{"padding-NavLink": "var(--xmlui-padding-NavLink)", "paddingHorizontal-NavLink": "var(--xmlui-paddingHorizontal-NavLink, var(--xmlui-padding-NavLink))", "paddingVertical-NavLink": "var(--xmlui-paddingVertical-NavLink, var(--xmlui-padding-NavLink))", "paddingLeft-NavLink": "var(--xmlui-paddingLeft-NavLink, var(--xmlui-paddingHorizontal-NavLink, var(--xmlui-padding-NavLink)))", "paddingRight-NavLink": "var(--xmlui-paddingRight-NavLink, var(--xmlui-paddingHorizontal-NavLink, var(--xmlui-padding-NavLink)))", "paddingTop-NavLink": "var(--xmlui-paddingTop-NavLink, var(--xmlui-paddingVertical-NavLink, var(--xmlui-padding-NavLink)))", "paddingBottom-NavLink": "var(--xmlui-paddingBottom-NavLink, var(--xmlui-paddingVertical-NavLink, var(--xmlui-padding-NavLink)))", "border-NavLink": "var(--xmlui-border-NavLink)", "borderHorizontal-NavLink": "var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink))", "borderVertical-NavLink": "var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink))", "borderLeft-NavLink": "var(--xmlui-borderLeft-NavLink, var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink)))", "borderRight-NavLink": "var(--xmlui-borderRight-NavLink, var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink)))", "borderTop-NavLink": "var(--xmlui-borderTop-NavLink, var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink)))", "borderBottom-NavLink": "var(--xmlui-borderBottom-NavLink, var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink)))", "borderWidth-NavLink": "var(--xmlui-borderWidth-NavLink)", "borderHorizontalWidth-NavLink": "var(--xmlui-borderHorizontalWidth-NavLink, var(--xmlui-borderWidth-NavLink))", "borderLeftWidth-NavLink": "var(--xmlui-borderLeftWidth-NavLink, var(--xmlui-borderHorizontalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderRightWidth-NavLink": "var(--xmlui-borderRightWidth-NavLink, var(--xmlui-borderHorizontalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderVerticalWidth-NavLink": "var(--xmlui-borderVerticalWidth-NavLink, var(--xmlui-borderWidth-NavLink))", "borderTopWidth-NavLink": "var(--xmlui-borderTopWidth-NavLink, var(--xmlui-borderVerticalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderBottomWidth-NavLink": "var(--xmlui-borderBottomWidth-NavLink, var(--xmlui-borderVerticalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderStyle-NavLink": "var(--xmlui-borderStyle-NavLink)", "borderHorizontalStyle-NavLink": "var(--xmlui-borderHorizontalStyle-NavLink, var(--xmlui-borderStyle-NavLink))", "borderLeftStyle-NavLink": "var(--xmlui-borderLeftStyle-NavLink, var(--xmlui-borderHorizontalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderRightStyle-NavLink": "var(--xmlui-borderRightStyle-NavLink, var(--xmlui-borderHorizontalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderVerticalStyle-NavLink": "var(--xmlui-borderVerticalStyle-NavLink, var(--xmlui-borderStyle-NavLink))", "borderTopStyle-NavLink": "var(--xmlui-borderTopStyle-NavLink, var(--xmlui-borderVerticalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderBottomStyle-NavLink": "var(--xmlui-borderBottomStyle-NavLink, var(--xmlui-borderVerticalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderColor-NavLink": "var(--xmlui-borderColor-NavLink)", "borderHorizontalColor-NavLink": "var(--xmlui-borderHorizontalColor-NavLink, var(--xmlui-borderColor-NavLink))", "borderLeftColor-NavLink": "var(--xmlui-borderLeftColor-NavLink, var(--xmlui-borderHorizontalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderRightColor-NavLink": "var(--xmlui-borderRightColor-NavLink, var(--xmlui-borderHorizontalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderVerticalColor-NavLink": "var(--xmlui-borderVerticalColor-NavLink, var(--xmlui-borderColor-NavLink))", "borderTopColor-NavLink": "var(--xmlui-borderTopColor-NavLink, var(--xmlui-borderVerticalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderBottomColor-NavLink": "var(--xmlui-borderBottomColor-NavLink, var(--xmlui-borderVerticalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderStartStartRadius-NavLink": "var(--xmlui-borderStartStartRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "borderStartEndRadius-NavLink": "var(--xmlui-borderStartEndRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "borderEndStartRadius-NavLink": "var(--xmlui-borderEndStartRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "borderEndEndRadius-NavLink": "var(--xmlui-borderEndEndRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "backgroundColor-NavLink": "var(--xmlui-backgroundColor-NavLink)", "backgroundColor-NavLink--hover": "var(--xmlui-backgroundColor-NavLink--hover)", "backgroundColor-NavLink--hover--active": "var(--xmlui-backgroundColor-NavLink--hover--active)", "backgroundColor-NavLink--active": "var(--xmlui-backgroundColor-NavLink--active)", "backgroundColor-NavLink--pressed": "var(--xmlui-backgroundColor-NavLink--pressed)", "backgroundColor-NavLink--pressed--active": "var(--xmlui-backgroundColor-NavLink--pressed--active)", "fontSize-NavLink": "var(--xmlui-fontSize-NavLink)", "wordWrap-NavLink": "var(--xmlui-wordWrap-NavLink)", "textColor-NavLink": "var(--xmlui-textColor-NavLink)", "textColor-NavLink--hover": "var(--xmlui-textColor-NavLink--hover)", "textColor-NavLink--active": "var(--xmlui-textColor-NavLink--active)", "textColor-NavLink--hover--active": "var(--xmlui-textColor-NavLink--hover--active)", "textColor-NavLink--pressed": "var(--xmlui-textColor-NavLink--pressed)", "textColor-NavLink--pressed--active": "var(--xmlui-textColor-NavLink--pressed--active)", "color-icon-NavLink": "var(--xmlui-color-icon-NavLink)", "fontFamily-NavLink": "var(--xmlui-fontFamily-NavLink)", "fontWeight-NavLink": "var(--xmlui-fontWeight-NavLink)", "fontWeight-NavLink--pressed": "var(--xmlui-fontWeight-NavLink--pressed)", "fontWeight-NavLink--active": "var(--xmlui-fontWeight-NavLink--active)", "borderRadius-indicator-NavLink": "var(--xmlui-borderRadius-indicator-NavLink)", "thickness-indicator-NavLink": "var(--xmlui-thickness-indicator-NavLink)", "color-indicator-NavLink": "var(--xmlui-color-indicator-NavLink)", "color-indicator-NavLink--hover": "var(--xmlui-color-indicator-NavLink--hover)", "color-indicator-NavLink--active": "var(--xmlui-color-indicator-NavLink--active)", "color-indicator-NavLink--pressed": "var(--xmlui-color-indicator-NavLink--pressed)", "outlineWidth-NavLink--focus": "var(--xmlui-outlineWidth-NavLink--focus)", "outlineColor-NavLink--focus": "var(--xmlui-outlineColor-NavLink--focus)", "outlineStyle-NavLink--focus": "var(--xmlui-outlineStyle-NavLink--focus)", "outlineOffset-NavLink--focus": "var(--xmlui-outlineOffset-NavLink--focus)"}'`;
7846
- const content$7 = "_content_r4g0i_14";
7847
- const base = "_base_r4g0i_17";
7848
- const icon$4 = "_icon_r4g0i_65";
7849
- const includeHoverIndicator = "_includeHoverIndicator_r4g0i_71";
7850
- const displayActive = "_displayActive_r4g0i_106";
7851
- const navItemActive = "_navItemActive_r4g0i_118";
7852
- const disabled$b = "_disabled_r4g0i_153";
7853
- const vertical$6 = "_vertical_r4g0i_157";
7854
- const innerContent$1 = "_innerContent_r4g0i_170";
7889
+ const themeVars$T = `'{"padding-NavLink": "var(--xmlui-padding-NavLink)", "paddingHorizontal-NavLink": "var(--xmlui-paddingHorizontal-NavLink, var(--xmlui-padding-NavLink))", "paddingVertical-NavLink": "var(--xmlui-paddingVertical-NavLink, var(--xmlui-padding-NavLink))", "paddingLeft-NavLink": "var(--xmlui-paddingLeft-NavLink, var(--xmlui-paddingHorizontal-NavLink, var(--xmlui-padding-NavLink)))", "paddingRight-NavLink": "var(--xmlui-paddingRight-NavLink, var(--xmlui-paddingHorizontal-NavLink, var(--xmlui-padding-NavLink)))", "paddingTop-NavLink": "var(--xmlui-paddingTop-NavLink, var(--xmlui-paddingVertical-NavLink, var(--xmlui-padding-NavLink)))", "paddingBottom-NavLink": "var(--xmlui-paddingBottom-NavLink, var(--xmlui-paddingVertical-NavLink, var(--xmlui-padding-NavLink)))", "border-NavLink": "var(--xmlui-border-NavLink)", "borderHorizontal-NavLink": "var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink))", "borderVertical-NavLink": "var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink))", "borderLeft-NavLink": "var(--xmlui-borderLeft-NavLink, var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink)))", "borderRight-NavLink": "var(--xmlui-borderRight-NavLink, var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink)))", "borderTop-NavLink": "var(--xmlui-borderTop-NavLink, var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink)))", "borderBottom-NavLink": "var(--xmlui-borderBottom-NavLink, var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink)))", "borderWidth-NavLink": "var(--xmlui-borderWidth-NavLink)", "borderHorizontalWidth-NavLink": "var(--xmlui-borderHorizontalWidth-NavLink, var(--xmlui-borderWidth-NavLink))", "borderLeftWidth-NavLink": "var(--xmlui-borderLeftWidth-NavLink, var(--xmlui-borderHorizontalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderRightWidth-NavLink": "var(--xmlui-borderRightWidth-NavLink, var(--xmlui-borderHorizontalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderVerticalWidth-NavLink": "var(--xmlui-borderVerticalWidth-NavLink, var(--xmlui-borderWidth-NavLink))", "borderTopWidth-NavLink": "var(--xmlui-borderTopWidth-NavLink, var(--xmlui-borderVerticalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderBottomWidth-NavLink": "var(--xmlui-borderBottomWidth-NavLink, var(--xmlui-borderVerticalWidth-NavLink, var(--xmlui-borderWidth-NavLink)))", "borderStyle-NavLink": "var(--xmlui-borderStyle-NavLink)", "borderHorizontalStyle-NavLink": "var(--xmlui-borderHorizontalStyle-NavLink, var(--xmlui-borderStyle-NavLink))", "borderLeftStyle-NavLink": "var(--xmlui-borderLeftStyle-NavLink, var(--xmlui-borderHorizontalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderRightStyle-NavLink": "var(--xmlui-borderRightStyle-NavLink, var(--xmlui-borderHorizontalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderVerticalStyle-NavLink": "var(--xmlui-borderVerticalStyle-NavLink, var(--xmlui-borderStyle-NavLink))", "borderTopStyle-NavLink": "var(--xmlui-borderTopStyle-NavLink, var(--xmlui-borderVerticalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderBottomStyle-NavLink": "var(--xmlui-borderBottomStyle-NavLink, var(--xmlui-borderVerticalStyle-NavLink, var(--xmlui-borderStyle-NavLink)))", "borderColor-NavLink": "var(--xmlui-borderColor-NavLink)", "borderHorizontalColor-NavLink": "var(--xmlui-borderHorizontalColor-NavLink, var(--xmlui-borderColor-NavLink))", "borderLeftColor-NavLink": "var(--xmlui-borderLeftColor-NavLink, var(--xmlui-borderHorizontalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderRightColor-NavLink": "var(--xmlui-borderRightColor-NavLink, var(--xmlui-borderHorizontalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderVerticalColor-NavLink": "var(--xmlui-borderVerticalColor-NavLink, var(--xmlui-borderColor-NavLink))", "borderTopColor-NavLink": "var(--xmlui-borderTopColor-NavLink, var(--xmlui-borderVerticalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderBottomColor-NavLink": "var(--xmlui-borderBottomColor-NavLink, var(--xmlui-borderVerticalColor-NavLink, var(--xmlui-borderColor-NavLink)))", "borderStartStartRadius-NavLink": "var(--xmlui-borderStartStartRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "borderStartEndRadius-NavLink": "var(--xmlui-borderStartEndRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "borderEndStartRadius-NavLink": "var(--xmlui-borderEndStartRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "borderEndEndRadius-NavLink": "var(--xmlui-borderEndEndRadius-NavLink, var(--xmlui-borderRadius-NavLink))", "backgroundColor-NavLink": "var(--xmlui-backgroundColor-NavLink)", "backgroundColor-NavLink--hover": "var(--xmlui-backgroundColor-NavLink--hover)", "backgroundColor-NavLink--hover--active": "var(--xmlui-backgroundColor-NavLink--hover--active)", "backgroundColor-NavLink--active": "var(--xmlui-backgroundColor-NavLink--active)", "backgroundColor-NavLink--pressed": "var(--xmlui-backgroundColor-NavLink--pressed)", "backgroundColor-NavLink--pressed--active": "var(--xmlui-backgroundColor-NavLink--pressed--active)", "fontSize-NavLink": "var(--xmlui-fontSize-NavLink)", "lineHeight-NavLink": "var(--xmlui-lineHeight-NavLink)", "wordWrap-NavLink": "var(--xmlui-wordWrap-NavLink)", "textColor-NavLink": "var(--xmlui-textColor-NavLink)", "textColor-NavLink--hover": "var(--xmlui-textColor-NavLink--hover)", "textColor-NavLink--active": "var(--xmlui-textColor-NavLink--active)", "textColor-NavLink--hover--active": "var(--xmlui-textColor-NavLink--hover--active)", "textColor-NavLink--pressed": "var(--xmlui-textColor-NavLink--pressed)", "textColor-NavLink--pressed--active": "var(--xmlui-textColor-NavLink--pressed--active)", "color-icon-NavLink": "var(--xmlui-color-icon-NavLink)", "fontFamily-NavLink": "var(--xmlui-fontFamily-NavLink)", "fontWeight-NavLink": "var(--xmlui-fontWeight-NavLink)", "fontWeight-NavLink--pressed": "var(--xmlui-fontWeight-NavLink--pressed)", "fontWeight-NavLink--active": "var(--xmlui-fontWeight-NavLink--active)", "borderRadius-indicator-NavLink": "var(--xmlui-borderRadius-indicator-NavLink)", "thickness-indicator-NavLink": "var(--xmlui-thickness-indicator-NavLink)", "color-indicator-NavLink": "var(--xmlui-color-indicator-NavLink)", "color-indicator-NavLink--hover": "var(--xmlui-color-indicator-NavLink--hover)", "color-indicator-NavLink--active": "var(--xmlui-color-indicator-NavLink--active)", "color-indicator-NavLink--pressed": "var(--xmlui-color-indicator-NavLink--pressed)", "outlineWidth-NavLink--focus": "var(--xmlui-outlineWidth-NavLink--focus)", "outlineColor-NavLink--focus": "var(--xmlui-outlineColor-NavLink--focus)", "outlineStyle-NavLink--focus": "var(--xmlui-outlineStyle-NavLink--focus)", "outlineOffset-NavLink--focus": "var(--xmlui-outlineOffset-NavLink--focus)"}'`;
7890
+ const content$7 = "_content_k4qg6_14";
7891
+ const base = "_base_k4qg6_17";
7892
+ const icon$4 = "_icon_k4qg6_66";
7893
+ const includeHoverIndicator = "_includeHoverIndicator_k4qg6_72";
7894
+ const displayActive = "_displayActive_k4qg6_107";
7895
+ const navItemActive = "_navItemActive_k4qg6_119";
7896
+ const disabled$b = "_disabled_k4qg6_154";
7897
+ const vertical$6 = "_vertical_k4qg6_158";
7898
+ const innerContent$1 = "_innerContent_k4qg6_171";
7855
7899
  const navLinkStyles = {
7856
7900
  themeVars: themeVars$T,
7857
7901
  content: content$7,
@@ -7887,7 +7931,7 @@ function getComposedRef(...refs) {
7887
7931
  return composeRefs(...nonUndefinedRefs);
7888
7932
  }
7889
7933
  const themeVars$S = `'{"border-NavPanel": "var(--xmlui-border-NavPanel)", "borderHorizontal-NavPanel": "var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel))", "borderVertical-NavPanel": "var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel))", "borderLeft-NavPanel": "var(--xmlui-borderLeft-NavPanel, var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel)))", "borderRight-NavPanel": "var(--xmlui-borderRight-NavPanel, var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel)))", "borderTop-NavPanel": "var(--xmlui-borderTop-NavPanel, var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel)))", "borderBottom-NavPanel": "var(--xmlui-borderBottom-NavPanel, var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel)))", "borderWidth-NavPanel": "var(--xmlui-borderWidth-NavPanel)", "borderHorizontalWidth-NavPanel": "var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel))", "borderLeftWidth-NavPanel": "var(--xmlui-borderLeftWidth-NavPanel, var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderRightWidth-NavPanel": "var(--xmlui-borderRightWidth-NavPanel, var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderVerticalWidth-NavPanel": "var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel))", "borderTopWidth-NavPanel": "var(--xmlui-borderTopWidth-NavPanel, var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderBottomWidth-NavPanel": "var(--xmlui-borderBottomWidth-NavPanel, var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderStyle-NavPanel": "var(--xmlui-borderStyle-NavPanel)", "borderHorizontalStyle-NavPanel": "var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel))", "borderLeftStyle-NavPanel": "var(--xmlui-borderLeftStyle-NavPanel, var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderRightStyle-NavPanel": "var(--xmlui-borderRightStyle-NavPanel, var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderVerticalStyle-NavPanel": "var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel))", "borderTopStyle-NavPanel": "var(--xmlui-borderTopStyle-NavPanel, var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderBottomStyle-NavPanel": "var(--xmlui-borderBottomStyle-NavPanel, var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderColor-NavPanel": "var(--xmlui-borderColor-NavPanel)", "borderHorizontalColor-NavPanel": "var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel))", "borderLeftColor-NavPanel": "var(--xmlui-borderLeftColor-NavPanel, var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderRightColor-NavPanel": "var(--xmlui-borderRightColor-NavPanel, var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderVerticalColor-NavPanel": "var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel))", "borderTopColor-NavPanel": "var(--xmlui-borderTopColor-NavPanel, var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderBottomColor-NavPanel": "var(--xmlui-borderBottomColor-NavPanel, var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderStartStartRadius-NavPanel": "var(--xmlui-borderStartStartRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderStartEndRadius-NavPanel": "var(--xmlui-borderStartEndRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderEndStartRadius-NavPanel": "var(--xmlui-borderEndStartRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderEndEndRadius-NavPanel": "var(--xmlui-borderEndEndRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "backgroundColor-NavPanel": "var(--xmlui-backgroundColor-NavPanel)", "backgroundColor-NavPanel-horizontal": "var(--xmlui-backgroundColor-NavPanel-horizontal)", "borderRight-NavPanel-vertical": "var(--xmlui-borderRight-NavPanel-vertical)", "boxShadow-NavPanel": "var(--xmlui-boxShadow-NavPanel)", "padding-NavPanel": "var(--xmlui-padding-NavPanel)", "paddingHorizontal-NavPanel": "var(--xmlui-paddingHorizontal-NavPanel)", "paddingVertical-NavPanel": "var(--xmlui-paddingVertical-NavPanel, var(--xmlui-padding-NavPanel))", "paddingLeft-NavPanel": "var(--xmlui-paddingLeft-NavPanel, var(--xmlui-paddingHorizontal-NavPanel, var(--xmlui-padding-NavPanel)))", "paddingRight-NavPanel": "var(--xmlui-paddingRight-NavPanel, var(--xmlui-paddingHorizontal-NavPanel, var(--xmlui-padding-NavPanel)))", "paddingTop-NavPanel": "var(--xmlui-paddingTop-NavPanel, var(--xmlui-paddingVertical-NavPanel, var(--xmlui-padding-NavPanel)))", "paddingBottom-NavPanel": "var(--xmlui-paddingBottom-NavPanel, var(--xmlui-paddingVertical-NavPanel, var(--xmlui-padding-NavPanel)))", "padding-logo-NavPanel": "var(--xmlui-padding-logo-NavPanel)", "paddingHorizontal-logo-NavPanel": "var(--xmlui-paddingHorizontal-logo-NavPanel)", "paddingVertical-logo-NavPanel": "var(--xmlui-paddingVertical-logo-NavPanel)", "paddingLeft-logo-NavPanel": "var(--xmlui-paddingLeft-logo-NavPanel, var(--xmlui-paddingHorizontal-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "paddingRight-logo-NavPanel": "var(--xmlui-paddingRight-logo-NavPanel, var(--xmlui-paddingHorizontal-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "paddingTop-logo-NavPanel": "var(--xmlui-paddingTop-logo-NavPanel, var(--xmlui-paddingVertical-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "paddingBottom-logo-NavPanel": "var(--xmlui-paddingBottom-logo-NavPanel, var(--xmlui-paddingVertical-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "marginBottom-logo-NavPanel": "var(--xmlui-marginBottom-logo-NavPanel)", "maxWidth-content-App": "var(--xmlui-maxWidth-content-App)", "height-AppHeader": "var(--xmlui-height-AppHeader)", "paddingVertical-AppHeader": "var(--xmlui-paddingVertical-AppHeader)", "alignment-content-AppHeader": "var(--xmlui-alignment-content-AppHeader)", "horizontalAlignment-logo-NavPanel": "var(--xmlui-horizontalAlignment-logo-NavPanel)"}'`;
7890
- const wrapper$j = "_wrapper_ggqnq_14";
7934
+ const wrapper$g = "_wrapper_ggqnq_14";
7891
7935
  const condensed = "_condensed_ggqnq_51";
7892
7936
  const vertical$5 = "_vertical_ggqnq_54";
7893
7937
  const horizontal$5 = "_horizontal_ggqnq_58";
@@ -7896,7 +7940,7 @@ const logoWrapper$1 = "_logoWrapper_ggqnq_81";
7896
7940
  const inDrawer = "_inDrawer_ggqnq_91";
7897
7941
  const styles$18 = {
7898
7942
  themeVars: themeVars$S,
7899
- wrapper: wrapper$j,
7943
+ wrapper: wrapper$g,
7900
7944
  condensed,
7901
7945
  vertical: vertical$5,
7902
7946
  horizontal: horizontal$5,
@@ -8075,11 +8119,11 @@ const NavPanel = forwardRef(function NavPanel2({
8075
8119
  }
8076
8120
  );
8077
8121
  });
8078
- const themeVars$R = `'{"backgroundColor-dropdown-NavGroup": "var(--xmlui-backgroundColor-dropdown-NavGroup)", "boxShadow-dropdown-NavGroup": "var(--xmlui-boxShadow-dropdown-NavGroup)", "borderRadius-dropdown-NavGroup": "var(--xmlui-borderRadius-dropdown-NavGroup)"}'`;
8079
- const dropdownList = "_dropdownList_19nfj_14";
8080
- const groupContent = "_groupContent_19nfj_32";
8081
- const groupContentInner = "_groupContentInner_19nfj_39";
8082
- const expanded = "_expanded_19nfj_43";
8122
+ const themeVars$R = `'{"backgroundColor-dropdown-NavGroup": "var(--xmlui-backgroundColor-dropdown-NavGroup)", "boxShadow-dropdown-NavGroup": "var(--xmlui-boxShadow-dropdown-NavGroup)", "borderRadius-dropdown-NavGroup": "var(--xmlui-borderRadius-dropdown-NavGroup)", "minWidth-dropdown-NavGroup": "var(--xmlui-minWidth-dropdown-NavGroup)"}'`;
8123
+ const dropdownList = "_dropdownList_cf3gn_14";
8124
+ const groupContent = "_groupContent_cf3gn_32";
8125
+ const groupContentInner = "_groupContentInner_cf3gn_39";
8126
+ const expanded = "_expanded_cf3gn_43";
8083
8127
  const styles$17 = {
8084
8128
  themeVars: themeVars$R,
8085
8129
  dropdownList,
@@ -9743,12 +9787,12 @@ const appStateComponentRenderer = createComponentRenderer(
9743
9787
  }
9744
9788
  );
9745
9789
  const themeVars$Q = `'{"border-Avatar": "var(--xmlui-border-Avatar)", "borderHorizontal-Avatar": "var(--xmlui-borderHorizontal-Avatar, var(--xmlui-border-Avatar))", "borderVertical-Avatar": "var(--xmlui-borderVertical-Avatar, var(--xmlui-border-Avatar))", "borderLeft-Avatar": "var(--xmlui-borderLeft-Avatar, var(--xmlui-borderHorizontal-Avatar, var(--xmlui-border-Avatar)))", "borderRight-Avatar": "var(--xmlui-borderRight-Avatar, var(--xmlui-borderHorizontal-Avatar, var(--xmlui-border-Avatar)))", "borderTop-Avatar": "var(--xmlui-borderTop-Avatar, var(--xmlui-borderVertical-Avatar, var(--xmlui-border-Avatar)))", "borderBottom-Avatar": "var(--xmlui-borderBottom-Avatar, var(--xmlui-borderVertical-Avatar, var(--xmlui-border-Avatar)))", "borderWidth-Avatar": "var(--xmlui-borderWidth-Avatar)", "borderHorizontalWidth-Avatar": "var(--xmlui-borderHorizontalWidth-Avatar, var(--xmlui-borderWidth-Avatar))", "borderLeftWidth-Avatar": "var(--xmlui-borderLeftWidth-Avatar, var(--xmlui-borderHorizontalWidth-Avatar, var(--xmlui-borderWidth-Avatar)))", "borderRightWidth-Avatar": "var(--xmlui-borderRightWidth-Avatar, var(--xmlui-borderHorizontalWidth-Avatar, var(--xmlui-borderWidth-Avatar)))", "borderVerticalWidth-Avatar": "var(--xmlui-borderVerticalWidth-Avatar, var(--xmlui-borderWidth-Avatar))", "borderTopWidth-Avatar": "var(--xmlui-borderTopWidth-Avatar, var(--xmlui-borderVerticalWidth-Avatar, var(--xmlui-borderWidth-Avatar)))", "borderBottomWidth-Avatar": "var(--xmlui-borderBottomWidth-Avatar, var(--xmlui-borderVerticalWidth-Avatar, var(--xmlui-borderWidth-Avatar)))", "borderStyle-Avatar": "var(--xmlui-borderStyle-Avatar)", "borderHorizontalStyle-Avatar": "var(--xmlui-borderHorizontalStyle-Avatar, var(--xmlui-borderStyle-Avatar))", "borderLeftStyle-Avatar": "var(--xmlui-borderLeftStyle-Avatar, var(--xmlui-borderHorizontalStyle-Avatar, var(--xmlui-borderStyle-Avatar)))", "borderRightStyle-Avatar": "var(--xmlui-borderRightStyle-Avatar, var(--xmlui-borderHorizontalStyle-Avatar, var(--xmlui-borderStyle-Avatar)))", "borderVerticalStyle-Avatar": "var(--xmlui-borderVerticalStyle-Avatar, var(--xmlui-borderStyle-Avatar))", "borderTopStyle-Avatar": "var(--xmlui-borderTopStyle-Avatar, var(--xmlui-borderVerticalStyle-Avatar, var(--xmlui-borderStyle-Avatar)))", "borderBottomStyle-Avatar": "var(--xmlui-borderBottomStyle-Avatar, var(--xmlui-borderVerticalStyle-Avatar, var(--xmlui-borderStyle-Avatar)))", "borderColor-Avatar": "var(--xmlui-borderColor-Avatar)", "borderHorizontalColor-Avatar": "var(--xmlui-borderHorizontalColor-Avatar, var(--xmlui-borderColor-Avatar))", "borderLeftColor-Avatar": "var(--xmlui-borderLeftColor-Avatar, var(--xmlui-borderHorizontalColor-Avatar, var(--xmlui-borderColor-Avatar)))", "borderRightColor-Avatar": "var(--xmlui-borderRightColor-Avatar, var(--xmlui-borderHorizontalColor-Avatar, var(--xmlui-borderColor-Avatar)))", "borderVerticalColor-Avatar": "var(--xmlui-borderVerticalColor-Avatar, var(--xmlui-borderColor-Avatar))", "borderTopColor-Avatar": "var(--xmlui-borderTopColor-Avatar, var(--xmlui-borderVerticalColor-Avatar, var(--xmlui-borderColor-Avatar)))", "borderBottomColor-Avatar": "var(--xmlui-borderBottomColor-Avatar, var(--xmlui-borderVerticalColor-Avatar, var(--xmlui-borderColor-Avatar)))", "borderStartStartRadius-Avatar": "var(--xmlui-borderStartStartRadius-Avatar, var(--xmlui-borderRadius-Avatar))", "borderStartEndRadius-Avatar": "var(--xmlui-borderStartEndRadius-Avatar, var(--xmlui-borderRadius-Avatar))", "borderEndStartRadius-Avatar": "var(--xmlui-borderEndStartRadius-Avatar, var(--xmlui-borderRadius-Avatar))", "borderEndEndRadius-Avatar": "var(--xmlui-borderEndEndRadius-Avatar, var(--xmlui-borderRadius-Avatar))", "backgroundColor-Avatar": "var(--xmlui-backgroundColor-Avatar)", "boxShadow-Avatar": "var(--xmlui-boxShadow-Avatar)", "textColor-Avatar": "var(--xmlui-textColor-Avatar)", "fontWeight-Avatar": "var(--xmlui-fontWeight-Avatar)"}'`;
9746
- const container$2 = "_container_7050u_14";
9747
- const xs = "_xs_7050u_49";
9748
- const sm = "_sm_7050u_54";
9749
- const md = "_md_7050u_59";
9750
- const lg = "_lg_7050u_64";
9751
- const clickable = "_clickable_7050u_69";
9790
+ const container$2 = "_container_16lo9_14";
9791
+ const xs = "_xs_16lo9_48";
9792
+ const sm = "_sm_16lo9_53";
9793
+ const md = "_md_16lo9_58";
9794
+ const lg = "_lg_16lo9_63";
9795
+ const clickable = "_clickable_16lo9_68";
9752
9796
  const styles$16 = {
9753
9797
  themeVars: themeVars$Q,
9754
9798
  container: container$2,
@@ -9769,13 +9813,26 @@ const Avatar = memo(forwardRef(function Avatar2({ size = defaultProps$13.size, u
9769
9813
  onClick(event);
9770
9814
  }
9771
9815
  };
9816
+ const predefinedSizes = ["xs", "sm", "md", "lg"];
9817
+ const isCustomSize = size && !predefinedSizes.includes(size);
9772
9818
  const commonClassNames = classnames(
9773
9819
  className,
9774
9820
  styles$16.container,
9775
- styles$16[size] || styles$16.sm,
9776
- // Fallback to sm if size not found
9821
+ !isCustomSize && (styles$16[size] || styles$16.sm),
9822
+ // Only apply predefined size class
9777
9823
  { [styles$16.clickable]: !!onClick }
9778
9824
  );
9825
+ const calculateFontSize = (sizeValue) => {
9826
+ const match = sizeValue.match(/^([\d.]+)(.*)$/);
9827
+ if (match) {
9828
+ const [, num, unit] = match;
9829
+ const numericValue = parseFloat(num);
9830
+ const fontSize = numericValue * 0.33;
9831
+ return `${fontSize}${unit || "px"}`;
9832
+ }
9833
+ return "1em";
9834
+ };
9835
+ const mergedStyle = isCustomSize ? { ...style2, width: size, height: size, fontSize: calculateFontSize(size) } : style2;
9779
9836
  const altTxt = !!name ? `Avatar of ${name}` : "Avatar";
9780
9837
  if (url) {
9781
9838
  return /* @__PURE__ */ jsx(
@@ -9786,7 +9843,7 @@ const Avatar = memo(forwardRef(function Avatar2({ size = defaultProps$13.size, u
9786
9843
  src: url,
9787
9844
  alt: altTxt,
9788
9845
  className: commonClassNames,
9789
- style: style2,
9846
+ style: mergedStyle,
9790
9847
  onClick,
9791
9848
  onKeyDown: handleKeyDown,
9792
9849
  tabIndex: onClick ? 0 : void 0
@@ -9799,7 +9856,7 @@ const Avatar = memo(forwardRef(function Avatar2({ size = defaultProps$13.size, u
9799
9856
  ...rest,
9800
9857
  ref,
9801
9858
  className: commonClassNames,
9802
- style: style2,
9859
+ style: mergedStyle,
9803
9860
  onClick,
9804
9861
  onKeyDown: handleKeyDown,
9805
9862
  role: "img",
@@ -9822,7 +9879,7 @@ const AvatarMd = createMetadata({
9822
9879
  description: "`Avatar` displays a user or entity's profile picture as a circular image, with automatic fallback to initials when no image is provided. It's commonly used in headers, user lists, comments, and anywhere you need to represent a person or organization.",
9823
9880
  props: {
9824
9881
  size: {
9825
- description: `This property defines the display size of the ${COMP$1r}.`,
9882
+ description: `This property defines the display size of the ${COMP$1r}. Predefined sizes (xs, sm, md, lg) scale with the current font size (using em units). Custom CSS values (e.g., '50px', '3rem', '5em') are supported for both width and height, with font-size automatically calculated at approximately 33% of the width for proper initial display.`,
9826
9883
  availableValues: sizeMd,
9827
9884
  valueType: "string",
9828
9885
  defaultValue: defaultProps$13.size
@@ -9857,7 +9914,7 @@ const avatarComponentRenderer = createComponentRenderer(
9857
9914
  Avatar,
9858
9915
  {
9859
9916
  className,
9860
- size: node.props?.size,
9917
+ size: extractValue.asOptionalString(node.props?.size),
9861
9918
  url: node.props.url ? extractResourceUrl(node.props.url) : void 0,
9862
9919
  name: extractValue(node.props.name),
9863
9920
  onClick: lookupEventHandler("click")
@@ -10209,7 +10266,7 @@ const bookmarkComponentRenderer = createComponentRenderer(
10209
10266
  }
10210
10267
  );
10211
10268
  const themeVars$O = `'{"padding-Card": "var(--xmlui-padding-Card)", "paddingHorizontal-Card": "var(--xmlui-paddingHorizontal-Card, var(--xmlui-padding-Card))", "paddingVertical-Card": "var(--xmlui-paddingVertical-Card, var(--xmlui-padding-Card))", "paddingLeft-Card": "var(--xmlui-paddingLeft-Card, var(--xmlui-paddingHorizontal-Card, var(--xmlui-padding-Card)))", "paddingRight-Card": "var(--xmlui-paddingRight-Card, var(--xmlui-paddingHorizontal-Card, var(--xmlui-padding-Card)))", "paddingTop-Card": "var(--xmlui-paddingTop-Card, var(--xmlui-paddingVertical-Card, var(--xmlui-padding-Card)))", "paddingBottom-Card": "var(--xmlui-paddingBottom-Card, var(--xmlui-paddingVertical-Card, var(--xmlui-padding-Card)))", "border-Card": "var(--xmlui-border-Card)", "borderHorizontal-Card": "var(--xmlui-borderHorizontal-Card, var(--xmlui-border-Card))", "borderVertical-Card": "var(--xmlui-borderVertical-Card, var(--xmlui-border-Card))", "borderLeft-Card": "var(--xmlui-borderLeft-Card, var(--xmlui-borderHorizontal-Card, var(--xmlui-border-Card)))", "borderRight-Card": "var(--xmlui-borderRight-Card, var(--xmlui-borderHorizontal-Card, var(--xmlui-border-Card)))", "borderTop-Card": "var(--xmlui-borderTop-Card, var(--xmlui-borderVertical-Card, var(--xmlui-border-Card)))", "borderBottom-Card": "var(--xmlui-borderBottom-Card, var(--xmlui-borderVertical-Card, var(--xmlui-border-Card)))", "borderWidth-Card": "var(--xmlui-borderWidth-Card)", "borderHorizontalWidth-Card": "var(--xmlui-borderHorizontalWidth-Card, var(--xmlui-borderWidth-Card))", "borderLeftWidth-Card": "var(--xmlui-borderLeftWidth-Card, var(--xmlui-borderHorizontalWidth-Card, var(--xmlui-borderWidth-Card)))", "borderRightWidth-Card": "var(--xmlui-borderRightWidth-Card, var(--xmlui-borderHorizontalWidth-Card, var(--xmlui-borderWidth-Card)))", "borderVerticalWidth-Card": "var(--xmlui-borderVerticalWidth-Card, var(--xmlui-borderWidth-Card))", "borderTopWidth-Card": "var(--xmlui-borderTopWidth-Card, var(--xmlui-borderVerticalWidth-Card, var(--xmlui-borderWidth-Card)))", "borderBottomWidth-Card": "var(--xmlui-borderBottomWidth-Card, var(--xmlui-borderVerticalWidth-Card, var(--xmlui-borderWidth-Card)))", "borderStyle-Card": "var(--xmlui-borderStyle-Card)", "borderHorizontalStyle-Card": "var(--xmlui-borderHorizontalStyle-Card, var(--xmlui-borderStyle-Card))", "borderLeftStyle-Card": "var(--xmlui-borderLeftStyle-Card, var(--xmlui-borderHorizontalStyle-Card, var(--xmlui-borderStyle-Card)))", "borderRightStyle-Card": "var(--xmlui-borderRightStyle-Card, var(--xmlui-borderHorizontalStyle-Card, var(--xmlui-borderStyle-Card)))", "borderVerticalStyle-Card": "var(--xmlui-borderVerticalStyle-Card, var(--xmlui-borderStyle-Card))", "borderTopStyle-Card": "var(--xmlui-borderTopStyle-Card, var(--xmlui-borderVerticalStyle-Card, var(--xmlui-borderStyle-Card)))", "borderBottomStyle-Card": "var(--xmlui-borderBottomStyle-Card, var(--xmlui-borderVerticalStyle-Card, var(--xmlui-borderStyle-Card)))", "borderColor-Card": "var(--xmlui-borderColor-Card)", "borderHorizontalColor-Card": "var(--xmlui-borderHorizontalColor-Card, var(--xmlui-borderColor-Card))", "borderLeftColor-Card": "var(--xmlui-borderLeftColor-Card, var(--xmlui-borderHorizontalColor-Card, var(--xmlui-borderColor-Card)))", "borderRightColor-Card": "var(--xmlui-borderRightColor-Card, var(--xmlui-borderHorizontalColor-Card, var(--xmlui-borderColor-Card)))", "borderVerticalColor-Card": "var(--xmlui-borderVerticalColor-Card, var(--xmlui-borderColor-Card))", "borderTopColor-Card": "var(--xmlui-borderTopColor-Card, var(--xmlui-borderVerticalColor-Card, var(--xmlui-borderColor-Card)))", "borderBottomColor-Card": "var(--xmlui-borderBottomColor-Card, var(--xmlui-borderVerticalColor-Card, var(--xmlui-borderColor-Card)))", "borderStartStartRadius-Card": "var(--xmlui-borderStartStartRadius-Card, var(--xmlui-borderRadius-Card))", "borderStartEndRadius-Card": "var(--xmlui-borderStartEndRadius-Card, var(--xmlui-borderRadius-Card))", "borderEndStartRadius-Card": "var(--xmlui-borderEndStartRadius-Card, var(--xmlui-borderRadius-Card))", "borderEndEndRadius-Card": "var(--xmlui-borderEndEndRadius-Card, var(--xmlui-borderRadius-Card))", "boxShadow-Card": "var(--xmlui-boxShadow-Card)", "backgroundColor-Card": "var(--xmlui-backgroundColor-Card)", "borderRadius-Card": "var(--xmlui-borderRadius-Card)", "gap-Card": "var(--xmlui-gap-Card)", "gap-title-Card": "var(--xmlui-gap-title-Card)", "gap-avatar-Card": "var(--xmlui-gap-avatar-Card)", "horizontalAlignment-title-Card": "var(--xmlui-horizontalAlignment-title-Card)", "verticalAlignment-title-Card": "var(--xmlui-verticalAlignment-title-Card)"}'`;
10212
- const wrapper$i = "_wrapper_1tzg2_14";
10269
+ const wrapper$f = "_wrapper_1tzg2_14";
10213
10270
  const avatarWrapper = "_avatarWrapper_1tzg2_47";
10214
10271
  const titleWrapper = "_titleWrapper_1tzg2_54";
10215
10272
  const horizontal$4 = "_horizontal_1tzg2_62";
@@ -10217,7 +10274,7 @@ const vertical$4 = "_vertical_1tzg2_66";
10217
10274
  const isClickable = "_isClickable_1tzg2_69";
10218
10275
  const styles$13 = {
10219
10276
  themeVars: themeVars$O,
10220
- wrapper: wrapper$i,
10277
+ wrapper: wrapper$f,
10221
10278
  avatarWrapper,
10222
10279
  titleWrapper,
10223
10280
  horizontal: horizontal$4,
@@ -10287,18 +10344,18 @@ function specifyTypes(props) {
10287
10344
  referrerPolicy
10288
10345
  };
10289
10346
  }
10290
- const themeVars$M = `'{"border-H1": "var(--xmlui-border-H1)", "borderHorizontal-H1": "var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1))", "borderVertical-H1": "var(--xmlui-borderVertical-H1, var(--xmlui-border-H1))", "borderLeft-H1": "var(--xmlui-borderLeft-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderRight-H1": "var(--xmlui-borderRight-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderTop-H1": "var(--xmlui-borderTop-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderBottom-H1": "var(--xmlui-borderBottom-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderWidth-H1": "var(--xmlui-borderWidth-H1)", "borderHorizontalWidth-H1": "var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1))", "borderLeftWidth-H1": "var(--xmlui-borderLeftWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderRightWidth-H1": "var(--xmlui-borderRightWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderVerticalWidth-H1": "var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1))", "borderTopWidth-H1": "var(--xmlui-borderTopWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderBottomWidth-H1": "var(--xmlui-borderBottomWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderStyle-H1": "var(--xmlui-borderStyle-H1)", "borderHorizontalStyle-H1": "var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1))", "borderLeftStyle-H1": "var(--xmlui-borderLeftStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderRightStyle-H1": "var(--xmlui-borderRightStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderVerticalStyle-H1": "var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1))", "borderTopStyle-H1": "var(--xmlui-borderTopStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderBottomStyle-H1": "var(--xmlui-borderBottomStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderColor-H1": "var(--xmlui-borderColor-H1)", "borderHorizontalColor-H1": "var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1))", "borderLeftColor-H1": "var(--xmlui-borderLeftColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderRightColor-H1": "var(--xmlui-borderRightColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderVerticalColor-H1": "var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1))", "borderTopColor-H1": "var(--xmlui-borderTopColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderBottomColor-H1": "var(--xmlui-borderBottomColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderStartStartRadius-H1": "var(--xmlui-borderStartStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderStartEndRadius-H1": "var(--xmlui-borderStartEndRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndStartRadius-H1": "var(--xmlui-borderEndStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndEndRadius-H1": "var(--xmlui-borderEndEndRadius-H1, var(--xmlui-borderRadius-H1))", "padding-H1": "var(--xmlui-padding-H1)", "paddingHorizontal-H1": "var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1))", "paddingVertical-H1": "var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1))", "paddingLeft-H1": "var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingRight-H1": "var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingTop-H1": "var(--xmlui-paddingTop-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "paddingBottom-H1": "var(--xmlui-paddingBottom-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "textColor-H1": "var(--xmlui-textColor-H1)", "fontFamily-H1": "var(--xmlui-fontFamily-H1)", "fontSize-H1": "var(--xmlui-fontSize-H1)", "fontStyle-H1": "var(--xmlui-fontStyle-H1)", "fontVariant-H1": "var(--xmlui-fontVariant-H1)", "fontWeight-H1": "var(--xmlui-fontWeight-H1)", "fontStretch-H1": "var(--xmlui-fontStretch-H1)", "textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "lineHeight-H1": "var(--xmlui-lineHeight-H1)", "backgroundColor-H1": "var(--xmlui-backgroundColor-H1)", "textTransform-H1": "var(--xmlui-textTransform-H1)", "letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "wordSpacing-H1": "var(--xmlui-wordSpacing-H1)", "textShadow-H1": "var(--xmlui-textShadow-H1)", "textIndent-H1": "var(--xmlui-textIndent-H1)", "textAlign-H1": "var(--xmlui-textAlign-H1)", "textAlignLast-H1": "var(--xmlui-textAlignLast-H1)", "wordBreak-H1": "var(--xmlui-wordBreak-H1)", "wordWrap-H1": "var(--xmlui-wordWrap-H1)", "direction-H1": "var(--xmlui-direction-H1)", "writingMode-H1": "var(--xmlui-writingMode-H1)", "lineBreak-H1": "var(--xmlui-lineBreak-H1)", "border-H2": "var(--xmlui-border-H2)", "borderHorizontal-H2": "var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2))", "borderVertical-H2": "var(--xmlui-borderVertical-H2, var(--xmlui-border-H2))", "borderLeft-H2": "var(--xmlui-borderLeft-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderRight-H2": "var(--xmlui-borderRight-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderTop-H2": "var(--xmlui-borderTop-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderBottom-H2": "var(--xmlui-borderBottom-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderWidth-H2": "var(--xmlui-borderWidth-H2)", "borderHorizontalWidth-H2": "var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2))", "borderLeftWidth-H2": "var(--xmlui-borderLeftWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderRightWidth-H2": "var(--xmlui-borderRightWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderVerticalWidth-H2": "var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2))", "borderTopWidth-H2": "var(--xmlui-borderTopWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderBottomWidth-H2": "var(--xmlui-borderBottomWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderStyle-H2": "var(--xmlui-borderStyle-H2)", "borderHorizontalStyle-H2": "var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2))", "borderLeftStyle-H2": "var(--xmlui-borderLeftStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderRightStyle-H2": "var(--xmlui-borderRightStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderVerticalStyle-H2": "var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2))", "borderTopStyle-H2": "var(--xmlui-borderTopStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderBottomStyle-H2": "var(--xmlui-borderBottomStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderColor-H2": "var(--xmlui-borderColor-H2)", "borderHorizontalColor-H2": "var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2))", "borderLeftColor-H2": "var(--xmlui-borderLeftColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderRightColor-H2": "var(--xmlui-borderRightColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderVerticalColor-H2": "var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2))", "borderTopColor-H2": "var(--xmlui-borderTopColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderBottomColor-H2": "var(--xmlui-borderBottomColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderStartStartRadius-H2": "var(--xmlui-borderStartStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderStartEndRadius-H2": "var(--xmlui-borderStartEndRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndStartRadius-H2": "var(--xmlui-borderEndStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndEndRadius-H2": "var(--xmlui-borderEndEndRadius-H2, var(--xmlui-borderRadius-H2))", "padding-H2": "var(--xmlui-padding-H2)", "paddingHorizontal-H2": "var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2))", "paddingVertical-H2": "var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2))", "paddingLeft-H2": "var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingRight-H2": "var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingTop-H2": "var(--xmlui-paddingTop-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "paddingBottom-H2": "var(--xmlui-paddingBottom-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "textColor-H2": "var(--xmlui-textColor-H2)", "fontFamily-H2": "var(--xmlui-fontFamily-H2)", "fontSize-H2": "var(--xmlui-fontSize-H2)", "fontStyle-H2": "var(--xmlui-fontStyle-H2)", "fontVariant-H2": "var(--xmlui-fontVariant-H2)", "fontWeight-H2": "var(--xmlui-fontWeight-H2)", "fontStretch-H2": "var(--xmlui-fontStretch-H2)", "textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "lineHeight-H2": "var(--xmlui-lineHeight-H2)", "backgroundColor-H2": "var(--xmlui-backgroundColor-H2)", "textTransform-H2": "var(--xmlui-textTransform-H2)", "letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "wordSpacing-H2": "var(--xmlui-wordSpacing-H2)", "textShadow-H2": "var(--xmlui-textShadow-H2)", "textIndent-H2": "var(--xmlui-textIndent-H2)", "textAlign-H2": "var(--xmlui-textAlign-H2)", "textAlignLast-H2": "var(--xmlui-textAlignLast-H2)", "wordBreak-H2": "var(--xmlui-wordBreak-H2)", "wordWrap-H2": "var(--xmlui-wordWrap-H2)", "direction-H2": "var(--xmlui-direction-H2)", "writingMode-H2": "var(--xmlui-writingMode-H2)", "lineBreak-H2": "var(--xmlui-lineBreak-H2)", "border-H3": "var(--xmlui-border-H3)", "borderHorizontal-H3": "var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3))", "borderVertical-H3": "var(--xmlui-borderVertical-H3, var(--xmlui-border-H3))", "borderLeft-H3": "var(--xmlui-borderLeft-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderRight-H3": "var(--xmlui-borderRight-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderTop-H3": "var(--xmlui-borderTop-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderBottom-H3": "var(--xmlui-borderBottom-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderWidth-H3": "var(--xmlui-borderWidth-H3)", "borderHorizontalWidth-H3": "var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3))", "borderLeftWidth-H3": "var(--xmlui-borderLeftWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderRightWidth-H3": "var(--xmlui-borderRightWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderVerticalWidth-H3": "var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3))", "borderTopWidth-H3": "var(--xmlui-borderTopWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderBottomWidth-H3": "var(--xmlui-borderBottomWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderStyle-H3": "var(--xmlui-borderStyle-H3)", "borderHorizontalStyle-H3": "var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3))", "borderLeftStyle-H3": "var(--xmlui-borderLeftStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderRightStyle-H3": "var(--xmlui-borderRightStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderVerticalStyle-H3": "var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3))", "borderTopStyle-H3": "var(--xmlui-borderTopStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderBottomStyle-H3": "var(--xmlui-borderBottomStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderColor-H3": "var(--xmlui-borderColor-H3)", "borderHorizontalColor-H3": "var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3))", "borderLeftColor-H3": "var(--xmlui-borderLeftColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderRightColor-H3": "var(--xmlui-borderRightColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderVerticalColor-H3": "var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3))", "borderTopColor-H3": "var(--xmlui-borderTopColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderBottomColor-H3": "var(--xmlui-borderBottomColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderStartStartRadius-H3": "var(--xmlui-borderStartStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderStartEndRadius-H3": "var(--xmlui-borderStartEndRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndStartRadius-H3": "var(--xmlui-borderEndStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndEndRadius-H3": "var(--xmlui-borderEndEndRadius-H3, var(--xmlui-borderRadius-H3))", "padding-H3": "var(--xmlui-padding-H3)", "paddingHorizontal-H3": "var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3))", "paddingVertical-H3": "var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3))", "paddingLeft-H3": "var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingRight-H3": "var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingTop-H3": "var(--xmlui-paddingTop-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "paddingBottom-H3": "var(--xmlui-paddingBottom-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "textColor-H3": "var(--xmlui-textColor-H3)", "fontFamily-H3": "var(--xmlui-fontFamily-H3)", "fontSize-H3": "var(--xmlui-fontSize-H3)", "fontStyle-H3": "var(--xmlui-fontStyle-H3)", "fontVariant-H3": "var(--xmlui-fontVariant-H3)", "fontWeight-H3": "var(--xmlui-fontWeight-H3)", "fontStretch-H3": "var(--xmlui-fontStretch-H3)", "textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "lineHeight-H3": "var(--xmlui-lineHeight-H3)", "backgroundColor-H3": "var(--xmlui-backgroundColor-H3)", "textTransform-H3": "var(--xmlui-textTransform-H3)", "letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "wordSpacing-H3": "var(--xmlui-wordSpacing-H3)", "textShadow-H3": "var(--xmlui-textShadow-H3)", "textIndent-H3": "var(--xmlui-textIndent-H3)", "textAlign-H3": "var(--xmlui-textAlign-H3)", "textAlignLast-H3": "var(--xmlui-textAlignLast-H3)", "wordBreak-H3": "var(--xmlui-wordBreak-H3)", "wordWrap-H3": "var(--xmlui-wordWrap-H3)", "direction-H3": "var(--xmlui-direction-H3)", "writingMode-H3": "var(--xmlui-writingMode-H3)", "lineBreak-H3": "var(--xmlui-lineBreak-H3)", "border-H4": "var(--xmlui-border-H4)", "borderHorizontal-H4": "var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4))", "borderVertical-H4": "var(--xmlui-borderVertical-H4, var(--xmlui-border-H4))", "borderLeft-H4": "var(--xmlui-borderLeft-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderRight-H4": "var(--xmlui-borderRight-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderTop-H4": "var(--xmlui-borderTop-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderBottom-H4": "var(--xmlui-borderBottom-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderWidth-H4": "var(--xmlui-borderWidth-H4)", "borderHorizontalWidth-H4": "var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4))", "borderLeftWidth-H4": "var(--xmlui-borderLeftWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderRightWidth-H4": "var(--xmlui-borderRightWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderVerticalWidth-H4": "var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4))", "borderTopWidth-H4": "var(--xmlui-borderTopWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderBottomWidth-H4": "var(--xmlui-borderBottomWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderStyle-H4": "var(--xmlui-borderStyle-H4)", "borderHorizontalStyle-H4": "var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4))", "borderLeftStyle-H4": "var(--xmlui-borderLeftStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderRightStyle-H4": "var(--xmlui-borderRightStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderVerticalStyle-H4": "var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4))", "borderTopStyle-H4": "var(--xmlui-borderTopStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderBottomStyle-H4": "var(--xmlui-borderBottomStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderColor-H4": "var(--xmlui-borderColor-H4)", "borderHorizontalColor-H4": "var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4))", "borderLeftColor-H4": "var(--xmlui-borderLeftColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderRightColor-H4": "var(--xmlui-borderRightColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderVerticalColor-H4": "var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4))", "borderTopColor-H4": "var(--xmlui-borderTopColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderBottomColor-H4": "var(--xmlui-borderBottomColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderStartStartRadius-H4": "var(--xmlui-borderStartStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderStartEndRadius-H4": "var(--xmlui-borderStartEndRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndStartRadius-H4": "var(--xmlui-borderEndStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndEndRadius-H4": "var(--xmlui-borderEndEndRadius-H4, var(--xmlui-borderRadius-H4))", "padding-H4": "var(--xmlui-padding-H4)", "paddingHorizontal-H4": "var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4))", "paddingVertical-H4": "var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4))", "paddingLeft-H4": "var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingRight-H4": "var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingTop-H4": "var(--xmlui-paddingTop-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "paddingBottom-H4": "var(--xmlui-paddingBottom-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "textColor-H4": "var(--xmlui-textColor-H4)", "fontFamily-H4": "var(--xmlui-fontFamily-H4)", "fontSize-H4": "var(--xmlui-fontSize-H4)", "fontStyle-H4": "var(--xmlui-fontStyle-H4)", "fontVariant-H4": "var(--xmlui-fontVariant-H4)", "fontWeight-H4": "var(--xmlui-fontWeight-H4)", "fontStretch-H4": "var(--xmlui-fontStretch-H4)", "textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "lineHeight-H4": "var(--xmlui-lineHeight-H4)", "backgroundColor-H4": "var(--xmlui-backgroundColor-H4)", "textTransform-H4": "var(--xmlui-textTransform-H4)", "letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "wordSpacing-H4": "var(--xmlui-wordSpacing-H4)", "textShadow-H4": "var(--xmlui-textShadow-H4)", "textIndent-H4": "var(--xmlui-textIndent-H4)", "textAlign-H4": "var(--xmlui-textAlign-H4)", "textAlignLast-H4": "var(--xmlui-textAlignLast-H4)", "wordBreak-H4": "var(--xmlui-wordBreak-H4)", "wordWrap-H4": "var(--xmlui-wordWrap-H4)", "direction-H4": "var(--xmlui-direction-H4)", "writingMode-H4": "var(--xmlui-writingMode-H4)", "lineBreak-H4": "var(--xmlui-lineBreak-H4)", "border-H5": "var(--xmlui-border-H5)", "borderHorizontal-H5": "var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5))", "borderVertical-H5": "var(--xmlui-borderVertical-H5, var(--xmlui-border-H5))", "borderLeft-H5": "var(--xmlui-borderLeft-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderRight-H5": "var(--xmlui-borderRight-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderTop-H5": "var(--xmlui-borderTop-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderBottom-H5": "var(--xmlui-borderBottom-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderWidth-H5": "var(--xmlui-borderWidth-H5)", "borderHorizontalWidth-H5": "var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5))", "borderLeftWidth-H5": "var(--xmlui-borderLeftWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderRightWidth-H5": "var(--xmlui-borderRightWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderVerticalWidth-H5": "var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5))", "borderTopWidth-H5": "var(--xmlui-borderTopWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderBottomWidth-H5": "var(--xmlui-borderBottomWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderStyle-H5": "var(--xmlui-borderStyle-H5)", "borderHorizontalStyle-H5": "var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5))", "borderLeftStyle-H5": "var(--xmlui-borderLeftStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderRightStyle-H5": "var(--xmlui-borderRightStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderVerticalStyle-H5": "var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5))", "borderTopStyle-H5": "var(--xmlui-borderTopStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderBottomStyle-H5": "var(--xmlui-borderBottomStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderColor-H5": "var(--xmlui-borderColor-H5)", "borderHorizontalColor-H5": "var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5))", "borderLeftColor-H5": "var(--xmlui-borderLeftColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderRightColor-H5": "var(--xmlui-borderRightColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderVerticalColor-H5": "var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5))", "borderTopColor-H5": "var(--xmlui-borderTopColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderBottomColor-H5": "var(--xmlui-borderBottomColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderStartStartRadius-H5": "var(--xmlui-borderStartStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderStartEndRadius-H5": "var(--xmlui-borderStartEndRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndStartRadius-H5": "var(--xmlui-borderEndStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndEndRadius-H5": "var(--xmlui-borderEndEndRadius-H5, var(--xmlui-borderRadius-H5))", "padding-H5": "var(--xmlui-padding-H5)", "paddingHorizontal-H5": "var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5))", "paddingVertical-H5": "var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5))", "paddingLeft-H5": "var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingRight-H5": "var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingTop-H5": "var(--xmlui-paddingTop-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "paddingBottom-H5": "var(--xmlui-paddingBottom-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "textColor-H5": "var(--xmlui-textColor-H5)", "fontFamily-H5": "var(--xmlui-fontFamily-H5)", "fontSize-H5": "var(--xmlui-fontSize-H5)", "fontStyle-H5": "var(--xmlui-fontStyle-H5)", "fontVariant-H5": "var(--xmlui-fontVariant-H5)", "fontWeight-H5": "var(--xmlui-fontWeight-H5)", "fontStretch-H5": "var(--xmlui-fontStretch-H5)", "textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "lineHeight-H5": "var(--xmlui-lineHeight-H5)", "backgroundColor-H5": "var(--xmlui-backgroundColor-H5)", "textTransform-H5": "var(--xmlui-textTransform-H5)", "letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "wordSpacing-H5": "var(--xmlui-wordSpacing-H5)", "textShadow-H5": "var(--xmlui-textShadow-H5)", "textIndent-H5": "var(--xmlui-textIndent-H5)", "textAlign-H5": "var(--xmlui-textAlign-H5)", "textAlignLast-H5": "var(--xmlui-textAlignLast-H5)", "wordBreak-H5": "var(--xmlui-wordBreak-H5)", "wordWrap-H5": "var(--xmlui-wordWrap-H5)", "direction-H5": "var(--xmlui-direction-H5)", "writingMode-H5": "var(--xmlui-writingMode-H5)", "lineBreak-H5": "var(--xmlui-lineBreak-H5)", "border-H6": "var(--xmlui-border-H6)", "borderHorizontal-H6": "var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6))", "borderVertical-H6": "var(--xmlui-borderVertical-H6, var(--xmlui-border-H6))", "borderLeft-H6": "var(--xmlui-borderLeft-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderRight-H6": "var(--xmlui-borderRight-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderTop-H6": "var(--xmlui-borderTop-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderBottom-H6": "var(--xmlui-borderBottom-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderWidth-H6": "var(--xmlui-borderWidth-H6)", "borderHorizontalWidth-H6": "var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6))", "borderLeftWidth-H6": "var(--xmlui-borderLeftWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderRightWidth-H6": "var(--xmlui-borderRightWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderVerticalWidth-H6": "var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6))", "borderTopWidth-H6": "var(--xmlui-borderTopWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderBottomWidth-H6": "var(--xmlui-borderBottomWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderStyle-H6": "var(--xmlui-borderStyle-H6)", "borderHorizontalStyle-H6": "var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6))", "borderLeftStyle-H6": "var(--xmlui-borderLeftStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderRightStyle-H6": "var(--xmlui-borderRightStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderVerticalStyle-H6": "var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6))", "borderTopStyle-H6": "var(--xmlui-borderTopStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderBottomStyle-H6": "var(--xmlui-borderBottomStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderColor-H6": "var(--xmlui-borderColor-H6)", "borderHorizontalColor-H6": "var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6))", "borderLeftColor-H6": "var(--xmlui-borderLeftColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderRightColor-H6": "var(--xmlui-borderRightColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderVerticalColor-H6": "var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6))", "borderTopColor-H6": "var(--xmlui-borderTopColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderBottomColor-H6": "var(--xmlui-borderBottomColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderStartStartRadius-H6": "var(--xmlui-borderStartStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderStartEndRadius-H6": "var(--xmlui-borderStartEndRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndStartRadius-H6": "var(--xmlui-borderEndStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndEndRadius-H6": "var(--xmlui-borderEndEndRadius-H6, var(--xmlui-borderRadius-H6))", "padding-H6": "var(--xmlui-padding-H6)", "paddingHorizontal-H6": "var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6))", "paddingVertical-H6": "var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6))", "paddingLeft-H6": "var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingRight-H6": "var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingTop-H6": "var(--xmlui-paddingTop-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "paddingBottom-H6": "var(--xmlui-paddingBottom-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "textColor-H6": "var(--xmlui-textColor-H6)", "fontFamily-H6": "var(--xmlui-fontFamily-H6)", "fontSize-H6": "var(--xmlui-fontSize-H6)", "fontStyle-H6": "var(--xmlui-fontStyle-H6)", "fontVariant-H6": "var(--xmlui-fontVariant-H6)", "fontWeight-H6": "var(--xmlui-fontWeight-H6)", "fontStretch-H6": "var(--xmlui-fontStretch-H6)", "textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)", "lineHeight-H6": "var(--xmlui-lineHeight-H6)", "backgroundColor-H6": "var(--xmlui-backgroundColor-H6)", "textTransform-H6": "var(--xmlui-textTransform-H6)", "letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "wordSpacing-H6": "var(--xmlui-wordSpacing-H6)", "textShadow-H6": "var(--xmlui-textShadow-H6)", "textIndent-H6": "var(--xmlui-textIndent-H6)", "textAlign-H6": "var(--xmlui-textAlign-H6)", "textAlignLast-H6": "var(--xmlui-textAlignLast-H6)", "wordBreak-H6": "var(--xmlui-wordBreak-H6)", "wordWrap-H6": "var(--xmlui-wordWrap-H6)", "direction-H6": "var(--xmlui-direction-H6)", "writingMode-H6": "var(--xmlui-writingMode-H6)", "lineBreak-H6": "var(--xmlui-lineBreak-H6)", "color-anchor-Heading": "var(--xmlui-color-anchor-Heading)", "gap-anchor-Heading": "var(--xmlui-gap-anchor-Heading)", "textDecorationLine-anchor-Heading": "var(--xmlui-textDecorationLine-anchor-Heading)", "Heading:textColor-H1": "var(--xmlui-textColor-H1)", "Heading:letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "Heading:fontFamily-H1": "var(--xmlui-fontFamily-H1)", "Heading:fontWeight-H1": "var(--xmlui-fontWeight-H1)", "marginTop-H1": "var(--xmlui-marginTop-H1)", "marginBottom-H1": "var(--xmlui-marginBottom-H1)", "Heading:textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "Heading:textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "Heading:textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "Heading:textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "Heading:textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "Heading:textColor-H2": "var(--xmlui-textColor-H2)", "Heading:letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "Heading:fontFamily-H2": "var(--xmlui-fontFamily-H2)", "Heading:fontWeight-H2": "var(--xmlui-fontWeight-H2)", "marginTop-H2": "var(--xmlui-marginTop-H2)", "marginBottom-H2": "var(--xmlui-marginBottom-H2)", "Heading:textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "Heading:textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "Heading:textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "Heading:textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "Heading:textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "Heading:textColor-H3": "var(--xmlui-textColor-H3)", "Heading:letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "Heading:fontFamily-H3": "var(--xmlui-fontFamily-H3)", "Heading:fontWeight-H3": "var(--xmlui-fontWeight-H3)", "marginTop-H3": "var(--xmlui-marginTop-H3)", "marginBottom-H3": "var(--xmlui-marginBottom-H3)", "Heading:textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "Heading:textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "Heading:textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "Heading:textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "Heading:textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "Heading:textColor-H4": "var(--xmlui-textColor-H4)", "Heading:letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "Heading:fontFamily-H4": "var(--xmlui-fontFamily-H4)", "Heading:fontWeight-H4": "var(--xmlui-fontWeight-H4)", "marginTop-H4": "var(--xmlui-marginTop-H4)", "marginBottom-H4": "var(--xmlui-marginBottom-H4)", "Heading:textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "Heading:textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "Heading:textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "Heading:textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "Heading:textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "Heading:textColor-H5": "var(--xmlui-textColor-H5)", "Heading:letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "Heading:fontFamily-H5": "var(--xmlui-fontFamily-H5)", "Heading:fontWeight-H5": "var(--xmlui-fontWeight-H5)", "marginTop-H5": "var(--xmlui-marginTop-H5)", "marginBottom-H5": "var(--xmlui-marginBottom-H5)", "Heading:textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "Heading:textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "Heading:textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "Heading:textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "Heading:textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "Heading:textColor-H6": "var(--xmlui-textColor-H6)", "Heading:letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "Heading:fontFamily-H6": "var(--xmlui-fontFamily-H6)", "Heading:fontWeight-H6": "var(--xmlui-fontWeight-H6)", "marginTop-H6": "var(--xmlui-marginTop-H6)", "marginBottom-H6": "var(--xmlui-marginBottom-H6)", "Heading:textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "Heading:textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "Heading:textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "Heading:textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "Heading:textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)"}'`;
10291
- const heading$1 = "_heading_lxvlt_14";
10292
- const h1 = "_h1_lxvlt_14";
10293
- const h2 = "_h2_lxvlt_77";
10294
- const h3 = "_h3_lxvlt_140";
10295
- const h4 = "_h4_lxvlt_203";
10296
- const h5 = "_h5_lxvlt_266";
10297
- const h6 = "_h6_lxvlt_329";
10298
- const anchorRef = "_anchorRef_lxvlt_406";
10299
- const truncateOverflow = "_truncateOverflow_lxvlt_416";
10300
- const preserveLinebreaks = "_preserveLinebreaks_lxvlt_421";
10301
- const noEllipsis = "_noEllipsis_lxvlt_424";
10347
+ const themeVars$M = `'{"border-H1": "var(--xmlui-border-H1)", "borderHorizontal-H1": "var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1))", "borderVertical-H1": "var(--xmlui-borderVertical-H1, var(--xmlui-border-H1))", "borderLeft-H1": "var(--xmlui-borderLeft-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderRight-H1": "var(--xmlui-borderRight-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderTop-H1": "var(--xmlui-borderTop-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderBottom-H1": "var(--xmlui-borderBottom-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderWidth-H1": "var(--xmlui-borderWidth-H1)", "borderHorizontalWidth-H1": "var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1))", "borderLeftWidth-H1": "var(--xmlui-borderLeftWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderRightWidth-H1": "var(--xmlui-borderRightWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderVerticalWidth-H1": "var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1))", "borderTopWidth-H1": "var(--xmlui-borderTopWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderBottomWidth-H1": "var(--xmlui-borderBottomWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderStyle-H1": "var(--xmlui-borderStyle-H1)", "borderHorizontalStyle-H1": "var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1))", "borderLeftStyle-H1": "var(--xmlui-borderLeftStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderRightStyle-H1": "var(--xmlui-borderRightStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderVerticalStyle-H1": "var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1))", "borderTopStyle-H1": "var(--xmlui-borderTopStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderBottomStyle-H1": "var(--xmlui-borderBottomStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderColor-H1": "var(--xmlui-borderColor-H1)", "borderHorizontalColor-H1": "var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1))", "borderLeftColor-H1": "var(--xmlui-borderLeftColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderRightColor-H1": "var(--xmlui-borderRightColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderVerticalColor-H1": "var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1))", "borderTopColor-H1": "var(--xmlui-borderTopColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderBottomColor-H1": "var(--xmlui-borderBottomColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderStartStartRadius-H1": "var(--xmlui-borderStartStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderStartEndRadius-H1": "var(--xmlui-borderStartEndRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndStartRadius-H1": "var(--xmlui-borderEndStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndEndRadius-H1": "var(--xmlui-borderEndEndRadius-H1, var(--xmlui-borderRadius-H1))", "padding-H1": "var(--xmlui-padding-H1)", "paddingHorizontal-H1": "var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1))", "paddingVertical-H1": "var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1))", "paddingLeft-H1": "var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingRight-H1": "var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingTop-H1": "var(--xmlui-paddingTop-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "paddingBottom-H1": "var(--xmlui-paddingBottom-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "textColor-H1": "var(--xmlui-textColor-H1)", "fontFamily-H1": "var(--xmlui-fontFamily-H1)", "fontSize-H1": "var(--xmlui-fontSize-H1)", "fontStyle-H1": "var(--xmlui-fontStyle-H1)", "fontVariant-H1": "var(--xmlui-fontVariant-H1)", "fontWeight-H1": "var(--xmlui-fontWeight-H1)", "fontStretch-H1": "var(--xmlui-fontStretch-H1)", "textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "lineHeight-H1": "var(--xmlui-lineHeight-H1)", "backgroundColor-H1": "var(--xmlui-backgroundColor-H1)", "textTransform-H1": "var(--xmlui-textTransform-H1)", "letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "wordSpacing-H1": "var(--xmlui-wordSpacing-H1)", "textShadow-H1": "var(--xmlui-textShadow-H1)", "textIndent-H1": "var(--xmlui-textIndent-H1)", "textAlign-H1": "var(--xmlui-textAlign-H1)", "textAlignLast-H1": "var(--xmlui-textAlignLast-H1)", "wordBreak-H1": "var(--xmlui-wordBreak-H1)", "wordWrap-H1": "var(--xmlui-wordWrap-H1)", "direction-H1": "var(--xmlui-direction-H1)", "writingMode-H1": "var(--xmlui-writingMode-H1)", "lineBreak-H1": "var(--xmlui-lineBreak-H1)", "border-H2": "var(--xmlui-border-H2)", "borderHorizontal-H2": "var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2))", "borderVertical-H2": "var(--xmlui-borderVertical-H2, var(--xmlui-border-H2))", "borderLeft-H2": "var(--xmlui-borderLeft-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderRight-H2": "var(--xmlui-borderRight-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderTop-H2": "var(--xmlui-borderTop-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderBottom-H2": "var(--xmlui-borderBottom-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderWidth-H2": "var(--xmlui-borderWidth-H2)", "borderHorizontalWidth-H2": "var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2))", "borderLeftWidth-H2": "var(--xmlui-borderLeftWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderRightWidth-H2": "var(--xmlui-borderRightWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderVerticalWidth-H2": "var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2))", "borderTopWidth-H2": "var(--xmlui-borderTopWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderBottomWidth-H2": "var(--xmlui-borderBottomWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderStyle-H2": "var(--xmlui-borderStyle-H2)", "borderHorizontalStyle-H2": "var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2))", "borderLeftStyle-H2": "var(--xmlui-borderLeftStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderRightStyle-H2": "var(--xmlui-borderRightStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderVerticalStyle-H2": "var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2))", "borderTopStyle-H2": "var(--xmlui-borderTopStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderBottomStyle-H2": "var(--xmlui-borderBottomStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderColor-H2": "var(--xmlui-borderColor-H2)", "borderHorizontalColor-H2": "var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2))", "borderLeftColor-H2": "var(--xmlui-borderLeftColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderRightColor-H2": "var(--xmlui-borderRightColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderVerticalColor-H2": "var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2))", "borderTopColor-H2": "var(--xmlui-borderTopColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderBottomColor-H2": "var(--xmlui-borderBottomColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderStartStartRadius-H2": "var(--xmlui-borderStartStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderStartEndRadius-H2": "var(--xmlui-borderStartEndRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndStartRadius-H2": "var(--xmlui-borderEndStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndEndRadius-H2": "var(--xmlui-borderEndEndRadius-H2, var(--xmlui-borderRadius-H2))", "padding-H2": "var(--xmlui-padding-H2)", "paddingHorizontal-H2": "var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2))", "paddingVertical-H2": "var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2))", "paddingLeft-H2": "var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingRight-H2": "var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingTop-H2": "var(--xmlui-paddingTop-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "paddingBottom-H2": "var(--xmlui-paddingBottom-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "textColor-H2": "var(--xmlui-textColor-H2)", "fontFamily-H2": "var(--xmlui-fontFamily-H2)", "fontSize-H2": "var(--xmlui-fontSize-H2)", "fontStyle-H2": "var(--xmlui-fontStyle-H2)", "fontVariant-H2": "var(--xmlui-fontVariant-H2)", "fontWeight-H2": "var(--xmlui-fontWeight-H2)", "fontStretch-H2": "var(--xmlui-fontStretch-H2)", "textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "lineHeight-H2": "var(--xmlui-lineHeight-H2)", "backgroundColor-H2": "var(--xmlui-backgroundColor-H2)", "textTransform-H2": "var(--xmlui-textTransform-H2)", "letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "wordSpacing-H2": "var(--xmlui-wordSpacing-H2)", "textShadow-H2": "var(--xmlui-textShadow-H2)", "textIndent-H2": "var(--xmlui-textIndent-H2)", "textAlign-H2": "var(--xmlui-textAlign-H2)", "textAlignLast-H2": "var(--xmlui-textAlignLast-H2)", "wordBreak-H2": "var(--xmlui-wordBreak-H2)", "wordWrap-H2": "var(--xmlui-wordWrap-H2)", "direction-H2": "var(--xmlui-direction-H2)", "writingMode-H2": "var(--xmlui-writingMode-H2)", "lineBreak-H2": "var(--xmlui-lineBreak-H2)", "border-H3": "var(--xmlui-border-H3)", "borderHorizontal-H3": "var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3))", "borderVertical-H3": "var(--xmlui-borderVertical-H3, var(--xmlui-border-H3))", "borderLeft-H3": "var(--xmlui-borderLeft-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderRight-H3": "var(--xmlui-borderRight-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderTop-H3": "var(--xmlui-borderTop-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderBottom-H3": "var(--xmlui-borderBottom-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderWidth-H3": "var(--xmlui-borderWidth-H3)", "borderHorizontalWidth-H3": "var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3))", "borderLeftWidth-H3": "var(--xmlui-borderLeftWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderRightWidth-H3": "var(--xmlui-borderRightWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderVerticalWidth-H3": "var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3))", "borderTopWidth-H3": "var(--xmlui-borderTopWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderBottomWidth-H3": "var(--xmlui-borderBottomWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderStyle-H3": "var(--xmlui-borderStyle-H3)", "borderHorizontalStyle-H3": "var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3))", "borderLeftStyle-H3": "var(--xmlui-borderLeftStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderRightStyle-H3": "var(--xmlui-borderRightStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderVerticalStyle-H3": "var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3))", "borderTopStyle-H3": "var(--xmlui-borderTopStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderBottomStyle-H3": "var(--xmlui-borderBottomStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderColor-H3": "var(--xmlui-borderColor-H3)", "borderHorizontalColor-H3": "var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3))", "borderLeftColor-H3": "var(--xmlui-borderLeftColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderRightColor-H3": "var(--xmlui-borderRightColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderVerticalColor-H3": "var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3))", "borderTopColor-H3": "var(--xmlui-borderTopColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderBottomColor-H3": "var(--xmlui-borderBottomColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderStartStartRadius-H3": "var(--xmlui-borderStartStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderStartEndRadius-H3": "var(--xmlui-borderStartEndRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndStartRadius-H3": "var(--xmlui-borderEndStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndEndRadius-H3": "var(--xmlui-borderEndEndRadius-H3, var(--xmlui-borderRadius-H3))", "padding-H3": "var(--xmlui-padding-H3)", "paddingHorizontal-H3": "var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3))", "paddingVertical-H3": "var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3))", "paddingLeft-H3": "var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingRight-H3": "var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingTop-H3": "var(--xmlui-paddingTop-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "paddingBottom-H3": "var(--xmlui-paddingBottom-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "textColor-H3": "var(--xmlui-textColor-H3)", "fontFamily-H3": "var(--xmlui-fontFamily-H3)", "fontSize-H3": "var(--xmlui-fontSize-H3)", "fontStyle-H3": "var(--xmlui-fontStyle-H3)", "fontVariant-H3": "var(--xmlui-fontVariant-H3)", "fontWeight-H3": "var(--xmlui-fontWeight-H3)", "fontStretch-H3": "var(--xmlui-fontStretch-H3)", "textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "lineHeight-H3": "var(--xmlui-lineHeight-H3)", "backgroundColor-H3": "var(--xmlui-backgroundColor-H3)", "textTransform-H3": "var(--xmlui-textTransform-H3)", "letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "wordSpacing-H3": "var(--xmlui-wordSpacing-H3)", "textShadow-H3": "var(--xmlui-textShadow-H3)", "textIndent-H3": "var(--xmlui-textIndent-H3)", "textAlign-H3": "var(--xmlui-textAlign-H3)", "textAlignLast-H3": "var(--xmlui-textAlignLast-H3)", "wordBreak-H3": "var(--xmlui-wordBreak-H3)", "wordWrap-H3": "var(--xmlui-wordWrap-H3)", "direction-H3": "var(--xmlui-direction-H3)", "writingMode-H3": "var(--xmlui-writingMode-H3)", "lineBreak-H3": "var(--xmlui-lineBreak-H3)", "border-H4": "var(--xmlui-border-H4)", "borderHorizontal-H4": "var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4))", "borderVertical-H4": "var(--xmlui-borderVertical-H4, var(--xmlui-border-H4))", "borderLeft-H4": "var(--xmlui-borderLeft-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderRight-H4": "var(--xmlui-borderRight-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderTop-H4": "var(--xmlui-borderTop-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderBottom-H4": "var(--xmlui-borderBottom-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderWidth-H4": "var(--xmlui-borderWidth-H4)", "borderHorizontalWidth-H4": "var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4))", "borderLeftWidth-H4": "var(--xmlui-borderLeftWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderRightWidth-H4": "var(--xmlui-borderRightWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderVerticalWidth-H4": "var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4))", "borderTopWidth-H4": "var(--xmlui-borderTopWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderBottomWidth-H4": "var(--xmlui-borderBottomWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderStyle-H4": "var(--xmlui-borderStyle-H4)", "borderHorizontalStyle-H4": "var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4))", "borderLeftStyle-H4": "var(--xmlui-borderLeftStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderRightStyle-H4": "var(--xmlui-borderRightStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderVerticalStyle-H4": "var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4))", "borderTopStyle-H4": "var(--xmlui-borderTopStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderBottomStyle-H4": "var(--xmlui-borderBottomStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderColor-H4": "var(--xmlui-borderColor-H4)", "borderHorizontalColor-H4": "var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4))", "borderLeftColor-H4": "var(--xmlui-borderLeftColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderRightColor-H4": "var(--xmlui-borderRightColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderVerticalColor-H4": "var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4))", "borderTopColor-H4": "var(--xmlui-borderTopColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderBottomColor-H4": "var(--xmlui-borderBottomColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderStartStartRadius-H4": "var(--xmlui-borderStartStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderStartEndRadius-H4": "var(--xmlui-borderStartEndRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndStartRadius-H4": "var(--xmlui-borderEndStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndEndRadius-H4": "var(--xmlui-borderEndEndRadius-H4, var(--xmlui-borderRadius-H4))", "padding-H4": "var(--xmlui-padding-H4)", "paddingHorizontal-H4": "var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4))", "paddingVertical-H4": "var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4))", "paddingLeft-H4": "var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingRight-H4": "var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingTop-H4": "var(--xmlui-paddingTop-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "paddingBottom-H4": "var(--xmlui-paddingBottom-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "textColor-H4": "var(--xmlui-textColor-H4)", "fontFamily-H4": "var(--xmlui-fontFamily-H4)", "fontSize-H4": "var(--xmlui-fontSize-H4)", "fontStyle-H4": "var(--xmlui-fontStyle-H4)", "fontVariant-H4": "var(--xmlui-fontVariant-H4)", "fontWeight-H4": "var(--xmlui-fontWeight-H4)", "fontStretch-H4": "var(--xmlui-fontStretch-H4)", "textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "lineHeight-H4": "var(--xmlui-lineHeight-H4)", "backgroundColor-H4": "var(--xmlui-backgroundColor-H4)", "textTransform-H4": "var(--xmlui-textTransform-H4)", "letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "wordSpacing-H4": "var(--xmlui-wordSpacing-H4)", "textShadow-H4": "var(--xmlui-textShadow-H4)", "textIndent-H4": "var(--xmlui-textIndent-H4)", "textAlign-H4": "var(--xmlui-textAlign-H4)", "textAlignLast-H4": "var(--xmlui-textAlignLast-H4)", "wordBreak-H4": "var(--xmlui-wordBreak-H4)", "wordWrap-H4": "var(--xmlui-wordWrap-H4)", "direction-H4": "var(--xmlui-direction-H4)", "writingMode-H4": "var(--xmlui-writingMode-H4)", "lineBreak-H4": "var(--xmlui-lineBreak-H4)", "border-H5": "var(--xmlui-border-H5)", "borderHorizontal-H5": "var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5))", "borderVertical-H5": "var(--xmlui-borderVertical-H5, var(--xmlui-border-H5))", "borderLeft-H5": "var(--xmlui-borderLeft-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderRight-H5": "var(--xmlui-borderRight-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderTop-H5": "var(--xmlui-borderTop-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderBottom-H5": "var(--xmlui-borderBottom-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderWidth-H5": "var(--xmlui-borderWidth-H5)", "borderHorizontalWidth-H5": "var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5))", "borderLeftWidth-H5": "var(--xmlui-borderLeftWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderRightWidth-H5": "var(--xmlui-borderRightWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderVerticalWidth-H5": "var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5))", "borderTopWidth-H5": "var(--xmlui-borderTopWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderBottomWidth-H5": "var(--xmlui-borderBottomWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderStyle-H5": "var(--xmlui-borderStyle-H5)", "borderHorizontalStyle-H5": "var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5))", "borderLeftStyle-H5": "var(--xmlui-borderLeftStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderRightStyle-H5": "var(--xmlui-borderRightStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderVerticalStyle-H5": "var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5))", "borderTopStyle-H5": "var(--xmlui-borderTopStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderBottomStyle-H5": "var(--xmlui-borderBottomStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderColor-H5": "var(--xmlui-borderColor-H5)", "borderHorizontalColor-H5": "var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5))", "borderLeftColor-H5": "var(--xmlui-borderLeftColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderRightColor-H5": "var(--xmlui-borderRightColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderVerticalColor-H5": "var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5))", "borderTopColor-H5": "var(--xmlui-borderTopColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderBottomColor-H5": "var(--xmlui-borderBottomColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderStartStartRadius-H5": "var(--xmlui-borderStartStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderStartEndRadius-H5": "var(--xmlui-borderStartEndRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndStartRadius-H5": "var(--xmlui-borderEndStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndEndRadius-H5": "var(--xmlui-borderEndEndRadius-H5, var(--xmlui-borderRadius-H5))", "padding-H5": "var(--xmlui-padding-H5)", "paddingHorizontal-H5": "var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5))", "paddingVertical-H5": "var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5))", "paddingLeft-H5": "var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingRight-H5": "var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingTop-H5": "var(--xmlui-paddingTop-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "paddingBottom-H5": "var(--xmlui-paddingBottom-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "textColor-H5": "var(--xmlui-textColor-H5)", "fontFamily-H5": "var(--xmlui-fontFamily-H5)", "fontSize-H5": "var(--xmlui-fontSize-H5)", "fontStyle-H5": "var(--xmlui-fontStyle-H5)", "fontVariant-H5": "var(--xmlui-fontVariant-H5)", "fontWeight-H5": "var(--xmlui-fontWeight-H5)", "fontStretch-H5": "var(--xmlui-fontStretch-H5)", "textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "lineHeight-H5": "var(--xmlui-lineHeight-H5)", "backgroundColor-H5": "var(--xmlui-backgroundColor-H5)", "textTransform-H5": "var(--xmlui-textTransform-H5)", "letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "wordSpacing-H5": "var(--xmlui-wordSpacing-H5)", "textShadow-H5": "var(--xmlui-textShadow-H5)", "textIndent-H5": "var(--xmlui-textIndent-H5)", "textAlign-H5": "var(--xmlui-textAlign-H5)", "textAlignLast-H5": "var(--xmlui-textAlignLast-H5)", "wordBreak-H5": "var(--xmlui-wordBreak-H5)", "wordWrap-H5": "var(--xmlui-wordWrap-H5)", "direction-H5": "var(--xmlui-direction-H5)", "writingMode-H5": "var(--xmlui-writingMode-H5)", "lineBreak-H5": "var(--xmlui-lineBreak-H5)", "border-H6": "var(--xmlui-border-H6)", "borderHorizontal-H6": "var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6))", "borderVertical-H6": "var(--xmlui-borderVertical-H6, var(--xmlui-border-H6))", "borderLeft-H6": "var(--xmlui-borderLeft-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderRight-H6": "var(--xmlui-borderRight-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderTop-H6": "var(--xmlui-borderTop-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderBottom-H6": "var(--xmlui-borderBottom-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderWidth-H6": "var(--xmlui-borderWidth-H6)", "borderHorizontalWidth-H6": "var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6))", "borderLeftWidth-H6": "var(--xmlui-borderLeftWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderRightWidth-H6": "var(--xmlui-borderRightWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderVerticalWidth-H6": "var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6))", "borderTopWidth-H6": "var(--xmlui-borderTopWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderBottomWidth-H6": "var(--xmlui-borderBottomWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderStyle-H6": "var(--xmlui-borderStyle-H6)", "borderHorizontalStyle-H6": "var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6))", "borderLeftStyle-H6": "var(--xmlui-borderLeftStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderRightStyle-H6": "var(--xmlui-borderRightStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderVerticalStyle-H6": "var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6))", "borderTopStyle-H6": "var(--xmlui-borderTopStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderBottomStyle-H6": "var(--xmlui-borderBottomStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderColor-H6": "var(--xmlui-borderColor-H6)", "borderHorizontalColor-H6": "var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6))", "borderLeftColor-H6": "var(--xmlui-borderLeftColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderRightColor-H6": "var(--xmlui-borderRightColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderVerticalColor-H6": "var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6))", "borderTopColor-H6": "var(--xmlui-borderTopColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderBottomColor-H6": "var(--xmlui-borderBottomColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderStartStartRadius-H6": "var(--xmlui-borderStartStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderStartEndRadius-H6": "var(--xmlui-borderStartEndRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndStartRadius-H6": "var(--xmlui-borderEndStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndEndRadius-H6": "var(--xmlui-borderEndEndRadius-H6, var(--xmlui-borderRadius-H6))", "padding-H6": "var(--xmlui-padding-H6)", "paddingHorizontal-H6": "var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6))", "paddingVertical-H6": "var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6))", "paddingLeft-H6": "var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingRight-H6": "var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingTop-H6": "var(--xmlui-paddingTop-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "paddingBottom-H6": "var(--xmlui-paddingBottom-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "textColor-H6": "var(--xmlui-textColor-H6)", "fontFamily-H6": "var(--xmlui-fontFamily-H6)", "fontSize-H6": "var(--xmlui-fontSize-H6)", "fontStyle-H6": "var(--xmlui-fontStyle-H6)", "fontVariant-H6": "var(--xmlui-fontVariant-H6)", "fontWeight-H6": "var(--xmlui-fontWeight-H6)", "fontStretch-H6": "var(--xmlui-fontStretch-H6)", "textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)", "lineHeight-H6": "var(--xmlui-lineHeight-H6)", "backgroundColor-H6": "var(--xmlui-backgroundColor-H6)", "textTransform-H6": "var(--xmlui-textTransform-H6)", "letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "wordSpacing-H6": "var(--xmlui-wordSpacing-H6)", "textShadow-H6": "var(--xmlui-textShadow-H6)", "textIndent-H6": "var(--xmlui-textIndent-H6)", "textAlign-H6": "var(--xmlui-textAlign-H6)", "textAlignLast-H6": "var(--xmlui-textAlignLast-H6)", "wordBreak-H6": "var(--xmlui-wordBreak-H6)", "wordWrap-H6": "var(--xmlui-wordWrap-H6)", "direction-H6": "var(--xmlui-direction-H6)", "writingMode-H6": "var(--xmlui-writingMode-H6)", "lineBreak-H6": "var(--xmlui-lineBreak-H6)", "color-anchor-Heading": "var(--xmlui-color-anchor-Heading)", "gap-anchor-Heading": "var(--xmlui-gap-anchor-Heading)", "textDecorationLine-anchor-Heading": "var(--xmlui-textDecorationLine-anchor-Heading)", "Heading:textColor-H1": "var(--xmlui-textColor-H1)", "Heading:letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "Heading:fontFamily-H1": "var(--xmlui-fontFamily-H1)", "Heading:fontWeight-H1": "var(--xmlui-fontWeight-H1)", "marginTop-H1": "var(--xmlui-marginTop-H1)", "marginBottom-H1": "var(--xmlui-marginBottom-H1)", "Heading:textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "Heading:textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "Heading:textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "Heading:textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "Heading:textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "Heading:textColor-H2": "var(--xmlui-textColor-H2)", "Heading:letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "Heading:fontFamily-H2": "var(--xmlui-fontFamily-H2)", "Heading:fontWeight-H2": "var(--xmlui-fontWeight-H2)", "marginTop-H2": "var(--xmlui-marginTop-H2)", "marginBottom-H2": "var(--xmlui-marginBottom-H2)", "Heading:textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "Heading:textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "Heading:textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "Heading:textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "Heading:textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "Heading:textColor-H3": "var(--xmlui-textColor-H3)", "Heading:letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "Heading:fontFamily-H3": "var(--xmlui-fontFamily-H3)", "Heading:fontWeight-H3": "var(--xmlui-fontWeight-H3)", "marginTop-H3": "var(--xmlui-marginTop-H3)", "marginBottom-H3": "var(--xmlui-marginBottom-H3)", "Heading:textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "Heading:textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "Heading:textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "Heading:textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "Heading:textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "Heading:textColor-H4": "var(--xmlui-textColor-H4)", "Heading:letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "Heading:fontFamily-H4": "var(--xmlui-fontFamily-H4)", "Heading:fontWeight-H4": "var(--xmlui-fontWeight-H4)", "marginTop-H4": "var(--xmlui-marginTop-H4)", "marginBottom-H4": "var(--xmlui-marginBottom-H4)", "Heading:textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "Heading:textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "Heading:textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "Heading:textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "Heading:textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "Heading:textColor-H5": "var(--xmlui-textColor-H5)", "Heading:letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "Heading:fontFamily-H5": "var(--xmlui-fontFamily-H5)", "Heading:fontWeight-H5": "var(--xmlui-fontWeight-H5)", "marginTop-H5": "var(--xmlui-marginTop-H5)", "marginBottom-H5": "var(--xmlui-marginBottom-H5)", "Heading:textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "Heading:textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "Heading:textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "Heading:textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "Heading:textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "Heading:textColor-H6": "var(--xmlui-textColor-H6)", "Heading:letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "Heading:fontFamily-H6": "var(--xmlui-fontFamily-H6)", "Heading:fontWeight-H6": "var(--xmlui-fontWeight-H6)", "marginTop-H6": "var(--xmlui-marginTop-H6)", "marginBottom-H6": "var(--xmlui-marginBottom-H6)", "Heading:textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "Heading:textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "Heading:textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "Heading:textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "Heading:textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)", "Heading:backgroundColor-H1": "var(--xmlui-backgroundColor-H1)", "Heading:backgroundColor-H2": "var(--xmlui-backgroundColor-H2)", "Heading:backgroundColor-H3": "var(--xmlui-backgroundColor-H3)", "Heading:backgroundColor-H4": "var(--xmlui-backgroundColor-H4)", "Heading:backgroundColor-H5": "var(--xmlui-backgroundColor-H5)", "Heading:backgroundColor-H6": "var(--xmlui-backgroundColor-H6)"}'`;
10348
+ const heading$1 = "_heading_w0ok6_14";
10349
+ const h1 = "_h1_w0ok6_14";
10350
+ const h2 = "_h2_w0ok6_78";
10351
+ const h3 = "_h3_w0ok6_142";
10352
+ const h4 = "_h4_w0ok6_206";
10353
+ const h5 = "_h5_w0ok6_270";
10354
+ const h6 = "_h6_w0ok6_334";
10355
+ const anchorRef = "_anchorRef_w0ok6_412";
10356
+ const truncateOverflow = "_truncateOverflow_w0ok6_422";
10357
+ const preserveLinebreaks = "_preserveLinebreaks_w0ok6_427";
10358
+ const noEllipsis = "_noEllipsis_w0ok6_430";
10302
10359
  const styles$11 = {
10303
10360
  themeVars: themeVars$M,
10304
10361
  heading: heading$1,
@@ -10630,14 +10687,14 @@ const changeListenerComponentRenderer = createComponentRenderer(
10630
10687
  }
10631
10688
  );
10632
10689
  const themeVars$L = `'{"Input:borderRadius-Checkbox--default": "var(--xmlui-borderRadius-Checkbox--default)", "Input:borderColor-Checkbox--default": "var(--xmlui-borderColor-Checkbox--default)", "Input:backgroundColor-Checkbox--default": "var(--xmlui-backgroundColor-Checkbox--default)", "Input:outlineWidth-Checkbox--default--focus": "var(--xmlui-outlineWidth-Checkbox--default--focus)", "Input:outlineColor-Checkbox--default--focus": "var(--xmlui-outlineColor-Checkbox--default--focus)", "Input:outlineStyle-Checkbox--default--focus": "var(--xmlui-outlineStyle-Checkbox--default--focus)", "Input:outlineOffset-Checkbox--default--focus": "var(--xmlui-outlineOffset-Checkbox--default--focus)", "Input:borderRadius-Checkbox--error": "var(--xmlui-borderRadius-Checkbox--error)", "Input:borderColor-Checkbox--error": "var(--xmlui-borderColor-Checkbox--error)", "Input:backgroundColor-Checkbox--error": "var(--xmlui-backgroundColor-Checkbox--error)", "Input:outlineWidth-Checkbox--error--focus": "var(--xmlui-outlineWidth-Checkbox--error--focus)", "Input:outlineColor-Checkbox--error--focus": "var(--xmlui-outlineColor-Checkbox--error--focus)", "Input:outlineStyle-Checkbox--error--focus": "var(--xmlui-outlineStyle-Checkbox--error--focus)", "Input:outlineOffset-Checkbox--error--focus": "var(--xmlui-outlineOffset-Checkbox--error--focus)", "Input:borderRadius-Checkbox--warning": "var(--xmlui-borderRadius-Checkbox--warning)", "Input:borderColor-Checkbox--warning": "var(--xmlui-borderColor-Checkbox--warning)", "Input:backgroundColor-Checkbox--warning": "var(--xmlui-backgroundColor-Checkbox--warning)", "Input:outlineWidth-Checkbox--warning--focus": "var(--xmlui-outlineWidth-Checkbox--warning--focus)", "Input:outlineColor-Checkbox--warning--focus": "var(--xmlui-outlineColor-Checkbox--warning--focus)", "Input:outlineStyle-Checkbox--warning--focus": "var(--xmlui-outlineStyle-Checkbox--warning--focus)", "Input:outlineOffset-Checkbox--warning--focus": "var(--xmlui-outlineOffset-Checkbox--warning--focus)", "Input:borderRadius-Checkbox--success": "var(--xmlui-borderRadius-Checkbox--success)", "Input:borderColor-Checkbox--success": "var(--xmlui-borderColor-Checkbox--success)", "Input:backgroundColor-Checkbox--success": "var(--xmlui-backgroundColor-Checkbox--success)", "Input:outlineWidth-Checkbox--success--focus": "var(--xmlui-outlineWidth-Checkbox--success--focus)", "Input:outlineColor-Checkbox--success--focus": "var(--xmlui-outlineColor-Checkbox--success--focus)", "Input:outlineStyle-Checkbox--success--focus": "var(--xmlui-outlineStyle-Checkbox--success--focus)", "Input:outlineOffset-Checkbox--success--focus": "var(--xmlui-outlineOffset-Checkbox--success--focus)", "Input:borderColor-Checkbox--default--hover": "var(--xmlui-borderColor-Checkbox--default--hover)", "Input:backgroundColor-Checkbox--disabled": "var(--xmlui-backgroundColor-Checkbox--disabled)", "Input:borderColor-Checkbox--disabled": "var(--xmlui-borderColor-Checkbox--disabled)", "Input:borderColor-checked-Checkbox": "var(--xmlui-borderColor-checked-Checkbox)", "Input:backgroundColor-checked-Checkbox": "var(--xmlui-backgroundColor-checked-Checkbox)", "Input:borderColor-checked-Checkbox--error": "var(--xmlui-borderColor-checked-Checkbox--error)", "Input:backgroundColor-checked-Checkbox--error": "var(--xmlui-backgroundColor-checked-Checkbox--error)", "Input:borderColor-checked-Checkbox--warning": "var(--xmlui-borderColor-checked-Checkbox--warning)", "Input:backgroundColor-checked-Checkbox--warning": "var(--xmlui-backgroundColor-checked-Checkbox--warning)", "Input:borderColor-checked-Checkbox--success": "var(--xmlui-borderColor-checked-Checkbox--success)", "Input:backgroundColor-checked-Checkbox--success": "var(--xmlui-backgroundColor-checked-Checkbox--success)", "backgroundColor-indicator-Checkbox": "var(--xmlui-backgroundColor-indicator-Checkbox)", "Input:borderColor-Switch--default--hover": "var(--xmlui-borderColor-Switch--default--hover)", "Input:backgroundColor-Switch--disabled": "var(--xmlui-backgroundColor-Switch--disabled)", "Input:borderColor-Switch--disabled": "var(--xmlui-borderColor-Switch--disabled)", "Input:borderColor-checked-Switch": "var(--xmlui-borderColor-checked-Switch)", "Input:backgroundColor-checked-Switch": "var(--xmlui-backgroundColor-checked-Switch)", "Input:borderColor-checked-Switch--error": "var(--xmlui-borderColor-checked-Switch--error)", "Input:backgroundColor-checked-Switch--error": "var(--xmlui-backgroundColor-checked-Switch--error)", "Input:borderColor-checked-Switch--warning": "var(--xmlui-borderColor-checked-Switch--warning)", "Input:backgroundColor-checked-Switch--warning": "var(--xmlui-backgroundColor-checked-Switch--warning)", "Input:borderColor-checked-Switch--success": "var(--xmlui-borderColor-checked-Switch--success)", "Input:backgroundColor-checked-Switch--success": "var(--xmlui-backgroundColor-checked-Switch--success)", "Input:backgroundColor-Switch": "var(--xmlui-backgroundColor-Switch)", "Input:borderColor-Switch": "var(--xmlui-borderColor-Switch)", "backgroundColor-indicator-Switch": "var(--xmlui-backgroundColor-indicator-Switch)", "backgroundColor-checked-Switch": "var(--xmlui-backgroundColor-checked-Switch)", "backgroundColor-indicator-checked-Switch": "var(--xmlui-backgroundColor-indicator-checked-Switch)", "backgroundColor-Switch-indicator--disabled": "var(--xmlui-backgroundColor-Switch-indicator--disabled)", "Input:outlineWidth-Switch--focus": "var(--xmlui-outlineWidth-Switch--focus)", "Input:outlineColor-Switch--focus": "var(--xmlui-outlineColor-Switch--focus)", "Input:outlineStyle-Switch--focus": "var(--xmlui-outlineStyle-Switch--focus)", "Input:outlineOffset-Switch--focus": "var(--xmlui-outlineOffset-Switch--focus)", "Input:borderColor-Switch--error": "var(--xmlui-borderColor-Switch--error)", "Input:borderColor-Switch--warning": "var(--xmlui-borderColor-Switch--warning)", "Input:borderColor-Switch--success": "var(--xmlui-borderColor-Switch--success)"}'`;
10633
- const resetAppearance = "_resetAppearance_qiuzz_14";
10634
- const label$1 = "_label_qiuzz_21";
10635
- const inputContainer = "_inputContainer_qiuzz_24";
10636
- const checkbox = "_checkbox_qiuzz_31";
10637
- const forceHover = "_forceHover_qiuzz_62";
10638
- const error$c = "_error_qiuzz_65";
10639
- const warning$d = "_warning_qiuzz_76";
10640
- const valid$c = "_valid_qiuzz_87";
10690
+ const resetAppearance = "_resetAppearance_1c7hf_14";
10691
+ const label$1 = "_label_1c7hf_21";
10692
+ const inputContainer = "_inputContainer_1c7hf_24";
10693
+ const checkbox = "_checkbox_1c7hf_31";
10694
+ const forceHover = "_forceHover_1c7hf_62";
10695
+ const error$c = "_error_1c7hf_65";
10696
+ const warning$d = "_warning_1c7hf_76";
10697
+ const valid$c = "_valid_1c7hf_87";
10641
10698
  const styles$10 = {
10642
10699
  themeVars: themeVars$L,
10643
10700
  resetAppearance,
@@ -10648,7 +10705,7 @@ const styles$10 = {
10648
10705
  error: error$c,
10649
10706
  warning: warning$d,
10650
10707
  valid: valid$c,
10651
- "switch": "_switch_qiuzz_146"
10708
+ "switch": "_switch_1c7hf_146"
10652
10709
  };
10653
10710
  const defaultProps$Y = {
10654
10711
  initialValue: false,
@@ -11057,51 +11114,51 @@ const contentSeparatorComponentRenderer = createComponentRenderer(
11057
11114
  }
11058
11115
  );
11059
11116
  const themeVars$J = `'{"padding-DatePicker": "var(--xmlui-padding-DatePicker)", "paddingHorizontal-DatePicker": "var(--xmlui-paddingHorizontal-DatePicker, var(--xmlui-padding-DatePicker))", "paddingVertical-DatePicker": "var(--xmlui-paddingVertical-DatePicker, var(--xmlui-padding-DatePicker))", "paddingLeft-DatePicker": "var(--xmlui-paddingLeft-DatePicker, var(--xmlui-paddingHorizontal-DatePicker, var(--xmlui-padding-DatePicker)))", "paddingRight-DatePicker": "var(--xmlui-paddingRight-DatePicker, var(--xmlui-paddingHorizontal-DatePicker, var(--xmlui-padding-DatePicker)))", "paddingTop-DatePicker": "var(--xmlui-paddingTop-DatePicker, var(--xmlui-paddingVertical-DatePicker, var(--xmlui-padding-DatePicker)))", "paddingBottom-DatePicker": "var(--xmlui-paddingBottom-DatePicker, var(--xmlui-paddingVertical-DatePicker, var(--xmlui-padding-DatePicker)))", "Input:borderRadius-DatePicker--default": "var(--xmlui-borderRadius-DatePicker--default)", "Input:borderColor-DatePicker--default": "var(--xmlui-borderColor-DatePicker--default)", "Input:borderWidth-DatePicker--default": "var(--xmlui-borderWidth-DatePicker--default)", "Input:borderStyle-DatePicker--default": "var(--xmlui-borderStyle-DatePicker--default)", "Input:backgroundColor-DatePicker--default": "var(--xmlui-backgroundColor-DatePicker--default)", "Input:boxShadow-DatePicker--default": "var(--xmlui-boxShadow-DatePicker--default)", "Input:textColor-DatePicker--default": "var(--xmlui-textColor-DatePicker--default)", "Input:borderColor-DatePicker--default--hover": "var(--xmlui-borderColor-DatePicker--default--hover)", "Input:backgroundColor-DatePicker--default--hover": "var(--xmlui-backgroundColor-DatePicker--default--hover)", "Input:boxShadow-DatePicker--default--hover": "var(--xmlui-boxShadow-DatePicker--default--hover)", "Input:textColor-DatePicker--default--hover": "var(--xmlui-textColor-DatePicker--default--hover)", "Input:outlineWidth-DatePicker--default--focus": "var(--xmlui-outlineWidth-DatePicker--default--focus)", "Input:outlineColor-DatePicker--default--focus": "var(--xmlui-outlineColor-DatePicker--default--focus)", "Input:outlineStyle-DatePicker--default--focus": "var(--xmlui-outlineStyle-DatePicker--default--focus)", "Input:outlineOffset-DatePicker--default--focus": "var(--xmlui-outlineOffset-DatePicker--default--focus)", "Input:textColor-placeholder-DatePicker--default": "var(--xmlui-textColor-placeholder-DatePicker--default)", "Input:fontSize-placeholder-DatePicker--default": "var(--xmlui-fontSize-placeholder-DatePicker--default)", "Input:color-adornment-DatePicker--default": "var(--xmlui-color-adornment-DatePicker--default)", "Input:borderRadius-DatePicker--error": "var(--xmlui-borderRadius-DatePicker--error)", "Input:borderColor-DatePicker--error": "var(--xmlui-borderColor-DatePicker--error)", "Input:borderWidth-DatePicker--error": "var(--xmlui-borderWidth-DatePicker--error)", "Input:borderStyle-DatePicker--error": "var(--xmlui-borderStyle-DatePicker--error)", "Input:backgroundColor-DatePicker--error": "var(--xmlui-backgroundColor-DatePicker--error)", "Input:boxShadow-DatePicker--error": "var(--xmlui-boxShadow-DatePicker--error)", "Input:textColor-DatePicker--error": "var(--xmlui-textColor-DatePicker--error)", "Input:borderColor-DatePicker--error--hover": "var(--xmlui-borderColor-DatePicker--error--hover)", "Input:backgroundColor-DatePicker--error--hover": "var(--xmlui-backgroundColor-DatePicker--error--hover)", "Input:boxShadow-DatePicker--error--hover": "var(--xmlui-boxShadow-DatePicker--error--hover)", "Input:textColor-DatePicker--error--hover": "var(--xmlui-textColor-DatePicker--error--hover)", "Input:outlineWidth-DatePicker--error--focus": "var(--xmlui-outlineWidth-DatePicker--error--focus)", "Input:outlineColor-DatePicker--error--focus": "var(--xmlui-outlineColor-DatePicker--error--focus)", "Input:outlineStyle-DatePicker--error--focus": "var(--xmlui-outlineStyle-DatePicker--error--focus)", "Input:outlineOffset-DatePicker--error--focus": "var(--xmlui-outlineOffset-DatePicker--error--focus)", "Input:textColor-placeholder-DatePicker--error": "var(--xmlui-textColor-placeholder-DatePicker--error)", "Input:fontSize-placeholder-DatePicker--error": "var(--xmlui-fontSize-placeholder-DatePicker--error)", "Input:color-adornment-DatePicker--error": "var(--xmlui-color-adornment-DatePicker--error)", "Input:borderRadius-DatePicker--warning": "var(--xmlui-borderRadius-DatePicker--warning)", "Input:borderColor-DatePicker--warning": "var(--xmlui-borderColor-DatePicker--warning)", "Input:borderWidth-DatePicker--warning": "var(--xmlui-borderWidth-DatePicker--warning)", "Input:borderStyle-DatePicker--warning": "var(--xmlui-borderStyle-DatePicker--warning)", "Input:backgroundColor-DatePicker--warning": "var(--xmlui-backgroundColor-DatePicker--warning)", "Input:boxShadow-DatePicker--warning": "var(--xmlui-boxShadow-DatePicker--warning)", "Input:textColor-DatePicker--warning": "var(--xmlui-textColor-DatePicker--warning)", "Input:borderColor-DatePicker--warning--hover": "var(--xmlui-borderColor-DatePicker--warning--hover)", "Input:backgroundColor-DatePicker--warning--hover": "var(--xmlui-backgroundColor-DatePicker--warning--hover)", "Input:boxShadow-DatePicker--warning--hover": "var(--xmlui-boxShadow-DatePicker--warning--hover)", "Input:textColor-DatePicker--warning--hover": "var(--xmlui-textColor-DatePicker--warning--hover)", "Input:outlineWidth-DatePicker--warning--focus": "var(--xmlui-outlineWidth-DatePicker--warning--focus)", "Input:outlineColor-DatePicker--warning--focus": "var(--xmlui-outlineColor-DatePicker--warning--focus)", "Input:outlineStyle-DatePicker--warning--focus": "var(--xmlui-outlineStyle-DatePicker--warning--focus)", "Input:outlineOffset-DatePicker--warning--focus": "var(--xmlui-outlineOffset-DatePicker--warning--focus)", "Input:textColor-placeholder-DatePicker--warning": "var(--xmlui-textColor-placeholder-DatePicker--warning)", "Input:fontSize-placeholder-DatePicker--warning": "var(--xmlui-fontSize-placeholder-DatePicker--warning)", "Input:color-adornment-DatePicker--warning": "var(--xmlui-color-adornment-DatePicker--warning)", "Input:borderRadius-DatePicker--success": "var(--xmlui-borderRadius-DatePicker--success)", "Input:borderColor-DatePicker--success": "var(--xmlui-borderColor-DatePicker--success)", "Input:borderWidth-DatePicker--success": "var(--xmlui-borderWidth-DatePicker--success)", "Input:borderStyle-DatePicker--success": "var(--xmlui-borderStyle-DatePicker--success)", "Input:backgroundColor-DatePicker--success": "var(--xmlui-backgroundColor-DatePicker--success)", "Input:boxShadow-DatePicker--success": "var(--xmlui-boxShadow-DatePicker--success)", "Input:textColor-DatePicker--success": "var(--xmlui-textColor-DatePicker--success)", "Input:borderColor-DatePicker--success--hover": "var(--xmlui-borderColor-DatePicker--success--hover)", "Input:backgroundColor-DatePicker--success--hover": "var(--xmlui-backgroundColor-DatePicker--success--hover)", "Input:boxShadow-DatePicker--success--hover": "var(--xmlui-boxShadow-DatePicker--success--hover)", "Input:textColor-DatePicker--success--hover": "var(--xmlui-textColor-DatePicker--success--hover)", "Input:outlineWidth-DatePicker--success--focus": "var(--xmlui-outlineWidth-DatePicker--success--focus)", "Input:outlineColor-DatePicker--success--focus": "var(--xmlui-outlineColor-DatePicker--success--focus)", "Input:outlineStyle-DatePicker--success--focus": "var(--xmlui-outlineStyle-DatePicker--success--focus)", "Input:outlineOffset-DatePicker--success--focus": "var(--xmlui-outlineOffset-DatePicker--success--focus)", "Input:textColor-placeholder-DatePicker--success": "var(--xmlui-textColor-placeholder-DatePicker--success)", "Input:fontSize-placeholder-DatePicker--success": "var(--xmlui-fontSize-placeholder-DatePicker--success)", "Input:color-adornment-DatePicker--success": "var(--xmlui-color-adornment-DatePicker--success)", "Input:fontSize-DatePicker": "var(--xmlui-fontSize-DatePicker)", "Input:backgroundColor-DatePicker--disabled": "var(--xmlui-backgroundColor-DatePicker--disabled)", "Input:textColor-DatePicker--disabled": "var(--xmlui-textColor-DatePicker--disabled)", "Input:borderColor-DatePicker--disabled": "var(--xmlui-borderColor-DatePicker--disabled)", "Input:boxShadow-menu-DatePicker": "var(--xmlui-boxShadow-menu-DatePicker)", "Input:backgroundColor-menu-DatePicker": "var(--xmlui-backgroundColor-menu-DatePicker)", "Input:borderRadius-menu-DatePicker": "var(--xmlui-borderRadius-menu-DatePicker)", "Input:backgroundColor-item-DatePicker--active": "var(--xmlui-backgroundColor-item-DatePicker--active)", "Input:backgroundColor-item-DatePicker--hover": "var(--xmlui-backgroundColor-item-DatePicker--hover)", "Input:textColor-value-DatePicker": "var(--xmlui-textColor-value-DatePicker)", "Input:minHeight-DatePicker": "var(--xmlui-minHeight-DatePicker)", "Input:borderColor-selectedItem-DatePicker": "var(--xmlui-borderColor-selectedItem-DatePicker)"}'`;
11060
- const datePicker = "_datePicker_5391p_14";
11061
- const placeholder$1 = "_placeholder_5391p_52";
11062
- const adornment$3 = "_adornment_5391p_56";
11063
- const error$b = "_error_5391p_59";
11064
- const warning$c = "_warning_5391p_87";
11065
- const valid$b = "_valid_5391p_115";
11066
- const disabled$9 = "_disabled_5391p_143";
11067
- const indicator$3 = "_indicator_5391p_149";
11068
- const datePickerInput = "_datePickerInput_5391p_150";
11069
- const inlinePickerMenu = "_inlinePickerMenu_5391p_153";
11070
- const datePickerMenu = "_datePickerMenu_5391p_270";
11071
- const root$2 = "_root_5391p_281";
11072
- const day$1 = "_day_5391p_361";
11073
- const day_button = "_day_button_5391p_366";
11074
- const caption_label = "_caption_label_5391p_387";
11075
- const dropdown = "_dropdown_5391p_397";
11076
- const button_next = "_button_next_5391p_400";
11077
- const button_previous = "_button_previous_5391p_401";
11078
- const chevron$1 = "_chevron_5391p_430";
11079
- const nav$1 = "_nav_5391p_434";
11080
- const dropdowns = "_dropdowns_5391p_438";
11081
- const dropdown_root = "_dropdown_root_5391p_459";
11082
- const month_caption = "_month_caption_5391p_472";
11083
- const month$1 = "_month_5391p_472";
11084
- const months = "_months_5391p_505";
11085
- const month_grid = "_month_grid_5391p_512";
11086
- const weekday = "_weekday_5391p_523";
11087
- const week_number = "_week_number_5391p_532";
11088
- const today = "_today_5391p_543";
11089
- const outside = "_outside_5391p_543";
11090
- const selected$2 = "_selected_5391p_546";
11091
- const hidden$2 = "_hidden_5391p_559";
11092
- const range_start = "_range_start_5391p_563";
11093
- const range_middle = "_range_middle_5391p_570";
11094
- const range_end = "_range_end_5391p_579";
11095
- const focusable = "_focusable_5391p_590";
11096
- const datePickerValue = "_datePickerValue_5391p_593";
11097
- const weeks_before_enter = "_weeks_before_enter_5391p_629";
11098
- const weeks_before_exit = "_weeks_before_exit_5391p_632";
11099
- const weeks_after_enter = "_weeks_after_enter_5391p_635";
11100
- const weeks_after_exit = "_weeks_after_exit_5391p_638";
11101
- const caption_after_enter = "_caption_after_enter_5391p_669";
11102
- const caption_after_exit = "_caption_after_exit_5391p_672";
11103
- const caption_before_enter = "_caption_before_enter_5391p_675";
11104
- const caption_before_exit = "_caption_before_exit_5391p_678";
11117
+ const datePicker = "_datePicker_ew4ir_14";
11118
+ const placeholder$1 = "_placeholder_ew4ir_53";
11119
+ const adornment$3 = "_adornment_ew4ir_57";
11120
+ const error$b = "_error_ew4ir_60";
11121
+ const warning$c = "_warning_ew4ir_88";
11122
+ const valid$b = "_valid_ew4ir_116";
11123
+ const disabled$9 = "_disabled_ew4ir_144";
11124
+ const indicator$3 = "_indicator_ew4ir_150";
11125
+ const datePickerInput = "_datePickerInput_ew4ir_151";
11126
+ const inlinePickerMenu = "_inlinePickerMenu_ew4ir_154";
11127
+ const datePickerMenu = "_datePickerMenu_ew4ir_271";
11128
+ const root$2 = "_root_ew4ir_282";
11129
+ const day$1 = "_day_ew4ir_362";
11130
+ const day_button = "_day_button_ew4ir_367";
11131
+ const caption_label = "_caption_label_ew4ir_388";
11132
+ const dropdown = "_dropdown_ew4ir_398";
11133
+ const button_next = "_button_next_ew4ir_401";
11134
+ const button_previous = "_button_previous_ew4ir_402";
11135
+ const chevron$1 = "_chevron_ew4ir_431";
11136
+ const nav$1 = "_nav_ew4ir_435";
11137
+ const dropdowns = "_dropdowns_ew4ir_439";
11138
+ const dropdown_root = "_dropdown_root_ew4ir_461";
11139
+ const month_caption = "_month_caption_ew4ir_474";
11140
+ const month$1 = "_month_ew4ir_474";
11141
+ const months = "_months_ew4ir_507";
11142
+ const month_grid = "_month_grid_ew4ir_514";
11143
+ const weekday = "_weekday_ew4ir_525";
11144
+ const week_number = "_week_number_ew4ir_534";
11145
+ const today = "_today_ew4ir_545";
11146
+ const outside = "_outside_ew4ir_545";
11147
+ const selected$2 = "_selected_ew4ir_548";
11148
+ const hidden$2 = "_hidden_ew4ir_560";
11149
+ const range_start = "_range_start_ew4ir_564";
11150
+ const range_middle = "_range_middle_ew4ir_571";
11151
+ const range_end = "_range_end_ew4ir_580";
11152
+ const focusable = "_focusable_ew4ir_591";
11153
+ const datePickerValue = "_datePickerValue_ew4ir_594";
11154
+ const weeks_before_enter = "_weeks_before_enter_ew4ir_630";
11155
+ const weeks_before_exit = "_weeks_before_exit_ew4ir_633";
11156
+ const weeks_after_enter = "_weeks_after_enter_ew4ir_636";
11157
+ const weeks_after_exit = "_weeks_after_exit_ew4ir_639";
11158
+ const caption_after_enter = "_caption_after_enter_ew4ir_670";
11159
+ const caption_after_exit = "_caption_after_exit_ew4ir_673";
11160
+ const caption_before_enter = "_caption_before_enter_ew4ir_676";
11161
+ const caption_before_exit = "_caption_before_exit_ew4ir_679";
11105
11162
  const styles$_ = {
11106
11163
  themeVars: themeVars$J,
11107
11164
  datePicker,
@@ -11142,17 +11199,17 @@ const styles$_ = {
11142
11199
  focusable,
11143
11200
  datePickerValue,
11144
11201
  weeks_before_enter,
11145
- "rdp-slide_in_left": "_rdp-slide_in_left_5391p_1",
11202
+ "rdp-slide_in_left": "_rdp-slide_in_left_ew4ir_1",
11146
11203
  weeks_before_exit,
11147
- "rdp-slide_out_left": "_rdp-slide_out_left_5391p_1",
11204
+ "rdp-slide_out_left": "_rdp-slide_out_left_ew4ir_1",
11148
11205
  weeks_after_enter,
11149
- "rdp-slide_in_right": "_rdp-slide_in_right_5391p_1",
11206
+ "rdp-slide_in_right": "_rdp-slide_in_right_ew4ir_1",
11150
11207
  weeks_after_exit,
11151
- "rdp-slide_out_right": "_rdp-slide_out_right_5391p_1",
11208
+ "rdp-slide_out_right": "_rdp-slide_out_right_ew4ir_1",
11152
11209
  caption_after_enter,
11153
- "rdp-fade_in": "_rdp-fade_in_5391p_1",
11210
+ "rdp-fade_in": "_rdp-fade_in_ew4ir_1",
11154
11211
  caption_after_exit,
11155
- "rdp-fade_out": "_rdp-fade_out_5391p_1",
11212
+ "rdp-fade_out": "_rdp-fade_out_ew4ir_1",
11156
11213
  caption_before_enter,
11157
11214
  caption_before_exit
11158
11215
  };
@@ -11719,7 +11776,7 @@ const DropdownMenuItem = "_DropdownMenuItem_tklrk_32";
11719
11776
  const DropdownMenuSubTrigger = "_DropdownMenuSubTrigger_tklrk_33";
11720
11777
  const active$2 = "_active_tklrk_56";
11721
11778
  const disabled$8 = "_disabled_tklrk_66";
11722
- const wrapper$h = "_wrapper_tklrk_81";
11779
+ const wrapper$e = "_wrapper_tklrk_81";
11723
11780
  const DropdownMenuSeparator = "_DropdownMenuSeparator_tklrk_85";
11724
11781
  const styles$Z = {
11725
11782
  themeVars: themeVars$I,
@@ -11730,7 +11787,7 @@ const styles$Z = {
11730
11787
  DropdownMenuSubTrigger,
11731
11788
  active: active$2,
11732
11789
  disabled: disabled$8,
11733
- wrapper: wrapper$h,
11790
+ wrapper: wrapper$e,
11734
11791
  DropdownMenuSeparator
11735
11792
  };
11736
11793
  const DropdownMenuContext = createContext(null);
@@ -12189,11 +12246,11 @@ const emojiSelectorRenderer = createComponentRenderer(
12189
12246
  }
12190
12247
  );
12191
12248
  const themeVars$H = `'{"Input:borderRadius-FileInput--focus": "var(--xmlui-borderRadius-FileInput--focus)", "Input:borderColor-FileInput--focus": "var(--xmlui-borderColor-FileInput--focus)", "Input:backgroundColor-FileInput--focus": "var(--xmlui-backgroundColor-FileInput--focus)", "Input:boxShadow-FileInput--focus": "var(--xmlui-boxShadow-FileInput--focus)", "Input:textColor-FileInput--focus": "var(--xmlui-textColor-FileInput--focus)", "Input:outlineWidth-FileInput--focus": "var(--xmlui-outlineWidth-FileInput--focus)", "Input:outlineColor-FileInput--focus": "var(--xmlui-outlineColor-FileInput--focus)", "Input:outlineStyle-FileInput--focus": "var(--xmlui-outlineStyle-FileInput--focus)", "Input:outlineOffset-FileInput--focus": "var(--xmlui-outlineOffset-FileInput--focus)"}'`;
12192
- const container = "_container_fnmi1_14";
12193
- const buttonStart = "_buttonStart_fnmi1_22";
12194
- const buttonEnd = "_buttonEnd_fnmi1_25";
12195
- const textBoxWrapper = "_textBoxWrapper_fnmi1_28";
12196
- const button$1 = "_button_fnmi1_22";
12249
+ const container = "_container_krnue_14";
12250
+ const buttonStart = "_buttonStart_krnue_23";
12251
+ const buttonEnd = "_buttonEnd_krnue_26";
12252
+ const textBoxWrapper = "_textBoxWrapper_krnue_29";
12253
+ const button$1 = "_button_krnue_23";
12197
12254
  const styles$Y = {
12198
12255
  themeVars: themeVars$H,
12199
12256
  container,
@@ -12503,11 +12560,11 @@ const fileInputRenderer = createComponentRenderer(
12503
12560
  }
12504
12561
  );
12505
12562
  const themeVars$G = `'{"backgroundColor-FileUploadDropZone": "var(--xmlui-backgroundColor-FileUploadDropZone)", "textColor-FileUploadDropZone": "var(--xmlui-textColor-FileUploadDropZone)", "backgroundColor-dropping-FileUploadDropZone": "var(--xmlui-backgroundColor-dropping-FileUploadDropZone)", "opacity-dropping-FileUploadDropZone": "var(--xmlui-opacity-dropping-FileUploadDropZone)"}'`;
12506
- const wrapper$g = "_wrapper_otdpv_14";
12563
+ const wrapper$d = "_wrapper_otdpv_14";
12507
12564
  const dropPlaceholder = "_dropPlaceholder_otdpv_21";
12508
12565
  const styles$X = {
12509
12566
  themeVars: themeVars$G,
12510
- wrapper: wrapper$g,
12567
+ wrapper: wrapper$d,
12511
12568
  dropPlaceholder
12512
12569
  };
12513
12570
  const { useDropzone } = dropzone;
@@ -12879,13 +12936,13 @@ const flowLayoutComponentRenderer = createComponentRenderer(
12879
12936
  }
12880
12937
  );
12881
12938
  const themeVars$E = `'{"padding-Footer": "var(--xmlui-padding-Footer)", "paddingHorizontal-Footer": "var(--xmlui-paddingHorizontal-Footer, var(--xmlui-padding-Footer))", "paddingVertical-Footer": "var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer))", "paddingLeft-Footer": "var(--xmlui-paddingLeft-Footer, var(--xmlui-paddingHorizontal-Footer, var(--xmlui-padding-Footer)))", "paddingRight-Footer": "var(--xmlui-paddingRight-Footer, var(--xmlui-paddingHorizontal-Footer, var(--xmlui-padding-Footer)))", "paddingTop-Footer": "var(--xmlui-paddingTop-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)))", "paddingBottom-Footer": "var(--xmlui-paddingBottom-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)))", "border-Footer": "var(--xmlui-border-Footer)", "borderHorizontal-Footer": "var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer))", "borderVertical-Footer": "var(--xmlui-borderVertical-Footer, var(--xmlui-border-Footer))", "borderLeft-Footer": "var(--xmlui-borderLeft-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)))", "borderRight-Footer": "var(--xmlui-borderRight-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)))", "borderTop-Footer": "var(--xmlui-borderTop-Footer, var(--xmlui-borderVertical-Footer, var(--xmlui-border-Footer)))", "borderBottom-Footer": "var(--xmlui-borderBottom-Footer, var(--xmlui-borderVertical-Footer, var(--xmlui-border-Footer)))", "borderWidth-Footer": "var(--xmlui-borderWidth-Footer)", "borderHorizontalWidth-Footer": "var(--xmlui-borderHorizontalWidth-Footer, var(--xmlui-borderWidth-Footer))", "borderLeftWidth-Footer": "var(--xmlui-borderLeftWidth-Footer, var(--xmlui-borderHorizontalWidth-Footer, var(--xmlui-borderWidth-Footer)))", "borderRightWidth-Footer": "var(--xmlui-borderRightWidth-Footer, var(--xmlui-borderHorizontalWidth-Footer, var(--xmlui-borderWidth-Footer)))", "borderVerticalWidth-Footer": "var(--xmlui-borderVerticalWidth-Footer, var(--xmlui-borderWidth-Footer))", "borderTopWidth-Footer": "var(--xmlui-borderTopWidth-Footer, var(--xmlui-borderVerticalWidth-Footer, var(--xmlui-borderWidth-Footer)))", "borderBottomWidth-Footer": "var(--xmlui-borderBottomWidth-Footer, var(--xmlui-borderVerticalWidth-Footer, var(--xmlui-borderWidth-Footer)))", "borderStyle-Footer": "var(--xmlui-borderStyle-Footer)", "borderHorizontalStyle-Footer": "var(--xmlui-borderHorizontalStyle-Footer, var(--xmlui-borderStyle-Footer))", "borderLeftStyle-Footer": "var(--xmlui-borderLeftStyle-Footer, var(--xmlui-borderHorizontalStyle-Footer, var(--xmlui-borderStyle-Footer)))", "borderRightStyle-Footer": "var(--xmlui-borderRightStyle-Footer, var(--xmlui-borderHorizontalStyle-Footer, var(--xmlui-borderStyle-Footer)))", "borderVerticalStyle-Footer": "var(--xmlui-borderVerticalStyle-Footer, var(--xmlui-borderStyle-Footer))", "borderTopStyle-Footer": "var(--xmlui-borderTopStyle-Footer, var(--xmlui-borderVerticalStyle-Footer, var(--xmlui-borderStyle-Footer)))", "borderBottomStyle-Footer": "var(--xmlui-borderBottomStyle-Footer, var(--xmlui-borderVerticalStyle-Footer, var(--xmlui-borderStyle-Footer)))", "borderColor-Footer": "var(--xmlui-borderColor-Footer)", "borderHorizontalColor-Footer": "var(--xmlui-borderHorizontalColor-Footer, var(--xmlui-borderColor-Footer))", "borderLeftColor-Footer": "var(--xmlui-borderLeftColor-Footer, var(--xmlui-borderHorizontalColor-Footer, var(--xmlui-borderColor-Footer)))", "borderRightColor-Footer": "var(--xmlui-borderRightColor-Footer, var(--xmlui-borderHorizontalColor-Footer, var(--xmlui-borderColor-Footer)))", "borderVerticalColor-Footer": "var(--xmlui-borderVerticalColor-Footer, var(--xmlui-borderColor-Footer))", "borderTopColor-Footer": "var(--xmlui-borderTopColor-Footer, var(--xmlui-borderVerticalColor-Footer, var(--xmlui-borderColor-Footer)))", "borderBottomColor-Footer": "var(--xmlui-borderBottomColor-Footer, var(--xmlui-borderVerticalColor-Footer, var(--xmlui-borderColor-Footer)))", "borderStartStartRadius-Footer": "var(--xmlui-borderStartStartRadius-Footer, var(--xmlui-borderRadius-Footer))", "borderStartEndRadius-Footer": "var(--xmlui-borderStartEndRadius-Footer, var(--xmlui-borderRadius-Footer))", "borderEndStartRadius-Footer": "var(--xmlui-borderEndStartRadius-Footer, var(--xmlui-borderRadius-Footer))", "borderEndEndRadius-Footer": "var(--xmlui-borderEndEndRadius-Footer, var(--xmlui-borderRadius-Footer))", "backgroundColor-Footer": "var(--xmlui-backgroundColor-Footer)", "textColor-Footer": "var(--xmlui-textColor-Footer)", "height-Footer": "var(--xmlui-height-Footer)", "fontSize-Footer": "var(--xmlui-fontSize-Footer)", "verticalAlignment-Footer": "var(--xmlui-verticalAlignment-Footer)", "maxWidth-content-Footer": "var(--xmlui-maxWidth-content-Footer)", "gap-Footer": "var(--xmlui-gap-Footer)", "maxWidth-App": "var(--xmlui-maxWidth-App)", "margin-Footer": "var(--xmlui-margin-Footer)"}'`;
12882
- const outerWrapper$1 = "_outerWrapper_1pae4_14";
12883
- const wrapper$f = "_wrapper_1pae4_39";
12939
+ const outerWrapper = "_outerWrapper_1pae4_14";
12940
+ const wrapper$c = "_wrapper_1pae4_39";
12884
12941
  const full = "_full_1pae4_56";
12885
12942
  const styles$V = {
12886
12943
  themeVars: themeVars$E,
12887
- outerWrapper: outerWrapper$1,
12888
- wrapper: wrapper$f,
12944
+ outerWrapper,
12945
+ wrapper: wrapper$c,
12889
12946
  full
12890
12947
  };
12891
12948
  const defaultProps$Q = {
@@ -12970,12 +13027,12 @@ const footerRenderer = createComponentRenderer(
12970
13027
  );
12971
13028
  }
12972
13029
  );
12973
- const themeVars$D = `'{"gap-Form": "var(--xmlui-gap-Form)", "gap-buttonRow-Form": "var(--xmlui-gap-buttonRow-Form)", "marginTop-buttonRow-Form": "var(--xmlui-marginTop-buttonRow-Form)"}'`;
12974
- const wrapper$e = "_wrapper_1frqo_14";
12975
- const buttonRow$1 = "_buttonRow_1frqo_19";
13030
+ const themeVars$D = `'{"gap-Form": "var(--xmlui-gap-Form)", "gap-buttonRow-Form": "var(--xmlui-gap-buttonRow-Form)", "marginTop-buttonRow-Form": "var(--xmlui-marginTop-buttonRow-Form)", "backgroundColor-Form": "var(--xmlui-backgroundColor-Form)"}'`;
13031
+ const formWrapper = "_formWrapper_n4yux_14";
13032
+ const buttonRow$1 = "_buttonRow_n4yux_20";
12976
13033
  const styles$U = {
12977
13034
  themeVars: themeVars$D,
12978
- wrapper: wrapper$e,
13035
+ formWrapper,
12979
13036
  buttonRow: buttonRow$1
12980
13037
  };
12981
13038
  const UNBOUND_FIELD_SUFFIX = "__UNBOUND_FIELD__";
@@ -14116,7 +14173,8 @@ class FormItemValidator {
14116
14173
  };
14117
14174
  case "phone":
14118
14175
  return {
14119
- isValid: /^[a-zA-Z0-9#*)(+.\-_&']+$/g.test(this.value),
14176
+ // Phone must contain at least one digit and only allowed characters
14177
+ isValid: /^[a-zA-Z0-9#*)(+.\-_&']+$/.test(this.value) && /[0-9]/.test(this.value),
14120
14178
  invalidMessage: patternInvalidMessage || "Not a valid phone number",
14121
14179
  severity: patternInvalidSeverity
14122
14180
  };
@@ -14564,6 +14622,7 @@ const Form = forwardRef(function({
14564
14622
  });
14565
14623
  const doSubmit = useEvent(async (event) => {
14566
14624
  event?.preventDefault();
14625
+ event?.stopPropagation();
14567
14626
  if (!isEnabled2) {
14568
14627
  return;
14569
14628
  }
@@ -14699,7 +14758,7 @@ const Form = forwardRef(function({
14699
14758
  {
14700
14759
  ...rest,
14701
14760
  style: style2,
14702
- className: classnames(styles$U.wrapper, className),
14761
+ className: classnames(styles$U.formWrapper, className),
14703
14762
  onSubmit: doSubmit,
14704
14763
  onReset: doReset,
14705
14764
  id,
@@ -14833,7 +14892,16 @@ const FormWithContextVar = forwardRef(function({
14833
14892
  }
14834
14893
  }),
14835
14894
  initialValue,
14836
- buttonRow: renderChild2(node.props.buttonRowTemplate),
14895
+ buttonRow: node.props.buttonRowTemplate ? /* @__PURE__ */ jsx(
14896
+ MemoizedItem,
14897
+ {
14898
+ node: node.props.buttonRowTemplate,
14899
+ renderChild: renderChild2,
14900
+ contextVars: {
14901
+ $data
14902
+ }
14903
+ }
14904
+ ) : void 0,
14837
14905
  registerComponentApi,
14838
14906
  enabled: extractValue.asOptionalBoolean(node.props.enabled, true) && !extractValue.asOptionalBoolean(node.props.loading, false),
14839
14907
  children: renderChild2(nodeWithItem)
@@ -14969,6 +15037,7 @@ const FormMd = createMetadata({
14969
15037
  defaultThemeVars: {
14970
15038
  "gap-Form": "$space-4",
14971
15039
  "gap-buttonRow-Form": "$space-4",
15040
+ "backgroundColor-Form": "$backgroundColor",
14972
15041
  "backgroundColor-ValidationDisplay-error": "$color-danger-100",
14973
15042
  "backgroundColor-ValidationDisplay-warning": "$color-warn-100",
14974
15043
  "backgroundColor-ValidationDisplay-info": "$color-primary-100",
@@ -19777,8 +19846,8 @@ function ensureMainThread(evalContext) {
19777
19846
  return evalContext.mainThread;
19778
19847
  }
19779
19848
  function hoistFunctionDeclarations(thread, statements) {
19780
- const block2 = innermostBlockScope(thread);
19781
- if (!block2) {
19849
+ const block = innermostBlockScope(thread);
19850
+ if (!block) {
19782
19851
  throw new Error("Missing block scope");
19783
19852
  }
19784
19853
  statements.filter((stmt) => stmt.type === T_FUNCTION_DECLARATION).forEach((stmt) => {
@@ -19791,12 +19860,12 @@ function hoistFunctionDeclarations(thread, statements) {
19791
19860
  _ARROW_EXPR_: true
19792
19861
  };
19793
19862
  const id = funcDecl.id.name;
19794
- if (block2.vars[id]) {
19863
+ if (block.vars[id]) {
19795
19864
  throw new Error(`Variable ${id} is already declared in the current scope.`);
19796
19865
  }
19797
- block2.vars[id] = arrowExpression;
19798
- block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
19799
- block2.constVars.add(id);
19866
+ block.vars[id] = arrowExpression;
19867
+ block.constVars ?? (block.constVars = /* @__PURE__ */ new Set());
19868
+ block.constVars.add(id);
19800
19869
  });
19801
19870
  }
19802
19871
  function collectVariableDependencies(program, referenceTrackedApis = {}) {
@@ -19869,8 +19938,8 @@ function collectVariableDependencies(program, referenceTrackedApis = {}) {
19869
19938
  case T_FOR_IN_STATEMENT:
19870
19939
  thread.blocks.push({ vars: {} });
19871
19940
  if (stmt.varB !== "none") {
19872
- const block2 = innermostBlockScope(thread);
19873
- block2.vars[stmt.id.name] = true;
19941
+ const block = innermostBlockScope(thread);
19942
+ block.vars[stmt.id.name] = true;
19874
19943
  }
19875
19944
  stmtDeps = stmtDeps.concat(collectDependencies(stmt.expr));
19876
19945
  stmtDeps = stmtDeps.concat(collectDependencies([stmt.body]));
@@ -19879,8 +19948,8 @@ function collectVariableDependencies(program, referenceTrackedApis = {}) {
19879
19948
  case T_FOR_OF_STATEMENT:
19880
19949
  thread.blocks.push({ vars: {} });
19881
19950
  if (stmt.varB !== "none") {
19882
- const block2 = innermostBlockScope(thread);
19883
- block2.vars[stmt.id.name] = true;
19951
+ const block = innermostBlockScope(thread);
19952
+ block.vars[stmt.id.name] = true;
19884
19953
  }
19885
19954
  stmtDeps = stmtDeps.concat(collectDependencies(stmt.expr));
19886
19955
  stmtDeps = stmtDeps.concat(collectDependencies([stmt.body]));
@@ -19894,8 +19963,8 @@ function collectVariableDependencies(program, referenceTrackedApis = {}) {
19894
19963
  if (stmt.catchB) {
19895
19964
  thread.blocks.push({ vars: {} });
19896
19965
  if (stmt.catchV) {
19897
- const block2 = innermostBlockScope(thread);
19898
- block2.vars[stmt.catchV.name] = true;
19966
+ const block = innermostBlockScope(thread);
19967
+ block.vars[stmt.catchV.name] = true;
19899
19968
  }
19900
19969
  stmtDeps = stmtDeps.concat(collectDependencies([stmt.catchB]));
19901
19970
  thread.blocks.pop();
@@ -19970,7 +20039,7 @@ function collectVariableDependencies(program, referenceTrackedApis = {}) {
19970
20039
  return uncDeps;
19971
20040
  case T_ARROW_EXPRESSION:
19972
20041
  thread.blocks.push({ vars: {} });
19973
- const block2 = innermostBlockScope(thread);
20042
+ const block = innermostBlockScope(thread);
19974
20043
  const argSpecs = program2.args;
19975
20044
  for (let i = 0; i < argSpecs.length; i++) {
19976
20045
  const argSpec = argSpecs[i];
@@ -20005,7 +20074,7 @@ function collectVariableDependencies(program, referenceTrackedApis = {}) {
20005
20074
  default:
20006
20075
  throw new Error("Unexpected arrow argument specification");
20007
20076
  }
20008
- processDeclarations$1(block2, [decl]);
20077
+ processDeclarations$1(block, [decl]);
20009
20078
  }
20010
20079
  const arrowDeps = collectDependencies([program2.statement]);
20011
20080
  thread.blocks.pop();
@@ -20077,48 +20146,48 @@ function collectVariableDependencies(program, referenceTrackedApis = {}) {
20077
20146
  return null;
20078
20147
  }
20079
20148
  }
20080
- function processDeclarations$1(block2, declarations) {
20149
+ function processDeclarations$1(block, declarations) {
20081
20150
  for (let i = 0; i < declarations.length; i++) {
20082
- visitDeclaration(block2, declarations[i]);
20151
+ visitDeclaration(block, declarations[i]);
20083
20152
  }
20084
- function visitDeclaration(block22, decl) {
20153
+ function visitDeclaration(block2, decl) {
20085
20154
  if (decl.id) {
20086
- visitIdDeclaration(block22, decl.id);
20155
+ visitIdDeclaration(block2, decl.id);
20087
20156
  } else if (decl.aDestr) {
20088
- visitArrayDestruct(block22, decl.aDestr);
20157
+ visitArrayDestruct(block2, decl.aDestr);
20089
20158
  } else if (decl.oDestr) {
20090
- visitObjectDestruct(block22, decl.oDestr);
20159
+ visitObjectDestruct(block2, decl.oDestr);
20091
20160
  } else {
20092
20161
  throw new Error("Unknown declaration specifier");
20093
20162
  }
20094
20163
  }
20095
- function visitIdDeclaration(block22, id) {
20096
- if (block22.vars[id]) {
20164
+ function visitIdDeclaration(block2, id) {
20165
+ if (block2.vars[id]) {
20097
20166
  throw new Error(`Variable ${id} is already declared in the current scope.`);
20098
20167
  }
20099
- block22.vars[id] = true;
20168
+ block2.vars[id] = true;
20100
20169
  }
20101
- function visitArrayDestruct(block22, arrayD) {
20170
+ function visitArrayDestruct(block2, arrayD) {
20102
20171
  for (let i = 0; i < arrayD.length; i++) {
20103
20172
  const arrDecl = arrayD[i];
20104
20173
  if (arrDecl.id) {
20105
- visitIdDeclaration(block22, arrDecl.id);
20174
+ visitIdDeclaration(block2, arrDecl.id);
20106
20175
  } else if (arrDecl.aDestr) {
20107
- visitArrayDestruct(block22, arrDecl.aDestr);
20176
+ visitArrayDestruct(block2, arrDecl.aDestr);
20108
20177
  } else if (arrDecl.oDestr) {
20109
- visitObjectDestruct(block22, arrDecl.oDestr);
20178
+ visitObjectDestruct(block2, arrDecl.oDestr);
20110
20179
  }
20111
20180
  }
20112
20181
  }
20113
- function visitObjectDestruct(block22, objectD) {
20182
+ function visitObjectDestruct(block2, objectD) {
20114
20183
  for (let i = 0; i < objectD.length; i++) {
20115
20184
  const objDecl = objectD[i];
20116
20185
  if (objDecl.aDestr) {
20117
- visitArrayDestruct(block22, objDecl.aDestr);
20186
+ visitArrayDestruct(block2, objDecl.aDestr);
20118
20187
  } else if (objDecl.oDestr) {
20119
- visitObjectDestruct(block22, objDecl.oDestr);
20188
+ visitObjectDestruct(block2, objDecl.oDestr);
20120
20189
  } else {
20121
- visitIdDeclaration(block22, objDecl.alias ?? objDecl.id);
20190
+ visitIdDeclaration(block2, objDecl.alias ?? objDecl.id);
20122
20191
  }
20123
20192
  }
20124
20193
  }
@@ -20307,19 +20376,19 @@ function processStatement(statement, execInfo, evalContext, thread) {
20307
20376
  }
20308
20377
  break;
20309
20378
  case T_LET_STATEMENT: {
20310
- const block2 = innermostBlockScope(thread);
20311
- if (!block2) {
20379
+ const block = innermostBlockScope(thread);
20380
+ if (!block) {
20312
20381
  throw new Error("Missing block scope");
20313
20382
  }
20314
- processDeclarations(block2, evalContext, thread, statement.decls);
20383
+ processDeclarations(block, evalContext, thread, statement.decls);
20315
20384
  break;
20316
20385
  }
20317
20386
  case T_CONST_STATEMENT: {
20318
- const block2 = innermostBlockScope(thread);
20319
- if (!block2) {
20387
+ const block = innermostBlockScope(thread);
20388
+ if (!block) {
20320
20389
  throw new Error("Missing block scope");
20321
20390
  }
20322
- processDeclarations(block2, evalContext, thread, statement.decls, true);
20391
+ processDeclarations(block, evalContext, thread, statement.decls, true);
20323
20392
  break;
20324
20393
  }
20325
20394
  case T_IF_STATEMENT:
@@ -20498,14 +20567,14 @@ function processStatement(statement, execInfo, evalContext, thread) {
20498
20567
  case "const":
20499
20568
  case "let":
20500
20569
  {
20501
- const block2 = innermostBlockScope(thread);
20502
- if (!block2) {
20570
+ const block = innermostBlockScope(thread);
20571
+ if (!block) {
20503
20572
  throw new Error("Missing block scope");
20504
20573
  }
20505
- block2.vars[statement.id.name] = propValue;
20574
+ block.vars[statement.id.name] = propValue;
20506
20575
  if (statement.varB === "const") {
20507
- block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
20508
- block2.constVars.add(statement.id.name);
20576
+ block.constVars ?? (block.constVars = /* @__PURE__ */ new Set());
20577
+ block.constVars.add(statement.id.name);
20509
20578
  }
20510
20579
  }
20511
20580
  break;
@@ -20564,14 +20633,14 @@ function processStatement(statement, execInfo, evalContext, thread) {
20564
20633
  case "const":
20565
20634
  case "let":
20566
20635
  {
20567
- const block2 = innermostBlockScope(thread);
20568
- if (!block2) {
20636
+ const block = innermostBlockScope(thread);
20637
+ if (!block) {
20569
20638
  throw new Error("Missing block scope");
20570
20639
  }
20571
- block2.vars[statement.id.name] = propValue;
20640
+ block.vars[statement.id.name] = propValue;
20572
20641
  if (statement.varB === "const") {
20573
- block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
20574
- block2.constVars.add(statement.id.name);
20642
+ block.constVars ?? (block.constVars = /* @__PURE__ */ new Set());
20643
+ block.constVars.add(statement.id.name);
20575
20644
  }
20576
20645
  }
20577
20646
  break;
@@ -20601,8 +20670,8 @@ function processStatement(statement, execInfo, evalContext, thread) {
20601
20670
  thread.blocks.pop();
20602
20671
  if (statement.catchB) {
20603
20672
  if (tryScope.statement.catchV) {
20604
- const block2 = innermostBlockScope(thread);
20605
- block2.vars[tryScope.statement.catchV.name] = tryScope.errorToThrow instanceof ThrowStatementError ? tryScope.errorToThrow.errorObject : tryScope.errorToThrow;
20673
+ const block = innermostBlockScope(thread);
20674
+ block.vars[tryScope.statement.catchV.name] = tryScope.errorToThrow instanceof ThrowStatementError ? tryScope.errorToThrow.errorObject : tryScope.errorToThrow;
20606
20675
  }
20607
20676
  delete tryScope.errorToThrow;
20608
20677
  tryScope.processingPhase = "catch";
@@ -20715,7 +20784,7 @@ function processStatement(statement, execInfo, evalContext, thread) {
20715
20784
  }
20716
20785
  return { toUnshift, clearToLabel };
20717
20786
  }
20718
- function processDeclarations(block2, evalContext, thread, declarations, addConst = false, useValue = false, baseValue = void 0) {
20787
+ function processDeclarations(block, evalContext, thread, declarations, addConst = false, useValue = false, baseValue = void 0) {
20719
20788
  for (let i = 0; i < declarations.length; i++) {
20720
20789
  let value;
20721
20790
  const decl = declarations[i];
@@ -20724,52 +20793,52 @@ function processDeclarations(block2, evalContext, thread, declarations, addConst
20724
20793
  } else if (decl.expr) {
20725
20794
  value = evalBinding(decl.expr, evalContext, thread);
20726
20795
  }
20727
- visitDeclaration(block2, decl, value, addConst);
20796
+ visitDeclaration(block, decl, value, addConst);
20728
20797
  }
20729
- function visitDeclaration(block22, decl, baseValue2, addConst2) {
20798
+ function visitDeclaration(block2, decl, baseValue2, addConst2) {
20730
20799
  if (decl.id) {
20731
- visitIdDeclaration(block22, decl.id, baseValue2, addConst2);
20800
+ visitIdDeclaration(block2, decl.id, baseValue2, addConst2);
20732
20801
  } else if (decl.aDestr) {
20733
- visitArrayDestruct(block22, decl.aDestr, baseValue2, addConst2);
20802
+ visitArrayDestruct(block2, decl.aDestr, baseValue2, addConst2);
20734
20803
  } else if (decl.oDestr) {
20735
- visitObjectDestruct(block22, decl.oDestr, baseValue2, addConst2);
20804
+ visitObjectDestruct(block2, decl.oDestr, baseValue2, addConst2);
20736
20805
  } else {
20737
20806
  throw new Error("Unknown declaration specifier");
20738
20807
  }
20739
20808
  }
20740
- function visitIdDeclaration(block22, id, baseValue2, addConst2) {
20741
- if (block22.vars[id]) {
20809
+ function visitIdDeclaration(block2, id, baseValue2, addConst2) {
20810
+ if (block2.vars[id]) {
20742
20811
  throw new Error(`Variable ${id} is already declared in the current scope.`);
20743
20812
  }
20744
- block22.vars[id] = baseValue2;
20813
+ block2.vars[id] = baseValue2;
20745
20814
  if (addConst2) {
20746
- block22.constVars ?? (block22.constVars = /* @__PURE__ */ new Set());
20747
- block22.constVars.add(id);
20815
+ block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
20816
+ block2.constVars.add(id);
20748
20817
  }
20749
20818
  }
20750
- function visitArrayDestruct(block22, arrayD, baseValue2, addConst2) {
20819
+ function visitArrayDestruct(block2, arrayD, baseValue2, addConst2) {
20751
20820
  for (let i = 0; i < arrayD.length; i++) {
20752
20821
  const arrDecl = arrayD[i];
20753
20822
  const value = baseValue2?.[i];
20754
20823
  if (arrDecl.id) {
20755
- visitIdDeclaration(block22, arrDecl.id, value, addConst2);
20824
+ visitIdDeclaration(block2, arrDecl.id, value, addConst2);
20756
20825
  } else if (arrDecl.aDestr) {
20757
- visitArrayDestruct(block22, arrDecl.aDestr, value, addConst2);
20826
+ visitArrayDestruct(block2, arrDecl.aDestr, value, addConst2);
20758
20827
  } else if (arrDecl.oDestr) {
20759
- visitObjectDestruct(block22, arrDecl.oDestr, value, addConst2);
20828
+ visitObjectDestruct(block2, arrDecl.oDestr, value, addConst2);
20760
20829
  }
20761
20830
  }
20762
20831
  }
20763
- function visitObjectDestruct(block22, objectD, baseValue2, addConst2) {
20832
+ function visitObjectDestruct(block2, objectD, baseValue2, addConst2) {
20764
20833
  for (let i = 0; i < objectD.length; i++) {
20765
20834
  const objDecl = objectD[i];
20766
20835
  const value = baseValue2?.[objDecl.id];
20767
20836
  if (objDecl.aDestr) {
20768
- visitArrayDestruct(block22, objDecl.aDestr, value, addConst2);
20837
+ visitArrayDestruct(block2, objDecl.aDestr, value, addConst2);
20769
20838
  } else if (objDecl.oDestr) {
20770
- visitObjectDestruct(block22, objDecl.oDestr, value, addConst2);
20839
+ visitObjectDestruct(block2, objDecl.oDestr, value, addConst2);
20771
20840
  } else {
20772
- visitIdDeclaration(block22, objDecl.alias ?? objDecl.id, value, addConst2);
20841
+ visitIdDeclaration(block2, objDecl.alias ?? objDecl.id, value, addConst2);
20773
20842
  }
20774
20843
  }
20775
20844
  }
@@ -21656,16 +21725,16 @@ function createValueExtractor(state, appContext, referenceTrackedApi, memoedVars
21656
21725
  return extractor;
21657
21726
  }
21658
21727
  const themeVars$A = `'{"padding-NumberBox": "var(--xmlui-padding-NumberBox)", "paddingHorizontal-NumberBox": "var(--xmlui-paddingHorizontal-NumberBox, var(--xmlui-padding-NumberBox))", "paddingVertical-NumberBox": "var(--xmlui-paddingVertical-NumberBox, var(--xmlui-padding-NumberBox))", "paddingLeft-NumberBox": "var(--xmlui-paddingLeft-NumberBox, var(--xmlui-paddingHorizontal-NumberBox, var(--xmlui-padding-NumberBox)))", "paddingRight-NumberBox": "var(--xmlui-paddingRight-NumberBox, var(--xmlui-paddingHorizontal-NumberBox, var(--xmlui-padding-NumberBox)))", "paddingTop-NumberBox": "var(--xmlui-paddingTop-NumberBox, var(--xmlui-paddingVertical-NumberBox, var(--xmlui-padding-NumberBox)))", "paddingBottom-NumberBox": "var(--xmlui-paddingBottom-NumberBox, var(--xmlui-paddingVertical-NumberBox, var(--xmlui-padding-NumberBox)))", "Input:borderRadius-NumberBox--default": "var(--xmlui-borderRadius-NumberBox--default)", "Input:borderColor-NumberBox--default": "var(--xmlui-borderColor-NumberBox--default)", "Input:borderWidth-NumberBox--default": "var(--xmlui-borderWidth-NumberBox--default)", "Input:borderStyle-NumberBox--default": "var(--xmlui-borderStyle-NumberBox--default)", "Input:fontSize-NumberBox--default": "var(--xmlui-fontSize-NumberBox--default)", "Input:backgroundColor-NumberBox--default": "var(--xmlui-backgroundColor-NumberBox--default)", "Input:boxShadow-NumberBox--default": "var(--xmlui-boxShadow-NumberBox--default)", "Input:textColor-NumberBox--default": "var(--xmlui-textColor-NumberBox--default)", "Input:borderColor-NumberBox--default--hover": "var(--xmlui-borderColor-NumberBox--default--hover)", "Input:backgroundColor-NumberBox--default--hover": "var(--xmlui-backgroundColor-NumberBox--default--hover)", "Input:boxShadow-NumberBox--default--hover": "var(--xmlui-boxShadow-NumberBox--default--hover)", "Input:textColor-NumberBox--default--hover": "var(--xmlui-textColor-NumberBox--default--hover)", "Input:borderColor-NumberBox--default--focus": "var(--xmlui-borderColor-NumberBox--default--focus)", "Input:backgroundColor-NumberBox--default--focus": "var(--xmlui-backgroundColor-NumberBox--default--focus)", "Input:boxShadow-NumberBox--default--focus": "var(--xmlui-boxShadow-NumberBox--default--focus)", "Input:textColor-NumberBox--default--focus": "var(--xmlui-textColor-NumberBox--default--focus)", "Input:outlineWidth-NumberBox--default--focus": "var(--xmlui-outlineWidth-NumberBox--default--focus)", "Input:outlineColor-NumberBox--default--focus": "var(--xmlui-outlineColor-NumberBox--default--focus)", "Input:outlineStyle-NumberBox--default--focus": "var(--xmlui-outlineStyle-NumberBox--default--focus)", "Input:outlineOffset-NumberBox--default--focus": "var(--xmlui-outlineOffset-NumberBox--default--focus)", "Input:textColor-placeholder-NumberBox--default": "var(--xmlui-textColor-placeholder-NumberBox--default)", "Input:fontSize-placeholder-NumberBox--default": "var(--xmlui-fontSize-placeholder-NumberBox--default)", "Input:color-adornment-NumberBox--default": "var(--xmlui-color-adornment-NumberBox--default)", "Input:borderRadius-NumberBox--error": "var(--xmlui-borderRadius-NumberBox--error)", "Input:borderColor-NumberBox--error": "var(--xmlui-borderColor-NumberBox--error)", "Input:borderWidth-NumberBox--error": "var(--xmlui-borderWidth-NumberBox--error)", "Input:borderStyle-NumberBox--error": "var(--xmlui-borderStyle-NumberBox--error)", "Input:fontSize-NumberBox--error": "var(--xmlui-fontSize-NumberBox--error)", "Input:backgroundColor-NumberBox--error": "var(--xmlui-backgroundColor-NumberBox--error)", "Input:boxShadow-NumberBox--error": "var(--xmlui-boxShadow-NumberBox--error)", "Input:textColor-NumberBox--error": "var(--xmlui-textColor-NumberBox--error)", "Input:borderColor-NumberBox--error--hover": "var(--xmlui-borderColor-NumberBox--error--hover)", "Input:backgroundColor-NumberBox--error--hover": "var(--xmlui-backgroundColor-NumberBox--error--hover)", "Input:boxShadow-NumberBox--error--hover": "var(--xmlui-boxShadow-NumberBox--error--hover)", "Input:textColor-NumberBox--error--hover": "var(--xmlui-textColor-NumberBox--error--hover)", "Input:borderColor-NumberBox--error--focus": "var(--xmlui-borderColor-NumberBox--error--focus)", "Input:backgroundColor-NumberBox--error--focus": "var(--xmlui-backgroundColor-NumberBox--error--focus)", "Input:boxShadow-NumberBox--error--focus": "var(--xmlui-boxShadow-NumberBox--error--focus)", "Input:textColor-NumberBox--error--focus": "var(--xmlui-textColor-NumberBox--error--focus)", "Input:outlineWidth-NumberBox--error--focus": "var(--xmlui-outlineWidth-NumberBox--error--focus)", "Input:outlineColor-NumberBox--error--focus": "var(--xmlui-outlineColor-NumberBox--error--focus)", "Input:outlineStyle-NumberBox--error--focus": "var(--xmlui-outlineStyle-NumberBox--error--focus)", "Input:outlineOffset-NumberBox--error--focus": "var(--xmlui-outlineOffset-NumberBox--error--focus)", "Input:textColor-placeholder-NumberBox--error": "var(--xmlui-textColor-placeholder-NumberBox--error)", "Input:fontSize-placeholder-NumberBox--error": "var(--xmlui-fontSize-placeholder-NumberBox--error)", "Input:color-adornment-NumberBox--error": "var(--xmlui-color-adornment-NumberBox--error)", "Input:borderRadius-NumberBox--warning": "var(--xmlui-borderRadius-NumberBox--warning)", "Input:borderColor-NumberBox--warning": "var(--xmlui-borderColor-NumberBox--warning)", "Input:borderWidth-NumberBox--warning": "var(--xmlui-borderWidth-NumberBox--warning)", "Input:borderStyle-NumberBox--warning": "var(--xmlui-borderStyle-NumberBox--warning)", "Input:fontSize-NumberBox--warning": "var(--xmlui-fontSize-NumberBox--warning)", "Input:backgroundColor-NumberBox--warning": "var(--xmlui-backgroundColor-NumberBox--warning)", "Input:boxShadow-NumberBox--warning": "var(--xmlui-boxShadow-NumberBox--warning)", "Input:textColor-NumberBox--warning": "var(--xmlui-textColor-NumberBox--warning)", "Input:borderColor-NumberBox--warning--hover": "var(--xmlui-borderColor-NumberBox--warning--hover)", "Input:backgroundColor-NumberBox--warning--hover": "var(--xmlui-backgroundColor-NumberBox--warning--hover)", "Input:boxShadow-NumberBox--warning--hover": "var(--xmlui-boxShadow-NumberBox--warning--hover)", "Input:textColor-NumberBox--warning--hover": "var(--xmlui-textColor-NumberBox--warning--hover)", "Input:borderColor-NumberBox--warning--focus": "var(--xmlui-borderColor-NumberBox--warning--focus)", "Input:backgroundColor-NumberBox--warning--focus": "var(--xmlui-backgroundColor-NumberBox--warning--focus)", "Input:boxShadow-NumberBox--warning--focus": "var(--xmlui-boxShadow-NumberBox--warning--focus)", "Input:textColor-NumberBox--warning--focus": "var(--xmlui-textColor-NumberBox--warning--focus)", "Input:outlineWidth-NumberBox--warning--focus": "var(--xmlui-outlineWidth-NumberBox--warning--focus)", "Input:outlineColor-NumberBox--warning--focus": "var(--xmlui-outlineColor-NumberBox--warning--focus)", "Input:outlineStyle-NumberBox--warning--focus": "var(--xmlui-outlineStyle-NumberBox--warning--focus)", "Input:outlineOffset-NumberBox--warning--focus": "var(--xmlui-outlineOffset-NumberBox--warning--focus)", "Input:textColor-placeholder-NumberBox--warning": "var(--xmlui-textColor-placeholder-NumberBox--warning)", "Input:fontSize-placeholder-NumberBox--warning": "var(--xmlui-fontSize-placeholder-NumberBox--warning)", "Input:color-adornment-NumberBox--warning": "var(--xmlui-color-adornment-NumberBox--warning)", "Input:borderRadius-NumberBox--success": "var(--xmlui-borderRadius-NumberBox--success)", "Input:borderColor-NumberBox--success": "var(--xmlui-borderColor-NumberBox--success)", "Input:borderWidth-NumberBox--success": "var(--xmlui-borderWidth-NumberBox--success)", "Input:borderStyle-NumberBox--success": "var(--xmlui-borderStyle-NumberBox--success)", "Input:fontSize-NumberBox--success": "var(--xmlui-fontSize-NumberBox--success)", "Input:backgroundColor-NumberBox--success": "var(--xmlui-backgroundColor-NumberBox--success)", "Input:boxShadow-NumberBox--success": "var(--xmlui-boxShadow-NumberBox--success)", "Input:textColor-NumberBox--success": "var(--xmlui-textColor-NumberBox--success)", "Input:borderColor-NumberBox--success--hover": "var(--xmlui-borderColor-NumberBox--success--hover)", "Input:backgroundColor-NumberBox--success--hover": "var(--xmlui-backgroundColor-NumberBox--success--hover)", "Input:boxShadow-NumberBox--success--hover": "var(--xmlui-boxShadow-NumberBox--success--hover)", "Input:textColor-NumberBox--success--hover": "var(--xmlui-textColor-NumberBox--success--hover)", "Input:borderColor-NumberBox--success--focus": "var(--xmlui-borderColor-NumberBox--success--focus)", "Input:backgroundColor-NumberBox--success--focus": "var(--xmlui-backgroundColor-NumberBox--success--focus)", "Input:boxShadow-NumberBox--success--focus": "var(--xmlui-boxShadow-NumberBox--success--focus)", "Input:textColor-NumberBox--success--focus": "var(--xmlui-textColor-NumberBox--success--focus)", "Input:outlineWidth-NumberBox--success--focus": "var(--xmlui-outlineWidth-NumberBox--success--focus)", "Input:outlineColor-NumberBox--success--focus": "var(--xmlui-outlineColor-NumberBox--success--focus)", "Input:outlineStyle-NumberBox--success--focus": "var(--xmlui-outlineStyle-NumberBox--success--focus)", "Input:outlineOffset-NumberBox--success--focus": "var(--xmlui-outlineOffset-NumberBox--success--focus)", "Input:textColor-placeholder-NumberBox--success": "var(--xmlui-textColor-placeholder-NumberBox--success)", "Input:fontSize-placeholder-NumberBox--success": "var(--xmlui-fontSize-placeholder-NumberBox--success)", "Input:color-adornment-NumberBox--success": "var(--xmlui-color-adornment-NumberBox--success)", "Input:gap-adornment-NumberBox": "var(--xmlui-gap-adornment-NumberBox)", "Input:backgroundColor-NumberBox--disabled": "var(--xmlui-backgroundColor-NumberBox--disabled)", "Input:textColor-NumberBox--disabled": "var(--xmlui-textColor-NumberBox--disabled)", "Input:borderColor-NumberBox--disabled": "var(--xmlui-borderColor-NumberBox--disabled)"}'`;
21659
- const inputRoot = "_inputRoot_ylrv1_14";
21660
- const input$2 = "_input_ylrv1_14";
21661
- const adornment$2 = "_adornment_ylrv1_59";
21662
- const error$9 = "_error_ylrv1_65";
21663
- const warning$a = "_warning_ylrv1_103";
21664
- const valid$9 = "_valid_ylrv1_141";
21665
- const rtl = "_rtl_ylrv1_185";
21666
- const spinnerBox = "_spinnerBox_ylrv1_210";
21667
- const spinnerButton = "_spinnerButton_ylrv1_217";
21668
- const readOnly$3 = "_readOnly_ylrv1_223";
21728
+ const inputRoot = "_inputRoot_nqbji_14";
21729
+ const input$2 = "_input_nqbji_14";
21730
+ const adornment$2 = "_adornment_nqbji_60";
21731
+ const error$9 = "_error_nqbji_66";
21732
+ const warning$a = "_warning_nqbji_104";
21733
+ const valid$9 = "_valid_nqbji_142";
21734
+ const rtl = "_rtl_nqbji_186";
21735
+ const spinnerBox = "_spinnerBox_nqbji_211";
21736
+ const spinnerButton = "_spinnerButton_nqbji_218";
21737
+ const readOnly$3 = "_readOnly_nqbji_224";
21669
21738
  const styles$Q = {
21670
21739
  themeVars: themeVars$A,
21671
21740
  inputRoot,
@@ -22250,48 +22319,47 @@ function useLongPress(elementRef, action2, delay2 = 500) {
22250
22319
  }, [elementRef, action2, delay2]);
22251
22320
  }
22252
22321
  const themeVars$z = `'{"border-Select": "var(--xmlui-border-Select)", "borderHorizontal-Select": "var(--xmlui-borderHorizontal-Select, var(--xmlui-border-Select))", "borderVertical-Select": "var(--xmlui-borderVertical-Select, var(--xmlui-border-Select))", "borderLeft-Select": "var(--xmlui-borderLeft-Select, var(--xmlui-borderHorizontal-Select, var(--xmlui-border-Select)))", "borderRight-Select": "var(--xmlui-borderRight-Select, var(--xmlui-borderHorizontal-Select, var(--xmlui-border-Select)))", "borderTop-Select": "var(--xmlui-borderTop-Select, var(--xmlui-borderVertical-Select, var(--xmlui-border-Select)))", "borderBottom-Select": "var(--xmlui-borderBottom-Select, var(--xmlui-borderVertical-Select, var(--xmlui-border-Select)))", "borderWidth-Select": "var(--xmlui-borderWidth-Select)", "borderHorizontalWidth-Select": "var(--xmlui-borderHorizontalWidth-Select, var(--xmlui-borderWidth-Select))", "borderLeftWidth-Select": "var(--xmlui-borderLeftWidth-Select, var(--xmlui-borderHorizontalWidth-Select, var(--xmlui-borderWidth-Select)))", "borderRightWidth-Select": "var(--xmlui-borderRightWidth-Select, var(--xmlui-borderHorizontalWidth-Select, var(--xmlui-borderWidth-Select)))", "borderVerticalWidth-Select": "var(--xmlui-borderVerticalWidth-Select, var(--xmlui-borderWidth-Select))", "borderTopWidth-Select": "var(--xmlui-borderTopWidth-Select, var(--xmlui-borderVerticalWidth-Select, var(--xmlui-borderWidth-Select)))", "borderBottomWidth-Select": "var(--xmlui-borderBottomWidth-Select, var(--xmlui-borderVerticalWidth-Select, var(--xmlui-borderWidth-Select)))", "borderStyle-Select": "var(--xmlui-borderStyle-Select)", "borderHorizontalStyle-Select": "var(--xmlui-borderHorizontalStyle-Select, var(--xmlui-borderStyle-Select))", "borderLeftStyle-Select": "var(--xmlui-borderLeftStyle-Select, var(--xmlui-borderHorizontalStyle-Select, var(--xmlui-borderStyle-Select)))", "borderRightStyle-Select": "var(--xmlui-borderRightStyle-Select, var(--xmlui-borderHorizontalStyle-Select, var(--xmlui-borderStyle-Select)))", "borderVerticalStyle-Select": "var(--xmlui-borderVerticalStyle-Select, var(--xmlui-borderStyle-Select))", "borderTopStyle-Select": "var(--xmlui-borderTopStyle-Select, var(--xmlui-borderVerticalStyle-Select, var(--xmlui-borderStyle-Select)))", "borderBottomStyle-Select": "var(--xmlui-borderBottomStyle-Select, var(--xmlui-borderVerticalStyle-Select, var(--xmlui-borderStyle-Select)))", "borderColor-Select": "var(--xmlui-borderColor-Select)", "borderHorizontalColor-Select": "var(--xmlui-borderHorizontalColor-Select, var(--xmlui-borderColor-Select))", "borderLeftColor-Select": "var(--xmlui-borderLeftColor-Select, var(--xmlui-borderHorizontalColor-Select, var(--xmlui-borderColor-Select)))", "borderRightColor-Select": "var(--xmlui-borderRightColor-Select, var(--xmlui-borderHorizontalColor-Select, var(--xmlui-borderColor-Select)))", "borderVerticalColor-Select": "var(--xmlui-borderVerticalColor-Select, var(--xmlui-borderColor-Select))", "borderTopColor-Select": "var(--xmlui-borderTopColor-Select, var(--xmlui-borderVerticalColor-Select, var(--xmlui-borderColor-Select)))", "borderBottomColor-Select": "var(--xmlui-borderBottomColor-Select, var(--xmlui-borderVerticalColor-Select, var(--xmlui-borderColor-Select)))", "borderStartStartRadius-Select": "var(--xmlui-borderStartStartRadius-Select, var(--xmlui-borderRadius-Select))", "borderStartEndRadius-Select": "var(--xmlui-borderStartEndRadius-Select, var(--xmlui-borderRadius-Select))", "borderEndStartRadius-Select": "var(--xmlui-borderEndStartRadius-Select, var(--xmlui-borderRadius-Select))", "borderEndEndRadius-Select": "var(--xmlui-borderEndEndRadius-Select, var(--xmlui-borderRadius-Select))", "padding-Select": "var(--xmlui-padding-Select)", "paddingHorizontal-Select": "var(--xmlui-paddingHorizontal-Select, var(--xmlui-padding-Select))", "paddingVertical-Select": "var(--xmlui-paddingVertical-Select, var(--xmlui-padding-Select))", "paddingLeft-Select": "var(--xmlui-paddingLeft-Select, var(--xmlui-paddingHorizontal-Select, var(--xmlui-padding-Select)))", "paddingRight-Select": "var(--xmlui-paddingRight-Select, var(--xmlui-paddingHorizontal-Select, var(--xmlui-padding-Select)))", "paddingTop-Select": "var(--xmlui-paddingTop-Select, var(--xmlui-paddingVertical-Select, var(--xmlui-padding-Select)))", "paddingBottom-Select": "var(--xmlui-paddingBottom-Select, var(--xmlui-paddingVertical-Select, var(--xmlui-padding-Select)))", "padding-item-Select": "var(--xmlui-padding-item-Select)", "paddingHorizontal-item-Select": "var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select))", "paddingVertical-item-Select": "var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select))", "paddingLeft-item-Select": "var(--xmlui-paddingLeft-item-Select, var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select)))", "paddingRight-item-Select": "var(--xmlui-paddingRight-item-Select, var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select)))", "paddingTop-item-Select": "var(--xmlui-paddingTop-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)))", "paddingBottom-item-Select": "var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)))", "Input:borderRadius-Select--default": "var(--xmlui-borderRadius-Select--default)", "Input:borderColor-Select--default": "var(--xmlui-borderColor-Select--default)", "Input:borderWidth-Select--default": "var(--xmlui-borderWidth-Select--default)", "Input:borderStyle-Select--default": "var(--xmlui-borderStyle-Select--default)", "Input:fontSize-Select--default": "var(--xmlui-fontSize-Select--default)", "Input:backgroundColor-Select--default": "var(--xmlui-backgroundColor-Select--default)", "Input:boxShadow-Select--default": "var(--xmlui-boxShadow-Select--default)", "Input:textColor-Select--default": "var(--xmlui-textColor-Select--default)", "Input:borderColor-Select--default--hover": "var(--xmlui-borderColor-Select--default--hover)", "Input:backgroundColor-Select--default--hover": "var(--xmlui-backgroundColor-Select--default--hover)", "Input:boxShadow-Select--default--hover": "var(--xmlui-boxShadow-Select--default--hover)", "Input:textColor-Select--default--hover": "var(--xmlui-textColor-Select--default--hover)", "Input:outlineWidth-Select--default--focus": "var(--xmlui-outlineWidth-Select--default--focus)", "Input:outlineColor-Select--default--focus": "var(--xmlui-outlineColor-Select--default--focus)", "Input:outlineStyle-Select--default--focus": "var(--xmlui-outlineStyle-Select--default--focus)", "Input:outlineOffset-Select--default--focus": "var(--xmlui-outlineOffset-Select--default--focus)", "Input:textColor-placeholder-Select--default": "var(--xmlui-textColor-placeholder-Select--default)", "Input:fontSize-placeholder-Select--default": "var(--xmlui-fontSize-placeholder-Select--default)", "Input:borderRadius-Select--error": "var(--xmlui-borderRadius-Select--error)", "Input:borderColor-Select--error": "var(--xmlui-borderColor-Select--error)", "Input:borderWidth-Select--error": "var(--xmlui-borderWidth-Select--error)", "Input:borderStyle-Select--error": "var(--xmlui-borderStyle-Select--error)", "Input:fontSize-Select--error": "var(--xmlui-fontSize-Select--error)", "Input:backgroundColor-Select--error": "var(--xmlui-backgroundColor-Select--error)", "Input:boxShadow-Select--error": "var(--xmlui-boxShadow-Select--error)", "Input:textColor-Select--error": "var(--xmlui-textColor-Select--error)", "Input:borderColor-Select--error--hover": "var(--xmlui-borderColor-Select--error--hover)", "Input:backgroundColor-Select--error--hover": "var(--xmlui-backgroundColor-Select--error--hover)", "Input:boxShadow-Select--error--hover": "var(--xmlui-boxShadow-Select--error--hover)", "Input:textColor-Select--error--hover": "var(--xmlui-textColor-Select--error--hover)", "Input:outlineWidth-Select--error--focus": "var(--xmlui-outlineWidth-Select--error--focus)", "Input:outlineColor-Select--error--focus": "var(--xmlui-outlineColor-Select--error--focus)", "Input:outlineStyle-Select--error--focus": "var(--xmlui-outlineStyle-Select--error--focus)", "Input:outlineOffset-Select--error--focus": "var(--xmlui-outlineOffset-Select--error--focus)", "Input:textColor-placeholder-Select--error": "var(--xmlui-textColor-placeholder-Select--error)", "Input:fontSize-placeholder-Select--error": "var(--xmlui-fontSize-placeholder-Select--error)", "Input:borderRadius-Select--warning": "var(--xmlui-borderRadius-Select--warning)", "Input:borderColor-Select--warning": "var(--xmlui-borderColor-Select--warning)", "Input:borderWidth-Select--warning": "var(--xmlui-borderWidth-Select--warning)", "Input:borderStyle-Select--warning": "var(--xmlui-borderStyle-Select--warning)", "Input:fontSize-Select--warning": "var(--xmlui-fontSize-Select--warning)", "Input:backgroundColor-Select--warning": "var(--xmlui-backgroundColor-Select--warning)", "Input:boxShadow-Select--warning": "var(--xmlui-boxShadow-Select--warning)", "Input:textColor-Select--warning": "var(--xmlui-textColor-Select--warning)", "Input:borderColor-Select--warning--hover": "var(--xmlui-borderColor-Select--warning--hover)", "Input:backgroundColor-Select--warning--hover": "var(--xmlui-backgroundColor-Select--warning--hover)", "Input:boxShadow-Select--warning--hover": "var(--xmlui-boxShadow-Select--warning--hover)", "Input:textColor-Select--warning--hover": "var(--xmlui-textColor-Select--warning--hover)", "Input:outlineWidth-Select--warning--focus": "var(--xmlui-outlineWidth-Select--warning--focus)", "Input:outlineColor-Select--warning--focus": "var(--xmlui-outlineColor-Select--warning--focus)", "Input:outlineStyle-Select--warning--focus": "var(--xmlui-outlineStyle-Select--warning--focus)", "Input:outlineOffset-Select--warning--focus": "var(--xmlui-outlineOffset-Select--warning--focus)", "Input:textColor-placeholder-Select--warning": "var(--xmlui-textColor-placeholder-Select--warning)", "Input:fontSize-placeholder-Select--warning": "var(--xmlui-fontSize-placeholder-Select--warning)", "Input:borderRadius-Select--success": "var(--xmlui-borderRadius-Select--success)", "Input:borderColor-Select--success": "var(--xmlui-borderColor-Select--success)", "Input:borderWidth-Select--success": "var(--xmlui-borderWidth-Select--success)", "Input:borderStyle-Select--success": "var(--xmlui-borderStyle-Select--success)", "Input:fontSize-Select--success": "var(--xmlui-fontSize-Select--success)", "Input:backgroundColor-Select--success": "var(--xmlui-backgroundColor-Select--success)", "Input:boxShadow-Select--success": "var(--xmlui-boxShadow-Select--success)", "Input:textColor-Select--success": "var(--xmlui-textColor-Select--success)", "Input:borderColor-Select--success--hover": "var(--xmlui-borderColor-Select--success--hover)", "Input:backgroundColor-Select--success--hover": "var(--xmlui-backgroundColor-Select--success--hover)", "Input:boxShadow-Select--success--hover": "var(--xmlui-boxShadow-Select--success--hover)", "Input:textColor-Select--success--hover": "var(--xmlui-textColor-Select--success--hover)", "Input:outlineWidth-Select--success--focus": "var(--xmlui-outlineWidth-Select--success--focus)", "Input:outlineColor-Select--success--focus": "var(--xmlui-outlineColor-Select--success--focus)", "Input:outlineStyle-Select--success--focus": "var(--xmlui-outlineStyle-Select--success--focus)", "Input:outlineOffset-Select--success--focus": "var(--xmlui-outlineOffset-Select--success--focus)", "Input:textColor-placeholder-Select--success": "var(--xmlui-textColor-placeholder-Select--success)", "Input:fontSize-placeholder-Select--success": "var(--xmlui-fontSize-placeholder-Select--success)", "Input:backgroundColor-Select--disabled": "var(--xmlui-backgroundColor-Select--disabled)", "Input:textColor-Select--disabled": "var(--xmlui-textColor-Select--disabled)", "Input:borderColor-Select--disabled": "var(--xmlui-borderColor-Select--disabled)", "Input:outlineWidth-Select--focus": "var(--xmlui-outlineWidth-Select--focus)", "Input:outlineColor-Select--focus": "var(--xmlui-outlineColor-Select--focus)", "Input:outlineStyle-Select--focus": "var(--xmlui-outlineStyle-Select--focus)", "Input:outlineOffset-Select--focus": "var(--xmlui-outlineOffset-Select--focus)", "Input:textColor-placeholder-Select": "var(--xmlui-textColor-placeholder-Select)", "paddingVertical-Select-badge": "var(--xmlui-paddingVertical-Select-badge)", "paddingHorizontal-Select-badge": "var(--xmlui-paddingHorizontal-Select-badge)", "borderRadius-Select-badge": "var(--xmlui-borderRadius-Select-badge)", "Input:fontSize-Select-badge": "var(--xmlui-fontSize-Select-badge)", "Input:backgroundColor-Select-badge": "var(--xmlui-backgroundColor-Select-badge)", "Input:textColor-Select-badge": "var(--xmlui-textColor-Select-badge)", "Input:backgroundColor-Select-badge--hover": "var(--xmlui-backgroundColor-Select-badge--hover)", "Input:textColor-Select-badge--hover": "var(--xmlui-textColor-Select-badge--hover)", "Input:backgroundColor-Select-badge--active": "var(--xmlui-backgroundColor-Select-badge--active)", "Input:textColor-Select-badge--active": "var(--xmlui-textColor-Select-badge--active)", "Input:backgroundColor-menu-Select": "var(--xmlui-backgroundColor-menu-Select)", "Input:borderRadius-menu-Select": "var(--xmlui-borderRadius-menu-Select)", "Input:boxShadow-menu-Select": "var(--xmlui-boxShadow-menu-Select)", "Input:borderWidth-menu-Select": "var(--xmlui-borderWidth-menu-Select)", "Input:borderColor-menu-Select": "var(--xmlui-borderColor-menu-Select)", "backgroundColor-item-Select": "var(--xmlui-backgroundColor-item-Select)", "backgroundColor-item-Select--active": "var(--xmlui-backgroundColor-item-Select--active)", "backgroundColor-item-Select--hover": "var(--xmlui-backgroundColor-item-Select--hover)", "textColor-item-Select--disabled": "var(--xmlui-textColor-item-Select--disabled)", "opacity-text-item-Select--disabled": "var(--xmlui-opacity-text-item-Select--disabled)", "textColor-indicator-Select": "var(--xmlui-textColor-indicator-Select)", "minHeight-Select": "var(--xmlui-minHeight-Select)", "minHeight-item-Select": "var(--xmlui-minHeight-item-Select)"}'`;
22253
- const selectTrigger = "_selectTrigger_1c0m5_17";
22254
- const error$8 = "_error_1c0m5_55";
22255
- const warning$9 = "_warning_1c0m5_81";
22256
- const valid$8 = "_valid_1c0m5_107";
22257
- const disabled$7 = "_disabled_1c0m5_133";
22258
- const placeholder = "_placeholder_1c0m5_145";
22259
- const actions$1 = "_actions_1c0m5_162";
22260
- const action$1 = "_action_1c0m5_162";
22261
- const emptyList = "_emptyList_1c0m5_176";
22262
- const badgeListContainer = "_badgeListContainer_1c0m5_188";
22263
- const badgeList$1 = "_badgeList_1c0m5_188";
22264
- const inputWrapper$1 = "_inputWrapper_1c0m5_201";
22265
- const badge$1 = "_badge_1c0m5_188";
22266
- const selectContent = "_selectContent_1c0m5_236";
22267
- const command$1 = "_command_1c0m5_254";
22268
- const commandInputContainer = "_commandInputContainer_1c0m5_259";
22269
- const commandInput$1 = "_commandInput_1c0m5_259";
22270
- const commandList$1 = "_commandList_1c0m5_277";
22271
- const groupHeader = "_groupHeader_1c0m5_284";
22272
- const multiSelectOption = "_multiSelectOption_1c0m5_296";
22273
- const multiSelectOptionContent = "_multiSelectOptionContent_1c0m5_311";
22274
- const highlighted$1 = "_highlighted_1c0m5_320";
22275
- const disabledOption$1 = "_disabledOption_1c0m5_326";
22276
- const selectValue = "_selectValue_1c0m5_341";
22277
- const selectDropdownContent = "_selectDropdownContent_1c0m5_351";
22278
- const fadeIn = "_fadeIn_1c0m5_1";
22279
- const zoomIn = "_zoomIn_1c0m5_1";
22280
- const fadeOut = "_fadeOut_1c0m5_1";
22281
- const zoomOut = "_zoomOut_1c0m5_1";
22282
- const slideInFromTop = "_slideInFromTop_1c0m5_1";
22283
- const slideInFromRight = "_slideInFromRight_1c0m5_1";
22284
- const slideInFromLeft = "_slideInFromLeft_1c0m5_1";
22285
- const slideInFromBottom = "_slideInFromBottom_1c0m5_1";
22286
- const selectViewport = "_selectViewport_1c0m5_383";
22287
- const selectScrollUpButton = "_selectScrollUpButton_1c0m5_387";
22288
- const selectScrollDownButton = "_selectScrollDownButton_1c0m5_395";
22289
- const selectEmpty = "_selectEmpty_1c0m5_403";
22290
- const selectOption = "_selectOption_1c0m5_416";
22291
- const selectOptionContent = "_selectOptionContent_1c0m5_440";
22292
- const selectOptionIndicator = "_selectOptionIndicator_1c0m5_454";
22293
- const loading = "_loading_1c0m5_464";
22294
- const srOnly = "_srOnly_1c0m5_467";
22322
+ const selectTrigger = "_selectTrigger_1ff9m_17";
22323
+ const error$8 = "_error_1ff9m_56";
22324
+ const warning$9 = "_warning_1ff9m_82";
22325
+ const valid$8 = "_valid_1ff9m_108";
22326
+ const disabled$7 = "_disabled_1ff9m_134";
22327
+ const placeholder = "_placeholder_1ff9m_146";
22328
+ const actions$1 = "_actions_1ff9m_163";
22329
+ const action$1 = "_action_1ff9m_163";
22330
+ const badgeListContainer = "_badgeListContainer_1ff9m_177";
22331
+ const badgeList$1 = "_badgeList_1ff9m_177";
22332
+ const inputWrapper$1 = "_inputWrapper_1ff9m_190";
22333
+ const badge$1 = "_badge_1ff9m_177";
22334
+ const selectContent = "_selectContent_1ff9m_225";
22335
+ const command$1 = "_command_1ff9m_243";
22336
+ const commandInputContainer = "_commandInputContainer_1ff9m_248";
22337
+ const commandInput$1 = "_commandInput_1ff9m_248";
22338
+ const commandList$1 = "_commandList_1ff9m_266";
22339
+ const groupHeader = "_groupHeader_1ff9m_273";
22340
+ const multiSelectOption = "_multiSelectOption_1ff9m_285";
22341
+ const multiSelectOptionContent = "_multiSelectOptionContent_1ff9m_300";
22342
+ const highlighted$1 = "_highlighted_1ff9m_309";
22343
+ const disabledOption$1 = "_disabledOption_1ff9m_315";
22344
+ const selectValue = "_selectValue_1ff9m_330";
22345
+ const selectDropdownContent = "_selectDropdownContent_1ff9m_340";
22346
+ const fadeIn = "_fadeIn_1ff9m_1";
22347
+ const zoomIn = "_zoomIn_1ff9m_1";
22348
+ const fadeOut = "_fadeOut_1ff9m_1";
22349
+ const zoomOut = "_zoomOut_1ff9m_1";
22350
+ const slideInFromTop = "_slideInFromTop_1ff9m_1";
22351
+ const slideInFromRight = "_slideInFromRight_1ff9m_1";
22352
+ const slideInFromLeft = "_slideInFromLeft_1ff9m_1";
22353
+ const slideInFromBottom = "_slideInFromBottom_1ff9m_1";
22354
+ const selectViewport = "_selectViewport_1ff9m_372";
22355
+ const selectScrollUpButton = "_selectScrollUpButton_1ff9m_376";
22356
+ const selectScrollDownButton = "_selectScrollDownButton_1ff9m_384";
22357
+ const selectEmpty = "_selectEmpty_1ff9m_392";
22358
+ const selectOption = "_selectOption_1ff9m_405";
22359
+ const selectOptionContent = "_selectOptionContent_1ff9m_429";
22360
+ const selectOptionIndicator = "_selectOptionIndicator_1ff9m_443";
22361
+ const loading = "_loading_1ff9m_453";
22362
+ const srOnly = "_srOnly_1ff9m_456";
22295
22363
  const styles$P = {
22296
22364
  themeVars: themeVars$z,
22297
22365
  selectTrigger,
@@ -22302,7 +22370,6 @@ const styles$P = {
22302
22370
  placeholder,
22303
22371
  actions: actions$1,
22304
22372
  action: action$1,
22305
- emptyList,
22306
22373
  badgeListContainer,
22307
22374
  badgeList: badgeList$1,
22308
22375
  inputWrapper: inputWrapper$1,
@@ -22488,9 +22555,10 @@ const SimpleSelect = forwardRef(
22488
22555
  }, [options2, value]);
22489
22556
  const groupedOptions = useMemo(() => {
22490
22557
  if (!groupBy2) return null;
22558
+ if (options2.length === 0) return null;
22491
22559
  const groups = {};
22492
22560
  options2.forEach((option) => {
22493
- const groupKey = option[groupBy2] || "Ungrouped";
22561
+ const groupKey = option[groupBy2] ?? "Ungrouped";
22494
22562
  if (!groups[groupKey]) {
22495
22563
  groups[groupKey] = [];
22496
22564
  }
@@ -22503,7 +22571,7 @@ const SimpleSelect = forwardRef(
22503
22571
  Object.keys(groups).filter((key) => key !== "Ungrouped").sort().forEach((key) => {
22504
22572
  sortedGroups[key] = groups[key];
22505
22573
  });
22506
- return sortedGroups;
22574
+ return Object.keys(sortedGroups).length > 0 ? sortedGroups : null;
22507
22575
  }, [groupBy2, options2]);
22508
22576
  return /* @__PURE__ */ jsxs(
22509
22577
  Root,
@@ -22571,10 +22639,10 @@ const SimpleSelect = forwardRef(
22571
22639
  style: { maxHeight: height, width },
22572
22640
  children: [
22573
22641
  /* @__PURE__ */ jsx(ScrollUpButton, { className: styles$P.selectScrollUpButton, children: /* @__PURE__ */ jsx(Icon$l, { name: "chevronup" }) }),
22574
- /* @__PURE__ */ jsx(Part, { partId: "listWrapper", children: /* @__PURE__ */ jsx(Viewport, { className: styles$P.selectViewport, role: "listbox", children: groupBy2 && groupedOptions ? (
22642
+ /* @__PURE__ */ jsx(Part, { partId: "listWrapper", children: /* @__PURE__ */ jsx(Viewport, { className: styles$P.selectViewport, children: groupBy2 && groupedOptions ? (
22575
22643
  // Render grouped options directly from options array
22576
22644
  /* @__PURE__ */ jsx(Fragment, { children: Object.keys(groupedOptions).length === 0 ? emptyListNode : Object.entries(groupedOptions).map(([groupName, groupOptions]) => /* @__PURE__ */ jsxs(Group, { children: [
22577
- groupName === "Ungrouped" ? ungroupedHeaderRenderer && /* @__PURE__ */ jsx(Label, { className: styles$P.groupHeader, children: ungroupedHeaderRenderer() }) : /* @__PURE__ */ jsx(Label, { className: styles$P.groupHeader, children: groupHeaderRenderer ? groupHeaderRenderer(groupName) : groupName }),
22645
+ groupName === "Ungrouped" ? ungroupedHeaderRenderer && /* @__PURE__ */ jsx(Label, { className: styles$P.groupHeader, children: ungroupedHeaderRenderer() }) : /* @__PURE__ */ jsx(Label, { className: styles$P.groupHeader, children: groupHeaderRenderer ? groupHeaderRenderer({ $group: groupName }) : groupName }),
22578
22646
  groupOptions.map((option) => /* @__PURE__ */ jsx(
22579
22647
  SelectOption,
22580
22648
  {
@@ -22755,9 +22823,10 @@ const Select = forwardRef(function Select2({
22755
22823
  const groupedOptions = useMemo(() => {
22756
22824
  if (!groupBy2) return null;
22757
22825
  const optionsToGroup = searchTerm ? filteredOptions : Array.from(options2);
22826
+ if (optionsToGroup.length === 0) return null;
22758
22827
  const groups = {};
22759
22828
  optionsToGroup.forEach((option) => {
22760
- const groupKey = option[groupBy2] || "Ungrouped";
22829
+ const groupKey = option[groupBy2] ?? "Ungrouped";
22761
22830
  if (!groups[groupKey]) {
22762
22831
  groups[groupKey] = [];
22763
22832
  }
@@ -22770,7 +22839,7 @@ const Select = forwardRef(function Select2({
22770
22839
  Object.keys(groups).filter((key) => key !== "Ungrouped").sort().forEach((key) => {
22771
22840
  sortedGroups[key] = groups[key];
22772
22841
  });
22773
- return sortedGroups;
22842
+ return Object.keys(sortedGroups).length > 0 ? sortedGroups : null;
22774
22843
  }, [groupBy2, options2, filteredOptions, searchTerm]);
22775
22844
  const flattenedGroupedOptions = useMemo(() => {
22776
22845
  if (!groupedOptions) return null;
@@ -23109,7 +23178,7 @@ const Select = forwardRef(function Select2({
23109
23178
  groupBy2 && groupedOptions ? (
23110
23179
  // Render grouped filtered options
23111
23180
  Object.entries(groupedOptions).map(([groupName, groupOptions]) => /* @__PURE__ */ jsxs("div", { children: [
23112
- groupName === "Ungrouped" ? ungroupedHeaderRenderer && /* @__PURE__ */ jsx("div", { className: styles$P.groupHeader, children: ungroupedHeaderRenderer() }) : groupHeaderRenderer ? /* @__PURE__ */ jsx("div", { className: styles$P.groupHeader, children: groupHeaderRenderer(groupName) }) : /* @__PURE__ */ jsx("div", { className: styles$P.groupHeader, children: groupName }),
23181
+ groupName === "Ungrouped" ? ungroupedHeaderRenderer && /* @__PURE__ */ jsx("div", { className: styles$P.groupHeader, children: ungroupedHeaderRenderer() }) : groupHeaderRenderer ? /* @__PURE__ */ jsx("div", { className: styles$P.groupHeader, children: groupHeaderRenderer({ $group: groupName }) }) : /* @__PURE__ */ jsx("div", { className: styles$P.groupHeader, children: groupName }),
23113
23182
  groupOptions.map(({ value: value2, label: label2, enabled: enabled22, keywords }, groupIndex) => {
23114
23183
  const optionsList = flattenedGroupedOptions || filteredOptions;
23115
23184
  const globalIndex = optionsList.findIndex(
@@ -23224,19 +23293,19 @@ function SelectOptionItem(option) {
23224
23293
  }
23225
23294
  );
23226
23295
  }
23227
- const themeVars$y = `'{"gap-RadioGroupOption": "var(--xmlui-gap-RadioGroupOption)", "borderWidth-RadioGroupOption": "var(--xmlui-borderWidth-RadioGroupOption)", "borderWidth-RadioGroupOption-validation": "var(--xmlui-borderWidth-RadioGroupOption-validation)", "Input:borderColor-RadioGroupOption--default": "var(--xmlui-borderColor-RadioGroupOption--default)", "Input:borderColor-checked-RadioGroupOption": "var(--xmlui-borderColor-checked-RadioGroupOption)", "Input:borderColor-RadioGroupOption--default--hover": "var(--xmlui-borderColor-RadioGroupOption--default--hover)", "Input:borderColor-RadioGroupOption--default--active": "var(--xmlui-borderColor-RadioGroupOption--default--active)", "Input:borderColor-RadioGroupOption--disabled": "var(--xmlui-borderColor-RadioGroupOption--disabled)", "Input:borderColor-RadioGroupOption--error": "var(--xmlui-borderColor-RadioGroupOption--error)", "Input:borderColor-RadioGroupOption--warning": "var(--xmlui-borderColor-RadioGroupOption--warning)", "Input:borderColor-RadioGroupOption--success": "var(--xmlui-borderColor-RadioGroupOption--success)", "Input:backgroundColor-RadioGroupOption--default": "var(--xmlui-backgroundColor-RadioGroupOption--default)", "Input:backgroundColor-checked-RadioGroupOption": "var(--xmlui-backgroundColor-checked-RadioGroupOption)", "Input:backgroundColor-checked-RadioGroupOption--disabled": "var(--xmlui-backgroundColor-checked-RadioGroupOption--disabled)", "Input:textColor-RadioGroupOption--disabled": "var(--xmlui-textColor-RadioGroupOption--disabled)", "Input:fontSize-RadioGroupOption": "var(--xmlui-fontSize-RadioGroupOption)", "Input:fontWeight-RadioGroupOption": "var(--xmlui-fontWeight-RadioGroupOption)", "Input:textColor-RadioGroupOption--default": "var(--xmlui-textColor-RadioGroupOption--default)", "Input:textColor-RadioGroupOption--error": "var(--xmlui-textColor-RadioGroupOption--error)", "Input:textColor-RadioGroupOption--warning": "var(--xmlui-textColor-RadioGroupOption--warning)", "Input:textColor-RadioGroupOption--success": "var(--xmlui-textColor-RadioGroupOption--success)", "Input:outlineWidth-RadioGroupOption--focus": "var(--xmlui-outlineWidth-RadioGroupOption--focus)", "Input:outlineColor-RadioGroupOption--focus": "var(--xmlui-outlineColor-RadioGroupOption--focus)", "Input:outlineStyle-RadioGroupOption--focus": "var(--xmlui-outlineStyle-RadioGroupOption--focus)", "Input:outlineOffset-RadioGroupOption--focus": "var(--xmlui-outlineOffset-RadioGroupOption--focus)"}'`;
23228
- const radioGroupContainer = "_radioGroupContainer_1iwha_14";
23229
- const radioOptionContainer = "_radioOptionContainer_1iwha_20";
23230
- const radioOption = "_radioOption_1iwha_20";
23231
- const checked = "_checked_1iwha_54";
23232
- const error$7 = "_error_1iwha_54";
23233
- const warning$8 = "_warning_1iwha_54";
23234
- const valid$7 = "_valid_1iwha_54";
23235
- const indicator$2 = "_indicator_1iwha_69";
23236
- const disabled$6 = "_disabled_1iwha_77";
23237
- const itemContainer$1 = "_itemContainer_1iwha_80";
23238
- const optionLabel = "_optionLabel_1iwha_87";
23239
- const label = "_label_1iwha_91";
23296
+ const themeVars$y = `'{"gap-RadioGroupOption": "var(--xmlui-gap-RadioGroupOption)", "borderWidth-RadioGroupOption": "var(--xmlui-borderWidth-RadioGroupOption)", "borderWidth-RadioGroupOption-validation": "var(--xmlui-borderWidth-RadioGroupOption-validation)", "Input:borderColor-RadioGroupOption--default": "var(--xmlui-borderColor-RadioGroupOption--default)", "Input:borderColor-checked-RadioGroupOption": "var(--xmlui-borderColor-checked-RadioGroupOption)", "Input:borderColor-RadioGroupOption--default--hover": "var(--xmlui-borderColor-RadioGroupOption--default--hover)", "Input:borderColor-RadioGroupOption--default--active": "var(--xmlui-borderColor-RadioGroupOption--default--active)", "Input:borderColor-RadioGroupOption--disabled": "var(--xmlui-borderColor-RadioGroupOption--disabled)", "Input:borderColor-RadioGroupOption--error": "var(--xmlui-borderColor-RadioGroupOption--error)", "Input:borderColor-RadioGroupOption--warning": "var(--xmlui-borderColor-RadioGroupOption--warning)", "Input:borderColor-RadioGroupOption--success": "var(--xmlui-borderColor-RadioGroupOption--success)", "Input:backgroundColor-RadioGroup": "var(--xmlui-backgroundColor-RadioGroup)", "Input:backgroundColor-RadioGroupOption--default": "var(--xmlui-backgroundColor-RadioGroupOption--default)", "Input:backgroundColor-checked-RadioGroupOption": "var(--xmlui-backgroundColor-checked-RadioGroupOption)", "Input:backgroundColor-checked-RadioGroupOption--disabled": "var(--xmlui-backgroundColor-checked-RadioGroupOption--disabled)", "Input:textColor-RadioGroupOption--disabled": "var(--xmlui-textColor-RadioGroupOption--disabled)", "Input:fontSize-RadioGroupOption": "var(--xmlui-fontSize-RadioGroupOption)", "Input:fontWeight-RadioGroupOption": "var(--xmlui-fontWeight-RadioGroupOption)", "Input:textColor-RadioGroupOption--default": "var(--xmlui-textColor-RadioGroupOption--default)", "Input:textColor-RadioGroupOption--error": "var(--xmlui-textColor-RadioGroupOption--error)", "Input:textColor-RadioGroupOption--warning": "var(--xmlui-textColor-RadioGroupOption--warning)", "Input:textColor-RadioGroupOption--success": "var(--xmlui-textColor-RadioGroupOption--success)", "Input:outlineWidth-RadioGroupOption--focus": "var(--xmlui-outlineWidth-RadioGroupOption--focus)", "Input:outlineColor-RadioGroupOption--focus": "var(--xmlui-outlineColor-RadioGroupOption--focus)", "Input:outlineStyle-RadioGroupOption--focus": "var(--xmlui-outlineStyle-RadioGroupOption--focus)", "Input:outlineOffset-RadioGroupOption--focus": "var(--xmlui-outlineOffset-RadioGroupOption--focus)"}'`;
23297
+ const radioGroupContainer = "_radioGroupContainer_1niz4_14";
23298
+ const radioOptionContainer = "_radioOptionContainer_1niz4_21";
23299
+ const radioOption = "_radioOption_1niz4_21";
23300
+ const checked = "_checked_1niz4_55";
23301
+ const error$7 = "_error_1niz4_55";
23302
+ const warning$8 = "_warning_1niz4_55";
23303
+ const valid$7 = "_valid_1niz4_55";
23304
+ const indicator$2 = "_indicator_1niz4_70";
23305
+ const disabled$6 = "_disabled_1niz4_78";
23306
+ const itemContainer$1 = "_itemContainer_1niz4_81";
23307
+ const optionLabel = "_optionLabel_1niz4_88";
23308
+ const label = "_label_1niz4_92";
23240
23309
  const styles$O = {
23241
23310
  themeVars: themeVars$y,
23242
23311
  radioGroupContainer,
@@ -23775,24 +23844,24 @@ const TextArea = forwardRef(function TextArea2({
23775
23844
  return /* @__PURE__ */ jsx(Part, { partId: PART_INPUT, children: /* @__PURE__ */ jsx("textarea", { ...textareaProps, rows, className: classnames(classes) }) });
23776
23845
  });
23777
23846
  const themeVars$w = `'{"border-AutoComplete": "var(--xmlui-border-AutoComplete)", "borderHorizontal-AutoComplete": "var(--xmlui-borderHorizontal-AutoComplete, var(--xmlui-border-AutoComplete))", "borderVertical-AutoComplete": "var(--xmlui-borderVertical-AutoComplete, var(--xmlui-border-AutoComplete))", "borderLeft-AutoComplete": "var(--xmlui-borderLeft-AutoComplete, var(--xmlui-borderHorizontal-AutoComplete, var(--xmlui-border-AutoComplete)))", "borderRight-AutoComplete": "var(--xmlui-borderRight-AutoComplete, var(--xmlui-borderHorizontal-AutoComplete, var(--xmlui-border-AutoComplete)))", "borderTop-AutoComplete": "var(--xmlui-borderTop-AutoComplete, var(--xmlui-borderVertical-AutoComplete, var(--xmlui-border-AutoComplete)))", "borderBottom-AutoComplete": "var(--xmlui-borderBottom-AutoComplete, var(--xmlui-borderVertical-AutoComplete, var(--xmlui-border-AutoComplete)))", "borderWidth-AutoComplete": "var(--xmlui-borderWidth-AutoComplete)", "borderHorizontalWidth-AutoComplete": "var(--xmlui-borderHorizontalWidth-AutoComplete, var(--xmlui-borderWidth-AutoComplete))", "borderLeftWidth-AutoComplete": "var(--xmlui-borderLeftWidth-AutoComplete, var(--xmlui-borderHorizontalWidth-AutoComplete, var(--xmlui-borderWidth-AutoComplete)))", "borderRightWidth-AutoComplete": "var(--xmlui-borderRightWidth-AutoComplete, var(--xmlui-borderHorizontalWidth-AutoComplete, var(--xmlui-borderWidth-AutoComplete)))", "borderVerticalWidth-AutoComplete": "var(--xmlui-borderVerticalWidth-AutoComplete, var(--xmlui-borderWidth-AutoComplete))", "borderTopWidth-AutoComplete": "var(--xmlui-borderTopWidth-AutoComplete, var(--xmlui-borderVerticalWidth-AutoComplete, var(--xmlui-borderWidth-AutoComplete)))", "borderBottomWidth-AutoComplete": "var(--xmlui-borderBottomWidth-AutoComplete, var(--xmlui-borderVerticalWidth-AutoComplete, var(--xmlui-borderWidth-AutoComplete)))", "borderStyle-AutoComplete": "var(--xmlui-borderStyle-AutoComplete)", "borderHorizontalStyle-AutoComplete": "var(--xmlui-borderHorizontalStyle-AutoComplete, var(--xmlui-borderStyle-AutoComplete))", "borderLeftStyle-AutoComplete": "var(--xmlui-borderLeftStyle-AutoComplete, var(--xmlui-borderHorizontalStyle-AutoComplete, var(--xmlui-borderStyle-AutoComplete)))", "borderRightStyle-AutoComplete": "var(--xmlui-borderRightStyle-AutoComplete, var(--xmlui-borderHorizontalStyle-AutoComplete, var(--xmlui-borderStyle-AutoComplete)))", "borderVerticalStyle-AutoComplete": "var(--xmlui-borderVerticalStyle-AutoComplete, var(--xmlui-borderStyle-AutoComplete))", "borderTopStyle-AutoComplete": "var(--xmlui-borderTopStyle-AutoComplete, var(--xmlui-borderVerticalStyle-AutoComplete, var(--xmlui-borderStyle-AutoComplete)))", "borderBottomStyle-AutoComplete": "var(--xmlui-borderBottomStyle-AutoComplete, var(--xmlui-borderVerticalStyle-AutoComplete, var(--xmlui-borderStyle-AutoComplete)))", "borderColor-AutoComplete": "var(--xmlui-borderColor-AutoComplete)", "borderHorizontalColor-AutoComplete": "var(--xmlui-borderHorizontalColor-AutoComplete, var(--xmlui-borderColor-AutoComplete))", "borderLeftColor-AutoComplete": "var(--xmlui-borderLeftColor-AutoComplete, var(--xmlui-borderHorizontalColor-AutoComplete, var(--xmlui-borderColor-AutoComplete)))", "borderRightColor-AutoComplete": "var(--xmlui-borderRightColor-AutoComplete, var(--xmlui-borderHorizontalColor-AutoComplete, var(--xmlui-borderColor-AutoComplete)))", "borderVerticalColor-AutoComplete": "var(--xmlui-borderVerticalColor-AutoComplete, var(--xmlui-borderColor-AutoComplete))", "borderTopColor-AutoComplete": "var(--xmlui-borderTopColor-AutoComplete, var(--xmlui-borderVerticalColor-AutoComplete, var(--xmlui-borderColor-AutoComplete)))", "borderBottomColor-AutoComplete": "var(--xmlui-borderBottomColor-AutoComplete, var(--xmlui-borderVerticalColor-AutoComplete, var(--xmlui-borderColor-AutoComplete)))", "borderStartStartRadius-AutoComplete": "var(--xmlui-borderStartStartRadius-AutoComplete, var(--xmlui-borderRadius-AutoComplete))", "borderStartEndRadius-AutoComplete": "var(--xmlui-borderStartEndRadius-AutoComplete, var(--xmlui-borderRadius-AutoComplete))", "borderEndStartRadius-AutoComplete": "var(--xmlui-borderEndStartRadius-AutoComplete, var(--xmlui-borderRadius-AutoComplete))", "borderEndEndRadius-AutoComplete": "var(--xmlui-borderEndEndRadius-AutoComplete, var(--xmlui-borderRadius-AutoComplete))", "padding-AutoComplete": "var(--xmlui-padding-AutoComplete)", "paddingHorizontal-AutoComplete": "var(--xmlui-paddingHorizontal-AutoComplete, var(--xmlui-padding-AutoComplete))", "paddingVertical-AutoComplete": "var(--xmlui-paddingVertical-AutoComplete, var(--xmlui-padding-AutoComplete))", "paddingLeft-AutoComplete": "var(--xmlui-paddingLeft-AutoComplete, var(--xmlui-paddingHorizontal-AutoComplete, var(--xmlui-padding-AutoComplete)))", "paddingRight-AutoComplete": "var(--xmlui-paddingRight-AutoComplete, var(--xmlui-paddingHorizontal-AutoComplete, var(--xmlui-padding-AutoComplete)))", "paddingTop-AutoComplete": "var(--xmlui-paddingTop-AutoComplete, var(--xmlui-paddingVertical-AutoComplete, var(--xmlui-padding-AutoComplete)))", "paddingBottom-AutoComplete": "var(--xmlui-paddingBottom-AutoComplete, var(--xmlui-paddingVertical-AutoComplete, var(--xmlui-padding-AutoComplete)))", "padding-item-AutoComplete": "var(--xmlui-padding-item-AutoComplete)", "paddingHorizontal-item-AutoComplete": "var(--xmlui-paddingHorizontal-item-AutoComplete, var(--xmlui-padding-item-AutoComplete))", "paddingVertical-item-AutoComplete": "var(--xmlui-paddingVertical-item-AutoComplete, var(--xmlui-padding-item-AutoComplete))", "paddingLeft-item-AutoComplete": "var(--xmlui-paddingLeft-item-AutoComplete, var(--xmlui-paddingHorizontal-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))", "paddingRight-item-AutoComplete": "var(--xmlui-paddingRight-item-AutoComplete, var(--xmlui-paddingHorizontal-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))", "paddingTop-item-AutoComplete": "var(--xmlui-paddingTop-item-AutoComplete, var(--xmlui-paddingVertical-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))", "paddingBottom-item-AutoComplete": "var(--xmlui-paddingBottom-item-AutoComplete, var(--xmlui-paddingVertical-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))", "Input:borderRadius-AutoComplete--default": "var(--xmlui-borderRadius-AutoComplete--default)", "Input:borderColor-AutoComplete--default": "var(--xmlui-borderColor-AutoComplete--default)", "Input:borderWidth-AutoComplete--default": "var(--xmlui-borderWidth-AutoComplete--default)", "Input:borderStyle-AutoComplete--default": "var(--xmlui-borderStyle-AutoComplete--default)", "Input:fontSize-AutoComplete--default": "var(--xmlui-fontSize-AutoComplete--default)", "Input:backgroundColor-AutoComplete--default": "var(--xmlui-backgroundColor-AutoComplete--default)", "Input:boxShadow-AutoComplete--default": "var(--xmlui-boxShadow-AutoComplete--default)", "Input:textColor-AutoComplete--default": "var(--xmlui-textColor-AutoComplete--default)", "Input:borderColor-AutoComplete--default--hover": "var(--xmlui-borderColor-AutoComplete--default--hover)", "Input:backgroundColor-AutoComplete--default--hover": "var(--xmlui-backgroundColor-AutoComplete--default--hover)", "Input:boxShadow-AutoComplete--default--hover": "var(--xmlui-boxShadow-AutoComplete--default--hover)", "Input:textColor-AutoComplete--default--hover": "var(--xmlui-textColor-AutoComplete--default--hover)", "Input:textColor-placeholder-AutoComplete--default": "var(--xmlui-textColor-placeholder-AutoComplete--default)", "Input:fontSize-placeholder-AutoComplete--default": "var(--xmlui-fontSize-placeholder-AutoComplete--default)", "Input:borderRadius-AutoComplete--error": "var(--xmlui-borderRadius-AutoComplete--error)", "Input:borderColor-AutoComplete--error": "var(--xmlui-borderColor-AutoComplete--error)", "Input:borderWidth-AutoComplete--error": "var(--xmlui-borderWidth-AutoComplete--error)", "Input:borderStyle-AutoComplete--error": "var(--xmlui-borderStyle-AutoComplete--error)", "Input:fontSize-AutoComplete--error": "var(--xmlui-fontSize-AutoComplete--error)", "Input:backgroundColor-AutoComplete--error": "var(--xmlui-backgroundColor-AutoComplete--error)", "Input:boxShadow-AutoComplete--error": "var(--xmlui-boxShadow-AutoComplete--error)", "Input:textColor-AutoComplete--error": "var(--xmlui-textColor-AutoComplete--error)", "Input:borderColor-AutoComplete--error--hover": "var(--xmlui-borderColor-AutoComplete--error--hover)", "Input:backgroundColor-AutoComplete--error--hover": "var(--xmlui-backgroundColor-AutoComplete--error--hover)", "Input:boxShadow-AutoComplete--error--hover": "var(--xmlui-boxShadow-AutoComplete--error--hover)", "Input:textColor-AutoComplete--error--hover": "var(--xmlui-textColor-AutoComplete--error--hover)", "Input:textColor-placeholder-AutoComplete--error": "var(--xmlui-textColor-placeholder-AutoComplete--error)", "Input:fontSize-placeholder-AutoComplete--error": "var(--xmlui-fontSize-placeholder-AutoComplete--error)", "Input:borderRadius-AutoComplete--warning": "var(--xmlui-borderRadius-AutoComplete--warning)", "Input:borderColor-AutoComplete--warning": "var(--xmlui-borderColor-AutoComplete--warning)", "Input:borderWidth-AutoComplete--warning": "var(--xmlui-borderWidth-AutoComplete--warning)", "Input:borderStyle-AutoComplete--warning": "var(--xmlui-borderStyle-AutoComplete--warning)", "Input:fontSize-AutoComplete--warning": "var(--xmlui-fontSize-AutoComplete--warning)", "Input:backgroundColor-AutoComplete--warning": "var(--xmlui-backgroundColor-AutoComplete--warning)", "Input:boxShadow-AutoComplete--warning": "var(--xmlui-boxShadow-AutoComplete--warning)", "Input:textColor-AutoComplete--warning": "var(--xmlui-textColor-AutoComplete--warning)", "Input:borderColor-AutoComplete--warning--hover": "var(--xmlui-borderColor-AutoComplete--warning--hover)", "Input:backgroundColor-AutoComplete--warning--hover": "var(--xmlui-backgroundColor-AutoComplete--warning--hover)", "Input:boxShadow-AutoComplete--warning--hover": "var(--xmlui-boxShadow-AutoComplete--warning--hover)", "Input:textColor-AutoComplete--warning--hover": "var(--xmlui-textColor-AutoComplete--warning--hover)", "Input:textColor-placeholder-AutoComplete--warning": "var(--xmlui-textColor-placeholder-AutoComplete--warning)", "Input:fontSize-placeholder-AutoComplete--warning": "var(--xmlui-fontSize-placeholder-AutoComplete--warning)", "Input:borderRadius-AutoComplete--success": "var(--xmlui-borderRadius-AutoComplete--success)", "Input:borderColor-AutoComplete--success": "var(--xmlui-borderColor-AutoComplete--success)", "Input:borderWidth-AutoComplete--success": "var(--xmlui-borderWidth-AutoComplete--success)", "Input:borderStyle-AutoComplete--success": "var(--xmlui-borderStyle-AutoComplete--success)", "Input:fontSize-AutoComplete--success": "var(--xmlui-fontSize-AutoComplete--success)", "Input:backgroundColor-AutoComplete--success": "var(--xmlui-backgroundColor-AutoComplete--success)", "Input:boxShadow-AutoComplete--success": "var(--xmlui-boxShadow-AutoComplete--success)", "Input:textColor-AutoComplete--success": "var(--xmlui-textColor-AutoComplete--success)", "Input:borderColor-AutoComplete--success--hover": "var(--xmlui-borderColor-AutoComplete--success--hover)", "Input:backgroundColor-AutoComplete--success--hover": "var(--xmlui-backgroundColor-AutoComplete--success--hover)", "Input:boxShadow-AutoComplete--success--hover": "var(--xmlui-boxShadow-AutoComplete--success--hover)", "Input:textColor-AutoComplete--success--hover": "var(--xmlui-textColor-AutoComplete--success--hover)", "Input:textColor-placeholder-AutoComplete--success": "var(--xmlui-textColor-placeholder-AutoComplete--success)", "Input:fontSize-placeholder-AutoComplete--success": "var(--xmlui-fontSize-placeholder-AutoComplete--success)", "Input:gap-adornment-AutoComplete": "var(--xmlui-gap-adornment-AutoComplete)", "Input:backgroundColor-AutoComplete--disabled": "var(--xmlui-backgroundColor-AutoComplete--disabled)", "Input:textColor-AutoComplete--disabled": "var(--xmlui-textColor-AutoComplete--disabled)", "Input:borderColor-AutoComplete--disabled": "var(--xmlui-borderColor-AutoComplete--disabled)", "Input:outlineWidth-AutoComplete--focus": "var(--xmlui-outlineWidth-AutoComplete--focus)", "Input:outlineColor-AutoComplete--focus": "var(--xmlui-outlineColor-AutoComplete--focus)", "Input:outlineStyle-AutoComplete--focus": "var(--xmlui-outlineStyle-AutoComplete--focus)", "Input:outlineOffset-AutoComplete--focus": "var(--xmlui-outlineOffset-AutoComplete--focus)", "paddingVertical-AutoComplete-badge": "var(--xmlui-paddingVertical-AutoComplete-badge)", "paddingHorizontal-AutoComplete-badge": "var(--xmlui-paddingHorizontal-AutoComplete-badge)", "borderRadius-AutoComplete-badge": "var(--xmlui-borderRadius-AutoComplete-badge)", "Input:fontSize-AutoComplete-badge": "var(--xmlui-fontSize-AutoComplete-badge)", "Input:backgroundColor-AutoComplete-badge": "var(--xmlui-backgroundColor-AutoComplete-badge)", "Input:textColor-AutoComplete-badge": "var(--xmlui-textColor-AutoComplete-badge)", "Input:backgroundColor-AutoComplete-badge--hover": "var(--xmlui-backgroundColor-AutoComplete-badge--hover)", "Input:textColor-AutoComplete-badge--hover": "var(--xmlui-textColor-AutoComplete-badge--hover)", "Input:backgroundColor-AutoComplete-badge--active": "var(--xmlui-backgroundColor-AutoComplete-badge--active)", "Input:textColor-AutoComplete-badge--active": "var(--xmlui-textColor-AutoComplete-badge--active)", "Input:textColor-placeholder-AutoComplete": "var(--xmlui-textColor-placeholder-AutoComplete)", "Input:borderRadius-menu-AutoComplete": "var(--xmlui-borderRadius-menu-AutoComplete)", "Input:borderWidth-menu-AutoComplete": "var(--xmlui-borderWidth-menu-AutoComplete)", "Input:borderColor-menu-AutoComplete": "var(--xmlui-borderColor-menu-AutoComplete)", "Input:backgroundColor-menu-AutoComplete": "var(--xmlui-backgroundColor-menu-AutoComplete)", "Input:boxShadow-menu-AutoComplete": "var(--xmlui-boxShadow-menu-AutoComplete)", "backgroundColor-item-AutoComplete": "var(--xmlui-backgroundColor-item-AutoComplete)", "backgroundColor-item-AutoComplete--active": "var(--xmlui-backgroundColor-item-AutoComplete--active)", "backgroundColor-item-AutoComplete--hover": "var(--xmlui-backgroundColor-item-AutoComplete--hover)", "textColor-item-AutoComplete--disabled": "var(--xmlui-textColor-item-AutoComplete--disabled)"}'`;
23778
- const command = "_command_57zg7_14";
23779
- const badgeListWrapper = "_badgeListWrapper_57zg7_20";
23780
- const error$5 = "_error_57zg7_51";
23781
- const warning$6 = "_warning_57zg7_71";
23782
- const valid$5 = "_valid_57zg7_91";
23783
- const disabled$5 = "_disabled_57zg7_111";
23784
- const focused$2 = "_focused_57zg7_117";
23785
- const badgeList = "_badgeList_57zg7_20";
23786
- const inputWrapper = "_inputWrapper_57zg7_130";
23787
- const badge = "_badge_57zg7_20";
23788
- const commandInput = "_commandInput_57zg7_162";
23789
- const actions = "_actions_57zg7_176";
23790
- const action = "_action_57zg7_176";
23791
- const autoCompleteEmpty = "_autoCompleteEmpty_57zg7_187";
23792
- const commandList = "_commandList_57zg7_196";
23793
- const autoCompleteOption = "_autoCompleteOption_57zg7_208";
23794
- const highlighted = "_highlighted_57zg7_225";
23795
- const disabledOption = "_disabledOption_57zg7_228";
23847
+ const command = "_command_1p96c_14";
23848
+ const badgeListWrapper = "_badgeListWrapper_1p96c_20";
23849
+ const error$5 = "_error_1p96c_52";
23850
+ const warning$6 = "_warning_1p96c_72";
23851
+ const valid$5 = "_valid_1p96c_92";
23852
+ const disabled$5 = "_disabled_1p96c_112";
23853
+ const focused$2 = "_focused_1p96c_118";
23854
+ const badgeList = "_badgeList_1p96c_20";
23855
+ const inputWrapper = "_inputWrapper_1p96c_131";
23856
+ const badge = "_badge_1p96c_20";
23857
+ const commandInput = "_commandInput_1p96c_163";
23858
+ const actions = "_actions_1p96c_177";
23859
+ const action = "_action_1p96c_177";
23860
+ const autoCompleteEmpty = "_autoCompleteEmpty_1p96c_188";
23861
+ const commandList = "_commandList_1p96c_197";
23862
+ const autoCompleteOption = "_autoCompleteOption_1p96c_209";
23863
+ const highlighted = "_highlighted_1p96c_226";
23864
+ const disabledOption = "_disabledOption_1p96c_229";
23796
23865
  const styles$M = {
23797
23866
  themeVars: themeVars$w,
23798
23867
  command,
@@ -23810,7 +23879,7 @@ const styles$M = {
23810
23879
  action,
23811
23880
  autoCompleteEmpty,
23812
23881
  commandList,
23813
- "fade-in": "_fade-in_57zg7_1",
23882
+ "fade-in": "_fade-in_1p96c_1",
23814
23883
  autoCompleteOption,
23815
23884
  highlighted,
23816
23885
  disabledOption
@@ -24425,16 +24494,16 @@ function AutoCompleteOption(option) {
24425
24494
  );
24426
24495
  }
24427
24496
  const themeVars$v = `'{"Input:borderRadius-Slider--default": "var(--xmlui-borderRadius-Slider--default)", "Input:borderColor-Slider--default": "var(--xmlui-borderColor-Slider--default)", "Input:borderWidth-Slider--default": "var(--xmlui-borderWidth-Slider--default)", "Input:borderStyle-Slider--default": "var(--xmlui-borderStyle-Slider--default)", "Input:boxShadow-Slider--default": "var(--xmlui-boxShadow-Slider--default)", "Input:borderColor-Slider--default--hover": "var(--xmlui-borderColor-Slider--default--hover)", "Input:boxShadow-Slider--default--hover": "var(--xmlui-boxShadow-Slider--default--hover)", "Input:borderColor-Slider--default--focus": "var(--xmlui-borderColor-Slider--default--focus)", "Input:boxShadow-Slider--default--focus": "var(--xmlui-boxShadow-Slider--default--focus)", "Input:borderRadius-Slider--error": "var(--xmlui-borderRadius-Slider--error)", "Input:borderColor-Slider--error": "var(--xmlui-borderColor-Slider--error)", "Input:borderWidth-Slider--error": "var(--xmlui-borderWidth-Slider--error)", "Input:borderStyle-Slider--error": "var(--xmlui-borderStyle-Slider--error)", "Input:boxShadow-Slider--error": "var(--xmlui-boxShadow-Slider--error)", "Input:borderColor-Slider--error--hover": "var(--xmlui-borderColor-Slider--error--hover)", "Input:boxShadow-Slider--error--hover": "var(--xmlui-boxShadow-Slider--error--hover)", "Input:borderColor-Slider--error--focus": "var(--xmlui-borderColor-Slider--error--focus)", "Input:boxShadow-Slider--error--focus": "var(--xmlui-boxShadow-Slider--error--focus)", "Input:borderRadius-Slider--warning": "var(--xmlui-borderRadius-Slider--warning)", "Input:borderColor-Slider--warning": "var(--xmlui-borderColor-Slider--warning)", "Input:borderWidth-Slider--warning": "var(--xmlui-borderWidth-Slider--warning)", "Input:borderStyle-Slider--warning": "var(--xmlui-borderStyle-Slider--warning)", "Input:boxShadow-Slider--warning": "var(--xmlui-boxShadow-Slider--warning)", "Input:borderColor-Slider--warning--hover": "var(--xmlui-borderColor-Slider--warning--hover)", "Input:boxShadow-Slider--warning--hover": "var(--xmlui-boxShadow-Slider--warning--hover)", "Input:borderColor-Slider--warning--focus": "var(--xmlui-borderColor-Slider--warning--focus)", "Input:boxShadow-Slider--warning--focus": "var(--xmlui-boxShadow-Slider--warning--focus)", "Input:borderRadius-Slider--success": "var(--xmlui-borderRadius-Slider--success)", "Input:borderColor-Slider--success": "var(--xmlui-borderColor-Slider--success)", "Input:borderWidth-Slider--success": "var(--xmlui-borderWidth-Slider--success)", "Input:borderStyle-Slider--success": "var(--xmlui-borderStyle-Slider--success)", "Input:boxShadow-Slider--success": "var(--xmlui-boxShadow-Slider--success)", "Input:borderColor-Slider--success--hover": "var(--xmlui-borderColor-Slider--success--hover)", "Input:boxShadow-Slider--success--hover": "var(--xmlui-boxShadow-Slider--success--hover)", "Input:borderColor-Slider--success--focus": "var(--xmlui-borderColor-Slider--success--focus)", "Input:boxShadow-Slider--success--focus": "var(--xmlui-boxShadow-Slider--success--focus)", "Input:backgroundColor-track-Slider": "var(--xmlui-backgroundColor-track-Slider)", "Input:backgroundColor-track-Slider--disabled": "var(--xmlui-backgroundColor-track-Slider--disabled)", "Input:backgroundColor-range-Slider": "var(--xmlui-backgroundColor-range-Slider)", "Input:backgroundColor-range-Slider--disabled": "var(--xmlui-backgroundColor-range-Slider--disabled)", "Input:borderWidth-thumb-Slider": "var(--xmlui-borderWidth-thumb-Slider)", "Input:borderStyle-thumb-Slider": "var(--xmlui-borderStyle-thumb-Slider)", "Input:borderColor-thumb-Slider": "var(--xmlui-borderColor-thumb-Slider)", "Input:backgroundColor-thumb-Slider": "var(--xmlui-backgroundColor-thumb-Slider)", "Input:boxShadow-thumb-Slider": "var(--xmlui-boxShadow-thumb-Slider)", "Input:backgroundColor-thumb-Slider--focus": "var(--xmlui-backgroundColor-thumb-Slider--focus)", "Input:boxShadow-thumb-Slider--focus": "var(--xmlui-boxShadow-thumb-Slider--focus)", "Input:backgroundColor-thumb-Slider--hover": "var(--xmlui-backgroundColor-thumb-Slider--hover)", "Input:boxShadow-thumb-Slider--hover": "var(--xmlui-boxShadow-thumb-Slider--hover)", "Input:backgroundColor-thumb-Slider--active": "var(--xmlui-backgroundColor-thumb-Slider--active)", "Input:boxShadow-thumb-Slider--active": "var(--xmlui-boxShadow-thumb-Slider--active)"}'`;
24428
- const sliderContainer = "_sliderContainer_1qgjj_14";
24429
- const sliderRoot = "_sliderRoot_1qgjj_19";
24430
- const sliderTrack = "_sliderTrack_1qgjj_28";
24431
- const error$4 = "_error_1qgjj_50";
24432
- const warning$5 = "_warning_1qgjj_65";
24433
- const valid$4 = "_valid_1qgjj_80";
24434
- const disabled$4 = "_disabled_1qgjj_95";
24435
- const sliderRange = "_sliderRange_1qgjj_101";
24436
- const sliderThumb = "_sliderThumb_1qgjj_110";
24437
- const readOnly$2 = "_readOnly_1qgjj_144";
24497
+ const sliderContainer = "_sliderContainer_1cg26_14";
24498
+ const sliderRoot = "_sliderRoot_1cg26_19";
24499
+ const sliderTrack = "_sliderTrack_1cg26_28";
24500
+ const error$4 = "_error_1cg26_50";
24501
+ const warning$5 = "_warning_1cg26_65";
24502
+ const valid$4 = "_valid_1cg26_80";
24503
+ const disabled$4 = "_disabled_1cg26_95";
24504
+ const sliderRange = "_sliderRange_1cg26_101";
24505
+ const sliderThumb = "_sliderThumb_1cg26_110";
24506
+ const readOnly$2 = "_readOnly_1cg26_144";
24438
24507
  const styles$L = {
24439
24508
  themeVars: themeVars$v,
24440
24509
  sliderContainer,
@@ -24449,44 +24518,44 @@ const styles$L = {
24449
24518
  readOnly: readOnly$2
24450
24519
  };
24451
24520
  const themeVars$u = `'{"padding-Tooltip": "var(--xmlui-padding-Tooltip)", "paddingHorizontal-Tooltip": "var(--xmlui-paddingHorizontal-Tooltip, var(--xmlui-padding-Tooltip))", "paddingVertical-Tooltip": "var(--xmlui-paddingVertical-Tooltip, var(--xmlui-padding-Tooltip))", "paddingLeft-Tooltip": "var(--xmlui-paddingLeft-Tooltip, var(--xmlui-paddingHorizontal-Tooltip, var(--xmlui-padding-Tooltip)))", "paddingRight-Tooltip": "var(--xmlui-paddingRight-Tooltip, var(--xmlui-paddingHorizontal-Tooltip, var(--xmlui-padding-Tooltip)))", "paddingTop-Tooltip": "var(--xmlui-paddingTop-Tooltip, var(--xmlui-paddingVertical-Tooltip, var(--xmlui-padding-Tooltip)))", "paddingBottom-Tooltip": "var(--xmlui-paddingBottom-Tooltip, var(--xmlui-paddingVertical-Tooltip, var(--xmlui-padding-Tooltip)))", "border-Tooltip": "var(--xmlui-border-Tooltip)", "borderHorizontal-Tooltip": "var(--xmlui-borderHorizontal-Tooltip, var(--xmlui-border-Tooltip))", "borderVertical-Tooltip": "var(--xmlui-borderVertical-Tooltip, var(--xmlui-border-Tooltip))", "borderLeft-Tooltip": "var(--xmlui-borderLeft-Tooltip, var(--xmlui-borderHorizontal-Tooltip, var(--xmlui-border-Tooltip)))", "borderRight-Tooltip": "var(--xmlui-borderRight-Tooltip, var(--xmlui-borderHorizontal-Tooltip, var(--xmlui-border-Tooltip)))", "borderTop-Tooltip": "var(--xmlui-borderTop-Tooltip, var(--xmlui-borderVertical-Tooltip, var(--xmlui-border-Tooltip)))", "borderBottom-Tooltip": "var(--xmlui-borderBottom-Tooltip, var(--xmlui-borderVertical-Tooltip, var(--xmlui-border-Tooltip)))", "borderWidth-Tooltip": "var(--xmlui-borderWidth-Tooltip)", "borderHorizontalWidth-Tooltip": "var(--xmlui-borderHorizontalWidth-Tooltip, var(--xmlui-borderWidth-Tooltip))", "borderLeftWidth-Tooltip": "var(--xmlui-borderLeftWidth-Tooltip, var(--xmlui-borderHorizontalWidth-Tooltip, var(--xmlui-borderWidth-Tooltip)))", "borderRightWidth-Tooltip": "var(--xmlui-borderRightWidth-Tooltip, var(--xmlui-borderHorizontalWidth-Tooltip, var(--xmlui-borderWidth-Tooltip)))", "borderVerticalWidth-Tooltip": "var(--xmlui-borderVerticalWidth-Tooltip, var(--xmlui-borderWidth-Tooltip))", "borderTopWidth-Tooltip": "var(--xmlui-borderTopWidth-Tooltip, var(--xmlui-borderVerticalWidth-Tooltip, var(--xmlui-borderWidth-Tooltip)))", "borderBottomWidth-Tooltip": "var(--xmlui-borderBottomWidth-Tooltip, var(--xmlui-borderVerticalWidth-Tooltip, var(--xmlui-borderWidth-Tooltip)))", "borderStyle-Tooltip": "var(--xmlui-borderStyle-Tooltip)", "borderHorizontalStyle-Tooltip": "var(--xmlui-borderHorizontalStyle-Tooltip, var(--xmlui-borderStyle-Tooltip))", "borderLeftStyle-Tooltip": "var(--xmlui-borderLeftStyle-Tooltip, var(--xmlui-borderHorizontalStyle-Tooltip, var(--xmlui-borderStyle-Tooltip)))", "borderRightStyle-Tooltip": "var(--xmlui-borderRightStyle-Tooltip, var(--xmlui-borderHorizontalStyle-Tooltip, var(--xmlui-borderStyle-Tooltip)))", "borderVerticalStyle-Tooltip": "var(--xmlui-borderVerticalStyle-Tooltip, var(--xmlui-borderStyle-Tooltip))", "borderTopStyle-Tooltip": "var(--xmlui-borderTopStyle-Tooltip, var(--xmlui-borderVerticalStyle-Tooltip, var(--xmlui-borderStyle-Tooltip)))", "borderBottomStyle-Tooltip": "var(--xmlui-borderBottomStyle-Tooltip, var(--xmlui-borderVerticalStyle-Tooltip, var(--xmlui-borderStyle-Tooltip)))", "borderColor-Tooltip": "var(--xmlui-borderColor-Tooltip)", "borderHorizontalColor-Tooltip": "var(--xmlui-borderHorizontalColor-Tooltip, var(--xmlui-borderColor-Tooltip))", "borderLeftColor-Tooltip": "var(--xmlui-borderLeftColor-Tooltip, var(--xmlui-borderHorizontalColor-Tooltip, var(--xmlui-borderColor-Tooltip)))", "borderRightColor-Tooltip": "var(--xmlui-borderRightColor-Tooltip, var(--xmlui-borderHorizontalColor-Tooltip, var(--xmlui-borderColor-Tooltip)))", "borderVerticalColor-Tooltip": "var(--xmlui-borderVerticalColor-Tooltip, var(--xmlui-borderColor-Tooltip))", "borderTopColor-Tooltip": "var(--xmlui-borderTopColor-Tooltip, var(--xmlui-borderVerticalColor-Tooltip, var(--xmlui-borderColor-Tooltip)))", "borderBottomColor-Tooltip": "var(--xmlui-borderBottomColor-Tooltip, var(--xmlui-borderVerticalColor-Tooltip, var(--xmlui-borderColor-Tooltip)))", "borderStartStartRadius-Tooltip": "var(--xmlui-borderStartStartRadius-Tooltip, var(--xmlui-borderRadius-Tooltip))", "borderStartEndRadius-Tooltip": "var(--xmlui-borderStartEndRadius-Tooltip, var(--xmlui-borderRadius-Tooltip))", "borderEndStartRadius-Tooltip": "var(--xmlui-borderEndStartRadius-Tooltip, var(--xmlui-borderRadius-Tooltip))", "borderEndEndRadius-Tooltip": "var(--xmlui-borderEndEndRadius-Tooltip, var(--xmlui-borderRadius-Tooltip))", "backgroundColor-Tooltip": "var(--xmlui-backgroundColor-Tooltip)", "textColor-Tooltip": "var(--xmlui-textColor-Tooltip)", "fontSize-Tooltip": "var(--xmlui-fontSize-Tooltip)", "lineHeight-Tooltip": "var(--xmlui-lineHeight-Tooltip)", "boxShadow-Tooltip": "var(--xmlui-boxShadow-Tooltip)", "fill-arrow-Tooltip": "var(--xmlui-fill-arrow-Tooltip)", "stroke-arrow-Tooltip": "var(--xmlui-stroke-arrow-Tooltip)", "strokeWidth-arrow-Tooltip": "var(--xmlui-strokeWidth-arrow-Tooltip)", "animationDuration-Tooltip": "var(--xmlui-animationDuration-Tooltip)", "animation-Tooltip": "var(--xmlui-animation-Tooltip)"}'`;
24452
- const content$5 = "_content_11on6_25";
24453
- const arrow = "_arrow_11on6_79";
24521
+ const content$5 = "_content_1jcd4_25";
24522
+ const arrow = "_arrow_1jcd4_79";
24454
24523
  const styles$K = {
24455
24524
  themeVars: themeVars$u,
24456
24525
  content: content$5,
24457
24526
  arrow
24458
24527
  };
24459
- const themeVars$t = `'{"textColor-Text": "var(--xmlui-textColor-Text)", "fontFamily-Text": "var(--xmlui-fontFamily-Text)", "fontSize-Text": "var(--xmlui-fontSize-Text)", "fontStyle-Text": "var(--xmlui-fontStyle-Text)", "fontVariant-Text": "var(--xmlui-fontVariant-Text)", "fontWeight-Text": "var(--xmlui-fontWeight-Text)", "fontStretch-Text": "var(--xmlui-fontStretch-Text)", "textDecorationLine-Text": "var(--xmlui-textDecorationLine-Text)", "textDecorationColor-Text": "var(--xmlui-textDecorationColor-Text)", "textDecorationStyle-Text": "var(--xmlui-textDecorationStyle-Text)", "textDecorationThickness-Text": "var(--xmlui-textDecorationThickness-Text)", "textUnderlineOffset-Text": "var(--xmlui-textUnderlineOffset-Text)", "lineHeight-Text": "var(--xmlui-lineHeight-Text)", "backgroundColor-Text": "var(--xmlui-backgroundColor-Text)", "textTransform-Text": "var(--xmlui-textTransform-Text)", "letterSpacing-Text": "var(--xmlui-letterSpacing-Text)", "wordSpacing-Text": "var(--xmlui-wordSpacing-Text)", "textShadow-Text": "var(--xmlui-textShadow-Text)", "textIndent-Text": "var(--xmlui-textIndent-Text)", "textAlign-Text": "var(--xmlui-textAlign-Text)", "textAlignLast-Text": "var(--xmlui-textAlignLast-Text)", "wordBreak-Text": "var(--xmlui-wordBreak-Text)", "wordWrap-Text": "var(--xmlui-wordWrap-Text)", "direction-Text": "var(--xmlui-direction-Text)", "writingMode-Text": "var(--xmlui-writingMode-Text)", "lineBreak-Text": "var(--xmlui-lineBreak-Text)", "paddingTop-Markdown": "var(--xmlui-paddingTop-Markdown)", "paddingBottom-Markdown": "var(--xmlui-paddingBottom-Markdown)", "backgroundColor-Markdown": "var(--xmlui-backgroundColor-Markdown)", "padding-Blockquote": "var(--xmlui-padding-Blockquote)", "paddingHorizontal-Blockquote": "var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote))", "paddingVertical-Blockquote": "var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote))", "paddingLeft-Blockquote": "var(--xmlui-paddingLeft-Blockquote)", "paddingRight-Blockquote": "var(--xmlui-paddingRight-Blockquote, var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote)))", "paddingTop-Blockquote": "var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)))", "paddingBottom-Blockquote": "var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)))", "border-Blockquote": "var(--xmlui-border-Blockquote)", "borderHorizontal-Blockquote": "var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote))", "borderVertical-Blockquote": "var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote))", "borderLeft-Blockquote": "var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)))", "borderRight-Blockquote": "var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)))", "borderTop-Blockquote": "var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)))", "borderBottom-Blockquote": "var(--xmlui-borderBottom-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)))", "borderWidth-Blockquote": "var(--xmlui-borderWidth-Blockquote)", "borderHorizontalWidth-Blockquote": "var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote))", "borderLeftWidth-Blockquote": "var(--xmlui-borderLeftWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderRightWidth-Blockquote": "var(--xmlui-borderRightWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderVerticalWidth-Blockquote": "var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote))", "borderTopWidth-Blockquote": "var(--xmlui-borderTopWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderBottomWidth-Blockquote": "var(--xmlui-borderBottomWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderStyle-Blockquote": "var(--xmlui-borderStyle-Blockquote)", "borderHorizontalStyle-Blockquote": "var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote))", "borderLeftStyle-Blockquote": "var(--xmlui-borderLeftStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderRightStyle-Blockquote": "var(--xmlui-borderRightStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderVerticalStyle-Blockquote": "var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote))", "borderTopStyle-Blockquote": "var(--xmlui-borderTopStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderBottomStyle-Blockquote": "var(--xmlui-borderBottomStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderColor-Blockquote": "var(--xmlui-borderColor-Blockquote)", "borderHorizontalColor-Blockquote": "var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote))", "borderLeftColor-Blockquote": "var(--xmlui-borderLeftColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderRightColor-Blockquote": "var(--xmlui-borderRightColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderVerticalColor-Blockquote": "var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote))", "borderTopColor-Blockquote": "var(--xmlui-borderTopColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderBottomColor-Blockquote": "var(--xmlui-borderBottomColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderStartStartRadius-Blockquote": "var(--xmlui-borderStartStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderStartEndRadius-Blockquote": "var(--xmlui-borderStartEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderEndStartRadius-Blockquote": "var(--xmlui-borderEndStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderEndEndRadius-Blockquote": "var(--xmlui-borderEndEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "color-accent-Blockquote": "var(--xmlui-color-accent-Blockquote)", "width-accent-Blockquote": "var(--xmlui-width-accent-Blockquote)", "backgroundColor-Blockquote": "var(--xmlui-backgroundColor-Blockquote)", "borderRadius-Blockquote": "var(--xmlui-borderRadius-Blockquote)", "marginTop-Blockquote": "var(--xmlui-marginTop-Blockquote)", "marginBottom-Blockquote": "var(--xmlui-marginBottom-Blockquote)", "padding-Admonition": "var(--xmlui-padding-Admonition)", "paddingHorizontal-Admonition": "var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition))", "paddingVertical-Admonition": "var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition))", "paddingLeft-Admonition": "var(--xmlui-paddingLeft-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)))", "paddingRight-Admonition": "var(--xmlui-paddingRight-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)))", "paddingTop-Admonition": "var(--xmlui-paddingTop-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)))", "paddingBottom-Admonition": "var(--xmlui-paddingBottom-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)))", "border-Admonition": "var(--xmlui-border-Admonition)", "borderHorizontal-Admonition": "var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition))", "borderVertical-Admonition": "var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition))", "borderLeft-Admonition": "var(--xmlui-borderLeft-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)))", "borderRight-Admonition": "var(--xmlui-borderRight-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)))", "borderTop-Admonition": "var(--xmlui-borderTop-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)))", "borderBottom-Admonition": "var(--xmlui-borderBottom-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)))", "borderWidth-Admonition": "var(--xmlui-borderWidth-Admonition)", "borderHorizontalWidth-Admonition": "var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition))", "borderLeftWidth-Admonition": "var(--xmlui-borderLeftWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderRightWidth-Admonition": "var(--xmlui-borderRightWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderVerticalWidth-Admonition": "var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition))", "borderTopWidth-Admonition": "var(--xmlui-borderTopWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderBottomWidth-Admonition": "var(--xmlui-borderBottomWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderStyle-Admonition": "var(--xmlui-borderStyle-Admonition)", "borderHorizontalStyle-Admonition": "var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition))", "borderLeftStyle-Admonition": "var(--xmlui-borderLeftStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderRightStyle-Admonition": "var(--xmlui-borderRightStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderVerticalStyle-Admonition": "var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition))", "borderTopStyle-Admonition": "var(--xmlui-borderTopStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderBottomStyle-Admonition": "var(--xmlui-borderBottomStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderColor-Admonition": "var(--xmlui-borderColor-Admonition)", "borderHorizontalColor-Admonition": "var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition))", "borderLeftColor-Admonition": "var(--xmlui-borderLeftColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderRightColor-Admonition": "var(--xmlui-borderRightColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderVerticalColor-Admonition": "var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition))", "borderTopColor-Admonition": "var(--xmlui-borderTopColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderBottomColor-Admonition": "var(--xmlui-borderBottomColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderStartStartRadius-Admonition": "var(--xmlui-borderStartStartRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderStartEndRadius-Admonition": "var(--xmlui-borderStartEndRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderEndStartRadius-Admonition": "var(--xmlui-borderEndStartRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderEndEndRadius-Admonition": "var(--xmlui-borderEndEndRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "backgroundColor-Admonition": "var(--xmlui-backgroundColor-Admonition)", "borderRadius-Admonition": "var(--xmlui-borderRadius-Admonition)", "size-icon-Admonition": "var(--xmlui-size-icon-Admonition)", "marginTop-Admonition": "var(--xmlui-marginTop-Admonition)", "marginBottom-Admonition": "var(--xmlui-marginBottom-Admonition)", "marginLeft-Admonition-content": "var(--xmlui-marginLeft-Admonition-content)", "marginTop-HtmlVideo": "var(--xmlui-marginTop-HtmlVideo)", "marginBottom-HtmlVideo": "var(--xmlui-marginBottom-HtmlVideo)", "marginTop-Text-markdown": "var(--xmlui-marginTop-Text-markdown)", "marginBottom-Text-markdown": "var(--xmlui-marginBottom-Text-markdown)", "marginLeft-Text-markdown": "var(--xmlui-marginLeft-Text-markdown)", "marginRight-Text-markdown": "var(--xmlui-marginRight-Text-markdown)", "marginTop-H1-markdown": "var(--xmlui-marginTop-H1-markdown)", "marginBottom-H1-markdown": "var(--xmlui-marginBottom-H1-markdown)", "fontSize-H1-markdown": "var(--xmlui-fontSize-H1-markdown)", "marginTop-H2-markdown": "var(--xmlui-marginTop-H2-markdown)", "marginBottom-H2-markdown": "var(--xmlui-marginBottom-H2-markdown)", "marginTop-H3-markdown": "var(--xmlui-marginTop-H3-markdown)", "marginBottom-H3-markdown": "var(--xmlui-marginBottom-H3-markdown)", "marginTop-H4-markdown": "var(--xmlui-marginTop-H4-markdown)", "marginBottom-H4-markdown": "var(--xmlui-marginBottom-H4-markdown)", "marginTop-H5-markdown": "var(--xmlui-marginTop-H5-markdown)", "marginBottom-H5-markdown": "var(--xmlui-marginBottom-H5-markdown)", "marginTop-H6-markdown": "var(--xmlui-marginTop-H6-markdown)", "marginBottom-H6-markdown": "var(--xmlui-marginBottom-H6-markdown)", "marginTop-Image-markdown": "var(--xmlui-marginTop-Image-markdown)", "marginBottom-Image-markdown": "var(--xmlui-marginBottom-Image-markdown)", "marginLeft-Image-markdown": "var(--xmlui-marginLeft-Image-markdown)", "marginRight-Image-markdown": "var(--xmlui-marginRight-Image-markdown)", "backgroundColor-Admonition-info": "var(--xmlui-backgroundColor-Admonition-info)", "borderColor-Admonition-info": "var(--xmlui-borderColor-Admonition-info)", "backgroundColor-Admonition-warning": "var(--xmlui-backgroundColor-Admonition-warning)", "borderColor-Admonition-warning": "var(--xmlui-borderColor-Admonition-warning)", "backgroundColor-Admonition-danger": "var(--xmlui-backgroundColor-Admonition-danger)", "borderColor-Admonition-danger": "var(--xmlui-borderColor-Admonition-danger)", "backgroundColor-Admonition-note": "var(--xmlui-backgroundColor-Admonition-note)", "borderColor-Admonition-note": "var(--xmlui-borderColor-Admonition-note)", "backgroundColor-Admonition-tip": "var(--xmlui-backgroundColor-Admonition-tip)", "borderColor-Admonition-tip": "var(--xmlui-borderColor-Admonition-tip)", "borderColor-HorizontalRule": "var(--xmlui-borderColor-HorizontalRule)", "borderStyle-HorizontalRule": "var(--xmlui-borderStyle-HorizontalRule)", "borderWidth-HorizontalRule": "var(--xmlui-borderWidth-HorizontalRule)", "textColor-HtmlTable": "var(--xmlui-textColor-HtmlTable)", "backgroundColor-HtmlTable": "var(--xmlui-backgroundColor-HtmlTable)", "fontFamily-HtmlTable": "var(--xmlui-fontFamily-HtmlTable)", "fontSize-HtmlTable": "var(--xmlui-fontSize-HtmlTable)", "fontWeight-HtmlTable": "var(--xmlui-fontWeight-HtmlTable)", "textTransform-HtmlTable": "var(--xmlui-textTransform-HtmlTable)", "marginTop-HtmlTable": "var(--xmlui-marginTop-HtmlTable)", "marginBottom-HtmlTable": "var(--xmlui-marginBottom-HtmlTable)", "width-HtmlTable": "var(--xmlui-width-HtmlTable)", "border-HtmlTable": "var(--xmlui-border-HtmlTable)", "borderHorizontal-HtmlTable": "var(--xmlui-borderHorizontal-HtmlTable, var(--xmlui-border-HtmlTable))", "borderVertical-HtmlTable": "var(--xmlui-borderVertical-HtmlTable, var(--xmlui-border-HtmlTable))", "borderLeft-HtmlTable": "var(--xmlui-borderLeft-HtmlTable, var(--xmlui-borderHorizontal-HtmlTable, var(--xmlui-border-HtmlTable)))", "borderRight-HtmlTable": "var(--xmlui-borderRight-HtmlTable, var(--xmlui-borderHorizontal-HtmlTable, var(--xmlui-border-HtmlTable)))", "borderTop-HtmlTable": "var(--xmlui-borderTop-HtmlTable, var(--xmlui-borderVertical-HtmlTable, var(--xmlui-border-HtmlTable)))", "borderBottom-HtmlTable": "var(--xmlui-borderBottom-HtmlTable, var(--xmlui-borderVertical-HtmlTable, var(--xmlui-border-HtmlTable)))", "borderWidth-HtmlTable": "var(--xmlui-borderWidth-HtmlTable)", "borderHorizontalWidth-HtmlTable": "var(--xmlui-borderHorizontalWidth-HtmlTable, var(--xmlui-borderWidth-HtmlTable))", "borderLeftWidth-HtmlTable": "var(--xmlui-borderLeftWidth-HtmlTable, var(--xmlui-borderHorizontalWidth-HtmlTable, var(--xmlui-borderWidth-HtmlTable)))", "borderRightWidth-HtmlTable": "var(--xmlui-borderRightWidth-HtmlTable, var(--xmlui-borderHorizontalWidth-HtmlTable, var(--xmlui-borderWidth-HtmlTable)))", "borderVerticalWidth-HtmlTable": "var(--xmlui-borderVerticalWidth-HtmlTable, var(--xmlui-borderWidth-HtmlTable))", "borderTopWidth-HtmlTable": "var(--xmlui-borderTopWidth-HtmlTable, var(--xmlui-borderVerticalWidth-HtmlTable, var(--xmlui-borderWidth-HtmlTable)))", "borderBottomWidth-HtmlTable": "var(--xmlui-borderBottomWidth-HtmlTable, var(--xmlui-borderVerticalWidth-HtmlTable, var(--xmlui-borderWidth-HtmlTable)))", "borderStyle-HtmlTable": "var(--xmlui-borderStyle-HtmlTable)", "borderHorizontalStyle-HtmlTable": "var(--xmlui-borderHorizontalStyle-HtmlTable, var(--xmlui-borderStyle-HtmlTable))", "borderLeftStyle-HtmlTable": "var(--xmlui-borderLeftStyle-HtmlTable, var(--xmlui-borderHorizontalStyle-HtmlTable, var(--xmlui-borderStyle-HtmlTable)))", "borderRightStyle-HtmlTable": "var(--xmlui-borderRightStyle-HtmlTable, var(--xmlui-borderHorizontalStyle-HtmlTable, var(--xmlui-borderStyle-HtmlTable)))", "borderVerticalStyle-HtmlTable": "var(--xmlui-borderVerticalStyle-HtmlTable, var(--xmlui-borderStyle-HtmlTable))", "borderTopStyle-HtmlTable": "var(--xmlui-borderTopStyle-HtmlTable, var(--xmlui-borderVerticalStyle-HtmlTable, var(--xmlui-borderStyle-HtmlTable)))", "borderBottomStyle-HtmlTable": "var(--xmlui-borderBottomStyle-HtmlTable, var(--xmlui-borderVerticalStyle-HtmlTable, var(--xmlui-borderStyle-HtmlTable)))", "borderColor-HtmlTable": "var(--xmlui-borderColor-HtmlTable)", "borderHorizontalColor-HtmlTable": "var(--xmlui-borderHorizontalColor-HtmlTable, var(--xmlui-borderColor-HtmlTable))", "borderLeftColor-HtmlTable": "var(--xmlui-borderLeftColor-HtmlTable, var(--xmlui-borderHorizontalColor-HtmlTable, var(--xmlui-borderColor-HtmlTable)))", "borderRightColor-HtmlTable": "var(--xmlui-borderRightColor-HtmlTable, var(--xmlui-borderHorizontalColor-HtmlTable, var(--xmlui-borderColor-HtmlTable)))", "borderVerticalColor-HtmlTable": "var(--xmlui-borderVerticalColor-HtmlTable, var(--xmlui-borderColor-HtmlTable))", "borderTopColor-HtmlTable": "var(--xmlui-borderTopColor-HtmlTable, var(--xmlui-borderVerticalColor-HtmlTable, var(--xmlui-borderColor-HtmlTable)))", "borderBottomColor-HtmlTable": "var(--xmlui-borderBottomColor-HtmlTable, var(--xmlui-borderVerticalColor-HtmlTable, var(--xmlui-borderColor-HtmlTable)))", "borderStartStartRadius-HtmlTable": "var(--xmlui-borderStartStartRadius-HtmlTable, var(--xmlui-borderRadius-HtmlTable))", "borderStartEndRadius-HtmlTable": "var(--xmlui-borderStartEndRadius-HtmlTable, var(--xmlui-borderRadius-HtmlTable))", "borderEndStartRadius-HtmlTable": "var(--xmlui-borderEndStartRadius-HtmlTable, var(--xmlui-borderRadius-HtmlTable))", "borderEndEndRadius-HtmlTable": "var(--xmlui-borderEndEndRadius-HtmlTable, var(--xmlui-borderRadius-HtmlTable))", "padding-HtmlTable": "var(--xmlui-padding-HtmlTable)", "paddingHorizontal-HtmlTable": "var(--xmlui-paddingHorizontal-HtmlTable, var(--xmlui-padding-HtmlTable))", "paddingVertical-HtmlTable": "var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable))", "paddingLeft-HtmlTable": "var(--xmlui-paddingLeft-HtmlTable, var(--xmlui-paddingHorizontal-HtmlTable, var(--xmlui-padding-HtmlTable)))", "paddingRight-HtmlTable": "var(--xmlui-paddingRight-HtmlTable, var(--xmlui-paddingHorizontal-HtmlTable, var(--xmlui-padding-HtmlTable)))", "paddingTop-HtmlTable": "var(--xmlui-paddingTop-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)))", "paddingBottom-HtmlTable": "var(--xmlui-paddingBottom-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)))", "backgroundColor-HtmlThead": "var(--xmlui-backgroundColor-HtmlThead)", "textColor-HtmlThead": "var(--xmlui-textColor-HtmlThead)", "fontWeight-HtmlThead": "var(--xmlui-fontWeight-HtmlThead)", "fontSize-HtmlThead": "var(--xmlui-fontSize-HtmlThead)", "textTransform-HtmlThead": "var(--xmlui-textTransform-HtmlThead)", "border-HtmlThead": "var(--xmlui-border-HtmlThead)", "borderHorizontal-HtmlThead": "var(--xmlui-borderHorizontal-HtmlThead, var(--xmlui-border-HtmlThead))", "borderVertical-HtmlThead": "var(--xmlui-borderVertical-HtmlThead, var(--xmlui-border-HtmlThead))", "borderLeft-HtmlThead": "var(--xmlui-borderLeft-HtmlThead, var(--xmlui-borderHorizontal-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderRight-HtmlThead": "var(--xmlui-borderRight-HtmlThead, var(--xmlui-borderHorizontal-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderTop-HtmlThead": "var(--xmlui-borderTop-HtmlThead, var(--xmlui-borderVertical-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderBottom-HtmlThead": "var(--xmlui-borderBottom-HtmlThead, var(--xmlui-borderVertical-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderWidth-HtmlThead": "var(--xmlui-borderWidth-HtmlThead)", "borderHorizontalWidth-HtmlThead": "var(--xmlui-borderHorizontalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead))", "borderLeftWidth-HtmlThead": "var(--xmlui-borderLeftWidth-HtmlThead, var(--xmlui-borderHorizontalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderRightWidth-HtmlThead": "var(--xmlui-borderRightWidth-HtmlThead, var(--xmlui-borderHorizontalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderVerticalWidth-HtmlThead": "var(--xmlui-borderVerticalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead))", "borderTopWidth-HtmlThead": "var(--xmlui-borderTopWidth-HtmlThead, var(--xmlui-borderVerticalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderBottomWidth-HtmlThead": "var(--xmlui-borderBottomWidth-HtmlThead, var(--xmlui-borderVerticalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderStyle-HtmlThead": "var(--xmlui-borderStyle-HtmlThead)", "borderHorizontalStyle-HtmlThead": "var(--xmlui-borderHorizontalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead))", "borderLeftStyle-HtmlThead": "var(--xmlui-borderLeftStyle-HtmlThead, var(--xmlui-borderHorizontalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderRightStyle-HtmlThead": "var(--xmlui-borderRightStyle-HtmlThead, var(--xmlui-borderHorizontalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderVerticalStyle-HtmlThead": "var(--xmlui-borderVerticalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead))", "borderTopStyle-HtmlThead": "var(--xmlui-borderTopStyle-HtmlThead, var(--xmlui-borderVerticalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderBottomStyle-HtmlThead": "var(--xmlui-borderBottomStyle-HtmlThead, var(--xmlui-borderVerticalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderColor-HtmlThead": "var(--xmlui-borderColor-HtmlThead)", "borderHorizontalColor-HtmlThead": "var(--xmlui-borderHorizontalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead))", "borderLeftColor-HtmlThead": "var(--xmlui-borderLeftColor-HtmlThead, var(--xmlui-borderHorizontalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderRightColor-HtmlThead": "var(--xmlui-borderRightColor-HtmlThead, var(--xmlui-borderHorizontalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderVerticalColor-HtmlThead": "var(--xmlui-borderVerticalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead))", "borderTopColor-HtmlThead": "var(--xmlui-borderTopColor-HtmlThead, var(--xmlui-borderVerticalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderBottomColor-HtmlThead": "var(--xmlui-borderBottomColor-HtmlThead, var(--xmlui-borderVerticalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderStartStartRadius-HtmlThead": "var(--xmlui-borderStartStartRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "borderStartEndRadius-HtmlThead": "var(--xmlui-borderStartEndRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "borderEndStartRadius-HtmlThead": "var(--xmlui-borderEndStartRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "borderEndEndRadius-HtmlThead": "var(--xmlui-borderEndEndRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "padding-HtmlThead": "var(--xmlui-padding-HtmlThead)", "paddingHorizontal-HtmlThead": "var(--xmlui-paddingHorizontal-HtmlThead, var(--xmlui-padding-HtmlThead))", "paddingVertical-HtmlThead": "var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead))", "paddingLeft-HtmlThead": "var(--xmlui-paddingLeft-HtmlThead, var(--xmlui-paddingHorizontal-HtmlThead, var(--xmlui-padding-HtmlThead)))", "paddingRight-HtmlThead": "var(--xmlui-paddingRight-HtmlThead, var(--xmlui-paddingHorizontal-HtmlThead, var(--xmlui-padding-HtmlThead)))", "paddingTop-HtmlThead": "var(--xmlui-paddingTop-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)))", "paddingBottom-HtmlThead": "var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)))", "backgroundColor-HtmlTbody": "var(--xmlui-backgroundColor-HtmlTbody)", "textColor-HtmlTbody": "var(--xmlui-textColor-HtmlTbody)", "textAlign-HtmlTbody": "var(--xmlui-textAlign-HtmlTbody)", "verticalAlignment-HtmlTbody": "var(--xmlui-verticalAlignment-HtmlTbody)", "textTransform-HtmlTbody": "var(--xmlui-textTransform-HtmlTbody)", "backgroundColor-HtmlTfoot": "var(--xmlui-backgroundColor-HtmlTfoot)", "textColor-HtmlTfoot": "var(--xmlui-textColor-HtmlTfoot)", "backgroundColor-HtmlTh": "var(--xmlui-backgroundColor-HtmlTh)", "textColor-HtmlTh": "var(--xmlui-textColor-HtmlTh)", "fontWeight-HtmlTh": "var(--xmlui-fontWeight-HtmlTh)", "fontSize-HtmlTh": "var(--xmlui-fontSize-HtmlTh)", "backgroundColor-HtmlTh--hover": "var(--xmlui-backgroundColor-HtmlTh--hover)", "border-HtmlTh": "var(--xmlui-border-HtmlTh)", "borderHorizontal-HtmlTh": "var(--xmlui-borderHorizontal-HtmlTh, var(--xmlui-border-HtmlTh))", "borderVertical-HtmlTh": "var(--xmlui-borderVertical-HtmlTh, var(--xmlui-border-HtmlTh))", "borderLeft-HtmlTh": "var(--xmlui-borderLeft-HtmlTh, var(--xmlui-borderHorizontal-HtmlTh, var(--xmlui-border-HtmlTh)))", "borderRight-HtmlTh": "var(--xmlui-borderRight-HtmlTh, var(--xmlui-borderHorizontal-HtmlTh, var(--xmlui-border-HtmlTh)))", "borderTop-HtmlTh": "var(--xmlui-borderTop-HtmlTh, var(--xmlui-borderVertical-HtmlTh, var(--xmlui-border-HtmlTh)))", "borderBottom-HtmlTh": "var(--xmlui-borderBottom-HtmlTh, var(--xmlui-borderVertical-HtmlTh, var(--xmlui-border-HtmlTh)))", "borderWidth-HtmlTh": "var(--xmlui-borderWidth-HtmlTh)", "borderHorizontalWidth-HtmlTh": "var(--xmlui-borderHorizontalWidth-HtmlTh, var(--xmlui-borderWidth-HtmlTh))", "borderLeftWidth-HtmlTh": "var(--xmlui-borderLeftWidth-HtmlTh, var(--xmlui-borderHorizontalWidth-HtmlTh, var(--xmlui-borderWidth-HtmlTh)))", "borderRightWidth-HtmlTh": "var(--xmlui-borderRightWidth-HtmlTh, var(--xmlui-borderHorizontalWidth-HtmlTh, var(--xmlui-borderWidth-HtmlTh)))", "borderVerticalWidth-HtmlTh": "var(--xmlui-borderVerticalWidth-HtmlTh, var(--xmlui-borderWidth-HtmlTh))", "borderTopWidth-HtmlTh": "var(--xmlui-borderTopWidth-HtmlTh, var(--xmlui-borderVerticalWidth-HtmlTh, var(--xmlui-borderWidth-HtmlTh)))", "borderBottomWidth-HtmlTh": "var(--xmlui-borderBottomWidth-HtmlTh, var(--xmlui-borderVerticalWidth-HtmlTh, var(--xmlui-borderWidth-HtmlTh)))", "borderStyle-HtmlTh": "var(--xmlui-borderStyle-HtmlTh)", "borderHorizontalStyle-HtmlTh": "var(--xmlui-borderHorizontalStyle-HtmlTh, var(--xmlui-borderStyle-HtmlTh))", "borderLeftStyle-HtmlTh": "var(--xmlui-borderLeftStyle-HtmlTh, var(--xmlui-borderHorizontalStyle-HtmlTh, var(--xmlui-borderStyle-HtmlTh)))", "borderRightStyle-HtmlTh": "var(--xmlui-borderRightStyle-HtmlTh, var(--xmlui-borderHorizontalStyle-HtmlTh, var(--xmlui-borderStyle-HtmlTh)))", "borderVerticalStyle-HtmlTh": "var(--xmlui-borderVerticalStyle-HtmlTh, var(--xmlui-borderStyle-HtmlTh))", "borderTopStyle-HtmlTh": "var(--xmlui-borderTopStyle-HtmlTh, var(--xmlui-borderVerticalStyle-HtmlTh, var(--xmlui-borderStyle-HtmlTh)))", "borderBottomStyle-HtmlTh": "var(--xmlui-borderBottomStyle-HtmlTh, var(--xmlui-borderVerticalStyle-HtmlTh, var(--xmlui-borderStyle-HtmlTh)))", "borderColor-HtmlTh": "var(--xmlui-borderColor-HtmlTh)", "borderHorizontalColor-HtmlTh": "var(--xmlui-borderHorizontalColor-HtmlTh, var(--xmlui-borderColor-HtmlTh))", "borderLeftColor-HtmlTh": "var(--xmlui-borderLeftColor-HtmlTh, var(--xmlui-borderHorizontalColor-HtmlTh, var(--xmlui-borderColor-HtmlTh)))", "borderRightColor-HtmlTh": "var(--xmlui-borderRightColor-HtmlTh, var(--xmlui-borderHorizontalColor-HtmlTh, var(--xmlui-borderColor-HtmlTh)))", "borderVerticalColor-HtmlTh": "var(--xmlui-borderVerticalColor-HtmlTh, var(--xmlui-borderColor-HtmlTh))", "borderTopColor-HtmlTh": "var(--xmlui-borderTopColor-HtmlTh, var(--xmlui-borderVerticalColor-HtmlTh, var(--xmlui-borderColor-HtmlTh)))", "borderBottomColor-HtmlTh": "var(--xmlui-borderBottomColor-HtmlTh, var(--xmlui-borderVerticalColor-HtmlTh, var(--xmlui-borderColor-HtmlTh)))", "borderStartStartRadius-HtmlTh": "var(--xmlui-borderStartStartRadius-HtmlTh, var(--xmlui-borderRadius-HtmlTh))", "borderStartEndRadius-HtmlTh": "var(--xmlui-borderStartEndRadius-HtmlTh, var(--xmlui-borderRadius-HtmlTh))", "borderEndStartRadius-HtmlTh": "var(--xmlui-borderEndStartRadius-HtmlTh, var(--xmlui-borderRadius-HtmlTh))", "borderEndEndRadius-HtmlTh": "var(--xmlui-borderEndEndRadius-HtmlTh, var(--xmlui-borderRadius-HtmlTh))", "padding-HtmlTh": "var(--xmlui-padding-HtmlTh)", "paddingHorizontal-HtmlTh": "var(--xmlui-paddingHorizontal-HtmlTh, var(--xmlui-padding-HtmlTh))", "paddingVertical-HtmlTh": "var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh))", "paddingLeft-HtmlTh": "var(--xmlui-paddingLeft-HtmlTh, var(--xmlui-paddingHorizontal-HtmlTh, var(--xmlui-padding-HtmlTh)))", "paddingRight-HtmlTh": "var(--xmlui-paddingRight-HtmlTh, var(--xmlui-paddingHorizontal-HtmlTh, var(--xmlui-padding-HtmlTh)))", "paddingTop-HtmlTh": "var(--xmlui-paddingTop-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)))", "paddingBottom-HtmlTh": "var(--xmlui-paddingBottom-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)))", "backgroundColor-HtmlTr": "var(--xmlui-backgroundColor-HtmlTr)", "backgroundColor-HtmlTr--hover": "var(--xmlui-backgroundColor-HtmlTr--hover)", "backgroundColor-even-HtmlTr": "var(--xmlui-backgroundColor-even-HtmlTr)", "textColor-HtmlTr": "var(--xmlui-textColor-HtmlTr)", "textColor-HtmlTr--hover": "var(--xmlui-textColor-HtmlTr--hover)", "fontSize-HtmlTr": "var(--xmlui-fontSize-HtmlTr)", "fontWeight-HtmlTr": "var(--xmlui-fontWeight-HtmlTr)", "border-HtmlTr": "var(--xmlui-border-HtmlTr)", "borderHorizontal-HtmlTr": "var(--xmlui-borderHorizontal-HtmlTr, var(--xmlui-border-HtmlTr))", "borderVertical-HtmlTr": "var(--xmlui-borderVertical-HtmlTr, var(--xmlui-border-HtmlTr))", "borderLeft-HtmlTr": "var(--xmlui-borderLeft-HtmlTr, var(--xmlui-borderHorizontal-HtmlTr, var(--xmlui-border-HtmlTr)))", "borderRight-HtmlTr": "var(--xmlui-borderRight-HtmlTr, var(--xmlui-borderHorizontal-HtmlTr, var(--xmlui-border-HtmlTr)))", "borderTop-HtmlTr": "var(--xmlui-borderTop-HtmlTr, var(--xmlui-borderVertical-HtmlTr, var(--xmlui-border-HtmlTr)))", "borderBottom-HtmlTr": "var(--xmlui-borderBottom-HtmlTr, var(--xmlui-borderVertical-HtmlTr, var(--xmlui-border-HtmlTr)))", "borderWidth-HtmlTr": "var(--xmlui-borderWidth-HtmlTr)", "borderHorizontalWidth-HtmlTr": "var(--xmlui-borderHorizontalWidth-HtmlTr, var(--xmlui-borderWidth-HtmlTr))", "borderLeftWidth-HtmlTr": "var(--xmlui-borderLeftWidth-HtmlTr, var(--xmlui-borderHorizontalWidth-HtmlTr, var(--xmlui-borderWidth-HtmlTr)))", "borderRightWidth-HtmlTr": "var(--xmlui-borderRightWidth-HtmlTr, var(--xmlui-borderHorizontalWidth-HtmlTr, var(--xmlui-borderWidth-HtmlTr)))", "borderVerticalWidth-HtmlTr": "var(--xmlui-borderVerticalWidth-HtmlTr, var(--xmlui-borderWidth-HtmlTr))", "borderTopWidth-HtmlTr": "var(--xmlui-borderTopWidth-HtmlTr, var(--xmlui-borderVerticalWidth-HtmlTr, var(--xmlui-borderWidth-HtmlTr)))", "borderBottomWidth-HtmlTr": "var(--xmlui-borderBottomWidth-HtmlTr, var(--xmlui-borderVerticalWidth-HtmlTr, var(--xmlui-borderWidth-HtmlTr)))", "borderStyle-HtmlTr": "var(--xmlui-borderStyle-HtmlTr)", "borderHorizontalStyle-HtmlTr": "var(--xmlui-borderHorizontalStyle-HtmlTr, var(--xmlui-borderStyle-HtmlTr))", "borderLeftStyle-HtmlTr": "var(--xmlui-borderLeftStyle-HtmlTr, var(--xmlui-borderHorizontalStyle-HtmlTr, var(--xmlui-borderStyle-HtmlTr)))", "borderRightStyle-HtmlTr": "var(--xmlui-borderRightStyle-HtmlTr, var(--xmlui-borderHorizontalStyle-HtmlTr, var(--xmlui-borderStyle-HtmlTr)))", "borderVerticalStyle-HtmlTr": "var(--xmlui-borderVerticalStyle-HtmlTr, var(--xmlui-borderStyle-HtmlTr))", "borderTopStyle-HtmlTr": "var(--xmlui-borderTopStyle-HtmlTr, var(--xmlui-borderVerticalStyle-HtmlTr, var(--xmlui-borderStyle-HtmlTr)))", "borderBottomStyle-HtmlTr": "var(--xmlui-borderBottomStyle-HtmlTr, var(--xmlui-borderVerticalStyle-HtmlTr, var(--xmlui-borderStyle-HtmlTr)))", "borderColor-HtmlTr": "var(--xmlui-borderColor-HtmlTr)", "borderHorizontalColor-HtmlTr": "var(--xmlui-borderHorizontalColor-HtmlTr, var(--xmlui-borderColor-HtmlTr))", "borderLeftColor-HtmlTr": "var(--xmlui-borderLeftColor-HtmlTr, var(--xmlui-borderHorizontalColor-HtmlTr, var(--xmlui-borderColor-HtmlTr)))", "borderRightColor-HtmlTr": "var(--xmlui-borderRightColor-HtmlTr, var(--xmlui-borderHorizontalColor-HtmlTr, var(--xmlui-borderColor-HtmlTr)))", "borderVerticalColor-HtmlTr": "var(--xmlui-borderVerticalColor-HtmlTr, var(--xmlui-borderColor-HtmlTr))", "borderTopColor-HtmlTr": "var(--xmlui-borderTopColor-HtmlTr, var(--xmlui-borderVerticalColor-HtmlTr, var(--xmlui-borderColor-HtmlTr)))", "borderBottomColor-HtmlTr": "var(--xmlui-borderBottomColor-HtmlTr, var(--xmlui-borderVerticalColor-HtmlTr, var(--xmlui-borderColor-HtmlTr)))", "borderStartStartRadius-HtmlTr": "var(--xmlui-borderStartStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr))", "borderStartEndRadius-HtmlTr": "var(--xmlui-borderStartEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr))", "borderEndStartRadius-HtmlTr": "var(--xmlui-borderEndStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr))", "borderEndEndRadius-HtmlTr": "var(--xmlui-borderEndEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr))", "backgroundColor-HtmlTd": "var(--xmlui-backgroundColor-HtmlTd)", "text-align-HtmlTd": "var(--xmlui-text-align-HtmlTd)", "verticalAlignment-HtmlTd": "var(--xmlui-verticalAlignment-HtmlTd)", "fontSize-HtmlTd": "var(--xmlui-fontSize-HtmlTd)", "fontWeight-HtmlTd": "var(--xmlui-fontWeight-HtmlTd)", "border-HtmlTd": "var(--xmlui-border-HtmlTd)", "borderHorizontal-HtmlTd": "var(--xmlui-borderHorizontal-HtmlTd, var(--xmlui-border-HtmlTd))", "borderVertical-HtmlTd": "var(--xmlui-borderVertical-HtmlTd, var(--xmlui-border-HtmlTd))", "borderLeft-HtmlTd": "var(--xmlui-borderLeft-HtmlTd, var(--xmlui-borderHorizontal-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderRight-HtmlTd": "var(--xmlui-borderRight-HtmlTd, var(--xmlui-borderHorizontal-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderTop-HtmlTd": "var(--xmlui-borderTop-HtmlTd, var(--xmlui-borderVertical-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderBottom-HtmlTd": "var(--xmlui-borderBottom-HtmlTd, var(--xmlui-borderVertical-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderWidth-HtmlTd": "var(--xmlui-borderWidth-HtmlTd)", "borderHorizontalWidth-HtmlTd": "var(--xmlui-borderHorizontalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd))", "borderLeftWidth-HtmlTd": "var(--xmlui-borderLeftWidth-HtmlTd, var(--xmlui-borderHorizontalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderRightWidth-HtmlTd": "var(--xmlui-borderRightWidth-HtmlTd, var(--xmlui-borderHorizontalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderVerticalWidth-HtmlTd": "var(--xmlui-borderVerticalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd))", "borderTopWidth-HtmlTd": "var(--xmlui-borderTopWidth-HtmlTd, var(--xmlui-borderVerticalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderBottomWidth-HtmlTd": "var(--xmlui-borderBottomWidth-HtmlTd, var(--xmlui-borderVerticalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderStyle-HtmlTd": "var(--xmlui-borderStyle-HtmlTd)", "borderHorizontalStyle-HtmlTd": "var(--xmlui-borderHorizontalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd))", "borderLeftStyle-HtmlTd": "var(--xmlui-borderLeftStyle-HtmlTd, var(--xmlui-borderHorizontalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderRightStyle-HtmlTd": "var(--xmlui-borderRightStyle-HtmlTd, var(--xmlui-borderHorizontalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderVerticalStyle-HtmlTd": "var(--xmlui-borderVerticalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd))", "borderTopStyle-HtmlTd": "var(--xmlui-borderTopStyle-HtmlTd, var(--xmlui-borderVerticalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderBottomStyle-HtmlTd": "var(--xmlui-borderBottomStyle-HtmlTd, var(--xmlui-borderVerticalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderColor-HtmlTd": "var(--xmlui-borderColor-HtmlTd)", "borderHorizontalColor-HtmlTd": "var(--xmlui-borderHorizontalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd))", "borderLeftColor-HtmlTd": "var(--xmlui-borderLeftColor-HtmlTd, var(--xmlui-borderHorizontalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderRightColor-HtmlTd": "var(--xmlui-borderRightColor-HtmlTd, var(--xmlui-borderHorizontalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderVerticalColor-HtmlTd": "var(--xmlui-borderVerticalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd))", "borderTopColor-HtmlTd": "var(--xmlui-borderTopColor-HtmlTd, var(--xmlui-borderVerticalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderBottomColor-HtmlTd": "var(--xmlui-borderBottomColor-HtmlTd, var(--xmlui-borderVerticalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderStartStartRadius-HtmlTd": "var(--xmlui-borderStartStartRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "borderStartEndRadius-HtmlTd": "var(--xmlui-borderStartEndRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "borderEndStartRadius-HtmlTd": "var(--xmlui-borderEndStartRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "borderEndEndRadius-HtmlTd": "var(--xmlui-borderEndEndRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "padding-HtmlTd": "var(--xmlui-padding-HtmlTd)", "paddingHorizontal-HtmlTd": "var(--xmlui-paddingHorizontal-HtmlTd, var(--xmlui-padding-HtmlTd))", "paddingVertical-HtmlTd": "var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd))", "paddingLeft-HtmlTd": "var(--xmlui-paddingLeft-HtmlTd, var(--xmlui-paddingHorizontal-HtmlTd, var(--xmlui-padding-HtmlTd)))", "paddingRight-HtmlTd": "var(--xmlui-paddingRight-HtmlTd, var(--xmlui-paddingHorizontal-HtmlTd, var(--xmlui-padding-HtmlTd)))", "paddingTop-HtmlTd": "var(--xmlui-paddingTop-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)))", "paddingBottom-HtmlTd": "var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)))", "border-HtmlOl": "var(--xmlui-border-HtmlOl)", "borderHorizontal-HtmlOl": "var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl))", "borderVertical-HtmlOl": "var(--xmlui-borderVertical-HtmlOl, var(--xmlui-border-HtmlOl))", "borderLeft-HtmlOl": "var(--xmlui-borderLeft-HtmlOl, var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl)))", "borderRight-HtmlOl": "var(--xmlui-borderRight-HtmlOl, var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl)))", "borderTop-HtmlOl": "var(--xmlui-borderTop-HtmlOl, var(--xmlui-borderVertical-HtmlOl, var(--xmlui-border-HtmlOl)))", "borderBottom-HtmlOl": "var(--xmlui-borderBottom-HtmlOl, var(--xmlui-borderVertical-HtmlOl, var(--xmlui-border-HtmlOl)))", "borderWidth-HtmlOl": "var(--xmlui-borderWidth-HtmlOl)", "borderHorizontalWidth-HtmlOl": "var(--xmlui-borderHorizontalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl))", "borderLeftWidth-HtmlOl": "var(--xmlui-borderLeftWidth-HtmlOl, var(--xmlui-borderHorizontalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)))", "borderRightWidth-HtmlOl": "var(--xmlui-borderRightWidth-HtmlOl, var(--xmlui-borderHorizontalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)))", "borderVerticalWidth-HtmlOl": "var(--xmlui-borderVerticalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl))", "borderTopWidth-HtmlOl": "var(--xmlui-borderTopWidth-HtmlOl, var(--xmlui-borderVerticalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)))", "borderBottomWidth-HtmlOl": "var(--xmlui-borderBottomWidth-HtmlOl, var(--xmlui-borderVerticalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)))", "borderStyle-HtmlOl": "var(--xmlui-borderStyle-HtmlOl)", "borderHorizontalStyle-HtmlOl": "var(--xmlui-borderHorizontalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl))", "borderLeftStyle-HtmlOl": "var(--xmlui-borderLeftStyle-HtmlOl, var(--xmlui-borderHorizontalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)))", "borderRightStyle-HtmlOl": "var(--xmlui-borderRightStyle-HtmlOl, var(--xmlui-borderHorizontalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)))", "borderVerticalStyle-HtmlOl": "var(--xmlui-borderVerticalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl))", "borderTopStyle-HtmlOl": "var(--xmlui-borderTopStyle-HtmlOl, var(--xmlui-borderVerticalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)))", "borderBottomStyle-HtmlOl": "var(--xmlui-borderBottomStyle-HtmlOl, var(--xmlui-borderVerticalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)))", "borderColor-HtmlOl": "var(--xmlui-borderColor-HtmlOl)", "borderHorizontalColor-HtmlOl": "var(--xmlui-borderHorizontalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl))", "borderLeftColor-HtmlOl": "var(--xmlui-borderLeftColor-HtmlOl, var(--xmlui-borderHorizontalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)))", "borderRightColor-HtmlOl": "var(--xmlui-borderRightColor-HtmlOl, var(--xmlui-borderHorizontalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)))", "borderVerticalColor-HtmlOl": "var(--xmlui-borderVerticalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl))", "borderTopColor-HtmlOl": "var(--xmlui-borderTopColor-HtmlOl, var(--xmlui-borderVerticalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)))", "borderBottomColor-HtmlOl": "var(--xmlui-borderBottomColor-HtmlOl, var(--xmlui-borderVerticalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)))", "borderStartStartRadius-HtmlOl": "var(--xmlui-borderStartStartRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl))", "borderStartEndRadius-HtmlOl": "var(--xmlui-borderStartEndRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl))", "borderEndStartRadius-HtmlOl": "var(--xmlui-borderEndStartRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl))", "borderEndEndRadius-HtmlOl": "var(--xmlui-borderEndEndRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl))", "padding-HtmlOl": "var(--xmlui-padding-HtmlOl)", "paddingHorizontal-HtmlOl": "var(--xmlui-paddingHorizontal-HtmlOl, var(--xmlui-padding-HtmlOl))", "paddingVertical-HtmlOl": "var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl))", "paddingLeft-HtmlOl": "var(--xmlui-paddingLeft-HtmlOl, var(--xmlui-paddingHorizontal-HtmlOl, var(--xmlui-padding-HtmlOl)))", "paddingRight-HtmlOl": "var(--xmlui-paddingRight-HtmlOl, var(--xmlui-paddingHorizontal-HtmlOl, var(--xmlui-padding-HtmlOl)))", "paddingTop-HtmlOl": "var(--xmlui-paddingTop-HtmlOl, var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl)))", "paddingBottom-HtmlOl": "var(--xmlui-paddingBottom-HtmlOl, var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl)))", "marginTop-HtmlOl": "var(--xmlui-marginTop-HtmlOl)", "marginBottom-HtmlOl": "var(--xmlui-marginBottom-HtmlOl)", "border-HtmlUl": "var(--xmlui-border-HtmlUl)", "borderHorizontal-HtmlUl": "var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl))", "borderVertical-HtmlUl": "var(--xmlui-borderVertical-HtmlUl, var(--xmlui-border-HtmlUl))", "borderLeft-HtmlUl": "var(--xmlui-borderLeft-HtmlUl, var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl)))", "borderRight-HtmlUl": "var(--xmlui-borderRight-HtmlUl, var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl)))", "borderTop-HtmlUl": "var(--xmlui-borderTop-HtmlUl, var(--xmlui-borderVertical-HtmlUl, var(--xmlui-border-HtmlUl)))", "borderBottom-HtmlUl": "var(--xmlui-borderBottom-HtmlUl, var(--xmlui-borderVertical-HtmlUl, var(--xmlui-border-HtmlUl)))", "borderWidth-HtmlUl": "var(--xmlui-borderWidth-HtmlUl)", "borderHorizontalWidth-HtmlUl": "var(--xmlui-borderHorizontalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl))", "borderLeftWidth-HtmlUl": "var(--xmlui-borderLeftWidth-HtmlUl, var(--xmlui-borderHorizontalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)))", "borderRightWidth-HtmlUl": "var(--xmlui-borderRightWidth-HtmlUl, var(--xmlui-borderHorizontalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)))", "borderVerticalWidth-HtmlUl": "var(--xmlui-borderVerticalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl))", "borderTopWidth-HtmlUl": "var(--xmlui-borderTopWidth-HtmlUl, var(--xmlui-borderVerticalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)))", "borderBottomWidth-HtmlUl": "var(--xmlui-borderBottomWidth-HtmlUl, var(--xmlui-borderVerticalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)))", "borderStyle-HtmlUl": "var(--xmlui-borderStyle-HtmlUl)", "borderHorizontalStyle-HtmlUl": "var(--xmlui-borderHorizontalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl))", "borderLeftStyle-HtmlUl": "var(--xmlui-borderLeftStyle-HtmlUl, var(--xmlui-borderHorizontalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)))", "borderRightStyle-HtmlUl": "var(--xmlui-borderRightStyle-HtmlUl, var(--xmlui-borderHorizontalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)))", "borderVerticalStyle-HtmlUl": "var(--xmlui-borderVerticalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl))", "borderTopStyle-HtmlUl": "var(--xmlui-borderTopStyle-HtmlUl, var(--xmlui-borderVerticalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)))", "borderBottomStyle-HtmlUl": "var(--xmlui-borderBottomStyle-HtmlUl, var(--xmlui-borderVerticalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)))", "borderColor-HtmlUl": "var(--xmlui-borderColor-HtmlUl)", "borderHorizontalColor-HtmlUl": "var(--xmlui-borderHorizontalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl))", "borderLeftColor-HtmlUl": "var(--xmlui-borderLeftColor-HtmlUl, var(--xmlui-borderHorizontalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)))", "borderRightColor-HtmlUl": "var(--xmlui-borderRightColor-HtmlUl, var(--xmlui-borderHorizontalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)))", "borderVerticalColor-HtmlUl": "var(--xmlui-borderVerticalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl))", "borderTopColor-HtmlUl": "var(--xmlui-borderTopColor-HtmlUl, var(--xmlui-borderVerticalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)))", "borderBottomColor-HtmlUl": "var(--xmlui-borderBottomColor-HtmlUl, var(--xmlui-borderVerticalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)))", "borderStartStartRadius-HtmlUl": "var(--xmlui-borderStartStartRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl))", "borderStartEndRadius-HtmlUl": "var(--xmlui-borderStartEndRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl))", "borderEndStartRadius-HtmlUl": "var(--xmlui-borderEndStartRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl))", "borderEndEndRadius-HtmlUl": "var(--xmlui-borderEndEndRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl))", "padding-HtmlUl": "var(--xmlui-padding-HtmlUl)", "paddingHorizontal-HtmlUl": "var(--xmlui-paddingHorizontal-HtmlUl, var(--xmlui-padding-HtmlUl))", "paddingVertical-HtmlUl": "var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl))", "paddingLeft-HtmlUl": "var(--xmlui-paddingLeft-HtmlUl, var(--xmlui-paddingHorizontal-HtmlUl, var(--xmlui-padding-HtmlUl)))", "paddingRight-HtmlUl": "var(--xmlui-paddingRight-HtmlUl, var(--xmlui-paddingHorizontal-HtmlUl, var(--xmlui-padding-HtmlUl)))", "paddingTop-HtmlUl": "var(--xmlui-paddingTop-HtmlUl, var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl)))", "paddingBottom-HtmlUl": "var(--xmlui-paddingBottom-HtmlUl, var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl)))", "marginTop-HtmlUl": "var(--xmlui-marginTop-HtmlUl)", "marginBottom-HtmlUl": "var(--xmlui-marginBottom-HtmlUl)", "border-HtmlLi": "var(--xmlui-border-HtmlLi)", "borderHorizontal-HtmlLi": "var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi))", "borderVertical-HtmlLi": "var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi))", "borderLeft-HtmlLi": "var(--xmlui-borderLeft-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)))", "borderRight-HtmlLi": "var(--xmlui-borderRight-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)))", "borderTop-HtmlLi": "var(--xmlui-borderTop-HtmlLi, var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi)))", "borderBottom-HtmlLi": "var(--xmlui-borderBottom-HtmlLi, var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi)))", "borderWidth-HtmlLi": "var(--xmlui-borderWidth-HtmlLi)", "borderHorizontalWidth-HtmlLi": "var(--xmlui-borderHorizontalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi))", "borderLeftWidth-HtmlLi": "var(--xmlui-borderLeftWidth-HtmlLi, var(--xmlui-borderHorizontalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)))", "borderRightWidth-HtmlLi": "var(--xmlui-borderRightWidth-HtmlLi, var(--xmlui-borderHorizontalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)))", "borderVerticalWidth-HtmlLi": "var(--xmlui-borderVerticalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi))", "borderTopWidth-HtmlLi": "var(--xmlui-borderTopWidth-HtmlLi, var(--xmlui-borderVerticalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)))", "borderBottomWidth-HtmlLi": "var(--xmlui-borderBottomWidth-HtmlLi, var(--xmlui-borderVerticalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)))", "borderStyle-HtmlLi": "var(--xmlui-borderStyle-HtmlLi)", "borderHorizontalStyle-HtmlLi": "var(--xmlui-borderHorizontalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi))", "borderLeftStyle-HtmlLi": "var(--xmlui-borderLeftStyle-HtmlLi, var(--xmlui-borderHorizontalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)))", "borderRightStyle-HtmlLi": "var(--xmlui-borderRightStyle-HtmlLi, var(--xmlui-borderHorizontalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)))", "borderVerticalStyle-HtmlLi": "var(--xmlui-borderVerticalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi))", "borderTopStyle-HtmlLi": "var(--xmlui-borderTopStyle-HtmlLi, var(--xmlui-borderVerticalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)))", "borderBottomStyle-HtmlLi": "var(--xmlui-borderBottomStyle-HtmlLi, var(--xmlui-borderVerticalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)))", "borderColor-HtmlLi": "var(--xmlui-borderColor-HtmlLi)", "borderHorizontalColor-HtmlLi": "var(--xmlui-borderHorizontalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi))", "borderLeftColor-HtmlLi": "var(--xmlui-borderLeftColor-HtmlLi, var(--xmlui-borderHorizontalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)))", "borderRightColor-HtmlLi": "var(--xmlui-borderRightColor-HtmlLi, var(--xmlui-borderHorizontalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)))", "borderVerticalColor-HtmlLi": "var(--xmlui-borderVerticalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi))", "borderTopColor-HtmlLi": "var(--xmlui-borderTopColor-HtmlLi, var(--xmlui-borderVerticalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)))", "borderBottomColor-HtmlLi": "var(--xmlui-borderBottomColor-HtmlLi, var(--xmlui-borderVerticalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)))", "borderStartStartRadius-HtmlLi": "var(--xmlui-borderStartStartRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi))", "borderStartEndRadius-HtmlLi": "var(--xmlui-borderStartEndRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi))", "borderEndStartRadius-HtmlLi": "var(--xmlui-borderEndStartRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi))", "borderEndEndRadius-HtmlLi": "var(--xmlui-borderEndEndRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi))", "padding-HtmlLi": "var(--xmlui-padding-HtmlLi)", "paddingHorizontal-HtmlLi": "var(--xmlui-paddingHorizontal-HtmlLi, var(--xmlui-padding-HtmlLi))", "paddingVertical-HtmlLi": "var(--xmlui-paddingVertical-HtmlLi, var(--xmlui-padding-HtmlLi))", "paddingLeft-HtmlLi": "var(--xmlui-paddingLeft-HtmlLi, var(--xmlui-paddingHorizontal-HtmlLi, var(--xmlui-padding-HtmlLi)))", "paddingRight-HtmlLi": "var(--xmlui-paddingRight-HtmlLi, var(--xmlui-paddingHorizontal-HtmlLi, var(--xmlui-padding-HtmlLi)))", "paddingTop-HtmlLi": "var(--xmlui-paddingTop-HtmlLi, var(--xmlui-paddingVertical-HtmlLi, var(--xmlui-padding-HtmlLi)))", "paddingBottom-HtmlLi": "var(--xmlui-paddingBottom-HtmlLi, var(--xmlui-paddingVertical-HtmlLi, var(--xmlui-padding-HtmlLi)))", "marginLeft-HtmlLi": "var(--xmlui-marginLeft-HtmlLi)", "marginTop-HtmlLi": "var(--xmlui-marginTop-HtmlLi)", "marginBottom-HtmlLi": "var(--xmlui-marginBottom-HtmlLi)", "listStyleType-HtmlLi": "var(--xmlui-listStyleType-HtmlLi)", "border-HtmlDetails": "var(--xmlui-border-HtmlDetails)", "borderHorizontal-HtmlDetails": "var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails))", "borderVertical-HtmlDetails": "var(--xmlui-borderVertical-HtmlDetails, var(--xmlui-border-HtmlDetails))", "borderLeft-HtmlDetails": "var(--xmlui-borderLeft-HtmlDetails, var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails)))", "borderRight-HtmlDetails": "var(--xmlui-borderRight-HtmlDetails, var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails)))", "borderTop-HtmlDetails": "var(--xmlui-borderTop-HtmlDetails, var(--xmlui-borderVertical-HtmlDetails, var(--xmlui-border-HtmlDetails)))", "borderBottom-HtmlDetails": "var(--xmlui-borderBottom-HtmlDetails, var(--xmlui-borderVertical-HtmlDetails, var(--xmlui-border-HtmlDetails)))", "borderWidth-HtmlDetails": "var(--xmlui-borderWidth-HtmlDetails)", "borderHorizontalWidth-HtmlDetails": "var(--xmlui-borderHorizontalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails))", "borderLeftWidth-HtmlDetails": "var(--xmlui-borderLeftWidth-HtmlDetails, var(--xmlui-borderHorizontalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)))", "borderRightWidth-HtmlDetails": "var(--xmlui-borderRightWidth-HtmlDetails, var(--xmlui-borderHorizontalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)))", "borderVerticalWidth-HtmlDetails": "var(--xmlui-borderVerticalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails))", "borderTopWidth-HtmlDetails": "var(--xmlui-borderTopWidth-HtmlDetails, var(--xmlui-borderVerticalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)))", "borderBottomWidth-HtmlDetails": "var(--xmlui-borderBottomWidth-HtmlDetails, var(--xmlui-borderVerticalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)))", "borderStyle-HtmlDetails": "var(--xmlui-borderStyle-HtmlDetails)", "borderHorizontalStyle-HtmlDetails": "var(--xmlui-borderHorizontalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails))", "borderLeftStyle-HtmlDetails": "var(--xmlui-borderLeftStyle-HtmlDetails, var(--xmlui-borderHorizontalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)))", "borderRightStyle-HtmlDetails": "var(--xmlui-borderRightStyle-HtmlDetails, var(--xmlui-borderHorizontalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)))", "borderVerticalStyle-HtmlDetails": "var(--xmlui-borderVerticalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails))", "borderTopStyle-HtmlDetails": "var(--xmlui-borderTopStyle-HtmlDetails, var(--xmlui-borderVerticalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)))", "borderBottomStyle-HtmlDetails": "var(--xmlui-borderBottomStyle-HtmlDetails, var(--xmlui-borderVerticalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)))", "borderColor-HtmlDetails": "var(--xmlui-borderColor-HtmlDetails)", "borderHorizontalColor-HtmlDetails": "var(--xmlui-borderHorizontalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails))", "borderLeftColor-HtmlDetails": "var(--xmlui-borderLeftColor-HtmlDetails, var(--xmlui-borderHorizontalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)))", "borderRightColor-HtmlDetails": "var(--xmlui-borderRightColor-HtmlDetails, var(--xmlui-borderHorizontalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)))", "borderVerticalColor-HtmlDetails": "var(--xmlui-borderVerticalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails))", "borderTopColor-HtmlDetails": "var(--xmlui-borderTopColor-HtmlDetails, var(--xmlui-borderVerticalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)))", "borderBottomColor-HtmlDetails": "var(--xmlui-borderBottomColor-HtmlDetails, var(--xmlui-borderVerticalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)))", "borderStartStartRadius-HtmlDetails": "var(--xmlui-borderStartStartRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails))", "borderStartEndRadius-HtmlDetails": "var(--xmlui-borderStartEndRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails))", "borderEndStartRadius-HtmlDetails": "var(--xmlui-borderEndStartRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails))", "borderEndEndRadius-HtmlDetails": "var(--xmlui-borderEndEndRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails))", "padding-HtmlDetails": "var(--xmlui-padding-HtmlDetails)", "paddingHorizontal-HtmlDetails": "var(--xmlui-paddingHorizontal-HtmlDetails, var(--xmlui-padding-HtmlDetails))", "paddingVertical-HtmlDetails": "var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails))", "paddingLeft-HtmlDetails": "var(--xmlui-paddingLeft-HtmlDetails, var(--xmlui-paddingHorizontal-HtmlDetails, var(--xmlui-padding-HtmlDetails)))", "paddingRight-HtmlDetails": "var(--xmlui-paddingRight-HtmlDetails, var(--xmlui-paddingHorizontal-HtmlDetails, var(--xmlui-padding-HtmlDetails)))", "paddingTop-HtmlDetails": "var(--xmlui-paddingTop-HtmlDetails, var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails)))", "paddingBottom-HtmlDetails": "var(--xmlui-paddingBottom-HtmlDetails, var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails)))", "marginTop-HtmlDetails": "var(--xmlui-marginTop-HtmlDetails)", "marginBottom-HtmlDetails": "var(--xmlui-marginBottom-HtmlDetails)"}'`;
24460
- const markdownContent = "_markdownContent_y9j57_14";
24461
- const grayscale = "_grayscale_y9j57_47";
24462
- const htmlTh$1 = "_htmlTh_y9j57_61";
24463
- const htmlTd$1 = "_htmlTd_y9j57_62";
24464
- const markdown = "_markdown_y9j57_14";
24465
- const block = "_block_y9j57_144";
24466
- const blockquote = "_blockquote_y9j57_150";
24467
- const blockquoteContainer = "_blockquoteContainer_y9j57_166";
24468
- const admonitionBlockquote = "_admonitionBlockquote_y9j57_194";
24469
- const info = "_info_y9j57_226";
24470
- const warning$4 = "_warning_y9j57_230";
24471
- const danger = "_danger_y9j57_234";
24472
- const note = "_note_y9j57_238";
24473
- const tip = "_tip_y9j57_242";
24474
- const admonitionContainer = "_admonitionContainer_y9j57_246";
24475
- const admonitionIcon = "_admonitionIcon_y9j57_251";
24476
- const admonitionContent = "_admonitionContent_y9j57_255";
24477
- const horizontalRule = "_horizontalRule_y9j57_266";
24478
- const tableScrollContainer = "_tableScrollContainer_y9j57_288";
24479
- const detailsAdornment = "_detailsAdornment_y9j57_292";
24480
- const htmlTable$1 = "_htmlTable_y9j57_326";
24481
- const htmlThead$1 = "_htmlThead_y9j57_362";
24482
- const htmlTbody$1 = "_htmlTbody_y9j57_394";
24483
- const htmlTfoot$1 = "_htmlTfoot_y9j57_401";
24484
- const htmlTr$1 = "_htmlTr_y9j57_443";
24485
- const htmlUl$1 = "_htmlUl_y9j57_515";
24486
- const htmlOl$1 = "_htmlOl_y9j57_544";
24487
- const htmlLi = "_htmlLi_y9j57_573";
24488
- const htmlVideo = "_htmlVideo_y9j57_604";
24489
- const htmlDetails$1 = "_htmlDetails_y9j57_608";
24528
+ const themeVars$t = `'{"textColor-Text": "var(--xmlui-textColor-Text)", "fontFamily-Text": "var(--xmlui-fontFamily-Text)", "fontSize-Text": "var(--xmlui-fontSize-Text)", "fontStyle-Text": "var(--xmlui-fontStyle-Text)", "fontVariant-Text": "var(--xmlui-fontVariant-Text)", "fontWeight-Text": "var(--xmlui-fontWeight-Text)", "fontStretch-Text": "var(--xmlui-fontStretch-Text)", "textDecorationLine-Text": "var(--xmlui-textDecorationLine-Text)", "textDecorationColor-Text": "var(--xmlui-textDecorationColor-Text)", "textDecorationStyle-Text": "var(--xmlui-textDecorationStyle-Text)", "textDecorationThickness-Text": "var(--xmlui-textDecorationThickness-Text)", "textUnderlineOffset-Text": "var(--xmlui-textUnderlineOffset-Text)", "lineHeight-Text": "var(--xmlui-lineHeight-Text)", "backgroundColor-Text": "var(--xmlui-backgroundColor-Text)", "textTransform-Text": "var(--xmlui-textTransform-Text)", "letterSpacing-Text": "var(--xmlui-letterSpacing-Text)", "wordSpacing-Text": "var(--xmlui-wordSpacing-Text)", "textShadow-Text": "var(--xmlui-textShadow-Text)", "textIndent-Text": "var(--xmlui-textIndent-Text)", "textAlign-Text": "var(--xmlui-textAlign-Text)", "textAlignLast-Text": "var(--xmlui-textAlignLast-Text)", "wordBreak-Text": "var(--xmlui-wordBreak-Text)", "wordWrap-Text": "var(--xmlui-wordWrap-Text)", "direction-Text": "var(--xmlui-direction-Text)", "writingMode-Text": "var(--xmlui-writingMode-Text)", "lineBreak-Text": "var(--xmlui-lineBreak-Text)", "paddingTop-Markdown": "var(--xmlui-paddingTop-Markdown)", "paddingBottom-Markdown": "var(--xmlui-paddingBottom-Markdown)", "backgroundColor-Markdown": "var(--xmlui-backgroundColor-Markdown)", "padding-Blockquote-markdown": "var(--xmlui-padding-Blockquote-markdown)", "paddingHorizontal-Blockquote-markdown": "var(--xmlui-paddingHorizontal-Blockquote-markdown, var(--xmlui-padding-Blockquote-markdown))", "paddingVertical-Blockquote-markdown": "var(--xmlui-paddingVertical-Blockquote-markdown, var(--xmlui-padding-Blockquote-markdown))", "paddingLeft-Blockquote-markdown": "var(--xmlui-paddingLeft-Blockquote-markdown)", "paddingRight-Blockquote-markdown": "var(--xmlui-paddingRight-Blockquote-markdown, var(--xmlui-paddingHorizontal-Blockquote-markdown, var(--xmlui-padding-Blockquote-markdown)))", "paddingTop-Blockquote-markdown": "var(--xmlui-paddingTop-Blockquote-markdown, var(--xmlui-paddingVertical-Blockquote-markdown, var(--xmlui-padding-Blockquote-markdown)))", "paddingBottom-Blockquote-markdown": "var(--xmlui-paddingBottom-Blockquote-markdown, var(--xmlui-paddingVertical-Blockquote-markdown, var(--xmlui-padding-Blockquote-markdown)))", "border-Blockquote-markdown": "var(--xmlui-border-Blockquote-markdown)", "borderHorizontal-Blockquote-markdown": "var(--xmlui-borderHorizontal-Blockquote-markdown, var(--xmlui-border-Blockquote-markdown))", "borderVertical-Blockquote-markdown": "var(--xmlui-borderVertical-Blockquote-markdown, var(--xmlui-border-Blockquote-markdown))", "borderLeft-Blockquote-markdown": "var(--xmlui-borderLeft-Blockquote-markdown, var(--xmlui-borderHorizontal-Blockquote-markdown, var(--xmlui-border-Blockquote-markdown)))", "borderRight-Blockquote-markdown": "var(--xmlui-borderRight-Blockquote-markdown, var(--xmlui-borderHorizontal-Blockquote-markdown, var(--xmlui-border-Blockquote-markdown)))", "borderTop-Blockquote-markdown": "var(--xmlui-borderTop-Blockquote-markdown, var(--xmlui-borderVertical-Blockquote-markdown, var(--xmlui-border-Blockquote-markdown)))", "borderBottom-Blockquote-markdown": "var(--xmlui-borderBottom-Blockquote-markdown, var(--xmlui-borderVertical-Blockquote-markdown, var(--xmlui-border-Blockquote-markdown)))", "borderWidth-Blockquote-markdown": "var(--xmlui-borderWidth-Blockquote-markdown)", "borderHorizontalWidth-Blockquote-markdown": "var(--xmlui-borderHorizontalWidth-Blockquote-markdown, var(--xmlui-borderWidth-Blockquote-markdown))", "borderLeftWidth-Blockquote-markdown": "var(--xmlui-borderLeftWidth-Blockquote-markdown, var(--xmlui-borderHorizontalWidth-Blockquote-markdown, var(--xmlui-borderWidth-Blockquote-markdown)))", "borderRightWidth-Blockquote-markdown": "var(--xmlui-borderRightWidth-Blockquote-markdown, var(--xmlui-borderHorizontalWidth-Blockquote-markdown, var(--xmlui-borderWidth-Blockquote-markdown)))", "borderVerticalWidth-Blockquote-markdown": "var(--xmlui-borderVerticalWidth-Blockquote-markdown, var(--xmlui-borderWidth-Blockquote-markdown))", "borderTopWidth-Blockquote-markdown": "var(--xmlui-borderTopWidth-Blockquote-markdown, var(--xmlui-borderVerticalWidth-Blockquote-markdown, var(--xmlui-borderWidth-Blockquote-markdown)))", "borderBottomWidth-Blockquote-markdown": "var(--xmlui-borderBottomWidth-Blockquote-markdown, var(--xmlui-borderVerticalWidth-Blockquote-markdown, var(--xmlui-borderWidth-Blockquote-markdown)))", "borderStyle-Blockquote-markdown": "var(--xmlui-borderStyle-Blockquote-markdown)", "borderHorizontalStyle-Blockquote-markdown": "var(--xmlui-borderHorizontalStyle-Blockquote-markdown, var(--xmlui-borderStyle-Blockquote-markdown))", "borderLeftStyle-Blockquote-markdown": "var(--xmlui-borderLeftStyle-Blockquote-markdown, var(--xmlui-borderHorizontalStyle-Blockquote-markdown, var(--xmlui-borderStyle-Blockquote-markdown)))", "borderRightStyle-Blockquote-markdown": "var(--xmlui-borderRightStyle-Blockquote-markdown, var(--xmlui-borderHorizontalStyle-Blockquote-markdown, var(--xmlui-borderStyle-Blockquote-markdown)))", "borderVerticalStyle-Blockquote-markdown": "var(--xmlui-borderVerticalStyle-Blockquote-markdown, var(--xmlui-borderStyle-Blockquote-markdown))", "borderTopStyle-Blockquote-markdown": "var(--xmlui-borderTopStyle-Blockquote-markdown, var(--xmlui-borderVerticalStyle-Blockquote-markdown, var(--xmlui-borderStyle-Blockquote-markdown)))", "borderBottomStyle-Blockquote-markdown": "var(--xmlui-borderBottomStyle-Blockquote-markdown, var(--xmlui-borderVerticalStyle-Blockquote-markdown, var(--xmlui-borderStyle-Blockquote-markdown)))", "borderColor-Blockquote-markdown": "var(--xmlui-borderColor-Blockquote-markdown)", "borderHorizontalColor-Blockquote-markdown": "var(--xmlui-borderHorizontalColor-Blockquote-markdown, var(--xmlui-borderColor-Blockquote-markdown))", "borderLeftColor-Blockquote-markdown": "var(--xmlui-borderLeftColor-Blockquote-markdown, var(--xmlui-borderHorizontalColor-Blockquote-markdown, var(--xmlui-borderColor-Blockquote-markdown)))", "borderRightColor-Blockquote-markdown": "var(--xmlui-borderRightColor-Blockquote-markdown, var(--xmlui-borderHorizontalColor-Blockquote-markdown, var(--xmlui-borderColor-Blockquote-markdown)))", "borderVerticalColor-Blockquote-markdown": "var(--xmlui-borderVerticalColor-Blockquote-markdown, var(--xmlui-borderColor-Blockquote-markdown))", "borderTopColor-Blockquote-markdown": "var(--xmlui-borderTopColor-Blockquote-markdown, var(--xmlui-borderVerticalColor-Blockquote-markdown, var(--xmlui-borderColor-Blockquote-markdown)))", "borderBottomColor-Blockquote-markdown": "var(--xmlui-borderBottomColor-Blockquote-markdown, var(--xmlui-borderVerticalColor-Blockquote-markdown, var(--xmlui-borderColor-Blockquote-markdown)))", "borderStartStartRadius-Blockquote-markdown": "var(--xmlui-borderStartStartRadius-Blockquote-markdown, var(--xmlui-borderRadius-Blockquote-markdown))", "borderStartEndRadius-Blockquote-markdown": "var(--xmlui-borderStartEndRadius-Blockquote-markdown, var(--xmlui-borderRadius-Blockquote-markdown))", "borderEndStartRadius-Blockquote-markdown": "var(--xmlui-borderEndStartRadius-Blockquote-markdown, var(--xmlui-borderRadius-Blockquote-markdown))", "borderEndEndRadius-Blockquote-markdown": "var(--xmlui-borderEndEndRadius-Blockquote-markdown, var(--xmlui-borderRadius-Blockquote-markdown))", "color-accent-Blockquote-markdown": "var(--xmlui-color-accent-Blockquote-markdown)", "width-accent-Blockquote-markdown": "var(--xmlui-width-accent-Blockquote-markdown)", "backgroundColor-Blockquote-markdown": "var(--xmlui-backgroundColor-Blockquote-markdown)", "borderRadius-Blockquote-markdown": "var(--xmlui-borderRadius-Blockquote-markdown)", "marginTop-Blockquote-markdown": "var(--xmlui-marginTop-Blockquote-markdown)", "marginBottom-Blockquote-markdown": "var(--xmlui-marginBottom-Blockquote-markdown)", "padding-Admonition-markdown": "var(--xmlui-padding-Admonition-markdown)", "paddingHorizontal-Admonition-markdown": "var(--xmlui-paddingHorizontal-Admonition-markdown, var(--xmlui-padding-Admonition-markdown))", "paddingVertical-Admonition-markdown": "var(--xmlui-paddingVertical-Admonition-markdown, var(--xmlui-padding-Admonition-markdown))", "paddingLeft-Admonition-markdown": "var(--xmlui-paddingLeft-Admonition-markdown, var(--xmlui-paddingHorizontal-Admonition-markdown, var(--xmlui-padding-Admonition-markdown)))", "paddingRight-Admonition-markdown": "var(--xmlui-paddingRight-Admonition-markdown, var(--xmlui-paddingHorizontal-Admonition-markdown, var(--xmlui-padding-Admonition-markdown)))", "paddingTop-Admonition-markdown": "var(--xmlui-paddingTop-Admonition-markdown, var(--xmlui-paddingVertical-Admonition-markdown, var(--xmlui-padding-Admonition-markdown)))", "paddingBottom-Admonition-markdown": "var(--xmlui-paddingBottom-Admonition-markdown, var(--xmlui-paddingVertical-Admonition-markdown, var(--xmlui-padding-Admonition-markdown)))", "border-Admonition-markdown": "var(--xmlui-border-Admonition-markdown)", "borderHorizontal-Admonition-markdown": "var(--xmlui-borderHorizontal-Admonition-markdown, var(--xmlui-border-Admonition-markdown))", "borderVertical-Admonition-markdown": "var(--xmlui-borderVertical-Admonition-markdown, var(--xmlui-border-Admonition-markdown))", "borderLeft-Admonition-markdown": "var(--xmlui-borderLeft-Admonition-markdown, var(--xmlui-borderHorizontal-Admonition-markdown, var(--xmlui-border-Admonition-markdown)))", "borderRight-Admonition-markdown": "var(--xmlui-borderRight-Admonition-markdown, var(--xmlui-borderHorizontal-Admonition-markdown, var(--xmlui-border-Admonition-markdown)))", "borderTop-Admonition-markdown": "var(--xmlui-borderTop-Admonition-markdown, var(--xmlui-borderVertical-Admonition-markdown, var(--xmlui-border-Admonition-markdown)))", "borderBottom-Admonition-markdown": "var(--xmlui-borderBottom-Admonition-markdown, var(--xmlui-borderVertical-Admonition-markdown, var(--xmlui-border-Admonition-markdown)))", "borderWidth-Admonition-markdown": "var(--xmlui-borderWidth-Admonition-markdown)", "borderHorizontalWidth-Admonition-markdown": "var(--xmlui-borderHorizontalWidth-Admonition-markdown, var(--xmlui-borderWidth-Admonition-markdown))", "borderLeftWidth-Admonition-markdown": "var(--xmlui-borderLeftWidth-Admonition-markdown, var(--xmlui-borderHorizontalWidth-Admonition-markdown, var(--xmlui-borderWidth-Admonition-markdown)))", "borderRightWidth-Admonition-markdown": "var(--xmlui-borderRightWidth-Admonition-markdown, var(--xmlui-borderHorizontalWidth-Admonition-markdown, var(--xmlui-borderWidth-Admonition-markdown)))", "borderVerticalWidth-Admonition-markdown": "var(--xmlui-borderVerticalWidth-Admonition-markdown, var(--xmlui-borderWidth-Admonition-markdown))", "borderTopWidth-Admonition-markdown": "var(--xmlui-borderTopWidth-Admonition-markdown, var(--xmlui-borderVerticalWidth-Admonition-markdown, var(--xmlui-borderWidth-Admonition-markdown)))", "borderBottomWidth-Admonition-markdown": "var(--xmlui-borderBottomWidth-Admonition-markdown, var(--xmlui-borderVerticalWidth-Admonition-markdown, var(--xmlui-borderWidth-Admonition-markdown)))", "borderStyle-Admonition-markdown": "var(--xmlui-borderStyle-Admonition-markdown)", "borderHorizontalStyle-Admonition-markdown": "var(--xmlui-borderHorizontalStyle-Admonition-markdown, var(--xmlui-borderStyle-Admonition-markdown))", "borderLeftStyle-Admonition-markdown": "var(--xmlui-borderLeftStyle-Admonition-markdown, var(--xmlui-borderHorizontalStyle-Admonition-markdown, var(--xmlui-borderStyle-Admonition-markdown)))", "borderRightStyle-Admonition-markdown": "var(--xmlui-borderRightStyle-Admonition-markdown, var(--xmlui-borderHorizontalStyle-Admonition-markdown, var(--xmlui-borderStyle-Admonition-markdown)))", "borderVerticalStyle-Admonition-markdown": "var(--xmlui-borderVerticalStyle-Admonition-markdown, var(--xmlui-borderStyle-Admonition-markdown))", "borderTopStyle-Admonition-markdown": "var(--xmlui-borderTopStyle-Admonition-markdown, var(--xmlui-borderVerticalStyle-Admonition-markdown, var(--xmlui-borderStyle-Admonition-markdown)))", "borderBottomStyle-Admonition-markdown": "var(--xmlui-borderBottomStyle-Admonition-markdown, var(--xmlui-borderVerticalStyle-Admonition-markdown, var(--xmlui-borderStyle-Admonition-markdown)))", "borderColor-Admonition-markdown": "var(--xmlui-borderColor-Admonition-markdown)", "borderHorizontalColor-Admonition-markdown": "var(--xmlui-borderHorizontalColor-Admonition-markdown, var(--xmlui-borderColor-Admonition-markdown))", "borderLeftColor-Admonition-markdown": "var(--xmlui-borderLeftColor-Admonition-markdown, var(--xmlui-borderHorizontalColor-Admonition-markdown, var(--xmlui-borderColor-Admonition-markdown)))", "borderRightColor-Admonition-markdown": "var(--xmlui-borderRightColor-Admonition-markdown, var(--xmlui-borderHorizontalColor-Admonition-markdown, var(--xmlui-borderColor-Admonition-markdown)))", "borderVerticalColor-Admonition-markdown": "var(--xmlui-borderVerticalColor-Admonition-markdown, var(--xmlui-borderColor-Admonition-markdown))", "borderTopColor-Admonition-markdown": "var(--xmlui-borderTopColor-Admonition-markdown, var(--xmlui-borderVerticalColor-Admonition-markdown, var(--xmlui-borderColor-Admonition-markdown)))", "borderBottomColor-Admonition-markdown": "var(--xmlui-borderBottomColor-Admonition-markdown, var(--xmlui-borderVerticalColor-Admonition-markdown, var(--xmlui-borderColor-Admonition-markdown)))", "borderStartStartRadius-Admonition-markdown": "var(--xmlui-borderStartStartRadius-Admonition-markdown, var(--xmlui-borderRadius-Admonition-markdown))", "borderStartEndRadius-Admonition-markdown": "var(--xmlui-borderStartEndRadius-Admonition-markdown, var(--xmlui-borderRadius-Admonition-markdown))", "borderEndStartRadius-Admonition-markdown": "var(--xmlui-borderEndStartRadius-Admonition-markdown, var(--xmlui-borderRadius-Admonition-markdown))", "borderEndEndRadius-Admonition-markdown": "var(--xmlui-borderEndEndRadius-Admonition-markdown, var(--xmlui-borderRadius-Admonition-markdown))", "backgroundColor-Admonition-markdown": "var(--xmlui-backgroundColor-Admonition-markdown)", "borderRadius-Admonition-markdown": "var(--xmlui-borderRadius-Admonition-markdown)", "size-icon-Admonition-markdown": "var(--xmlui-size-icon-Admonition-markdown)", "marginTop-Admonition-markdown": "var(--xmlui-marginTop-Admonition-markdown)", "marginBottom-Admonition-markdown": "var(--xmlui-marginBottom-Admonition-markdown)", "marginLeft-content-Admonition-markdown": "var(--xmlui-marginLeft-content-Admonition-markdown)", "marginTop-Video-markdown": "var(--xmlui-marginTop-Video-markdown)", "marginBottom-Video-markdown": "var(--xmlui-marginBottom-Video-markdown)", "marginTop-Text-markdown": "var(--xmlui-marginTop-Text-markdown)", "marginBottom-Text-markdown": "var(--xmlui-marginBottom-Text-markdown)", "marginLeft-Text-markdown": "var(--xmlui-marginLeft-Text-markdown)", "marginRight-Text-markdown": "var(--xmlui-marginRight-Text-markdown)", "marginTop-H1-markdown": "var(--xmlui-marginTop-H1-markdown)", "marginBottom-H1-markdown": "var(--xmlui-marginBottom-H1-markdown)", "fontSize-H1-markdown": "var(--xmlui-fontSize-H1-markdown)", "marginTop-H2-markdown": "var(--xmlui-marginTop-H2-markdown)", "marginBottom-H2-markdown": "var(--xmlui-marginBottom-H2-markdown)", "marginTop-H3-markdown": "var(--xmlui-marginTop-H3-markdown)", "marginBottom-H3-markdown": "var(--xmlui-marginBottom-H3-markdown)", "marginTop-H4-markdown": "var(--xmlui-marginTop-H4-markdown)", "marginBottom-H4-markdown": "var(--xmlui-marginBottom-H4-markdown)", "marginTop-H5-markdown": "var(--xmlui-marginTop-H5-markdown)", "marginBottom-H5-markdown": "var(--xmlui-marginBottom-H5-markdown)", "marginTop-H6-markdown": "var(--xmlui-marginTop-H6-markdown)", "marginBottom-H6-markdown": "var(--xmlui-marginBottom-H6-markdown)", "marginTop-Image-markdown": "var(--xmlui-marginTop-Image-markdown)", "marginBottom-Image-markdown": "var(--xmlui-marginBottom-Image-markdown)", "marginLeft-Image-markdown": "var(--xmlui-marginLeft-Image-markdown)", "marginRight-Image-markdown": "var(--xmlui-marginRight-Image-markdown)", "backgroundColor-Admonition-markdown-info": "var(--xmlui-backgroundColor-Admonition-markdown-info)", "borderColor-Admonition-markdown-info": "var(--xmlui-borderColor-Admonition-markdown-info)", "backgroundColor-Admonition-markdown-warning": "var(--xmlui-backgroundColor-Admonition-markdown-warning)", "borderColor-Admonition-markdown-warning": "var(--xmlui-borderColor-Admonition-markdown-warning)", "backgroundColor-Admonition-markdown-danger": "var(--xmlui-backgroundColor-Admonition-markdown-danger)", "borderColor-Admonition-markdown-danger": "var(--xmlui-borderColor-Admonition-markdown-danger)", "backgroundColor-Admonition-markdown-note": "var(--xmlui-backgroundColor-Admonition-markdown-note)", "borderColor-Admonition-markdown-note": "var(--xmlui-borderColor-Admonition-markdown-note)", "backgroundColor-Admonition-markdown-tip": "var(--xmlui-backgroundColor-Admonition-markdown-tip)", "borderColor-Admonition-markdown-tip": "var(--xmlui-borderColor-Admonition-markdown-tip)", "borderColor-HorizontalRule-markdown": "var(--xmlui-borderColor-HorizontalRule-markdown)", "borderStyle-HorizontalRule-markdown": "var(--xmlui-borderStyle-HorizontalRule-markdown)", "borderWidth-HorizontalRule-markdown": "var(--xmlui-borderWidth-HorizontalRule-markdown)", "textColor-Table-markdown": "var(--xmlui-textColor-Table-markdown)", "backgroundColor-Table-markdown": "var(--xmlui-backgroundColor-Table-markdown)", "fontFamily-Table-markdown": "var(--xmlui-fontFamily-Table-markdown)", "fontSize-Table-markdown": "var(--xmlui-fontSize-Table-markdown)", "fontWeight-Table-markdown": "var(--xmlui-fontWeight-Table-markdown)", "textTransform-Table-markdown": "var(--xmlui-textTransform-Table-markdown)", "marginTop-Table-markdown": "var(--xmlui-marginTop-Table-markdown)", "marginBottom-Table-markdown": "var(--xmlui-marginBottom-Table-markdown)", "width-Table-markdown": "var(--xmlui-width-Table-markdown)", "border-Table-markdown": "var(--xmlui-border-Table-markdown)", "borderHorizontal-Table-markdown": "var(--xmlui-borderHorizontal-Table-markdown, var(--xmlui-border-Table-markdown))", "borderVertical-Table-markdown": "var(--xmlui-borderVertical-Table-markdown, var(--xmlui-border-Table-markdown))", "borderLeft-Table-markdown": "var(--xmlui-borderLeft-Table-markdown, var(--xmlui-borderHorizontal-Table-markdown, var(--xmlui-border-Table-markdown)))", "borderRight-Table-markdown": "var(--xmlui-borderRight-Table-markdown, var(--xmlui-borderHorizontal-Table-markdown, var(--xmlui-border-Table-markdown)))", "borderTop-Table-markdown": "var(--xmlui-borderTop-Table-markdown, var(--xmlui-borderVertical-Table-markdown, var(--xmlui-border-Table-markdown)))", "borderBottom-Table-markdown": "var(--xmlui-borderBottom-Table-markdown, var(--xmlui-borderVertical-Table-markdown, var(--xmlui-border-Table-markdown)))", "borderWidth-Table-markdown": "var(--xmlui-borderWidth-Table-markdown)", "borderHorizontalWidth-Table-markdown": "var(--xmlui-borderHorizontalWidth-Table-markdown, var(--xmlui-borderWidth-Table-markdown))", "borderLeftWidth-Table-markdown": "var(--xmlui-borderLeftWidth-Table-markdown, var(--xmlui-borderHorizontalWidth-Table-markdown, var(--xmlui-borderWidth-Table-markdown)))", "borderRightWidth-Table-markdown": "var(--xmlui-borderRightWidth-Table-markdown, var(--xmlui-borderHorizontalWidth-Table-markdown, var(--xmlui-borderWidth-Table-markdown)))", "borderVerticalWidth-Table-markdown": "var(--xmlui-borderVerticalWidth-Table-markdown, var(--xmlui-borderWidth-Table-markdown))", "borderTopWidth-Table-markdown": "var(--xmlui-borderTopWidth-Table-markdown, var(--xmlui-borderVerticalWidth-Table-markdown, var(--xmlui-borderWidth-Table-markdown)))", "borderBottomWidth-Table-markdown": "var(--xmlui-borderBottomWidth-Table-markdown, var(--xmlui-borderVerticalWidth-Table-markdown, var(--xmlui-borderWidth-Table-markdown)))", "borderStyle-Table-markdown": "var(--xmlui-borderStyle-Table-markdown)", "borderHorizontalStyle-Table-markdown": "var(--xmlui-borderHorizontalStyle-Table-markdown, var(--xmlui-borderStyle-Table-markdown))", "borderLeftStyle-Table-markdown": "var(--xmlui-borderLeftStyle-Table-markdown, var(--xmlui-borderHorizontalStyle-Table-markdown, var(--xmlui-borderStyle-Table-markdown)))", "borderRightStyle-Table-markdown": "var(--xmlui-borderRightStyle-Table-markdown, var(--xmlui-borderHorizontalStyle-Table-markdown, var(--xmlui-borderStyle-Table-markdown)))", "borderVerticalStyle-Table-markdown": "var(--xmlui-borderVerticalStyle-Table-markdown, var(--xmlui-borderStyle-Table-markdown))", "borderTopStyle-Table-markdown": "var(--xmlui-borderTopStyle-Table-markdown, var(--xmlui-borderVerticalStyle-Table-markdown, var(--xmlui-borderStyle-Table-markdown)))", "borderBottomStyle-Table-markdown": "var(--xmlui-borderBottomStyle-Table-markdown, var(--xmlui-borderVerticalStyle-Table-markdown, var(--xmlui-borderStyle-Table-markdown)))", "borderColor-Table-markdown": "var(--xmlui-borderColor-Table-markdown)", "borderHorizontalColor-Table-markdown": "var(--xmlui-borderHorizontalColor-Table-markdown, var(--xmlui-borderColor-Table-markdown))", "borderLeftColor-Table-markdown": "var(--xmlui-borderLeftColor-Table-markdown, var(--xmlui-borderHorizontalColor-Table-markdown, var(--xmlui-borderColor-Table-markdown)))", "borderRightColor-Table-markdown": "var(--xmlui-borderRightColor-Table-markdown, var(--xmlui-borderHorizontalColor-Table-markdown, var(--xmlui-borderColor-Table-markdown)))", "borderVerticalColor-Table-markdown": "var(--xmlui-borderVerticalColor-Table-markdown, var(--xmlui-borderColor-Table-markdown))", "borderTopColor-Table-markdown": "var(--xmlui-borderTopColor-Table-markdown, var(--xmlui-borderVerticalColor-Table-markdown, var(--xmlui-borderColor-Table-markdown)))", "borderBottomColor-Table-markdown": "var(--xmlui-borderBottomColor-Table-markdown, var(--xmlui-borderVerticalColor-Table-markdown, var(--xmlui-borderColor-Table-markdown)))", "borderStartStartRadius-Table-markdown": "var(--xmlui-borderStartStartRadius-Table-markdown, var(--xmlui-borderRadius-Table-markdown))", "borderStartEndRadius-Table-markdown": "var(--xmlui-borderStartEndRadius-Table-markdown, var(--xmlui-borderRadius-Table-markdown))", "borderEndStartRadius-Table-markdown": "var(--xmlui-borderEndStartRadius-Table-markdown, var(--xmlui-borderRadius-Table-markdown))", "borderEndEndRadius-Table-markdown": "var(--xmlui-borderEndEndRadius-Table-markdown, var(--xmlui-borderRadius-Table-markdown))", "padding-Table-markdown": "var(--xmlui-padding-Table-markdown)", "paddingHorizontal-Table-markdown": "var(--xmlui-paddingHorizontal-Table-markdown, var(--xmlui-padding-Table-markdown))", "paddingVertical-Table-markdown": "var(--xmlui-paddingVertical-Table-markdown, var(--xmlui-padding-Table-markdown))", "paddingLeft-Table-markdown": "var(--xmlui-paddingLeft-Table-markdown, var(--xmlui-paddingHorizontal-Table-markdown, var(--xmlui-padding-Table-markdown)))", "paddingRight-Table-markdown": "var(--xmlui-paddingRight-Table-markdown, var(--xmlui-paddingHorizontal-Table-markdown, var(--xmlui-padding-Table-markdown)))", "paddingTop-Table-markdown": "var(--xmlui-paddingTop-Table-markdown, var(--xmlui-paddingVertical-Table-markdown, var(--xmlui-padding-Table-markdown)))", "paddingBottom-Table-markdown": "var(--xmlui-paddingBottom-Table-markdown, var(--xmlui-paddingVertical-Table-markdown, var(--xmlui-padding-Table-markdown)))", "backgroundColor-Thead-markdown": "var(--xmlui-backgroundColor-Thead-markdown)", "textColor-Thead-markdown": "var(--xmlui-textColor-Thead-markdown)", "fontWeight-Thead-markdown": "var(--xmlui-fontWeight-Thead-markdown)", "fontSize-Thead-markdown": "var(--xmlui-fontSize-Thead-markdown)", "textTransform-Thead-markdown": "var(--xmlui-textTransform-Thead-markdown)", "border-HtmlThead": "var(--xmlui-border-HtmlThead)", "borderHorizontal-HtmlThead": "var(--xmlui-borderHorizontal-HtmlThead, var(--xmlui-border-HtmlThead))", "borderVertical-HtmlThead": "var(--xmlui-borderVertical-HtmlThead, var(--xmlui-border-HtmlThead))", "borderLeft-HtmlThead": "var(--xmlui-borderLeft-HtmlThead, var(--xmlui-borderHorizontal-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderRight-HtmlThead": "var(--xmlui-borderRight-HtmlThead, var(--xmlui-borderHorizontal-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderTop-HtmlThead": "var(--xmlui-borderTop-HtmlThead, var(--xmlui-borderVertical-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderBottom-HtmlThead": "var(--xmlui-borderBottom-HtmlThead, var(--xmlui-borderVertical-HtmlThead, var(--xmlui-border-HtmlThead)))", "borderWidth-HtmlThead": "var(--xmlui-borderWidth-HtmlThead)", "borderHorizontalWidth-HtmlThead": "var(--xmlui-borderHorizontalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead))", "borderLeftWidth-HtmlThead": "var(--xmlui-borderLeftWidth-HtmlThead, var(--xmlui-borderHorizontalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderRightWidth-HtmlThead": "var(--xmlui-borderRightWidth-HtmlThead, var(--xmlui-borderHorizontalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderVerticalWidth-HtmlThead": "var(--xmlui-borderVerticalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead))", "borderTopWidth-HtmlThead": "var(--xmlui-borderTopWidth-HtmlThead, var(--xmlui-borderVerticalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderBottomWidth-HtmlThead": "var(--xmlui-borderBottomWidth-HtmlThead, var(--xmlui-borderVerticalWidth-HtmlThead, var(--xmlui-borderWidth-HtmlThead)))", "borderStyle-HtmlThead": "var(--xmlui-borderStyle-HtmlThead)", "borderHorizontalStyle-HtmlThead": "var(--xmlui-borderHorizontalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead))", "borderLeftStyle-HtmlThead": "var(--xmlui-borderLeftStyle-HtmlThead, var(--xmlui-borderHorizontalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderRightStyle-HtmlThead": "var(--xmlui-borderRightStyle-HtmlThead, var(--xmlui-borderHorizontalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderVerticalStyle-HtmlThead": "var(--xmlui-borderVerticalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead))", "borderTopStyle-HtmlThead": "var(--xmlui-borderTopStyle-HtmlThead, var(--xmlui-borderVerticalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderBottomStyle-HtmlThead": "var(--xmlui-borderBottomStyle-HtmlThead, var(--xmlui-borderVerticalStyle-HtmlThead, var(--xmlui-borderStyle-HtmlThead)))", "borderColor-HtmlThead": "var(--xmlui-borderColor-HtmlThead)", "borderHorizontalColor-HtmlThead": "var(--xmlui-borderHorizontalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead))", "borderLeftColor-HtmlThead": "var(--xmlui-borderLeftColor-HtmlThead, var(--xmlui-borderHorizontalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderRightColor-HtmlThead": "var(--xmlui-borderRightColor-HtmlThead, var(--xmlui-borderHorizontalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderVerticalColor-HtmlThead": "var(--xmlui-borderVerticalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead))", "borderTopColor-HtmlThead": "var(--xmlui-borderTopColor-HtmlThead, var(--xmlui-borderVerticalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderBottomColor-HtmlThead": "var(--xmlui-borderBottomColor-HtmlThead, var(--xmlui-borderVerticalColor-HtmlThead, var(--xmlui-borderColor-HtmlThead)))", "borderStartStartRadius-HtmlThead": "var(--xmlui-borderStartStartRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "borderStartEndRadius-HtmlThead": "var(--xmlui-borderStartEndRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "borderEndStartRadius-HtmlThead": "var(--xmlui-borderEndStartRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "borderEndEndRadius-HtmlThead": "var(--xmlui-borderEndEndRadius-HtmlThead, var(--xmlui-borderRadius-HtmlThead))", "padding-HtmlThead": "var(--xmlui-padding-HtmlThead)", "paddingHorizontal-HtmlThead": "var(--xmlui-paddingHorizontal-HtmlThead, var(--xmlui-padding-HtmlThead))", "paddingVertical-HtmlThead": "var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead))", "paddingLeft-HtmlThead": "var(--xmlui-paddingLeft-HtmlThead, var(--xmlui-paddingHorizontal-HtmlThead, var(--xmlui-padding-HtmlThead)))", "paddingRight-HtmlThead": "var(--xmlui-paddingRight-HtmlThead, var(--xmlui-paddingHorizontal-HtmlThead, var(--xmlui-padding-HtmlThead)))", "paddingTop-HtmlThead": "var(--xmlui-paddingTop-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)))", "paddingBottom-HtmlThead": "var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)))", "backgroundColor-Tbody-markdown": "var(--xmlui-backgroundColor-Tbody-markdown)", "textColor-Tbody-markdown": "var(--xmlui-textColor-Tbody-markdown)", "textAlign-Tbody-markdown": "var(--xmlui-textAlign-Tbody-markdown)", "verticalAlignment-Tbody-markdown": "var(--xmlui-verticalAlignment-Tbody-markdown)", "textTransform-Tbody-markdown": "var(--xmlui-textTransform-Tbody-markdown)", "backgroundColor-Tfoot-markdown": "var(--xmlui-backgroundColor-Tfoot-markdown)", "textColor-Tfoot-markdown": "var(--xmlui-textColor-Tfoot-markdown)", "backgroundColor-Th-markdown": "var(--xmlui-backgroundColor-Th-markdown)", "textColor-Th-markdown": "var(--xmlui-textColor-Th-markdown)", "fontWeight-Th-markdown": "var(--xmlui-fontWeight-Th-markdown)", "fontSize-Th-markdown": "var(--xmlui-fontSize-Th-markdown)", "backgroundColor-Th-markdown--hover": "var(--xmlui-backgroundColor-Th-markdown--hover)", "border-Th-markdown": "var(--xmlui-border-Th-markdown)", "borderHorizontal-Th-markdown": "var(--xmlui-borderHorizontal-Th-markdown, var(--xmlui-border-Th-markdown))", "borderVertical-Th-markdown": "var(--xmlui-borderVertical-Th-markdown, var(--xmlui-border-Th-markdown))", "borderLeft-Th-markdown": "var(--xmlui-borderLeft-Th-markdown, var(--xmlui-borderHorizontal-Th-markdown, var(--xmlui-border-Th-markdown)))", "borderRight-Th-markdown": "var(--xmlui-borderRight-Th-markdown, var(--xmlui-borderHorizontal-Th-markdown, var(--xmlui-border-Th-markdown)))", "borderTop-Th-markdown": "var(--xmlui-borderTop-Th-markdown, var(--xmlui-borderVertical-Th-markdown, var(--xmlui-border-Th-markdown)))", "borderBottom-Th-markdown": "var(--xmlui-borderBottom-Th-markdown, var(--xmlui-borderVertical-Th-markdown, var(--xmlui-border-Th-markdown)))", "borderWidth-Th-markdown": "var(--xmlui-borderWidth-Th-markdown)", "borderHorizontalWidth-Th-markdown": "var(--xmlui-borderHorizontalWidth-Th-markdown, var(--xmlui-borderWidth-Th-markdown))", "borderLeftWidth-Th-markdown": "var(--xmlui-borderLeftWidth-Th-markdown, var(--xmlui-borderHorizontalWidth-Th-markdown, var(--xmlui-borderWidth-Th-markdown)))", "borderRightWidth-Th-markdown": "var(--xmlui-borderRightWidth-Th-markdown, var(--xmlui-borderHorizontalWidth-Th-markdown, var(--xmlui-borderWidth-Th-markdown)))", "borderVerticalWidth-Th-markdown": "var(--xmlui-borderVerticalWidth-Th-markdown, var(--xmlui-borderWidth-Th-markdown))", "borderTopWidth-Th-markdown": "var(--xmlui-borderTopWidth-Th-markdown, var(--xmlui-borderVerticalWidth-Th-markdown, var(--xmlui-borderWidth-Th-markdown)))", "borderBottomWidth-Th-markdown": "var(--xmlui-borderBottomWidth-Th-markdown, var(--xmlui-borderVerticalWidth-Th-markdown, var(--xmlui-borderWidth-Th-markdown)))", "borderStyle-Th-markdown": "var(--xmlui-borderStyle-Th-markdown)", "borderHorizontalStyle-Th-markdown": "var(--xmlui-borderHorizontalStyle-Th-markdown, var(--xmlui-borderStyle-Th-markdown))", "borderLeftStyle-Th-markdown": "var(--xmlui-borderLeftStyle-Th-markdown, var(--xmlui-borderHorizontalStyle-Th-markdown, var(--xmlui-borderStyle-Th-markdown)))", "borderRightStyle-Th-markdown": "var(--xmlui-borderRightStyle-Th-markdown, var(--xmlui-borderHorizontalStyle-Th-markdown, var(--xmlui-borderStyle-Th-markdown)))", "borderVerticalStyle-Th-markdown": "var(--xmlui-borderVerticalStyle-Th-markdown, var(--xmlui-borderStyle-Th-markdown))", "borderTopStyle-Th-markdown": "var(--xmlui-borderTopStyle-Th-markdown, var(--xmlui-borderVerticalStyle-Th-markdown, var(--xmlui-borderStyle-Th-markdown)))", "borderBottomStyle-Th-markdown": "var(--xmlui-borderBottomStyle-Th-markdown, var(--xmlui-borderVerticalStyle-Th-markdown, var(--xmlui-borderStyle-Th-markdown)))", "borderColor-Th-markdown": "var(--xmlui-borderColor-Th-markdown)", "borderHorizontalColor-Th-markdown": "var(--xmlui-borderHorizontalColor-Th-markdown, var(--xmlui-borderColor-Th-markdown))", "borderLeftColor-Th-markdown": "var(--xmlui-borderLeftColor-Th-markdown, var(--xmlui-borderHorizontalColor-Th-markdown, var(--xmlui-borderColor-Th-markdown)))", "borderRightColor-Th-markdown": "var(--xmlui-borderRightColor-Th-markdown, var(--xmlui-borderHorizontalColor-Th-markdown, var(--xmlui-borderColor-Th-markdown)))", "borderVerticalColor-Th-markdown": "var(--xmlui-borderVerticalColor-Th-markdown, var(--xmlui-borderColor-Th-markdown))", "borderTopColor-Th-markdown": "var(--xmlui-borderTopColor-Th-markdown, var(--xmlui-borderVerticalColor-Th-markdown, var(--xmlui-borderColor-Th-markdown)))", "borderBottomColor-Th-markdown": "var(--xmlui-borderBottomColor-Th-markdown, var(--xmlui-borderVerticalColor-Th-markdown, var(--xmlui-borderColor-Th-markdown)))", "borderStartStartRadius-Th-markdown": "var(--xmlui-borderStartStartRadius-Th-markdown, var(--xmlui-borderRadius-Th-markdown))", "borderStartEndRadius-Th-markdown": "var(--xmlui-borderStartEndRadius-Th-markdown, var(--xmlui-borderRadius-Th-markdown))", "borderEndStartRadius-Th-markdown": "var(--xmlui-borderEndStartRadius-Th-markdown, var(--xmlui-borderRadius-Th-markdown))", "borderEndEndRadius-Th-markdown": "var(--xmlui-borderEndEndRadius-Th-markdown, var(--xmlui-borderRadius-Th-markdown))", "padding-Th-markdown": "var(--xmlui-padding-Th-markdown)", "paddingHorizontal-Th-markdown": "var(--xmlui-paddingHorizontal-Th-markdown, var(--xmlui-padding-Th-markdown))", "paddingVertical-Th-markdown": "var(--xmlui-paddingVertical-Th-markdown, var(--xmlui-padding-Th-markdown))", "paddingLeft-Th-markdown": "var(--xmlui-paddingLeft-Th-markdown, var(--xmlui-paddingHorizontal-Th-markdown, var(--xmlui-padding-Th-markdown)))", "paddingRight-Th-markdown": "var(--xmlui-paddingRight-Th-markdown, var(--xmlui-paddingHorizontal-Th-markdown, var(--xmlui-padding-Th-markdown)))", "paddingTop-Th-markdown": "var(--xmlui-paddingTop-Th-markdown, var(--xmlui-paddingVertical-Th-markdown, var(--xmlui-padding-Th-markdown)))", "paddingBottom-Th-markdown": "var(--xmlui-paddingBottom-Th-markdown, var(--xmlui-paddingVertical-Th-markdown, var(--xmlui-padding-Th-markdown)))", "backgroundColor-Tr-markdown": "var(--xmlui-backgroundColor-Tr-markdown)", "backgroundColor-Tr-markdown--hover": "var(--xmlui-backgroundColor-Tr-markdown--hover)", "backgroundColor-even-Tr-markdown": "var(--xmlui-backgroundColor-even-Tr-markdown)", "textColor-Tr-markdown": "var(--xmlui-textColor-Tr-markdown)", "textColor-Tr-markdown--hover": "var(--xmlui-textColor-Tr-markdown--hover)", "fontSize-Tr-markdown": "var(--xmlui-fontSize-Tr-markdown)", "fontWeight-Tr-markdown": "var(--xmlui-fontWeight-Tr-markdown)", "border-Tr-markdown": "var(--xmlui-border-Tr-markdown)", "borderHorizontal-Tr-markdown": "var(--xmlui-borderHorizontal-Tr-markdown, var(--xmlui-border-Tr-markdown))", "borderVertical-Tr-markdown": "var(--xmlui-borderVertical-Tr-markdown, var(--xmlui-border-Tr-markdown))", "borderLeft-Tr-markdown": "var(--xmlui-borderLeft-Tr-markdown, var(--xmlui-borderHorizontal-Tr-markdown, var(--xmlui-border-Tr-markdown)))", "borderRight-Tr-markdown": "var(--xmlui-borderRight-Tr-markdown, var(--xmlui-borderHorizontal-Tr-markdown, var(--xmlui-border-Tr-markdown)))", "borderTop-Tr-markdown": "var(--xmlui-borderTop-Tr-markdown, var(--xmlui-borderVertical-Tr-markdown, var(--xmlui-border-Tr-markdown)))", "borderBottom-Tr-markdown": "var(--xmlui-borderBottom-Tr-markdown, var(--xmlui-borderVertical-Tr-markdown, var(--xmlui-border-Tr-markdown)))", "borderWidth-Tr-markdown": "var(--xmlui-borderWidth-Tr-markdown)", "borderHorizontalWidth-Tr-markdown": "var(--xmlui-borderHorizontalWidth-Tr-markdown, var(--xmlui-borderWidth-Tr-markdown))", "borderLeftWidth-Tr-markdown": "var(--xmlui-borderLeftWidth-Tr-markdown, var(--xmlui-borderHorizontalWidth-Tr-markdown, var(--xmlui-borderWidth-Tr-markdown)))", "borderRightWidth-Tr-markdown": "var(--xmlui-borderRightWidth-Tr-markdown, var(--xmlui-borderHorizontalWidth-Tr-markdown, var(--xmlui-borderWidth-Tr-markdown)))", "borderVerticalWidth-Tr-markdown": "var(--xmlui-borderVerticalWidth-Tr-markdown, var(--xmlui-borderWidth-Tr-markdown))", "borderTopWidth-Tr-markdown": "var(--xmlui-borderTopWidth-Tr-markdown, var(--xmlui-borderVerticalWidth-Tr-markdown, var(--xmlui-borderWidth-Tr-markdown)))", "borderBottomWidth-Tr-markdown": "var(--xmlui-borderBottomWidth-Tr-markdown, var(--xmlui-borderVerticalWidth-Tr-markdown, var(--xmlui-borderWidth-Tr-markdown)))", "borderStyle-Tr-markdown": "var(--xmlui-borderStyle-Tr-markdown)", "borderHorizontalStyle-Tr-markdown": "var(--xmlui-borderHorizontalStyle-Tr-markdown, var(--xmlui-borderStyle-Tr-markdown))", "borderLeftStyle-Tr-markdown": "var(--xmlui-borderLeftStyle-Tr-markdown, var(--xmlui-borderHorizontalStyle-Tr-markdown, var(--xmlui-borderStyle-Tr-markdown)))", "borderRightStyle-Tr-markdown": "var(--xmlui-borderRightStyle-Tr-markdown, var(--xmlui-borderHorizontalStyle-Tr-markdown, var(--xmlui-borderStyle-Tr-markdown)))", "borderVerticalStyle-Tr-markdown": "var(--xmlui-borderVerticalStyle-Tr-markdown, var(--xmlui-borderStyle-Tr-markdown))", "borderTopStyle-Tr-markdown": "var(--xmlui-borderTopStyle-Tr-markdown, var(--xmlui-borderVerticalStyle-Tr-markdown, var(--xmlui-borderStyle-Tr-markdown)))", "borderBottomStyle-Tr-markdown": "var(--xmlui-borderBottomStyle-Tr-markdown, var(--xmlui-borderVerticalStyle-Tr-markdown, var(--xmlui-borderStyle-Tr-markdown)))", "borderColor-Tr-markdown": "var(--xmlui-borderColor-Tr-markdown)", "borderHorizontalColor-Tr-markdown": "var(--xmlui-borderHorizontalColor-Tr-markdown, var(--xmlui-borderColor-Tr-markdown))", "borderLeftColor-Tr-markdown": "var(--xmlui-borderLeftColor-Tr-markdown, var(--xmlui-borderHorizontalColor-Tr-markdown, var(--xmlui-borderColor-Tr-markdown)))", "borderRightColor-Tr-markdown": "var(--xmlui-borderRightColor-Tr-markdown, var(--xmlui-borderHorizontalColor-Tr-markdown, var(--xmlui-borderColor-Tr-markdown)))", "borderVerticalColor-Tr-markdown": "var(--xmlui-borderVerticalColor-Tr-markdown, var(--xmlui-borderColor-Tr-markdown))", "borderTopColor-Tr-markdown": "var(--xmlui-borderTopColor-Tr-markdown, var(--xmlui-borderVerticalColor-Tr-markdown, var(--xmlui-borderColor-Tr-markdown)))", "borderBottomColor-Tr-markdown": "var(--xmlui-borderBottomColor-Tr-markdown, var(--xmlui-borderVerticalColor-Tr-markdown, var(--xmlui-borderColor-Tr-markdown)))", "borderStartStartRadius-Tr-markdown": "var(--xmlui-borderStartStartRadius-Tr-markdown, var(--xmlui-borderRadius-Tr-markdown))", "borderStartEndRadius-Tr-markdown": "var(--xmlui-borderStartEndRadius-Tr-markdown, var(--xmlui-borderRadius-Tr-markdown))", "borderEndStartRadius-Tr-markdown": "var(--xmlui-borderEndStartRadius-Tr-markdown, var(--xmlui-borderRadius-Tr-markdown))", "borderEndEndRadius-Tr-markdown": "var(--xmlui-borderEndEndRadius-Tr-markdown, var(--xmlui-borderRadius-Tr-markdown))", "backgroundColor-HtmlTd": "var(--xmlui-backgroundColor-HtmlTd)", "text-align-HtmlTd": "var(--xmlui-text-align-HtmlTd)", "verticalAlignment-HtmlTd": "var(--xmlui-verticalAlignment-HtmlTd)", "fontSize-HtmlTd": "var(--xmlui-fontSize-HtmlTd)", "fontWeight-HtmlTd": "var(--xmlui-fontWeight-HtmlTd)", "border-HtmlTd": "var(--xmlui-border-HtmlTd)", "borderHorizontal-HtmlTd": "var(--xmlui-borderHorizontal-HtmlTd, var(--xmlui-border-HtmlTd))", "borderVertical-HtmlTd": "var(--xmlui-borderVertical-HtmlTd, var(--xmlui-border-HtmlTd))", "borderLeft-HtmlTd": "var(--xmlui-borderLeft-HtmlTd, var(--xmlui-borderHorizontal-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderRight-HtmlTd": "var(--xmlui-borderRight-HtmlTd, var(--xmlui-borderHorizontal-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderTop-HtmlTd": "var(--xmlui-borderTop-HtmlTd, var(--xmlui-borderVertical-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderBottom-HtmlTd": "var(--xmlui-borderBottom-HtmlTd, var(--xmlui-borderVertical-HtmlTd, var(--xmlui-border-HtmlTd)))", "borderWidth-HtmlTd": "var(--xmlui-borderWidth-HtmlTd)", "borderHorizontalWidth-HtmlTd": "var(--xmlui-borderHorizontalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd))", "borderLeftWidth-HtmlTd": "var(--xmlui-borderLeftWidth-HtmlTd, var(--xmlui-borderHorizontalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderRightWidth-HtmlTd": "var(--xmlui-borderRightWidth-HtmlTd, var(--xmlui-borderHorizontalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderVerticalWidth-HtmlTd": "var(--xmlui-borderVerticalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd))", "borderTopWidth-HtmlTd": "var(--xmlui-borderTopWidth-HtmlTd, var(--xmlui-borderVerticalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderBottomWidth-HtmlTd": "var(--xmlui-borderBottomWidth-HtmlTd, var(--xmlui-borderVerticalWidth-HtmlTd, var(--xmlui-borderWidth-HtmlTd)))", "borderStyle-HtmlTd": "var(--xmlui-borderStyle-HtmlTd)", "borderHorizontalStyle-HtmlTd": "var(--xmlui-borderHorizontalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd))", "borderLeftStyle-HtmlTd": "var(--xmlui-borderLeftStyle-HtmlTd, var(--xmlui-borderHorizontalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderRightStyle-HtmlTd": "var(--xmlui-borderRightStyle-HtmlTd, var(--xmlui-borderHorizontalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderVerticalStyle-HtmlTd": "var(--xmlui-borderVerticalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd))", "borderTopStyle-HtmlTd": "var(--xmlui-borderTopStyle-HtmlTd, var(--xmlui-borderVerticalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderBottomStyle-HtmlTd": "var(--xmlui-borderBottomStyle-HtmlTd, var(--xmlui-borderVerticalStyle-HtmlTd, var(--xmlui-borderStyle-HtmlTd)))", "borderColor-HtmlTd": "var(--xmlui-borderColor-HtmlTd)", "borderHorizontalColor-HtmlTd": "var(--xmlui-borderHorizontalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd))", "borderLeftColor-HtmlTd": "var(--xmlui-borderLeftColor-HtmlTd, var(--xmlui-borderHorizontalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderRightColor-HtmlTd": "var(--xmlui-borderRightColor-HtmlTd, var(--xmlui-borderHorizontalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderVerticalColor-HtmlTd": "var(--xmlui-borderVerticalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd))", "borderTopColor-HtmlTd": "var(--xmlui-borderTopColor-HtmlTd, var(--xmlui-borderVerticalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderBottomColor-HtmlTd": "var(--xmlui-borderBottomColor-HtmlTd, var(--xmlui-borderVerticalColor-HtmlTd, var(--xmlui-borderColor-HtmlTd)))", "borderStartStartRadius-HtmlTd": "var(--xmlui-borderStartStartRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "borderStartEndRadius-HtmlTd": "var(--xmlui-borderStartEndRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "borderEndStartRadius-HtmlTd": "var(--xmlui-borderEndStartRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "borderEndEndRadius-HtmlTd": "var(--xmlui-borderEndEndRadius-HtmlTd, var(--xmlui-borderRadius-HtmlTd))", "padding-HtmlTd": "var(--xmlui-padding-HtmlTd)", "paddingHorizontal-HtmlTd": "var(--xmlui-paddingHorizontal-HtmlTd, var(--xmlui-padding-HtmlTd))", "paddingVertical-HtmlTd": "var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd))", "paddingLeft-HtmlTd": "var(--xmlui-paddingLeft-HtmlTd, var(--xmlui-paddingHorizontal-HtmlTd, var(--xmlui-padding-HtmlTd)))", "paddingRight-HtmlTd": "var(--xmlui-paddingRight-HtmlTd, var(--xmlui-paddingHorizontal-HtmlTd, var(--xmlui-padding-HtmlTd)))", "paddingTop-HtmlTd": "var(--xmlui-paddingTop-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)))", "paddingBottom-HtmlTd": "var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)))", "border-Ol-markdown": "var(--xmlui-border-Ol-markdown)", "borderHorizontal-Ol-markdown": "var(--xmlui-borderHorizontal-Ol-markdown, var(--xmlui-border-Ol-markdown))", "borderVertical-Ol-markdown": "var(--xmlui-borderVertical-Ol-markdown, var(--xmlui-border-Ol-markdown))", "borderLeft-Ol-markdown": "var(--xmlui-borderLeft-Ol-markdown, var(--xmlui-borderHorizontal-Ol-markdown, var(--xmlui-border-Ol-markdown)))", "borderRight-Ol-markdown": "var(--xmlui-borderRight-Ol-markdown, var(--xmlui-borderHorizontal-Ol-markdown, var(--xmlui-border-Ol-markdown)))", "borderTop-Ol-markdown": "var(--xmlui-borderTop-Ol-markdown, var(--xmlui-borderVertical-Ol-markdown, var(--xmlui-border-Ol-markdown)))", "borderBottom-Ol-markdown": "var(--xmlui-borderBottom-Ol-markdown, var(--xmlui-borderVertical-Ol-markdown, var(--xmlui-border-Ol-markdown)))", "borderWidth-Ol-markdown": "var(--xmlui-borderWidth-Ol-markdown)", "borderHorizontalWidth-Ol-markdown": "var(--xmlui-borderHorizontalWidth-Ol-markdown, var(--xmlui-borderWidth-Ol-markdown))", "borderLeftWidth-Ol-markdown": "var(--xmlui-borderLeftWidth-Ol-markdown, var(--xmlui-borderHorizontalWidth-Ol-markdown, var(--xmlui-borderWidth-Ol-markdown)))", "borderRightWidth-Ol-markdown": "var(--xmlui-borderRightWidth-Ol-markdown, var(--xmlui-borderHorizontalWidth-Ol-markdown, var(--xmlui-borderWidth-Ol-markdown)))", "borderVerticalWidth-Ol-markdown": "var(--xmlui-borderVerticalWidth-Ol-markdown, var(--xmlui-borderWidth-Ol-markdown))", "borderTopWidth-Ol-markdown": "var(--xmlui-borderTopWidth-Ol-markdown, var(--xmlui-borderVerticalWidth-Ol-markdown, var(--xmlui-borderWidth-Ol-markdown)))", "borderBottomWidth-Ol-markdown": "var(--xmlui-borderBottomWidth-Ol-markdown, var(--xmlui-borderVerticalWidth-Ol-markdown, var(--xmlui-borderWidth-Ol-markdown)))", "borderStyle-Ol-markdown": "var(--xmlui-borderStyle-Ol-markdown)", "borderHorizontalStyle-Ol-markdown": "var(--xmlui-borderHorizontalStyle-Ol-markdown, var(--xmlui-borderStyle-Ol-markdown))", "borderLeftStyle-Ol-markdown": "var(--xmlui-borderLeftStyle-Ol-markdown, var(--xmlui-borderHorizontalStyle-Ol-markdown, var(--xmlui-borderStyle-Ol-markdown)))", "borderRightStyle-Ol-markdown": "var(--xmlui-borderRightStyle-Ol-markdown, var(--xmlui-borderHorizontalStyle-Ol-markdown, var(--xmlui-borderStyle-Ol-markdown)))", "borderVerticalStyle-Ol-markdown": "var(--xmlui-borderVerticalStyle-Ol-markdown, var(--xmlui-borderStyle-Ol-markdown))", "borderTopStyle-Ol-markdown": "var(--xmlui-borderTopStyle-Ol-markdown, var(--xmlui-borderVerticalStyle-Ol-markdown, var(--xmlui-borderStyle-Ol-markdown)))", "borderBottomStyle-Ol-markdown": "var(--xmlui-borderBottomStyle-Ol-markdown, var(--xmlui-borderVerticalStyle-Ol-markdown, var(--xmlui-borderStyle-Ol-markdown)))", "borderColor-Ol-markdown": "var(--xmlui-borderColor-Ol-markdown)", "borderHorizontalColor-Ol-markdown": "var(--xmlui-borderHorizontalColor-Ol-markdown, var(--xmlui-borderColor-Ol-markdown))", "borderLeftColor-Ol-markdown": "var(--xmlui-borderLeftColor-Ol-markdown, var(--xmlui-borderHorizontalColor-Ol-markdown, var(--xmlui-borderColor-Ol-markdown)))", "borderRightColor-Ol-markdown": "var(--xmlui-borderRightColor-Ol-markdown, var(--xmlui-borderHorizontalColor-Ol-markdown, var(--xmlui-borderColor-Ol-markdown)))", "borderVerticalColor-Ol-markdown": "var(--xmlui-borderVerticalColor-Ol-markdown, var(--xmlui-borderColor-Ol-markdown))", "borderTopColor-Ol-markdown": "var(--xmlui-borderTopColor-Ol-markdown, var(--xmlui-borderVerticalColor-Ol-markdown, var(--xmlui-borderColor-Ol-markdown)))", "borderBottomColor-Ol-markdown": "var(--xmlui-borderBottomColor-Ol-markdown, var(--xmlui-borderVerticalColor-Ol-markdown, var(--xmlui-borderColor-Ol-markdown)))", "borderStartStartRadius-Ol-markdown": "var(--xmlui-borderStartStartRadius-Ol-markdown, var(--xmlui-borderRadius-Ol-markdown))", "borderStartEndRadius-Ol-markdown": "var(--xmlui-borderStartEndRadius-Ol-markdown, var(--xmlui-borderRadius-Ol-markdown))", "borderEndStartRadius-Ol-markdown": "var(--xmlui-borderEndStartRadius-Ol-markdown, var(--xmlui-borderRadius-Ol-markdown))", "borderEndEndRadius-Ol-markdown": "var(--xmlui-borderEndEndRadius-Ol-markdown, var(--xmlui-borderRadius-Ol-markdown))", "padding-Ol-markdown": "var(--xmlui-padding-Ol-markdown)", "paddingHorizontal-Ol-markdown": "var(--xmlui-paddingHorizontal-Ol-markdown, var(--xmlui-padding-Ol-markdown))", "paddingVertical-Ol-markdown": "var(--xmlui-paddingVertical-Ol-markdown, var(--xmlui-padding-Ol-markdown))", "paddingLeft-Ol-markdown": "var(--xmlui-paddingLeft-Ol-markdown, var(--xmlui-paddingHorizontal-Ol-markdown, var(--xmlui-padding-Ol-markdown)))", "paddingRight-Ol-markdown": "var(--xmlui-paddingRight-Ol-markdown, var(--xmlui-paddingHorizontal-Ol-markdown, var(--xmlui-padding-Ol-markdown)))", "paddingTop-Ol-markdown": "var(--xmlui-paddingTop-Ol-markdown, var(--xmlui-paddingVertical-Ol-markdown, var(--xmlui-padding-Ol-markdown)))", "paddingBottom-Ol-markdown": "var(--xmlui-paddingBottom-Ol-markdown, var(--xmlui-paddingVertical-Ol-markdown, var(--xmlui-padding-Ol-markdown)))", "marginTop-Ol-markdown": "var(--xmlui-marginTop-Ol-markdown)", "marginBottom-Ol-markdown": "var(--xmlui-marginBottom-Ol-markdown)", "border-Ul-markdown": "var(--xmlui-border-Ul-markdown)", "borderHorizontal-Ul-markdown": "var(--xmlui-borderHorizontal-Ul-markdown, var(--xmlui-border-Ul-markdown))", "borderVertical-Ul-markdown": "var(--xmlui-borderVertical-Ul-markdown, var(--xmlui-border-Ul-markdown))", "borderLeft-Ul-markdown": "var(--xmlui-borderLeft-Ul-markdown, var(--xmlui-borderHorizontal-Ul-markdown, var(--xmlui-border-Ul-markdown)))", "borderRight-Ul-markdown": "var(--xmlui-borderRight-Ul-markdown, var(--xmlui-borderHorizontal-Ul-markdown, var(--xmlui-border-Ul-markdown)))", "borderTop-Ul-markdown": "var(--xmlui-borderTop-Ul-markdown, var(--xmlui-borderVertical-Ul-markdown, var(--xmlui-border-Ul-markdown)))", "borderBottom-Ul-markdown": "var(--xmlui-borderBottom-Ul-markdown, var(--xmlui-borderVertical-Ul-markdown, var(--xmlui-border-Ul-markdown)))", "borderWidth-Ul-markdown": "var(--xmlui-borderWidth-Ul-markdown)", "borderHorizontalWidth-Ul-markdown": "var(--xmlui-borderHorizontalWidth-Ul-markdown, var(--xmlui-borderWidth-Ul-markdown))", "borderLeftWidth-Ul-markdown": "var(--xmlui-borderLeftWidth-Ul-markdown, var(--xmlui-borderHorizontalWidth-Ul-markdown, var(--xmlui-borderWidth-Ul-markdown)))", "borderRightWidth-Ul-markdown": "var(--xmlui-borderRightWidth-Ul-markdown, var(--xmlui-borderHorizontalWidth-Ul-markdown, var(--xmlui-borderWidth-Ul-markdown)))", "borderVerticalWidth-Ul-markdown": "var(--xmlui-borderVerticalWidth-Ul-markdown, var(--xmlui-borderWidth-Ul-markdown))", "borderTopWidth-Ul-markdown": "var(--xmlui-borderTopWidth-Ul-markdown, var(--xmlui-borderVerticalWidth-Ul-markdown, var(--xmlui-borderWidth-Ul-markdown)))", "borderBottomWidth-Ul-markdown": "var(--xmlui-borderBottomWidth-Ul-markdown, var(--xmlui-borderVerticalWidth-Ul-markdown, var(--xmlui-borderWidth-Ul-markdown)))", "borderStyle-Ul-markdown": "var(--xmlui-borderStyle-Ul-markdown)", "borderHorizontalStyle-Ul-markdown": "var(--xmlui-borderHorizontalStyle-Ul-markdown, var(--xmlui-borderStyle-Ul-markdown))", "borderLeftStyle-Ul-markdown": "var(--xmlui-borderLeftStyle-Ul-markdown, var(--xmlui-borderHorizontalStyle-Ul-markdown, var(--xmlui-borderStyle-Ul-markdown)))", "borderRightStyle-Ul-markdown": "var(--xmlui-borderRightStyle-Ul-markdown, var(--xmlui-borderHorizontalStyle-Ul-markdown, var(--xmlui-borderStyle-Ul-markdown)))", "borderVerticalStyle-Ul-markdown": "var(--xmlui-borderVerticalStyle-Ul-markdown, var(--xmlui-borderStyle-Ul-markdown))", "borderTopStyle-Ul-markdown": "var(--xmlui-borderTopStyle-Ul-markdown, var(--xmlui-borderVerticalStyle-Ul-markdown, var(--xmlui-borderStyle-Ul-markdown)))", "borderBottomStyle-Ul-markdown": "var(--xmlui-borderBottomStyle-Ul-markdown, var(--xmlui-borderVerticalStyle-Ul-markdown, var(--xmlui-borderStyle-Ul-markdown)))", "borderColor-Ul-markdown": "var(--xmlui-borderColor-Ul-markdown)", "borderHorizontalColor-Ul-markdown": "var(--xmlui-borderHorizontalColor-Ul-markdown, var(--xmlui-borderColor-Ul-markdown))", "borderLeftColor-Ul-markdown": "var(--xmlui-borderLeftColor-Ul-markdown, var(--xmlui-borderHorizontalColor-Ul-markdown, var(--xmlui-borderColor-Ul-markdown)))", "borderRightColor-Ul-markdown": "var(--xmlui-borderRightColor-Ul-markdown, var(--xmlui-borderHorizontalColor-Ul-markdown, var(--xmlui-borderColor-Ul-markdown)))", "borderVerticalColor-Ul-markdown": "var(--xmlui-borderVerticalColor-Ul-markdown, var(--xmlui-borderColor-Ul-markdown))", "borderTopColor-Ul-markdown": "var(--xmlui-borderTopColor-Ul-markdown, var(--xmlui-borderVerticalColor-Ul-markdown, var(--xmlui-borderColor-Ul-markdown)))", "borderBottomColor-Ul-markdown": "var(--xmlui-borderBottomColor-Ul-markdown, var(--xmlui-borderVerticalColor-Ul-markdown, var(--xmlui-borderColor-Ul-markdown)))", "borderStartStartRadius-Ul-markdown": "var(--xmlui-borderStartStartRadius-Ul-markdown, var(--xmlui-borderRadius-Ul-markdown))", "borderStartEndRadius-Ul-markdown": "var(--xmlui-borderStartEndRadius-Ul-markdown, var(--xmlui-borderRadius-Ul-markdown))", "borderEndStartRadius-Ul-markdown": "var(--xmlui-borderEndStartRadius-Ul-markdown, var(--xmlui-borderRadius-Ul-markdown))", "borderEndEndRadius-Ul-markdown": "var(--xmlui-borderEndEndRadius-Ul-markdown, var(--xmlui-borderRadius-Ul-markdown))", "padding-Ul-markdown": "var(--xmlui-padding-Ul-markdown)", "paddingHorizontal-Ul-markdown": "var(--xmlui-paddingHorizontal-Ul-markdown, var(--xmlui-padding-Ul-markdown))", "paddingVertical-Ul-markdown": "var(--xmlui-paddingVertical-Ul-markdown, var(--xmlui-padding-Ul-markdown))", "paddingLeft-Ul-markdown": "var(--xmlui-paddingLeft-Ul-markdown, var(--xmlui-paddingHorizontal-Ul-markdown, var(--xmlui-padding-Ul-markdown)))", "paddingRight-Ul-markdown": "var(--xmlui-paddingRight-Ul-markdown, var(--xmlui-paddingHorizontal-Ul-markdown, var(--xmlui-padding-Ul-markdown)))", "paddingTop-Ul-markdown": "var(--xmlui-paddingTop-Ul-markdown, var(--xmlui-paddingVertical-Ul-markdown, var(--xmlui-padding-Ul-markdown)))", "paddingBottom-Ul-markdown": "var(--xmlui-paddingBottom-Ul-markdown, var(--xmlui-paddingVertical-Ul-markdown, var(--xmlui-padding-Ul-markdown)))", "marginTop-Ul-markdown": "var(--xmlui-marginTop-Ul-markdown)", "marginBottom-Ul-markdown": "var(--xmlui-marginBottom-Ul-markdown)", "marginLeft-Ul-markdown": "var(--xmlui-marginLeft-Ul-markdown)", "marginRight-Ul-markdown": "var(--xmlui-marginRight-Ul-markdown)", "border-Li-markdown": "var(--xmlui-border-Li-markdown)", "borderHorizontal-Li-markdown": "var(--xmlui-borderHorizontal-Li-markdown, var(--xmlui-border-Li-markdown))", "borderVertical-Li-markdown": "var(--xmlui-borderVertical-Li-markdown, var(--xmlui-border-Li-markdown))", "borderLeft-Li-markdown": "var(--xmlui-borderLeft-Li-markdown, var(--xmlui-borderHorizontal-Li-markdown, var(--xmlui-border-Li-markdown)))", "borderRight-Li-markdown": "var(--xmlui-borderRight-Li-markdown, var(--xmlui-borderHorizontal-Li-markdown, var(--xmlui-border-Li-markdown)))", "borderTop-Li-markdown": "var(--xmlui-borderTop-Li-markdown, var(--xmlui-borderVertical-Li-markdown, var(--xmlui-border-Li-markdown)))", "borderBottom-Li-markdown": "var(--xmlui-borderBottom-Li-markdown, var(--xmlui-borderVertical-Li-markdown, var(--xmlui-border-Li-markdown)))", "borderWidth-Li-markdown": "var(--xmlui-borderWidth-Li-markdown)", "borderHorizontalWidth-Li-markdown": "var(--xmlui-borderHorizontalWidth-Li-markdown, var(--xmlui-borderWidth-Li-markdown))", "borderLeftWidth-Li-markdown": "var(--xmlui-borderLeftWidth-Li-markdown, var(--xmlui-borderHorizontalWidth-Li-markdown, var(--xmlui-borderWidth-Li-markdown)))", "borderRightWidth-Li-markdown": "var(--xmlui-borderRightWidth-Li-markdown, var(--xmlui-borderHorizontalWidth-Li-markdown, var(--xmlui-borderWidth-Li-markdown)))", "borderVerticalWidth-Li-markdown": "var(--xmlui-borderVerticalWidth-Li-markdown, var(--xmlui-borderWidth-Li-markdown))", "borderTopWidth-Li-markdown": "var(--xmlui-borderTopWidth-Li-markdown, var(--xmlui-borderVerticalWidth-Li-markdown, var(--xmlui-borderWidth-Li-markdown)))", "borderBottomWidth-Li-markdown": "var(--xmlui-borderBottomWidth-Li-markdown, var(--xmlui-borderVerticalWidth-Li-markdown, var(--xmlui-borderWidth-Li-markdown)))", "borderStyle-Li-markdown": "var(--xmlui-borderStyle-Li-markdown)", "borderHorizontalStyle-Li-markdown": "var(--xmlui-borderHorizontalStyle-Li-markdown, var(--xmlui-borderStyle-Li-markdown))", "borderLeftStyle-Li-markdown": "var(--xmlui-borderLeftStyle-Li-markdown, var(--xmlui-borderHorizontalStyle-Li-markdown, var(--xmlui-borderStyle-Li-markdown)))", "borderRightStyle-Li-markdown": "var(--xmlui-borderRightStyle-Li-markdown, var(--xmlui-borderHorizontalStyle-Li-markdown, var(--xmlui-borderStyle-Li-markdown)))", "borderVerticalStyle-Li-markdown": "var(--xmlui-borderVerticalStyle-Li-markdown, var(--xmlui-borderStyle-Li-markdown))", "borderTopStyle-Li-markdown": "var(--xmlui-borderTopStyle-Li-markdown, var(--xmlui-borderVerticalStyle-Li-markdown, var(--xmlui-borderStyle-Li-markdown)))", "borderBottomStyle-Li-markdown": "var(--xmlui-borderBottomStyle-Li-markdown, var(--xmlui-borderVerticalStyle-Li-markdown, var(--xmlui-borderStyle-Li-markdown)))", "borderColor-Li-markdown": "var(--xmlui-borderColor-Li-markdown)", "borderHorizontalColor-Li-markdown": "var(--xmlui-borderHorizontalColor-Li-markdown, var(--xmlui-borderColor-Li-markdown))", "borderLeftColor-Li-markdown": "var(--xmlui-borderLeftColor-Li-markdown, var(--xmlui-borderHorizontalColor-Li-markdown, var(--xmlui-borderColor-Li-markdown)))", "borderRightColor-Li-markdown": "var(--xmlui-borderRightColor-Li-markdown, var(--xmlui-borderHorizontalColor-Li-markdown, var(--xmlui-borderColor-Li-markdown)))", "borderVerticalColor-Li-markdown": "var(--xmlui-borderVerticalColor-Li-markdown, var(--xmlui-borderColor-Li-markdown))", "borderTopColor-Li-markdown": "var(--xmlui-borderTopColor-Li-markdown, var(--xmlui-borderVerticalColor-Li-markdown, var(--xmlui-borderColor-Li-markdown)))", "borderBottomColor-Li-markdown": "var(--xmlui-borderBottomColor-Li-markdown, var(--xmlui-borderVerticalColor-Li-markdown, var(--xmlui-borderColor-Li-markdown)))", "borderStartStartRadius-Li-markdown": "var(--xmlui-borderStartStartRadius-Li-markdown, var(--xmlui-borderRadius-Li-markdown))", "borderStartEndRadius-Li-markdown": "var(--xmlui-borderStartEndRadius-Li-markdown, var(--xmlui-borderRadius-Li-markdown))", "borderEndStartRadius-Li-markdown": "var(--xmlui-borderEndStartRadius-Li-markdown, var(--xmlui-borderRadius-Li-markdown))", "borderEndEndRadius-Li-markdown": "var(--xmlui-borderEndEndRadius-Li-markdown, var(--xmlui-borderRadius-Li-markdown))", "padding-Li-markdown": "var(--xmlui-padding-Li-markdown)", "paddingHorizontal-Li-markdown": "var(--xmlui-paddingHorizontal-Li-markdown, var(--xmlui-padding-Li-markdown))", "paddingVertical-Li-markdown": "var(--xmlui-paddingVertical-Li-markdown, var(--xmlui-padding-Li-markdown))", "paddingLeft-Li-markdown": "var(--xmlui-paddingLeft-Li-markdown, var(--xmlui-paddingHorizontal-Li-markdown, var(--xmlui-padding-Li-markdown)))", "paddingRight-Li-markdown": "var(--xmlui-paddingRight-Li-markdown, var(--xmlui-paddingHorizontal-Li-markdown, var(--xmlui-padding-Li-markdown)))", "paddingTop-Li-markdown": "var(--xmlui-paddingTop-Li-markdown, var(--xmlui-paddingVertical-Li-markdown, var(--xmlui-padding-Li-markdown)))", "paddingBottom-Li-markdown": "var(--xmlui-paddingBottom-Li-markdown, var(--xmlui-paddingVertical-Li-markdown, var(--xmlui-padding-Li-markdown)))", "marginLeft-Li-markdown": "var(--xmlui-marginLeft-Li-markdown)", "marginTop-Li-markdown": "var(--xmlui-marginTop-Li-markdown)", "marginBottom-Li-markdown": "var(--xmlui-marginBottom-Li-markdown)", "listStyleType-Li-markdown": "var(--xmlui-listStyleType-Li-markdown)", "border-Details-markdown": "var(--xmlui-border-Details-markdown)", "borderHorizontal-Details-markdown": "var(--xmlui-borderHorizontal-Details-markdown, var(--xmlui-border-Details-markdown))", "borderVertical-Details-markdown": "var(--xmlui-borderVertical-Details-markdown, var(--xmlui-border-Details-markdown))", "borderLeft-Details-markdown": "var(--xmlui-borderLeft-Details-markdown, var(--xmlui-borderHorizontal-Details-markdown, var(--xmlui-border-Details-markdown)))", "borderRight-Details-markdown": "var(--xmlui-borderRight-Details-markdown, var(--xmlui-borderHorizontal-Details-markdown, var(--xmlui-border-Details-markdown)))", "borderTop-Details-markdown": "var(--xmlui-borderTop-Details-markdown, var(--xmlui-borderVertical-Details-markdown, var(--xmlui-border-Details-markdown)))", "borderBottom-Details-markdown": "var(--xmlui-borderBottom-Details-markdown, var(--xmlui-borderVertical-Details-markdown, var(--xmlui-border-Details-markdown)))", "borderWidth-Details-markdown": "var(--xmlui-borderWidth-Details-markdown)", "borderHorizontalWidth-Details-markdown": "var(--xmlui-borderHorizontalWidth-Details-markdown, var(--xmlui-borderWidth-Details-markdown))", "borderLeftWidth-Details-markdown": "var(--xmlui-borderLeftWidth-Details-markdown, var(--xmlui-borderHorizontalWidth-Details-markdown, var(--xmlui-borderWidth-Details-markdown)))", "borderRightWidth-Details-markdown": "var(--xmlui-borderRightWidth-Details-markdown, var(--xmlui-borderHorizontalWidth-Details-markdown, var(--xmlui-borderWidth-Details-markdown)))", "borderVerticalWidth-Details-markdown": "var(--xmlui-borderVerticalWidth-Details-markdown, var(--xmlui-borderWidth-Details-markdown))", "borderTopWidth-Details-markdown": "var(--xmlui-borderTopWidth-Details-markdown, var(--xmlui-borderVerticalWidth-Details-markdown, var(--xmlui-borderWidth-Details-markdown)))", "borderBottomWidth-Details-markdown": "var(--xmlui-borderBottomWidth-Details-markdown, var(--xmlui-borderVerticalWidth-Details-markdown, var(--xmlui-borderWidth-Details-markdown)))", "borderStyle-Details-markdown": "var(--xmlui-borderStyle-Details-markdown)", "borderHorizontalStyle-Details-markdown": "var(--xmlui-borderHorizontalStyle-Details-markdown, var(--xmlui-borderStyle-Details-markdown))", "borderLeftStyle-Details-markdown": "var(--xmlui-borderLeftStyle-Details-markdown, var(--xmlui-borderHorizontalStyle-Details-markdown, var(--xmlui-borderStyle-Details-markdown)))", "borderRightStyle-Details-markdown": "var(--xmlui-borderRightStyle-Details-markdown, var(--xmlui-borderHorizontalStyle-Details-markdown, var(--xmlui-borderStyle-Details-markdown)))", "borderVerticalStyle-Details-markdown": "var(--xmlui-borderVerticalStyle-Details-markdown, var(--xmlui-borderStyle-Details-markdown))", "borderTopStyle-Details-markdown": "var(--xmlui-borderTopStyle-Details-markdown, var(--xmlui-borderVerticalStyle-Details-markdown, var(--xmlui-borderStyle-Details-markdown)))", "borderBottomStyle-Details-markdown": "var(--xmlui-borderBottomStyle-Details-markdown, var(--xmlui-borderVerticalStyle-Details-markdown, var(--xmlui-borderStyle-Details-markdown)))", "borderColor-Details-markdown": "var(--xmlui-borderColor-Details-markdown)", "borderHorizontalColor-Details-markdown": "var(--xmlui-borderHorizontalColor-Details-markdown, var(--xmlui-borderColor-Details-markdown))", "borderLeftColor-Details-markdown": "var(--xmlui-borderLeftColor-Details-markdown, var(--xmlui-borderHorizontalColor-Details-markdown, var(--xmlui-borderColor-Details-markdown)))", "borderRightColor-Details-markdown": "var(--xmlui-borderRightColor-Details-markdown, var(--xmlui-borderHorizontalColor-Details-markdown, var(--xmlui-borderColor-Details-markdown)))", "borderVerticalColor-Details-markdown": "var(--xmlui-borderVerticalColor-Details-markdown, var(--xmlui-borderColor-Details-markdown))", "borderTopColor-Details-markdown": "var(--xmlui-borderTopColor-Details-markdown, var(--xmlui-borderVerticalColor-Details-markdown, var(--xmlui-borderColor-Details-markdown)))", "borderBottomColor-Details-markdown": "var(--xmlui-borderBottomColor-Details-markdown, var(--xmlui-borderVerticalColor-Details-markdown, var(--xmlui-borderColor-Details-markdown)))", "borderStartStartRadius-Details-markdown": "var(--xmlui-borderStartStartRadius-Details-markdown, var(--xmlui-borderRadius-Details-markdown))", "borderStartEndRadius-Details-markdown": "var(--xmlui-borderStartEndRadius-Details-markdown, var(--xmlui-borderRadius-Details-markdown))", "borderEndStartRadius-Details-markdown": "var(--xmlui-borderEndStartRadius-Details-markdown, var(--xmlui-borderRadius-Details-markdown))", "borderEndEndRadius-Details-markdown": "var(--xmlui-borderEndEndRadius-Details-markdown, var(--xmlui-borderRadius-Details-markdown))", "padding-Details-markdown": "var(--xmlui-padding-Details-markdown)", "paddingHorizontal-Details-markdown": "var(--xmlui-paddingHorizontal-Details-markdown, var(--xmlui-padding-Details-markdown))", "paddingVertical-Details-markdown": "var(--xmlui-paddingVertical-Details-markdown, var(--xmlui-padding-Details-markdown))", "paddingLeft-Details-markdown": "var(--xmlui-paddingLeft-Details-markdown, var(--xmlui-paddingHorizontal-Details-markdown, var(--xmlui-padding-Details-markdown)))", "paddingRight-Details-markdown": "var(--xmlui-paddingRight-Details-markdown, var(--xmlui-paddingHorizontal-Details-markdown, var(--xmlui-padding-Details-markdown)))", "paddingTop-Details-markdown": "var(--xmlui-paddingTop-Details-markdown, var(--xmlui-paddingVertical-Details-markdown, var(--xmlui-padding-Details-markdown)))", "paddingBottom-Details-markdown": "var(--xmlui-paddingBottom-Details-markdown, var(--xmlui-paddingVertical-Details-markdown, var(--xmlui-padding-Details-markdown)))", "marginTop-Details-markdown": "var(--xmlui-marginTop-Details-markdown)", "marginBottom-Details-markdown": "var(--xmlui-marginBottom-Details-markdown)"}'`;
24529
+ const markdownContent = "_markdownContent_u8vn6_14";
24530
+ const grayscale = "_grayscale_u8vn6_48";
24531
+ const htmlTh$1 = "_htmlTh_u8vn6_62";
24532
+ const htmlTd$1 = "_htmlTd_u8vn6_63";
24533
+ const markdown = "_markdown_u8vn6_14";
24534
+ const image = "_image_u8vn6_145";
24535
+ const blockquote = "_blockquote_u8vn6_151";
24536
+ const blockquoteContainer = "_blockquoteContainer_u8vn6_167";
24537
+ const admonitionBlockquote = "_admonitionBlockquote_u8vn6_195";
24538
+ const info = "_info_u8vn6_201";
24539
+ const warning$4 = "_warning_u8vn6_205";
24540
+ const danger = "_danger_u8vn6_209";
24541
+ const note = "_note_u8vn6_213";
24542
+ const tip = "_tip_u8vn6_217";
24543
+ const admonitionContainer = "_admonitionContainer_u8vn6_221";
24544
+ const admonitionIcon = "_admonitionIcon_u8vn6_226";
24545
+ const admonitionContent = "_admonitionContent_u8vn6_230";
24546
+ const horizontalRule = "_horizontalRule_u8vn6_241";
24547
+ const tableScrollContainer = "_tableScrollContainer_u8vn6_257";
24548
+ const detailsAdornment = "_detailsAdornment_u8vn6_261";
24549
+ const htmlTable$1 = "_htmlTable_u8vn6_274";
24550
+ const htmlThead$1 = "_htmlThead_u8vn6_310";
24551
+ const htmlTbody$1 = "_htmlTbody_u8vn6_317";
24552
+ const htmlTfoot$1 = "_htmlTfoot_u8vn6_324";
24553
+ const htmlTr$1 = "_htmlTr_u8vn6_366";
24554
+ const htmlUl$1 = "_htmlUl_u8vn6_418";
24555
+ const htmlOl$1 = "_htmlOl_u8vn6_449";
24556
+ const htmlLi = "_htmlLi_u8vn6_478";
24557
+ const htmlVideo = "_htmlVideo_u8vn6_509";
24558
+ const htmlDetails$1 = "_htmlDetails_u8vn6_513";
24490
24559
  const styles$J = {
24491
24560
  themeVars: themeVars$t,
24492
24561
  markdownContent,
@@ -24494,7 +24563,7 @@ const styles$J = {
24494
24563
  htmlTh: htmlTh$1,
24495
24564
  htmlTd: htmlTd$1,
24496
24565
  markdown,
24497
- block,
24566
+ image,
24498
24567
  blockquote,
24499
24568
  blockquoteContainer,
24500
24569
  admonitionBlockquote,
@@ -24942,12 +25011,12 @@ const CodeHighlighterMetaKeys = {
24942
25011
  const CodeHighlighterMetaKeysData = Object.values(CodeHighlighterMetaKeys).map(
24943
25012
  (item2) => item2.data
24944
25013
  );
24945
- const themeVars$s = `'{"padding-CodeBlock": "var(--xmlui-padding-CodeBlock)", "paddingHorizontal-CodeBlock": "var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingVertical-CodeBlock": "var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingLeft-CodeBlock": "var(--xmlui-paddingLeft-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingRight-CodeBlock": "var(--xmlui-paddingRight-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingTop-CodeBlock": "var(--xmlui-paddingTop-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingBottom-CodeBlock": "var(--xmlui-paddingBottom-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "border-CodeBlock": "var(--xmlui-border-CodeBlock)", "borderHorizontal-CodeBlock": "var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock))", "borderVertical-CodeBlock": "var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock))", "borderLeft-CodeBlock": "var(--xmlui-borderLeft-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderRight-CodeBlock": "var(--xmlui-borderRight-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderTop-CodeBlock": "var(--xmlui-borderTop-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderBottom-CodeBlock": "var(--xmlui-borderBottom-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderWidth-CodeBlock": "var(--xmlui-borderWidth-CodeBlock)", "borderHorizontalWidth-CodeBlock": "var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderLeftWidth-CodeBlock": "var(--xmlui-borderLeftWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderRightWidth-CodeBlock": "var(--xmlui-borderRightWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderVerticalWidth-CodeBlock": "var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderTopWidth-CodeBlock": "var(--xmlui-borderTopWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderBottomWidth-CodeBlock": "var(--xmlui-borderBottomWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderStyle-CodeBlock": "var(--xmlui-borderStyle-CodeBlock)", "borderHorizontalStyle-CodeBlock": "var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderLeftStyle-CodeBlock": "var(--xmlui-borderLeftStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderRightStyle-CodeBlock": "var(--xmlui-borderRightStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderVerticalStyle-CodeBlock": "var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderTopStyle-CodeBlock": "var(--xmlui-borderTopStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderBottomStyle-CodeBlock": "var(--xmlui-borderBottomStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderColor-CodeBlock": "var(--xmlui-borderColor-CodeBlock)", "borderHorizontalColor-CodeBlock": "var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderLeftColor-CodeBlock": "var(--xmlui-borderLeftColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderRightColor-CodeBlock": "var(--xmlui-borderRightColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderVerticalColor-CodeBlock": "var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderTopColor-CodeBlock": "var(--xmlui-borderTopColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderBottomColor-CodeBlock": "var(--xmlui-borderBottomColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderStartStartRadius-CodeBlock": "var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderStartEndRadius-CodeBlock": "var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndStartRadius-CodeBlock": "var(--xmlui-borderEndStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndEndRadius-CodeBlock": "var(--xmlui-borderEndEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "backgroundColor-CodeBlock": "var(--xmlui-backgroundColor-CodeBlock)", "backgroundColor-CodeBlock-header": "var(--xmlui-backgroundColor-CodeBlock-header)", "color-CodeBlock-headerSeparator": "var(--xmlui-color-CodeBlock-headerSeparator)", "marginTop-CodeBlock": "var(--xmlui-marginTop-CodeBlock)", "marginBottom-CodeBlock": "var(--xmlui-marginBottom-CodeBlock)", "backgroundColor-CodeBlock-highlightRow": "var(--xmlui-backgroundColor-CodeBlock-highlightRow)", "backgroundColor-CodeBlock-highlightString": "var(--xmlui-backgroundColor-CodeBlock-highlightString)", "borderColor-CodeBlock-highlightString-emphasis": "var(--xmlui-borderColor-CodeBlock-highlightString-emphasis)", "borderRadius-CodeBlock": "var(--xmlui-borderRadius-CodeBlock)", "boxShadow-CodeBlock": "var(--xmlui-boxShadow-CodeBlock)", "height-CodeBlock": "var(--xmlui-height-CodeBlock)", "paddingHorizontal-content-CodeBlock": "var(--xmlui-paddingHorizontal-content-CodeBlock)", "paddingVertical-content-CodeBlock": "var(--xmlui-paddingVertical-content-CodeBlock)"}'`;
24946
- const codeBlock = "_codeBlock_1hqq7_14";
24947
- const copyButton = "_copyButton_1hqq7_49";
24948
- const codeBlockHeader = "_codeBlockHeader_1hqq7_55";
24949
- const codeBlockContent = "_codeBlockContent_1hqq7_64";
24950
- const codeBlockCopyButton = "_codeBlockCopyButton_1hqq7_72";
25014
+ const themeVars$s = `'{"padding-CodeBlock": "var(--xmlui-padding-CodeBlock)", "paddingHorizontal-CodeBlock": "var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingVertical-CodeBlock": "var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingLeft-CodeBlock": "var(--xmlui-paddingLeft-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingRight-CodeBlock": "var(--xmlui-paddingRight-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingTop-CodeBlock": "var(--xmlui-paddingTop-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingBottom-CodeBlock": "var(--xmlui-paddingBottom-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "border-CodeBlock": "var(--xmlui-border-CodeBlock)", "borderHorizontal-CodeBlock": "var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock))", "borderVertical-CodeBlock": "var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock))", "borderLeft-CodeBlock": "var(--xmlui-borderLeft-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderRight-CodeBlock": "var(--xmlui-borderRight-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderTop-CodeBlock": "var(--xmlui-borderTop-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderBottom-CodeBlock": "var(--xmlui-borderBottom-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderWidth-CodeBlock": "var(--xmlui-borderWidth-CodeBlock)", "borderHorizontalWidth-CodeBlock": "var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderLeftWidth-CodeBlock": "var(--xmlui-borderLeftWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderRightWidth-CodeBlock": "var(--xmlui-borderRightWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderVerticalWidth-CodeBlock": "var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderTopWidth-CodeBlock": "var(--xmlui-borderTopWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderBottomWidth-CodeBlock": "var(--xmlui-borderBottomWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderStyle-CodeBlock": "var(--xmlui-borderStyle-CodeBlock)", "borderHorizontalStyle-CodeBlock": "var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderLeftStyle-CodeBlock": "var(--xmlui-borderLeftStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderRightStyle-CodeBlock": "var(--xmlui-borderRightStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderVerticalStyle-CodeBlock": "var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderTopStyle-CodeBlock": "var(--xmlui-borderTopStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderBottomStyle-CodeBlock": "var(--xmlui-borderBottomStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderColor-CodeBlock": "var(--xmlui-borderColor-CodeBlock)", "borderHorizontalColor-CodeBlock": "var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderLeftColor-CodeBlock": "var(--xmlui-borderLeftColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderRightColor-CodeBlock": "var(--xmlui-borderRightColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderVerticalColor-CodeBlock": "var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderTopColor-CodeBlock": "var(--xmlui-borderTopColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderBottomColor-CodeBlock": "var(--xmlui-borderBottomColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderStartStartRadius-CodeBlock": "var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderStartEndRadius-CodeBlock": "var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndStartRadius-CodeBlock": "var(--xmlui-borderEndStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndEndRadius-CodeBlock": "var(--xmlui-borderEndEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "backgroundColor-CodeBlock": "var(--xmlui-backgroundColor-CodeBlock)", "backgroundColor-CodeBlock-header": "var(--xmlui-backgroundColor-CodeBlock-header)", "color-CodeBlock-headerSeparator": "var(--xmlui-color-CodeBlock-headerSeparator)", "marginTop-CodeBlock": "var(--xmlui-marginTop-CodeBlock)", "marginBottom-CodeBlock": "var(--xmlui-marginBottom-CodeBlock)", "backgroundColor-CodeBlock-highlightRow": "var(--xmlui-backgroundColor-CodeBlock-highlightRow)", "backgroundColor-CodeBlock-highlightString": "var(--xmlui-backgroundColor-CodeBlock-highlightString)", "borderColor-CodeBlock-highlightString-emphasis": "var(--xmlui-borderColor-CodeBlock-highlightString-emphasis)", "borderRadius-CodeBlock": "var(--xmlui-borderRadius-CodeBlock)", "boxShadow-CodeBlock": "var(--xmlui-boxShadow-CodeBlock)", "height-CodeBlock": "var(--xmlui-height-CodeBlock)", "paddingHorizontal-content-CodeBlock": "var(--xmlui-paddingHorizontal-content-CodeBlock)", "paddingVertical-content-CodeBlock": "var(--xmlui-paddingVertical-content-CodeBlock)", "fontSize-CodeBlock": "var(--xmlui-fontSize-CodeBlock)"}'`;
25015
+ const codeBlock = "_codeBlock_1odb8_14";
25016
+ const copyButton = "_copyButton_1odb8_50";
25017
+ const codeBlockHeader = "_codeBlockHeader_1odb8_56";
25018
+ const codeBlockContent = "_codeBlockContent_1odb8_65";
25019
+ const codeBlockCopyButton = "_codeBlockCopyButton_1odb8_74";
24951
25020
  const styles$I = {
24952
25021
  themeVars: themeVars$s,
24953
25022
  codeBlock,
@@ -24975,7 +25044,7 @@ function CodeBlock({
24975
25044
  }
24976
25045
  );
24977
25046
  }
24978
- return /* @__PURE__ */ jsxs("div", { className: classnames(styles$I.codeBlock, "global-codeBlock"), style: style2, children: [
25047
+ return /* @__PURE__ */ jsxs("div", { className: classnames(styles$I.codeBlock), style: style2, children: [
24979
25048
  meta.filename && /* @__PURE__ */ jsx("div", { className: styles$I.codeBlockHeader, children: /* @__PURE__ */ jsx(Text, { variant: "em", children: meta.filename }) }),
24980
25049
  /* @__PURE__ */ jsxs("div", { className: styles$I.codeBlockContent, children: [
24981
25050
  children,
@@ -26114,9 +26183,9 @@ const NavLinkMd = createMetadata({
26114
26183
  [`backgroundColor-${COMP$1a}`]: "transparent",
26115
26184
  [`paddingHorizontal-${COMP$1a}`]: "$space-4",
26116
26185
  [`paddingVertical-${COMP$1a}`]: "$space-2",
26117
- [`fontSize-${COMP$1a}`]: "$fontSize-sm",
26118
26186
  [`fontWeight-${COMP$1a}`]: "$fontWeight-normal",
26119
26187
  [`fontFamily-${COMP$1a}`]: "$fontFamily",
26188
+ [`lineHeight-${COMP$1a}`]: "$lineHeight-relaxed",
26120
26189
  [`textColor-${COMP$1a}`]: "$textColor-primary",
26121
26190
  [`textColor-${COMP$1a}--active`]: "$color-primary-500",
26122
26191
  [`thickness-indicator-${COMP$1a}`]: "$space-0_5",
@@ -26239,7 +26308,7 @@ const localLinkComponentRenderer = createComponentRenderer(
26239
26308
  }
26240
26309
  );
26241
26310
  const themeVars$o = `'{"backgroundColor-Tree-row--selected": "var(--xmlui-backgroundColor-Tree-row--selected)", "backgroundColor-Tree-row--hover": "var(--xmlui-backgroundColor-Tree-row--hover)", "textColor-Tree": "var(--xmlui-textColor-Tree)", "textColor-Tree--selected": "var(--xmlui-textColor-Tree--selected)", "textColor-Tree--hover": "var(--xmlui-textColor-Tree--hover)", "borderColor-Tree-row--focus": "var(--xmlui-borderColor-Tree-row--focus)", "outlineColor-Tree--focus": "var(--xmlui-outlineColor-Tree--focus)", "outlineWidth-Tree--focus": "var(--xmlui-outlineWidth-Tree--focus)", "outlineStyle-Tree--focus": "var(--xmlui-outlineStyle-Tree--focus)", "outlineOffset-Tree--focus": "var(--xmlui-outlineOffset-Tree--focus)"}'`;
26242
- const wrapper$d = "_wrapper_eyur1_14";
26311
+ const wrapper$b = "_wrapper_eyur1_14";
26243
26312
  const rowWrapper = "_rowWrapper_eyur1_22";
26244
26313
  const selected$1 = "_selected_eyur1_39";
26245
26314
  const focused$1 = "_focused_eyur1_46";
@@ -26251,7 +26320,7 @@ const depthPlaceholder = "_depthPlaceholder_eyur1_83";
26251
26320
  const labelWrapper = "_labelWrapper_eyur1_86";
26252
26321
  const styles$E = {
26253
26322
  themeVars: themeVars$o,
26254
- wrapper: wrapper$d,
26323
+ wrapper: wrapper$b,
26255
26324
  rowWrapper,
26256
26325
  selected: selected$1,
26257
26326
  focused: focused$1,
@@ -28113,7 +28182,7 @@ const HeadingMd = createMetadata({
28113
28182
  limitThemeVarsToComponent: true,
28114
28183
  defaultThemeVars: {
28115
28184
  [`fontFamily-${COMP$16}`]: "$fontFamily",
28116
- [`textColor-${COMP$16}`]: "inherit",
28185
+ [`textColor-${COMP$16}`]: "$textColor",
28117
28186
  [`fontWeight-${COMP$16}`]: "$fontWeight-bold",
28118
28187
  [`letterSpacing-${COMP$16} `]: "0",
28119
28188
  [`color-anchor-${COMP$16} `]: "$color-surface-400",
@@ -28503,10 +28572,10 @@ const TextMd = createMetadata({
28503
28572
  defaultThemeVars: {
28504
28573
  [`borderRadius-${COMP$15}`]: "$borderRadius",
28505
28574
  [`borderStyle-${COMP$15}`]: "solid",
28506
- [`fontSize-${COMP$15}`]: "$fontSize-sm",
28507
28575
  [`borderWidth-${COMP$15}`]: "$space-0",
28508
- [`textColor-${COMP$15}`]: "$textColor-primary",
28576
+ [`textColor-${COMP$15}`]: "$textColor",
28509
28577
  [`fontFamily-${COMP$15}`]: "$fontFamily",
28578
+ [`fontSize-${COMP$15}`]: "$fontSize",
28510
28579
  [`fontWeight-${COMP$15}`]: "$fontWeight-normal",
28511
28580
  [`fontSize-${COMP$15}-secondary`]: "$fontSize-sm",
28512
28581
  [`textColor-${COMP$15}-secondary`]: "$textColor-secondary",
@@ -28565,6 +28634,7 @@ const TextMd = createMetadata({
28565
28634
  [`fontWeight-${COMP$15}-tableheading`]: "$fontWeight-bold",
28566
28635
  [`fontWeight-${COMP$15}-strong`]: "$fontWeight-bold",
28567
28636
  [`backgroundColor-${COMP$15}-marked`]: "rgb(from $color-primary-200 r g b / 0.4)",
28637
+ [`paddingHorizontal-${COMP$15}-marked`]: "$space-1",
28568
28638
  dark: {
28569
28639
  [`backgroundColor-${COMP$15}-marked`]: "rgb(from $color-primary-400 r g b / 0.4)"
28570
28640
  }
@@ -28628,39 +28698,39 @@ const fragmentComponentRenderer = createComponentRenderer(
28628
28698
  }
28629
28699
  );
28630
28700
  const themeVars$n = `'{"textColor-pagination-Table": "var(--xmlui-textColor-pagination-Table)", "backgroundColor-Table": "var(--xmlui-backgroundColor-Table)", "textColor-Table": "var(--xmlui-textColor-Table)", "backgroundColor-row-Table": "var(--xmlui-backgroundColor-row-Table)", "backgroundColor-row-Table--hover": "var(--xmlui-backgroundColor-row-Table--hover)", "backgroundColor-selected-Table": "var(--xmlui-backgroundColor-selected-Table)", "backgroundColor-selected-Table--hover": "var(--xmlui-backgroundColor-selected-Table--hover)", "backgroundColor-heading-Table": "var(--xmlui-backgroundColor-heading-Table)", "backgroundColor-heading-Table--hover": "var(--xmlui-backgroundColor-heading-Table--hover)", "backgroundColor-heading-Table--active": "var(--xmlui-backgroundColor-heading-Table--active)", "padding-heading-Table": "var(--xmlui-padding-heading-Table)", "paddingHorizontal-heading-Table": "var(--xmlui-paddingHorizontal-heading-Table, var(--xmlui-padding-heading-Table))", "paddingVertical-heading-Table": "var(--xmlui-paddingVertical-heading-Table, var(--xmlui-padding-heading-Table))", "paddingLeft-heading-Table": "var(--xmlui-paddingLeft-heading-Table, var(--xmlui-paddingHorizontal-heading-Table, var(--xmlui-padding-heading-Table)))", "paddingRight-heading-Table": "var(--xmlui-paddingRight-heading-Table, var(--xmlui-paddingHorizontal-heading-Table, var(--xmlui-padding-heading-Table)))", "paddingTop-heading-Table": "var(--xmlui-paddingTop-heading-Table, var(--xmlui-paddingVertical-heading-Table, var(--xmlui-padding-heading-Table)))", "paddingBottom-heading-Table": "var(--xmlui-paddingBottom-heading-Table, var(--xmlui-paddingVertical-heading-Table, var(--xmlui-padding-heading-Table)))", "padding-cell-Table": "var(--xmlui-padding-cell-Table)", "paddingHorizontal-cell-Table": "var(--xmlui-paddingHorizontal-cell-Table, var(--xmlui-padding-cell-Table))", "paddingVertical-cell-Table": "var(--xmlui-paddingVertical-cell-Table, var(--xmlui-padding-cell-Table))", "paddingLeft-cell-Table": "var(--xmlui-paddingLeft-cell-Table, var(--xmlui-paddingHorizontal-cell-Table, var(--xmlui-padding-cell-Table)))", "paddingRight-cell-Table": "var(--xmlui-paddingRight-cell-Table, var(--xmlui-paddingHorizontal-cell-Table, var(--xmlui-padding-cell-Table)))", "paddingTop-cell-Table": "var(--xmlui-paddingTop-cell-Table, var(--xmlui-paddingVertical-cell-Table, var(--xmlui-padding-cell-Table)))", "paddingBottom-cell-Table": "var(--xmlui-paddingBottom-cell-Table, var(--xmlui-paddingVertical-cell-Table, var(--xmlui-padding-cell-Table)))", "paddingHorizontal-cell-first-Table": "var(--xmlui-paddingHorizontal-cell-first-Table)", "paddingHorizontal-cell-last-Table": "var(--xmlui-paddingHorizontal-cell-last-Table)", "border-cell-Table": "var(--xmlui-border-cell-Table)", "borderHorizontal-cell-Table": "var(--xmlui-borderHorizontal-cell-Table, var(--xmlui-border-cell-Table))", "borderVertical-cell-Table": "var(--xmlui-borderVertical-cell-Table, var(--xmlui-border-cell-Table))", "borderLeft-cell-Table": "var(--xmlui-borderLeft-cell-Table, var(--xmlui-borderHorizontal-cell-Table, var(--xmlui-border-cell-Table)))", "borderRight-cell-Table": "var(--xmlui-borderRight-cell-Table, var(--xmlui-borderHorizontal-cell-Table, var(--xmlui-border-cell-Table)))", "borderTop-cell-Table": "var(--xmlui-borderTop-cell-Table, var(--xmlui-borderVertical-cell-Table, var(--xmlui-border-cell-Table)))", "borderBottom-cell-Table": "var(--xmlui-borderBottom-cell-Table)", "borderWidth-cell-Table": "var(--xmlui-borderWidth-cell-Table)", "borderHorizontalWidth-cell-Table": "var(--xmlui-borderHorizontalWidth-cell-Table, var(--xmlui-borderWidth-cell-Table))", "borderLeftWidth-cell-Table": "var(--xmlui-borderLeftWidth-cell-Table, var(--xmlui-borderHorizontalWidth-cell-Table, var(--xmlui-borderWidth-cell-Table)))", "borderRightWidth-cell-Table": "var(--xmlui-borderRightWidth-cell-Table, var(--xmlui-borderHorizontalWidth-cell-Table, var(--xmlui-borderWidth-cell-Table)))", "borderVerticalWidth-cell-Table": "var(--xmlui-borderVerticalWidth-cell-Table, var(--xmlui-borderWidth-cell-Table))", "borderTopWidth-cell-Table": "var(--xmlui-borderTopWidth-cell-Table, var(--xmlui-borderVerticalWidth-cell-Table, var(--xmlui-borderWidth-cell-Table)))", "borderBottomWidth-cell-Table": "var(--xmlui-borderBottomWidth-cell-Table, var(--xmlui-borderVerticalWidth-cell-Table, var(--xmlui-borderWidth-cell-Table)))", "borderStyle-cell-Table": "var(--xmlui-borderStyle-cell-Table)", "borderHorizontalStyle-cell-Table": "var(--xmlui-borderHorizontalStyle-cell-Table, var(--xmlui-borderStyle-cell-Table))", "borderLeftStyle-cell-Table": "var(--xmlui-borderLeftStyle-cell-Table, var(--xmlui-borderHorizontalStyle-cell-Table, var(--xmlui-borderStyle-cell-Table)))", "borderRightStyle-cell-Table": "var(--xmlui-borderRightStyle-cell-Table, var(--xmlui-borderHorizontalStyle-cell-Table, var(--xmlui-borderStyle-cell-Table)))", "borderVerticalStyle-cell-Table": "var(--xmlui-borderVerticalStyle-cell-Table, var(--xmlui-borderStyle-cell-Table))", "borderTopStyle-cell-Table": "var(--xmlui-borderTopStyle-cell-Table, var(--xmlui-borderVerticalStyle-cell-Table, var(--xmlui-borderStyle-cell-Table)))", "borderBottomStyle-cell-Table": "var(--xmlui-borderBottomStyle-cell-Table, var(--xmlui-borderVerticalStyle-cell-Table, var(--xmlui-borderStyle-cell-Table)))", "borderColor-cell-Table": "var(--xmlui-borderColor-cell-Table)", "borderHorizontalColor-cell-Table": "var(--xmlui-borderHorizontalColor-cell-Table, var(--xmlui-borderColor-cell-Table))", "borderLeftColor-cell-Table": "var(--xmlui-borderLeftColor-cell-Table, var(--xmlui-borderHorizontalColor-cell-Table, var(--xmlui-borderColor-cell-Table)))", "borderRightColor-cell-Table": "var(--xmlui-borderRightColor-cell-Table, var(--xmlui-borderHorizontalColor-cell-Table, var(--xmlui-borderColor-cell-Table)))", "borderVerticalColor-cell-Table": "var(--xmlui-borderVerticalColor-cell-Table, var(--xmlui-borderColor-cell-Table))", "borderTopColor-cell-Table": "var(--xmlui-borderTopColor-cell-Table, var(--xmlui-borderVerticalColor-cell-Table, var(--xmlui-borderColor-cell-Table)))", "borderBottomColor-cell-Table": "var(--xmlui-borderBottomColor-cell-Table, var(--xmlui-borderVerticalColor-cell-Table, var(--xmlui-borderColor-cell-Table)))", "borderStartStartRadius-cell-Table": "var(--xmlui-borderStartStartRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))", "borderStartEndRadius-cell-Table": "var(--xmlui-borderStartEndRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))", "borderEndStartRadius-cell-Table": "var(--xmlui-borderEndStartRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))", "borderEndEndRadius-cell-Table": "var(--xmlui-borderEndEndRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))", "border-Table": "var(--xmlui-border-Table)", "borderHorizontal-Table": "var(--xmlui-borderHorizontal-Table, var(--xmlui-border-Table))", "borderVertical-Table": "var(--xmlui-borderVertical-Table, var(--xmlui-border-Table))", "borderLeft-Table": "var(--xmlui-borderLeft-Table, var(--xmlui-borderHorizontal-Table, var(--xmlui-border-Table)))", "borderRight-Table": "var(--xmlui-borderRight-Table, var(--xmlui-borderHorizontal-Table, var(--xmlui-border-Table)))", "borderTop-Table": "var(--xmlui-borderTop-Table, var(--xmlui-borderVertical-Table, var(--xmlui-border-Table)))", "borderBottom-Table": "var(--xmlui-borderBottom-Table, var(--xmlui-borderVertical-Table, var(--xmlui-border-Table)))", "borderWidth-Table": "var(--xmlui-borderWidth-Table)", "borderHorizontalWidth-Table": "var(--xmlui-borderHorizontalWidth-Table, var(--xmlui-borderWidth-Table))", "borderLeftWidth-Table": "var(--xmlui-borderLeftWidth-Table, var(--xmlui-borderHorizontalWidth-Table, var(--xmlui-borderWidth-Table)))", "borderRightWidth-Table": "var(--xmlui-borderRightWidth-Table, var(--xmlui-borderHorizontalWidth-Table, var(--xmlui-borderWidth-Table)))", "borderVerticalWidth-Table": "var(--xmlui-borderVerticalWidth-Table, var(--xmlui-borderWidth-Table))", "borderTopWidth-Table": "var(--xmlui-borderTopWidth-Table, var(--xmlui-borderVerticalWidth-Table, var(--xmlui-borderWidth-Table)))", "borderBottomWidth-Table": "var(--xmlui-borderBottomWidth-Table, var(--xmlui-borderVerticalWidth-Table, var(--xmlui-borderWidth-Table)))", "borderStyle-Table": "var(--xmlui-borderStyle-Table)", "borderHorizontalStyle-Table": "var(--xmlui-borderHorizontalStyle-Table, var(--xmlui-borderStyle-Table))", "borderLeftStyle-Table": "var(--xmlui-borderLeftStyle-Table, var(--xmlui-borderHorizontalStyle-Table, var(--xmlui-borderStyle-Table)))", "borderRightStyle-Table": "var(--xmlui-borderRightStyle-Table, var(--xmlui-borderHorizontalStyle-Table, var(--xmlui-borderStyle-Table)))", "borderVerticalStyle-Table": "var(--xmlui-borderVerticalStyle-Table, var(--xmlui-borderStyle-Table))", "borderTopStyle-Table": "var(--xmlui-borderTopStyle-Table, var(--xmlui-borderVerticalStyle-Table, var(--xmlui-borderStyle-Table)))", "borderBottomStyle-Table": "var(--xmlui-borderBottomStyle-Table, var(--xmlui-borderVerticalStyle-Table, var(--xmlui-borderStyle-Table)))", "borderColor-Table": "var(--xmlui-borderColor-Table)", "borderHorizontalColor-Table": "var(--xmlui-borderHorizontalColor-Table, var(--xmlui-borderColor-Table))", "borderLeftColor-Table": "var(--xmlui-borderLeftColor-Table, var(--xmlui-borderHorizontalColor-Table, var(--xmlui-borderColor-Table)))", "borderRightColor-Table": "var(--xmlui-borderRightColor-Table, var(--xmlui-borderHorizontalColor-Table, var(--xmlui-borderColor-Table)))", "borderVerticalColor-Table": "var(--xmlui-borderVerticalColor-Table, var(--xmlui-borderColor-Table))", "borderTopColor-Table": "var(--xmlui-borderTopColor-Table, var(--xmlui-borderVerticalColor-Table, var(--xmlui-borderColor-Table)))", "borderBottomColor-Table": "var(--xmlui-borderBottomColor-Table, var(--xmlui-borderVerticalColor-Table, var(--xmlui-borderColor-Table)))", "borderStartStartRadius-Table": "var(--xmlui-borderStartStartRadius-Table, var(--xmlui-borderRadius-Table))", "borderStartEndRadius-Table": "var(--xmlui-borderStartEndRadius-Table, var(--xmlui-borderRadius-Table))", "borderEndStartRadius-Table": "var(--xmlui-borderEndStartRadius-Table, var(--xmlui-borderRadius-Table))", "borderEndEndRadius-Table": "var(--xmlui-borderEndEndRadius-Table, var(--xmlui-borderRadius-Table))", "backgroundColor-pagination-Table": "var(--xmlui-backgroundColor-pagination-Table)", "textColor-heading-Table": "var(--xmlui-textColor-heading-Table)", "fontWeight-row-Table": "var(--xmlui-fontWeight-row-Table)", "fontSize-row-Table": "var(--xmlui-fontSize-row-Table)", "fontWeight-heading-Table": "var(--xmlui-fontWeight-heading-Table)", "fontSize-heading-Table": "var(--xmlui-fontSize-heading-Table)", "textTransform-heading-Table": "var(--xmlui-textTransform-heading-Table)", "borderRadius-Table": "var(--xmlui-borderRadius-Table)", "outlineWidth-heading-Table--focus": "var(--xmlui-outlineWidth-heading-Table--focus)", "outlineColor-heading-Table--focus": "var(--xmlui-outlineColor-heading-Table--focus)", "outlineStyle-heading-Table--focus": "var(--xmlui-outlineStyle-heading-Table--focus)", "outlineOffset-heading-Table--focus": "var(--xmlui-outlineOffset-heading-Table--focus)", "borderBottom-last-row-Table": "var(--xmlui-borderBottom-last-row-Table)"}'`;
28631
- const wrapper$c = "_wrapper_17ovr_14";
28632
- const noScroll = "_noScroll_17ovr_42";
28633
- const headerWrapper = "_headerWrapper_17ovr_45";
28634
- const tableBody = "_tableBody_17ovr_46";
28635
- const clickableHeader = "_clickableHeader_17ovr_51";
28636
- const headerContent = "_headerContent_17ovr_65";
28637
- const orderingIndicator = "_orderingIndicator_17ovr_68";
28638
- const activeOrdering = "_activeOrdering_17ovr_73";
28639
- const alwaysShow = "_alwaysShow_17ovr_73";
28640
- const headerRow = "_headerRow_17ovr_111";
28641
- const columnCell = "_columnCell_17ovr_115";
28642
- const cell = "_cell_17ovr_116";
28643
- const alignTop = "_alignTop_17ovr_124";
28644
- const alignCenter$1 = "_alignCenter_17ovr_128";
28645
- const alignBottom = "_alignBottom_17ovr_132";
28646
- const table = "_table_17ovr_46";
28647
- const row$1 = "_row_17ovr_140";
28648
- const checkBoxWrapper = "_checkBoxWrapper_17ovr_147";
28649
- const showInHeader = "_showInHeader_17ovr_152";
28650
- const selected = "_selected_17ovr_156";
28651
- const allSelected = "_allSelected_17ovr_156";
28652
- const cellContent = "_cellContent_17ovr_187";
28653
- const focused = "_focused_17ovr_214";
28654
- const disabled$2 = "_disabled_17ovr_226";
28655
- const noBottomBorder = "_noBottomBorder_17ovr_233";
28656
- const noRows$1 = "_noRows_17ovr_258";
28657
- const loadingWrapper$1 = "_loadingWrapper_17ovr_297";
28658
- const forceHoverWrapper = "_forceHoverWrapper_17ovr_310";
28659
- const resizer$1 = "_resizer_17ovr_313";
28660
- const isResizing = "_isResizing_17ovr_334";
28701
+ const wrapper$a = "_wrapper_se1zy_14";
28702
+ const noScroll = "_noScroll_se1zy_42";
28703
+ const headerWrapper = "_headerWrapper_se1zy_45";
28704
+ const tableBody = "_tableBody_se1zy_46";
28705
+ const clickableHeader = "_clickableHeader_se1zy_51";
28706
+ const headerContent = "_headerContent_se1zy_65";
28707
+ const orderingIndicator = "_orderingIndicator_se1zy_68";
28708
+ const activeOrdering = "_activeOrdering_se1zy_73";
28709
+ const alwaysShow = "_alwaysShow_se1zy_73";
28710
+ const headerRow = "_headerRow_se1zy_111";
28711
+ const columnCell = "_columnCell_se1zy_115";
28712
+ const cell = "_cell_se1zy_116";
28713
+ const alignTop = "_alignTop_se1zy_124";
28714
+ const alignCenter$1 = "_alignCenter_se1zy_128";
28715
+ const alignBottom = "_alignBottom_se1zy_132";
28716
+ const table = "_table_se1zy_46";
28717
+ const row$1 = "_row_se1zy_140";
28718
+ const checkBoxWrapper = "_checkBoxWrapper_se1zy_147";
28719
+ const showInHeader = "_showInHeader_se1zy_152";
28720
+ const selected = "_selected_se1zy_156";
28721
+ const allSelected = "_allSelected_se1zy_156";
28722
+ const cellContent = "_cellContent_se1zy_187";
28723
+ const focused = "_focused_se1zy_214";
28724
+ const disabled$2 = "_disabled_se1zy_226";
28725
+ const noBottomBorder = "_noBottomBorder_se1zy_233";
28726
+ const noRows$1 = "_noRows_se1zy_258";
28727
+ const loadingWrapper$1 = "_loadingWrapper_se1zy_297";
28728
+ const forceHoverWrapper = "_forceHoverWrapper_se1zy_310";
28729
+ const resizer$1 = "_resizer_se1zy_313";
28730
+ const isResizing = "_isResizing_se1zy_334";
28661
28731
  const styles$D = {
28662
28732
  themeVars: themeVars$n,
28663
- wrapper: wrapper$c,
28733
+ wrapper: wrapper$a,
28664
28734
  noScroll,
28665
28735
  headerWrapper,
28666
28736
  tableBody,
@@ -29086,16 +29156,16 @@ function useRowSelection({
29086
29156
  };
29087
29157
  }
29088
29158
  const themeVars$m = `'{"backgroundColor-Pagination": "var(--xmlui-backgroundColor-Pagination)", "borderColor-Pagination": "var(--xmlui-borderColor-Pagination)", "borderRadius-selector-Pagination": "var(--xmlui-borderRadius-selector-Pagination)", "textColor-Pagination": "var(--xmlui-textColor-Pagination)", "backgroundColor-selector-Pagination": "var(--xmlui-backgroundColor-selector-Pagination)", "textColor-selector-Pagination": "var(--xmlui-textColor-selector-Pagination)", "padding-Pagination": "var(--xmlui-padding-Pagination)", "gap-buttonRow-Pagination": "var(--xmlui-gap-buttonRow-Pagination)"}'`;
29089
- const pagination = "_pagination_71wc3_14";
29090
- const paginationVertical = "_paginationVertical_71wc3_22";
29091
- const startSlot = "_startSlot_71wc3_27";
29092
- const endSlot = "_endSlot_71wc3_27";
29093
- const centerSlot = "_centerSlot_71wc3_27";
29094
- const slot = "_slot_71wc3_85";
29095
- const selectorContainer = "_selectorContainer_71wc3_116";
29096
- const pageSizeSelect = "_pageSizeSelect_71wc3_126";
29097
- const buttonRow = "_buttonRow_71wc3_147";
29098
- const paginationListVertical = "_paginationListVertical_71wc3_158";
29159
+ const pagination = "_pagination_mkwjn_14";
29160
+ const paginationVertical = "_paginationVertical_mkwjn_23";
29161
+ const startSlot = "_startSlot_mkwjn_28";
29162
+ const endSlot = "_endSlot_mkwjn_28";
29163
+ const centerSlot = "_centerSlot_mkwjn_28";
29164
+ const slot = "_slot_mkwjn_86";
29165
+ const selectorContainer = "_selectorContainer_mkwjn_117";
29166
+ const pageSizeSelect = "_pageSizeSelect_mkwjn_127";
29167
+ const buttonRow = "_buttonRow_mkwjn_149";
29168
+ const paginationListVertical = "_paginationListVertical_mkwjn_160";
29099
29169
  const styles$C = {
29100
29170
  themeVars: themeVars$m,
29101
29171
  pagination,
@@ -29415,18 +29485,17 @@ const PaginationNative = forwardRef(function PaginationNative2({
29415
29485
  id: `${id}-page-size-selector`,
29416
29486
  label: "Items per page",
29417
29487
  enabled: enabled2,
29418
- style: style2,
29419
- className,
29488
+ cloneStyle: true,
29420
29489
  labelPosition: orientation === "vertical" ? "top" : "start",
29421
29490
  children: /* @__PURE__ */ jsx(
29422
- "select",
29491
+ Select,
29423
29492
  {
29424
29493
  id: `${id}-page-size-selector`,
29494
+ className: classnames(styles$C.pageSizeSelect),
29425
29495
  value: pageSize,
29426
- onChange: (e) => handlePageSizeChange(Number(e.target.value)),
29427
- disabled: !enabled2,
29428
- className: styles$C.pageSizeSelect,
29429
- children: pageSizeOptions.map((size) => /* @__PURE__ */ jsx("option", { value: size, children: size }, size))
29496
+ onDidChange: (newValue) => handlePageSizeChange(newValue),
29497
+ enabled: enabled2,
29498
+ children: pageSizeOptions.map((size) => /* @__PURE__ */ jsx(OptionNative, { value: convertOptionValue(size), label: `${size}` }, size))
29430
29499
  }
29431
29500
  )
29432
29501
  }
@@ -30691,11 +30760,11 @@ const tableComponentRenderer = createComponentRenderer(
30691
30760
  }
30692
30761
  );
30693
30762
  const themeVars$l = '"[]"';
30694
- const wrapper$b = "_wrapper_m2iuz_14";
30763
+ const wrapper$9 = "_wrapper_m2iuz_14";
30695
30764
  const sentinel = "_sentinel_m2iuz_17";
30696
30765
  const styles$B = {
30697
30766
  themeVars: themeVars$l,
30698
- wrapper: wrapper$b,
30767
+ wrapper: wrapper$9,
30699
30768
  sentinel
30700
30769
  };
30701
30770
  const defaultProps$A = {
@@ -30894,12 +30963,12 @@ const modalViewComponentRenderer = createComponentRenderer(
30894
30963
  );
30895
30964
  }
30896
30965
  );
30897
- const themeVars$k = `'{"padding-NoResult": "var(--xmlui-padding-NoResult)", "paddingHorizontal-NoResult": "var(--xmlui-paddingHorizontal-NoResult, var(--xmlui-padding-NoResult))", "paddingVertical-NoResult": "var(--xmlui-paddingVertical-NoResult, var(--xmlui-padding-NoResult))", "paddingLeft-NoResult": "var(--xmlui-paddingLeft-NoResult, var(--xmlui-paddingHorizontal-NoResult, var(--xmlui-padding-NoResult)))", "paddingRight-NoResult": "var(--xmlui-paddingRight-NoResult, var(--xmlui-paddingHorizontal-NoResult, var(--xmlui-padding-NoResult)))", "paddingTop-NoResult": "var(--xmlui-paddingTop-NoResult, var(--xmlui-paddingVertical-NoResult, var(--xmlui-padding-NoResult)))", "paddingBottom-NoResult": "var(--xmlui-paddingBottom-NoResult, var(--xmlui-paddingVertical-NoResult, var(--xmlui-padding-NoResult)))", "border-NoResult": "var(--xmlui-border-NoResult)", "borderHorizontal-NoResult": "var(--xmlui-borderHorizontal-NoResult, var(--xmlui-border-NoResult))", "borderVertical-NoResult": "var(--xmlui-borderVertical-NoResult, var(--xmlui-border-NoResult))", "borderLeft-NoResult": "var(--xmlui-borderLeft-NoResult, var(--xmlui-borderHorizontal-NoResult, var(--xmlui-border-NoResult)))", "borderRight-NoResult": "var(--xmlui-borderRight-NoResult, var(--xmlui-borderHorizontal-NoResult, var(--xmlui-border-NoResult)))", "borderTop-NoResult": "var(--xmlui-borderTop-NoResult, var(--xmlui-borderVertical-NoResult, var(--xmlui-border-NoResult)))", "borderBottom-NoResult": "var(--xmlui-borderBottom-NoResult, var(--xmlui-borderVertical-NoResult, var(--xmlui-border-NoResult)))", "borderWidth-NoResult": "var(--xmlui-borderWidth-NoResult)", "borderHorizontalWidth-NoResult": "var(--xmlui-borderHorizontalWidth-NoResult, var(--xmlui-borderWidth-NoResult))", "borderLeftWidth-NoResult": "var(--xmlui-borderLeftWidth-NoResult, var(--xmlui-borderHorizontalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderRightWidth-NoResult": "var(--xmlui-borderRightWidth-NoResult, var(--xmlui-borderHorizontalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderVerticalWidth-NoResult": "var(--xmlui-borderVerticalWidth-NoResult, var(--xmlui-borderWidth-NoResult))", "borderTopWidth-NoResult": "var(--xmlui-borderTopWidth-NoResult, var(--xmlui-borderVerticalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderBottomWidth-NoResult": "var(--xmlui-borderBottomWidth-NoResult, var(--xmlui-borderVerticalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderStyle-NoResult": "var(--xmlui-borderStyle-NoResult)", "borderHorizontalStyle-NoResult": "var(--xmlui-borderHorizontalStyle-NoResult, var(--xmlui-borderStyle-NoResult))", "borderLeftStyle-NoResult": "var(--xmlui-borderLeftStyle-NoResult, var(--xmlui-borderHorizontalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderRightStyle-NoResult": "var(--xmlui-borderRightStyle-NoResult, var(--xmlui-borderHorizontalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderVerticalStyle-NoResult": "var(--xmlui-borderVerticalStyle-NoResult, var(--xmlui-borderStyle-NoResult))", "borderTopStyle-NoResult": "var(--xmlui-borderTopStyle-NoResult, var(--xmlui-borderVerticalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderBottomStyle-NoResult": "var(--xmlui-borderBottomStyle-NoResult, var(--xmlui-borderVerticalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderColor-NoResult": "var(--xmlui-borderColor-NoResult)", "borderHorizontalColor-NoResult": "var(--xmlui-borderHorizontalColor-NoResult, var(--xmlui-borderColor-NoResult))", "borderLeftColor-NoResult": "var(--xmlui-borderLeftColor-NoResult, var(--xmlui-borderHorizontalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderRightColor-NoResult": "var(--xmlui-borderRightColor-NoResult, var(--xmlui-borderHorizontalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderVerticalColor-NoResult": "var(--xmlui-borderVerticalColor-NoResult, var(--xmlui-borderColor-NoResult))", "borderTopColor-NoResult": "var(--xmlui-borderTopColor-NoResult, var(--xmlui-borderVerticalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderBottomColor-NoResult": "var(--xmlui-borderBottomColor-NoResult, var(--xmlui-borderVerticalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderStartStartRadius-NoResult": "var(--xmlui-borderStartStartRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "borderStartEndRadius-NoResult": "var(--xmlui-borderStartEndRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "borderEndStartRadius-NoResult": "var(--xmlui-borderEndStartRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "borderEndEndRadius-NoResult": "var(--xmlui-borderEndEndRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "gap-icon-NoResult": "var(--xmlui-gap-icon-NoResult)", "size-icon-NoResult": "var(--xmlui-size-icon-NoResult)"}'`;
30898
- const wrapper$a = "_wrapper_1l303_14";
30899
- const icon$2 = "_icon_1l303_45";
30966
+ const themeVars$k = `'{"padding-NoResult": "var(--xmlui-padding-NoResult)", "paddingHorizontal-NoResult": "var(--xmlui-paddingHorizontal-NoResult, var(--xmlui-padding-NoResult))", "paddingVertical-NoResult": "var(--xmlui-paddingVertical-NoResult, var(--xmlui-padding-NoResult))", "paddingLeft-NoResult": "var(--xmlui-paddingLeft-NoResult, var(--xmlui-paddingHorizontal-NoResult, var(--xmlui-padding-NoResult)))", "paddingRight-NoResult": "var(--xmlui-paddingRight-NoResult, var(--xmlui-paddingHorizontal-NoResult, var(--xmlui-padding-NoResult)))", "paddingTop-NoResult": "var(--xmlui-paddingTop-NoResult, var(--xmlui-paddingVertical-NoResult, var(--xmlui-padding-NoResult)))", "paddingBottom-NoResult": "var(--xmlui-paddingBottom-NoResult, var(--xmlui-paddingVertical-NoResult, var(--xmlui-padding-NoResult)))", "border-NoResult": "var(--xmlui-border-NoResult)", "borderHorizontal-NoResult": "var(--xmlui-borderHorizontal-NoResult, var(--xmlui-border-NoResult))", "borderVertical-NoResult": "var(--xmlui-borderVertical-NoResult, var(--xmlui-border-NoResult))", "borderLeft-NoResult": "var(--xmlui-borderLeft-NoResult, var(--xmlui-borderHorizontal-NoResult, var(--xmlui-border-NoResult)))", "borderRight-NoResult": "var(--xmlui-borderRight-NoResult, var(--xmlui-borderHorizontal-NoResult, var(--xmlui-border-NoResult)))", "borderTop-NoResult": "var(--xmlui-borderTop-NoResult, var(--xmlui-borderVertical-NoResult, var(--xmlui-border-NoResult)))", "borderBottom-NoResult": "var(--xmlui-borderBottom-NoResult, var(--xmlui-borderVertical-NoResult, var(--xmlui-border-NoResult)))", "borderWidth-NoResult": "var(--xmlui-borderWidth-NoResult)", "borderHorizontalWidth-NoResult": "var(--xmlui-borderHorizontalWidth-NoResult, var(--xmlui-borderWidth-NoResult))", "borderLeftWidth-NoResult": "var(--xmlui-borderLeftWidth-NoResult, var(--xmlui-borderHorizontalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderRightWidth-NoResult": "var(--xmlui-borderRightWidth-NoResult, var(--xmlui-borderHorizontalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderVerticalWidth-NoResult": "var(--xmlui-borderVerticalWidth-NoResult, var(--xmlui-borderWidth-NoResult))", "borderTopWidth-NoResult": "var(--xmlui-borderTopWidth-NoResult, var(--xmlui-borderVerticalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderBottomWidth-NoResult": "var(--xmlui-borderBottomWidth-NoResult, var(--xmlui-borderVerticalWidth-NoResult, var(--xmlui-borderWidth-NoResult)))", "borderStyle-NoResult": "var(--xmlui-borderStyle-NoResult)", "borderHorizontalStyle-NoResult": "var(--xmlui-borderHorizontalStyle-NoResult, var(--xmlui-borderStyle-NoResult))", "borderLeftStyle-NoResult": "var(--xmlui-borderLeftStyle-NoResult, var(--xmlui-borderHorizontalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderRightStyle-NoResult": "var(--xmlui-borderRightStyle-NoResult, var(--xmlui-borderHorizontalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderVerticalStyle-NoResult": "var(--xmlui-borderVerticalStyle-NoResult, var(--xmlui-borderStyle-NoResult))", "borderTopStyle-NoResult": "var(--xmlui-borderTopStyle-NoResult, var(--xmlui-borderVerticalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderBottomStyle-NoResult": "var(--xmlui-borderBottomStyle-NoResult, var(--xmlui-borderVerticalStyle-NoResult, var(--xmlui-borderStyle-NoResult)))", "borderColor-NoResult": "var(--xmlui-borderColor-NoResult)", "borderHorizontalColor-NoResult": "var(--xmlui-borderHorizontalColor-NoResult, var(--xmlui-borderColor-NoResult))", "borderLeftColor-NoResult": "var(--xmlui-borderLeftColor-NoResult, var(--xmlui-borderHorizontalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderRightColor-NoResult": "var(--xmlui-borderRightColor-NoResult, var(--xmlui-borderHorizontalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderVerticalColor-NoResult": "var(--xmlui-borderVerticalColor-NoResult, var(--xmlui-borderColor-NoResult))", "borderTopColor-NoResult": "var(--xmlui-borderTopColor-NoResult, var(--xmlui-borderVerticalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderBottomColor-NoResult": "var(--xmlui-borderBottomColor-NoResult, var(--xmlui-borderVerticalColor-NoResult, var(--xmlui-borderColor-NoResult)))", "borderStartStartRadius-NoResult": "var(--xmlui-borderStartStartRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "borderStartEndRadius-NoResult": "var(--xmlui-borderStartEndRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "borderEndStartRadius-NoResult": "var(--xmlui-borderEndStartRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "borderEndEndRadius-NoResult": "var(--xmlui-borderEndEndRadius-NoResult, var(--xmlui-borderRadius-NoResult))", "gap-icon-NoResult": "var(--xmlui-gap-icon-NoResult)", "size-icon-NoResult": "var(--xmlui-size-icon-NoResult)", "backgroundColor-NoResult": "var(--xmlui-backgroundColor-NoResult)"}'`;
30967
+ const noResultWrapper = "_noResultWrapper_1ittl_14";
30968
+ const icon$2 = "_icon_1ittl_46";
30900
30969
  const styles$A = {
30901
30970
  themeVars: themeVars$k,
30902
- wrapper: wrapper$a,
30971
+ noResultWrapper,
30903
30972
  icon: icon$2
30904
30973
  };
30905
30974
  const defaultProps$z = {
@@ -30918,7 +30987,7 @@ const NoResult = forwardRef(function NoResult2({
30918
30987
  "div",
30919
30988
  {
30920
30989
  ...rest,
30921
- className: classnames(styles$A.wrapper, className),
30990
+ className: classnames(styles$A.noResultWrapper, className),
30922
30991
  style: style2,
30923
30992
  ref: forwardedRef,
30924
30993
  children: [
@@ -30947,6 +31016,7 @@ const NoResultMd = createMetadata({
30947
31016
  },
30948
31017
  themeVars: parseScssVar(styles$A.themeVars),
30949
31018
  defaultThemeVars: {
31019
+ [`backgroundColor-${COMP$10}`]: "$backgroundColor",
30950
31020
  [`border-${COMP$10}`]: "0px solid $borderColor",
30951
31021
  [`paddingVertical-${COMP$10}`]: "$space-2",
30952
31022
  [`gap-icon-${COMP$10}`]: "$space-2",
@@ -31347,11 +31417,11 @@ const pageMetaTitleComponentRenderer = createComponentRenderer(
31347
31417
  }
31348
31418
  );
31349
31419
  const themeVars$i = `'{"backgroundColor-ProgressBar": "var(--xmlui-backgroundColor-ProgressBar)", "color-indicator-ProgressBar": "var(--xmlui-color-indicator-ProgressBar)", "borderRadius-ProgressBar": "var(--xmlui-borderRadius-ProgressBar)", "borderRadius-indicator-ProgressBar": "var(--xmlui-borderRadius-indicator-ProgressBar)", "thickness-ProgressBar": "var(--xmlui-thickness-ProgressBar)"}'`;
31350
- const wrapper$9 = "_wrapper_nc8cw_14";
31420
+ const wrapper$8 = "_wrapper_nc8cw_14";
31351
31421
  const bar = "_bar_nc8cw_22";
31352
31422
  const styles$y = {
31353
31423
  themeVars: themeVars$i,
31354
- wrapper: wrapper$9,
31424
+ wrapper: wrapper$8,
31355
31425
  bar
31356
31426
  };
31357
31427
  const defaultProps$w = {
@@ -31392,9 +31462,9 @@ const ProgressBarMd = createMetadata({
31392
31462
  },
31393
31463
  themeVars: parseScssVar(styles$y.themeVars),
31394
31464
  defaultThemeVars: {
31395
- [`borderRadius-${COMP$V}`]: "$borderRadius",
31396
- [`borderRadius-indicator-${COMP$V}`]: "0px",
31397
- [`thickness-${COMP$V}`]: "$space-2",
31465
+ [`borderRadius-${COMP$V}`]: "999em",
31466
+ [`borderRadius-indicator-${COMP$V}`]: "999em",
31467
+ [`thickness-${COMP$V}`]: "0.5em",
31398
31468
  [`backgroundColor-${COMP$V}`]: "$color-surface-200",
31399
31469
  [`color-indicator-${COMP$V}`]: "$color-primary-500"
31400
31470
  }
@@ -32412,23 +32482,23 @@ const CompoundComponent = forwardRef(
32412
32482
  }
32413
32483
  );
32414
32484
  CompoundComponent.displayName = "CompoundComponent";
32415
- const themeVars$g = '"[]"';
32416
- const outerWrapper = "_outerWrapper_x28y5_14";
32417
- const hasOutsideScroll = "_hasOutsideScroll_x28y5_18";
32418
- const innerWrapper$1 = "_innerWrapper_x28y5_21";
32419
- const reverse = "_reverse_x28y5_27";
32420
- const loadingWrapper = "_loadingWrapper_x28y5_34";
32421
- const noRows = "_noRows_x28y5_41";
32422
- const borderCollapse = "_borderCollapse_x28y5_49";
32423
- const sectioned = "_sectioned_x28y5_49";
32424
- const row = "_row_x28y5_49";
32425
- const section = "_section_x28y5_49";
32426
- const sectionFooter = "_sectionFooter_x28y5_65";
32485
+ const themeVars$g = `'{"backgroundColor-List": "var(--xmlui-backgroundColor-List)"}'`;
32486
+ const outerListWrapper = "_outerListWrapper_1mqsp_14";
32487
+ const hasOutsideScroll = "_hasOutsideScroll_1mqsp_19";
32488
+ const innerListWrapper = "_innerListWrapper_1mqsp_22";
32489
+ const reverse = "_reverse_1mqsp_28";
32490
+ const loadingWrapper = "_loadingWrapper_1mqsp_35";
32491
+ const noRows = "_noRows_1mqsp_42";
32492
+ const borderCollapse = "_borderCollapse_1mqsp_50";
32493
+ const sectioned = "_sectioned_1mqsp_50";
32494
+ const row = "_row_1mqsp_50";
32495
+ const section = "_section_1mqsp_50";
32496
+ const sectionFooter = "_sectionFooter_1mqsp_66";
32427
32497
  const styles$w = {
32428
32498
  themeVars: themeVars$g,
32429
- outerWrapper,
32499
+ outerListWrapper,
32430
32500
  hasOutsideScroll,
32431
- innerWrapper: innerWrapper$1,
32501
+ innerListWrapper,
32432
32502
  reverse,
32433
32503
  loadingWrapper,
32434
32504
  noRows,
@@ -32759,7 +32829,7 @@ const ListNative = forwardRef(function DynamicHeightList({
32759
32829
  ref: rootRef,
32760
32830
  style: style2,
32761
32831
  className: classnames(
32762
- styles$w.outerWrapper,
32832
+ styles$w.outerListWrapper,
32763
32833
  {
32764
32834
  [styles$w.hasOutsideScroll]: hasOutsideScroll2
32765
32835
  },
@@ -32771,7 +32841,7 @@ const ListNative = forwardRef(function DynamicHeightList({
32771
32841
  rows.length > 0 && /* @__PURE__ */ jsx(
32772
32842
  "div",
32773
32843
  {
32774
- className: classnames(styles$w.innerWrapper, {
32844
+ className: classnames(styles$w.innerListWrapper, {
32775
32845
  [styles$w.reverse]: scrollAnchor === "bottom",
32776
32846
  [styles$w.borderCollapse]: borderCollapse2,
32777
32847
  [styles$w.sectioned]: groupBy2 !== void 0
@@ -32945,7 +33015,10 @@ const ListMd = createMetadata({
32945
33015
  $isLast: dComponent("Boolean indicating if this is the last item"),
32946
33016
  $group: dComponent("Group information when using `groupBy` (available in group templates)")
32947
33017
  },
32948
- themeVars: parseScssVar(styles$w.themeVars)
33018
+ themeVars: parseScssVar(styles$w.themeVars),
33019
+ defaultThemeVars: {
33020
+ [`backgroundColor-${COMP$S}`]: "$backgroundColor"
33021
+ }
32949
33022
  });
32950
33023
  const dynamicHeightListComponentRenderer = createComponentRenderer(
32951
33024
  COMP$S,
@@ -33023,11 +33096,11 @@ const dynamicHeightListComponentRenderer = createComponentRenderer(
33023
33096
  }
33024
33097
  );
33025
33098
  const themeVars$f = '"[]"';
33026
- const wrapper$8 = "_wrapper_mw0wn_14";
33099
+ const wrapper$7 = "_wrapper_mw0wn_14";
33027
33100
  const visibleOnHover = "_visibleOnHover_mw0wn_17";
33028
33101
  const styles$v = {
33029
33102
  themeVars: themeVars$f,
33030
- wrapper: wrapper$8,
33103
+ wrapper: wrapper$7,
33031
33104
  visibleOnHover
33032
33105
  };
33033
33106
  function PositionedContainer({
@@ -33902,10 +33975,10 @@ const navPanelRenderer = createComponentRenderer(
33902
33975
  }
33903
33976
  );
33904
33977
  const themeVars$e = `'{"paddingVertical-Pages": "var(--xmlui-paddingVertical-Pages)", "paddingHorizontal-Pages": "var(--xmlui-paddingHorizontal-Pages)", "gap-Pages": "var(--xmlui-gap-Pages)"}'`;
33905
- const wrapper$7 = "_wrapper_165dh_14";
33978
+ const pageWrapper = "_pageWrapper_4iuxr_14";
33906
33979
  const styles$u = {
33907
33980
  themeVars: themeVars$e,
33908
- wrapper: wrapper$7
33981
+ pageWrapper
33909
33982
  };
33910
33983
  const defaultProps$r = {
33911
33984
  fallbackPath: "/"
@@ -33938,7 +34011,7 @@ function RouteWrapper({
33938
34011
  return /* @__PURE__ */ jsx(
33939
34012
  "div",
33940
34013
  {
33941
- className: classnames(className, styles$u.wrapper, "xmlui-page-root"),
34014
+ className: classnames(className, styles$u.pageWrapper, "xmlui-page-root"),
33942
34015
  style: style2,
33943
34016
  children: renderChild2(wrappedWithContainer, layoutContext)
33944
34017
  },
@@ -34083,7 +34156,8 @@ const NavGroupMd = createMetadata({
34083
34156
  defaultThemeVars: {
34084
34157
  [`backgroundColor-dropdown-${COMP$L}`]: "$backgroundColor-primary",
34085
34158
  [`borderRadius-dropdown-${COMP$L}`]: "$borderRadius",
34086
- [`boxShadow-dropdown-${COMP$L}`]: "$boxShadow-spread"
34159
+ [`boxShadow-dropdown-${COMP$L}`]: "$boxShadow-spread",
34160
+ [`minWidth-dropdown-${COMP$L}`]: "11em"
34087
34161
  }
34088
34162
  });
34089
34163
  const navGroupComponentRenderer = createComponentRenderer(
@@ -34180,7 +34254,7 @@ const RadioGroupMd = createMetadata({
34180
34254
  },
34181
34255
  themeVars: parseScssVar(styles$O.themeVars),
34182
34256
  defaultThemeVars: {
34183
- [`gap-${RGOption}`]: "$space-1_5",
34257
+ [`gap-${RGOption}`]: "0.25em",
34184
34258
  [`borderWidth-${RGOption}`]: "1px",
34185
34259
  [`borderWidth-${RGOption}-validation`]: `2px`,
34186
34260
  [`borderColor-${RGOption}--default`]: "$color-surface-500",
@@ -34293,8 +34367,8 @@ const SpinnerMd = createMetadata({
34293
34367
  },
34294
34368
  themeVars: parseScssVar(styles$1j.themeVars),
34295
34369
  defaultThemeVars: {
34296
- [`size-${COMP$G}`]: "$space-10",
34297
- [`thickness-${COMP$G}`]: "$space-0_5",
34370
+ [`size-${COMP$G}`]: "2.5em",
34371
+ [`thickness-${COMP$G}`]: "0.125em",
34298
34372
  [`borderColor-${COMP$G}`]: "$color-surface-400"
34299
34373
  }
34300
34374
  });
@@ -34517,13 +34591,11 @@ const selectComponentRenderer = createComponentRenderer(
34517
34591
  required: extractValue.asOptionalBoolean(node.props.required),
34518
34592
  modal: extractValue.asOptionalBoolean(node.props.modal),
34519
34593
  groupBy: extractValue(node.props.groupBy),
34520
- groupHeaderRenderer: node.props.groupHeaderTemplate ? (groupName) => {
34594
+ groupHeaderRenderer: node.props.groupHeaderTemplate ? (contextVars) => {
34521
34595
  return /* @__PURE__ */ jsx(
34522
34596
  MemoizedItem,
34523
34597
  {
34524
- contextVars: {
34525
- $group: groupName
34526
- },
34598
+ contextVars,
34527
34599
  node: node.props.groupHeaderTemplate,
34528
34600
  renderChild: renderChild2
34529
34601
  }
@@ -34879,7 +34951,7 @@ const ExpandableItemMd = createMetadata({
34879
34951
  themeVars: parseScssVar(styles$G.themeVars),
34880
34952
  limitThemeVarsToComponent: true,
34881
34953
  defaultThemeVars: {
34882
- [`backgroundColor-${COMP$D}`]: "transparent",
34954
+ [`backgroundColor-${COMP$D}`]: "$backgroundColor",
34883
34955
  [`color-${COMP$D}`]: "$textColor-primary",
34884
34956
  [`color-${COMP$D}--disabled`]: "$textColor--disabled",
34885
34957
  [`fontFamily-${COMP$D}`]: "$fontFamily",
@@ -37018,20 +37090,20 @@ const dataLoaderRenderer = createLoaderRenderer(
37018
37090
  DataLoaderMd
37019
37091
  );
37020
37092
  const themeVars$d = `'{"padding-DateInput": "var(--xmlui-padding-DateInput)", "paddingHorizontal-DateInput": "var(--xmlui-paddingHorizontal-DateInput, var(--xmlui-padding-DateInput))", "paddingVertical-DateInput": "var(--xmlui-paddingVertical-DateInput, var(--xmlui-padding-DateInput))", "paddingLeft-DateInput": "var(--xmlui-paddingLeft-DateInput, var(--xmlui-paddingHorizontal-DateInput, var(--xmlui-padding-DateInput)))", "paddingRight-DateInput": "var(--xmlui-paddingRight-DateInput, var(--xmlui-paddingHorizontal-DateInput, var(--xmlui-padding-DateInput)))", "paddingTop-DateInput": "var(--xmlui-paddingTop-DateInput, var(--xmlui-paddingVertical-DateInput, var(--xmlui-padding-DateInput)))", "paddingBottom-DateInput": "var(--xmlui-paddingBottom-DateInput, var(--xmlui-paddingVertical-DateInput, var(--xmlui-padding-DateInput)))", "border-DateInput": "var(--xmlui-border-DateInput)", "borderHorizontal-DateInput": "var(--xmlui-borderHorizontal-DateInput, var(--xmlui-border-DateInput))", "borderVertical-DateInput": "var(--xmlui-borderVertical-DateInput, var(--xmlui-border-DateInput))", "borderLeft-DateInput": "var(--xmlui-borderLeft-DateInput, var(--xmlui-borderHorizontal-DateInput, var(--xmlui-border-DateInput)))", "borderRight-DateInput": "var(--xmlui-borderRight-DateInput, var(--xmlui-borderHorizontal-DateInput, var(--xmlui-border-DateInput)))", "borderTop-DateInput": "var(--xmlui-borderTop-DateInput, var(--xmlui-borderVertical-DateInput, var(--xmlui-border-DateInput)))", "borderBottom-DateInput": "var(--xmlui-borderBottom-DateInput, var(--xmlui-borderVertical-DateInput, var(--xmlui-border-DateInput)))", "borderWidth-DateInput": "var(--xmlui-borderWidth-DateInput)", "borderHorizontalWidth-DateInput": "var(--xmlui-borderHorizontalWidth-DateInput, var(--xmlui-borderWidth-DateInput))", "borderLeftWidth-DateInput": "var(--xmlui-borderLeftWidth-DateInput, var(--xmlui-borderHorizontalWidth-DateInput, var(--xmlui-borderWidth-DateInput)))", "borderRightWidth-DateInput": "var(--xmlui-borderRightWidth-DateInput, var(--xmlui-borderHorizontalWidth-DateInput, var(--xmlui-borderWidth-DateInput)))", "borderVerticalWidth-DateInput": "var(--xmlui-borderVerticalWidth-DateInput, var(--xmlui-borderWidth-DateInput))", "borderTopWidth-DateInput": "var(--xmlui-borderTopWidth-DateInput, var(--xmlui-borderVerticalWidth-DateInput, var(--xmlui-borderWidth-DateInput)))", "borderBottomWidth-DateInput": "var(--xmlui-borderBottomWidth-DateInput, var(--xmlui-borderVerticalWidth-DateInput, var(--xmlui-borderWidth-DateInput)))", "borderStyle-DateInput": "var(--xmlui-borderStyle-DateInput)", "borderHorizontalStyle-DateInput": "var(--xmlui-borderHorizontalStyle-DateInput, var(--xmlui-borderStyle-DateInput))", "borderLeftStyle-DateInput": "var(--xmlui-borderLeftStyle-DateInput, var(--xmlui-borderHorizontalStyle-DateInput, var(--xmlui-borderStyle-DateInput)))", "borderRightStyle-DateInput": "var(--xmlui-borderRightStyle-DateInput, var(--xmlui-borderHorizontalStyle-DateInput, var(--xmlui-borderStyle-DateInput)))", "borderVerticalStyle-DateInput": "var(--xmlui-borderVerticalStyle-DateInput, var(--xmlui-borderStyle-DateInput))", "borderTopStyle-DateInput": "var(--xmlui-borderTopStyle-DateInput, var(--xmlui-borderVerticalStyle-DateInput, var(--xmlui-borderStyle-DateInput)))", "borderBottomStyle-DateInput": "var(--xmlui-borderBottomStyle-DateInput, var(--xmlui-borderVerticalStyle-DateInput, var(--xmlui-borderStyle-DateInput)))", "borderColor-DateInput": "var(--xmlui-borderColor-DateInput)", "borderHorizontalColor-DateInput": "var(--xmlui-borderHorizontalColor-DateInput, var(--xmlui-borderColor-DateInput))", "borderLeftColor-DateInput": "var(--xmlui-borderLeftColor-DateInput, var(--xmlui-borderHorizontalColor-DateInput, var(--xmlui-borderColor-DateInput)))", "borderRightColor-DateInput": "var(--xmlui-borderRightColor-DateInput, var(--xmlui-borderHorizontalColor-DateInput, var(--xmlui-borderColor-DateInput)))", "borderVerticalColor-DateInput": "var(--xmlui-borderVerticalColor-DateInput, var(--xmlui-borderColor-DateInput))", "borderTopColor-DateInput": "var(--xmlui-borderTopColor-DateInput, var(--xmlui-borderVerticalColor-DateInput, var(--xmlui-borderColor-DateInput)))", "borderBottomColor-DateInput": "var(--xmlui-borderBottomColor-DateInput, var(--xmlui-borderVerticalColor-DateInput, var(--xmlui-borderColor-DateInput)))", "borderStartStartRadius-DateInput": "var(--xmlui-borderStartStartRadius-DateInput, var(--xmlui-borderRadius-DateInput))", "borderStartEndRadius-DateInput": "var(--xmlui-borderStartEndRadius-DateInput, var(--xmlui-borderRadius-DateInput))", "borderEndStartRadius-DateInput": "var(--xmlui-borderEndStartRadius-DateInput, var(--xmlui-borderRadius-DateInput))", "borderEndEndRadius-DateInput": "var(--xmlui-borderEndEndRadius-DateInput, var(--xmlui-borderRadius-DateInput))", "color-divider-DateInput": "var(--xmlui-color-divider-DateInput)", "spacing-divider-DateInput": "var(--xmlui-spacing-divider-DateInput)", "width-input-DateInput": "var(--xmlui-width-input-DateInput)", "minWidth-input-DateInput": "var(--xmlui-minWidth-input-DateInput)", "padding-input-DateInput": "var(--xmlui-padding-input-DateInput)", "textAlign-input-DateInput": "var(--xmlui-textAlign-input-DateInput)", "fontSize-input-DateInput": "var(--xmlui-fontSize-input-DateInput)", "borderRadius-input-DateInput": "var(--xmlui-borderRadius-input-DateInput)", "backgroundColor-input-DateInput-invalid": "var(--xmlui-backgroundColor-input-DateInput-invalid)", "padding-button-DateInput": "var(--xmlui-padding-button-DateInput)", "borderRadius-button-DateInput": "var(--xmlui-borderRadius-button-DateInput)", "hoverColor-button-DateInput": "var(--xmlui-hoverColor-button-DateInput)", "disabledColor-button-DateInput": "var(--xmlui-disabledColor-button-DateInput)", "outlineColor-button-DateInput--focused": "var(--xmlui-outlineColor-button-DateInput--focused)", "outlineWidth-button-DateInput--focused": "var(--xmlui-outlineWidth-button-DateInput--focused)", "outlineOffset-button-DateInput--focused": "var(--xmlui-outlineOffset-button-DateInput--focused)", "opacity-DateInput--disabled": "var(--xmlui-opacity-DateInput--disabled)", "backgroundColor-DateInput--hover": "var(--xmlui-backgroundColor-DateInput--hover)", "margin-input-DateInput": "var(--xmlui-margin-input-DateInput)", "transition-background-DateInput": "var(--xmlui-transition-background-DateInput)", "Input:borderRadius-DateInput--default": "var(--xmlui-borderRadius-DateInput--default)", "Input:borderColor-DateInput--default": "var(--xmlui-borderColor-DateInput--default)", "Input:borderWidth-DateInput--default": "var(--xmlui-borderWidth-DateInput--default)", "Input:borderStyle-DateInput--default": "var(--xmlui-borderStyle-DateInput--default)", "fontSize-input-DateInput--default": "var(--xmlui-fontSize-input-DateInput--default)", "Input:backgroundColor-DateInput--default": "var(--xmlui-backgroundColor-DateInput--default)", "Input:boxShadow-DateInput--default": "var(--xmlui-boxShadow-DateInput--default)", "Input:textColor-DateInput--default": "var(--xmlui-textColor-DateInput--default)", "Input:borderColor-DateInput--default--hover": "var(--xmlui-borderColor-DateInput--default--hover)", "Input:backgroundColor-DateInput--default--hover": "var(--xmlui-backgroundColor-DateInput--default--hover)", "Input:boxShadow-DateInput--default--hover": "var(--xmlui-boxShadow-DateInput--default--hover)", "Input:textColor-DateInput--default--hover": "var(--xmlui-textColor-DateInput--default--hover)", "Input:borderColor-DateInput--default--focus": "var(--xmlui-borderColor-DateInput--default--focus)", "Input:backgroundColor-DateInput--default--focus": "var(--xmlui-backgroundColor-DateInput--default--focus)", "Input:boxShadow-DateInput--default--focus": "var(--xmlui-boxShadow-DateInput--default--focus)", "Input:textColor-DateInput--default--focus": "var(--xmlui-textColor-DateInput--default--focus)", "Input:outlineWidth-DateInput--default--focus": "var(--xmlui-outlineWidth-DateInput--default--focus)", "Input:outlineColor-DateInput--default--focus": "var(--xmlui-outlineColor-DateInput--default--focus)", "Input:outlineStyle-DateInput--default--focus": "var(--xmlui-outlineStyle-DateInput--default--focus)", "Input:outlineOffset-DateInput--default--focus": "var(--xmlui-outlineOffset-DateInput--default--focus)", "Input:color-adornment-DateInput--default": "var(--xmlui-color-adornment-DateInput--default)", "Input:borderRadius-DateInput--error": "var(--xmlui-borderRadius-DateInput--error)", "Input:borderColor-DateInput--error": "var(--xmlui-borderColor-DateInput--error)", "Input:borderWidth-DateInput--error": "var(--xmlui-borderWidth-DateInput--error)", "Input:borderStyle-DateInput--error": "var(--xmlui-borderStyle-DateInput--error)", "fontSize-input-DateInput--error": "var(--xmlui-fontSize-input-DateInput--error)", "Input:backgroundColor-DateInput--error": "var(--xmlui-backgroundColor-DateInput--error)", "Input:boxShadow-DateInput--error": "var(--xmlui-boxShadow-DateInput--error)", "Input:textColor-DateInput--error": "var(--xmlui-textColor-DateInput--error)", "Input:borderColor-DateInput--error--hover": "var(--xmlui-borderColor-DateInput--error--hover)", "Input:backgroundColor-DateInput--error--hover": "var(--xmlui-backgroundColor-DateInput--error--hover)", "Input:boxShadow-DateInput--error--hover": "var(--xmlui-boxShadow-DateInput--error--hover)", "Input:textColor-DateInput--error--hover": "var(--xmlui-textColor-DateInput--error--hover)", "Input:borderColor-DateInput--error--focus": "var(--xmlui-borderColor-DateInput--error--focus)", "Input:backgroundColor-DateInput--error--focus": "var(--xmlui-backgroundColor-DateInput--error--focus)", "Input:boxShadow-DateInput--error--focus": "var(--xmlui-boxShadow-DateInput--error--focus)", "Input:textColor-DateInput--error--focus": "var(--xmlui-textColor-DateInput--error--focus)", "Input:outlineWidth-DateInput--error--focus": "var(--xmlui-outlineWidth-DateInput--error--focus)", "Input:outlineColor-DateInput--error--focus": "var(--xmlui-outlineColor-DateInput--error--focus)", "Input:outlineStyle-DateInput--error--focus": "var(--xmlui-outlineStyle-DateInput--error--focus)", "Input:outlineOffset-DateInput--error--focus": "var(--xmlui-outlineOffset-DateInput--error--focus)", "Input:color-adornment-DateInput--error": "var(--xmlui-color-adornment-DateInput--error)", "Input:borderRadius-DateInput--warning": "var(--xmlui-borderRadius-DateInput--warning)", "Input:borderColor-DateInput--warning": "var(--xmlui-borderColor-DateInput--warning)", "Input:borderWidth-DateInput--warning": "var(--xmlui-borderWidth-DateInput--warning)", "Input:borderStyle-DateInput--warning": "var(--xmlui-borderStyle-DateInput--warning)", "fontSize-input-DateInput--warning": "var(--xmlui-fontSize-input-DateInput--warning)", "Input:backgroundColor-DateInput--warning": "var(--xmlui-backgroundColor-DateInput--warning)", "Input:boxShadow-DateInput--warning": "var(--xmlui-boxShadow-DateInput--warning)", "Input:textColor-DateInput--warning": "var(--xmlui-textColor-DateInput--warning)", "Input:borderColor-DateInput--warning--hover": "var(--xmlui-borderColor-DateInput--warning--hover)", "Input:backgroundColor-DateInput--warning--hover": "var(--xmlui-backgroundColor-DateInput--warning--hover)", "Input:boxShadow-DateInput--warning--hover": "var(--xmlui-boxShadow-DateInput--warning--hover)", "Input:textColor-DateInput--warning--hover": "var(--xmlui-textColor-DateInput--warning--hover)", "Input:borderColor-DateInput--warning--focus": "var(--xmlui-borderColor-DateInput--warning--focus)", "Input:backgroundColor-DateInput--warning--focus": "var(--xmlui-backgroundColor-DateInput--warning--focus)", "Input:boxShadow-DateInput--warning--focus": "var(--xmlui-boxShadow-DateInput--warning--focus)", "Input:textColor-DateInput--warning--focus": "var(--xmlui-textColor-DateInput--warning--focus)", "Input:outlineWidth-DateInput--warning--focus": "var(--xmlui-outlineWidth-DateInput--warning--focus)", "Input:outlineColor-DateInput--warning--focus": "var(--xmlui-outlineColor-DateInput--warning--focus)", "Input:outlineStyle-DateInput--warning--focus": "var(--xmlui-outlineStyle-DateInput--warning--focus)", "Input:outlineOffset-DateInput--warning--focus": "var(--xmlui-outlineOffset-DateInput--warning--focus)", "Input:color-adornment-DateInput--warning": "var(--xmlui-color-adornment-DateInput--warning)", "Input:borderRadius-DateInput--success": "var(--xmlui-borderRadius-DateInput--success)", "Input:borderColor-DateInput--success": "var(--xmlui-borderColor-DateInput--success)", "Input:borderWidth-DateInput--success": "var(--xmlui-borderWidth-DateInput--success)", "Input:borderStyle-DateInput--success": "var(--xmlui-borderStyle-DateInput--success)", "fontSize-input-DateInput--success": "var(--xmlui-fontSize-input-DateInput--success)", "Input:backgroundColor-DateInput--success": "var(--xmlui-backgroundColor-DateInput--success)", "Input:boxShadow-DateInput--success": "var(--xmlui-boxShadow-DateInput--success)", "Input:textColor-DateInput--success": "var(--xmlui-textColor-DateInput--success)", "Input:borderColor-DateInput--success--hover": "var(--xmlui-borderColor-DateInput--success--hover)", "Input:backgroundColor-DateInput--success--hover": "var(--xmlui-backgroundColor-DateInput--success--hover)", "Input:boxShadow-DateInput--success--hover": "var(--xmlui-boxShadow-DateInput--success--hover)", "Input:textColor-DateInput--success--hover": "var(--xmlui-textColor-DateInput--success--hover)", "Input:borderColor-DateInput--success--focus": "var(--xmlui-borderColor-DateInput--success--focus)", "Input:backgroundColor-DateInput--success--focus": "var(--xmlui-backgroundColor-DateInput--success--focus)", "Input:boxShadow-DateInput--success--focus": "var(--xmlui-boxShadow-DateInput--success--focus)", "Input:textColor-DateInput--success--focus": "var(--xmlui-textColor-DateInput--success--focus)", "Input:outlineWidth-DateInput--success--focus": "var(--xmlui-outlineWidth-DateInput--success--focus)", "Input:outlineColor-DateInput--success--focus": "var(--xmlui-outlineColor-DateInput--success--focus)", "Input:outlineStyle-DateInput--success--focus": "var(--xmlui-outlineStyle-DateInput--success--focus)", "Input:outlineOffset-DateInput--success--focus": "var(--xmlui-outlineOffset-DateInput--success--focus)", "Input:color-adornment-DateInput--success": "var(--xmlui-color-adornment-DateInput--success)", "Input:gap-adornment-DateInput": "var(--xmlui-gap-adornment-DateInput)", "Input:backgroundColor-DateInput--disabled": "var(--xmlui-backgroundColor-DateInput--disabled)", "Input:textColor-DateInput--disabled": "var(--xmlui-textColor-DateInput--disabled)", "Input:borderColor-DateInput--disabled": "var(--xmlui-borderColor-DateInput--disabled)", "Input:fontSize-DateInput--default": "var(--xmlui-fontSize-DateInput--default)", "Input:fontSize-DateInput--error": "var(--xmlui-fontSize-DateInput--error)", "Input:fontSize-DateInput--warning": "var(--xmlui-fontSize-DateInput--warning)", "Input:fontSize-DateInput--success": "var(--xmlui-fontSize-DateInput--success)"}'`;
37021
- const dateInputWrapper = "_dateInputWrapper_1ajlz_14";
37022
- const disabled$1 = "_disabled_1ajlz_29";
37023
- const readOnly$1 = "_readOnly_1ajlz_33";
37024
- const adornment$1 = "_adornment_1ajlz_64";
37025
- const error$3 = "_error_1ajlz_67";
37026
- const warning$3 = "_warning_1ajlz_98";
37027
- const valid$3 = "_valid_1ajlz_129";
37028
- const wrapper$6 = "_wrapper_1ajlz_185";
37029
- const inputGroup$1 = "_inputGroup_1ajlz_190";
37030
- const input$1 = "_input_1ajlz_190";
37031
- const day = "_day_1ajlz_222";
37032
- const month = "_month_1ajlz_222";
37033
- const year = "_year_1ajlz_222";
37034
- const invalid$1 = "_invalid_1ajlz_249";
37093
+ const dateInputWrapper = "_dateInputWrapper_1wsg2_14";
37094
+ const disabled$1 = "_disabled_1wsg2_30";
37095
+ const readOnly$1 = "_readOnly_1wsg2_34";
37096
+ const adornment$1 = "_adornment_1wsg2_65";
37097
+ const error$3 = "_error_1wsg2_68";
37098
+ const warning$3 = "_warning_1wsg2_99";
37099
+ const valid$3 = "_valid_1wsg2_130";
37100
+ const wrapper$6 = "_wrapper_1wsg2_186";
37101
+ const inputGroup$1 = "_inputGroup_1wsg2_191";
37102
+ const input$1 = "_input_1wsg2_191";
37103
+ const day = "_day_1wsg2_220";
37104
+ const month = "_month_1wsg2_220";
37105
+ const year = "_year_1wsg2_220";
37106
+ const invalid$1 = "_invalid_1wsg2_247";
37035
37107
  const styles$t = {
37036
37108
  themeVars: themeVars$d,
37037
37109
  dateInputWrapper,
@@ -38151,6 +38223,7 @@ const DateInputMd = createMetadata({
38151
38223
  themeVars: parseScssVar(styles$t.themeVars),
38152
38224
  defaultThemeVars: {
38153
38225
  // DateInput specific theme variables (matching TimeInput structure)
38226
+ [`backgroundColor-${COMP$B}`]: "$backgroundColor",
38154
38227
  [`paddingHorizontal-${COMP$B}`]: "$space-2",
38155
38228
  [`paddingVertical-${COMP$B}`]: "$space-2",
38156
38229
  [`color-divider-${COMP$B}`]: "$textColor-secondary",
@@ -38159,7 +38232,6 @@ const DateInputMd = createMetadata({
38159
38232
  [`minWidth-input-${COMP$B}`]: "0.54em",
38160
38233
  [`padding-input-${COMP$B}`]: "0 2px",
38161
38234
  [`textAlign-input-${COMP$B}`]: "center",
38162
- [`fontSize-input-${COMP$B}`]: "inherit",
38163
38235
  [`borderRadius-input-${COMP$B}`]: "$borderRadius",
38164
38236
  [`backgroundColor-input-${COMP$B}-invalid`]: "rgba(220, 53, 69, 0.15)",
38165
38237
  [`padding-button-${COMP$B}`]: "4px 6px",
@@ -38168,9 +38240,7 @@ const DateInputMd = createMetadata({
38168
38240
  [`disabledColor-button-${COMP$B}`]: "$textColor-disabled",
38169
38241
  [`outlineColor-button-${COMP$B}--focused`]: "$color-accent-500",
38170
38242
  [`outlineWidth-button-${COMP$B}--focused`]: "2px",
38171
- [`outlineOffset-button-${COMP$B}--focused`]: "2px",
38172
- [`minWidth-ampm-${COMP$B}`]: "2em",
38173
- [`fontSize-ampm-${COMP$B}`]: "inherit"
38243
+ [`outlineOffset-button-${COMP$B}--focused`]: "2px"
38174
38244
  }
38175
38245
  });
38176
38246
  const dateInputComponentRenderer = createComponentRenderer(
@@ -38224,26 +38294,26 @@ const dateInputComponentRenderer = createComponentRenderer(
38224
38294
  }
38225
38295
  );
38226
38296
  const themeVars$c = `'{"padding-TimeInput": "var(--xmlui-padding-TimeInput)", "paddingHorizontal-TimeInput": "var(--xmlui-paddingHorizontal-TimeInput, var(--xmlui-padding-TimeInput))", "paddingVertical-TimeInput": "var(--xmlui-paddingVertical-TimeInput, var(--xmlui-padding-TimeInput))", "paddingLeft-TimeInput": "var(--xmlui-paddingLeft-TimeInput, var(--xmlui-paddingHorizontal-TimeInput, var(--xmlui-padding-TimeInput)))", "paddingRight-TimeInput": "var(--xmlui-paddingRight-TimeInput, var(--xmlui-paddingHorizontal-TimeInput, var(--xmlui-padding-TimeInput)))", "paddingTop-TimeInput": "var(--xmlui-paddingTop-TimeInput, var(--xmlui-paddingVertical-TimeInput, var(--xmlui-padding-TimeInput)))", "paddingBottom-TimeInput": "var(--xmlui-paddingBottom-TimeInput, var(--xmlui-paddingVertical-TimeInput, var(--xmlui-padding-TimeInput)))", "color-divider-TimeInput": "var(--xmlui-color-divider-TimeInput)", "spacing-divider-TimeInput": "var(--xmlui-spacing-divider-TimeInput)", "width-input-TimeInput": "var(--xmlui-width-input-TimeInput)", "minWidth-input-TimeInput": "var(--xmlui-minWidth-input-TimeInput)", "textAlign-input-TimeInput": "var(--xmlui-textAlign-input-TimeInput)", "fontSize-input-TimeInput": "var(--xmlui-fontSize-input-TimeInput)", "borderRadius-input-TimeInput": "var(--xmlui-borderRadius-input-TimeInput)", "backgroundColor-input-TimeInput-invalid": "var(--xmlui-backgroundColor-input-TimeInput-invalid)", "padding-button-TimeInput": "var(--xmlui-padding-button-TimeInput)", "borderRadius-button-TimeInput": "var(--xmlui-borderRadius-button-TimeInput)", "hoverColor-button-TimeInput": "var(--xmlui-hoverColor-button-TimeInput)", "disabledColor-button-TimeInput": "var(--xmlui-disabledColor-button-TimeInput)", "outlineColor-button-TimeInput--focused": "var(--xmlui-outlineColor-button-TimeInput--focused)", "outlineWidth-button-TimeInput--focused": "var(--xmlui-outlineWidth-button-TimeInput--focused)", "outlineOffset-button-TimeInput--focused": "var(--xmlui-outlineOffset-button-TimeInput--focused)", "minWidth-ampm-TimeInput": "var(--xmlui-minWidth-ampm-TimeInput)", "fontSize-ampm-TimeInput": "var(--xmlui-fontSize-ampm-TimeInput)", "opacity-TimeInput--disabled": "var(--xmlui-opacity-TimeInput--disabled)", "backgroundColor-TimeInput--hover": "var(--xmlui-backgroundColor-TimeInput--hover)", "margin-input-TimeInput": "var(--xmlui-margin-input-TimeInput)", "transition-background-TimeInput": "var(--xmlui-transition-background-TimeInput)", "backgroundColor-menu-TimeInput": "var(--xmlui-backgroundColor-menu-TimeInput)", "borderRadius-menu-TimeInput": "var(--xmlui-borderRadius-menu-TimeInput)", "boxShadow-menu-TimeInput": "var(--xmlui-boxShadow-menu-TimeInput)", "borderColor-menu-TimeInput": "var(--xmlui-borderColor-menu-TimeInput)", "backgroundColor-item-TimeInput--hover": "var(--xmlui-backgroundColor-item-TimeInput--hover)", "backgroundColor-item-TimeInput--active": "var(--xmlui-backgroundColor-item-TimeInput--active)", "maxHeight-menu-TimeInput": "var(--xmlui-maxHeight-menu-TimeInput)", "padding-item-TimeInput": "var(--xmlui-padding-item-TimeInput)", "opacity-item-TimeInput--disabled": "var(--xmlui-opacity-item-TimeInput--disabled)", "margin-icon-TimeInput": "var(--xmlui-margin-icon-TimeInput)", "outlineColor-ampm-TimeInput--focused": "var(--xmlui-outlineColor-ampm-TimeInput--focused)", "outlineWidth-ampm-TimeInput--focused": "var(--xmlui-outlineWidth-ampm-TimeInput--focused)", "outlineOffset-ampm-TimeInput--focused": "var(--xmlui-outlineOffset-ampm-TimeInput--focused)", "Input:borderRadius-TimeInput--default": "var(--xmlui-borderRadius-TimeInput--default)", "Input:borderColor-TimeInput--default": "var(--xmlui-borderColor-TimeInput--default)", "Input:borderWidth-TimeInput--default": "var(--xmlui-borderWidth-TimeInput--default)", "Input:borderStyle-TimeInput--default": "var(--xmlui-borderStyle-TimeInput--default)", "Input:fontSize-TimeInput--default": "var(--xmlui-fontSize-TimeInput--default)", "Input:backgroundColor-TimeInput--default": "var(--xmlui-backgroundColor-TimeInput--default)", "Input:boxShadow-TimeInput--default": "var(--xmlui-boxShadow-TimeInput--default)", "Input:textColor-TimeInput--default": "var(--xmlui-textColor-TimeInput--default)", "Input:borderColor-TimeInput--default--hover": "var(--xmlui-borderColor-TimeInput--default--hover)", "Input:backgroundColor-TimeInput--default--hover": "var(--xmlui-backgroundColor-TimeInput--default--hover)", "Input:boxShadow-TimeInput--default--hover": "var(--xmlui-boxShadow-TimeInput--default--hover)", "Input:textColor-TimeInput--default--hover": "var(--xmlui-textColor-TimeInput--default--hover)", "Input:borderColor-TimeInput--default--focus": "var(--xmlui-borderColor-TimeInput--default--focus)", "Input:backgroundColor-TimeInput--default--focus": "var(--xmlui-backgroundColor-TimeInput--default--focus)", "Input:boxShadow-TimeInput--default--focus": "var(--xmlui-boxShadow-TimeInput--default--focus)", "Input:textColor-TimeInput--default--focus": "var(--xmlui-textColor-TimeInput--default--focus)", "Input:outlineWidth-TimeInput--default--focus": "var(--xmlui-outlineWidth-TimeInput--default--focus)", "Input:outlineColor-TimeInput--default--focus": "var(--xmlui-outlineColor-TimeInput--default--focus)", "Input:outlineStyle-TimeInput--default--focus": "var(--xmlui-outlineStyle-TimeInput--default--focus)", "Input:outlineOffset-TimeInput--default--focus": "var(--xmlui-outlineOffset-TimeInput--default--focus)", "Input:color-adornment-TimeInput--default": "var(--xmlui-color-adornment-TimeInput--default)", "Input:borderRadius-TimeInput--error": "var(--xmlui-borderRadius-TimeInput--error)", "Input:borderColor-TimeInput--error": "var(--xmlui-borderColor-TimeInput--error)", "Input:borderWidth-TimeInput--error": "var(--xmlui-borderWidth-TimeInput--error)", "Input:borderStyle-TimeInput--error": "var(--xmlui-borderStyle-TimeInput--error)", "Input:fontSize-TimeInput--error": "var(--xmlui-fontSize-TimeInput--error)", "Input:backgroundColor-TimeInput--error": "var(--xmlui-backgroundColor-TimeInput--error)", "Input:boxShadow-TimeInput--error": "var(--xmlui-boxShadow-TimeInput--error)", "Input:textColor-TimeInput--error": "var(--xmlui-textColor-TimeInput--error)", "Input:borderColor-TimeInput--error--hover": "var(--xmlui-borderColor-TimeInput--error--hover)", "Input:backgroundColor-TimeInput--error--hover": "var(--xmlui-backgroundColor-TimeInput--error--hover)", "Input:boxShadow-TimeInput--error--hover": "var(--xmlui-boxShadow-TimeInput--error--hover)", "Input:textColor-TimeInput--error--hover": "var(--xmlui-textColor-TimeInput--error--hover)", "Input:borderColor-TimeInput--error--focus": "var(--xmlui-borderColor-TimeInput--error--focus)", "Input:backgroundColor-TimeInput--error--focus": "var(--xmlui-backgroundColor-TimeInput--error--focus)", "Input:boxShadow-TimeInput--error--focus": "var(--xmlui-boxShadow-TimeInput--error--focus)", "Input:textColor-TimeInput--error--focus": "var(--xmlui-textColor-TimeInput--error--focus)", "Input:outlineWidth-TimeInput--error--focus": "var(--xmlui-outlineWidth-TimeInput--error--focus)", "Input:outlineColor-TimeInput--error--focus": "var(--xmlui-outlineColor-TimeInput--error--focus)", "Input:outlineStyle-TimeInput--error--focus": "var(--xmlui-outlineStyle-TimeInput--error--focus)", "Input:outlineOffset-TimeInput--error--focus": "var(--xmlui-outlineOffset-TimeInput--error--focus)", "Input:color-adornment-TimeInput--error": "var(--xmlui-color-adornment-TimeInput--error)", "Input:borderRadius-TimeInput--warning": "var(--xmlui-borderRadius-TimeInput--warning)", "Input:borderColor-TimeInput--warning": "var(--xmlui-borderColor-TimeInput--warning)", "Input:borderWidth-TimeInput--warning": "var(--xmlui-borderWidth-TimeInput--warning)", "Input:borderStyle-TimeInput--warning": "var(--xmlui-borderStyle-TimeInput--warning)", "Input:fontSize-TimeInput--warning": "var(--xmlui-fontSize-TimeInput--warning)", "Input:backgroundColor-TimeInput--warning": "var(--xmlui-backgroundColor-TimeInput--warning)", "Input:boxShadow-TimeInput--warning": "var(--xmlui-boxShadow-TimeInput--warning)", "Input:textColor-TimeInput--warning": "var(--xmlui-textColor-TimeInput--warning)", "Input:borderColor-TimeInput--warning--hover": "var(--xmlui-borderColor-TimeInput--warning--hover)", "Input:backgroundColor-TimeInput--warning--hover": "var(--xmlui-backgroundColor-TimeInput--warning--hover)", "Input:boxShadow-TimeInput--warning--hover": "var(--xmlui-boxShadow-TimeInput--warning--hover)", "Input:textColor-TimeInput--warning--hover": "var(--xmlui-textColor-TimeInput--warning--hover)", "Input:borderColor-TimeInput--warning--focus": "var(--xmlui-borderColor-TimeInput--warning--focus)", "Input:backgroundColor-TimeInput--warning--focus": "var(--xmlui-backgroundColor-TimeInput--warning--focus)", "Input:boxShadow-TimeInput--warning--focus": "var(--xmlui-boxShadow-TimeInput--warning--focus)", "Input:textColor-TimeInput--warning--focus": "var(--xmlui-textColor-TimeInput--warning--focus)", "Input:outlineWidth-TimeInput--warning--focus": "var(--xmlui-outlineWidth-TimeInput--warning--focus)", "Input:outlineColor-TimeInput--warning--focus": "var(--xmlui-outlineColor-TimeInput--warning--focus)", "Input:outlineStyle-TimeInput--warning--focus": "var(--xmlui-outlineStyle-TimeInput--warning--focus)", "Input:outlineOffset-TimeInput--warning--focus": "var(--xmlui-outlineOffset-TimeInput--warning--focus)", "Input:color-adornment-TimeInput--warning": "var(--xmlui-color-adornment-TimeInput--warning)", "Input:borderRadius-TimeInput--success": "var(--xmlui-borderRadius-TimeInput--success)", "Input:borderColor-TimeInput--success": "var(--xmlui-borderColor-TimeInput--success)", "Input:borderWidth-TimeInput--success": "var(--xmlui-borderWidth-TimeInput--success)", "Input:borderStyle-TimeInput--success": "var(--xmlui-borderStyle-TimeInput--success)", "Input:fontSize-TimeInput--success": "var(--xmlui-fontSize-TimeInput--success)", "Input:backgroundColor-TimeInput--success": "var(--xmlui-backgroundColor-TimeInput--success)", "Input:boxShadow-TimeInput--success": "var(--xmlui-boxShadow-TimeInput--success)", "Input:textColor-TimeInput--success": "var(--xmlui-textColor-TimeInput--success)", "Input:borderColor-TimeInput--success--hover": "var(--xmlui-borderColor-TimeInput--success--hover)", "Input:backgroundColor-TimeInput--success--hover": "var(--xmlui-backgroundColor-TimeInput--success--hover)", "Input:boxShadow-TimeInput--success--hover": "var(--xmlui-boxShadow-TimeInput--success--hover)", "Input:textColor-TimeInput--success--hover": "var(--xmlui-textColor-TimeInput--success--hover)", "Input:borderColor-TimeInput--success--focus": "var(--xmlui-borderColor-TimeInput--success--focus)", "Input:backgroundColor-TimeInput--success--focus": "var(--xmlui-backgroundColor-TimeInput--success--focus)", "Input:boxShadow-TimeInput--success--focus": "var(--xmlui-boxShadow-TimeInput--success--focus)", "Input:textColor-TimeInput--success--focus": "var(--xmlui-textColor-TimeInput--success--focus)", "Input:outlineWidth-TimeInput--success--focus": "var(--xmlui-outlineWidth-TimeInput--success--focus)", "Input:outlineColor-TimeInput--success--focus": "var(--xmlui-outlineColor-TimeInput--success--focus)", "Input:outlineStyle-TimeInput--success--focus": "var(--xmlui-outlineStyle-TimeInput--success--focus)", "Input:outlineOffset-TimeInput--success--focus": "var(--xmlui-outlineOffset-TimeInput--success--focus)", "Input:color-adornment-TimeInput--success": "var(--xmlui-color-adornment-TimeInput--success)", "Input:gap-adornment-TimeInput": "var(--xmlui-gap-adornment-TimeInput)", "Input:backgroundColor-TimeInput--disabled": "var(--xmlui-backgroundColor-TimeInput--disabled)", "Input:textColor-TimeInput--disabled": "var(--xmlui-textColor-TimeInput--disabled)", "Input:borderColor-TimeInput--disabled": "var(--xmlui-borderColor-TimeInput--disabled)"}'`;
38227
- const timeInputWrapper = "_timeInputWrapper_qhvgh_14";
38228
- const disabled = "_disabled_qhvgh_29";
38229
- const readOnly = "_readOnly_qhvgh_33";
38230
- const adornment = "_adornment_qhvgh_64";
38231
- const error$2 = "_error_qhvgh_67";
38232
- const warning$2 = "_warning_qhvgh_98";
38233
- const valid$2 = "_valid_qhvgh_129";
38234
- const wrapper$5 = "_wrapper_qhvgh_185";
38235
- const inputGroup = "_inputGroup_qhvgh_191";
38236
- const input = "_input_qhvgh_191";
38237
- const hour = "_hour_qhvgh_214";
38238
- const minute = "_minute_qhvgh_214";
38239
- const second = "_second_qhvgh_214";
38240
- const invalid = "_invalid_qhvgh_235";
38241
- const amPmButton = "_amPmButton_qhvgh_272";
38242
- const amPmValue = "_amPmValue_qhvgh_299";
38243
- const button = "_button_qhvgh_343";
38244
- const clearButton = "_clearButton_qhvgh_343";
38245
- const buttonIcon = "_buttonIcon_qhvgh_353";
38246
- const clearButtonIcon = "_clearButtonIcon_qhvgh_353";
38297
+ const timeInputWrapper = "_timeInputWrapper_kzcv1_14";
38298
+ const disabled = "_disabled_kzcv1_30";
38299
+ const readOnly = "_readOnly_kzcv1_34";
38300
+ const adornment = "_adornment_kzcv1_65";
38301
+ const error$2 = "_error_kzcv1_68";
38302
+ const warning$2 = "_warning_kzcv1_99";
38303
+ const valid$2 = "_valid_kzcv1_130";
38304
+ const wrapper$5 = "_wrapper_kzcv1_186";
38305
+ const inputGroup = "_inputGroup_kzcv1_192";
38306
+ const input = "_input_kzcv1_192";
38307
+ const hour = "_hour_kzcv1_213";
38308
+ const minute = "_minute_kzcv1_213";
38309
+ const second = "_second_kzcv1_213";
38310
+ const invalid = "_invalid_kzcv1_234";
38311
+ const amPmButton = "_amPmButton_kzcv1_271";
38312
+ const amPmValue = "_amPmValue_kzcv1_298";
38313
+ const button = "_button_kzcv1_342";
38314
+ const clearButton = "_clearButton_kzcv1_342";
38315
+ const buttonIcon = "_buttonIcon_kzcv1_352";
38316
+ const clearButtonIcon = "_clearButtonIcon_kzcv1_352";
38247
38317
  const styles$q = {
38248
38318
  themeVars: themeVars$c,
38249
38319
  timeInputWrapper,
@@ -41481,11 +41551,11 @@ const toneChangerButtonComponentRenderer = createComponentRenderer(
41481
41551
  }
41482
41552
  );
41483
41553
  const themeVars$7 = `'{"borderColor-ToneSwitch": "var(--xmlui-borderColor-ToneSwitch)", "borderColor-ToneSwitch--hover": "var(--xmlui-borderColor-ToneSwitch--hover)", "backgroundColor-ToneSwitch-light": "var(--xmlui-backgroundColor-ToneSwitch-light)", "color-ToneSwitch-light": "var(--xmlui-color-ToneSwitch-light)", "backgroundColor-ToneSwitch-dark": "var(--xmlui-backgroundColor-ToneSwitch-dark)", "color-ToneSwitch-dark": "var(--xmlui-color-ToneSwitch-dark)"}'`;
41484
- const iconSwitch = "_iconSwitch_1s8aa_14";
41485
- const iconThumb = "_iconThumb_1s8aa_30";
41486
- const light = "_light_1s8aa_42";
41487
- const dark = "_dark_1s8aa_45";
41488
- const icon$1 = "_icon_1s8aa_14";
41554
+ const iconSwitch = "_iconSwitch_s0vhl_14";
41555
+ const iconThumb = "_iconThumb_s0vhl_30";
41556
+ const light = "_light_s0vhl_42";
41557
+ const dark = "_dark_s0vhl_45";
41558
+ const icon$1 = "_icon_s0vhl_14";
41489
41559
  const styles$k = {
41490
41560
  themeVars: themeVars$7,
41491
41561
  iconSwitch,
@@ -41874,6 +41944,7 @@ const AutoCompleteMd = createMetadata({
41874
41944
  },
41875
41945
  themeVars: parseScssVar(styles$M.themeVars),
41876
41946
  defaultThemeVars: {
41947
+ [`backgroundColor-${COMP$k}`]: "$backgroundColor",
41877
41948
  [`backgroundColor-menu-${COMP$k}`]: "$color-surface-raised",
41878
41949
  [`boxShadow-menu-${COMP$k}`]: "$boxShadow-md",
41879
41950
  [`borderRadius-menu-${COMP$k}`]: "$borderRadius",
@@ -42007,7 +42078,7 @@ const BackdropMd = createMetadata({
42007
42078
  },
42008
42079
  themeVars: parseScssVar(styles$j.themeVars),
42009
42080
  defaultThemeVars: {
42010
- [`backgroundColor-${COMP$j}`]: "black",
42081
+ [`backgroundColor-${COMP$j}`]: "transparent",
42011
42082
  [`opacity-${COMP$j}`]: "0.1"
42012
42083
  }
42013
42084
  });
@@ -43996,11 +44067,11 @@ const htmlWbrTagRenderer = createComponentRenderer(
43996
44067
  return /* @__PURE__ */ jsx("wbr", { className, ...props, children: renderChild2(node.children) });
43997
44068
  }
43998
44069
  );
43999
- const themeVars$5 = `'{"Input:borderRadius-ColorPicker--default": "var(--xmlui-borderRadius-ColorPicker--default)", "Input:borderColor-ColorPicker--default": "var(--xmlui-borderColor-ColorPicker--default)", "Input:borderWidth-ColorPicker--default": "var(--xmlui-borderWidth-ColorPicker--default)", "Input:borderStyle-ColorPicker--default": "var(--xmlui-borderStyle-ColorPicker--default)", "Input:boxShadow-ColorPicker--default": "var(--xmlui-boxShadow-ColorPicker--default)", "Input:borderColor-ColorPicker--default--hover": "var(--xmlui-borderColor-ColorPicker--default--hover)", "Input:boxShadow-ColorPicker--default--hover": "var(--xmlui-boxShadow-ColorPicker--default--hover)", "Input:borderColor-ColorPicker--default--focus": "var(--xmlui-borderColor-ColorPicker--default--focus)", "Input:boxShadow-ColorPicker--default--focus": "var(--xmlui-boxShadow-ColorPicker--default--focus)", "Input:borderRadius-ColorPicker--error": "var(--xmlui-borderRadius-ColorPicker--error)", "Input:borderColor-ColorPicker--error": "var(--xmlui-borderColor-ColorPicker--error)", "Input:borderWidth-ColorPicker--error": "var(--xmlui-borderWidth-ColorPicker--error)", "Input:borderStyle-ColorPicker--error": "var(--xmlui-borderStyle-ColorPicker--error)", "Input:boxShadow-ColorPicker--error": "var(--xmlui-boxShadow-ColorPicker--error)", "Input:borderColor-ColorPicker--error--hover": "var(--xmlui-borderColor-ColorPicker--error--hover)", "Input:boxShadow-ColorPicker--error--hover": "var(--xmlui-boxShadow-ColorPicker--error--hover)", "Input:borderColor-ColorPicker--error--focus": "var(--xmlui-borderColor-ColorPicker--error--focus)", "Input:boxShadow-ColorPicker--error--focus": "var(--xmlui-boxShadow-ColorPicker--error--focus)", "Input:borderRadius-ColorPicker--warning": "var(--xmlui-borderRadius-ColorPicker--warning)", "Input:borderColor-ColorPicker--warning": "var(--xmlui-borderColor-ColorPicker--warning)", "Input:borderWidth-ColorPicker--warning": "var(--xmlui-borderWidth-ColorPicker--warning)", "Input:borderStyle-ColorPicker--warning": "var(--xmlui-borderStyle-ColorPicker--warning)", "Input:boxShadow-ColorPicker--warning": "var(--xmlui-boxShadow-ColorPicker--warning)", "Input:borderColor-ColorPicker--warning--hover": "var(--xmlui-borderColor-ColorPicker--warning--hover)", "Input:boxShadow-ColorPicker--warning--hover": "var(--xmlui-boxShadow-ColorPicker--warning--hover)", "Input:borderColor-ColorPicker--warning--focus": "var(--xmlui-borderColor-ColorPicker--warning--focus)", "Input:boxShadow-ColorPicker--warning--focus": "var(--xmlui-boxShadow-ColorPicker--warning--focus)", "Input:borderRadius-ColorPicker--success": "var(--xmlui-borderRadius-ColorPicker--success)", "Input:borderColor-ColorPicker--success": "var(--xmlui-borderColor-ColorPicker--success)", "Input:borderWidth-ColorPicker--success": "var(--xmlui-borderWidth-ColorPicker--success)", "Input:borderStyle-ColorPicker--success": "var(--xmlui-borderStyle-ColorPicker--success)", "Input:boxShadow-ColorPicker--success": "var(--xmlui-boxShadow-ColorPicker--success)", "Input:borderColor-ColorPicker--success--hover": "var(--xmlui-borderColor-ColorPicker--success--hover)", "Input:boxShadow-ColorPicker--success--hover": "var(--xmlui-boxShadow-ColorPicker--success--hover)", "Input:borderColor-ColorPicker--success--focus": "var(--xmlui-borderColor-ColorPicker--success--focus)", "Input:boxShadow-ColorPicker--success--focus": "var(--xmlui-boxShadow-ColorPicker--success--focus)", "Input:backgroundColor-ColorPicker": "var(--xmlui-backgroundColor-ColorPicker)", "Input:width-ColorPicker": "var(--xmlui-width-ColorPicker)"}'`;
44000
- const colorInput = "_colorInput_724av_14";
44001
- const error$1 = "_error_724av_48";
44002
- const warning$1 = "_warning_724av_63";
44003
- const valid$1 = "_valid_724av_78";
44070
+ const themeVars$5 = `'{"Input:borderRadius-ColorPicker--default": "var(--xmlui-borderRadius-ColorPicker--default)", "Input:borderColor-ColorPicker--default": "var(--xmlui-borderColor-ColorPicker--default)", "Input:borderWidth-ColorPicker--default": "var(--xmlui-borderWidth-ColorPicker--default)", "Input:borderStyle-ColorPicker--default": "var(--xmlui-borderStyle-ColorPicker--default)", "Input:boxShadow-ColorPicker--default": "var(--xmlui-boxShadow-ColorPicker--default)", "Input:borderColor-ColorPicker--default--hover": "var(--xmlui-borderColor-ColorPicker--default--hover)", "Input:boxShadow-ColorPicker--default--hover": "var(--xmlui-boxShadow-ColorPicker--default--hover)", "Input:borderColor-ColorPicker--default--focus": "var(--xmlui-borderColor-ColorPicker--default--focus)", "Input:boxShadow-ColorPicker--default--focus": "var(--xmlui-boxShadow-ColorPicker--default--focus)", "Input:borderRadius-ColorPicker--error": "var(--xmlui-borderRadius-ColorPicker--error)", "Input:borderColor-ColorPicker--error": "var(--xmlui-borderColor-ColorPicker--error)", "Input:borderWidth-ColorPicker--error": "var(--xmlui-borderWidth-ColorPicker--error)", "Input:borderStyle-ColorPicker--error": "var(--xmlui-borderStyle-ColorPicker--error)", "Input:boxShadow-ColorPicker--error": "var(--xmlui-boxShadow-ColorPicker--error)", "Input:borderColor-ColorPicker--error--hover": "var(--xmlui-borderColor-ColorPicker--error--hover)", "Input:boxShadow-ColorPicker--error--hover": "var(--xmlui-boxShadow-ColorPicker--error--hover)", "Input:borderColor-ColorPicker--error--focus": "var(--xmlui-borderColor-ColorPicker--error--focus)", "Input:boxShadow-ColorPicker--error--focus": "var(--xmlui-boxShadow-ColorPicker--error--focus)", "Input:borderRadius-ColorPicker--warning": "var(--xmlui-borderRadius-ColorPicker--warning)", "Input:borderColor-ColorPicker--warning": "var(--xmlui-borderColor-ColorPicker--warning)", "Input:borderWidth-ColorPicker--warning": "var(--xmlui-borderWidth-ColorPicker--warning)", "Input:borderStyle-ColorPicker--warning": "var(--xmlui-borderStyle-ColorPicker--warning)", "Input:boxShadow-ColorPicker--warning": "var(--xmlui-boxShadow-ColorPicker--warning)", "Input:borderColor-ColorPicker--warning--hover": "var(--xmlui-borderColor-ColorPicker--warning--hover)", "Input:boxShadow-ColorPicker--warning--hover": "var(--xmlui-boxShadow-ColorPicker--warning--hover)", "Input:borderColor-ColorPicker--warning--focus": "var(--xmlui-borderColor-ColorPicker--warning--focus)", "Input:boxShadow-ColorPicker--warning--focus": "var(--xmlui-boxShadow-ColorPicker--warning--focus)", "Input:borderRadius-ColorPicker--success": "var(--xmlui-borderRadius-ColorPicker--success)", "Input:borderColor-ColorPicker--success": "var(--xmlui-borderColor-ColorPicker--success)", "Input:borderWidth-ColorPicker--success": "var(--xmlui-borderWidth-ColorPicker--success)", "Input:borderStyle-ColorPicker--success": "var(--xmlui-borderStyle-ColorPicker--success)", "Input:boxShadow-ColorPicker--success": "var(--xmlui-boxShadow-ColorPicker--success)", "Input:borderColor-ColorPicker--success--hover": "var(--xmlui-borderColor-ColorPicker--success--hover)", "Input:boxShadow-ColorPicker--success--hover": "var(--xmlui-boxShadow-ColorPicker--success--hover)", "Input:borderColor-ColorPicker--success--focus": "var(--xmlui-borderColor-ColorPicker--success--focus)", "Input:boxShadow-ColorPicker--success--focus": "var(--xmlui-boxShadow-ColorPicker--success--focus)", "Input:backgroundColor-ColorPicker": "var(--xmlui-backgroundColor-ColorPicker)", "Input:width-ColorPicker": "var(--xmlui-width-ColorPicker)", "Input:height-ColorPicker": "var(--xmlui-height-ColorPicker)"}'`;
44071
+ const colorInput = "_colorInput_kvwvn_14";
44072
+ const error$1 = "_error_kvwvn_49";
44073
+ const warning$1 = "_warning_kvwvn_64";
44074
+ const valid$1 = "_valid_kvwvn_79";
44004
44075
  const styles$h = {
44005
44076
  themeVars: themeVars$5,
44006
44077
  colorInput,
@@ -44147,7 +44218,8 @@ const ColorPickerMd = createMetadata({
44147
44218
  },
44148
44219
  themeVars: parseScssVar(styles$h.themeVars),
44149
44220
  defaultThemeVars: {
44150
- [`width-${COMP$i}`]: "48px"
44221
+ [`width-${COMP$i}`]: "3em",
44222
+ [`height-${COMP$i}`]: "1.5em"
44151
44223
  }
44152
44224
  });
44153
44225
  const colorPickerComponentRenderer = createComponentRenderer(
@@ -44576,30 +44648,30 @@ const inspectButtonComponentRenderer = createComponentRenderer(
44576
44648
  }
44577
44649
  );
44578
44650
  const themeVars$4 = `'{"padding-NestedApp": "var(--xmlui-padding-NestedApp)", "paddingHorizontal-NestedApp": "var(--xmlui-paddingHorizontal-NestedApp, var(--xmlui-padding-NestedApp))", "paddingVertical-NestedApp": "var(--xmlui-paddingVertical-NestedApp, var(--xmlui-padding-NestedApp))", "paddingLeft-NestedApp": "var(--xmlui-paddingLeft-NestedApp, var(--xmlui-paddingHorizontal-NestedApp, var(--xmlui-padding-NestedApp)))", "paddingRight-NestedApp": "var(--xmlui-paddingRight-NestedApp, var(--xmlui-paddingHorizontal-NestedApp, var(--xmlui-padding-NestedApp)))", "paddingTop-NestedApp": "var(--xmlui-paddingTop-NestedApp, var(--xmlui-paddingVertical-NestedApp, var(--xmlui-padding-NestedApp)))", "paddingBottom-NestedApp": "var(--xmlui-paddingBottom-NestedApp, var(--xmlui-paddingVertical-NestedApp, var(--xmlui-padding-NestedApp)))", "border-NestedApp": "var(--xmlui-border-NestedApp)", "borderHorizontal-NestedApp": "var(--xmlui-borderHorizontal-NestedApp, var(--xmlui-border-NestedApp))", "borderVertical-NestedApp": "var(--xmlui-borderVertical-NestedApp, var(--xmlui-border-NestedApp))", "borderLeft-NestedApp": "var(--xmlui-borderLeft-NestedApp, var(--xmlui-borderHorizontal-NestedApp, var(--xmlui-border-NestedApp)))", "borderRight-NestedApp": "var(--xmlui-borderRight-NestedApp, var(--xmlui-borderHorizontal-NestedApp, var(--xmlui-border-NestedApp)))", "borderTop-NestedApp": "var(--xmlui-borderTop-NestedApp, var(--xmlui-borderVertical-NestedApp, var(--xmlui-border-NestedApp)))", "borderBottom-NestedApp": "var(--xmlui-borderBottom-NestedApp, var(--xmlui-borderVertical-NestedApp, var(--xmlui-border-NestedApp)))", "borderWidth-NestedApp": "var(--xmlui-borderWidth-NestedApp)", "borderHorizontalWidth-NestedApp": "var(--xmlui-borderHorizontalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp))", "borderLeftWidth-NestedApp": "var(--xmlui-borderLeftWidth-NestedApp, var(--xmlui-borderHorizontalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)))", "borderRightWidth-NestedApp": "var(--xmlui-borderRightWidth-NestedApp, var(--xmlui-borderHorizontalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)))", "borderVerticalWidth-NestedApp": "var(--xmlui-borderVerticalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp))", "borderTopWidth-NestedApp": "var(--xmlui-borderTopWidth-NestedApp, var(--xmlui-borderVerticalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)))", "borderBottomWidth-NestedApp": "var(--xmlui-borderBottomWidth-NestedApp, var(--xmlui-borderVerticalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)))", "borderStyle-NestedApp": "var(--xmlui-borderStyle-NestedApp)", "borderHorizontalStyle-NestedApp": "var(--xmlui-borderHorizontalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp))", "borderLeftStyle-NestedApp": "var(--xmlui-borderLeftStyle-NestedApp, var(--xmlui-borderHorizontalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)))", "borderRightStyle-NestedApp": "var(--xmlui-borderRightStyle-NestedApp, var(--xmlui-borderHorizontalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)))", "borderVerticalStyle-NestedApp": "var(--xmlui-borderVerticalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp))", "borderTopStyle-NestedApp": "var(--xmlui-borderTopStyle-NestedApp, var(--xmlui-borderVerticalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)))", "borderBottomStyle-NestedApp": "var(--xmlui-borderBottomStyle-NestedApp, var(--xmlui-borderVerticalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)))", "borderColor-NestedApp": "var(--xmlui-borderColor-NestedApp)", "borderHorizontalColor-NestedApp": "var(--xmlui-borderHorizontalColor-NestedApp, var(--xmlui-borderColor-NestedApp))", "borderLeftColor-NestedApp": "var(--xmlui-borderLeftColor-NestedApp, var(--xmlui-borderHorizontalColor-NestedApp, var(--xmlui-borderColor-NestedApp)))", "borderRightColor-NestedApp": "var(--xmlui-borderRightColor-NestedApp, var(--xmlui-borderHorizontalColor-NestedApp, var(--xmlui-borderColor-NestedApp)))", "borderVerticalColor-NestedApp": "var(--xmlui-borderVerticalColor-NestedApp, var(--xmlui-borderColor-NestedApp))", "borderTopColor-NestedApp": "var(--xmlui-borderTopColor-NestedApp, var(--xmlui-borderVerticalColor-NestedApp, var(--xmlui-borderColor-NestedApp)))", "borderBottomColor-NestedApp": "var(--xmlui-borderBottomColor-NestedApp, var(--xmlui-borderVerticalColor-NestedApp, var(--xmlui-borderColor-NestedApp)))", "borderStartStartRadius-NestedApp": "var(--xmlui-borderStartStartRadius-NestedApp, var(--xmlui-borderRadius-NestedApp))", "borderStartEndRadius-NestedApp": "var(--xmlui-borderStartEndRadius-NestedApp, var(--xmlui-borderRadius-NestedApp))", "borderEndStartRadius-NestedApp": "var(--xmlui-borderEndStartRadius-NestedApp, var(--xmlui-borderRadius-NestedApp))", "borderEndEndRadius-NestedApp": "var(--xmlui-borderEndEndRadius-NestedApp, var(--xmlui-borderRadius-NestedApp))", "textColor-header-NestedApp": "var(--xmlui-textColor-header-NestedApp)", "fontFamily-header-NestedApp": "var(--xmlui-fontFamily-header-NestedApp)", "fontSize-header-NestedApp": "var(--xmlui-fontSize-header-NestedApp)", "fontStyle-header-NestedApp": "var(--xmlui-fontStyle-header-NestedApp)", "fontVariant-header-NestedApp": "var(--xmlui-fontVariant-header-NestedApp)", "fontWeight-header-NestedApp": "var(--xmlui-fontWeight-header-NestedApp)", "fontStretch-header-NestedApp": "var(--xmlui-fontStretch-header-NestedApp)", "textDecorationLine-header-NestedApp": "var(--xmlui-textDecorationLine-header-NestedApp)", "textDecorationColor-header-NestedApp": "var(--xmlui-textDecorationColor-header-NestedApp)", "textDecorationStyle-header-NestedApp": "var(--xmlui-textDecorationStyle-header-NestedApp)", "textDecorationThickness-header-NestedApp": "var(--xmlui-textDecorationThickness-header-NestedApp)", "textUnderlineOffset-header-NestedApp": "var(--xmlui-textUnderlineOffset-header-NestedApp)", "lineHeight-header-NestedApp": "var(--xmlui-lineHeight-header-NestedApp)", "backgroundColor-header-NestedApp": "var(--xmlui-backgroundColor-header-NestedApp)", "textTransform-header-NestedApp": "var(--xmlui-textTransform-header-NestedApp)", "letterSpacing-header-NestedApp": "var(--xmlui-letterSpacing-header-NestedApp)", "wordSpacing-header-NestedApp": "var(--xmlui-wordSpacing-header-NestedApp)", "textShadow-header-NestedApp": "var(--xmlui-textShadow-header-NestedApp)", "textIndent-header-NestedApp": "var(--xmlui-textIndent-header-NestedApp)", "textAlign-header-NestedApp": "var(--xmlui-textAlign-header-NestedApp)", "textAlignLast-header-NestedApp": "var(--xmlui-textAlignLast-header-NestedApp)", "wordBreak-header-NestedApp": "var(--xmlui-wordBreak-header-NestedApp)", "wordWrap-header-NestedApp": "var(--xmlui-wordWrap-header-NestedApp)", "direction-header-NestedApp": "var(--xmlui-direction-header-NestedApp)", "writingMode-header-NestedApp": "var(--xmlui-writingMode-header-NestedApp)", "lineBreak-header-NestedApp": "var(--xmlui-lineBreak-header-NestedApp)", "backgroundColor-frame-NestedApp": "var(--xmlui-backgroundColor-frame-NestedApp)", "gap-frame-NestedApp": "var(--xmlui-gap-frame-NestedApp)", "marginTop-NestedApp": "var(--xmlui-marginTop-NestedApp)", "marginBottom-NestedApp": "var(--xmlui-marginBottom-NestedApp)", "boxShadow-NestedApp": "var(--xmlui-boxShadow-NestedApp)", "backgroundColor-viewControls-NestedApp": "var(--xmlui-backgroundColor-viewControls-NestedApp)", "borderRadius-viewControls-NestedApp": "var(--xmlui-borderRadius-viewControls-NestedApp)", "padding-viewControls-NestedApp": "var(--xmlui-padding-viewControls-NestedApp)", "paddingVertical-viewControls-button-NestedApp": "var(--xmlui-paddingVertical-viewControls-button-NestedApp)", "paddingHorizontal-viewControls-button-NestedApp": "var(--xmlui-paddingHorizontal-viewControls-button-NestedApp)", "borderRadius-NestedApp": "var(--xmlui-borderRadius-NestedApp)", "borderBottom-header-NestedApp": "var(--xmlui-borderBottom-header-NestedApp)", "height-logo-splitView-NestedApp": "var(--xmlui-height-logo-splitView-NestedApp)", "width-logo-splitView-NestedApp": "var(--xmlui-width-logo-splitView-NestedApp)", "width-controls-NestedApp": "var(--xmlui-width-controls-NestedApp)", "padding-button-splitView-NestedApp": "var(--xmlui-padding-button-splitView-NestedApp)", "width-button-splitView-NestedApp": "var(--xmlui-width-button-splitView-NestedApp)", "height-button-splitView-NestedApp": "var(--xmlui-height-button-splitView-NestedApp)", "backgroundColor-code-splitView-NestedApp": "var(--xmlui-backgroundColor-code-splitView-NestedApp)", "backgroundColor-button-splitView-NestedApp--active": "var(--xmlui-backgroundColor-button-splitView-NestedApp--active)", "color-button-splitView-NestedApp": "var(--xmlui-color-button-splitView-NestedApp)", "color-button-splitView-NestedApp--active": "var(--xmlui-color-button-splitView-NestedApp--active)", "borderRadius-button-splitView-NestedApp": "var(--xmlui-borderRadius-button-splitView-NestedApp)", "borderColor-button-splitView-NestedApp": "var(--xmlui-borderColor-button-splitView-NestedApp)", "color-loadingText-NestedApp": "var(--xmlui-color-loadingText-NestedApp)"}'`;
44579
- const nestedAppPlaceholder = "_nestedAppPlaceholder_1n7j8_14";
44580
- const loadingContainer = "_loadingContainer_1n7j8_21";
44581
- const logoWrapper = "_logoWrapper_1n7j8_34";
44582
- const animatedLogoPath = "_animatedLogoPath_1n7j8_39";
44583
- const loadingText = "_loadingText_1n7j8_47";
44584
- const nestedAppRoot = "_nestedAppRoot_1n7j8_71";
44585
- const shouldAnimate = "_shouldAnimate_1n7j8_79";
44586
- const initialized = "_initialized_1n7j8_83";
44587
- const nestedAppContainer = "_nestedAppContainer_1n7j8_90";
44588
- const contentContainer = "_contentContainer_1n7j8_109";
44589
- const splitViewMarkdown = "_splitViewMarkdown_1n7j8_116";
44590
- const hidden = "_hidden_1n7j8_125";
44591
- const viewControls = "_viewControls_1n7j8_134";
44592
- const logo = "_logo_1n7j8_34";
44593
- const splitViewButton = "_splitViewButton_1n7j8_146";
44594
- const show = "_show_1n7j8_154";
44595
- const hide = "_hide_1n7j8_161";
44596
- const header = "_header_1n7j8_167";
44597
- const headerText = "_headerText_1n7j8_175";
44598
- const headerButton = "_headerButton_1n7j8_204";
44599
- const wrapper$3 = "_wrapper_1n7j8_211";
44600
- const controlWrapper = "_controlWrapper_1n7j8_214";
44601
- const shadowRoot = "_shadowRoot_1n7j8_219";
44602
- const content$1 = "_content_1n7j8_109";
44651
+ const nestedAppPlaceholder = "_nestedAppPlaceholder_1e920_14";
44652
+ const loadingContainer = "_loadingContainer_1e920_21";
44653
+ const logoWrapper = "_logoWrapper_1e920_34";
44654
+ const animatedLogoPath = "_animatedLogoPath_1e920_39";
44655
+ const loadingText = "_loadingText_1e920_47";
44656
+ const nestedAppRoot = "_nestedAppRoot_1e920_71";
44657
+ const shouldAnimate = "_shouldAnimate_1e920_79";
44658
+ const initialized = "_initialized_1e920_83";
44659
+ const nestedAppContainer = "_nestedAppContainer_1e920_90";
44660
+ const contentContainer = "_contentContainer_1e920_109";
44661
+ const splitViewMarkdown = "_splitViewMarkdown_1e920_116";
44662
+ const hidden = "_hidden_1e920_119";
44663
+ const viewControls = "_viewControls_1e920_128";
44664
+ const logo = "_logo_1e920_34";
44665
+ const splitViewButton = "_splitViewButton_1e920_140";
44666
+ const show = "_show_1e920_148";
44667
+ const hide = "_hide_1e920_155";
44668
+ const header = "_header_1e920_161";
44669
+ const headerText = "_headerText_1e920_169";
44670
+ const headerButton = "_headerButton_1e920_198";
44671
+ const wrapper$3 = "_wrapper_1e920_205";
44672
+ const controlWrapper = "_controlWrapper_1e920_208";
44673
+ const shadowRoot = "_shadowRoot_1e920_213";
44674
+ const content$1 = "_content_1e920_109";
44603
44675
  const styles$e = {
44604
44676
  themeVars: themeVars$4,
44605
44677
  nestedAppPlaceholder,
@@ -44664,8 +44736,8 @@ const NestedAppMd = createMetadata({
44664
44736
  },
44665
44737
  themeVars: parseScssVar(styles$e.themeVars),
44666
44738
  defaultThemeVars: {
44667
- [`marginTop-${COMP$g}`]: "$space-3",
44668
- [`marginBottom-${COMP$g}`]: "$space-3",
44739
+ [`marginTop-${COMP$g}`]: "$space-6",
44740
+ [`marginBottom-${COMP$g}`]: "$space-6",
44669
44741
  [`padding-${COMP$g}`]: "0",
44670
44742
  [`paddingTop-${COMP$g}`]: "0",
44671
44743
  [`border-${COMP$g}`]: "0.5px solid $borderColor",
@@ -44838,8 +44910,8 @@ const CodeBlockMd = createMetadata({
44838
44910
  defaultThemeVars: {
44839
44911
  "backgroundColor-CodeBlock": "$color-primary-50",
44840
44912
  "backgroundColor-CodeBlock-header": "$color-primary-100",
44841
- "marginTop-CodeBlock": "$space-5",
44842
- "marginBottom-CodeBlock": "$space-5",
44913
+ "marginTop-CodeBlock": "$space-6",
44914
+ "marginBottom-CodeBlock": "$space-6",
44843
44915
  "backgroundColor-CodeBlock-highlightRow": "rgb(from $color-primary-200 r g b / 0.25)",
44844
44916
  "backgroundColor-CodeBlock-highlightString": "rgb(from $color-primary-200 r g b / 0.5)",
44845
44917
  "borderColor-CodeBlock-highlightString-emphasis": "$color-attention",
@@ -44924,17 +44996,17 @@ function useLegend() {
44924
44996
  function ChartProvider({ value, children }) {
44925
44997
  return /* @__PURE__ */ jsx(ChartContext.Provider, { value, children });
44926
44998
  }
44927
- const tooltipContainer = "_tooltipContainer_116uf_14";
44928
- const gridGap = "_gridGap_116uf_25";
44929
- const labelGrid = "_labelGrid_116uf_29";
44930
- const itemContainer = "_itemContainer_116uf_33";
44931
- const valueContainer = "_valueContainer_116uf_40";
44932
- const indicator = "_indicator_116uf_47";
44933
- const dot = "_dot_116uf_51";
44934
- const line = "_line_116uf_55";
44935
- const dashed = "_dashed_116uf_58";
44936
- const mutedText = "_mutedText_116uf_64";
44937
- const valueText = "_valueText_116uf_69";
44999
+ const tooltipContainer = "_tooltipContainer_ogh5p_14";
45000
+ const gridGap = "_gridGap_ogh5p_25";
45001
+ const labelGrid = "_labelGrid_ogh5p_29";
45002
+ const itemContainer = "_itemContainer_ogh5p_33";
45003
+ const valueContainer = "_valueContainer_ogh5p_40";
45004
+ const indicator = "_indicator_ogh5p_47";
45005
+ const dot = "_dot_ogh5p_51";
45006
+ const line = "_line_ogh5p_55";
45007
+ const dashed = "_dashed_ogh5p_58";
45008
+ const mutedText = "_mutedText_ogh5p_64";
45009
+ const valueText = "_valueText_ogh5p_69";
44938
45010
  const styles$c = {
44939
45011
  tooltipContainer,
44940
45012
  gridGap,
@@ -46882,7 +46954,7 @@ const PaginationMd = createMetadata({
46882
46954
  themeVars: parseScssVar(styles$C.themeVars),
46883
46955
  defaultThemeVars: {
46884
46956
  "padding-Pagination": "$space-4",
46885
- "backgroundColor-Pagination": "transparent",
46957
+ "backgroundColor-Pagination": "$backgroundColor",
46886
46958
  "borderColor-Pagination": "$color-gray-300",
46887
46959
  "textColor-Pagination": "$color-gray-600",
46888
46960
  "backgroundColor-selector-Pagination": "transparent",
@@ -47037,13 +47109,13 @@ const TooltipMd = createMetadata({
47037
47109
  [`backgroundColor-${COMP$4}`]: "$color-surface-0",
47038
47110
  [`border-${COMP$4}`]: "none",
47039
47111
  [`textColor-${COMP$4}`]: "$textcolor-primary",
47040
- [`borderRadius-${COMP$4}`]: "4px",
47041
- [`fontSize-${COMP$4}`]: "15px",
47112
+ [`borderRadius-${COMP$4}`]: "0.25em",
47113
+ [`fontSize-${COMP$4}`]: "1em",
47042
47114
  [`lineHeight-${COMP$4}`]: "1",
47043
- [`paddingTop-${COMP$4}`]: "10px",
47044
- [`paddingBottom-${COMP$4}`]: "10px",
47045
- [`paddingLeft-${COMP$4}`]: "15px",
47046
- [`paddingRight-${COMP$4}`]: "15px",
47115
+ [`paddingTop-${COMP$4}`]: "0.625em",
47116
+ [`paddingBottom-${COMP$4}`]: "0.625em",
47117
+ [`paddingLeft-${COMP$4}`]: "0.9375em",
47118
+ [`paddingRight-${COMP$4}`]: "0.9375em",
47047
47119
  [`boxShadow-${COMP$4}`]: "hsl(206 22% 7% / 35%) 0px 10px 38px -10px, hsl(206 22% 7% / 20%) 0px 10px 20px -15px",
47048
47120
  [`fill-arrow-${COMP$4}`]: "$color-surface-200",
47049
47121
  [`stroke-arrow-${COMP$4}`]: "$color-surface-200",
@@ -48710,7 +48782,7 @@ function IconProvider({ children }) {
48710
48782
  /* @__PURE__ */ jsx("svg", { style: { display: "none" }, ref: spriteRootRef })
48711
48783
  ] });
48712
48784
  }
48713
- const version = "0.11.22";
48785
+ const version = "0.11.23";
48714
48786
  function deepFreeze(obj) {
48715
48787
  if (obj === null || typeof obj !== "object") {
48716
48788
  return obj;
@@ -50113,19 +50185,19 @@ async function processStatementAsync(statement, execInfo, evalContext, thread) {
50113
50185
  }
50114
50186
  break;
50115
50187
  case T_LET_STATEMENT: {
50116
- const block2 = innermostBlockScope(thread);
50117
- if (!block2) {
50188
+ const block = innermostBlockScope(thread);
50189
+ if (!block) {
50118
50190
  throw new Error("Missing block scope");
50119
50191
  }
50120
- await processDeclarationsAsync(block2, evalContext, thread, statement.decls);
50192
+ await processDeclarationsAsync(block, evalContext, thread, statement.decls);
50121
50193
  break;
50122
50194
  }
50123
50195
  case T_CONST_STATEMENT: {
50124
- const block2 = innermostBlockScope(thread);
50125
- if (!block2) {
50196
+ const block = innermostBlockScope(thread);
50197
+ if (!block) {
50126
50198
  throw new Error("Missing block scope");
50127
50199
  }
50128
- await processDeclarationsAsync(block2, evalContext, thread, statement.decls, true);
50200
+ await processDeclarationsAsync(block, evalContext, thread, statement.decls, true);
50129
50201
  break;
50130
50202
  }
50131
50203
  case T_IF_STATEMENT:
@@ -50306,14 +50378,14 @@ async function processStatementAsync(statement, execInfo, evalContext, thread) {
50306
50378
  case "const":
50307
50379
  case "let":
50308
50380
  {
50309
- const block2 = innermostBlockScope(thread);
50310
- if (!block2) {
50381
+ const block = innermostBlockScope(thread);
50382
+ if (!block) {
50311
50383
  throw new Error("Missing block scope");
50312
50384
  }
50313
- block2.vars[statement.id.name] = propValue;
50385
+ block.vars[statement.id.name] = propValue;
50314
50386
  if (statement.varB === "const") {
50315
- block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
50316
- block2.constVars.add(statement.id.name);
50387
+ block.constVars ?? (block.constVars = /* @__PURE__ */ new Set());
50388
+ block.constVars.add(statement.id.name);
50317
50389
  }
50318
50390
  }
50319
50391
  break;
@@ -50372,14 +50444,14 @@ async function processStatementAsync(statement, execInfo, evalContext, thread) {
50372
50444
  case "const":
50373
50445
  case "let":
50374
50446
  {
50375
- const block2 = innermostBlockScope(thread);
50376
- if (!block2) {
50447
+ const block = innermostBlockScope(thread);
50448
+ if (!block) {
50377
50449
  throw new Error("Missing block scope");
50378
50450
  }
50379
- block2.vars[statement.id.name] = propValue;
50451
+ block.vars[statement.id.name] = propValue;
50380
50452
  if (statement.varB === "const") {
50381
- block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
50382
- block2.constVars.add(statement.id.name);
50453
+ block.constVars ?? (block.constVars = /* @__PURE__ */ new Set());
50454
+ block.constVars.add(statement.id.name);
50383
50455
  }
50384
50456
  }
50385
50457
  break;
@@ -50409,8 +50481,8 @@ async function processStatementAsync(statement, execInfo, evalContext, thread) {
50409
50481
  thread.blocks.pop();
50410
50482
  if (statement.catchB) {
50411
50483
  if (tryScope.statement.catchV) {
50412
- const block2 = innermostBlockScope(thread);
50413
- block2.vars[tryScope.statement.catchV.name] = tryScope.errorToThrow instanceof ThrowStatementError ? tryScope.errorToThrow.errorObject : tryScope.errorToThrow;
50484
+ const block = innermostBlockScope(thread);
50485
+ block.vars[tryScope.statement.catchV.name] = tryScope.errorToThrow instanceof ThrowStatementError ? tryScope.errorToThrow.errorObject : tryScope.errorToThrow;
50414
50486
  }
50415
50487
  delete tryScope.errorToThrow;
50416
50488
  tryScope.processingPhase = "catch";
@@ -50523,7 +50595,7 @@ async function processStatementAsync(statement, execInfo, evalContext, thread) {
50523
50595
  }
50524
50596
  return { toUnshift, clearToLabel };
50525
50597
  }
50526
- async function processDeclarationsAsync(block2, evalContext, thread, declarations, addConst = false, useValue = false, baseValue = void 0) {
50598
+ async function processDeclarationsAsync(block, evalContext, thread, declarations, addConst = false, useValue = false, baseValue = void 0) {
50527
50599
  for (let i = 0; i < declarations.length; i++) {
50528
50600
  let value;
50529
50601
  const decl = declarations[i];
@@ -50532,52 +50604,52 @@ async function processDeclarationsAsync(block2, evalContext, thread, declaration
50532
50604
  } else if (decl.expr) {
50533
50605
  value = await evalBindingAsync(decl.expr, evalContext, thread);
50534
50606
  }
50535
- visitDeclaration(block2, decl, value, addConst);
50607
+ visitDeclaration(block, decl, value, addConst);
50536
50608
  }
50537
- function visitDeclaration(block22, decl, baseValue2, addConst2) {
50609
+ function visitDeclaration(block2, decl, baseValue2, addConst2) {
50538
50610
  if (decl.id) {
50539
- visitIdDeclaration(block22, decl.id, baseValue2, addConst2);
50611
+ visitIdDeclaration(block2, decl.id, baseValue2, addConst2);
50540
50612
  } else if (decl.aDestr) {
50541
- visitArrayDestruct(block22, decl.aDestr, baseValue2, addConst2);
50613
+ visitArrayDestruct(block2, decl.aDestr, baseValue2, addConst2);
50542
50614
  } else if (decl.oDestr) {
50543
- visitObjectDestruct(block22, decl.oDestr, baseValue2, addConst2);
50615
+ visitObjectDestruct(block2, decl.oDestr, baseValue2, addConst2);
50544
50616
  } else {
50545
50617
  throw new Error("Unknown declaration specifier");
50546
50618
  }
50547
50619
  }
50548
- function visitIdDeclaration(block22, id, baseValue2, addConst2) {
50549
- if (block22.vars[id]) {
50620
+ function visitIdDeclaration(block2, id, baseValue2, addConst2) {
50621
+ if (block2.vars[id]) {
50550
50622
  throw new Error(`Variable ${id} is already declared in the current scope.`);
50551
50623
  }
50552
- block22.vars[id] = baseValue2;
50624
+ block2.vars[id] = baseValue2;
50553
50625
  if (addConst2) {
50554
- block22.constVars ?? (block22.constVars = /* @__PURE__ */ new Set());
50555
- block22.constVars.add(id);
50626
+ block2.constVars ?? (block2.constVars = /* @__PURE__ */ new Set());
50627
+ block2.constVars.add(id);
50556
50628
  }
50557
50629
  }
50558
- function visitArrayDestruct(block22, arrayD, baseValue2, addConst2) {
50630
+ function visitArrayDestruct(block2, arrayD, baseValue2, addConst2) {
50559
50631
  for (let i = 0; i < arrayD.length; i++) {
50560
50632
  const arrDecl = arrayD[i];
50561
50633
  const value = baseValue2?.[i];
50562
50634
  if (arrDecl.id) {
50563
- visitIdDeclaration(block22, arrDecl.id, value, addConst2);
50635
+ visitIdDeclaration(block2, arrDecl.id, value, addConst2);
50564
50636
  } else if (arrDecl.aDestr) {
50565
- visitArrayDestruct(block22, arrDecl.aDestr, value, addConst2);
50637
+ visitArrayDestruct(block2, arrDecl.aDestr, value, addConst2);
50566
50638
  } else if (arrDecl.oDestr) {
50567
- visitObjectDestruct(block22, arrDecl.oDestr, value, addConst2);
50639
+ visitObjectDestruct(block2, arrDecl.oDestr, value, addConst2);
50568
50640
  }
50569
50641
  }
50570
50642
  }
50571
- function visitObjectDestruct(block22, objectD, baseValue2, addConst2) {
50643
+ function visitObjectDestruct(block2, objectD, baseValue2, addConst2) {
50572
50644
  for (let i = 0; i < objectD.length; i++) {
50573
50645
  const objDecl = objectD[i];
50574
50646
  const value = baseValue2?.[objDecl.id];
50575
50647
  if (objDecl.aDestr) {
50576
- visitArrayDestruct(block22, objDecl.aDestr, value, addConst2);
50648
+ visitArrayDestruct(block2, objDecl.aDestr, value, addConst2);
50577
50649
  } else if (objDecl.oDestr) {
50578
- visitObjectDestruct(block22, objDecl.oDestr, value, addConst2);
50650
+ visitObjectDestruct(block2, objDecl.oDestr, value, addConst2);
50579
50651
  } else {
50580
- visitIdDeclaration(block22, objDecl.alias ?? objDecl.id, value, addConst2);
50652
+ visitIdDeclaration(block2, objDecl.alias ?? objDecl.id, value, addConst2);
50581
50653
  }
50582
50654
  }
50583
50655
  }
@@ -55316,6 +55388,7 @@ const CORE_NS_KEY = "core-ns";
55316
55388
  const CORE_NAMESPACE_VALUE = "#xmlui-core-ns";
55317
55389
  const HelperNode = {
55318
55390
  property: "property",
55391
+ template: "template",
55319
55392
  event: "event",
55320
55393
  variable: "variable",
55321
55394
  loaders: "loaders",
@@ -55508,6 +55581,7 @@ function nodeToComponentDef(node, originalGetText, fileId) {
55508
55581
  }
55509
55582
  switch (childName) {
55510
55583
  case "property":
55584
+ case "template":
55511
55585
  collectElementHelper(
55512
55586
  usesStack2,
55513
55587
  comp,
@@ -55864,7 +55938,7 @@ function nodeToComponentDef(node, originalGetText, fileId) {
55864
55938
  const childNodes = getChildNodes(node2);
55865
55939
  const tagName = getComponentName(node2, getText);
55866
55940
  const hasComponentName = !(tagName in HelperNode);
55867
- const shouldUseTextNodeElement = hasComponentName || tagName === "property";
55941
+ const shouldUseTextNodeElement = hasComponentName || tagName === "property" || tagName === "template";
55868
55942
  const shouldCollapseWhitespace = tagName !== "event" && tagName !== "method";
55869
55943
  const attrs = getAttributes(node2);
55870
55944
  desugarKeyOnlyAttrs(attrs);
@@ -56709,7 +56783,7 @@ function ApiInterceptorProvider({
56709
56783
  return;
56710
56784
  }
56711
56785
  void (async () => {
56712
- const { initMock } = await import("./initMock-B3RWJ2uL.js");
56786
+ const { initMock } = await import("./initMock-CyVKxVyG.js");
56713
56787
  const apiInstance2 = await initMock(interceptor);
56714
56788
  setApiInstance(apiInstance2);
56715
56789
  setInitialized(true);
@@ -56726,7 +56800,7 @@ function ApiInterceptorProvider({
56726
56800
  if (define_process_env_default.VITE_MOCK_ENABLED) {
56727
56801
  const [{ createApiInterceptorWorker }, { initMock }] = await Promise.all([
56728
56802
  useWorker ? import("./apiInterceptorWorker-Wgm2_zjg.js") : Promise.resolve({ createApiInterceptorWorker: () => null }),
56729
- import("./initMock-B3RWJ2uL.js")
56803
+ import("./initMock-CyVKxVyG.js")
56730
56804
  ]);
56731
56805
  if (interceptor || forceInitialize) {
56732
56806
  const apiInstance2 = await initMock(interceptor || {});
@@ -56763,7 +56837,7 @@ function ApiInterceptorProvider({
56763
56837
  void (async () => {
56764
56838
  const [{ createApiInterceptorWorker }, { initMock }] = await Promise.all([
56765
56839
  import("./apiInterceptorWorker-Wgm2_zjg.js"),
56766
- import("./initMock-B3RWJ2uL.js")
56840
+ import("./initMock-CyVKxVyG.js")
56767
56841
  ]);
56768
56842
  const apiInstance2 = await initMock(interceptor);
56769
56843
  await createApiInterceptorWorker(apiInstance2, parentInterceptorWorker);
@@ -57255,8 +57329,8 @@ function AppWithCodeViewNative({
57255
57329
  )
57256
57330
  ] });
57257
57331
  }
57258
- const codeText = "_codeText_fmjbn_14";
57259
- const codefence = "_codefence_fmjbn_21";
57332
+ const codeText = "_codeText_1qzt5_14";
57333
+ const codefence = "_codefence_1qzt5_21";
57260
57334
  const styles$1 = {
57261
57335
  codeText,
57262
57336
  codefence
@@ -57390,7 +57464,7 @@ const Markdown = memo(
57390
57464
  alt,
57391
57465
  style: imgStyle,
57392
57466
  ...props,
57393
- className: classnames({ [styles$J.block]: !isInline }),
57467
+ className: classnames({ [styles$J.image]: !isInline }),
57394
57468
  children: children2
57395
57469
  }
57396
57470
  );
@@ -57900,6 +57974,22 @@ function parseSegmentProps(input2) {
57900
57974
  }
57901
57975
  return segment;
57902
57976
  }
57977
+ function extractAppAttributes(appContent) {
57978
+ if (!appContent) return {};
57979
+ const result = {};
57980
+ const appTagMatch = appContent.match(/<App\s+([^>]+)>/);
57981
+ if (!appTagMatch) return result;
57982
+ const attributes = appTagMatch[1];
57983
+ const toneMatch = attributes.match(/defaultTone=["']?([^"'\s/>]+)["']?/);
57984
+ if (toneMatch) {
57985
+ result.defaultTone = toneMatch[1];
57986
+ }
57987
+ const themeMatch = attributes.match(/defaultTheme=["']?([^"'\s/>]+)["']?/);
57988
+ if (themeMatch) {
57989
+ result.defaultTheme = themeMatch[1];
57990
+ }
57991
+ return result;
57992
+ }
57903
57993
  function parsePlaygroundPattern(content2) {
57904
57994
  const pattern = {};
57905
57995
  const match = observePlaygroundPattern(content2);
@@ -58075,6 +58165,13 @@ function convertPlaygroundPatternToMarkdown(content2) {
58075
58165
  markdownContent2 += "```xmlui " + segmentAttrs + "\n" + segment.content + "```\n\n";
58076
58166
  }
58077
58167
  pgContent.app = segment.content;
58168
+ const appAttrs = extractAppAttributes(segment.content);
58169
+ if (appAttrs.defaultTone) {
58170
+ pgContent.activeTone = appAttrs.defaultTone;
58171
+ }
58172
+ if (appAttrs.defaultTheme) {
58173
+ pgContent.activeTheme = appAttrs.defaultTheme;
58174
+ }
58078
58175
  break;
58079
58176
  case "config":
58080
58177
  if (segment.display) {
@@ -58170,48 +58267,71 @@ const MarkdownMd = createMetadata({
58170
58267
  }
58171
58268
  },
58172
58269
  defaultThemeVars: {
58173
- "backgroundColor-Admonition": "$color-primary-100",
58174
- "border-Admonition": "1px solid $color-primary-300",
58175
- "backgroundColor-Admonition-warning": "$color-warn-100",
58176
- "borderColor-Admonition-warning": "$color-warn-300",
58177
- "backgroundColor-Admonition-danger": "$color-danger-100",
58178
- "borderColor-Admonition-danger": "$color-danger-300",
58179
- "borderRadius-Admonition": "$space-2",
58180
- "size-icon-Admonition": "$space-5",
58181
- "paddingLeft-Admonition": "$space-2",
58182
- "paddingRight-Admonition": "$space-6",
58183
- "paddingTop-Admonition": "$space-3",
58184
- "paddingBottom-Admonition": "$space-2",
58185
- "marginLeft-Admonition-content": "$space-1_5",
58186
- "marginTop-Admonition": "$space-7",
58187
- "marginBottom-Admonition": "$space-7",
58188
- "marginTop-Blockquote": "$space-7",
58189
- "marginBottom-Blockquote": "$space-7",
58190
- "paddingHorizontal-Blockquote": "$space-6",
58191
- "paddingTop-Blockquote": "$space-3",
58192
- "paddingBottom-Blockquote": "$space-2_5",
58193
- "backgroundColor-Blockquote": "$color-surface-100",
58194
- "width-accent-Blockquote": "3px",
58195
- "color-accent-Blockquote": "$color-surface-500",
58196
- "marginTop-HtmlLi": "$space-2_5",
58197
- "marginBottom-HtmlLi": "$space-2_5",
58198
- "marginTop-Image-markdown": "$space-4",
58199
- "marginBottom-Image-markdown": "$space-4",
58270
+ "marginTop-H1-markdown": "$space-4",
58271
+ "marginBottom-H1-markdown": "$space-6",
58272
+ "marginTop-H2-markdown": "$space-8",
58273
+ "marginBottom-H2-markdown": "$space-5",
58274
+ "marginTop-H3-markdown": "$space-7",
58275
+ "marginBottom-H3-markdown": "$space-4",
58276
+ "marginTop-H4-markdown": "$space-6",
58277
+ "marginBottom-H4-markdown": "$space-3",
58278
+ "marginTop-H5-markdown": "$space-5",
58279
+ "marginBottom-H5-markdown": "$space-3",
58280
+ "marginTop-H6-markdown": "$space-4",
58281
+ "marginBottom-H6-markdown": "$space-2_5",
58282
+ "backgroundColor-Admonition-markdown": "$color-primary-100",
58283
+ "border-Admonition-markdown": "1px solid $color-primary-300",
58284
+ "backgroundColor-Admonition-markdown-warning": "$color-warn-100",
58285
+ "borderColor-Admonition-markdown-warning": "$color-warn-300",
58286
+ "backgroundColor-Admonition-markdown-danger": "$color-danger-100",
58287
+ "borderColor-Admonition-markdown-danger": "$color-danger-300",
58288
+ "borderRadius-Admonition-markdown": "$space-2",
58289
+ "size-icon-Admonition-markdown": "$space-5",
58290
+ "paddingLeft-Admonition-markdown": "$space-2",
58291
+ "paddingRight-Admonition-markdown": "$space-6",
58292
+ "paddingTop-Admonition-markdown": "$space-3",
58293
+ "paddingBottom-Admonition-markdown": "$space-2",
58294
+ "marginLeft-content-Admonition-markdown": "$space-1_5",
58295
+ "marginTop-Admonition-markdown": "$space-6",
58296
+ "marginBottom-Admonition-markdown": "$space-6",
58297
+ "marginTop-Blockquote-markdown": "$space-6",
58298
+ "marginBottom-Blockquote-markdown": "$space-6",
58299
+ "paddingHorizontal-Blockquote-markdown": "$space-6",
58300
+ "paddingTop-Blockquote-markdown": "$space-3",
58301
+ "paddingBottom-Blockquote-markdown": "$space-2_5",
58302
+ "backgroundColor-Blockquote-markdown": "$color-surface-100",
58303
+ "width-accent-Blockquote-markdown": "3px",
58304
+ "color-accent-Blockquote-markdown": "$color-surface-500",
58305
+ "border-Table-markdown": "1px solid $borderColor",
58306
+ "textColor-Thead-markdown": "$color-surface-500",
58307
+ "backgroundColor-Thead-markdown": "$color-surface-100",
58308
+ "textTransform-Thead-markdown": "uppercase",
58309
+ "fontWeight-Thead-markdown": "$fontWeight-bold",
58310
+ "padding-Th-markdown": "$space-2",
58311
+ "fontSize-Th-markdown": "$fontSize-sm",
58312
+ "marginLeft-Ul-markdown": "$space-8",
58313
+ "marginRight-Ul-markdown": "$space-0",
58314
+ "marginTop-Ul-markdown": "$space-2_5",
58315
+ "marginBottom-Ul-markdown": "$space-5",
58316
+ "marginTop-Li-markdown": "$space-2_5",
58317
+ "marginBottom-Li-markdown": "$space-2_5",
58318
+ "marginTop-Image-markdown": "$space-6",
58319
+ "marginBottom-Image-markdown": "$space-6",
58200
58320
  "marginLeft-Image-markdown": "$space-0",
58201
58321
  "marginRight-Image-markdown": "$space-0",
58202
58322
  "marginTop-Text-markdown": "$space-3",
58203
58323
  "marginBottom-Text-markdown": "$space-6",
58204
- "fontSize-Text-markdown": "fontSize-${COMP}",
58324
+ "fontSize-Text-markdown": "$fontSize",
58205
58325
  "fontWeight-Text-markdown": "fontWeight-Text",
58206
- "borderColor-HorizontalRule": "$borderColor",
58207
- "borderStyle-HorizontalRule": "solid",
58208
- "borderWidth-HorizontalRule": "2px",
58326
+ "borderColor-HorizontalRule-markdown": "$borderColor",
58327
+ "borderStyle-HorizontalRule-markdown": "solid",
58328
+ "borderWidth-HorizontalRule-markdown": "2px",
58209
58329
  light: {
58210
58330
  // --- No light-specific theme vars
58211
58331
  },
58212
58332
  dark: {
58213
- "backgroundColor-Blockquote": "$color-surface-50",
58214
- "backgroundColor-Admonition": "$color-primary-200"
58333
+ "backgroundColor-Blockquote-markdown": "$color-surface-50",
58334
+ "backgroundColor-Admonition-markdown": "$color-primary-200"
58215
58335
  }
58216
58336
  }
58217
58337
  });
@@ -58668,11 +58788,11 @@ const Slider = forwardRef(
58668
58788
  }
58669
58789
  );
58670
58790
  Slider.displayName = "Slider";
58671
- const helper = "_helper_15fgi_14";
58672
- const helperText = "_helperText_15fgi_24";
58673
- const valid = "_valid_15fgi_28";
58674
- const error = "_error_15fgi_32";
58675
- const warning = "_warning_15fgi_36";
58791
+ const helper = "_helper_ecvw1_14";
58792
+ const helperText = "_helperText_ecvw1_24";
58793
+ const valid = "_valid_ecvw1_28";
58794
+ const error = "_error_ecvw1_32";
58795
+ const warning = "_warning_ecvw1_36";
58676
58796
  const styles = {
58677
58797
  helper,
58678
58798
  helperText,
@@ -58782,6 +58902,8 @@ const FormItem = memo(function FormItem2({
58782
58902
  initialValue: initialValueFromProps,
58783
58903
  gap,
58784
58904
  noSubmit = defaultProps.noSubmit,
58905
+ layoutContext,
58906
+ // Destructured to prevent passing to ItemWithLabel
58785
58907
  ...rest
58786
58908
  }) {
58787
58909
  const validations = useShallowCompareMemoize({
@@ -59316,7 +59438,7 @@ const FormItemMd = createMetadata({
59316
59438
  },
59317
59439
  themeVars: parseScssVar(styles$1k.themeVars),
59318
59440
  defaultThemeVars: {
59319
- "textColor-FormItemLabel": "$textColor-primary",
59441
+ "textColor-FormItemLabel": "$textColor",
59320
59442
  "fontSize-FormItemLabel": "$fontSize-sm",
59321
59443
  "fontWeight-FormItemLabel": "$fontWeight-medium",
59322
59444
  "fontStyle-FormItemLabel": "normal",
@@ -59369,7 +59491,31 @@ const formItemComponentRenderer = createComponentRenderer(
59369
59491
  noSubmit,
59370
59492
  ...rest
59371
59493
  } = node.props;
59372
- const resolvedRestProps = extractValue(rest);
59494
+ const [templateProps, nonTemplateProps] = partitionObject(
59495
+ rest,
59496
+ (key) => key.endsWith("Template")
59497
+ );
59498
+ const resolvedRestProps = {
59499
+ ...Object.fromEntries(
59500
+ Object.entries(nonTemplateProps).map(([key, value]) => [key, extractValue(value)])
59501
+ ),
59502
+ ...Object.fromEntries(
59503
+ Object.entries(templateProps).map(([key, value]) => [
59504
+ key.replace(/Template$/, "Renderer"),
59505
+ (contextVars) => {
59506
+ return /* @__PURE__ */ jsx(
59507
+ MemoizedItem,
59508
+ {
59509
+ contextVars,
59510
+ node: value,
59511
+ renderChild: renderChild2,
59512
+ layoutContext
59513
+ }
59514
+ );
59515
+ }
59516
+ ])
59517
+ )
59518
+ };
59373
59519
  const formItemType = extractValue.asOptionalString(type);
59374
59520
  const isCustomFormItem = (formItemType === void 0 || formItemType === "custom") && !!node.children;
59375
59521
  const inputTemplate = node.children || node.props?.inputTemplate;