xmlui 0.11.6 → 0.11.7

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.
@@ -1502,7 +1502,7 @@ const Stack = forwardRef(function Stack2({
1502
1502
  }
1503
1503
  );
1504
1504
  });
1505
- const COMP$1x = "Stack";
1505
+ const COMP$1y = "Stack";
1506
1506
  const HORIZONTAL_ALIGNMENT = {
1507
1507
  description: "Manages the horizontal content alignment for each child element in the Stack.",
1508
1508
  availableValues: alignmentOptionValues,
@@ -1552,7 +1552,7 @@ const stackMd = createMetadata({
1552
1552
  }
1553
1553
  },
1554
1554
  events: {
1555
- click: dClick(COMP$1x),
1555
+ click: dClick(COMP$1y),
1556
1556
  mounted: dInternal("Reserved for future use")
1557
1557
  },
1558
1558
  themeVars: parseScssVar(styles$1l.themeVars)
@@ -1565,7 +1565,7 @@ const StackMd = {
1565
1565
  };
1566
1566
  const VStackMd = {
1567
1567
  ...StackMd,
1568
- specializedFrom: COMP$1x,
1568
+ specializedFrom: COMP$1y,
1569
1569
  description: `This component represents a stack rendering its contents vertically.`,
1570
1570
  props: {
1571
1571
  ...stackMd.props
@@ -1573,7 +1573,7 @@ const VStackMd = {
1573
1573
  };
1574
1574
  const HStackMd = {
1575
1575
  ...StackMd,
1576
- specializedFrom: COMP$1x,
1576
+ specializedFrom: COMP$1y,
1577
1577
  description: `This component represents a stack rendering its contents horizontally.`,
1578
1578
  props: {
1579
1579
  ...stackMd.props
@@ -1581,12 +1581,12 @@ const HStackMd = {
1581
1581
  };
1582
1582
  const CVStackMd = {
1583
1583
  ...StackMd,
1584
- specializedFrom: COMP$1x,
1584
+ specializedFrom: COMP$1y,
1585
1585
  description: `This component represents a stack that renders its contents vertically and aligns that in the center along both axes.`
1586
1586
  };
1587
1587
  const CHStackMd = {
1588
1588
  ...StackMd,
1589
- specializedFrom: COMP$1x,
1589
+ specializedFrom: COMP$1y,
1590
1590
  description: `This component represents a stack that renders its contents horizontally and aligns that in the center along both axes.`
1591
1591
  };
1592
1592
  function renderStack({
@@ -1621,7 +1621,7 @@ function renderStack({
1621
1621
  );
1622
1622
  }
1623
1623
  const stackComponentRenderer = createComponentRenderer(
1624
- COMP$1x,
1624
+ COMP$1y,
1625
1625
  StackMd,
1626
1626
  ({ node, extractValue, renderChild: renderChild2, className, lookupEventHandler }) => {
1627
1627
  const orientation = extractValue(node.props?.orientation) || DEFAULT_ORIENTATION$1;
@@ -3799,11 +3799,11 @@ const ResponsiveBar = forwardRef(function ResponsiveBar2({
3799
3799
  }
3800
3800
  );
3801
3801
  });
3802
- const COMP$1w = "ResponsiveBar";
3802
+ const COMP$1x = "ResponsiveBar";
3803
3803
  const ResponsiveBarMd = createMetadata({
3804
3804
  status: "stable",
3805
3805
  description: "`ResponsiveBar` is a layout container that automatically manages child component overflow by moving items that don't fit into a dropdown menu. It supports both horizontal and vertical orientations and provides a space-efficient way to display navigation items, toolbar buttons, or other components that need to adapt to varying container dimensions while maintaining full functionality.",
3806
- docFolder: COMP$1w,
3806
+ docFolder: COMP$1x,
3807
3807
  props: {
3808
3808
  orientation: {
3809
3809
  description: "Layout direction of the responsive bar. In horizontal mode, items are arranged left-to-right and overflow is based on container width. In vertical mode, items are arranged top-to-bottom and overflow is based on container height.",
@@ -3823,20 +3823,20 @@ const ResponsiveBarMd = createMetadata({
3823
3823
  }
3824
3824
  },
3825
3825
  events: {
3826
- click: dClick(COMP$1w)
3826
+ click: dClick(COMP$1x)
3827
3827
  },
3828
3828
  apis: {},
3829
3829
  contextVars: {},
3830
3830
  themeVars: parseScssVar(styles$1i.themeVars),
3831
3831
  limitThemeVarsToComponent: true,
3832
3832
  defaultThemeVars: {
3833
- [`backgroundColor-${COMP$1w}`]: "transparent",
3834
- [`padding-${COMP$1w}`]: "0",
3835
- [`margin-${COMP$1w}`]: "0"
3833
+ [`backgroundColor-${COMP$1x}`]: "transparent",
3834
+ [`padding-${COMP$1x}`]: "0",
3835
+ [`margin-${COMP$1x}`]: "0"
3836
3836
  }
3837
3837
  });
3838
3838
  const responsiveBarComponentRenderer = createComponentRenderer(
3839
- COMP$1w,
3839
+ COMP$1x,
3840
3840
  ResponsiveBarMd,
3841
3841
  ({ node, extractValue, renderChild: renderChild2, className, lookupEventHandler }) => {
3842
3842
  return /* @__PURE__ */ jsx(
@@ -3859,13 +3859,13 @@ const styles$1e = {
3859
3859
  spacer
3860
3860
  };
3861
3861
  const SpaceFiller = () => /* @__PURE__ */ jsx("div", { className: styles$1e.spacer });
3862
- const COMP$1v = "SpaceFiller";
3862
+ const COMP$1w = "SpaceFiller";
3863
3863
  const SpaceFillerMd = createMetadata({
3864
3864
  status: "stable",
3865
3865
  description: "`SpaceFiller` works well in layout containers to fill remaining (unused) space. Its behavior depends on the layout container in which it is used.",
3866
3866
  themeVars: parseScssVar(styles$1e.themeVars)
3867
3867
  });
3868
- const spaceFillerComponentRenderer = createComponentRenderer(COMP$1v, SpaceFillerMd, () => /* @__PURE__ */ jsx(SpaceFiller, {}));
3868
+ const spaceFillerComponentRenderer = createComponentRenderer(COMP$1w, SpaceFillerMd, () => /* @__PURE__ */ jsx(SpaceFiller, {}));
3869
3869
  const themeVars$W = `'{"padding-TextArea": "var(--xmlui-padding-TextArea)", "paddingHorizontal-TextArea": "var(--xmlui-paddingHorizontal-TextArea, var(--xmlui-padding-TextArea))", "paddingVertical-TextArea": "var(--xmlui-paddingVertical-TextArea, var(--xmlui-padding-TextArea))", "paddingLeft-TextArea": "var(--xmlui-paddingLeft-TextArea, var(--xmlui-paddingHorizontal-TextArea, var(--xmlui-padding-TextArea)))", "paddingRight-TextArea": "var(--xmlui-paddingRight-TextArea, var(--xmlui-paddingHorizontal-TextArea, var(--xmlui-padding-TextArea)))", "paddingTop-TextArea": "var(--xmlui-paddingTop-TextArea, var(--xmlui-paddingVertical-TextArea, var(--xmlui-padding-TextArea)))", "paddingBottom-TextArea": "var(--xmlui-paddingBottom-TextArea, var(--xmlui-paddingVertical-TextArea, var(--xmlui-padding-TextArea)))", "Input:borderRadius-TextArea--default": "var(--xmlui-borderRadius-TextArea--default)", "Input:borderColor-TextArea--default": "var(--xmlui-borderColor-TextArea--default)", "Input:borderWidth-TextArea--default": "var(--xmlui-borderWidth-TextArea--default)", "Input:borderStyle-TextArea--default": "var(--xmlui-borderStyle-TextArea--default)", "Input:fontSize-TextArea--default": "var(--xmlui-fontSize-TextArea--default)", "Input:backgroundColor-TextArea--default": "var(--xmlui-backgroundColor-TextArea--default)", "Input:boxShadow-TextArea--default": "var(--xmlui-boxShadow-TextArea--default)", "Input:textColor-TextArea--default": "var(--xmlui-textColor-TextArea--default)", "Input:borderColor-TextArea--default--hover": "var(--xmlui-borderColor-TextArea--default--hover)", "Input:backgroundColor-TextArea--default--hover": "var(--xmlui-backgroundColor-TextArea--default--hover)", "Input:boxShadow-TextArea--default--hover": "var(--xmlui-boxShadow-TextArea--default--hover)", "Input:textColor-TextArea--default--hover": "var(--xmlui-textColor-TextArea--default--hover)", "Input:borderColor-TextArea--default--focus": "var(--xmlui-borderColor-TextArea--default--focus)", "Input:backgroundColor-TextArea--default--focus": "var(--xmlui-backgroundColor-TextArea--default--focus)", "Input:boxShadow-TextArea--default--focus": "var(--xmlui-boxShadow-TextArea--default--focus)", "Input:textColor-TextArea--default--focus": "var(--xmlui-textColor-TextArea--default--focus)", "Input:outlineWidth-TextArea--default--focus": "var(--xmlui-outlineWidth-TextArea--default--focus)", "Input:outlineColor-TextArea--default--focus": "var(--xmlui-outlineColor-TextArea--default--focus)", "Input:outlineStyle-TextArea--default--focus": "var(--xmlui-outlineStyle-TextArea--default--focus)", "Input:outlineOffset-TextArea--default--focus": "var(--xmlui-outlineOffset-TextArea--default--focus)", "Input:textColor-placeholder-TextArea--default": "var(--xmlui-textColor-placeholder-TextArea--default)", "Input:fontSize-placeholder-TextArea--default": "var(--xmlui-fontSize-placeholder-TextArea--default)", "Input:borderRadius-TextArea--error": "var(--xmlui-borderRadius-TextArea--error)", "Input:borderColor-TextArea--error": "var(--xmlui-borderColor-TextArea--error)", "Input:borderWidth-TextArea--error": "var(--xmlui-borderWidth-TextArea--error)", "Input:borderStyle-TextArea--error": "var(--xmlui-borderStyle-TextArea--error)", "Input:fontSize-TextArea--error": "var(--xmlui-fontSize-TextArea--error)", "Input:backgroundColor-TextArea--error": "var(--xmlui-backgroundColor-TextArea--error)", "Input:boxShadow-TextArea--error": "var(--xmlui-boxShadow-TextArea--error)", "Input:textColor-TextArea--error": "var(--xmlui-textColor-TextArea--error)", "Input:borderColor-TextArea--error--hover": "var(--xmlui-borderColor-TextArea--error--hover)", "Input:backgroundColor-TextArea--error--hover": "var(--xmlui-backgroundColor-TextArea--error--hover)", "Input:boxShadow-TextArea--error--hover": "var(--xmlui-boxShadow-TextArea--error--hover)", "Input:textColor-TextArea--error--hover": "var(--xmlui-textColor-TextArea--error--hover)", "Input:borderColor-TextArea--error--focus": "var(--xmlui-borderColor-TextArea--error--focus)", "Input:backgroundColor-TextArea--error--focus": "var(--xmlui-backgroundColor-TextArea--error--focus)", "Input:boxShadow-TextArea--error--focus": "var(--xmlui-boxShadow-TextArea--error--focus)", "Input:textColor-TextArea--error--focus": "var(--xmlui-textColor-TextArea--error--focus)", "Input:outlineWidth-TextArea--error--focus": "var(--xmlui-outlineWidth-TextArea--error--focus)", "Input:outlineColor-TextArea--error--focus": "var(--xmlui-outlineColor-TextArea--error--focus)", "Input:outlineStyle-TextArea--error--focus": "var(--xmlui-outlineStyle-TextArea--error--focus)", "Input:outlineOffset-TextArea--error--focus": "var(--xmlui-outlineOffset-TextArea--error--focus)", "Input:textColor-placeholder-TextArea--error": "var(--xmlui-textColor-placeholder-TextArea--error)", "Input:fontSize-placeholder-TextArea--error": "var(--xmlui-fontSize-placeholder-TextArea--error)", "Input:borderRadius-TextArea--warning": "var(--xmlui-borderRadius-TextArea--warning)", "Input:borderColor-TextArea--warning": "var(--xmlui-borderColor-TextArea--warning)", "Input:borderWidth-TextArea--warning": "var(--xmlui-borderWidth-TextArea--warning)", "Input:borderStyle-TextArea--warning": "var(--xmlui-borderStyle-TextArea--warning)", "Input:fontSize-TextArea--warning": "var(--xmlui-fontSize-TextArea--warning)", "Input:backgroundColor-TextArea--warning": "var(--xmlui-backgroundColor-TextArea--warning)", "Input:boxShadow-TextArea--warning": "var(--xmlui-boxShadow-TextArea--warning)", "Input:textColor-TextArea--warning": "var(--xmlui-textColor-TextArea--warning)", "Input:borderColor-TextArea--warning--hover": "var(--xmlui-borderColor-TextArea--warning--hover)", "Input:backgroundColor-TextArea--warning--hover": "var(--xmlui-backgroundColor-TextArea--warning--hover)", "Input:boxShadow-TextArea--warning--hover": "var(--xmlui-boxShadow-TextArea--warning--hover)", "Input:textColor-TextArea--warning--hover": "var(--xmlui-textColor-TextArea--warning--hover)", "Input:borderColor-TextArea--warning--focus": "var(--xmlui-borderColor-TextArea--warning--focus)", "Input:backgroundColor-TextArea--warning--focus": "var(--xmlui-backgroundColor-TextArea--warning--focus)", "Input:boxShadow-TextArea--warning--focus": "var(--xmlui-boxShadow-TextArea--warning--focus)", "Input:textColor-TextArea--warning--focus": "var(--xmlui-textColor-TextArea--warning--focus)", "Input:outlineWidth-TextArea--warning--focus": "var(--xmlui-outlineWidth-TextArea--warning--focus)", "Input:outlineColor-TextArea--warning--focus": "var(--xmlui-outlineColor-TextArea--warning--focus)", "Input:outlineStyle-TextArea--warning--focus": "var(--xmlui-outlineStyle-TextArea--warning--focus)", "Input:outlineOffset-TextArea--warning--focus": "var(--xmlui-outlineOffset-TextArea--warning--focus)", "Input:textColor-placeholder-TextArea--warning": "var(--xmlui-textColor-placeholder-TextArea--warning)", "Input:fontSize-placeholder-TextArea--warning": "var(--xmlui-fontSize-placeholder-TextArea--warning)", "Input:borderRadius-TextArea--success": "var(--xmlui-borderRadius-TextArea--success)", "Input:borderColor-TextArea--success": "var(--xmlui-borderColor-TextArea--success)", "Input:borderWidth-TextArea--success": "var(--xmlui-borderWidth-TextArea--success)", "Input:borderStyle-TextArea--success": "var(--xmlui-borderStyle-TextArea--success)", "Input:fontSize-TextArea--success": "var(--xmlui-fontSize-TextArea--success)", "Input:backgroundColor-TextArea--success": "var(--xmlui-backgroundColor-TextArea--success)", "Input:boxShadow-TextArea--success": "var(--xmlui-boxShadow-TextArea--success)", "Input:textColor-TextArea--success": "var(--xmlui-textColor-TextArea--success)", "Input:borderColor-TextArea--success--hover": "var(--xmlui-borderColor-TextArea--success--hover)", "Input:backgroundColor-TextArea--success--hover": "var(--xmlui-backgroundColor-TextArea--success--hover)", "Input:boxShadow-TextArea--success--hover": "var(--xmlui-boxShadow-TextArea--success--hover)", "Input:textColor-TextArea--success--hover": "var(--xmlui-textColor-TextArea--success--hover)", "Input:borderColor-TextArea--success--focus": "var(--xmlui-borderColor-TextArea--success--focus)", "Input:backgroundColor-TextArea--success--focus": "var(--xmlui-backgroundColor-TextArea--success--focus)", "Input:boxShadow-TextArea--success--focus": "var(--xmlui-boxShadow-TextArea--success--focus)", "Input:textColor-TextArea--success--focus": "var(--xmlui-textColor-TextArea--success--focus)", "Input:outlineWidth-TextArea--success--focus": "var(--xmlui-outlineWidth-TextArea--success--focus)", "Input:outlineColor-TextArea--success--focus": "var(--xmlui-outlineColor-TextArea--success--focus)", "Input:outlineStyle-TextArea--success--focus": "var(--xmlui-outlineStyle-TextArea--success--focus)", "Input:outlineOffset-TextArea--success--focus": "var(--xmlui-outlineOffset-TextArea--success--focus)", "Input:textColor-placeholder-TextArea--success": "var(--xmlui-textColor-placeholder-TextArea--success)", "Input:fontSize-placeholder-TextArea--success": "var(--xmlui-fontSize-placeholder-TextArea--success)", "Input:backgroundColor-TextArea--disabled": "var(--xmlui-backgroundColor-TextArea--disabled)", "Input:textColor-TextArea--disabled": "var(--xmlui-textColor-TextArea--disabled)", "Input:borderColor-TextArea--disabled": "var(--xmlui-borderColor-TextArea--disabled)"}'`;
3870
3870
  const textarea = "_textarea_p2pxi_14";
3871
3871
  const error$d = "_error_p2pxi_59";
@@ -4149,7 +4149,7 @@ const TextArea = forwardRef(function TextArea2({
4149
4149
  }
4150
4150
  );
4151
4151
  });
4152
- const COMP$1u = "TextArea";
4152
+ const COMP$1v = "TextArea";
4153
4153
  const resizeOptionsMd = [
4154
4154
  { value: "(undefined)", description: "No resizing" },
4155
4155
  { value: "horizontal", description: "Can only resize horizontally" },
@@ -4180,15 +4180,15 @@ const TextAreaMd = createMetadata({
4180
4180
  defaultValue: defaultProps$1d.enterSubmits
4181
4181
  },
4182
4182
  escResets: {
4183
- description: `This boolean property indicates whether the ${COMP$1u} contents should be reset when pressing the ESC key.`,
4183
+ description: `This boolean property indicates whether the ${COMP$1v} contents should be reset when pressing the ESC key.`,
4184
4184
  valueType: "boolean",
4185
4185
  defaultValue: false
4186
4186
  },
4187
4187
  maxRows: d(
4188
- `This optional property sets the maximum number of text rows the \`${COMP$1u}\` can grow. If not set, the number of rows is unlimited.`
4188
+ `This optional property sets the maximum number of text rows the \`${COMP$1v}\` can grow. If not set, the number of rows is unlimited.`
4189
4189
  ),
4190
4190
  minRows: d(
4191
- `This optional property sets the minimum number of text rows the \`${COMP$1u}\` can shrink. If not set, the minimum number of rows is 1.`
4191
+ `This optional property sets the minimum number of text rows the \`${COMP$1v}\` can shrink. If not set, the minimum number of rows is 1.`
4192
4192
  ),
4193
4193
  rows: {
4194
4194
  description: `Specifies the number of rows the component initially has.`,
@@ -4196,7 +4196,7 @@ const TextAreaMd = createMetadata({
4196
4196
  defaultValue: defaultProps$1d.rows
4197
4197
  },
4198
4198
  autoSize: {
4199
- description: `If set to \`true\`, this boolean property enables the \`${COMP$1u}\` to resize automatically based on the number of lines inside it.`,
4199
+ description: `If set to \`true\`, this boolean property enables the \`${COMP$1v}\` to resize automatically based on the number of lines inside it.`,
4200
4200
  valueType: "boolean",
4201
4201
  defaultValue: false
4202
4202
  },
@@ -4214,13 +4214,13 @@ const TextAreaMd = createMetadata({
4214
4214
  }
4215
4215
  },
4216
4216
  events: {
4217
- gotFocus: dGotFocus(COMP$1u),
4218
- lostFocus: dLostFocus(COMP$1u),
4219
- didChange: dDidChange(COMP$1u)
4217
+ gotFocus: dGotFocus(COMP$1v),
4218
+ lostFocus: dLostFocus(COMP$1v),
4219
+ didChange: dDidChange(COMP$1v)
4220
4220
  },
4221
4221
  apis: {
4222
4222
  focus: {
4223
- description: `This method sets the focus on the \`${COMP$1u}\` component.`,
4223
+ description: `This method sets the focus on the \`${COMP$1v}\` component.`,
4224
4224
  signature: "focus(): void"
4225
4225
  },
4226
4226
  value: {
@@ -4231,12 +4231,12 @@ const TextAreaMd = createMetadata({
4231
4231
  },
4232
4232
  themeVars: parseScssVar(styles$1d.themeVars),
4233
4233
  defaultThemeVars: {
4234
- [`paddingVertical-${COMP$1u}`]: "$space-2",
4235
- [`paddingHorizontal-${COMP$1u}`]: "$space-2"
4234
+ [`paddingVertical-${COMP$1v}`]: "$space-2",
4235
+ [`paddingHorizontal-${COMP$1v}`]: "$space-2"
4236
4236
  }
4237
4237
  });
4238
4238
  const textAreaComponentRenderer = createComponentRenderer(
4239
- COMP$1u,
4239
+ COMP$1v,
4240
4240
  TextAreaMd,
4241
4241
  ({
4242
4242
  node,
@@ -8177,7 +8177,7 @@ const NavLink = forwardRef(function NavLink2({
8177
8177
  }
8178
8178
  return content2;
8179
8179
  });
8180
- const COMP$1t = "NavLink";
8180
+ const COMP$1u = "NavLink";
8181
8181
  const NavLinkMd = createMetadata({
8182
8182
  status: "stable",
8183
8183
  description: "`NavLink` creates interactive navigation items that connect users to different destinations within an app or external URLs. It automatically indicates active states, supports custom icons and labels, and can execute custom actions instead of navigation when needed.",
@@ -8196,7 +8196,7 @@ const NavLinkMd = createMetadata({
8196
8196
  },
8197
8197
  label: dLabel(),
8198
8198
  vertical: {
8199
- description: `This property sets how the active status is displayed on the \`${COMP$1t}\` component. If set to true, the indicator is displayed on the side which lends itself to a vertically aligned navigation menu. By default, it displays a horizontal indicator.`,
8199
+ description: `This property sets how the active status is displayed on the \`${COMP$1u}\` component. If set to true, the indicator is displayed on the side which lends itself to a vertically aligned navigation menu. By default, it displays a horizontal indicator.`,
8200
8200
  valueType: "boolean"
8201
8201
  },
8202
8202
  displayActive: {
@@ -8209,37 +8209,37 @@ const NavLinkMd = createMetadata({
8209
8209
  )
8210
8210
  },
8211
8211
  events: {
8212
- click: dClick(COMP$1t)
8212
+ click: dClick(COMP$1u)
8213
8213
  },
8214
8214
  themeVars: parseScssVar(navLinkStyles.themeVars),
8215
8215
  themeVarDescriptions: {
8216
- [`color-indicator-${COMP$1t}`]: "Provides the following states: `--hover`, `--active`, `--pressed`"
8216
+ [`color-indicator-${COMP$1u}`]: "Provides the following states: `--hover`, `--active`, `--pressed`"
8217
8217
  },
8218
8218
  defaultThemeVars: {
8219
- [`border-${COMP$1t}`]: "0px solid $borderColor",
8220
- [`borderRadius-${COMP$1t}`]: "$borderRadius",
8221
- [`backgroundColor-${COMP$1t}`]: "transparent",
8222
- [`paddingHorizontal-${COMP$1t}`]: "$space-4",
8223
- [`paddingVertical-${COMP$1t}`]: "$space-2",
8224
- [`fontSize-${COMP$1t}`]: "$fontSize-sm",
8225
- [`fontWeight-${COMP$1t}`]: "$fontWeight-normal",
8226
- [`fontFamily-${COMP$1t}`]: "$fontFamily",
8227
- [`textColor-${COMP$1t}`]: "$textColor-primary",
8228
- [`fontWeight-${COMP$1t}--pressed`]: "$fontWeight-normal",
8229
- [`thickness-indicator-${COMP$1t}`]: "$space-0_5",
8230
- [`outlineColor-${COMP$1t}--focus`]: "$outlineColor--focus",
8231
- [`outlineWidth-${COMP$1t}--focus`]: "$outlineWidth--focus",
8232
- [`outlineStyle-${COMP$1t}--focus`]: "$outlineStyle--focus",
8233
- [`outlineOffset-${COMP$1t}--focus`]: "-1px",
8234
- [`borderRadius-indicator-${COMP$1t}`]: "$borderRadius",
8235
- [`color-icon-${COMP$1t}`]: "$color-surface-500",
8236
- [`color-indicator-${COMP$1t}--active`]: "$color-primary-500",
8237
- [`color-indicator-${COMP$1t}--pressed`]: "$color-primary-500",
8238
- [`color-indicator-${COMP$1t}--hover`]: "$color-primary-600"
8219
+ [`border-${COMP$1u}`]: "0px solid $borderColor",
8220
+ [`borderRadius-${COMP$1u}`]: "$borderRadius",
8221
+ [`backgroundColor-${COMP$1u}`]: "transparent",
8222
+ [`paddingHorizontal-${COMP$1u}`]: "$space-4",
8223
+ [`paddingVertical-${COMP$1u}`]: "$space-2",
8224
+ [`fontSize-${COMP$1u}`]: "$fontSize-sm",
8225
+ [`fontWeight-${COMP$1u}`]: "$fontWeight-normal",
8226
+ [`fontFamily-${COMP$1u}`]: "$fontFamily",
8227
+ [`textColor-${COMP$1u}`]: "$textColor-primary",
8228
+ [`fontWeight-${COMP$1u}--pressed`]: "$fontWeight-normal",
8229
+ [`thickness-indicator-${COMP$1u}`]: "$space-0_5",
8230
+ [`outlineColor-${COMP$1u}--focus`]: "$outlineColor--focus",
8231
+ [`outlineWidth-${COMP$1u}--focus`]: "$outlineWidth--focus",
8232
+ [`outlineStyle-${COMP$1u}--focus`]: "$outlineStyle--focus",
8233
+ [`outlineOffset-${COMP$1u}--focus`]: "-1px",
8234
+ [`borderRadius-indicator-${COMP$1u}`]: "$borderRadius",
8235
+ [`color-icon-${COMP$1u}`]: "$color-surface-500",
8236
+ [`color-indicator-${COMP$1u}--active`]: "$color-primary-500",
8237
+ [`color-indicator-${COMP$1u}--pressed`]: "$color-primary-500",
8238
+ [`color-indicator-${COMP$1u}--hover`]: "$color-primary-600"
8239
8239
  }
8240
8240
  });
8241
8241
  const navLinkComponentRenderer = createComponentRenderer(
8242
- COMP$1t,
8242
+ COMP$1u,
8243
8243
  NavLinkMd,
8244
8244
  ({ node, extractValue, renderChild: renderChild2, className }) => {
8245
8245
  const iconName = extractValue.asString(node.props.icon);
@@ -8323,7 +8323,7 @@ function specifyTypes(props) {
8323
8323
  referrerPolicy
8324
8324
  };
8325
8325
  }
8326
- const COMP$1s = "Link";
8326
+ const COMP$1t = "Link";
8327
8327
  const LinkMd = createMetadata({
8328
8328
  status: "stable",
8329
8329
  description: "`Link` creates clickable navigation elements for internal app routes or external URLs. You can use the `label` and `icon` properties for simple text links, or embed custom components like buttons, cards, or complex layouts for rich interactive link presentations.",
@@ -8338,7 +8338,7 @@ const LinkMd = createMetadata({
8338
8338
  defaultValue: defaultProps$15.active
8339
8339
  },
8340
8340
  target: {
8341
- description: `This property specifies where to open the link represented by the \`${COMP$1s}\`. This property accepts the following values (in accordance with the HTML standard):`,
8341
+ description: `This property specifies where to open the link represented by the \`${COMP$1t}\`. This property accepts the following values (in accordance with the HTML standard):`,
8342
8342
  availableValues: LinkTargetMd,
8343
8343
  type: "string"
8344
8344
  },
@@ -8354,37 +8354,37 @@ const LinkMd = createMetadata({
8354
8354
  },
8355
8355
  themeVars: parseScssVar(styles$17.themeVars),
8356
8356
  themeVarDescriptions: {
8357
- [`gap-icon-${COMP$1s}`]: "This property defines the size of the gap between the icon and the label."
8357
+ [`gap-icon-${COMP$1t}`]: "This property defines the size of the gap between the icon and the label."
8358
8358
  },
8359
8359
  defaultThemeVars: {
8360
- [`border-${COMP$1s}`]: "0px solid $borderColor",
8361
- [`textColor-${COMP$1s}`]: "$color-primary-500",
8362
- [`textDecorationColor-${COMP$1s}`]: `textDecorationColor-${COMP$1s}`,
8363
- [`textColor-${COMP$1s}--hover`]: `$color-primary-400`,
8364
- [`textDecorationColor-${COMP$1s}--hover`]: `textColor-${COMP$1s}--hover`,
8365
- [`textColor-${COMP$1s}--active`]: "$color-primary-400",
8366
- [`textDecorationColor-${COMP$1s}--active`]: `textColor-${COMP$1s}--active`,
8367
- [`textColor-${COMP$1s}--hover--active`]: `$textColor-${COMP$1s}--active`,
8368
- [`textUnderlineOffset-${COMP$1s}`]: "$space-1",
8369
- [`textDecorationLine-${COMP$1s}`]: "underline",
8370
- [`textDecorationStyle-${COMP$1s}`]: "solid",
8371
- [`outlineColor-${COMP$1s}--focus`]: "$outlineColor--focus",
8372
- [`outlineWidth-${COMP$1s}--focus`]: "$outlineWidth--focus",
8373
- [`outlineStyle-${COMP$1s}--focus`]: "$outlineStyle--focus",
8374
- [`outlineOffset-${COMP$1s}--focus`]: "$outlineOffset--focus",
8375
- [`fontSize-${COMP$1s}`]: "inherit",
8376
- [`fontWeight-${COMP$1s}--active`]: "$fontWeight-bold",
8377
- [`gap-icon-${COMP$1s}`]: "$gap-tight",
8378
- [`padding-icon-${COMP$1s}`]: "$space-0_5",
8360
+ [`border-${COMP$1t}`]: "0px solid $borderColor",
8361
+ [`textColor-${COMP$1t}`]: "$color-primary-500",
8362
+ [`textDecorationColor-${COMP$1t}`]: `textDecorationColor-${COMP$1t}`,
8363
+ [`textColor-${COMP$1t}--hover`]: `$color-primary-400`,
8364
+ [`textDecorationColor-${COMP$1t}--hover`]: `textColor-${COMP$1t}--hover`,
8365
+ [`textColor-${COMP$1t}--active`]: "$color-primary-400",
8366
+ [`textDecorationColor-${COMP$1t}--active`]: `textColor-${COMP$1t}--active`,
8367
+ [`textColor-${COMP$1t}--hover--active`]: `$textColor-${COMP$1t}--active`,
8368
+ [`textUnderlineOffset-${COMP$1t}`]: "$space-1",
8369
+ [`textDecorationLine-${COMP$1t}`]: "underline",
8370
+ [`textDecorationStyle-${COMP$1t}`]: "solid",
8371
+ [`outlineColor-${COMP$1t}--focus`]: "$outlineColor--focus",
8372
+ [`outlineWidth-${COMP$1t}--focus`]: "$outlineWidth--focus",
8373
+ [`outlineStyle-${COMP$1t}--focus`]: "$outlineStyle--focus",
8374
+ [`outlineOffset-${COMP$1t}--focus`]: "$outlineOffset--focus",
8375
+ [`fontSize-${COMP$1t}`]: "inherit",
8376
+ [`fontWeight-${COMP$1t}--active`]: "$fontWeight-bold",
8377
+ [`gap-icon-${COMP$1t}`]: "$gap-tight",
8378
+ [`padding-icon-${COMP$1t}`]: "$space-0_5",
8379
8379
  dark: {
8380
- [`textColor-${COMP$1s}`]: "$color-primary-600",
8381
- [`textColor-${COMP$1s}--hover`]: `$color-primary-500`,
8382
- [`textColor-${COMP$1s}--active`]: "$color-primary-500"
8380
+ [`textColor-${COMP$1t}`]: "$color-primary-600",
8381
+ [`textColor-${COMP$1t}--hover`]: `$color-primary-500`,
8382
+ [`textColor-${COMP$1t}--active`]: "$color-primary-500"
8383
8383
  }
8384
8384
  }
8385
8385
  });
8386
8386
  const localLinkComponentRenderer = createComponentRenderer(
8387
- COMP$1s,
8387
+ COMP$1t,
8388
8388
  LinkMd,
8389
8389
  ({ node, extractValue, renderChild: renderChild2, lookupEventHandler, className }) => {
8390
8390
  return /* @__PURE__ */ jsx(
@@ -9814,10 +9814,10 @@ const TreeComponent = memo((props) => {
9814
9814
  }
9815
9815
  );
9816
9816
  });
9817
- const COMP$1r = "Tree";
9817
+ const COMP$1s = "Tree";
9818
9818
  const TreeMd = createMetadata({
9819
9819
  status: "stable",
9820
- description: `The \`${COMP$1r}\` component is a virtualized tree component that displays hierarchical data with support for flat and hierarchy data formats.`,
9820
+ description: `The \`${COMP$1s}\` component is a virtualized tree component that displays hierarchical data with support for flat and hierarchy data formats.`,
9821
9821
  props: {
9822
9822
  data: {
9823
9823
  description: `The data source of the tree. Format depends on the dataFormat property.`,
@@ -10077,20 +10077,20 @@ const TreeMd = createMetadata({
10077
10077
  },
10078
10078
  themeVars: parseScssVar(styles$16.themeVars),
10079
10079
  defaultThemeVars: {
10080
- [`backgroundColor-${COMP$1r}-row--selected`]: "$color-primary-50",
10081
- [`backgroundColor-${COMP$1r}-row--hover`]: "$color-surface-100",
10082
- [`textColor-${COMP$1r}`]: "$textColor-primary",
10083
- [`textColor-${COMP$1r}--selected`]: "$color-primary-900",
10084
- [`textColor-${COMP$1r}--hover`]: "$textColor-primary",
10085
- [`borderColor-${COMP$1r}-row--focus`]: "$color-primary-500",
10086
- [`outlineColor-${COMP$1r}--focus`]: "$outlineColor--focus",
10087
- [`outlineWidth-${COMP$1r}--focus`]: "$outlineWidth--focus",
10088
- [`outlineStyle-${COMP$1r}--focus`]: "$outlineStyle--focus",
10089
- [`outlineOffset-${COMP$1r}--focus`]: "$outlineOffset--focus"
10080
+ [`backgroundColor-${COMP$1s}-row--selected`]: "$color-primary-50",
10081
+ [`backgroundColor-${COMP$1s}-row--hover`]: "$color-surface-100",
10082
+ [`textColor-${COMP$1s}`]: "$textColor-primary",
10083
+ [`textColor-${COMP$1s}--selected`]: "$color-primary-900",
10084
+ [`textColor-${COMP$1s}--hover`]: "$textColor-primary",
10085
+ [`borderColor-${COMP$1s}-row--focus`]: "$color-primary-500",
10086
+ [`outlineColor-${COMP$1s}--focus`]: "$outlineColor--focus",
10087
+ [`outlineWidth-${COMP$1s}--focus`]: "$outlineWidth--focus",
10088
+ [`outlineStyle-${COMP$1s}--focus`]: "$outlineStyle--focus",
10089
+ [`outlineOffset-${COMP$1s}--focus`]: "$outlineOffset--focus"
10090
10090
  }
10091
10091
  });
10092
10092
  const treeComponentRenderer = createComponentRenderer(
10093
- COMP$1r,
10093
+ COMP$1s,
10094
10094
  TreeMd,
10095
10095
  ({ node, extractValue, renderChild: renderChild2, className, lookupEventHandler, registerComponentApi }) => {
10096
10096
  const defaultItemTemplate = {
@@ -10353,10 +10353,10 @@ const TreeDisplay = forwardRef(function TreeDisplay2({ style: style2, className,
10353
10353
  const treeNodes = useMemo(() => parseTreeContent(contentString), [contentString]);
10354
10354
  return /* @__PURE__ */ jsx("div", { className: classnames(styles$15.treeDisplay, className), style: style2, ref: forwardedRef, children: /* @__PURE__ */ jsx("div", { className: styles$15.content, children: treeNodes.map((node, index) => renderTreeNode(node, index, itemHeight, 0, [])) }) });
10355
10355
  });
10356
- const COMP$1q = "TreeDisplay";
10356
+ const COMP$1r = "TreeDisplay";
10357
10357
  const TreeDisplayMd = createMetadata({
10358
10358
  status: "stable",
10359
- description: `The \`${COMP$1q}\` component displays hierarchical data in a tree structure. It accepts an indented text format where each line is an entry in the tree, and the number of leading spaces determines the nesting level. The component renders the tree with SVG lines and continuous vertical guides to clearly visualize parent-child relationships in the hierarchy.`,
10359
+ description: `The \`${COMP$1r}\` component displays hierarchical data in a tree structure. It accepts an indented text format where each line is an entry in the tree, and the number of leading spaces determines the nesting level. The component renders the tree with SVG lines and continuous vertical guides to clearly visualize parent-child relationships in the hierarchy.`,
10360
10360
  props: {
10361
10361
  content: {
10362
10362
  description: "The indented text content to display as a tree structure. Each level of indentation (using spaces) represents one level in the tree hierarchy.",
@@ -10371,21 +10371,21 @@ const TreeDisplayMd = createMetadata({
10371
10371
  },
10372
10372
  themeVars: parseScssVar(styles$15.themeVars),
10373
10373
  defaultThemeVars: {
10374
- [`backgroundColor-${COMP$1q}`]: "$backgroundColor-CodeBlock",
10375
- [`borderRadius-${COMP$1q}`]: "8px",
10376
- [`padding-${COMP$1q}`]: "$space-4",
10377
- [`paddingLeft-${COMP$1q}`]: "$space-2",
10378
- [`fontSize-${COMP$1q}`]: "$fontSize-code",
10379
- [`fontWeight-${COMP$1q}`]: "$fontWeight-normal",
10380
- [`fontFamily-${COMP$1q}`]: "$fontFamily-monospace",
10381
- [`color-${COMP$1q}`]: "$textColor-primary",
10382
- [`color-connect-${COMP$1q}`]: "$color-surface-200",
10383
- [`boxShadow-${COMP$1q}`]: "none",
10384
- [`border-${COMP$1q}`]: "0.5px solid $borderColor"
10374
+ [`backgroundColor-${COMP$1r}`]: "$backgroundColor-CodeBlock",
10375
+ [`borderRadius-${COMP$1r}`]: "8px",
10376
+ [`padding-${COMP$1r}`]: "$space-4",
10377
+ [`paddingLeft-${COMP$1r}`]: "$space-2",
10378
+ [`fontSize-${COMP$1r}`]: "$fontSize-code",
10379
+ [`fontWeight-${COMP$1r}`]: "$fontWeight-normal",
10380
+ [`fontFamily-${COMP$1r}`]: "$fontFamily-monospace",
10381
+ [`color-${COMP$1r}`]: "$textColor-primary",
10382
+ [`color-connect-${COMP$1r}`]: "$color-surface-200",
10383
+ [`boxShadow-${COMP$1r}`]: "none",
10384
+ [`border-${COMP$1r}`]: "0.5px solid $borderColor"
10385
10385
  }
10386
10386
  });
10387
10387
  const treeDisplayComponentRenderer = createComponentRenderer(
10388
- COMP$1q,
10388
+ COMP$1r,
10389
10389
  TreeDisplayMd,
10390
10390
  ({ node, extractValue, renderChild: renderChild2, className }) => {
10391
10391
  return /* @__PURE__ */ jsx(
@@ -10402,7 +10402,7 @@ const treeDisplayComponentRenderer = createComponentRenderer(
10402
10402
  function hasRenderableChildren(children) {
10403
10403
  return !!children?.some((child) => child?.type !== "Slot");
10404
10404
  }
10405
- const COMP$1p = "Button";
10405
+ const COMP$1q = "Button";
10406
10406
  const ButtonMd = createMetadata({
10407
10407
  status: "stable",
10408
10408
  description: "`Button` is the primary interactive component for triggering actions like form submissions, navigation, opening modals, and API calls. It supports multiple visual styles and sizes to match different UI contexts and importance levels.",
@@ -10435,11 +10435,11 @@ const ButtonMd = createMetadata({
10435
10435
  defaultValue: defaultProps$1e.size
10436
10436
  },
10437
10437
  label: {
10438
- description: `This property is an optional string to set a label for the ${COMP$1p}. If no label is specified and an icon is set, the ${COMP$1p} will modify its styling to look like a small icon button. When the ${COMP$1p} has nested children, it will display them and ignore the value of the \`label\` prop.`,
10438
+ description: `This property is an optional string to set a label for the ${COMP$1q}. If no label is specified and an icon is set, the ${COMP$1q} will modify its styling to look like a small icon button. When the ${COMP$1q} has nested children, it will display them and ignore the value of the \`label\` prop.`,
10439
10439
  type: "string"
10440
10440
  },
10441
10441
  type: {
10442
- description: `This optional string describes how the ${COMP$1p} appears in an HTML context. You rarely need to set this property explicitly.`,
10442
+ description: `This optional string describes how the ${COMP$1q} appears in an HTML context. You rarely need to set this property explicitly.`,
10443
10443
  availableValues: buttonTypesMd,
10444
10444
  valueType: "string",
10445
10445
  defaultValue: defaultProps$1e.type
@@ -10451,93 +10451,93 @@ const ButtonMd = createMetadata({
10451
10451
  },
10452
10452
  orientation: dOrientation(defaultProps$1e.orientation),
10453
10453
  icon: {
10454
- description: `This string value denotes an icon name. The framework will render an icon if XMLUI recognizes the icon by its name. If no label is specified and an icon is set, the ${COMP$1p} displays only that icon.`,
10454
+ description: `This string value denotes an icon name. The framework will render an icon if XMLUI recognizes the icon by its name. If no label is specified and an icon is set, the ${COMP$1q} displays only that icon.`,
10455
10455
  type: "string"
10456
10456
  },
10457
10457
  iconPosition: {
10458
- description: `This optional string determines the location of the icon in the ${COMP$1p}.`,
10458
+ description: `This optional string determines the location of the icon in the ${COMP$1q}.`,
10459
10459
  availableValues: iconPositionMd,
10460
10460
  type: "string",
10461
10461
  defaultValue: defaultProps$1e.iconPosition
10462
10462
  },
10463
10463
  contentPosition: {
10464
- description: `This optional value determines how the label and icon (or nested children) should be placedinside the ${COMP$1p} component.`,
10464
+ description: `This optional value determines how the label and icon (or nested children) should be placedinside the ${COMP$1q} component.`,
10465
10465
  availableValues: alignmentOptionMd,
10466
10466
  type: "string",
10467
10467
  defaultValue: defaultProps$1e.contentPosition
10468
10468
  },
10469
10469
  contextualLabel: {
10470
- description: `This optional value is used to provide an accessible name for the ${COMP$1p} in the context of its usage.`,
10470
+ description: `This optional value is used to provide an accessible name for the ${COMP$1q} in the context of its usage.`,
10471
10471
  type: "string"
10472
10472
  }
10473
10473
  },
10474
10474
  events: {
10475
- click: dClick(COMP$1p),
10476
- gotFocus: dGotFocus(COMP$1p),
10477
- lostFocus: dLostFocus(COMP$1p)
10475
+ click: dClick(COMP$1q),
10476
+ gotFocus: dGotFocus(COMP$1q),
10477
+ lostFocus: dLostFocus(COMP$1q)
10478
10478
  },
10479
10479
  themeVars: parseScssVar(styles$1g.themeVars),
10480
10480
  defaultThemeVars: {
10481
10481
  // --- Default styles for supporting "variant" behavior
10482
- [`padding-${COMP$1p}`]: "$space-2 $space-4",
10483
- [`gap-${COMP$1p}`]: "$space-2",
10484
- [`borderColor-${COMP$1p}`]: "transparent",
10485
- [`backgroundColor-${COMP$1p}`]: "transparent",
10486
- [`transition-${COMP$1p}`]: "color 0.2s, background 0.2s",
10487
- [`width-${COMP$1p}`]: "fit-content",
10488
- [`height-${COMP$1p}`]: "fit-content",
10489
- [`borderRadius-${COMP$1p}`]: "$borderRadius",
10490
- [`fontSize-${COMP$1p}`]: "$fontSize-sm",
10491
- [`fontWeight-${COMP$1p}`]: "$fontWeight-medium",
10492
- [`fontStyle-${COMP$1p}`]: "$fontStyle-normal",
10493
- [`backgroundColor-${COMP$1p}-primary`]: "$color-primary-500",
10494
- [`backgroundColor-${COMP$1p}-attention`]: "$backgroundColor-attention",
10495
- [`borderColor-${COMP$1p}-attention`]: "$color-attention",
10496
- [`backgroundColor-${COMP$1p}--disabled`]: "$backgroundColor--disabled",
10497
- [`borderColor-${COMP$1p}--disabled`]: "$borderColor--disabled",
10498
- [`borderStyle-${COMP$1p}`]: "solid",
10499
- [`textColor-${COMP$1p}--disabled`]: "$textColor--disabled",
10500
- [`outlineColor-${COMP$1p}--focus`]: "$outlineColor--focus",
10501
- [`borderWidth-${COMP$1p}`]: "1px",
10502
- [`outlineWidth-${COMP$1p}--focus`]: "$outlineWidth--focus",
10503
- [`outlineStyle-${COMP$1p}--focus`]: "$outlineStyle--focus",
10504
- [`outlineOffset-${COMP$1p}--focus`]: "$outlineOffset--focus",
10505
- [`paddingHorizontal-${COMP$1p}-xs`]: "$space-1",
10506
- [`paddingVertical-${COMP$1p}-xs`]: "$space-0_5",
10507
- [`paddingHorizontal-${COMP$1p}-sm`]: "$space-4",
10508
- [`paddingVertical-${COMP$1p}-sm`]: "$space-2",
10509
- [`paddingHorizontal-${COMP$1p}-md`]: "$space-4",
10510
- [`paddingVertical-${COMP$1p}-md`]: "$space-3",
10511
- [`paddingHorizontal-${COMP$1p}-lg`]: "$space-5",
10512
- [`paddingVertical-${COMP$1p}-lg`]: "$space-4",
10513
- [`textColor-${COMP$1p}`]: "$color-surface-950",
10514
- [`textColor-${COMP$1p}-solid`]: "$const-color-surface-50",
10515
- [`borderColor-${COMP$1p}-primary`]: "$color-primary-500",
10516
- [`backgroundColor-${COMP$1p}-primary--hover`]: "$color-primary-400",
10517
- [`backgroundColor-${COMP$1p}-primary--active`]: "$color-primary-500",
10518
- [`backgroundColor-${COMP$1p}-primary-outlined--hover`]: "$color-primary-50",
10519
- [`backgroundColor-${COMP$1p}-primary-outlined--active`]: "$color-primary-100",
10520
- [`borderColor-${COMP$1p}-primary-outlined`]: "$color-primary-600",
10521
- [`borderColor-${COMP$1p}-primary-outlined--hover`]: "$color-primary-500",
10522
- [`textColor-${COMP$1p}-primary-outlined`]: "$color-primary-900",
10523
- [`textColor-${COMP$1p}-primary-outlined--hover`]: "$color-primary-950",
10524
- [`textColor-${COMP$1p}-primary-outlined--active`]: "$color-primary-900",
10525
- [`backgroundColor-${COMP$1p}-primary-ghost--hover`]: "$color-primary-50",
10526
- [`backgroundColor-${COMP$1p}-primary-ghost--active`]: "$color-primary-100",
10527
- [`borderColor-${COMP$1p}-secondary`]: "$color-secondary-100",
10528
- [`backgroundColor-${COMP$1p}-secondary`]: "$color-secondary-500",
10529
- [`backgroundColor-${COMP$1p}-secondary--hover`]: "$color-secondary-400",
10530
- [`backgroundColor-${COMP$1p}-secondary--active`]: "$color-secondary-500",
10531
- [`backgroundColor-${COMP$1p}-secondary-outlined--hover`]: "$color-secondary-50",
10532
- [`backgroundColor-${COMP$1p}-secondary-outlined--active`]: "$color-secondary-100",
10533
- [`backgroundColor-${COMP$1p}-secondary-ghost--hover`]: "$color-secondary-100",
10534
- [`backgroundColor-${COMP$1p}-secondary-ghost--active`]: "$color-secondary-100",
10535
- [`backgroundColor-${COMP$1p}-attention--hover`]: "$color-danger-400",
10536
- [`backgroundColor-${COMP$1p}-attention--active`]: "$color-danger-500",
10537
- [`backgroundColor-${COMP$1p}-attention-outlined--hover`]: "$color-danger-50",
10538
- [`backgroundColor-${COMP$1p}-attention-outlined--active`]: "$color-danger-100",
10539
- [`backgroundColor-${COMP$1p}-attention-ghost--hover`]: "$color-danger-50",
10540
- [`backgroundColor-${COMP$1p}-attention-ghost--active`]: "$color-danger-100"
10482
+ [`padding-${COMP$1q}`]: "$space-2 $space-4",
10483
+ [`gap-${COMP$1q}`]: "$space-2",
10484
+ [`borderColor-${COMP$1q}`]: "transparent",
10485
+ [`backgroundColor-${COMP$1q}`]: "transparent",
10486
+ [`transition-${COMP$1q}`]: "color 0.2s, background 0.2s",
10487
+ [`width-${COMP$1q}`]: "fit-content",
10488
+ [`height-${COMP$1q}`]: "fit-content",
10489
+ [`borderRadius-${COMP$1q}`]: "$borderRadius",
10490
+ [`fontSize-${COMP$1q}`]: "$fontSize-sm",
10491
+ [`fontWeight-${COMP$1q}`]: "$fontWeight-medium",
10492
+ [`fontStyle-${COMP$1q}`]: "$fontStyle-normal",
10493
+ [`backgroundColor-${COMP$1q}-primary`]: "$color-primary-500",
10494
+ [`backgroundColor-${COMP$1q}-attention`]: "$backgroundColor-attention",
10495
+ [`borderColor-${COMP$1q}-attention`]: "$color-attention",
10496
+ [`backgroundColor-${COMP$1q}--disabled`]: "$backgroundColor--disabled",
10497
+ [`borderColor-${COMP$1q}--disabled`]: "$borderColor--disabled",
10498
+ [`borderStyle-${COMP$1q}`]: "solid",
10499
+ [`textColor-${COMP$1q}--disabled`]: "$textColor--disabled",
10500
+ [`outlineColor-${COMP$1q}--focus`]: "$outlineColor--focus",
10501
+ [`borderWidth-${COMP$1q}`]: "1px",
10502
+ [`outlineWidth-${COMP$1q}--focus`]: "$outlineWidth--focus",
10503
+ [`outlineStyle-${COMP$1q}--focus`]: "$outlineStyle--focus",
10504
+ [`outlineOffset-${COMP$1q}--focus`]: "$outlineOffset--focus",
10505
+ [`paddingHorizontal-${COMP$1q}-xs`]: "$space-1",
10506
+ [`paddingVertical-${COMP$1q}-xs`]: "$space-0_5",
10507
+ [`paddingHorizontal-${COMP$1q}-sm`]: "$space-4",
10508
+ [`paddingVertical-${COMP$1q}-sm`]: "$space-2",
10509
+ [`paddingHorizontal-${COMP$1q}-md`]: "$space-4",
10510
+ [`paddingVertical-${COMP$1q}-md`]: "$space-3",
10511
+ [`paddingHorizontal-${COMP$1q}-lg`]: "$space-5",
10512
+ [`paddingVertical-${COMP$1q}-lg`]: "$space-4",
10513
+ [`textColor-${COMP$1q}`]: "$color-surface-950",
10514
+ [`textColor-${COMP$1q}-solid`]: "$const-color-surface-50",
10515
+ [`borderColor-${COMP$1q}-primary`]: "$color-primary-500",
10516
+ [`backgroundColor-${COMP$1q}-primary--hover`]: "$color-primary-400",
10517
+ [`backgroundColor-${COMP$1q}-primary--active`]: "$color-primary-500",
10518
+ [`backgroundColor-${COMP$1q}-primary-outlined--hover`]: "$color-primary-50",
10519
+ [`backgroundColor-${COMP$1q}-primary-outlined--active`]: "$color-primary-100",
10520
+ [`borderColor-${COMP$1q}-primary-outlined`]: "$color-primary-600",
10521
+ [`borderColor-${COMP$1q}-primary-outlined--hover`]: "$color-primary-500",
10522
+ [`textColor-${COMP$1q}-primary-outlined`]: "$color-primary-900",
10523
+ [`textColor-${COMP$1q}-primary-outlined--hover`]: "$color-primary-950",
10524
+ [`textColor-${COMP$1q}-primary-outlined--active`]: "$color-primary-900",
10525
+ [`backgroundColor-${COMP$1q}-primary-ghost--hover`]: "$color-primary-50",
10526
+ [`backgroundColor-${COMP$1q}-primary-ghost--active`]: "$color-primary-100",
10527
+ [`borderColor-${COMP$1q}-secondary`]: "$color-secondary-100",
10528
+ [`backgroundColor-${COMP$1q}-secondary`]: "$color-secondary-500",
10529
+ [`backgroundColor-${COMP$1q}-secondary--hover`]: "$color-secondary-400",
10530
+ [`backgroundColor-${COMP$1q}-secondary--active`]: "$color-secondary-500",
10531
+ [`backgroundColor-${COMP$1q}-secondary-outlined--hover`]: "$color-secondary-50",
10532
+ [`backgroundColor-${COMP$1q}-secondary-outlined--active`]: "$color-secondary-100",
10533
+ [`backgroundColor-${COMP$1q}-secondary-ghost--hover`]: "$color-secondary-100",
10534
+ [`backgroundColor-${COMP$1q}-secondary-ghost--active`]: "$color-secondary-100",
10535
+ [`backgroundColor-${COMP$1q}-attention--hover`]: "$color-danger-400",
10536
+ [`backgroundColor-${COMP$1q}-attention--active`]: "$color-danger-500",
10537
+ [`backgroundColor-${COMP$1q}-attention-outlined--hover`]: "$color-danger-50",
10538
+ [`backgroundColor-${COMP$1q}-attention-outlined--active`]: "$color-danger-100",
10539
+ [`backgroundColor-${COMP$1q}-attention-ghost--hover`]: "$color-danger-50",
10540
+ [`backgroundColor-${COMP$1q}-attention-ghost--active`]: "$color-danger-100"
10541
10541
  }
10542
10542
  });
10543
10543
  const buttonComponentRenderer = createComponentRenderer(
@@ -10858,7 +10858,7 @@ const Heading = forwardRef(function Heading2({
10858
10858
  }
10859
10859
  );
10860
10860
  });
10861
- const COMP$1o = "Heading";
10861
+ const COMP$1p = "Heading";
10862
10862
  function normalizeHeadingLevel(value) {
10863
10863
  if (value === null || value === void 0) {
10864
10864
  return "h1";
@@ -10881,7 +10881,7 @@ function normalizeHeadingLevel(value) {
10881
10881
  return "h1";
10882
10882
  }
10883
10883
  const VALUE_DESC = d(
10884
- `This property determines the text displayed in the heading. \`${COMP$1o}\` also accepts nested text instead of specifying the \`value\`. If both \`value\` and a nested text are used, the \`value\` will be displayed.`
10884
+ `This property determines the text displayed in the heading. \`${COMP$1p}\` also accepts nested text instead of specifying the \`value\`. If both \`value\` and a nested text are used, the \`value\` will be displayed.`
10885
10885
  );
10886
10886
  const MAX_LINES_DESC = d(
10887
10887
  "This optional property determines the maximum number of lines the component can wrap to. If there is not enough space for all of the text, the component wraps the text up to as many lines as specified. If the value is not specified, there is no limit on the number of displayed lines."
@@ -10957,13 +10957,13 @@ const HeadingMd = createMetadata({
10957
10957
  themeVars: parseScssVar(styles$14.themeVars),
10958
10958
  limitThemeVarsToComponent: true,
10959
10959
  defaultThemeVars: {
10960
- [`fontFamily-${COMP$1o}`]: "$fontFamily",
10961
- [`textColor-${COMP$1o}`]: "inherit",
10962
- [`fontWeight-${COMP$1o}`]: "$fontWeight-bold",
10963
- [`letterSpacing-${COMP$1o} `]: "0",
10964
- [`color-anchor-${COMP$1o} `]: "$color-surface-400",
10965
- [`gap-anchor-${COMP$1o} `]: "$space-2",
10966
- [`textDecorationLine-anchor-${COMP$1o} `]: "underline",
10960
+ [`fontFamily-${COMP$1p}`]: "$fontFamily",
10961
+ [`textColor-${COMP$1p}`]: "inherit",
10962
+ [`fontWeight-${COMP$1p}`]: "$fontWeight-bold",
10963
+ [`letterSpacing-${COMP$1p} `]: "0",
10964
+ [`color-anchor-${COMP$1p} `]: "$color-surface-400",
10965
+ [`gap-anchor-${COMP$1p} `]: "$space-2",
10966
+ [`textDecorationLine-anchor-${COMP$1p} `]: "underline",
10967
10967
  light: {
10968
10968
  // --- No light-specific theme vars
10969
10969
  },
@@ -10976,7 +10976,7 @@ const H1 = "H1";
10976
10976
  const H1Md = createMetadata({
10977
10977
  status: "stable",
10978
10978
  description: LEVEL_DESC(1),
10979
- specializedFrom: COMP$1o,
10979
+ specializedFrom: COMP$1p,
10980
10980
  props: {
10981
10981
  value: VALUE_DESC,
10982
10982
  maxLines: MAX_LINES_DESC,
@@ -11006,7 +11006,7 @@ const H2 = "H2";
11006
11006
  const H2Md = createMetadata({
11007
11007
  status: "stable",
11008
11008
  description: LEVEL_DESC(2),
11009
- specializedFrom: COMP$1o,
11009
+ specializedFrom: COMP$1p,
11010
11010
  props: {
11011
11011
  value: VALUE_DESC,
11012
11012
  maxLines: MAX_LINES_DESC,
@@ -11036,7 +11036,7 @@ const H3 = "H3";
11036
11036
  const H3Md = createMetadata({
11037
11037
  status: "stable",
11038
11038
  description: LEVEL_DESC(3),
11039
- specializedFrom: COMP$1o,
11039
+ specializedFrom: COMP$1p,
11040
11040
  props: {
11041
11041
  value: VALUE_DESC,
11042
11042
  maxLines: MAX_LINES_DESC,
@@ -11066,7 +11066,7 @@ const H4 = "H4";
11066
11066
  const H4Md = createMetadata({
11067
11067
  status: "stable",
11068
11068
  description: LEVEL_DESC(4),
11069
- specializedFrom: COMP$1o,
11069
+ specializedFrom: COMP$1p,
11070
11070
  props: {
11071
11071
  value: VALUE_DESC,
11072
11072
  maxLines: MAX_LINES_DESC,
@@ -11096,7 +11096,7 @@ const H5 = "H5";
11096
11096
  const H5Md = createMetadata({
11097
11097
  status: "stable",
11098
11098
  description: LEVEL_DESC(5),
11099
- specializedFrom: COMP$1o,
11099
+ specializedFrom: COMP$1p,
11100
11100
  props: {
11101
11101
  value: VALUE_DESC,
11102
11102
  maxLines: MAX_LINES_DESC,
@@ -11126,7 +11126,7 @@ const H6 = "H6";
11126
11126
  const H6Md = createMetadata({
11127
11127
  status: "stable",
11128
11128
  description: LEVEL_DESC(6),
11129
- specializedFrom: COMP$1o,
11129
+ specializedFrom: COMP$1p,
11130
11130
  props: {
11131
11131
  value: VALUE_DESC,
11132
11132
  maxLines: MAX_LINES_DESC,
@@ -11183,7 +11183,7 @@ function renderHeading({
11183
11183
  );
11184
11184
  }
11185
11185
  const headingComponentRenderer = createComponentRenderer(
11186
- COMP$1o,
11186
+ COMP$1p,
11187
11187
  HeadingMd,
11188
11188
  ({ node, extractValue, className, renderChild: renderChild2, registerComponentApi }) => {
11189
11189
  return renderHeading({
@@ -12088,13 +12088,13 @@ const Text = forwardRef(function Text2({
12088
12088
  }
12089
12089
  );
12090
12090
  });
12091
- const COMP$1n = "Text";
12091
+ const COMP$1o = "Text";
12092
12092
  const TextMd = createMetadata({
12093
12093
  status: "stable",
12094
- description: `The \`${COMP$1n}\` component displays textual information in a number of optional styles and variants.`,
12094
+ description: `The \`${COMP$1o}\` component displays textual information in a number of optional styles and variants.`,
12095
12095
  props: {
12096
12096
  value: d(
12097
- `The text to be displayed. This value can also be set via nesting the text into the \`${COMP$1n}\` component.`
12097
+ `The text to be displayed. This value can also be set via nesting the text into the \`${COMP$1o}\` component.`
12098
12098
  ),
12099
12099
  variant: {
12100
12100
  description: "An optional string value that provides named presets for text variants with a unique combination of font style, weight, size, color, and other parameters. If not defined, the text uses the current style of its context. In addition to predefined variants, you can specify custom variant names and style them using theme variables with the pattern `{cssProperty}-Text-{variantName}` (e.g., `textColor-Text-brandTitle`, `fontSize-Text-highlight`). See the documentation for a complete list of supported CSS properties.",
@@ -12154,77 +12154,77 @@ const TextMd = createMetadata({
12154
12154
  },
12155
12155
  themeVars: parseScssVar(styles$13.themeVars),
12156
12156
  defaultThemeVars: {
12157
- [`borderRadius-${COMP$1n}`]: "$borderRadius",
12158
- [`borderStyle-${COMP$1n}`]: "solid",
12159
- [`fontSize-${COMP$1n}`]: "$fontSize-sm",
12160
- [`borderWidth-${COMP$1n}`]: "$space-0",
12161
- [`textColor-${COMP$1n}`]: "$textColor-primary",
12162
- [`fontFamily-${COMP$1n}`]: "$fontFamily",
12163
- [`fontWeight-${COMP$1n}`]: "$fontWeight-normal",
12164
- [`fontSize-${COMP$1n}-secondary`]: "$fontSize-sm",
12165
- [`textColor-${COMP$1n}-secondary`]: "$textColor-secondary",
12166
- [`fontWeight-${COMP$1n}-abbr`]: "$fontWeight-bold",
12167
- [`textTransform-${COMP$1n}-abbr`]: "uppercase",
12168
- [`fontStyle-${COMP$1n}-cite`]: "italic",
12169
- [`fontSize-${COMP$1n}-codefence`]: "$fontSize-code",
12170
- [`fontFamily-${COMP$1n}-codefence`]: "$fontFamily-monospace",
12171
- [`paddingHorizontal-${COMP$1n}-codefence`]: "$space-4",
12172
- [`paddingVertical-${COMP$1n}-codefence`]: "$space-3",
12173
- [`textColor-${COMP$1n}-codefence`]: "$color-surface-900",
12174
- [`lineHeight-${COMP$1n}-codefence`]: "1.5",
12175
- [`fontFamily-${COMP$1n}-code`]: "$fontFamily-monospace",
12176
- [`fontSize-${COMP$1n}-code`]: "$fontSize-sm",
12177
- [`borderWidth-${COMP$1n}-code`]: "1px",
12178
- [`borderStyle-${COMP$1n}-code`]: "solid",
12179
- [`borderRadius-${COMP$1n}-code`]: "4px",
12180
- [`paddingHorizontal-${COMP$1n}-code`]: "$space-0_5",
12181
- [`paddingBottom-${COMP$1n}-code`]: "2px",
12182
- [`backgroundColor-${COMP$1n}-code`]: "rgb(from $color-surface-100 r g b / 0.4)",
12183
- [`borderColor-${COMP$1n}-code`]: "$color-surface-100",
12184
- [`textDecorationLine-${COMP$1n}-deleted`]: "line-through",
12185
- [`textDecorationLine-${COMP$1n}-inserted`]: "underline",
12186
- [`fontFamily-${COMP$1n}-keyboard`]: "$fontFamily-monospace",
12187
- [`fontSize-${COMP$1n}-keyboard`]: "$fontSize-sm",
12188
- [`fontWeight-${COMP$1n}-keyboard`]: "$fontWeight-bold",
12189
- [`borderWidth-${COMP$1n}-keyboard`]: "1px",
12190
- [`paddingHorizontal-${COMP$1n}-keyboard`]: "$space-1",
12191
- [`backgroundColor-${COMP$1n}-keyboard`]: "rgb(from $color-surface-100 r g b / 0.4)",
12192
- [`borderColor-${COMP$1n}-keyboard`]: "$color-surface-300",
12193
- [`fontFamily-${COMP$1n}-sample`]: "$fontFamily-monospace",
12194
- [`fontSize-${COMP$1n}-sample`]: "$fontSize-sm",
12195
- [`fontSize-${COMP$1n}-sup`]: "$fontSize-xs",
12196
- [`verticalAlignment-${COMP$1n}-sup`]: "super",
12197
- [`fontSize-${COMP$1n}-sub`]: "$fontSize-xs",
12198
- [`verticalAlignment-${COMP$1n}-sub`]: "sub",
12199
- [`fontStyle-${COMP$1n}-var`]: "italic",
12200
- [`fontStyle-${COMP$1n}-em`]: "italic",
12201
- [`fontFamily-${COMP$1n}-mono`]: "$fontFamily-monospace",
12202
- [`fontSize-${COMP$1n}-title`]: "$fontSize-2xl",
12203
- [`fontSize-${COMP$1n}-subtitle`]: "$fontSize-xl",
12204
- [`fontSize-${COMP$1n}-small`]: "$fontSize-sm",
12205
- [`letterSpacing-${COMP$1n}-caption`]: "0.05rem",
12206
- [`fontSize-${COMP$1n}-placeholder`]: "$fontSize-xs",
12207
- [`textColor-${COMP$1n}-placeholder`]: "$color-surface-500",
12208
- [`paddingVertical-${COMP$1n}-paragraph`]: "$space-1",
12209
- [`fontSize-${COMP$1n}-subheading`]: "$fontSize-H6",
12210
- [`fontWeight-${COMP$1n}-subheading`]: "$fontWeight-bold",
12211
- [`letterSpacing-${COMP$1n}-subheading`]: "0.04em",
12212
- [`textTransform-${COMP$1n}-subheading`]: "uppercase",
12213
- [`textColor-${COMP$1n}-subheading`]: "$textColor-secondary",
12214
- [`marginTop-${COMP$1n}-tableheading`]: "$space-1",
12215
- [`marginBottom-${COMP$1n}-tableheading`]: "$space-4",
12216
- [`paddingHorizontal-${COMP$1n}-tableheading`]: "$space-1",
12217
- [`fontSize-${COMP$1n}-tableheading`]: "$fontSize-H6",
12218
- [`fontWeight-${COMP$1n}-tableheading`]: "$fontWeight-bold",
12219
- [`fontWeight-${COMP$1n}-strong`]: "$fontWeight-bold",
12220
- [`backgroundColor-${COMP$1n}-marked`]: "rgb(from $color-primary-200 r g b / 0.4)",
12157
+ [`borderRadius-${COMP$1o}`]: "$borderRadius",
12158
+ [`borderStyle-${COMP$1o}`]: "solid",
12159
+ [`fontSize-${COMP$1o}`]: "$fontSize-sm",
12160
+ [`borderWidth-${COMP$1o}`]: "$space-0",
12161
+ [`textColor-${COMP$1o}`]: "$textColor-primary",
12162
+ [`fontFamily-${COMP$1o}`]: "$fontFamily",
12163
+ [`fontWeight-${COMP$1o}`]: "$fontWeight-normal",
12164
+ [`fontSize-${COMP$1o}-secondary`]: "$fontSize-sm",
12165
+ [`textColor-${COMP$1o}-secondary`]: "$textColor-secondary",
12166
+ [`fontWeight-${COMP$1o}-abbr`]: "$fontWeight-bold",
12167
+ [`textTransform-${COMP$1o}-abbr`]: "uppercase",
12168
+ [`fontStyle-${COMP$1o}-cite`]: "italic",
12169
+ [`fontSize-${COMP$1o}-codefence`]: "$fontSize-code",
12170
+ [`fontFamily-${COMP$1o}-codefence`]: "$fontFamily-monospace",
12171
+ [`paddingHorizontal-${COMP$1o}-codefence`]: "$space-4",
12172
+ [`paddingVertical-${COMP$1o}-codefence`]: "$space-3",
12173
+ [`textColor-${COMP$1o}-codefence`]: "$color-surface-900",
12174
+ [`lineHeight-${COMP$1o}-codefence`]: "1.5",
12175
+ [`fontFamily-${COMP$1o}-code`]: "$fontFamily-monospace",
12176
+ [`fontSize-${COMP$1o}-code`]: "$fontSize-sm",
12177
+ [`borderWidth-${COMP$1o}-code`]: "1px",
12178
+ [`borderStyle-${COMP$1o}-code`]: "solid",
12179
+ [`borderRadius-${COMP$1o}-code`]: "4px",
12180
+ [`paddingHorizontal-${COMP$1o}-code`]: "$space-0_5",
12181
+ [`paddingBottom-${COMP$1o}-code`]: "2px",
12182
+ [`backgroundColor-${COMP$1o}-code`]: "rgb(from $color-surface-100 r g b / 0.4)",
12183
+ [`borderColor-${COMP$1o}-code`]: "$color-surface-100",
12184
+ [`textDecorationLine-${COMP$1o}-deleted`]: "line-through",
12185
+ [`textDecorationLine-${COMP$1o}-inserted`]: "underline",
12186
+ [`fontFamily-${COMP$1o}-keyboard`]: "$fontFamily-monospace",
12187
+ [`fontSize-${COMP$1o}-keyboard`]: "$fontSize-sm",
12188
+ [`fontWeight-${COMP$1o}-keyboard`]: "$fontWeight-bold",
12189
+ [`borderWidth-${COMP$1o}-keyboard`]: "1px",
12190
+ [`paddingHorizontal-${COMP$1o}-keyboard`]: "$space-1",
12191
+ [`backgroundColor-${COMP$1o}-keyboard`]: "rgb(from $color-surface-100 r g b / 0.4)",
12192
+ [`borderColor-${COMP$1o}-keyboard`]: "$color-surface-300",
12193
+ [`fontFamily-${COMP$1o}-sample`]: "$fontFamily-monospace",
12194
+ [`fontSize-${COMP$1o}-sample`]: "$fontSize-sm",
12195
+ [`fontSize-${COMP$1o}-sup`]: "$fontSize-xs",
12196
+ [`verticalAlignment-${COMP$1o}-sup`]: "super",
12197
+ [`fontSize-${COMP$1o}-sub`]: "$fontSize-xs",
12198
+ [`verticalAlignment-${COMP$1o}-sub`]: "sub",
12199
+ [`fontStyle-${COMP$1o}-var`]: "italic",
12200
+ [`fontStyle-${COMP$1o}-em`]: "italic",
12201
+ [`fontFamily-${COMP$1o}-mono`]: "$fontFamily-monospace",
12202
+ [`fontSize-${COMP$1o}-title`]: "$fontSize-2xl",
12203
+ [`fontSize-${COMP$1o}-subtitle`]: "$fontSize-xl",
12204
+ [`fontSize-${COMP$1o}-small`]: "$fontSize-sm",
12205
+ [`letterSpacing-${COMP$1o}-caption`]: "0.05rem",
12206
+ [`fontSize-${COMP$1o}-placeholder`]: "$fontSize-xs",
12207
+ [`textColor-${COMP$1o}-placeholder`]: "$color-surface-500",
12208
+ [`paddingVertical-${COMP$1o}-paragraph`]: "$space-1",
12209
+ [`fontSize-${COMP$1o}-subheading`]: "$fontSize-H6",
12210
+ [`fontWeight-${COMP$1o}-subheading`]: "$fontWeight-bold",
12211
+ [`letterSpacing-${COMP$1o}-subheading`]: "0.04em",
12212
+ [`textTransform-${COMP$1o}-subheading`]: "uppercase",
12213
+ [`textColor-${COMP$1o}-subheading`]: "$textColor-secondary",
12214
+ [`marginTop-${COMP$1o}-tableheading`]: "$space-1",
12215
+ [`marginBottom-${COMP$1o}-tableheading`]: "$space-4",
12216
+ [`paddingHorizontal-${COMP$1o}-tableheading`]: "$space-1",
12217
+ [`fontSize-${COMP$1o}-tableheading`]: "$fontSize-H6",
12218
+ [`fontWeight-${COMP$1o}-tableheading`]: "$fontWeight-bold",
12219
+ [`fontWeight-${COMP$1o}-strong`]: "$fontWeight-bold",
12220
+ [`backgroundColor-${COMP$1o}-marked`]: "rgb(from $color-primary-200 r g b / 0.4)",
12221
12221
  dark: {
12222
- [`backgroundColor-${COMP$1n}-marked`]: "rgb(from $color-primary-400 r g b / 0.4)"
12222
+ [`backgroundColor-${COMP$1o}-marked`]: "rgb(from $color-primary-400 r g b / 0.4)"
12223
12223
  }
12224
12224
  }
12225
12225
  });
12226
12226
  const textComponentRenderer = createComponentRenderer(
12227
- COMP$1n,
12227
+ COMP$1o,
12228
12228
  TextMd,
12229
12229
  ({ node, extractValue, className, renderChild: renderChild2, registerComponentApi }) => {
12230
12230
  const {
@@ -12260,7 +12260,7 @@ const textComponentRenderer = createComponentRenderer(
12260
12260
  );
12261
12261
  }
12262
12262
  );
12263
- const COMP$1m = "Fragment";
12263
+ const COMP$1n = "Fragment";
12264
12264
  const FragmentMd = createMetadata({
12265
12265
  status: "stable",
12266
12266
  description: "`Fragment` provides conditional rendering. You can use `when=` on any component to render it conditionally, use `Fragment` to apply `when` to a group of components.",
@@ -12270,7 +12270,7 @@ const FragmentMd = createMetadata({
12270
12270
  }
12271
12271
  });
12272
12272
  const fragmentComponentRenderer = createComponentRenderer(
12273
- COMP$1m,
12273
+ COMP$1n,
12274
12274
  FragmentMd,
12275
12275
  ({ node, extractValue, renderChild: renderChild2, layoutContext }) => {
12276
12276
  let renderedChild = renderChild2(node.children, layoutContext);
@@ -12280,6 +12280,54 @@ const fragmentComponentRenderer = createComponentRenderer(
12280
12280
  return renderedChild;
12281
12281
  }
12282
12282
  );
12283
+ const COMP$1m = "Choose";
12284
+ const ChooseMd = createMetadata({
12285
+ status: "stable",
12286
+ description: "`Choose` is a non-visual component that provides switch-like conditional rendering. It evaluates a condition and renders the first child whose `case` attribute matches the condition value. If no match is found, it renders a child without a `case` attribute (the default case). Only one child is rendered. If a child component needs its own `case` property, use `$case` for matching instead, which will be transposed to `case` in the rendered child.",
12287
+ props: {
12288
+ condition: d(
12289
+ "The value to match against child `case` or `$case` attributes. This can be any expression that evaluates to a comparable value (string, number, boolean, etc.)."
12290
+ )
12291
+ },
12292
+ nonVisual: true
12293
+ });
12294
+ const chooseComponentRenderer = createComponentRenderer(
12295
+ COMP$1m,
12296
+ ChooseMd,
12297
+ ({ node, extractValue, renderChild: renderChild2, layoutContext }) => {
12298
+ const conditionValue = extractValue(node.props.condition);
12299
+ if (!node.children || node.children.length === 0) {
12300
+ return null;
12301
+ }
12302
+ for (const child of node.children) {
12303
+ const caseValue = child.props?.case;
12304
+ if (caseValue !== void 0) {
12305
+ const extractedCaseValue = extractValue(caseValue);
12306
+ if (extractedCaseValue === conditionValue) {
12307
+ let modifiedProps = { ...child.props };
12308
+ const dollarCaseValue = child.props?.$case;
12309
+ if (dollarCaseValue !== void 0) {
12310
+ const { case: _, $case: __, ...restProps } = modifiedProps;
12311
+ modifiedProps = { ...restProps, case: dollarCaseValue };
12312
+ } else {
12313
+ const { case: _, ...restProps } = modifiedProps;
12314
+ modifiedProps = restProps;
12315
+ }
12316
+ const childWithModifiedProps = {
12317
+ ...child,
12318
+ props: modifiedProps
12319
+ };
12320
+ const rendered = renderChild2([childWithModifiedProps], layoutContext);
12321
+ return Array.isArray(rendered) ? /* @__PURE__ */ jsx(Fragment$1, { children: rendered }, extractValue(node.uid)) : rendered;
12322
+ }
12323
+ } else {
12324
+ const rendered = renderChild2([child], layoutContext);
12325
+ return Array.isArray(rendered) ? /* @__PURE__ */ jsx(Fragment$1, { children: rendered }, extractValue(node.uid)) : rendered;
12326
+ }
12327
+ }
12328
+ return null;
12329
+ }
12330
+ );
12283
12331
  const themeVars$J = `'{"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)"}'`;
12284
12332
  const wrapper$i = "_wrapper_fw2wb_14";
12285
12333
  const noScroll = "_noScroll_fw2wb_42";
@@ -23518,24 +23566,36 @@ const styles$C = {
23518
23566
  content: content$4,
23519
23567
  arrow
23520
23568
  };
23521
- const themeVars$i = `'{"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)"}'`;
23522
- const markdownContent = "_markdownContent_1xkt7_14";
23523
- const markdown = "_markdown_1xkt7_14";
23524
- const block = "_block_1xkt7_124";
23525
- const blockquote = "_blockquote_1xkt7_130";
23526
- const blockquoteContainer = "_blockquoteContainer_1xkt7_146";
23527
- const admonitionBlockquote = "_admonitionBlockquote_1xkt7_174";
23528
- const info = "_info_1xkt7_206";
23529
- const warning$4 = "_warning_1xkt7_210";
23530
- const danger = "_danger_1xkt7_214";
23531
- const note = "_note_1xkt7_218";
23532
- const tip = "_tip_1xkt7_222";
23533
- const admonitionContainer = "_admonitionContainer_1xkt7_226";
23534
- const admonitionIcon = "_admonitionIcon_1xkt7_231";
23535
- const admonitionContent = "_admonitionContent_1xkt7_235";
23536
- const horizontalRule = "_horizontalRule_1xkt7_246";
23537
- const tableScrollContainer = "_tableScrollContainer_1xkt7_268";
23538
- const detailsAdornment = "_detailsAdornment_1xkt7_272";
23569
+ const themeVars$i = `'{"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)"}'`;
23570
+ const markdownContent = "_markdownContent_7k9ge_14";
23571
+ const markdown = "_markdown_7k9ge_14";
23572
+ const block = "_block_7k9ge_136";
23573
+ const blockquote = "_blockquote_7k9ge_142";
23574
+ const blockquoteContainer = "_blockquoteContainer_7k9ge_158";
23575
+ const admonitionBlockquote = "_admonitionBlockquote_7k9ge_186";
23576
+ const info = "_info_7k9ge_218";
23577
+ const warning$4 = "_warning_7k9ge_222";
23578
+ const danger = "_danger_7k9ge_226";
23579
+ const note = "_note_7k9ge_230";
23580
+ const tip = "_tip_7k9ge_234";
23581
+ const admonitionContainer = "_admonitionContainer_7k9ge_238";
23582
+ const admonitionIcon = "_admonitionIcon_7k9ge_243";
23583
+ const admonitionContent = "_admonitionContent_7k9ge_247";
23584
+ const horizontalRule = "_horizontalRule_7k9ge_258";
23585
+ const tableScrollContainer = "_tableScrollContainer_7k9ge_280";
23586
+ const detailsAdornment = "_detailsAdornment_7k9ge_284";
23587
+ const htmlTable$1 = "_htmlTable_7k9ge_318";
23588
+ const htmlThead$1 = "_htmlThead_7k9ge_354";
23589
+ const htmlTbody$1 = "_htmlTbody_7k9ge_386";
23590
+ const htmlTfoot$1 = "_htmlTfoot_7k9ge_393";
23591
+ const htmlTh$1 = "_htmlTh_7k9ge_354";
23592
+ const htmlTr$1 = "_htmlTr_7k9ge_431";
23593
+ const htmlTd$1 = "_htmlTd_7k9ge_467";
23594
+ const htmlUl$1 = "_htmlUl_7k9ge_499";
23595
+ const htmlOl$1 = "_htmlOl_7k9ge_528";
23596
+ const htmlLi = "_htmlLi_7k9ge_557";
23597
+ const htmlVideo = "_htmlVideo_7k9ge_588";
23598
+ const htmlDetails$1 = "_htmlDetails_7k9ge_592";
23539
23599
  const styles$B = {
23540
23600
  themeVars: themeVars$i,
23541
23601
  markdownContent,
@@ -23554,55 +23614,19 @@ const styles$B = {
23554
23614
  admonitionContent,
23555
23615
  horizontalRule,
23556
23616
  tableScrollContainer,
23557
- detailsAdornment
23558
- };
23559
- const themeVarsTable = `'{"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)))"}'`;
23560
- const themeVarsThead = `'{"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)))"}'`;
23561
- const themeVarsTbody = `'{"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)"}'`;
23562
- const themeVarsTfoot = `'{"backgroundColor-HtmlTfoot": "var(--xmlui-backgroundColor-HtmlTfoot)", "textColor-HtmlTfoot": "var(--xmlui-textColor-HtmlTfoot)"}'`;
23563
- const themeVarsTh = `'{"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)))"}'`;
23564
- const themeVarsTr = `'{"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))"}'`;
23565
- const themeVarsTd = `'{"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)))"}'`;
23566
- const themeVarsList = `'{"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)"}'`;
23567
- const themeVarsHeading = `'{"marginTop-HtmlHeading": "var(--xmlui-marginTop-HtmlHeading)", "marginBottom-HtmlHeading": "var(--xmlui-marginBottom-HtmlHeading)"}'`;
23568
- const themeVarsVideo = `'{"marginTop-HtmlVideo": "var(--xmlui-marginTop-HtmlVideo)", "marginBottom-HtmlVideo": "var(--xmlui-marginBottom-HtmlVideo)"}'`;
23569
- const themeVarsDetails = `'{"marginTop-HtmlDetails": "var(--xmlui-marginTop-HtmlDetails)", "marginBottom-HtmlDetails": "var(--xmlui-marginBottom-HtmlDetails)"}'`;
23570
- const htmlTable = "_htmlTable_1c76w_14";
23571
- const htmlThead = "_htmlThead_1c76w_52";
23572
- const htmlTbody = "_htmlTbody_1c76w_86";
23573
- const htmlTfoot = "_htmlTfoot_1c76w_95";
23574
- const htmlTh = "_htmlTh_1c76w_52";
23575
- const htmlTr = "_htmlTr_1c76w_137";
23576
- const htmlTd = "_htmlTd_1c76w_175";
23577
- const htmlUl = "_htmlUl_1c76w_209";
23578
- const htmlOl = "_htmlOl_1c76w_238";
23579
- const htmlLi = "_htmlLi_1c76w_267";
23580
- const htmlVideo = "_htmlVideo_1c76w_319";
23581
- const htmlDetails = "_htmlDetails_1c76w_325";
23582
- const styles$A = {
23583
- themeVarsTable,
23584
- themeVarsThead,
23585
- themeVarsTbody,
23586
- themeVarsTfoot,
23587
- themeVarsTh,
23588
- themeVarsTr,
23589
- themeVarsTd,
23590
- themeVarsList,
23591
- themeVarsHeading,
23592
- themeVarsVideo,
23593
- themeVarsDetails,
23594
- htmlTable,
23595
- htmlThead,
23596
- htmlTbody,
23597
- htmlTfoot,
23598
- htmlTh,
23599
- htmlTr,
23600
- htmlTd,
23601
- htmlUl,
23602
- htmlOl,
23617
+ detailsAdornment,
23618
+ htmlTable: htmlTable$1,
23619
+ htmlThead: htmlThead$1,
23620
+ htmlTbody: htmlTbody$1,
23621
+ htmlTfoot: htmlTfoot$1,
23622
+ htmlTh: htmlTh$1,
23623
+ htmlTr: htmlTr$1,
23624
+ htmlTd: htmlTd$1,
23625
+ htmlUl: htmlUl$1,
23626
+ htmlOl: htmlOl$1,
23603
23627
  htmlLi,
23604
23628
  htmlVideo,
23605
- htmlDetails
23629
+ htmlDetails: htmlDetails$1
23606
23630
  };
23607
23631
  function uint8ArrayToBase64(bytes) {
23608
23632
  const base64abc = [
@@ -24032,7 +24056,7 @@ const copyButton = "_copyButton_1hqq7_49";
24032
24056
  const codeBlockHeader = "_codeBlockHeader_1hqq7_55";
24033
24057
  const codeBlockContent = "_codeBlockContent_1hqq7_64";
24034
24058
  const codeBlockCopyButton = "_codeBlockCopyButton_1hqq7_72";
24035
- const styles$z = {
24059
+ const styles$A = {
24036
24060
  themeVars: themeVars$h,
24037
24061
  codeBlock,
24038
24062
  copyButton,
@@ -24053,22 +24077,22 @@ function CodeBlock({
24053
24077
  "div",
24054
24078
  {
24055
24079
  ...rest,
24056
- className: classnames(className, styles$z.codeBlock, "global-codeBlock"),
24080
+ className: classnames(className, styles$A.codeBlock, "global-codeBlock"),
24057
24081
  style: style2,
24058
- children: /* @__PURE__ */ jsx("div", { className: styles$z.codeBlockContent, children })
24082
+ children: /* @__PURE__ */ jsx("div", { className: styles$A.codeBlockContent, children })
24059
24083
  }
24060
24084
  );
24061
24085
  }
24062
- return /* @__PURE__ */ jsxs("div", { className: classnames(styles$z.codeBlock, "global-codeBlock"), style: style2, children: [
24063
- meta.filename && /* @__PURE__ */ jsx("div", { className: styles$z.codeBlockHeader, children: /* @__PURE__ */ jsx(Text, { variant: "em", children: meta.filename }) }),
24064
- /* @__PURE__ */ jsxs("div", { className: styles$z.codeBlockContent, children: [
24086
+ return /* @__PURE__ */ jsxs("div", { className: classnames(styles$A.codeBlock, "global-codeBlock"), style: style2, children: [
24087
+ meta.filename && /* @__PURE__ */ jsx("div", { className: styles$A.codeBlockHeader, children: /* @__PURE__ */ jsx(Text, { variant: "em", children: meta.filename }) }),
24088
+ /* @__PURE__ */ jsxs("div", { className: styles$A.codeBlockContent, children: [
24065
24089
  children,
24066
- meta.copy !== false && /* @__PURE__ */ jsx("div", { className: styles$z.codeBlockCopyButton, children: /* @__PURE__ */ jsx(
24090
+ meta.copy !== false && /* @__PURE__ */ jsx("div", { className: styles$A.codeBlockCopyButton, children: /* @__PURE__ */ jsx(
24067
24091
  Button,
24068
24092
  {
24069
24093
  variant: "ghost",
24070
24094
  size: "xs",
24071
- className: styles$z.copyButton,
24095
+ className: styles$A.copyButton,
24072
24096
  icon: /* @__PURE__ */ jsx(Icon, { name: "copy", "aria-hidden": true }),
24073
24097
  onClick: () => {
24074
24098
  if (!textToCopy) return;
@@ -24158,7 +24182,7 @@ const icon$2 = "_icon_45sg5_58";
24158
24182
  const summaryContent = "_summaryContent_45sg5_74";
24159
24183
  const withSwitch = "_withSwitch_45sg5_77";
24160
24184
  const content$3 = "_content_45sg5_80";
24161
- const styles$y = {
24185
+ const styles$z = {
24162
24186
  themeVars: themeVars$g,
24163
24187
  expandableItem,
24164
24188
  disabled: disabled$2,
@@ -24257,10 +24281,10 @@ const ExpandableItem = forwardRef(function ExpandableItem2({
24257
24281
  "div",
24258
24282
  {
24259
24283
  ...rest,
24260
- className: classnames(styles$y.expandableItem, className, {
24261
- [styles$y.open]: isOpen,
24262
- [styles$y.disabled]: !enabled2,
24263
- [styles$y.withSwitch]: withSwitch2
24284
+ className: classnames(styles$z.expandableItem, className, {
24285
+ [styles$z.open]: isOpen,
24286
+ [styles$z.disabled]: !enabled2,
24287
+ [styles$z.withSwitch]: withSwitch2
24264
24288
  }),
24265
24289
  style: style2,
24266
24290
  ref,
@@ -24268,9 +24292,9 @@ const ExpandableItem = forwardRef(function ExpandableItem2({
24268
24292
  /* @__PURE__ */ jsxs(
24269
24293
  "div",
24270
24294
  {
24271
- className: classnames(styles$y.summary, {
24272
- [styles$y.iconStart]: iconPosition === "start",
24273
- [styles$y.iconEnd]: iconPosition === "end"
24295
+ className: classnames(styles$z.summary, {
24296
+ [styles$z.iconStart]: iconPosition === "start",
24297
+ [styles$z.iconEnd]: iconPosition === "end"
24274
24298
  }),
24275
24299
  onClick: enabled2 ? withSwitch2 ? handleSummaryClick : toggleOpen : void 0,
24276
24300
  onKeyDown: handleKeyDown,
@@ -24281,7 +24305,7 @@ const ExpandableItem = forwardRef(function ExpandableItem2({
24281
24305
  "aria-disabled": !enabled2,
24282
24306
  id: summaryId,
24283
24307
  children: [
24284
- /* @__PURE__ */ jsx("div", { className: withSwitch2 ? styles$y.switch : styles$y.icon, "aria-hidden": "true", children: withSwitch2 ? /* @__PURE__ */ jsx(
24308
+ /* @__PURE__ */ jsx("div", { className: withSwitch2 ? styles$z.switch : styles$z.icon, "aria-hidden": "true", children: withSwitch2 ? /* @__PURE__ */ jsx(
24285
24309
  Toggle,
24286
24310
  {
24287
24311
  variant: "switch",
@@ -24296,14 +24320,14 @@ const ExpandableItem = forwardRef(function ExpandableItem2({
24296
24320
  fallback: isOpen ? "chevrondown" : "chevronright"
24297
24321
  }
24298
24322
  ) }),
24299
- /* @__PURE__ */ jsx("div", { className: styles$y.summaryContent, children: summary2 })
24323
+ /* @__PURE__ */ jsx("div", { className: styles$z.summaryContent, children: summary2 })
24300
24324
  ]
24301
24325
  }
24302
24326
  ),
24303
24327
  isOpen && /* @__PURE__ */ jsx(
24304
24328
  "div",
24305
24329
  {
24306
- className: styles$y.content,
24330
+ className: styles$z.content,
24307
24331
  role: "region",
24308
24332
  "aria-labelledby": summaryId,
24309
24333
  id: contentId,
@@ -24340,7 +24364,7 @@ function ApiInterceptorProvider({
24340
24364
  return;
24341
24365
  }
24342
24366
  void (async () => {
24343
- const { initMock } = await import("./initMock-DrUirixi.js");
24367
+ const { initMock } = await import("./initMock-CvmWAkGr.js");
24344
24368
  const apiInstance2 = await initMock(interceptor);
24345
24369
  setApiInstance(apiInstance2);
24346
24370
  setInitialized(true);
@@ -24357,7 +24381,7 @@ function ApiInterceptorProvider({
24357
24381
  if (process.env.VITE_MOCK_ENABLED) {
24358
24382
  const [{ createApiInterceptorWorker }, { initMock }] = await Promise.all([
24359
24383
  useWorker ? import("./apiInterceptorWorker-dwrAyq6l.js") : Promise.resolve({ createApiInterceptorWorker: () => null }),
24360
- import("./initMock-DrUirixi.js")
24384
+ import("./initMock-CvmWAkGr.js")
24361
24385
  ]);
24362
24386
  if (interceptor || forceInitialize) {
24363
24387
  const apiInstance2 = await initMock(interceptor || {});
@@ -24394,7 +24418,7 @@ function ApiInterceptorProvider({
24394
24418
  void (async () => {
24395
24419
  const [{ createApiInterceptorWorker }, { initMock }] = await Promise.all([
24396
24420
  import("./apiInterceptorWorker-dwrAyq6l.js"),
24397
- import("./initMock-DrUirixi.js")
24421
+ import("./initMock-CvmWAkGr.js")
24398
24422
  ]);
24399
24423
  const apiInstance2 = await initMock(interceptor);
24400
24424
  await createApiInterceptorWorker(apiInstance2, parentInterceptorWorker);
@@ -24435,7 +24459,7 @@ function ApiInterceptorProvider({
24435
24459
  const errorOverlay$2 = "_errorOverlay_1t96q_13";
24436
24460
  const title$2 = "_title_1t96q_21";
24437
24461
  const errorItem$1 = "_errorItem_1t96q_28";
24438
- const styles$x = {
24462
+ const styles$y = {
24439
24463
  errorOverlay: errorOverlay$2,
24440
24464
  title: title$2,
24441
24465
  errorItem: errorItem$1
@@ -24485,9 +24509,9 @@ class ErrorBoundary extends React__default.Component {
24485
24509
  * Display an error message if an error occurred during rendering.
24486
24510
  */
24487
24511
  render() {
24488
- return this.state.hasError ? /* @__PURE__ */ jsxs("div", { "data-error-boundary": true, className: styles$x.errorOverlay, children: [
24489
- /* @__PURE__ */ jsx("div", { className: styles$x.title, children: "There was an error!" }),
24490
- /* @__PURE__ */ jsx("div", { className: styles$x.errorItem, children: this.state.error?.message })
24512
+ return this.state.hasError ? /* @__PURE__ */ jsxs("div", { "data-error-boundary": true, className: styles$y.errorOverlay, children: [
24513
+ /* @__PURE__ */ jsx("div", { className: styles$y.title, children: "There was an error!" }),
24514
+ /* @__PURE__ */ jsx("div", { className: styles$y.errorItem, children: this.state.error?.message })
24491
24515
  ] }) : this.props.children;
24492
24516
  }
24493
24517
  }
@@ -24519,7 +24543,7 @@ const headerButton = "_headerButton_2bz33_204";
24519
24543
  const wrapper$9 = "_wrapper_2bz33_211";
24520
24544
  const shadowRoot = "_shadowRoot_2bz33_214";
24521
24545
  const content$2 = "_content_2bz33_109";
24522
- const styles$w = {
24546
+ const styles$x = {
24523
24547
  themeVars: themeVars$f,
24524
24548
  nestedAppPlaceholder,
24525
24549
  loadingContainer,
@@ -24546,9 +24570,9 @@ const styles$w = {
24546
24570
  content: content$2
24547
24571
  };
24548
24572
  function AnimatedLogo() {
24549
- return /* @__PURE__ */ jsxs("div", { className: styles$w.loadingContainer, children: [
24550
- /* @__PURE__ */ jsx("div", { className: styles$w.loadingText, children: "Loading XMLUI App..." }),
24551
- /* @__PURE__ */ jsx("div", { className: styles$w.logoWrapper, children: /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 26 26", xmlns: "http://www.w3.org/2000/svg", children: [
24573
+ return /* @__PURE__ */ jsxs("div", { className: styles$x.loadingContainer, children: [
24574
+ /* @__PURE__ */ jsx("div", { className: styles$x.loadingText, children: "Loading XMLUI App..." }),
24575
+ /* @__PURE__ */ jsx("div", { className: styles$x.logoWrapper, children: /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 26 26", xmlns: "http://www.w3.org/2000/svg", children: [
24552
24576
  /* @__PURE__ */ jsx(
24553
24577
  "path",
24554
24578
  {
@@ -24566,7 +24590,7 @@ function AnimatedLogo() {
24566
24590
  /* @__PURE__ */ jsx(
24567
24591
  "path",
24568
24592
  {
24569
- className: styles$w.animatedLogoPath,
24593
+ className: styles$x.animatedLogoPath,
24570
24594
  d: "M23.0215 2.81748H2.53486V23.044H23.0215V2.81748Z",
24571
24595
  fill: "none",
24572
24596
  stroke: "#3367CC",
@@ -24766,16 +24790,16 @@ function NestedApp({
24766
24790
  setRevealAnimationFinished(true);
24767
24791
  }, []);
24768
24792
  const shouldAnimate2 = withSplashScreen && !revealAnimationFinished;
24769
- return /* @__PURE__ */ jsxs("div", { className: classnames(styles$w.nestedAppPlaceholder, className), children: [
24793
+ return /* @__PURE__ */ jsxs("div", { className: classnames(styles$x.nestedAppPlaceholder, className), children: [
24770
24794
  shouldAnimate2 && /* @__PURE__ */ jsx(AnimatedLogo, {}),
24771
24795
  /* @__PURE__ */ jsx(
24772
24796
  "div",
24773
24797
  {
24774
24798
  ref: rootRef,
24775
24799
  onTransitionEnd: animationFinished,
24776
- className: classnames(styles$w.nestedAppRoot, {
24777
- [styles$w.shouldAnimate]: shouldAnimate2,
24778
- [styles$w.initialized]: initialized2
24800
+ className: classnames(styles$x.nestedAppRoot, {
24801
+ [styles$x.shouldAnimate]: shouldAnimate2,
24802
+ [styles$x.initialized]: initialized2
24779
24803
  })
24780
24804
  }
24781
24805
  )
@@ -24793,16 +24817,16 @@ function NestedAppRoot({
24793
24817
  return vars2;
24794
24818
  }, [themeStylesToReset]);
24795
24819
  const resetClassName = useStyles(themeVarReset, { prepend: true });
24796
- return /* @__PURE__ */ jsx("div", { className: classnames(resetClassName, styles$w.shadowRoot), id: "nested-app-root", children: /* @__PURE__ */ jsx("div", { className: styles$w.content, children }) });
24820
+ return /* @__PURE__ */ jsx("div", { className: classnames(resetClassName, styles$x.shadowRoot), id: "nested-app-root", children: /* @__PURE__ */ jsx("div", { className: styles$x.content, children }) });
24797
24821
  }
24798
24822
  const TooltipContent$1 = "_TooltipContent_1q9qu_14";
24799
- const styles$v = {
24823
+ const styles$w = {
24800
24824
  TooltipContent: TooltipContent$1
24801
24825
  };
24802
24826
  const Tooltip$1 = ({ trigger: trigger2, label: label2 }) => {
24803
24827
  return /* @__PURE__ */ jsx(RadixTooltip.Provider, { children: /* @__PURE__ */ jsxs(RadixTooltip.Root, { children: [
24804
24828
  /* @__PURE__ */ jsx(RadixTooltip.Trigger, { asChild: true, children: trigger2 }),
24805
- /* @__PURE__ */ jsx(RadixTooltip.Portal, { children: /* @__PURE__ */ jsx(RadixTooltip.Content, { side: "bottom", align: "start", className: styles$v.TooltipContent, children: label2 }) })
24829
+ /* @__PURE__ */ jsx(RadixTooltip.Portal, { children: /* @__PURE__ */ jsx(RadixTooltip.Content, { side: "bottom", align: "start", className: styles$w.TooltipContent, children: label2 }) })
24806
24830
  ] }) });
24807
24831
  };
24808
24832
  var DefaultContext = {
@@ -24968,19 +24992,19 @@ function AppWithCodeViewNative({
24968
24992
  if (withFrame) {
24969
24993
  return /* @__PURE__ */ jsxs(Fragment, { children: [
24970
24994
  !!markdown2 && !splitView && /* @__PURE__ */ jsx(Markdown, { children: markdown2 }),
24971
- /* @__PURE__ */ jsxs("div", { className: styles$w.nestedAppContainer, style: { height }, children: [
24972
- !noHeader && /* @__PURE__ */ jsxs("div", { className: styles$w.header, children: [
24973
- !splitView && /* @__PURE__ */ jsx("span", { className: styles$w.headerText, children: title2 }),
24995
+ /* @__PURE__ */ jsxs("div", { className: styles$x.nestedAppContainer, style: { height }, children: [
24996
+ !noHeader && /* @__PURE__ */ jsxs("div", { className: styles$x.header, children: [
24997
+ !splitView && /* @__PURE__ */ jsx("span", { className: styles$x.headerText, children: title2 }),
24974
24998
  splitView && /* @__PURE__ */ jsxs(Fragment, { children: [
24975
- /* @__PURE__ */ jsx("div", { className: styles$w.wrapper, style: { width: controlsWidth }, children: /* @__PURE__ */ jsx(SvgLogo, { className: styles$w.logo }) }),
24976
- /* @__PURE__ */ jsxs("div", { className: styles$w.viewControls, children: [
24999
+ /* @__PURE__ */ jsx("div", { className: styles$x.wrapper, style: { width: controlsWidth }, children: /* @__PURE__ */ jsx(SvgLogo, { className: styles$x.logo }) }),
25000
+ /* @__PURE__ */ jsxs("div", { className: styles$x.viewControls, children: [
24977
25001
  /* @__PURE__ */ jsx(
24978
25002
  Button,
24979
25003
  {
24980
25004
  onClick: () => setShowCode(true),
24981
- className: classnames(styles$w.splitViewButton, {
24982
- [styles$w.show]: showCode,
24983
- [styles$w.hide]: !showCode
25005
+ className: classnames(styles$x.splitViewButton, {
25006
+ [styles$x.show]: showCode,
25007
+ [styles$x.hide]: !showCode
24984
25008
  }),
24985
25009
  children: "XML"
24986
25010
  }
@@ -24989,23 +25013,23 @@ function AppWithCodeViewNative({
24989
25013
  Button,
24990
25014
  {
24991
25015
  onClick: () => setShowCode(false),
24992
- className: classnames(styles$w.splitViewButton, {
24993
- [styles$w.show]: !showCode,
24994
- [styles$w.hide]: showCode
25016
+ className: classnames(styles$x.splitViewButton, {
25017
+ [styles$x.show]: !showCode,
25018
+ [styles$x.hide]: showCode
24995
25019
  }),
24996
25020
  children: "UI"
24997
25021
  }
24998
25022
  )
24999
25023
  ] })
25000
25024
  ] }),
25001
- /* @__PURE__ */ jsxs("div", { className: styles$w.wrapper, style: { width: controlsWidth }, children: [
25025
+ /* @__PURE__ */ jsxs("div", { className: styles$x.wrapper, style: { width: controlsWidth }, children: [
25002
25026
  allowPlaygroundPopup && /* @__PURE__ */ jsx(
25003
25027
  Tooltip$1,
25004
25028
  {
25005
25029
  trigger: /* @__PURE__ */ jsx(
25006
25030
  "button",
25007
25031
  {
25008
- className: styles$w.headerButton,
25032
+ className: styles$x.headerButton,
25009
25033
  onClick: () => {
25010
25034
  void openPlayground();
25011
25035
  },
@@ -25021,7 +25045,7 @@ function AppWithCodeViewNative({
25021
25045
  trigger: /* @__PURE__ */ jsx(
25022
25046
  "button",
25023
25047
  {
25024
- className: styles$w.headerButton,
25048
+ className: styles$x.headerButton,
25025
25049
  onClick: () => {
25026
25050
  setShowCode(false);
25027
25051
  setRefreshVersion(refreshVersion + 1);
@@ -25035,18 +25059,18 @@ function AppWithCodeViewNative({
25035
25059
  closeButton2
25036
25060
  ] })
25037
25061
  ] }),
25038
- /* @__PURE__ */ jsxs("div", { className: styles$w.contentContainer, children: [
25062
+ /* @__PURE__ */ jsxs("div", { className: styles$x.contentContainer, children: [
25039
25063
  /* @__PURE__ */ jsx(
25040
25064
  Markdown,
25041
25065
  {
25042
- className: classnames(styles$w.splitViewMarkdown, { [styles$w.hidden]: !showCode }),
25066
+ className: classnames(styles$x.splitViewMarkdown, { [styles$x.hidden]: !showCode }),
25043
25067
  children: markdown2
25044
25068
  }
25045
25069
  ),
25046
25070
  /* @__PURE__ */ jsx(
25047
25071
  IndexAwareNestedApp,
25048
25072
  {
25049
- className: classnames({ [styles$w.hidden]: showCode }),
25073
+ className: classnames({ [styles$x.hidden]: showCode }),
25050
25074
  height: "100%",
25051
25075
  app,
25052
25076
  api,
@@ -25084,7 +25108,7 @@ function AppWithCodeViewNative({
25084
25108
  }
25085
25109
  const codeText = "_codeText_trvop_14";
25086
25110
  const codefence = "_codefence_trvop_21";
25087
- const styles$u = {
25111
+ const styles$v = {
25088
25112
  codeText,
25089
25113
  codefence
25090
25114
  };
@@ -25108,7 +25132,7 @@ const CodeText = forwardRef(function CodeText2({
25108
25132
  {
25109
25133
  ...variantSpecificProps,
25110
25134
  ref,
25111
- className: classnames(styles$u.codeText, styles$u.codefence, className),
25135
+ className: classnames(styles$v.codeText, styles$v.codefence, className),
25112
25136
  style: {
25113
25137
  ...style2
25114
25138
  },
@@ -25186,10 +25210,10 @@ const Markdown = memo(
25186
25210
  rehypePlugins: [rehypeRaw],
25187
25211
  components: {
25188
25212
  details({ children: children2, node, ...props }) {
25189
- return /* @__PURE__ */ jsx("details", { className: styles$A.htmlDetails, ...props, children: children2 });
25213
+ return /* @__PURE__ */ jsx("details", { className: styles$B.htmlDetails, ...props, children: children2 });
25190
25214
  },
25191
25215
  video({ children: children2, node, ...props }) {
25192
- return /* @__PURE__ */ jsx("video", { className: styles$A.htmlVideo, ...props, children: children2 });
25216
+ return /* @__PURE__ */ jsx("video", { className: styles$B.htmlVideo, ...props, children: children2 });
25193
25217
  },
25194
25218
  img({ children: children2, node, ...props }) {
25195
25219
  const src = props?.src;
@@ -25256,13 +25280,13 @@ const Markdown = memo(
25256
25280
  return /* @__PURE__ */ jsx(Blockquote, { children: children2 });
25257
25281
  },
25258
25282
  ol({ children: children2, node, ...props }) {
25259
- return /* @__PURE__ */ jsx("ol", { className: styles$A.htmlOl, ...props, children: children2 });
25283
+ return /* @__PURE__ */ jsx("ol", { className: styles$B.htmlOl, ...props, children: children2 });
25260
25284
  },
25261
25285
  ul({ children: children2, node, ...props }) {
25262
- return /* @__PURE__ */ jsx("ul", { className: styles$A.htmlUl, ...props, children: children2 });
25286
+ return /* @__PURE__ */ jsx("ul", { className: styles$B.htmlUl, ...props, children: children2 });
25263
25287
  },
25264
25288
  li({ children: children2, node, ...props }) {
25265
- return /* @__PURE__ */ jsx("li", { className: styles$A.htmlLi, ...props, children: /* @__PURE__ */ jsx(Text, { children: children2 }) });
25289
+ return /* @__PURE__ */ jsx("li", { className: styles$B.htmlLi, ...props, children: /* @__PURE__ */ jsx(Text, { children: children2 }) });
25266
25290
  },
25267
25291
  hr() {
25268
25292
  return /* @__PURE__ */ jsx(HorizontalRule, {});
@@ -25295,25 +25319,25 @@ const Markdown = memo(
25295
25319
  );
25296
25320
  },
25297
25321
  table({ children: children2 }) {
25298
- return /* @__PURE__ */ jsx("div", { className: styles$B.tableScrollContainer, children: /* @__PURE__ */ jsx("table", { className: styles$A.htmlTable, children: children2 }) });
25322
+ return /* @__PURE__ */ jsx("div", { className: styles$B.tableScrollContainer, children: /* @__PURE__ */ jsx("table", { className: styles$B.htmlTable, children: children2 }) });
25299
25323
  },
25300
25324
  tr({ children: children2 }) {
25301
- return /* @__PURE__ */ jsx("tr", { className: styles$A.htmlTr, children: children2 });
25325
+ return /* @__PURE__ */ jsx("tr", { className: styles$B.htmlTr, children: children2 });
25302
25326
  },
25303
25327
  td({ children: children2 }) {
25304
- return /* @__PURE__ */ jsx("td", { className: styles$A.htmlTd, children: children2 });
25328
+ return /* @__PURE__ */ jsx("td", { className: styles$B.htmlTd, children: children2 });
25305
25329
  },
25306
25330
  th({ children: children2 }) {
25307
- return /* @__PURE__ */ jsx("th", { className: styles$A.htmlTh, children: children2 });
25331
+ return /* @__PURE__ */ jsx("th", { className: styles$B.htmlTh, children: children2 });
25308
25332
  },
25309
25333
  thead({ children: children2 }) {
25310
- return /* @__PURE__ */ jsx("thead", { className: styles$A.htmlThead, children: children2 });
25334
+ return /* @__PURE__ */ jsx("thead", { className: styles$B.htmlThead, children: children2 });
25311
25335
  },
25312
25336
  tbody({ children: children2 }) {
25313
- return /* @__PURE__ */ jsx("tbody", { className: styles$A.htmlTbody, children: children2 });
25337
+ return /* @__PURE__ */ jsx("tbody", { className: styles$B.htmlTbody, children: children2 });
25314
25338
  },
25315
25339
  tfoot({ children: children2 }) {
25316
- return /* @__PURE__ */ jsx("tfoot", { className: styles$A.htmlTfoot, children: children2 });
25340
+ return /* @__PURE__ */ jsx("tfoot", { className: styles$B.htmlTfoot, children: children2 });
25317
25341
  },
25318
25342
  samp({ ...props }) {
25319
25343
  const markdownContentBase64 = props?.["data-pg-markdown"];
@@ -26468,7 +26492,7 @@ const colorInput = "_colorInput_1apm8_14";
26468
26492
  const error$3 = "_error_1apm8_48";
26469
26493
  const warning$3 = "_warning_1apm8_63";
26470
26494
  const valid$3 = "_valid_1apm8_78";
26471
- const styles$t = {
26495
+ const styles$u = {
26472
26496
  themeVars: themeVars$e,
26473
26497
  colorInput,
26474
26498
  error: error$3,
@@ -26555,11 +26579,11 @@ const ColorPicker = forwardRef(
26555
26579
  {
26556
26580
  ...rest,
26557
26581
  id,
26558
- className: classnames(className, styles$t.colorInput, {
26559
- [styles$t.disabled]: !enabled2,
26560
- [styles$t.error]: validationStatus === "error",
26561
- [styles$t.warning]: validationStatus === "warning",
26562
- [styles$t.valid]: validationStatus === "valid"
26582
+ className: classnames(className, styles$u.colorInput, {
26583
+ [styles$u.disabled]: !enabled2,
26584
+ [styles$u.error]: validationStatus === "error",
26585
+ [styles$u.warning]: validationStatus === "warning",
26586
+ [styles$u.valid]: validationStatus === "valid"
26563
26587
  }),
26564
26588
  "data-part-id": PART_INPUT,
26565
26589
  style: style2,
@@ -26585,7 +26609,7 @@ const helperText = "_helperText_15fgi_24";
26585
26609
  const valid$2 = "_valid_15fgi_28";
26586
26610
  const error$2 = "_error_15fgi_32";
26587
26611
  const warning$2 = "_warning_15fgi_36";
26588
- const styles$s = {
26612
+ const styles$t = {
26589
26613
  helper,
26590
26614
  helperText,
26591
26615
  valid: valid$2,
@@ -26634,14 +26658,14 @@ const HelperText = ({ text: text2 = "", status, style: style2 }) => {
26634
26658
  {
26635
26659
  "data-validation-status": status,
26636
26660
  style: style2,
26637
- className: classnames(styles$s.helper, {
26638
- [styles$s.valid]: status === "valid",
26639
- [styles$s.warning]: status === "warning",
26640
- [styles$s.error]: status === "error"
26661
+ className: classnames(styles$t.helper, {
26662
+ [styles$t.valid]: status === "valid",
26663
+ [styles$t.warning]: status === "warning",
26664
+ [styles$t.error]: status === "error"
26641
26665
  }),
26642
26666
  children: [
26643
26667
  status && /* @__PURE__ */ jsx("div", { style: { flexShrink: 0 }, children: renderStatusIcon() }),
26644
- text2 && /* @__PURE__ */ jsx("div", { className: styles$s.helperText, children: text2 })
26668
+ text2 && /* @__PURE__ */ jsx("div", { className: styles$t.helperText, children: text2 })
26645
26669
  ]
26646
26670
  }
26647
26671
  );
@@ -29138,7 +29162,7 @@ const navPanelRenderer = createComponentRenderer(
29138
29162
  );
29139
29163
  const themeVars$d = `'{"paddingVertical-Pages": "var(--xmlui-paddingVertical-Pages)", "paddingHorizontal-Pages": "var(--xmlui-paddingHorizontal-Pages)", "gap-Pages": "var(--xmlui-gap-Pages)"}'`;
29140
29164
  const wrapper$8 = "_wrapper_165dh_14";
29141
- const styles$r = {
29165
+ const styles$s = {
29142
29166
  themeVars: themeVars$d,
29143
29167
  wrapper: wrapper$8
29144
29168
  };
@@ -29173,7 +29197,7 @@ function RouteWrapper({
29173
29197
  return /* @__PURE__ */ jsx(
29174
29198
  "div",
29175
29199
  {
29176
- className: classnames(className, styles$r.wrapper, "xmlui-page-root"),
29200
+ className: classnames(className, styles$s.wrapper, "xmlui-page-root"),
29177
29201
  style: style2,
29178
29202
  children: renderChild2(wrappedWithContainer, layoutContext)
29179
29203
  },
@@ -29248,7 +29272,7 @@ const PagesMd = createMetadata({
29248
29272
  defaultValue: defaultProps$p.fallbackPath
29249
29273
  }
29250
29274
  },
29251
- themeVars: parseScssVar(styles$r.themeVars),
29275
+ themeVars: parseScssVar(styles$s.themeVars),
29252
29276
  defaultThemeVars: {
29253
29277
  [`paddingVertical-${COMP$R}`]: "$space-5",
29254
29278
  [`paddingHorizontal-${COMP$R}`]: "$space-4",
@@ -29274,7 +29298,7 @@ const themeVars$c = `'{"padding-Footer": "var(--xmlui-padding-Footer)", "padding
29274
29298
  const outerWrapper = "_outerWrapper_1pae4_14";
29275
29299
  const wrapper$7 = "_wrapper_1pae4_39";
29276
29300
  const full = "_full_1pae4_56";
29277
- const styles$q = {
29301
+ const styles$r = {
29278
29302
  themeVars: themeVars$c,
29279
29303
  outerWrapper,
29280
29304
  wrapper: wrapper$7,
@@ -29288,11 +29312,11 @@ const Footer = forwardRef(function Footer2({
29288
29312
  }, forwardedRef) {
29289
29313
  const { layout } = useAppLayoutContext() || {};
29290
29314
  const canRestrictContentWidth = layout !== "vertical-full-header";
29291
- return /* @__PURE__ */ jsx("div", { ...rest, className: styles$q.outerWrapper, ref: forwardedRef, style: style2, role: "contentinfo", children: /* @__PURE__ */ jsx(
29315
+ return /* @__PURE__ */ jsx("div", { ...rest, className: styles$r.outerWrapper, ref: forwardedRef, style: style2, role: "contentinfo", children: /* @__PURE__ */ jsx(
29292
29316
  "div",
29293
29317
  {
29294
- className: classnames(styles$q.wrapper, className, {
29295
- [styles$q.full]: !canRestrictContentWidth
29318
+ className: classnames(styles$r.wrapper, className, {
29319
+ [styles$r.full]: !canRestrictContentWidth
29296
29320
  }),
29297
29321
  children
29298
29322
  }
@@ -29302,7 +29326,7 @@ const COMP$Q = "Footer";
29302
29326
  const FooterMd = createMetadata({
29303
29327
  status: "stable",
29304
29328
  description: "`Footer` provides a designated area at the bottom of your application for footer content such as branding, copyright notices, or utility controls like theme toggles.",
29305
- themeVars: parseScssVar(styles$q.themeVars),
29329
+ themeVars: parseScssVar(styles$r.themeVars),
29306
29330
  limitThemeVarsToComponent: true,
29307
29331
  defaultThemeVars: {
29308
29332
  [`backgroundColor-${COMP$Q}`]: "$backgroundColor-AppHeader",
@@ -30642,7 +30666,7 @@ const ExpandableItemMd = createMetadata({
30642
30666
  signature: "isExpanded(): boolean"
30643
30667
  }
30644
30668
  },
30645
- themeVars: parseScssVar(styles$y.themeVars),
30669
+ themeVars: parseScssVar(styles$z.themeVars),
30646
30670
  limitThemeVarsToComponent: true,
30647
30671
  defaultThemeVars: {
30648
30672
  [`backgroundColor-${COMP$E}`]: "transparent",
@@ -30698,7 +30722,7 @@ const expandableItemComponentRenderer = createComponentRenderer(
30698
30722
  );
30699
30723
  const wrapper$6 = "_wrapper_1h2jx_14";
30700
30724
  const root$1 = "_root_1h2jx_17";
30701
- const styles$p = {
30725
+ const styles$q = {
30702
30726
  wrapper: wrapper$6,
30703
30727
  root: root$1
30704
30728
  };
@@ -32316,7 +32340,7 @@ function Theme({
32316
32340
  const { indexing } = useIndexerContext();
32317
32341
  const rootClasses = useMemo(() => {
32318
32342
  if (isRoot) {
32319
- return [className, styles$p.root];
32343
+ return [className, styles$q.root];
32320
32344
  }
32321
32345
  return EMPTY_ARRAY;
32322
32346
  }, [className, isRoot]);
@@ -32346,7 +32370,7 @@ function Theme({
32346
32370
  ] });
32347
32371
  }
32348
32372
  return /* @__PURE__ */ jsxs(ThemeContext.Provider, { value: currentThemeContextValue, children: [
32349
- /* @__PURE__ */ jsxs("div", { className: classnames(styles$p.wrapper, className), children: [
32373
+ /* @__PURE__ */ jsxs("div", { className: classnames(styles$q.wrapper, className), children: [
32350
32374
  renderChild2 && renderChild2(node.children, { ...layoutContext, themeClassName: className }),
32351
32375
  children
32352
32376
  ] }),
@@ -34692,7 +34716,7 @@ const day = "_day_1ajlz_222";
34692
34716
  const month = "_month_1ajlz_222";
34693
34717
  const year = "_year_1ajlz_222";
34694
34718
  const invalid$1 = "_invalid_1ajlz_249";
34695
- const styles$o = {
34719
+ const styles$p = {
34696
34720
  themeVars: themeVars$b,
34697
34721
  dateInputWrapper,
34698
34722
  disabled: disabled$1,
@@ -34710,7 +34734,7 @@ const styles$o = {
34710
34734
  invalid: invalid$1
34711
34735
  };
34712
34736
  const partialInput = "_partialInput_1cd95_2";
34713
- const styles$n = {
34737
+ const styles$o = {
34714
34738
  partialInput
34715
34739
  };
34716
34740
  function PartialInput({
@@ -34820,7 +34844,7 @@ function PartialInput({
34820
34844
  "aria-label": ariaLabel,
34821
34845
  autoComplete: "off",
34822
34846
  autoFocus,
34823
- className: classnames(styles$n.partialInput, className, {
34847
+ className: classnames(styles$o.partialInput, className, {
34824
34848
  [invalidClassName]: isInvalid
34825
34849
  }),
34826
34850
  "data-input": "true",
@@ -34845,14 +34869,14 @@ function PartialInput({
34845
34869
  );
34846
34870
  }
34847
34871
  const inputDivider = "_inputDivider_q160x_3";
34848
- const styles$m = {
34872
+ const styles$n = {
34849
34873
  inputDivider
34850
34874
  };
34851
34875
  function InputDivider({
34852
34876
  separator: separator2,
34853
34877
  className
34854
34878
  }) {
34855
- return /* @__PURE__ */ jsx("span", { className: classnames(styles$m.inputDivider, className), children: separator2 });
34879
+ return /* @__PURE__ */ jsx("span", { className: classnames(styles$n.inputDivider, className), children: separator2 });
34856
34880
  }
34857
34881
  const PART_DAY = "day";
34858
34882
  const PART_MONTH = "month";
@@ -35251,7 +35275,7 @@ const DateInput = forwardRef(function DateInputNative({
35251
35275
  stroke: "currentColor",
35252
35276
  strokeWidth: 2,
35253
35277
  "aria-hidden": "true",
35254
- className: classnames(styles$o.clearButtonIcon, styles$o.buttonIcon),
35278
+ className: classnames(styles$p.clearButtonIcon, styles$p.buttonIcon),
35255
35279
  children: [
35256
35280
  /* @__PURE__ */ jsx("line", { x1: "4", x2: "15", y1: "4", y2: "15" }),
35257
35281
  /* @__PURE__ */ jsx("line", { x1: "15", x2: "4", y1: "4", y2: "15" })
@@ -35261,13 +35285,13 @@ const DateInput = forwardRef(function DateInputNative({
35261
35285
  }, [clearIcon]);
35262
35286
  const startAdornment = useMemo(() => {
35263
35287
  if (startIcon || startText) {
35264
- return /* @__PURE__ */ jsx(Adornment, { iconName: startIcon, text: startText, className: styles$o.adornment });
35288
+ return /* @__PURE__ */ jsx(Adornment, { iconName: startIcon, text: startText, className: styles$p.adornment });
35265
35289
  }
35266
35290
  return null;
35267
35291
  }, [startIcon, startText]);
35268
35292
  const endAdornment = useMemo(() => {
35269
35293
  if (endIcon || endText) {
35270
- return /* @__PURE__ */ jsx(Adornment, { iconName: endIcon, text: endText, className: styles$o.adornment });
35294
+ return /* @__PURE__ */ jsx(Adornment, { iconName: endIcon, text: endText, className: styles$p.adornment });
35271
35295
  }
35272
35296
  return null;
35273
35297
  }, [endIcon, endText]);
@@ -35376,13 +35400,13 @@ const DateInput = forwardRef(function DateInputNative({
35376
35400
  {
35377
35401
  ref: dateInputRef,
35378
35402
  className: classnames(
35379
- styles$o.dateInputWrapper,
35403
+ styles$p.dateInputWrapper,
35380
35404
  {
35381
- [styles$o.error]: validationStatus === "error",
35382
- [styles$o.warning]: validationStatus === "warning",
35383
- [styles$o.valid]: validationStatus === "valid",
35384
- [styles$o.disabled]: !enabled2,
35385
- [styles$o.readOnly]: readOnly2
35405
+ [styles$p.error]: validationStatus === "error",
35406
+ [styles$p.warning]: validationStatus === "warning",
35407
+ [styles$p.valid]: validationStatus === "valid",
35408
+ [styles$p.disabled]: !enabled2,
35409
+ [styles$p.readOnly]: readOnly2
35386
35410
  },
35387
35411
  className
35388
35412
  ),
@@ -35393,15 +35417,15 @@ const DateInput = forwardRef(function DateInputNative({
35393
35417
  ...rest,
35394
35418
  children: [
35395
35419
  startAdornment,
35396
- /* @__PURE__ */ jsxs("div", { className: styles$o.wrapper, children: [
35397
- /* @__PURE__ */ jsx("div", { className: styles$o.inputGroup, children: createDateInputs() }),
35420
+ /* @__PURE__ */ jsxs("div", { className: styles$p.wrapper, children: [
35421
+ /* @__PURE__ */ jsx("div", { className: styles$p.inputGroup, children: createDateInputs() }),
35398
35422
  clearable && /* @__PURE__ */ jsx(
35399
35423
  "button",
35400
35424
  {
35401
35425
  "data-part-id": PART_CLEAR_BUTTON$1,
35402
35426
  className: classnames(
35403
- styles$o.clearButton,
35404
- styles$o.button
35427
+ styles$p.clearButton,
35428
+ styles$p.button
35405
35429
  ),
35406
35430
  disabled: !enabled2,
35407
35431
  onClick: clear,
@@ -35457,8 +35481,8 @@ function DayInput({
35457
35481
  }
35458
35482
  },
35459
35483
  onKeyDown: otherProps.onKeyDown,
35460
- className: classnames(styles$o.input, styles$o.day),
35461
- invalidClassName: styles$o.invalid,
35484
+ className: classnames(styles$p.input, styles$p.day),
35485
+ invalidClassName: styles$p.invalid,
35462
35486
  disabled: otherProps.disabled,
35463
35487
  readOnly: otherProps.readOnly,
35464
35488
  required: otherProps.required,
@@ -35489,14 +35513,14 @@ function MonthInput({
35489
35513
  min: 1,
35490
35514
  name: "month",
35491
35515
  value,
35492
- invalidClassName: styles$o.invalid,
35516
+ invalidClassName: styles$p.invalid,
35493
35517
  isInvalid,
35494
35518
  validateFn: isMonthInvalid,
35495
35519
  onBeep,
35496
35520
  onChange: otherProps.onChange,
35497
35521
  emptyCharacter,
35498
35522
  placeholderLength: 2,
35499
- className: classnames(styles$o.input, styles$o.month),
35523
+ className: classnames(styles$p.input, styles$p.month),
35500
35524
  maxLength: 2,
35501
35525
  disabled: otherProps.disabled,
35502
35526
  required: otherProps.required,
@@ -35539,12 +35563,12 @@ function YearInput({
35539
35563
  name: "year",
35540
35564
  value,
35541
35565
  isInvalid,
35542
- invalidClassName: styles$o.invalid,
35566
+ invalidClassName: styles$p.invalid,
35543
35567
  validateFn: isYearInvalid,
35544
35568
  onBeep,
35545
35569
  emptyCharacter,
35546
35570
  placeholderLength: 4,
35547
- className: classnames(styles$o.input, styles$o.year, originalClassName),
35571
+ className: classnames(styles$p.input, styles$p.year, originalClassName),
35548
35572
  maxLength,
35549
35573
  onBlur: (direction, event) => {
35550
35574
  if (otherProps.onBlur) {
@@ -35815,7 +35839,7 @@ const DateInputMd = createMetadata({
35815
35839
  signature: "isoValue(): string | null"
35816
35840
  }
35817
35841
  },
35818
- themeVars: parseScssVar(styles$o.themeVars),
35842
+ themeVars: parseScssVar(styles$p.themeVars),
35819
35843
  defaultThemeVars: {
35820
35844
  // DateInput specific theme variables (matching TimeInput structure)
35821
35845
  [`paddingHorizontal-${COMP$A}`]: "$space-2",
@@ -35911,7 +35935,7 @@ const button = "_button_qhvgh_343";
35911
35935
  const clearButton = "_clearButton_qhvgh_343";
35912
35936
  const buttonIcon = "_buttonIcon_qhvgh_353";
35913
35937
  const clearButtonIcon = "_clearButtonIcon_qhvgh_353";
35914
- const styles$l = {
35938
+ const styles$m = {
35915
35939
  themeVars: themeVars$a,
35916
35940
  timeInputWrapper,
35917
35941
  disabled,
@@ -36429,7 +36453,7 @@ const TimeInputNative = forwardRef(function TimeInputNative2({
36429
36453
  stroke: "currentColor",
36430
36454
  strokeWidth: 2,
36431
36455
  "aria-hidden": "true",
36432
- className: classnames(styles$l.clearButtonIcon, styles$l.buttonIcon),
36456
+ className: classnames(styles$m.clearButtonIcon, styles$m.buttonIcon),
36433
36457
  children: [
36434
36458
  /* @__PURE__ */ jsx("line", { x1: "4", x2: "15", y1: "4", y2: "15" }),
36435
36459
  /* @__PURE__ */ jsx("line", { x1: "15", x2: "4", y1: "4", y2: "15" })
@@ -36439,13 +36463,13 @@ const TimeInputNative = forwardRef(function TimeInputNative2({
36439
36463
  }, [clearIcon]);
36440
36464
  const startAdornment = useMemo(() => {
36441
36465
  if (startIcon || startText) {
36442
- return /* @__PURE__ */ jsx(Adornment, { iconName: startIcon, text: startText, className: styles$l.adornment });
36466
+ return /* @__PURE__ */ jsx(Adornment, { iconName: startIcon, text: startText, className: styles$m.adornment });
36443
36467
  }
36444
36468
  return null;
36445
36469
  }, [startIcon, startText]);
36446
36470
  const endAdornment = useMemo(() => {
36447
36471
  if (endIcon || endText) {
36448
- return /* @__PURE__ */ jsx(Adornment, { iconName: endIcon, text: endText, className: styles$l.adornment });
36472
+ return /* @__PURE__ */ jsx(Adornment, { iconName: endIcon, text: endText, className: styles$m.adornment });
36449
36473
  }
36450
36474
  return null;
36451
36475
  }, [endIcon, endText]);
@@ -36454,13 +36478,13 @@ const TimeInputNative = forwardRef(function TimeInputNative2({
36454
36478
  {
36455
36479
  ref: timeInputRef,
36456
36480
  className: classnames(
36457
- styles$l.timeInputWrapper,
36481
+ styles$m.timeInputWrapper,
36458
36482
  {
36459
- [styles$l.error]: validationStatus === "error",
36460
- [styles$l.warning]: validationStatus === "warning",
36461
- [styles$l.valid]: validationStatus === "valid",
36462
- [styles$l.disabled]: !enabled2,
36463
- [styles$l.readOnly]: readOnly2
36483
+ [styles$m.error]: validationStatus === "error",
36484
+ [styles$m.warning]: validationStatus === "warning",
36485
+ [styles$m.valid]: validationStatus === "valid",
36486
+ [styles$m.disabled]: !enabled2,
36487
+ [styles$m.readOnly]: readOnly2
36464
36488
  },
36465
36489
  className
36466
36490
  ),
@@ -36471,8 +36495,8 @@ const TimeInputNative = forwardRef(function TimeInputNative2({
36471
36495
  ...rest,
36472
36496
  children: [
36473
36497
  startAdornment,
36474
- /* @__PURE__ */ jsxs("div", { className: styles$l.wrapper, children: [
36475
- /* @__PURE__ */ jsxs("div", { className: styles$l.inputGroup, children: [
36498
+ /* @__PURE__ */ jsxs("div", { className: styles$m.wrapper, children: [
36499
+ /* @__PURE__ */ jsxs("div", { className: styles$m.inputGroup, children: [
36476
36500
  /* @__PURE__ */ jsx(
36477
36501
  HourInput,
36478
36502
  {
@@ -36518,7 +36542,7 @@ const TimeInputNative = forwardRef(function TimeInputNative2({
36518
36542
  }
36519
36543
  ),
36520
36544
  showSeconds && /* @__PURE__ */ jsxs(Fragment, { children: [
36521
- /* @__PURE__ */ jsx(InputDivider, { separator: ":", className: styles$l.divider }),
36545
+ /* @__PURE__ */ jsx(InputDivider, { separator: ":", className: styles$m.divider }),
36522
36546
  /* @__PURE__ */ jsx(
36523
36547
  SecondInput,
36524
36548
  {
@@ -36560,7 +36584,7 @@ const TimeInputNative = forwardRef(function TimeInputNative2({
36560
36584
  "button",
36561
36585
  {
36562
36586
  "data-part-id": PART_CLEAR_BUTTON,
36563
- className: classnames(styles$l.clearButton, styles$l.button),
36587
+ className: classnames(styles$m.clearButton, styles$m.button),
36564
36588
  disabled: !enabled2,
36565
36589
  onClick: clear,
36566
36590
  onFocus: stopPropagation,
@@ -36617,12 +36641,12 @@ function AmPmButton({
36617
36641
  "data-part-id": PART_AMPM,
36618
36642
  "aria-label": ariaLabel || "Toggle AM/PM (Press A for AM, P for PM)",
36619
36643
  autoFocus,
36620
- className: classnames(styles$l.amPmButton, styles$l.button, className),
36644
+ className: classnames(styles$m.amPmButton, styles$m.button, className),
36621
36645
  disabled: isDisabled,
36622
36646
  onClick,
36623
36647
  onKeyDown: handleKeyDown,
36624
36648
  ref: buttonRef,
36625
- children: /* @__PURE__ */ jsx("span", { className: styles$l.amPmValue, children: value ? value === "am" ? amLabel : pmLabel : "--" })
36649
+ children: /* @__PURE__ */ jsx("span", { className: styles$m.amPmValue, children: value ? value === "am" ? amLabel : pmLabel : "--" })
36626
36650
  }
36627
36651
  );
36628
36652
  }
@@ -36691,8 +36715,8 @@ function HourInput({
36691
36715
  }
36692
36716
  },
36693
36717
  onKeyDown: otherProps.onKeyDown,
36694
- className: classnames(styles$l.input, styles$l.hour),
36695
- invalidClassName: styles$l.invalid,
36718
+ className: classnames(styles$m.input, styles$m.hour),
36719
+ invalidClassName: styles$m.invalid,
36696
36720
  disabled: otherProps.disabled,
36697
36721
  readOnly: otherProps.readOnly,
36698
36722
  required: otherProps.required,
@@ -36740,8 +36764,8 @@ function MinuteInput({
36740
36764
  }
36741
36765
  },
36742
36766
  onKeyDown: otherProps.onKeyDown,
36743
- className: classnames(styles$l.input, styles$l.minute),
36744
- invalidClassName: styles$l.invalid,
36767
+ className: classnames(styles$m.input, styles$m.minute),
36768
+ invalidClassName: styles$m.invalid,
36745
36769
  disabled: otherProps.disabled,
36746
36770
  readOnly: otherProps.readOnly,
36747
36771
  required: otherProps.required,
@@ -36789,8 +36813,8 @@ function SecondInput({
36789
36813
  }
36790
36814
  },
36791
36815
  onKeyDown: otherProps.onKeyDown,
36792
- className: classnames(styles$l.input, styles$l.second),
36793
- invalidClassName: styles$l.invalid,
36816
+ className: classnames(styles$m.input, styles$m.second),
36817
+ invalidClassName: styles$m.invalid,
36794
36818
  disabled: otherProps.disabled,
36795
36819
  readOnly: otherProps.readOnly,
36796
36820
  required: otherProps.required,
@@ -37017,7 +37041,7 @@ const TimeInputMd = createMetadata({
37017
37041
  signature: "isoValue(): string | null"
37018
37042
  }
37019
37043
  },
37020
- themeVars: parseScssVar(styles$l.themeVars),
37044
+ themeVars: parseScssVar(styles$m.themeVars),
37021
37045
  defaultThemeVars: {
37022
37046
  // TimeInput specific theme variables
37023
37047
  [`paddingHorizontal-${COMP$z}`]: "$space-2",
@@ -37350,7 +37374,7 @@ const accordionRoot = "_accordionRoot_1s67j_128";
37350
37374
  const accordionInterleaved = "_accordionInterleaved_1s67j_133";
37351
37375
  const accordionList = "_accordionList_1s67j_138";
37352
37376
  const accordionTrigger = "_accordionTrigger_1s67j_150";
37353
- const styles$k = {
37377
+ const styles$l = {
37354
37378
  themeVars: themeVars$9,
37355
37379
  tabs,
37356
37380
  filler,
@@ -37508,7 +37532,7 @@ const Tabs = forwardRef(function Tabs2({
37508
37532
  ...rest,
37509
37533
  id: tabsId,
37510
37534
  ref: forwardedRef,
37511
- className: classnames(className, styles$k.tabs, styles$k.accordionView),
37535
+ className: classnames(className, styles$l.tabs, styles$l.accordionView),
37512
37536
  style: style2,
37513
37537
  children: /* @__PURE__ */ jsx(
37514
37538
  Root$1,
@@ -37524,9 +37548,9 @@ const Tabs = forwardRef(function Tabs2({
37524
37548
  }
37525
37549
  },
37526
37550
  orientation: "vertical",
37527
- className: styles$k.accordionRoot,
37528
- children: /* @__PURE__ */ jsxs("div", { className: styles$k.accordionInterleaved, children: [
37529
- /* @__PURE__ */ jsx(List, { className: styles$k.accordionList, children: tabItems.map((tab, index) => /* @__PURE__ */ jsx(
37551
+ className: styles$l.accordionRoot,
37552
+ children: /* @__PURE__ */ jsxs("div", { className: styles$l.accordionInterleaved, children: [
37553
+ /* @__PURE__ */ jsx(List, { className: styles$l.accordionList, children: tabItems.map((tab, index) => /* @__PURE__ */ jsx(
37530
37554
  Trigger,
37531
37555
  {
37532
37556
  value: tab.innerId,
@@ -37537,7 +37561,7 @@ const Tabs = forwardRef(function Tabs2({
37537
37561
  {
37538
37562
  role: "tab",
37539
37563
  "aria-label": tab.label,
37540
- className: classnames(styles$k.tabTrigger, styles$k.accordionTrigger),
37564
+ className: classnames(styles$l.tabTrigger, styles$l.accordionTrigger),
37541
37565
  children: tab.headerRenderer ? tab.headerRenderer({
37542
37566
  ...tab.id !== void 0 && { id: tab.id },
37543
37567
  index,
@@ -37567,7 +37591,7 @@ const Tabs = forwardRef(function Tabs2({
37567
37591
  ...rest,
37568
37592
  id: tabsId,
37569
37593
  ref: forwardedRef,
37570
- className: classnames(className, styles$k.tabs),
37594
+ className: classnames(className, styles$l.tabs),
37571
37595
  value: `${currentTab}`,
37572
37596
  onValueChange: (tab) => {
37573
37597
  const tabItem = tabItems.find((item2) => item2.innerId === tab);
@@ -37584,23 +37608,23 @@ const Tabs = forwardRef(function Tabs2({
37584
37608
  /* @__PURE__ */ jsxs(
37585
37609
  List,
37586
37610
  {
37587
- className: classnames(styles$k.tabsList, {
37588
- [styles$k.alignStart]: tabAlignment === "start",
37589
- [styles$k.alignEnd]: tabAlignment === "end",
37590
- [styles$k.alignCenter]: tabAlignment === "center",
37591
- [styles$k.alignStretch]: tabAlignment === "stretch"
37611
+ className: classnames(styles$l.tabsList, {
37612
+ [styles$l.alignStart]: tabAlignment === "start",
37613
+ [styles$l.alignEnd]: tabAlignment === "end",
37614
+ [styles$l.alignCenter]: tabAlignment === "center",
37615
+ [styles$l.alignStretch]: tabAlignment === "stretch"
37592
37616
  }),
37593
37617
  role: "tablist",
37594
37618
  children: [
37595
- !distributeEvenly2 && !headerRenderer && tabAlignment === "end" && /* @__PURE__ */ jsx("div", { className: styles$k.filler, "data-orientation": orientation }),
37596
- !distributeEvenly2 && !headerRenderer && tabAlignment === "center" && /* @__PURE__ */ jsx("div", { className: styles$k.filler, "data-orientation": orientation }),
37619
+ !distributeEvenly2 && !headerRenderer && tabAlignment === "end" && /* @__PURE__ */ jsx("div", { className: styles$l.filler, "data-orientation": orientation }),
37620
+ !distributeEvenly2 && !headerRenderer && tabAlignment === "center" && /* @__PURE__ */ jsx("div", { className: styles$l.filler, "data-orientation": orientation }),
37597
37621
  tabItems.map((tab, index) => /* @__PURE__ */ jsx(Trigger, { value: tab.innerId, asChild: true, children: /* @__PURE__ */ jsx(
37598
37622
  "div",
37599
37623
  {
37600
37624
  role: "tab",
37601
37625
  "aria-label": tab.label,
37602
- className: classnames(styles$k.tabTrigger, {
37603
- [styles$k.distributeEvenly]: distributeEvenly2 || tabAlignment === "stretch"
37626
+ className: classnames(styles$l.tabTrigger, {
37627
+ [styles$l.distributeEvenly]: distributeEvenly2 || tabAlignment === "stretch"
37604
37628
  }),
37605
37629
  children: tab.headerRenderer ? tab.headerRenderer({
37606
37630
  ...tab.id !== void 0 && { id: tab.id },
@@ -37615,7 +37639,7 @@ const Tabs = forwardRef(function Tabs2({
37615
37639
  }) : tab.label
37616
37640
  }
37617
37641
  ) }, tab.innerId)),
37618
- !distributeEvenly2 && !headerRenderer && tabAlignment !== "stretch" && (tabAlignment === "start" || tabAlignment === "center") && /* @__PURE__ */ jsx("div", { className: styles$k.filler, "data-orientation": orientation })
37642
+ !distributeEvenly2 && !headerRenderer && tabAlignment !== "stretch" && (tabAlignment === "start" || tabAlignment === "center") && /* @__PURE__ */ jsx("div", { className: styles$l.filler, "data-orientation": orientation })
37619
37643
  ]
37620
37644
  }
37621
37645
  ),
@@ -37674,7 +37698,7 @@ const TabsMd = createMetadata({
37674
37698
  signature: "setActiveTabById(id: string): void"
37675
37699
  }
37676
37700
  },
37677
- themeVars: parseScssVar(styles$k.themeVars),
37701
+ themeVars: parseScssVar(styles$l.themeVars),
37678
37702
  defaultThemeVars: {
37679
37703
  // [`backgroundColor-${COMP}`]: "transparent",
37680
37704
  [`borderStyle-${COMP$w}`]: "solid",
@@ -37720,7 +37744,7 @@ const tabsComponentRenderer = createComponentRenderer(
37720
37744
  }
37721
37745
  );
37722
37746
  const anchorRef = "_anchorRef_1tdkt_2";
37723
- const styles$j = {
37747
+ const styles$k = {
37724
37748
  anchorRef
37725
37749
  };
37726
37750
  const defaultProps$f = {
@@ -37764,7 +37788,7 @@ const Bookmark = ({
37764
37788
  });
37765
37789
  }
37766
37790
  }, [uid, observeIntersection, registerHeading, level, title2, omitFromToc]);
37767
- return /* @__PURE__ */ jsx("span", { ...rest, ref: elementRef, id: uid, "data-anchor": true, className: styles$j.anchorRef, children });
37791
+ return /* @__PURE__ */ jsx("span", { ...rest, ref: elementRef, id: uid, "data-anchor": true, className: styles$k.anchorRef, children });
37768
37792
  };
37769
37793
  const COMP$v = "Bookmark";
37770
37794
  const BookmarkMd = createMetadata({
@@ -37950,7 +37974,7 @@ const head_4 = "_head_4_d9ohe_217";
37950
37974
  const head_5 = "_head_5_d9ohe_249";
37951
37975
  const head_6 = "_head_6_d9ohe_281";
37952
37976
  const active$1 = "_active_d9ohe_358";
37953
- const styles$i = {
37977
+ const styles$j = {
37954
37978
  themeVars: themeVars$8,
37955
37979
  nav,
37956
37980
  list,
@@ -38013,28 +38037,28 @@ const TableOfContents = forwardRef(function TableOfContents2({
38013
38037
  {
38014
38038
  ...rest,
38015
38039
  "aria-label": "Table of Contents",
38016
- className: classnames(styles$i.nav, className),
38040
+ className: classnames(styles$j.nav, className),
38017
38041
  ref,
38018
38042
  style: style2,
38019
- children: /* @__PURE__ */ jsx("ul", { className: styles$i.list, children: headings.map((value) => {
38043
+ children: /* @__PURE__ */ jsx("ul", { className: styles$j.list, children: headings.map((value) => {
38020
38044
  if (value.level <= maxHeadingLevel && (!omitH1 || value.level !== 1)) {
38021
38045
  return /* @__PURE__ */ jsx(
38022
38046
  "li",
38023
38047
  {
38024
- className: classnames(styles$i.listItem, {
38025
- [styles$i.active]: value.id === activeAnchorId
38048
+ className: classnames(styles$j.listItem, {
38049
+ [styles$j.active]: value.id === activeAnchorId
38026
38050
  }),
38027
38051
  children: /* @__PURE__ */ jsx(
38028
38052
  Link,
38029
38053
  {
38030
38054
  "aria-current": value.id === activeAnchorId ? "page" : "false",
38031
- className: classnames(styles$i.link, {
38032
- [styles$i.head_1]: value.level === 1,
38033
- [styles$i.head_2]: value.level === 2,
38034
- [styles$i.head_3]: value.level === 3,
38035
- [styles$i.head_4]: value.level === 4,
38036
- [styles$i.head_5]: value.level === 5,
38037
- [styles$i.head_6]: value.level === 6
38055
+ className: classnames(styles$j.link, {
38056
+ [styles$j.head_1]: value.level === 1,
38057
+ [styles$j.head_2]: value.level === 2,
38058
+ [styles$j.head_3]: value.level === 3,
38059
+ [styles$j.head_4]: value.level === 4,
38060
+ [styles$j.head_5]: value.level === 5,
38061
+ [styles$j.head_6]: value.level === 6
38038
38062
  }),
38039
38063
  to: `#${value.id}`,
38040
38064
  onClick: (event) => {
@@ -38078,7 +38102,7 @@ const TableOfContentsMd = createMetadata({
38078
38102
  defaultValue: false
38079
38103
  }
38080
38104
  },
38081
- themeVars: parseScssVar(styles$i.themeVars),
38105
+ themeVars: parseScssVar(styles$j.themeVars),
38082
38106
  defaultThemeVars: {
38083
38107
  [`padding-${COMP$t}`]: "$space-2",
38084
38108
  [`textColor-${COMP_CHILD}`]: "$color-secondary-500",
@@ -38134,7 +38158,7 @@ const triggerStart = "_triggerStart_sqmta_84";
38134
38158
  const contentWrapper$1 = "_contentWrapper_sqmta_87";
38135
38159
  const content$1 = "_content_sqmta_87";
38136
38160
  const chevron = "_chevron_sqmta_101";
38137
- const styles$h = {
38161
+ const styles$i = {
38138
38162
  themeVars: themeVars$7,
38139
38163
  root,
38140
38164
  item,
@@ -38283,7 +38307,7 @@ const AccordionComponent = forwardRef(function AccordionComponent2({
38283
38307
  ref: forwardedRef,
38284
38308
  value: expandedItems,
38285
38309
  type: "multiple",
38286
- className: classnames(styles$h.root, className),
38310
+ className: classnames(styles$i.root, className),
38287
38311
  onValueChange: (value) => setExpandedItems(value),
38288
38312
  children
38289
38313
  }
@@ -38342,7 +38366,7 @@ const AccordionMd = createMetadata({
38342
38366
  },
38343
38367
  focus: dFocus(COMP$s)
38344
38368
  },
38345
- themeVars: parseScssVar(styles$h.themeVars),
38369
+ themeVars: parseScssVar(styles$i.themeVars),
38346
38370
  defaultThemeVars: {
38347
38371
  [`paddingHorizontal-header-${COMP$s}`]: "$space-3",
38348
38372
  [`paddingVertical-header-${COMP$s}`]: "$space-3",
@@ -38413,7 +38437,7 @@ const TabItemComponent = forwardRef(function TabItemComponent2({ children, label
38413
38437
  ...rest,
38414
38438
  key: innerId,
38415
38439
  value: innerId,
38416
- className: styles$k.tabsContent,
38440
+ className: styles$l.tabsContent,
38417
38441
  ref: forwardedRef,
38418
38442
  style: { ...style2, order: contentOrder }
38419
38443
  },
@@ -38528,17 +38552,17 @@ const AccordionItemComponent = forwardRef(function AccordionItemComponent2({
38528
38552
  {
38529
38553
  id: itemId,
38530
38554
  value: itemId,
38531
- className: classnames(styles$h.item, className),
38555
+ className: classnames(styles$i.item, className),
38532
38556
  ref: forwardedRef,
38533
38557
  style: style2,
38534
38558
  children: [
38535
- /* @__PURE__ */ jsx(RAccordion.Header, { className: styles$h.header, children: /* @__PURE__ */ jsxs(
38559
+ /* @__PURE__ */ jsx(RAccordion.Header, { className: styles$i.header, children: /* @__PURE__ */ jsxs(
38536
38560
  RAccordion.Trigger,
38537
38561
  {
38538
38562
  ...rest,
38539
38563
  id: triggerId,
38540
- className: classnames(styles$h.trigger, {
38541
- [styles$h.triggerStart]: triggerPosition === "start"
38564
+ className: classnames(styles$i.trigger, {
38565
+ [styles$i.triggerStart]: triggerPosition === "start"
38542
38566
  }),
38543
38567
  children: [
38544
38568
  headerRenderer(header2),
@@ -38553,7 +38577,7 @@ const AccordionItemComponent = forwardRef(function AccordionItemComponent2({
38553
38577
  Icon,
38554
38578
  {
38555
38579
  name: !expanded2 ? collapsedIcon : expandedIcon || collapsedIcon,
38556
- className: styles$h.chevron,
38580
+ className: styles$i.chevron,
38557
38581
  "aria-hidden": "true"
38558
38582
  }
38559
38583
  )
@@ -38562,7 +38586,7 @@ const AccordionItemComponent = forwardRef(function AccordionItemComponent2({
38562
38586
  ]
38563
38587
  }
38564
38588
  ) }),
38565
- /* @__PURE__ */ jsx(RAccordion.Content, { className: styles$h.contentWrapper, children: /* @__PURE__ */ jsx("div", { className: styles$h.content, children: content2 }) })
38589
+ /* @__PURE__ */ jsx(RAccordion.Content, { className: styles$i.contentWrapper, children: /* @__PURE__ */ jsx("div", { className: styles$i.content, children: content2 }) })
38566
38590
  ]
38567
38591
  },
38568
38592
  itemId
@@ -38771,7 +38795,7 @@ const controlButton = "_controlButton_oya2d_55";
38771
38795
  const indicators = "_indicators_oya2d_78";
38772
38796
  const indicator$1 = "_indicator_oya2d_78";
38773
38797
  const active = "_active_oya2d_97";
38774
- const styles$g = {
38798
+ const styles$h = {
38775
38799
  themeVars: themeVars$6,
38776
38800
  carousel,
38777
38801
  innerWrapper,
@@ -38987,26 +39011,26 @@ const CarouselComponent = forwardRef(function CarouselComponent2({
38987
39011
  ...rest,
38988
39012
  style: style2,
38989
39013
  ref,
38990
- className: classnames(styles$g.carousel, className),
39014
+ className: classnames(styles$h.carousel, className),
38991
39015
  role: "region",
38992
39016
  tabIndex: -1,
38993
39017
  "aria-roledescription": "carousel",
38994
39018
  children: [
38995
- /* @__PURE__ */ jsx("div", { ref: carouselRef, className: styles$g.carouselContentWrapper, children: /* @__PURE__ */ jsx(
39019
+ /* @__PURE__ */ jsx("div", { ref: carouselRef, className: styles$h.carouselContentWrapper, children: /* @__PURE__ */ jsx(
38996
39020
  "div",
38997
39021
  {
38998
- className: classnames(styles$g.carouselContent, {
38999
- [styles$g.horizontal]: orientation === "horizontal",
39000
- [styles$g.vertical]: orientation === "vertical"
39022
+ className: classnames(styles$h.carouselContent, {
39023
+ [styles$h.horizontal]: orientation === "horizontal",
39024
+ [styles$h.vertical]: orientation === "vertical"
39001
39025
  }),
39002
39026
  children
39003
39027
  }
39004
39028
  ) }),
39005
- controls2 && /* @__PURE__ */ jsxs("div", { className: styles$g.controls, children: [
39029
+ controls2 && /* @__PURE__ */ jsxs("div", { className: styles$h.controls, children: [
39006
39030
  autoplay && /* @__PURE__ */ jsx(
39007
39031
  "button",
39008
39032
  {
39009
- className: styles$g.controlButton,
39033
+ className: styles$h.controlButton,
39010
39034
  onClick: toggleAutoplay,
39011
39035
  "aria-label": isPlaying ? "Pause Autoplay" : "Start Autoplay",
39012
39036
  children: isPlaying ? /* @__PURE__ */ jsx(Icon, { name: "pause" }) : /* @__PURE__ */ jsx(Icon, { name: "play" })
@@ -39015,7 +39039,7 @@ const CarouselComponent = forwardRef(function CarouselComponent2({
39015
39039
  /* @__PURE__ */ jsx(
39016
39040
  "button",
39017
39041
  {
39018
- className: styles$g.controlButton,
39042
+ className: styles$h.controlButton,
39019
39043
  disabled: !canScrollPrev,
39020
39044
  onClick: scrollPrev,
39021
39045
  "aria-label": "Previous Slide",
@@ -39025,7 +39049,7 @@ const CarouselComponent = forwardRef(function CarouselComponent2({
39025
39049
  /* @__PURE__ */ jsx(
39026
39050
  "button",
39027
39051
  {
39028
- className: styles$g.controlButton,
39052
+ className: styles$h.controlButton,
39029
39053
  onClick: scrollNext,
39030
39054
  disabled: !canScrollNext,
39031
39055
  "aria-label": "Next Slide",
@@ -39033,7 +39057,7 @@ const CarouselComponent = forwardRef(function CarouselComponent2({
39033
39057
  }
39034
39058
  )
39035
39059
  ] }),
39036
- indicators2 && /* @__PURE__ */ jsx("div", { className: styles$g.indicators, role: "tablist", "aria-label": "Select slide", children: carouselItems.map((_, index) => /* @__PURE__ */ jsx(
39060
+ indicators2 && /* @__PURE__ */ jsx("div", { className: styles$h.indicators, role: "tablist", "aria-label": "Select slide", children: carouselItems.map((_, index) => /* @__PURE__ */ jsx(
39037
39061
  "button",
39038
39062
  {
39039
39063
  type: "button",
@@ -39042,8 +39066,8 @@ const CarouselComponent = forwardRef(function CarouselComponent2({
39042
39066
  "aria-controls": "carousel",
39043
39067
  tabIndex: index === activeSlide ? 0 : -1,
39044
39068
  onClick: () => scrollTo(index),
39045
- className: classnames(styles$g.indicator, {
39046
- [styles$g.active]: index === activeSlide
39069
+ className: classnames(styles$h.indicator, {
39070
+ [styles$h.active]: index === activeSlide
39047
39071
  }),
39048
39072
  "aria-current": index === activeSlide
39049
39073
  },
@@ -39141,7 +39165,7 @@ const CarouselMd = createMetadata({
39141
39165
  description: "This method scrolls the carousel to the next slide."
39142
39166
  }
39143
39167
  },
39144
- themeVars: parseScssVar(styles$g.themeVars),
39168
+ themeVars: parseScssVar(styles$h.themeVars),
39145
39169
  defaultThemeVars: {
39146
39170
  [`backgroundColor-control-${COMP$o}`]: "$color-primary",
39147
39171
  [`textColor-control-${COMP$o}`]: "$textColor",
@@ -39213,9 +39237,9 @@ const CarouselItemComponent = forwardRef(function CarouselItemComponent2({ child
39213
39237
  ...rest,
39214
39238
  key: id,
39215
39239
  ...itemProps,
39216
- className: classnames(styles$g.carouselItem)
39240
+ className: classnames(styles$h.carouselItem)
39217
39241
  },
39218
- /* @__PURE__ */ jsx("div", { className: styles$g.innerWrapper, ref: forwardedRef, style: style2, children })
39242
+ /* @__PURE__ */ jsx("div", { className: styles$h.innerWrapper, ref: forwardedRef, style: style2, children })
39219
39243
  );
39220
39244
  });
39221
39245
  const COMP$n = "CarouselItem";
@@ -39231,11 +39255,11 @@ const carouselItemComponentRenderer = createComponentRenderer(
39231
39255
  }
39232
39256
  );
39233
39257
  const breakout = "_breakout_puy20_2";
39234
- const styles$f = {
39258
+ const styles$g = {
39235
39259
  breakout
39236
39260
  };
39237
39261
  const Breakout = ({ children, style: style2, ...rest }) => {
39238
- return /* @__PURE__ */ jsx("div", { ...rest, style: style2, className: styles$f.breakout, children });
39262
+ return /* @__PURE__ */ jsx("div", { ...rest, style: style2, className: styles$g.breakout, children });
39239
39263
  };
39240
39264
  const COMP$m = "Breakout";
39241
39265
  const BreakoutMd = createMetadata({
@@ -39320,7 +39344,7 @@ const iconThumb = "_iconThumb_1s8aa_30";
39320
39344
  const light = "_light_1s8aa_42";
39321
39345
  const dark = "_dark_1s8aa_45";
39322
39346
  const icon$1 = "_icon_1s8aa_14";
39323
- const styles$e = {
39347
+ const styles$f = {
39324
39348
  themeVars: themeVars$5,
39325
39349
  iconSwitch,
39326
39350
  iconThumb,
@@ -39360,11 +39384,11 @@ const ToneSwitch = forwardRef(function ToneSwitch2({
39360
39384
  return /* @__PURE__ */ jsx(
39361
39385
  "div",
39362
39386
  {
39363
- className: classnames(styles$e.iconSwitch, {
39364
- [styles$e.light]: !contextVars.$checked,
39365
- [styles$e.dark]: contextVars.$checked
39387
+ className: classnames(styles$f.iconSwitch, {
39388
+ [styles$f.light]: !contextVars.$checked,
39389
+ [styles$f.dark]: contextVars.$checked
39366
39390
  }),
39367
- children: /* @__PURE__ */ jsx("div", { className: styles$e.iconThumb, children: !contextVars.$checked ? /* @__PURE__ */ jsx(Icon, { name: iconLight, fallback: "sun", className: styles$e.icon }) : /* @__PURE__ */ jsx(Icon, { name: iconDark, fallback: "moon", className: styles$e.icon }) })
39391
+ children: /* @__PURE__ */ jsx("div", { className: styles$f.iconThumb, children: !contextVars.$checked ? /* @__PURE__ */ jsx(Icon, { name: iconLight, fallback: "sun", className: styles$f.icon }) : /* @__PURE__ */ jsx(Icon, { name: iconDark, fallback: "moon", className: styles$f.icon }) })
39368
39392
  }
39369
39393
  );
39370
39394
  }
@@ -39389,7 +39413,7 @@ const ToneSwitchMd = createMetadata({
39389
39413
  defaultValue: "moon"
39390
39414
  }
39391
39415
  },
39392
- themeVars: parseScssVar(styles$e.themeVars),
39416
+ themeVars: parseScssVar(styles$f.themeVars),
39393
39417
  limitThemeVarsToComponent: true,
39394
39418
  defaultThemeVars: {
39395
39419
  [`backgroundColor-${COMP$k}-light`]: "$color-surface-200",
@@ -39780,7 +39804,7 @@ const themeVars$4 = `'{"backgroundColor-Backdrop": "var(--xmlui-backgroundColor-
39780
39804
  const backdropContainer = "_backdropContainer_9dbo0_14";
39781
39805
  const backdrop = "_backdrop_9dbo0_14";
39782
39806
  const overlay$1 = "_overlay_9dbo0_28";
39783
- const styles$d = {
39807
+ const styles$e = {
39784
39808
  themeVars: themeVars$4,
39785
39809
  backdropContainer,
39786
39810
  backdrop,
@@ -39799,13 +39823,13 @@ const Backdrop = forwardRef(function Backdrop2({
39799
39823
  "div",
39800
39824
  {
39801
39825
  ...rest,
39802
- className: classnames(styles$d.backdropContainer, className),
39826
+ className: classnames(styles$e.backdropContainer, className),
39803
39827
  ref: forwardedRef,
39804
39828
  style: style2,
39805
39829
  children: [
39806
39830
  children,
39807
- /* @__PURE__ */ jsx("div", { className: styles$d.backdrop, style: { backgroundColor, opacity } }),
39808
- overlayTemplate && /* @__PURE__ */ jsx("div", { className: styles$d.overlay, children: overlayTemplate })
39831
+ /* @__PURE__ */ jsx("div", { className: styles$e.backdrop, style: { backgroundColor, opacity } }),
39832
+ overlayTemplate && /* @__PURE__ */ jsx("div", { className: styles$e.overlay, children: overlayTemplate })
39809
39833
  ]
39810
39834
  }
39811
39835
  );
@@ -39827,7 +39851,7 @@ const BackdropMd = createMetadata({
39827
39851
  valueType: "string"
39828
39852
  }
39829
39853
  },
39830
- themeVars: parseScssVar(styles$d.themeVars),
39854
+ themeVars: parseScssVar(styles$e.themeVars),
39831
39855
  defaultThemeVars: {
39832
39856
  [`backgroundColor-${COMP$g}`]: "black",
39833
39857
  [`opacity-${COMP$g}`]: "0.1"
@@ -39849,6 +39873,50 @@ const backdropComponentRenderer = createComponentRenderer(
39849
39873
  );
39850
39874
  }
39851
39875
  );
39876
+ const themeVarsTable = `'{"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)))"}'`;
39877
+ const themeVarsThead = `'{"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)))"}'`;
39878
+ const themeVarsTbody = `'{"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)"}'`;
39879
+ const themeVarsTfoot = `'{"backgroundColor-HtmlTfoot": "var(--xmlui-backgroundColor-HtmlTfoot)", "textColor-HtmlTfoot": "var(--xmlui-textColor-HtmlTfoot)"}'`;
39880
+ const themeVarsTh = `'{"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)))"}'`;
39881
+ const themeVarsTr = `'{"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))"}'`;
39882
+ const themeVarsTd = `'{"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)))"}'`;
39883
+ const themeVarsList = `'{"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)"}'`;
39884
+ const themeVarsHeading = `'{"marginTop-HtmlHeading": "var(--xmlui-marginTop-HtmlHeading)", "marginBottom-HtmlHeading": "var(--xmlui-marginBottom-HtmlHeading)"}'`;
39885
+ const themeVarsVideo = `'{"marginTop-HtmlVideo": "var(--xmlui-marginTop-HtmlVideo)", "marginBottom-HtmlVideo": "var(--xmlui-marginBottom-HtmlVideo)"}'`;
39886
+ const themeVarsDetails = `'{"marginTop-HtmlDetails": "var(--xmlui-marginTop-HtmlDetails)", "marginBottom-HtmlDetails": "var(--xmlui-marginBottom-HtmlDetails)"}'`;
39887
+ const htmlTable = "_htmlTable_1c76w_14";
39888
+ const htmlThead = "_htmlThead_1c76w_52";
39889
+ const htmlTbody = "_htmlTbody_1c76w_86";
39890
+ const htmlTfoot = "_htmlTfoot_1c76w_95";
39891
+ const htmlTh = "_htmlTh_1c76w_52";
39892
+ const htmlTr = "_htmlTr_1c76w_137";
39893
+ const htmlTd = "_htmlTd_1c76w_175";
39894
+ const htmlUl = "_htmlUl_1c76w_209";
39895
+ const htmlOl = "_htmlOl_1c76w_238";
39896
+ const htmlDetails = "_htmlDetails_1c76w_325";
39897
+ const styles$d = {
39898
+ themeVarsTable,
39899
+ themeVarsThead,
39900
+ themeVarsTbody,
39901
+ themeVarsTfoot,
39902
+ themeVarsTh,
39903
+ themeVarsTr,
39904
+ themeVarsTd,
39905
+ themeVarsList,
39906
+ themeVarsHeading,
39907
+ themeVarsVideo,
39908
+ themeVarsDetails,
39909
+ htmlTable,
39910
+ htmlThead,
39911
+ htmlTbody,
39912
+ htmlTfoot,
39913
+ htmlTh,
39914
+ htmlTr,
39915
+ htmlTd,
39916
+ htmlUl,
39917
+ htmlOl,
39918
+ htmlDetails
39919
+ };
39852
39920
  const HtmlAMd = createMetadata({
39853
39921
  status: "deprecated",
39854
39922
  description: "This component renders an HTML `a` tag.",
@@ -40290,7 +40358,7 @@ const HtmlDetailsMd = createMetadata({
40290
40358
  props: {
40291
40359
  open: d("Specifies that the details are visible (open)")
40292
40360
  },
40293
- themeVars: parseScssVar(styles$A.themeVarsDetails),
40361
+ themeVars: parseScssVar(styles$d.themeVarsDetails),
40294
40362
  defaultThemeVars: {
40295
40363
  "marginTop-HtmlDetails": "1rem",
40296
40364
  "marginBottom-HtmlDetails": "1rem"
@@ -40303,7 +40371,7 @@ const htmlDetailsTagRenderer = createComponentRenderer(
40303
40371
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40304
40372
  const { open } = p.asOptionalBoolean("open");
40305
40373
  const props = p.asRest();
40306
- return /* @__PURE__ */ jsx("details", { className: classnames(styles$A.htmlDetails, className), open: open ?? false, ...props, children: renderChild2(node.children) });
40374
+ return /* @__PURE__ */ jsx("details", { className: classnames(styles$d.htmlDetails, className), open: open ?? false, ...props, children: renderChild2(node.children) });
40307
40375
  }
40308
40376
  );
40309
40377
  const HtmlDfnMd = createMetadata({
@@ -40508,7 +40576,7 @@ const HtmlH1Md = createMetadata({
40508
40576
  status: "deprecated",
40509
40577
  description: "This component renders an HTML `h1` tag.",
40510
40578
  isHtmlTag: true,
40511
- themeVars: parseScssVar(styles$A.themeVarsHeading),
40579
+ themeVars: parseScssVar(styles$d.themeVarsHeading),
40512
40580
  defaultThemeVars: {
40513
40581
  "marginTop-HtmlHeading": "1rem",
40514
40582
  "marginBottom-HtmlHeading": ".5rem"
@@ -40520,14 +40588,14 @@ const htmlH1TagRenderer = createComponentRenderer(
40520
40588
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40521
40589
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40522
40590
  const props = p.asRest();
40523
- return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$A.htmlHeading), ...props, level: "h1", children: renderChild2(node.children) });
40591
+ return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$d.htmlHeading), ...props, level: "h1", children: renderChild2(node.children) });
40524
40592
  }
40525
40593
  );
40526
40594
  const HtmlH2Md = createMetadata({
40527
40595
  status: "deprecated",
40528
40596
  description: "This component renders an HTML `h2` tag.",
40529
40597
  isHtmlTag: true,
40530
- themeVars: parseScssVar(styles$A.themeVarsHeading),
40598
+ themeVars: parseScssVar(styles$d.themeVarsHeading),
40531
40599
  defaultThemeVars: {
40532
40600
  "marginTop-HtmlHeading": "1rem",
40533
40601
  "marginBottom-HtmlHeading": ".5rem"
@@ -40539,14 +40607,14 @@ const htmlH2TagRenderer = createComponentRenderer(
40539
40607
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40540
40608
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40541
40609
  const props = p.asRest();
40542
- return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$A.htmlHeading), ...props, level: "h2", children: renderChild2(node.children) });
40610
+ return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$d.htmlHeading), ...props, level: "h2", children: renderChild2(node.children) });
40543
40611
  }
40544
40612
  );
40545
40613
  const HtmlH3Md = createMetadata({
40546
40614
  status: "deprecated",
40547
40615
  description: "This component renders an HTML `h3` tag.",
40548
40616
  isHtmlTag: true,
40549
- themeVars: parseScssVar(styles$A.themeVarsHeading),
40617
+ themeVars: parseScssVar(styles$d.themeVarsHeading),
40550
40618
  defaultThemeVars: {
40551
40619
  "marginTop-HtmlHeading": "1rem",
40552
40620
  "marginBottom-HtmlHeading": ".5rem"
@@ -40558,14 +40626,14 @@ const htmlH3TagRenderer = createComponentRenderer(
40558
40626
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40559
40627
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40560
40628
  const props = p.asRest();
40561
- return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$A.htmlHeading), ...props, level: "h3", children: renderChild2(node.children) });
40629
+ return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$d.htmlHeading), ...props, level: "h3", children: renderChild2(node.children) });
40562
40630
  }
40563
40631
  );
40564
40632
  const HtmlH4Md = createMetadata({
40565
40633
  status: "deprecated",
40566
40634
  description: "This component renders an HTML `h4` tag.",
40567
40635
  isHtmlTag: true,
40568
- themeVars: parseScssVar(styles$A.themeVarsHeading),
40636
+ themeVars: parseScssVar(styles$d.themeVarsHeading),
40569
40637
  defaultThemeVars: {
40570
40638
  "marginTop-HtmlHeading": "1rem",
40571
40639
  "marginBottom-HtmlHeading": ".5rem"
@@ -40577,14 +40645,14 @@ const htmlH4TagRenderer = createComponentRenderer(
40577
40645
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40578
40646
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40579
40647
  const props = p.asRest();
40580
- return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$A.htmlHeading), ...props, level: "h4", children: renderChild2(node.children) });
40648
+ return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$d.htmlHeading), ...props, level: "h4", children: renderChild2(node.children) });
40581
40649
  }
40582
40650
  );
40583
40651
  const HtmlH5Md = createMetadata({
40584
40652
  status: "deprecated",
40585
40653
  description: "This component renders an HTML `h5` tag.",
40586
40654
  isHtmlTag: true,
40587
- themeVars: parseScssVar(styles$A.themeVarsHeading),
40655
+ themeVars: parseScssVar(styles$d.themeVarsHeading),
40588
40656
  defaultThemeVars: {
40589
40657
  "marginTop-HtmlHeading": "1rem",
40590
40658
  "marginBottom-HtmlHeading": ".5rem"
@@ -40596,14 +40664,14 @@ const htmlH5TagRenderer = createComponentRenderer(
40596
40664
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40597
40665
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40598
40666
  const props = p.asRest();
40599
- return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$A.htmlHeading), ...props, level: "h5", children: renderChild2(node.children) });
40667
+ return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$d.htmlHeading), ...props, level: "h5", children: renderChild2(node.children) });
40600
40668
  }
40601
40669
  );
40602
40670
  const HtmlH6Md = createMetadata({
40603
40671
  status: "deprecated",
40604
40672
  description: "This component renders an HTML `h6` tag.",
40605
40673
  isHtmlTag: true,
40606
- themeVars: parseScssVar(styles$A.themeVarsHeading),
40674
+ themeVars: parseScssVar(styles$d.themeVarsHeading),
40607
40675
  defaultThemeVars: {
40608
40676
  "marginTop-HtmlHeading": "1rem",
40609
40677
  "marginBottom-HtmlHeading": ".5rem"
@@ -40615,7 +40683,7 @@ const htmlH6TagRenderer = createComponentRenderer(
40615
40683
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40616
40684
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40617
40685
  const props = p.asRest();
40618
- return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$A.htmlHeading), ...props, level: "h6", children: renderChild2(node.children) });
40686
+ return /* @__PURE__ */ jsx(Heading, { className: classnames(className, styles$d.htmlHeading), ...props, level: "h6", children: renderChild2(node.children) });
40619
40687
  }
40620
40688
  );
40621
40689
  const HtmlHeaderMd = createMetadata({
@@ -40982,7 +41050,7 @@ const HtmlOlMd = createMetadata({
40982
41050
  status: "deprecated",
40983
41051
  description: "This component renders an HTML `ol` tag.",
40984
41052
  isHtmlTag: true,
40985
- themeVars: parseScssVar(styles$A.themeVarsList),
41053
+ themeVars: parseScssVar(styles$d.themeVarsList),
40986
41054
  // Use only themeVarsList
40987
41055
  defaultThemeVars: {
40988
41056
  "marginTop-HtmlOl": "$space-5",
@@ -40996,7 +41064,7 @@ const htmlOlTagRenderer = createComponentRenderer(
40996
41064
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
40997
41065
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
40998
41066
  const props = p.asRest();
40999
- return /* @__PURE__ */ jsx("ol", { className: classnames(styles$A.htmlOl, className), ...props, children: renderChild2(node.children) });
41067
+ return /* @__PURE__ */ jsx("ol", { className: classnames(styles$d.htmlOl, className), ...props, children: renderChild2(node.children) });
41000
41068
  }
41001
41069
  );
41002
41070
  const HtmlOptgroupMd = createMetadata({
@@ -41409,7 +41477,7 @@ const HtmlTableMd = createMetadata({
41409
41477
  frame: d("Specifies which parts of the table frame to render"),
41410
41478
  rules: d("Specifies which rules to draw between cells")
41411
41479
  },
41412
- themeVars: parseScssVar(styles$A.themeVarsTable),
41480
+ themeVars: parseScssVar(styles$d.themeVarsTable),
41413
41481
  defaultThemeVars: {
41414
41482
  "backgroundColor-HtmlTable": "$backgroundColor",
41415
41483
  "border-HtmlTable": "1px solid $borderColor",
@@ -41423,14 +41491,14 @@ const htmlTableTagRenderer = createComponentRenderer(
41423
41491
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41424
41492
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41425
41493
  const props = p.asRest();
41426
- return /* @__PURE__ */ jsx("table", { className: classnames(styles$A.htmlTable, className), ...props, children: renderChild2(node.children) });
41494
+ return /* @__PURE__ */ jsx("table", { className: classnames(styles$d.htmlTable, className), ...props, children: renderChild2(node.children) });
41427
41495
  }
41428
41496
  );
41429
41497
  const HtmlTbodyMd = createMetadata({
41430
41498
  status: "deprecated",
41431
41499
  description: "This component renders an HTML `tbody` tag.",
41432
41500
  isHtmlTag: true,
41433
- themeVars: parseScssVar(styles$A.themeVarsTbody)
41501
+ themeVars: parseScssVar(styles$d.themeVarsTbody)
41434
41502
  });
41435
41503
  const htmlTbodyTagRenderer = createComponentRenderer(
41436
41504
  "tbody",
@@ -41438,7 +41506,7 @@ const htmlTbodyTagRenderer = createComponentRenderer(
41438
41506
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41439
41507
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41440
41508
  const props = p.asRest();
41441
- return /* @__PURE__ */ jsx("tbody", { className: classnames(styles$A.htmlTbody, className), ...props, children: renderChild2(node.children) });
41509
+ return /* @__PURE__ */ jsx("tbody", { className: classnames(styles$d.htmlTbody, className), ...props, children: renderChild2(node.children) });
41442
41510
  }
41443
41511
  );
41444
41512
  const HtmlTdMd = createMetadata({
@@ -41456,7 +41524,7 @@ const HtmlTdMd = createMetadata({
41456
41524
  height: d("Specifies the height of the cell"),
41457
41525
  width: d("Specifies the width of the cell")
41458
41526
  },
41459
- themeVars: parseScssVar(styles$A.themeVarsTd),
41527
+ themeVars: parseScssVar(styles$d.themeVarsTd),
41460
41528
  defaultThemeVars: {
41461
41529
  "padding-HtmlTd": "$space-2",
41462
41530
  "borderBottom-HtmlTd": "1px solid $borderColor"
@@ -41468,7 +41536,7 @@ const htmlTdTagRenderer = createComponentRenderer(
41468
41536
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41469
41537
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41470
41538
  const props = p.asRest();
41471
- return /* @__PURE__ */ jsx("td", { className: classnames(styles$A.htmlTd, className), ...props, children: renderChild2(node.children) });
41539
+ return /* @__PURE__ */ jsx("td", { className: classnames(styles$d.htmlTd, className), ...props, children: renderChild2(node.children) });
41472
41540
  }
41473
41541
  );
41474
41542
  const HtmlTemplateMd = createMetadata({
@@ -41538,7 +41606,7 @@ const HtmlTfootMd = createMetadata({
41538
41606
  status: "deprecated",
41539
41607
  description: "This component renders an HTML `tfoot` tag.",
41540
41608
  isHtmlTag: true,
41541
- themeVars: parseScssVar(styles$A.themeVarsTfoot)
41609
+ themeVars: parseScssVar(styles$d.themeVarsTfoot)
41542
41610
  });
41543
41611
  const htmlTfootTagRenderer = createComponentRenderer(
41544
41612
  "tfoot",
@@ -41546,7 +41614,7 @@ const htmlTfootTagRenderer = createComponentRenderer(
41546
41614
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41547
41615
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41548
41616
  const props = p.asRest();
41549
- return /* @__PURE__ */ jsx("tfoot", { className: classnames(styles$A.htmlTfoot, className), ...props, children: renderChild2(node.children) });
41617
+ return /* @__PURE__ */ jsx("tfoot", { className: classnames(styles$d.htmlTfoot, className), ...props, children: renderChild2(node.children) });
41550
41618
  }
41551
41619
  );
41552
41620
  const HtmlThMd = createMetadata({
@@ -41563,7 +41631,7 @@ const HtmlThMd = createMetadata({
41563
41631
  "Specifies whether a header cell is a header for a column, row, or group of columns or rows"
41564
41632
  )
41565
41633
  },
41566
- themeVars: parseScssVar(styles$A.themeVarsTh),
41634
+ themeVars: parseScssVar(styles$d.themeVarsTh),
41567
41635
  defaultThemeVars: {
41568
41636
  "padding-HtmlTh": "$space-2",
41569
41637
  "fontSize-HtmlTh": "$fontSize-tiny",
@@ -41577,14 +41645,14 @@ const htmlThTagRenderer = createComponentRenderer(
41577
41645
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41578
41646
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41579
41647
  const props = p.asRest();
41580
- return /* @__PURE__ */ jsx("th", { className: classnames(styles$A.htmlTh, className), ...props, children: renderChild2(node.children) });
41648
+ return /* @__PURE__ */ jsx("th", { className: classnames(styles$d.htmlTh, className), ...props, children: renderChild2(node.children) });
41581
41649
  }
41582
41650
  );
41583
41651
  const HtmlTheadMd = createMetadata({
41584
41652
  status: "deprecated",
41585
41653
  description: "This component renders an HTML `thead` tag.",
41586
41654
  isHtmlTag: true,
41587
- themeVars: parseScssVar(styles$A.themeVarsThead),
41655
+ themeVars: parseScssVar(styles$d.themeVarsThead),
41588
41656
  defaultThemeVars: {
41589
41657
  "textTransform-HtmlThead": "uppercase",
41590
41658
  "backgroundColor-HtmlThead": "$color-surface-100",
@@ -41597,7 +41665,7 @@ const htmlTheadTagRenderer = createComponentRenderer(
41597
41665
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41598
41666
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41599
41667
  const props = p.asRest();
41600
- return /* @__PURE__ */ jsx("thead", { className: classnames(styles$A.htmlThead, className), ...props, children: renderChild2(node.children) });
41668
+ return /* @__PURE__ */ jsx("thead", { className: classnames(styles$d.htmlThead, className), ...props, children: renderChild2(node.children) });
41601
41669
  }
41602
41670
  );
41603
41671
  const HtmlTimeMd = createMetadata({
@@ -41621,7 +41689,7 @@ const HtmlTrMd = createMetadata({
41621
41689
  status: "deprecated",
41622
41690
  description: "This component renders an HTML `tr` tag.",
41623
41691
  isHtmlTag: true,
41624
- themeVars: parseScssVar(styles$A.themeVarsTr),
41692
+ themeVars: parseScssVar(styles$d.themeVarsTr),
41625
41693
  defaultThemeVars: {
41626
41694
  "fontSize-HtmlTr": "$fontSize-sm",
41627
41695
  "backgroundColor-row-HtmlTr": "inherit"
@@ -41634,7 +41702,7 @@ const htmlTrTagRenderer = createComponentRenderer(
41634
41702
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41635
41703
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41636
41704
  const props = p.asRest();
41637
- return /* @__PURE__ */ jsx("tr", { className: classnames(styles$A.htmlTr, className), ...props, children: renderChild2(node.children) });
41705
+ return /* @__PURE__ */ jsx("tr", { className: classnames(styles$d.htmlTr, className), ...props, children: renderChild2(node.children) });
41638
41706
  }
41639
41707
  );
41640
41708
  const HtmlTrackMd = createMetadata({
@@ -41678,7 +41746,7 @@ const HtmlUlMd = createMetadata({
41678
41746
  status: "deprecated",
41679
41747
  description: "This component renders an HTML `ul` tag.",
41680
41748
  isHtmlTag: true,
41681
- themeVars: parseScssVar(styles$A.themeVarsList),
41749
+ themeVars: parseScssVar(styles$d.themeVarsList),
41682
41750
  // Use only themeVarsList
41683
41751
  defaultThemeVars: {
41684
41752
  "marginTop-HtmlUl": "$space-5",
@@ -41692,7 +41760,7 @@ const htmlUlTagRenderer = createComponentRenderer(
41692
41760
  ({ node, renderChild: renderChild2, extractValue, extractResourceUrl, className }) => {
41693
41761
  const p = new PropsTrasform(extractValue, extractResourceUrl, node.props);
41694
41762
  const props = p.asRest();
41695
- return /* @__PURE__ */ jsx("ul", { className: classnames(styles$A.htmlUl, className), ...props, children: renderChild2(node.children) });
41763
+ return /* @__PURE__ */ jsx("ul", { className: classnames(styles$d.htmlUl, className), ...props, children: renderChild2(node.children) });
41696
41764
  }
41697
41765
  );
41698
41766
  const HtmlVarMd = createMetadata({
@@ -41726,7 +41794,7 @@ const HtmlVideoMd = createMetadata({
41726
41794
  src: d("Specifies the URL of the video file"),
41727
41795
  width: d("Specifies the width of the video player")
41728
41796
  },
41729
- themeVars: parseScssVar(styles$A.themeVarsVideo),
41797
+ themeVars: parseScssVar(styles$d.themeVarsVideo),
41730
41798
  defaultThemeVars: {
41731
41799
  "marginTop-HtmlVideo": "1rem",
41732
41800
  "marginBottom-HtmlVideo": "1rem"
@@ -41808,7 +41876,7 @@ const ColorPickerMd = createMetadata({
41808
41876
  }
41809
41877
  }
41810
41878
  },
41811
- themeVars: parseScssVar(styles$t.themeVars)
41879
+ themeVars: parseScssVar(styles$u.themeVars)
41812
41880
  });
41813
41881
  const colorPickerComponentRenderer = createComponentRenderer(
41814
41882
  "ColorPicker",
@@ -42203,7 +42271,7 @@ const NestedAppMd = createMetadata({
42203
42271
  description: "The height of the nested app. If not set, the height is determined automatically."
42204
42272
  }
42205
42273
  },
42206
- themeVars: parseScssVar(styles$w.themeVars),
42274
+ themeVars: parseScssVar(styles$x.themeVars),
42207
42275
  defaultThemeVars: {
42208
42276
  [`marginTop-${COMP$d}`]: "$space-3",
42209
42277
  [`marginBottom-${COMP$d}`]: "$space-3",
@@ -42361,7 +42429,7 @@ const CodeBlockMd = createMetadata({
42361
42429
  status: "stable",
42362
42430
  description: `The \`${COMP$b}\` component displays code with optional syntax highlighting and meta information.`,
42363
42431
  props: {},
42364
- themeVars: parseScssVar(styles$z.themeVars),
42432
+ themeVars: parseScssVar(styles$A.themeVars),
42365
42433
  defaultThemeVars: {
42366
42434
  "backgroundColor-CodeBlock": "$color-primary-50",
42367
42435
  "backgroundColor-CodeBlock-header": "$color-primary-100",
@@ -44756,6 +44824,9 @@ class ComponentRegistry {
44756
44824
  if (process.env.VITE_USED_COMPONENTS_Fragment !== "false") {
44757
44825
  this.registerCoreComponent(fragmentComponentRenderer);
44758
44826
  }
44827
+ if (process.env.VITE_USED_COMPONENTS_Choose !== "false") {
44828
+ this.registerCoreComponent(chooseComponentRenderer);
44829
+ }
44759
44830
  if (process.env.VITE_USED_COMPONENTS_Table !== "false") {
44760
44831
  this.registerCoreComponent(tableComponentRenderer);
44761
44832
  this.registerCoreComponent(columnComponentRenderer);
@@ -45298,8 +45369,8 @@ function DebugViewProvider({ children, debugConfig }) {
45298
45369
  function useDebugView() {
45299
45370
  return useContext(DebugViewContext);
45300
45371
  }
45301
- const dialogContent = "_dialogContent_127oz_14";
45302
- const dialogActions = "_dialogActions_127oz_18";
45372
+ const dialogContent = "_dialogContent_9fnru_14";
45373
+ const dialogActions = "_dialogActions_9fnru_20";
45303
45374
  const styles$4 = {
45304
45375
  dialogContent,
45305
45376
  dialogActions
@@ -46126,7 +46197,7 @@ function IconProvider({ children }) {
46126
46197
  /* @__PURE__ */ jsx("svg", { style: { display: "none" }, ref: spriteRootRef })
46127
46198
  ] });
46128
46199
  }
46129
- const version = "0.11.6";
46200
+ const version = "0.11.7";
46130
46201
  const miscellaneousUtils = {
46131
46202
  capitalize,
46132
46203
  pluralize: pluralize$1,
@@ -50590,7 +50661,7 @@ const ComponentViewer = () => {
50590
50661
  trigger: /* @__PURE__ */ jsx(
50591
50662
  "button",
50592
50663
  {
50593
- className: styles$w.headerButton,
50664
+ className: styles$x.headerButton,
50594
50665
  onClick: () => {
50595
50666
  setIsOpen(false);
50596
50667
  },
@@ -51226,6 +51297,7 @@ const collectedComponentMetadata = {
51226
51297
  Carousel: CarouselMd,
51227
51298
  ChangeListener: ChangeListenerMd,
51228
51299
  Checkbox: CheckboxMd,
51300
+ Choose: ChooseMd,
51229
51301
  CODE: HtmlCodeMd,
51230
51302
  ColorPicker: ColorPickerMd,
51231
51303
  Column: ColumnMd,