xmlui 0.9.2 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,9 +20,6 @@ import { Command, CommandInput, CommandList, CommandEmpty, CommandItem, CommandG
20
20
  import * as InnerRadioGroup from "@radix-ui/react-radio-group";
21
21
  import TextareaAutosize from "react-textarea-autosize";
22
22
  import { Root as Root$1, Track, Range, Thumb } from "@radix-ui/react-slider";
23
- import ReactMarkdown from "react-markdown";
24
- import remarkGfm from "remark-gfm";
25
- import { visit } from "unist-util-visit";
26
23
  import { useReactTable, getPaginationRowModel, getCoreRowModel, flexRender } from "@tanstack/react-table";
27
24
  import { observeElementOffset, useVirtualizer } from "@tanstack/react-virtual";
28
25
  import * as RAccordion from "@radix-ui/react-accordion";
@@ -1052,7 +1049,7 @@ function composeRefs(...refs) {
1052
1049
  }
1053
1050
  };
1054
1051
  }
1055
- const defaultProps$h = {
1052
+ const defaultProps$g = {
1056
1053
  type: "button",
1057
1054
  iconPosition: "start",
1058
1055
  contentPosition: "center",
@@ -1064,14 +1061,14 @@ const defaultProps$h = {
1064
1061
  };
1065
1062
  const Button = React__default.forwardRef(function Button2({
1066
1063
  id,
1067
- type = defaultProps$h.type,
1064
+ type = defaultProps$g.type,
1068
1065
  icon,
1069
- iconPosition = defaultProps$h.iconPosition,
1070
- contentPosition = defaultProps$h.contentPosition,
1071
- orientation = defaultProps$h.orientation,
1072
- variant = defaultProps$h.variant,
1073
- themeColor = defaultProps$h.themeColor,
1074
- size = defaultProps$h.size,
1066
+ iconPosition = defaultProps$g.iconPosition,
1067
+ contentPosition = defaultProps$g.contentPosition,
1068
+ orientation = defaultProps$g.orientation,
1069
+ variant = defaultProps$g.variant,
1070
+ themeColor = defaultProps$g.themeColor,
1071
+ size = defaultProps$g.size,
1075
1072
  disabled: disabled2,
1076
1073
  children,
1077
1074
  formId,
@@ -1081,7 +1078,7 @@ const Button = React__default.forwardRef(function Button2({
1081
1078
  style,
1082
1079
  gap,
1083
1080
  className,
1084
- autoFocus = defaultProps$h.autoFocus,
1081
+ autoFocus = defaultProps$g.autoFocus,
1085
1082
  ...rest
1086
1083
  }, ref) {
1087
1084
  const innerRef = useRef(null);
@@ -1145,28 +1142,28 @@ const ButtonMd = createMetadata({
1145
1142
  description: "Indicates if the button should receive focus when the page loads.",
1146
1143
  isRequired: false,
1147
1144
  type: "boolean",
1148
- defaultValue: defaultProps$h.autoFocus
1145
+ defaultValue: defaultProps$g.autoFocus
1149
1146
  },
1150
1147
  variant: {
1151
1148
  description: "The button variant determines the level of emphasis the button should possess.",
1152
1149
  isRequired: false,
1153
1150
  type: "string",
1154
1151
  availableValues: buttonVariantMd,
1155
- defaultValue: defaultProps$h.variant
1152
+ defaultValue: defaultProps$g.variant
1156
1153
  },
1157
1154
  themeColor: {
1158
1155
  description: "Sets the button color scheme defined in the application theme.",
1159
1156
  isRequired: false,
1160
1157
  type: "string",
1161
1158
  availableValues: buttonThemeMd,
1162
- defaultValue: defaultProps$h.themeColor
1159
+ defaultValue: defaultProps$g.themeColor
1163
1160
  },
1164
1161
  size: {
1165
1162
  description: "Sets the size of the button.",
1166
1163
  isRequired: false,
1167
1164
  type: "string",
1168
1165
  availableValues: sizeMd,
1169
- defaultValue: defaultProps$h.size
1166
+ defaultValue: defaultProps$g.size
1170
1167
  },
1171
1168
  label: {
1172
1169
  description: `This property is an optional string to set a label for the ${COMP$16}. If no label is specified and an icon is set, the ${COMP$16} will modify its styling to look like a small icon button. When the ${COMP$16} has nested children, it will display them and ignore the value of the \`label\` prop.`,
@@ -1176,14 +1173,14 @@ const ButtonMd = createMetadata({
1176
1173
  description: `This optional string describes how the ${COMP$16} appears in an HTML context. You rarely need to set this property explicitly.`,
1177
1174
  availableValues: buttonTypesMd,
1178
1175
  valueType: "string",
1179
- defaultValue: defaultProps$h.type
1176
+ defaultValue: defaultProps$g.type
1180
1177
  },
1181
1178
  enabled: {
1182
1179
  description: `The value of this property indicates whether the button accepts actions (\`true\`) or does not react to them (\`false\`).`,
1183
1180
  type: "boolean",
1184
1181
  defaultValue: true
1185
1182
  },
1186
- orientation: dOrientation(defaultProps$h.orientation),
1183
+ orientation: dOrientation(defaultProps$g.orientation),
1187
1184
  icon: {
1188
1185
  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$16} displays only that icon.`,
1189
1186
  type: "string"
@@ -1192,13 +1189,13 @@ const ButtonMd = createMetadata({
1192
1189
  description: `This optional string determines the location of the icon in the ${COMP$16}.`,
1193
1190
  availableValues: iconPositionMd,
1194
1191
  type: "string",
1195
- defaultValue: defaultProps$h.iconPosition
1192
+ defaultValue: defaultProps$g.iconPosition
1196
1193
  },
1197
1194
  contentPosition: {
1198
1195
  description: `This optional value determines how the label and icon (or nested children) should be placedinside the ${COMP$16} component.`,
1199
1196
  availableValues: alignmentOptionMd,
1200
1197
  type: "string",
1201
- defaultValue: defaultProps$h.contentPosition
1198
+ defaultValue: defaultProps$g.contentPosition
1202
1199
  }
1203
1200
  },
1204
1201
  events: {
@@ -1438,7 +1435,7 @@ const adornment$2 = "_adornment_ley74_53";
1438
1435
  const error$b = "_error_ley74_56";
1439
1436
  const warning$b = "_warning_ley74_91";
1440
1437
  const valid$b = "_valid_ley74_126";
1441
- const readOnly$1 = "_readOnly_ley74_181";
1438
+ const readOnly$2 = "_readOnly_ley74_181";
1442
1439
  const styles$Q = {
1443
1440
  themeVars: themeVars$M,
1444
1441
  inputRoot: inputRoot$1,
@@ -1447,42 +1444,44 @@ const styles$Q = {
1447
1444
  error: error$b,
1448
1445
  warning: warning$b,
1449
1446
  valid: valid$b,
1450
- readOnly: readOnly$1
1447
+ readOnly: readOnly$2
1451
1448
  };
1452
1449
  const wrapper$5 = "_wrapper_wg0td_13";
1453
1450
  const styles$P = {
1454
1451
  wrapper: wrapper$5
1455
1452
  };
1456
- const themeVars$L = `'{"fontFamily-Text-abbr": "var(--xmlui-fontFamily-Text-abbr)", "fontSize-Text-abbr": "var(--xmlui-fontSize-Text-abbr)", "fontWeight-Text-abbr": "var(--xmlui-fontWeight-Text-abbr)", "fontStyle-Text-abbr": "var(--xmlui-fontStyle-Text-abbr)", "fontStretch-Text-abbr": "var(--xmlui-fontStretch-Text-abbr)", "textDecorationLine-Text-abbr": "var(--xmlui-textDecorationLine-Text-abbr)", "textDecorationColor-Text-abbr": "var(--xmlui-textDecorationColor-Text-abbr)", "textDecorationStyle-Text-abbr": "var(--xmlui-textDecorationStyle-Text-abbr)", "textDecorationThickness-Text-abbr": "var(--xmlui-textDecorationThickness-Text-abbr)", "textUnderlineOffset-Text-abbr": "var(--xmlui-textUnderlineOffset-Text-abbr)", "lineHeight-Text-abbr": "var(--xmlui-lineHeight-Text-abbr)", "textColor-Text-abbr": "var(--xmlui-textColor-Text-abbr)", "backgroundColor-Text-abbr": "var(--xmlui-backgroundColor-Text-abbr)", "borderRadius-Text-abbr": "var(--xmlui-borderRadius-Text-abbr)", "borderColor-Text-abbr": "var(--xmlui-borderColor-Text-abbr)", "borderWidth-Text-abbr": "var(--xmlui-borderWidth-Text-abbr)", "borderStyle-Text-abbr": "var(--xmlui-borderStyle-Text-abbr)", "marginTop-Text-abbr": "var(--xmlui-marginTop-Text-abbr)", "marginBottom-Text-abbr": "var(--xmlui-marginBottom-Text-abbr)", "textTransform-Text-abbr": "var(--xmlui-textTransform-Text-abbr)", "verticalAlign-Text-abbr": "var(--xmlui-verticalAlign-Text-abbr)", "letterSpacing-Text-abbr": "var(--xmlui-letterSpacing-Text-abbr)", "fontFamily-Text-cite": "var(--xmlui-fontFamily-Text-cite)", "fontSize-Text-cite": "var(--xmlui-fontSize-Text-cite)", "fontWeight-Text-cite": "var(--xmlui-fontWeight-Text-cite)", "fontStyle-Text-cite": "var(--xmlui-fontStyle-Text-cite)", "fontStretch-Text-cite": "var(--xmlui-fontStretch-Text-cite)", "textDecorationLine-Text-cite": "var(--xmlui-textDecorationLine-Text-cite)", "textDecorationColor-Text-cite": "var(--xmlui-textDecorationColor-Text-cite)", "textDecorationStyle-Text-cite": "var(--xmlui-textDecorationStyle-Text-cite)", "textDecorationThickness-Text-cite": "var(--xmlui-textDecorationThickness-Text-cite)", "textUnderlineOffset-Text-cite": "var(--xmlui-textUnderlineOffset-Text-cite)", "lineHeight-Text-cite": "var(--xmlui-lineHeight-Text-cite)", "textColor-Text-cite": "var(--xmlui-textColor-Text-cite)", "backgroundColor-Text-cite": "var(--xmlui-backgroundColor-Text-cite)", "borderRadius-Text-cite": "var(--xmlui-borderRadius-Text-cite)", "borderColor-Text-cite": "var(--xmlui-borderColor-Text-cite)", "borderWidth-Text-cite": "var(--xmlui-borderWidth-Text-cite)", "borderStyle-Text-cite": "var(--xmlui-borderStyle-Text-cite)", "marginTop-Text-cite": "var(--xmlui-marginTop-Text-cite)", "marginBottom-Text-cite": "var(--xmlui-marginBottom-Text-cite)", "textTransform-Text-cite": "var(--xmlui-textTransform-Text-cite)", "verticalAlign-Text-cite": "var(--xmlui-verticalAlign-Text-cite)", "letterSpacing-Text-cite": "var(--xmlui-letterSpacing-Text-cite)", "fontFamily-Text-code": "var(--xmlui-fontFamily-Text-code)", "fontSize-Text-code": "var(--xmlui-fontSize-Text-code)", "fontWeight-Text-code": "var(--xmlui-fontWeight-Text-code)", "fontStyle-Text-code": "var(--xmlui-fontStyle-Text-code)", "fontStretch-Text-code": "var(--xmlui-fontStretch-Text-code)", "textDecorationLine-Text-code": "var(--xmlui-textDecorationLine-Text-code)", "textDecorationColor-Text-code": "var(--xmlui-textDecorationColor-Text-code)", "textDecorationStyle-Text-code": "var(--xmlui-textDecorationStyle-Text-code)", "textDecorationThickness-Text-code": "var(--xmlui-textDecorationThickness-Text-code)", "textUnderlineOffset-Text-code": "var(--xmlui-textUnderlineOffset-Text-code)", "lineHeight-Text-code": "var(--xmlui-lineHeight-Text-code)", "textColor-Text-code": "var(--xmlui-textColor-Text-code)", "backgroundColor-Text-code": "var(--xmlui-backgroundColor-Text-code)", "borderRadius-Text-code": "var(--xmlui-borderRadius-Text-code)", "borderColor-Text-code": "var(--xmlui-borderColor-Text-code)", "borderWidth-Text-code": "var(--xmlui-borderWidth-Text-code)", "borderStyle-Text-code": "var(--xmlui-borderStyle-Text-code)", "marginTop-Text-code": "var(--xmlui-marginTop-Text-code)", "marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)", "textTransform-Text-code": "var(--xmlui-textTransform-Text-code)", "verticalAlign-Text-code": "var(--xmlui-verticalAlign-Text-code)", "letterSpacing-Text-code": "var(--xmlui-letterSpacing-Text-code)", "fontFamily-Text-codefence": "var(--xmlui-fontFamily-Text-codefence)", "fontSize-Text-codefence": "var(--xmlui-fontSize-Text-codefence)", "fontWeight-Text-codefence": "var(--xmlui-fontWeight-Text-codefence)", "fontStyle-Text-codefence": "var(--xmlui-fontStyle-Text-codefence)", "fontStretch-Text-codefence": "var(--xmlui-fontStretch-Text-codefence)", "textDecorationLine-Text-codefence": "var(--xmlui-textDecorationLine-Text-codefence)", "textDecorationColor-Text-codefence": "var(--xmlui-textDecorationColor-Text-codefence)", "textDecorationStyle-Text-codefence": "var(--xmlui-textDecorationStyle-Text-codefence)", "textDecorationThickness-Text-codefence": "var(--xmlui-textDecorationThickness-Text-codefence)", "textUnderlineOffset-Text-codefence": "var(--xmlui-textUnderlineOffset-Text-codefence)", "lineHeight-Text-codefence": "var(--xmlui-lineHeight-Text-codefence)", "textColor-Text-codefence": "var(--xmlui-textColor-Text-codefence)", "backgroundColor-Text-codefence": "var(--xmlui-backgroundColor-Text-codefence)", "borderRadius-Text-codefence": "var(--xmlui-borderRadius-Text-codefence)", "borderColor-Text-codefence": "var(--xmlui-borderColor-Text-codefence)", "borderWidth-Text-codefence": "var(--xmlui-borderWidth-Text-codefence)", "borderStyle-Text-codefence": "var(--xmlui-borderStyle-Text-codefence)", "marginTop-Text-codefence": "var(--xmlui-marginTop-Text-codefence)", "marginBottom-Text-codefence": "var(--xmlui-marginBottom-Text-codefence)", "textTransform-Text-codefence": "var(--xmlui-textTransform-Text-codefence)", "verticalAlign-Text-codefence": "var(--xmlui-verticalAlign-Text-codefence)", "letterSpacing-Text-codefence": "var(--xmlui-letterSpacing-Text-codefence)", "fontFamily-Text-deleted": "var(--xmlui-fontFamily-Text-deleted)", "fontSize-Text-deleted": "var(--xmlui-fontSize-Text-deleted)", "fontWeight-Text-deleted": "var(--xmlui-fontWeight-Text-deleted)", "fontStyle-Text-deleted": "var(--xmlui-fontStyle-Text-deleted)", "fontStretch-Text-deleted": "var(--xmlui-fontStretch-Text-deleted)", "textDecorationLine-Text-deleted": "var(--xmlui-textDecorationLine-Text-deleted)", "textDecorationColor-Text-deleted": "var(--xmlui-textDecorationColor-Text-deleted)", "textDecorationStyle-Text-deleted": "var(--xmlui-textDecorationStyle-Text-deleted)", "textDecorationThickness-Text-deleted": "var(--xmlui-textDecorationThickness-Text-deleted)", "textUnderlineOffset-Text-deleted": "var(--xmlui-textUnderlineOffset-Text-deleted)", "lineHeight-Text-deleted": "var(--xmlui-lineHeight-Text-deleted)", "textColor-Text-deleted": "var(--xmlui-textColor-Text-deleted)", "backgroundColor-Text-deleted": "var(--xmlui-backgroundColor-Text-deleted)", "borderRadius-Text-deleted": "var(--xmlui-borderRadius-Text-deleted)", "borderColor-Text-deleted": "var(--xmlui-borderColor-Text-deleted)", "borderWidth-Text-deleted": "var(--xmlui-borderWidth-Text-deleted)", "borderStyle-Text-deleted": "var(--xmlui-borderStyle-Text-deleted)", "marginTop-Text-deleted": "var(--xmlui-marginTop-Text-deleted)", "marginBottom-Text-deleted": "var(--xmlui-marginBottom-Text-deleted)", "textTransform-Text-deleted": "var(--xmlui-textTransform-Text-deleted)", "verticalAlign-Text-deleted": "var(--xmlui-verticalAlign-Text-deleted)", "letterSpacing-Text-deleted": "var(--xmlui-letterSpacing-Text-deleted)", "fontFamily-Text-inserted": "var(--xmlui-fontFamily-Text-inserted)", "fontSize-Text-inserted": "var(--xmlui-fontSize-Text-inserted)", "fontWeight-Text-inserted": "var(--xmlui-fontWeight-Text-inserted)", "fontStyle-Text-inserted": "var(--xmlui-fontStyle-Text-inserted)", "fontStretch-Text-inserted": "var(--xmlui-fontStretch-Text-inserted)", "textDecorationLine-Text-inserted": "var(--xmlui-textDecorationLine-Text-inserted)", "textDecorationColor-Text-inserted": "var(--xmlui-textDecorationColor-Text-inserted)", "textDecorationStyle-Text-inserted": "var(--xmlui-textDecorationStyle-Text-inserted)", "textDecorationThickness-Text-inserted": "var(--xmlui-textDecorationThickness-Text-inserted)", "textUnderlineOffset-Text-inserted": "var(--xmlui-textUnderlineOffset-Text-inserted)", "lineHeight-Text-inserted": "var(--xmlui-lineHeight-Text-inserted)", "textColor-Text-inserted": "var(--xmlui-textColor-Text-inserted)", "backgroundColor-Text-inserted": "var(--xmlui-backgroundColor-Text-inserted)", "borderRadius-Text-inserted": "var(--xmlui-borderRadius-Text-inserted)", "borderColor-Text-inserted": "var(--xmlui-borderColor-Text-inserted)", "borderWidth-Text-inserted": "var(--xmlui-borderWidth-Text-inserted)", "borderStyle-Text-inserted": "var(--xmlui-borderStyle-Text-inserted)", "marginTop-Text-inserted": "var(--xmlui-marginTop-Text-inserted)", "marginBottom-Text-inserted": "var(--xmlui-marginBottom-Text-inserted)", "textTransform-Text-inserted": "var(--xmlui-textTransform-Text-inserted)", "verticalAlign-Text-inserted": "var(--xmlui-verticalAlign-Text-inserted)", "letterSpacing-Text-inserted": "var(--xmlui-letterSpacing-Text-inserted)", "fontFamily-Text-keyboard": "var(--xmlui-fontFamily-Text-keyboard)", "fontSize-Text-keyboard": "var(--xmlui-fontSize-Text-keyboard)", "fontWeight-Text-keyboard": "var(--xmlui-fontWeight-Text-keyboard)", "fontStyle-Text-keyboard": "var(--xmlui-fontStyle-Text-keyboard)", "fontStretch-Text-keyboard": "var(--xmlui-fontStretch-Text-keyboard)", "textDecorationLine-Text-keyboard": "var(--xmlui-textDecorationLine-Text-keyboard)", "textDecorationColor-Text-keyboard": "var(--xmlui-textDecorationColor-Text-keyboard)", "textDecorationStyle-Text-keyboard": "var(--xmlui-textDecorationStyle-Text-keyboard)", "textDecorationThickness-Text-keyboard": "var(--xmlui-textDecorationThickness-Text-keyboard)", "textUnderlineOffset-Text-keyboard": "var(--xmlui-textUnderlineOffset-Text-keyboard)", "lineHeight-Text-keyboard": "var(--xmlui-lineHeight-Text-keyboard)", "textColor-Text-keyboard": "var(--xmlui-textColor-Text-keyboard)", "backgroundColor-Text-keyboard": "var(--xmlui-backgroundColor-Text-keyboard)", "borderRadius-Text-keyboard": "var(--xmlui-borderRadius-Text-keyboard)", "borderColor-Text-keyboard": "var(--xmlui-borderColor-Text-keyboard)", "borderWidth-Text-keyboard": "var(--xmlui-borderWidth-Text-keyboard)", "borderStyle-Text-keyboard": "var(--xmlui-borderStyle-Text-keyboard)", "marginTop-Text-keyboard": "var(--xmlui-marginTop-Text-keyboard)", "marginBottom-Text-keyboard": "var(--xmlui-marginBottom-Text-keyboard)", "textTransform-Text-keyboard": "var(--xmlui-textTransform-Text-keyboard)", "verticalAlign-Text-keyboard": "var(--xmlui-verticalAlign-Text-keyboard)", "letterSpacing-Text-keyboard": "var(--xmlui-letterSpacing-Text-keyboard)", "fontFamily-Text-marked": "var(--xmlui-fontFamily-Text-marked)", "fontSize-Text-marked": "var(--xmlui-fontSize-Text-marked)", "fontWeight-Text-marked": "var(--xmlui-fontWeight-Text-marked)", "fontStyle-Text-marked": "var(--xmlui-fontStyle-Text-marked)", "fontStretch-Text-marked": "var(--xmlui-fontStretch-Text-marked)", "textDecorationLine-Text-marked": "var(--xmlui-textDecorationLine-Text-marked)", "textDecorationColor-Text-marked": "var(--xmlui-textDecorationColor-Text-marked)", "textDecorationStyle-Text-marked": "var(--xmlui-textDecorationStyle-Text-marked)", "textDecorationThickness-Text-marked": "var(--xmlui-textDecorationThickness-Text-marked)", "textUnderlineOffset-Text-marked": "var(--xmlui-textUnderlineOffset-Text-marked)", "lineHeight-Text-marked": "var(--xmlui-lineHeight-Text-marked)", "textColor-Text-marked": "var(--xmlui-textColor-Text-marked)", "backgroundColor-Text-marked": "var(--xmlui-backgroundColor-Text-marked)", "borderRadius-Text-marked": "var(--xmlui-borderRadius-Text-marked)", "borderColor-Text-marked": "var(--xmlui-borderColor-Text-marked)", "borderWidth-Text-marked": "var(--xmlui-borderWidth-Text-marked)", "borderStyle-Text-marked": "var(--xmlui-borderStyle-Text-marked)", "marginTop-Text-marked": "var(--xmlui-marginTop-Text-marked)", "marginBottom-Text-marked": "var(--xmlui-marginBottom-Text-marked)", "textTransform-Text-marked": "var(--xmlui-textTransform-Text-marked)", "verticalAlign-Text-marked": "var(--xmlui-verticalAlign-Text-marked)", "letterSpacing-Text-marked": "var(--xmlui-letterSpacing-Text-marked)", "fontFamily-Text-mono": "var(--xmlui-fontFamily-Text-mono)", "fontSize-Text-mono": "var(--xmlui-fontSize-Text-mono)", "fontWeight-Text-mono": "var(--xmlui-fontWeight-Text-mono)", "fontStyle-Text-mono": "var(--xmlui-fontStyle-Text-mono)", "fontStretch-Text-mono": "var(--xmlui-fontStretch-Text-mono)", "textDecorationLine-Text-mono": "var(--xmlui-textDecorationLine-Text-mono)", "textDecorationColor-Text-mono": "var(--xmlui-textDecorationColor-Text-mono)", "textDecorationStyle-Text-mono": "var(--xmlui-textDecorationStyle-Text-mono)", "textDecorationThickness-Text-mono": "var(--xmlui-textDecorationThickness-Text-mono)", "textUnderlineOffset-Text-mono": "var(--xmlui-textUnderlineOffset-Text-mono)", "lineHeight-Text-mono": "var(--xmlui-lineHeight-Text-mono)", "textColor-Text-mono": "var(--xmlui-textColor-Text-mono)", "backgroundColor-Text-mono": "var(--xmlui-backgroundColor-Text-mono)", "borderRadius-Text-mono": "var(--xmlui-borderRadius-Text-mono)", "borderColor-Text-mono": "var(--xmlui-borderColor-Text-mono)", "borderWidth-Text-mono": "var(--xmlui-borderWidth-Text-mono)", "borderStyle-Text-mono": "var(--xmlui-borderStyle-Text-mono)", "marginTop-Text-mono": "var(--xmlui-marginTop-Text-mono)", "marginBottom-Text-mono": "var(--xmlui-marginBottom-Text-mono)", "textTransform-Text-mono": "var(--xmlui-textTransform-Text-mono)", "verticalAlign-Text-mono": "var(--xmlui-verticalAlign-Text-mono)", "letterSpacing-Text-mono": "var(--xmlui-letterSpacing-Text-mono)", "fontFamily-Text-sample": "var(--xmlui-fontFamily-Text-sample)", "fontSize-Text-sample": "var(--xmlui-fontSize-Text-sample)", "fontWeight-Text-sample": "var(--xmlui-fontWeight-Text-sample)", "fontStyle-Text-sample": "var(--xmlui-fontStyle-Text-sample)", "fontStretch-Text-sample": "var(--xmlui-fontStretch-Text-sample)", "textDecorationLine-Text-sample": "var(--xmlui-textDecorationLine-Text-sample)", "textDecorationColor-Text-sample": "var(--xmlui-textDecorationColor-Text-sample)", "textDecorationStyle-Text-sample": "var(--xmlui-textDecorationStyle-Text-sample)", "textDecorationThickness-Text-sample": "var(--xmlui-textDecorationThickness-Text-sample)", "textUnderlineOffset-Text-sample": "var(--xmlui-textUnderlineOffset-Text-sample)", "lineHeight-Text-sample": "var(--xmlui-lineHeight-Text-sample)", "textColor-Text-sample": "var(--xmlui-textColor-Text-sample)", "backgroundColor-Text-sample": "var(--xmlui-backgroundColor-Text-sample)", "borderRadius-Text-sample": "var(--xmlui-borderRadius-Text-sample)", "borderColor-Text-sample": "var(--xmlui-borderColor-Text-sample)", "borderWidth-Text-sample": "var(--xmlui-borderWidth-Text-sample)", "borderStyle-Text-sample": "var(--xmlui-borderStyle-Text-sample)", "marginTop-Text-sample": "var(--xmlui-marginTop-Text-sample)", "marginBottom-Text-sample": "var(--xmlui-marginBottom-Text-sample)", "textTransform-Text-sample": "var(--xmlui-textTransform-Text-sample)", "verticalAlign-Text-sample": "var(--xmlui-verticalAlign-Text-sample)", "letterSpacing-Text-sample": "var(--xmlui-letterSpacing-Text-sample)", "fontFamily-Text-sup": "var(--xmlui-fontFamily-Text-sup)", "fontSize-Text-sup": "var(--xmlui-fontSize-Text-sup)", "fontWeight-Text-sup": "var(--xmlui-fontWeight-Text-sup)", "fontStyle-Text-sup": "var(--xmlui-fontStyle-Text-sup)", "fontStretch-Text-sup": "var(--xmlui-fontStretch-Text-sup)", "textDecorationLine-Text-sup": "var(--xmlui-textDecorationLine-Text-sup)", "textDecorationColor-Text-sup": "var(--xmlui-textDecorationColor-Text-sup)", "textDecorationStyle-Text-sup": "var(--xmlui-textDecorationStyle-Text-sup)", "textDecorationThickness-Text-sup": "var(--xmlui-textDecorationThickness-Text-sup)", "textUnderlineOffset-Text-sup": "var(--xmlui-textUnderlineOffset-Text-sup)", "lineHeight-Text-sup": "var(--xmlui-lineHeight-Text-sup)", "textColor-Text-sup": "var(--xmlui-textColor-Text-sup)", "backgroundColor-Text-sup": "var(--xmlui-backgroundColor-Text-sup)", "borderRadius-Text-sup": "var(--xmlui-borderRadius-Text-sup)", "borderColor-Text-sup": "var(--xmlui-borderColor-Text-sup)", "borderWidth-Text-sup": "var(--xmlui-borderWidth-Text-sup)", "borderStyle-Text-sup": "var(--xmlui-borderStyle-Text-sup)", "marginTop-Text-sup": "var(--xmlui-marginTop-Text-sup)", "marginBottom-Text-sup": "var(--xmlui-marginBottom-Text-sup)", "textTransform-Text-sup": "var(--xmlui-textTransform-Text-sup)", "verticalAlign-Text-sup": "var(--xmlui-verticalAlign-Text-sup)", "letterSpacing-Text-sup": "var(--xmlui-letterSpacing-Text-sup)", "fontFamily-Text-sub": "var(--xmlui-fontFamily-Text-sub)", "fontSize-Text-sub": "var(--xmlui-fontSize-Text-sub)", "fontWeight-Text-sub": "var(--xmlui-fontWeight-Text-sub)", "fontStyle-Text-sub": "var(--xmlui-fontStyle-Text-sub)", "fontStretch-Text-sub": "var(--xmlui-fontStretch-Text-sub)", "textDecorationLine-Text-sub": "var(--xmlui-textDecorationLine-Text-sub)", "textDecorationColor-Text-sub": "var(--xmlui-textDecorationColor-Text-sub)", "textDecorationStyle-Text-sub": "var(--xmlui-textDecorationStyle-Text-sub)", "textDecorationThickness-Text-sub": "var(--xmlui-textDecorationThickness-Text-sub)", "textUnderlineOffset-Text-sub": "var(--xmlui-textUnderlineOffset-Text-sub)", "lineHeight-Text-sub": "var(--xmlui-lineHeight-Text-sub)", "textColor-Text-sub": "var(--xmlui-textColor-Text-sub)", "backgroundColor-Text-sub": "var(--xmlui-backgroundColor-Text-sub)", "borderRadius-Text-sub": "var(--xmlui-borderRadius-Text-sub)", "borderColor-Text-sub": "var(--xmlui-borderColor-Text-sub)", "borderWidth-Text-sub": "var(--xmlui-borderWidth-Text-sub)", "borderStyle-Text-sub": "var(--xmlui-borderStyle-Text-sub)", "marginTop-Text-sub": "var(--xmlui-marginTop-Text-sub)", "marginBottom-Text-sub": "var(--xmlui-marginBottom-Text-sub)", "textTransform-Text-sub": "var(--xmlui-textTransform-Text-sub)", "verticalAlign-Text-sub": "var(--xmlui-verticalAlign-Text-sub)", "letterSpacing-Text-sub": "var(--xmlui-letterSpacing-Text-sub)", "fontFamily-Text-var": "var(--xmlui-fontFamily-Text-var)", "fontSize-Text-var": "var(--xmlui-fontSize-Text-var)", "fontWeight-Text-var": "var(--xmlui-fontWeight-Text-var)", "fontStyle-Text-var": "var(--xmlui-fontStyle-Text-var)", "fontStretch-Text-var": "var(--xmlui-fontStretch-Text-var)", "textDecorationLine-Text-var": "var(--xmlui-textDecorationLine-Text-var)", "textDecorationColor-Text-var": "var(--xmlui-textDecorationColor-Text-var)", "textDecorationStyle-Text-var": "var(--xmlui-textDecorationStyle-Text-var)", "textDecorationThickness-Text-var": "var(--xmlui-textDecorationThickness-Text-var)", "textUnderlineOffset-Text-var": "var(--xmlui-textUnderlineOffset-Text-var)", "lineHeight-Text-var": "var(--xmlui-lineHeight-Text-var)", "textColor-Text-var": "var(--xmlui-textColor-Text-var)", "backgroundColor-Text-var": "var(--xmlui-backgroundColor-Text-var)", "borderRadius-Text-var": "var(--xmlui-borderRadius-Text-var)", "borderColor-Text-var": "var(--xmlui-borderColor-Text-var)", "borderWidth-Text-var": "var(--xmlui-borderWidth-Text-var)", "borderStyle-Text-var": "var(--xmlui-borderStyle-Text-var)", "marginTop-Text-var": "var(--xmlui-marginTop-Text-var)", "marginBottom-Text-var": "var(--xmlui-marginBottom-Text-var)", "textTransform-Text-var": "var(--xmlui-textTransform-Text-var)", "verticalAlign-Text-var": "var(--xmlui-verticalAlign-Text-var)", "letterSpacing-Text-var": "var(--xmlui-letterSpacing-Text-var)", "fontFamily-Text-title": "var(--xmlui-fontFamily-Text-title)", "fontSize-Text-title": "var(--xmlui-fontSize-Text-title)", "fontWeight-Text-title": "var(--xmlui-fontWeight-Text-title)", "fontStyle-Text-title": "var(--xmlui-fontStyle-Text-title)", "fontStretch-Text-title": "var(--xmlui-fontStretch-Text-title)", "textDecorationLine-Text-title": "var(--xmlui-textDecorationLine-Text-title)", "textDecorationColor-Text-title": "var(--xmlui-textDecorationColor-Text-title)", "textDecorationStyle-Text-title": "var(--xmlui-textDecorationStyle-Text-title)", "textDecorationThickness-Text-title": "var(--xmlui-textDecorationThickness-Text-title)", "textUnderlineOffset-Text-title": "var(--xmlui-textUnderlineOffset-Text-title)", "lineHeight-Text-title": "var(--xmlui-lineHeight-Text-title)", "textColor-Text-title": "var(--xmlui-textColor-Text-title)", "backgroundColor-Text-title": "var(--xmlui-backgroundColor-Text-title)", "borderRadius-Text-title": "var(--xmlui-borderRadius-Text-title)", "borderColor-Text-title": "var(--xmlui-borderColor-Text-title)", "borderWidth-Text-title": "var(--xmlui-borderWidth-Text-title)", "borderStyle-Text-title": "var(--xmlui-borderStyle-Text-title)", "marginTop-Text-title": "var(--xmlui-marginTop-Text-title)", "marginBottom-Text-title": "var(--xmlui-marginBottom-Text-title)", "textTransform-Text-title": "var(--xmlui-textTransform-Text-title)", "verticalAlign-Text-title": "var(--xmlui-verticalAlign-Text-title)", "letterSpacing-Text-title": "var(--xmlui-letterSpacing-Text-title)", "fontFamily-Text-subtitle": "var(--xmlui-fontFamily-Text-subtitle)", "fontSize-Text-subtitle": "var(--xmlui-fontSize-Text-subtitle)", "fontWeight-Text-subtitle": "var(--xmlui-fontWeight-Text-subtitle)", "fontStyle-Text-subtitle": "var(--xmlui-fontStyle-Text-subtitle)", "fontStretch-Text-subtitle": "var(--xmlui-fontStretch-Text-subtitle)", "textDecorationLine-Text-subtitle": "var(--xmlui-textDecorationLine-Text-subtitle)", "textDecorationColor-Text-subtitle": "var(--xmlui-textDecorationColor-Text-subtitle)", "textDecorationStyle-Text-subtitle": "var(--xmlui-textDecorationStyle-Text-subtitle)", "textDecorationThickness-Text-subtitle": "var(--xmlui-textDecorationThickness-Text-subtitle)", "textUnderlineOffset-Text-subtitle": "var(--xmlui-textUnderlineOffset-Text-subtitle)", "lineHeight-Text-subtitle": "var(--xmlui-lineHeight-Text-subtitle)", "textColor-Text-subtitle": "var(--xmlui-textColor-Text-subtitle)", "backgroundColor-Text-subtitle": "var(--xmlui-backgroundColor-Text-subtitle)", "borderRadius-Text-subtitle": "var(--xmlui-borderRadius-Text-subtitle)", "borderColor-Text-subtitle": "var(--xmlui-borderColor-Text-subtitle)", "borderWidth-Text-subtitle": "var(--xmlui-borderWidth-Text-subtitle)", "borderStyle-Text-subtitle": "var(--xmlui-borderStyle-Text-subtitle)", "marginTop-Text-subtitle": "var(--xmlui-marginTop-Text-subtitle)", "marginBottom-Text-subtitle": "var(--xmlui-marginBottom-Text-subtitle)", "textTransform-Text-subtitle": "var(--xmlui-textTransform-Text-subtitle)", "verticalAlign-Text-subtitle": "var(--xmlui-verticalAlign-Text-subtitle)", "letterSpacing-Text-subtitle": "var(--xmlui-letterSpacing-Text-subtitle)", "fontFamily-Text-small": "var(--xmlui-fontFamily-Text-small)", "fontSize-Text-small": "var(--xmlui-fontSize-Text-small)", "fontWeight-Text-small": "var(--xmlui-fontWeight-Text-small)", "fontStyle-Text-small": "var(--xmlui-fontStyle-Text-small)", "fontStretch-Text-small": "var(--xmlui-fontStretch-Text-small)", "textDecorationLine-Text-small": "var(--xmlui-textDecorationLine-Text-small)", "textDecorationColor-Text-small": "var(--xmlui-textDecorationColor-Text-small)", "textDecorationStyle-Text-small": "var(--xmlui-textDecorationStyle-Text-small)", "textDecorationThickness-Text-small": "var(--xmlui-textDecorationThickness-Text-small)", "textUnderlineOffset-Text-small": "var(--xmlui-textUnderlineOffset-Text-small)", "lineHeight-Text-small": "var(--xmlui-lineHeight-Text-small)", "textColor-Text-small": "var(--xmlui-textColor-Text-small)", "backgroundColor-Text-small": "var(--xmlui-backgroundColor-Text-small)", "borderRadius-Text-small": "var(--xmlui-borderRadius-Text-small)", "borderColor-Text-small": "var(--xmlui-borderColor-Text-small)", "borderWidth-Text-small": "var(--xmlui-borderWidth-Text-small)", "borderStyle-Text-small": "var(--xmlui-borderStyle-Text-small)", "marginTop-Text-small": "var(--xmlui-marginTop-Text-small)", "marginBottom-Text-small": "var(--xmlui-marginBottom-Text-small)", "textTransform-Text-small": "var(--xmlui-textTransform-Text-small)", "verticalAlign-Text-small": "var(--xmlui-verticalAlign-Text-small)", "letterSpacing-Text-small": "var(--xmlui-letterSpacing-Text-small)", "fontFamily-Text-caption": "var(--xmlui-fontFamily-Text-caption)", "fontSize-Text-caption": "var(--xmlui-fontSize-Text-caption)", "fontWeight-Text-caption": "var(--xmlui-fontWeight-Text-caption)", "fontStyle-Text-caption": "var(--xmlui-fontStyle-Text-caption)", "fontStretch-Text-caption": "var(--xmlui-fontStretch-Text-caption)", "textDecorationLine-Text-caption": "var(--xmlui-textDecorationLine-Text-caption)", "textDecorationColor-Text-caption": "var(--xmlui-textDecorationColor-Text-caption)", "textDecorationStyle-Text-caption": "var(--xmlui-textDecorationStyle-Text-caption)", "textDecorationThickness-Text-caption": "var(--xmlui-textDecorationThickness-Text-caption)", "textUnderlineOffset-Text-caption": "var(--xmlui-textUnderlineOffset-Text-caption)", "lineHeight-Text-caption": "var(--xmlui-lineHeight-Text-caption)", "textColor-Text-caption": "var(--xmlui-textColor-Text-caption)", "backgroundColor-Text-caption": "var(--xmlui-backgroundColor-Text-caption)", "borderRadius-Text-caption": "var(--xmlui-borderRadius-Text-caption)", "borderColor-Text-caption": "var(--xmlui-borderColor-Text-caption)", "borderWidth-Text-caption": "var(--xmlui-borderWidth-Text-caption)", "borderStyle-Text-caption": "var(--xmlui-borderStyle-Text-caption)", "marginTop-Text-caption": "var(--xmlui-marginTop-Text-caption)", "marginBottom-Text-caption": "var(--xmlui-marginBottom-Text-caption)", "textTransform-Text-caption": "var(--xmlui-textTransform-Text-caption)", "verticalAlign-Text-caption": "var(--xmlui-verticalAlign-Text-caption)", "letterSpacing-Text-caption": "var(--xmlui-letterSpacing-Text-caption)", "fontFamily-Text-placeholder": "var(--xmlui-fontFamily-Text-placeholder)", "fontSize-Text-placeholder": "var(--xmlui-fontSize-Text-placeholder)", "fontWeight-Text-placeholder": "var(--xmlui-fontWeight-Text-placeholder)", "fontStyle-Text-placeholder": "var(--xmlui-fontStyle-Text-placeholder)", "fontStretch-Text-placeholder": "var(--xmlui-fontStretch-Text-placeholder)", "textDecorationLine-Text-placeholder": "var(--xmlui-textDecorationLine-Text-placeholder)", "textDecorationColor-Text-placeholder": "var(--xmlui-textDecorationColor-Text-placeholder)", "textDecorationStyle-Text-placeholder": "var(--xmlui-textDecorationStyle-Text-placeholder)", "textDecorationThickness-Text-placeholder": "var(--xmlui-textDecorationThickness-Text-placeholder)", "textUnderlineOffset-Text-placeholder": "var(--xmlui-textUnderlineOffset-Text-placeholder)", "lineHeight-Text-placeholder": "var(--xmlui-lineHeight-Text-placeholder)", "textColor-Text-placeholder": "var(--xmlui-textColor-Text-placeholder)", "backgroundColor-Text-placeholder": "var(--xmlui-backgroundColor-Text-placeholder)", "borderRadius-Text-placeholder": "var(--xmlui-borderRadius-Text-placeholder)", "borderColor-Text-placeholder": "var(--xmlui-borderColor-Text-placeholder)", "borderWidth-Text-placeholder": "var(--xmlui-borderWidth-Text-placeholder)", "borderStyle-Text-placeholder": "var(--xmlui-borderStyle-Text-placeholder)", "marginTop-Text-placeholder": "var(--xmlui-marginTop-Text-placeholder)", "marginBottom-Text-placeholder": "var(--xmlui-marginBottom-Text-placeholder)", "textTransform-Text-placeholder": "var(--xmlui-textTransform-Text-placeholder)", "verticalAlign-Text-placeholder": "var(--xmlui-verticalAlign-Text-placeholder)", "letterSpacing-Text-placeholder": "var(--xmlui-letterSpacing-Text-placeholder)", "fontFamily-Text-paragraph": "var(--xmlui-fontFamily-Text-paragraph)", "fontSize-Text-paragraph": "var(--xmlui-fontSize-Text-paragraph)", "fontWeight-Text-paragraph": "var(--xmlui-fontWeight-Text-paragraph)", "fontStyle-Text-paragraph": "var(--xmlui-fontStyle-Text-paragraph)", "fontStretch-Text-paragraph": "var(--xmlui-fontStretch-Text-paragraph)", "textDecorationLine-Text-paragraph": "var(--xmlui-textDecorationLine-Text-paragraph)", "textDecorationColor-Text-paragraph": "var(--xmlui-textDecorationColor-Text-paragraph)", "textDecorationStyle-Text-paragraph": "var(--xmlui-textDecorationStyle-Text-paragraph)", "textDecorationThickness-Text-paragraph": "var(--xmlui-textDecorationThickness-Text-paragraph)", "textUnderlineOffset-Text-paragraph": "var(--xmlui-textUnderlineOffset-Text-paragraph)", "lineHeight-Text-paragraph": "var(--xmlui-lineHeight-Text-paragraph)", "textColor-Text-paragraph": "var(--xmlui-textColor-Text-paragraph)", "backgroundColor-Text-paragraph": "var(--xmlui-backgroundColor-Text-paragraph)", "borderRadius-Text-paragraph": "var(--xmlui-borderRadius-Text-paragraph)", "borderColor-Text-paragraph": "var(--xmlui-borderColor-Text-paragraph)", "borderWidth-Text-paragraph": "var(--xmlui-borderWidth-Text-paragraph)", "borderStyle-Text-paragraph": "var(--xmlui-borderStyle-Text-paragraph)", "marginTop-Text-paragraph": "var(--xmlui-marginTop-Text-paragraph)", "marginBottom-Text-paragraph": "var(--xmlui-marginBottom-Text-paragraph)", "textTransform-Text-paragraph": "var(--xmlui-textTransform-Text-paragraph)", "verticalAlign-Text-paragraph": "var(--xmlui-verticalAlign-Text-paragraph)", "letterSpacing-Text-paragraph": "var(--xmlui-letterSpacing-Text-paragraph)", "fontFamily-Text-subheading": "var(--xmlui-fontFamily-Text-subheading)", "fontSize-Text-subheading": "var(--xmlui-fontSize-Text-subheading)", "fontWeight-Text-subheading": "var(--xmlui-fontWeight-Text-subheading)", "fontStyle-Text-subheading": "var(--xmlui-fontStyle-Text-subheading)", "fontStretch-Text-subheading": "var(--xmlui-fontStretch-Text-subheading)", "textDecorationLine-Text-subheading": "var(--xmlui-textDecorationLine-Text-subheading)", "textDecorationColor-Text-subheading": "var(--xmlui-textDecorationColor-Text-subheading)", "textDecorationStyle-Text-subheading": "var(--xmlui-textDecorationStyle-Text-subheading)", "textDecorationThickness-Text-subheading": "var(--xmlui-textDecorationThickness-Text-subheading)", "textUnderlineOffset-Text-subheading": "var(--xmlui-textUnderlineOffset-Text-subheading)", "lineHeight-Text-subheading": "var(--xmlui-lineHeight-Text-subheading)", "textColor-Text-subheading": "var(--xmlui-textColor-Text-subheading)", "backgroundColor-Text-subheading": "var(--xmlui-backgroundColor-Text-subheading)", "borderRadius-Text-subheading": "var(--xmlui-borderRadius-Text-subheading)", "borderColor-Text-subheading": "var(--xmlui-borderColor-Text-subheading)", "borderWidth-Text-subheading": "var(--xmlui-borderWidth-Text-subheading)", "borderStyle-Text-subheading": "var(--xmlui-borderStyle-Text-subheading)", "marginTop-Text-subheading": "var(--xmlui-marginTop-Text-subheading)", "marginBottom-Text-subheading": "var(--xmlui-marginBottom-Text-subheading)", "textTransform-Text-subheading": "var(--xmlui-textTransform-Text-subheading)", "verticalAlign-Text-subheading": "var(--xmlui-verticalAlign-Text-subheading)", "letterSpacing-Text-subheading": "var(--xmlui-letterSpacing-Text-subheading)", "fontFamily-Text-tableheading": "var(--xmlui-fontFamily-Text-tableheading)", "fontSize-Text-tableheading": "var(--xmlui-fontSize-Text-tableheading)", "fontWeight-Text-tableheading": "var(--xmlui-fontWeight-Text-tableheading)", "fontStyle-Text-tableheading": "var(--xmlui-fontStyle-Text-tableheading)", "fontStretch-Text-tableheading": "var(--xmlui-fontStretch-Text-tableheading)", "textDecorationLine-Text-tableheading": "var(--xmlui-textDecorationLine-Text-tableheading)", "textDecorationColor-Text-tableheading": "var(--xmlui-textDecorationColor-Text-tableheading)", "textDecorationStyle-Text-tableheading": "var(--xmlui-textDecorationStyle-Text-tableheading)", "textDecorationThickness-Text-tableheading": "var(--xmlui-textDecorationThickness-Text-tableheading)", "textUnderlineOffset-Text-tableheading": "var(--xmlui-textUnderlineOffset-Text-tableheading)", "lineHeight-Text-tableheading": "var(--xmlui-lineHeight-Text-tableheading)", "textColor-Text-tableheading": "var(--xmlui-textColor-Text-tableheading)", "backgroundColor-Text-tableheading": "var(--xmlui-backgroundColor-Text-tableheading)", "borderRadius-Text-tableheading": "var(--xmlui-borderRadius-Text-tableheading)", "borderColor-Text-tableheading": "var(--xmlui-borderColor-Text-tableheading)", "borderWidth-Text-tableheading": "var(--xmlui-borderWidth-Text-tableheading)", "borderStyle-Text-tableheading": "var(--xmlui-borderStyle-Text-tableheading)", "marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)", "marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)", "textTransform-Text-tableheading": "var(--xmlui-textTransform-Text-tableheading)", "verticalAlign-Text-tableheading": "var(--xmlui-verticalAlign-Text-tableheading)", "letterSpacing-Text-tableheading": "var(--xmlui-letterSpacing-Text-tableheading)", "fontFamily-Text-secondary": "var(--xmlui-fontFamily-Text-secondary)", "fontSize-Text-secondary": "var(--xmlui-fontSize-Text-secondary)", "fontWeight-Text-secondary": "var(--xmlui-fontWeight-Text-secondary)", "fontStyle-Text-secondary": "var(--xmlui-fontStyle-Text-secondary)", "fontStretch-Text-secondary": "var(--xmlui-fontStretch-Text-secondary)", "textDecorationLine-Text-secondary": "var(--xmlui-textDecorationLine-Text-secondary)", "textDecorationColor-Text-secondary": "var(--xmlui-textDecorationColor-Text-secondary)", "textDecorationStyle-Text-secondary": "var(--xmlui-textDecorationStyle-Text-secondary)", "textDecorationThickness-Text-secondary": "var(--xmlui-textDecorationThickness-Text-secondary)", "textUnderlineOffset-Text-secondary": "var(--xmlui-textUnderlineOffset-Text-secondary)", "lineHeight-Text-secondary": "var(--xmlui-lineHeight-Text-secondary)", "textColor-Text-secondary": "var(--xmlui-textColor-Text-secondary)", "backgroundColor-Text-secondary": "var(--xmlui-backgroundColor-Text-secondary)", "borderRadius-Text-secondary": "var(--xmlui-borderRadius-Text-secondary)", "borderColor-Text-secondary": "var(--xmlui-borderColor-Text-secondary)", "borderWidth-Text-secondary": "var(--xmlui-borderWidth-Text-secondary)", "borderStyle-Text-secondary": "var(--xmlui-borderStyle-Text-secondary)", "marginTop-Text-secondary": "var(--xmlui-marginTop-Text-secondary)", "marginBottom-Text-secondary": "var(--xmlui-marginBottom-Text-secondary)", "textTransform-Text-secondary": "var(--xmlui-textTransform-Text-secondary)", "verticalAlign-Text-secondary": "var(--xmlui-verticalAlign-Text-secondary)", "letterSpacing-Text-secondary": "var(--xmlui-letterSpacing-Text-secondary)"}'`;
1457
- const text = "_text_1x9lo_13";
1458
- const abbr = "_abbr_1x9lo_23";
1459
- const cite = "_cite_1x9lo_52";
1460
- const codefence = "_codefence_1x9lo_81";
1461
- const code = "_code_1x9lo_81";
1462
- const deleted = "_deleted_1x9lo_144";
1463
- const inserted = "_inserted_1x9lo_188";
1464
- const keyboard = "_keyboard_1x9lo_232";
1465
- const marked = "_marked_1x9lo_261";
1466
- const mono = "_mono_1x9lo_305";
1467
- const sample = "_sample_1x9lo_334";
1468
- const sup = "_sup_1x9lo_363";
1469
- const sub = "_sub_1x9lo_392";
1470
- const title = "_title_1x9lo_450";
1471
- const subtitle = "_subtitle_1x9lo_479";
1472
- const small = "_small_1x9lo_508";
1473
- const caption$1 = "_caption_1x9lo_537";
1474
- const placeholder$2 = "_placeholder_1x9lo_566";
1475
- const paragraph = "_paragraph_1x9lo_595";
1476
- const subheading = "_subheading_1x9lo_624";
1477
- const tableheading = "_tableheading_1x9lo_653";
1478
- const secondary = "_secondary_1x9lo_682";
1479
- const strong = "_strong_1x9lo_711";
1480
- const truncateOverflow$1 = "_truncateOverflow_1x9lo_719";
1481
- const preserveLinebreaks$1 = "_preserveLinebreaks_1x9lo_726";
1482
- const noEllipsis$1 = "_noEllipsis_1x9lo_730";
1453
+ const themeVars$L = `'{"fontFamily-Text-markdown": "var(--xmlui-fontFamily-Text-markdown)", "fontSize-Text-markdown": "var(--xmlui-fontSize-Text-markdown)", "fontWeight-Text-markdown": "var(--xmlui-fontWeight-Text-markdown)", "fontStyle-Text-markdown": "var(--xmlui-fontStyle-Text-markdown)", "fontStretch-Text-markdown": "var(--xmlui-fontStretch-Text-markdown)", "textDecorationLine-Text-markdown": "var(--xmlui-textDecorationLine-Text-markdown)", "textDecorationColor-Text-markdown": "var(--xmlui-textDecorationColor-Text-markdown)", "textDecorationStyle-Text-markdown": "var(--xmlui-textDecorationStyle-Text-markdown)", "textDecorationThickness-Text-markdown": "var(--xmlui-textDecorationThickness-Text-markdown)", "textUnderlineOffset-Text-markdown": "var(--xmlui-textUnderlineOffset-Text-markdown)", "lineHeight-Text-markdown": "var(--xmlui-lineHeight-Text-markdown)", "textColor-Text-markdown": "var(--xmlui-textColor-Text-markdown)", "backgroundColor-Text-markdown": "var(--xmlui-backgroundColor-Text-markdown)", "borderRadius-Text-markdown": "var(--xmlui-borderRadius-Text-markdown)", "borderColor-Text-markdown": "var(--xmlui-borderColor-Text-markdown)", "borderWidth-Text-markdown": "var(--xmlui-borderWidth-Text-markdown)", "borderStyle-Text-markdown": "var(--xmlui-borderStyle-Text-markdown)", "marginTop-Text-markdown": "var(--xmlui-marginTop-Text-markdown)", "marginBottom-Text-markdown": "var(--xmlui-marginBottom-Text-markdown)", "textTransform-Text-markdown": "var(--xmlui-textTransform-Text-markdown)", "verticalAlign-Text-markdown": "var(--xmlui-verticalAlign-Text-markdown)", "letterSpacing-Text-markdown": "var(--xmlui-letterSpacing-Text-markdown)", "fontFamily-Text-abbr": "var(--xmlui-fontFamily-Text-abbr)", "fontSize-Text-abbr": "var(--xmlui-fontSize-Text-abbr)", "fontWeight-Text-abbr": "var(--xmlui-fontWeight-Text-abbr)", "fontStyle-Text-abbr": "var(--xmlui-fontStyle-Text-abbr)", "fontStretch-Text-abbr": "var(--xmlui-fontStretch-Text-abbr)", "textDecorationLine-Text-abbr": "var(--xmlui-textDecorationLine-Text-abbr)", "textDecorationColor-Text-abbr": "var(--xmlui-textDecorationColor-Text-abbr)", "textDecorationStyle-Text-abbr": "var(--xmlui-textDecorationStyle-Text-abbr)", "textDecorationThickness-Text-abbr": "var(--xmlui-textDecorationThickness-Text-abbr)", "textUnderlineOffset-Text-abbr": "var(--xmlui-textUnderlineOffset-Text-abbr)", "lineHeight-Text-abbr": "var(--xmlui-lineHeight-Text-abbr)", "textColor-Text-abbr": "var(--xmlui-textColor-Text-abbr)", "backgroundColor-Text-abbr": "var(--xmlui-backgroundColor-Text-abbr)", "borderRadius-Text-abbr": "var(--xmlui-borderRadius-Text-abbr)", "borderColor-Text-abbr": "var(--xmlui-borderColor-Text-abbr)", "borderWidth-Text-abbr": "var(--xmlui-borderWidth-Text-abbr)", "borderStyle-Text-abbr": "var(--xmlui-borderStyle-Text-abbr)", "marginTop-Text-abbr": "var(--xmlui-marginTop-Text-abbr)", "marginBottom-Text-abbr": "var(--xmlui-marginBottom-Text-abbr)", "textTransform-Text-abbr": "var(--xmlui-textTransform-Text-abbr)", "verticalAlign-Text-abbr": "var(--xmlui-verticalAlign-Text-abbr)", "letterSpacing-Text-abbr": "var(--xmlui-letterSpacing-Text-abbr)", "fontFamily-Text-cite": "var(--xmlui-fontFamily-Text-cite)", "fontSize-Text-cite": "var(--xmlui-fontSize-Text-cite)", "fontWeight-Text-cite": "var(--xmlui-fontWeight-Text-cite)", "fontStyle-Text-cite": "var(--xmlui-fontStyle-Text-cite)", "fontStretch-Text-cite": "var(--xmlui-fontStretch-Text-cite)", "textDecorationLine-Text-cite": "var(--xmlui-textDecorationLine-Text-cite)", "textDecorationColor-Text-cite": "var(--xmlui-textDecorationColor-Text-cite)", "textDecorationStyle-Text-cite": "var(--xmlui-textDecorationStyle-Text-cite)", "textDecorationThickness-Text-cite": "var(--xmlui-textDecorationThickness-Text-cite)", "textUnderlineOffset-Text-cite": "var(--xmlui-textUnderlineOffset-Text-cite)", "lineHeight-Text-cite": "var(--xmlui-lineHeight-Text-cite)", "textColor-Text-cite": "var(--xmlui-textColor-Text-cite)", "backgroundColor-Text-cite": "var(--xmlui-backgroundColor-Text-cite)", "borderRadius-Text-cite": "var(--xmlui-borderRadius-Text-cite)", "borderColor-Text-cite": "var(--xmlui-borderColor-Text-cite)", "borderWidth-Text-cite": "var(--xmlui-borderWidth-Text-cite)", "borderStyle-Text-cite": "var(--xmlui-borderStyle-Text-cite)", "marginTop-Text-cite": "var(--xmlui-marginTop-Text-cite)", "marginBottom-Text-cite": "var(--xmlui-marginBottom-Text-cite)", "textTransform-Text-cite": "var(--xmlui-textTransform-Text-cite)", "verticalAlign-Text-cite": "var(--xmlui-verticalAlign-Text-cite)", "letterSpacing-Text-cite": "var(--xmlui-letterSpacing-Text-cite)", "fontFamily-Text-code": "var(--xmlui-fontFamily-Text-code)", "fontSize-Text-code": "var(--xmlui-fontSize-Text-code)", "fontWeight-Text-code": "var(--xmlui-fontWeight-Text-code)", "fontStyle-Text-code": "var(--xmlui-fontStyle-Text-code)", "fontStretch-Text-code": "var(--xmlui-fontStretch-Text-code)", "textDecorationLine-Text-code": "var(--xmlui-textDecorationLine-Text-code)", "textDecorationColor-Text-code": "var(--xmlui-textDecorationColor-Text-code)", "textDecorationStyle-Text-code": "var(--xmlui-textDecorationStyle-Text-code)", "textDecorationThickness-Text-code": "var(--xmlui-textDecorationThickness-Text-code)", "textUnderlineOffset-Text-code": "var(--xmlui-textUnderlineOffset-Text-code)", "lineHeight-Text-code": "var(--xmlui-lineHeight-Text-code)", "textColor-Text-code": "var(--xmlui-textColor-Text-code)", "backgroundColor-Text-code": "var(--xmlui-backgroundColor-Text-code)", "borderRadius-Text-code": "var(--xmlui-borderRadius-Text-code)", "borderColor-Text-code": "var(--xmlui-borderColor-Text-code)", "borderWidth-Text-code": "var(--xmlui-borderWidth-Text-code)", "borderStyle-Text-code": "var(--xmlui-borderStyle-Text-code)", "marginTop-Text-code": "var(--xmlui-marginTop-Text-code)", "marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)", "textTransform-Text-code": "var(--xmlui-textTransform-Text-code)", "verticalAlign-Text-code": "var(--xmlui-verticalAlign-Text-code)", "letterSpacing-Text-code": "var(--xmlui-letterSpacing-Text-code)", "fontFamily-Text-codefence": "var(--xmlui-fontFamily-Text-codefence)", "fontSize-Text-codefence": "var(--xmlui-fontSize-Text-codefence)", "fontWeight-Text-codefence": "var(--xmlui-fontWeight-Text-codefence)", "fontStyle-Text-codefence": "var(--xmlui-fontStyle-Text-codefence)", "fontStretch-Text-codefence": "var(--xmlui-fontStretch-Text-codefence)", "textDecorationLine-Text-codefence": "var(--xmlui-textDecorationLine-Text-codefence)", "textDecorationColor-Text-codefence": "var(--xmlui-textDecorationColor-Text-codefence)", "textDecorationStyle-Text-codefence": "var(--xmlui-textDecorationStyle-Text-codefence)", "textDecorationThickness-Text-codefence": "var(--xmlui-textDecorationThickness-Text-codefence)", "textUnderlineOffset-Text-codefence": "var(--xmlui-textUnderlineOffset-Text-codefence)", "lineHeight-Text-codefence": "var(--xmlui-lineHeight-Text-codefence)", "textColor-Text-codefence": "var(--xmlui-textColor-Text-codefence)", "backgroundColor-Text-codefence": "var(--xmlui-backgroundColor-Text-codefence)", "borderRadius-Text-codefence": "var(--xmlui-borderRadius-Text-codefence)", "borderColor-Text-codefence": "var(--xmlui-borderColor-Text-codefence)", "borderWidth-Text-codefence": "var(--xmlui-borderWidth-Text-codefence)", "borderStyle-Text-codefence": "var(--xmlui-borderStyle-Text-codefence)", "marginTop-Text-codefence": "var(--xmlui-marginTop-Text-codefence)", "marginBottom-Text-codefence": "var(--xmlui-marginBottom-Text-codefence)", "textTransform-Text-codefence": "var(--xmlui-textTransform-Text-codefence)", "verticalAlign-Text-codefence": "var(--xmlui-verticalAlign-Text-codefence)", "letterSpacing-Text-codefence": "var(--xmlui-letterSpacing-Text-codefence)", "fontFamily-Text-deleted": "var(--xmlui-fontFamily-Text-deleted)", "fontSize-Text-deleted": "var(--xmlui-fontSize-Text-deleted)", "fontWeight-Text-deleted": "var(--xmlui-fontWeight-Text-deleted)", "fontStyle-Text-deleted": "var(--xmlui-fontStyle-Text-deleted)", "fontStretch-Text-deleted": "var(--xmlui-fontStretch-Text-deleted)", "textDecorationLine-Text-deleted": "var(--xmlui-textDecorationLine-Text-deleted)", "textDecorationColor-Text-deleted": "var(--xmlui-textDecorationColor-Text-deleted)", "textDecorationStyle-Text-deleted": "var(--xmlui-textDecorationStyle-Text-deleted)", "textDecorationThickness-Text-deleted": "var(--xmlui-textDecorationThickness-Text-deleted)", "textUnderlineOffset-Text-deleted": "var(--xmlui-textUnderlineOffset-Text-deleted)", "lineHeight-Text-deleted": "var(--xmlui-lineHeight-Text-deleted)", "textColor-Text-deleted": "var(--xmlui-textColor-Text-deleted)", "backgroundColor-Text-deleted": "var(--xmlui-backgroundColor-Text-deleted)", "borderRadius-Text-deleted": "var(--xmlui-borderRadius-Text-deleted)", "borderColor-Text-deleted": "var(--xmlui-borderColor-Text-deleted)", "borderWidth-Text-deleted": "var(--xmlui-borderWidth-Text-deleted)", "borderStyle-Text-deleted": "var(--xmlui-borderStyle-Text-deleted)", "marginTop-Text-deleted": "var(--xmlui-marginTop-Text-deleted)", "marginBottom-Text-deleted": "var(--xmlui-marginBottom-Text-deleted)", "textTransform-Text-deleted": "var(--xmlui-textTransform-Text-deleted)", "verticalAlign-Text-deleted": "var(--xmlui-verticalAlign-Text-deleted)", "letterSpacing-Text-deleted": "var(--xmlui-letterSpacing-Text-deleted)", "fontFamily-Text-inserted": "var(--xmlui-fontFamily-Text-inserted)", "fontSize-Text-inserted": "var(--xmlui-fontSize-Text-inserted)", "fontWeight-Text-inserted": "var(--xmlui-fontWeight-Text-inserted)", "fontStyle-Text-inserted": "var(--xmlui-fontStyle-Text-inserted)", "fontStretch-Text-inserted": "var(--xmlui-fontStretch-Text-inserted)", "textDecorationLine-Text-inserted": "var(--xmlui-textDecorationLine-Text-inserted)", "textDecorationColor-Text-inserted": "var(--xmlui-textDecorationColor-Text-inserted)", "textDecorationStyle-Text-inserted": "var(--xmlui-textDecorationStyle-Text-inserted)", "textDecorationThickness-Text-inserted": "var(--xmlui-textDecorationThickness-Text-inserted)", "textUnderlineOffset-Text-inserted": "var(--xmlui-textUnderlineOffset-Text-inserted)", "lineHeight-Text-inserted": "var(--xmlui-lineHeight-Text-inserted)", "textColor-Text-inserted": "var(--xmlui-textColor-Text-inserted)", "backgroundColor-Text-inserted": "var(--xmlui-backgroundColor-Text-inserted)", "borderRadius-Text-inserted": "var(--xmlui-borderRadius-Text-inserted)", "borderColor-Text-inserted": "var(--xmlui-borderColor-Text-inserted)", "borderWidth-Text-inserted": "var(--xmlui-borderWidth-Text-inserted)", "borderStyle-Text-inserted": "var(--xmlui-borderStyle-Text-inserted)", "marginTop-Text-inserted": "var(--xmlui-marginTop-Text-inserted)", "marginBottom-Text-inserted": "var(--xmlui-marginBottom-Text-inserted)", "textTransform-Text-inserted": "var(--xmlui-textTransform-Text-inserted)", "verticalAlign-Text-inserted": "var(--xmlui-verticalAlign-Text-inserted)", "letterSpacing-Text-inserted": "var(--xmlui-letterSpacing-Text-inserted)", "fontFamily-Text-keyboard": "var(--xmlui-fontFamily-Text-keyboard)", "fontSize-Text-keyboard": "var(--xmlui-fontSize-Text-keyboard)", "fontWeight-Text-keyboard": "var(--xmlui-fontWeight-Text-keyboard)", "fontStyle-Text-keyboard": "var(--xmlui-fontStyle-Text-keyboard)", "fontStretch-Text-keyboard": "var(--xmlui-fontStretch-Text-keyboard)", "textDecorationLine-Text-keyboard": "var(--xmlui-textDecorationLine-Text-keyboard)", "textDecorationColor-Text-keyboard": "var(--xmlui-textDecorationColor-Text-keyboard)", "textDecorationStyle-Text-keyboard": "var(--xmlui-textDecorationStyle-Text-keyboard)", "textDecorationThickness-Text-keyboard": "var(--xmlui-textDecorationThickness-Text-keyboard)", "textUnderlineOffset-Text-keyboard": "var(--xmlui-textUnderlineOffset-Text-keyboard)", "lineHeight-Text-keyboard": "var(--xmlui-lineHeight-Text-keyboard)", "textColor-Text-keyboard": "var(--xmlui-textColor-Text-keyboard)", "backgroundColor-Text-keyboard": "var(--xmlui-backgroundColor-Text-keyboard)", "borderRadius-Text-keyboard": "var(--xmlui-borderRadius-Text-keyboard)", "borderColor-Text-keyboard": "var(--xmlui-borderColor-Text-keyboard)", "borderWidth-Text-keyboard": "var(--xmlui-borderWidth-Text-keyboard)", "borderStyle-Text-keyboard": "var(--xmlui-borderStyle-Text-keyboard)", "marginTop-Text-keyboard": "var(--xmlui-marginTop-Text-keyboard)", "marginBottom-Text-keyboard": "var(--xmlui-marginBottom-Text-keyboard)", "textTransform-Text-keyboard": "var(--xmlui-textTransform-Text-keyboard)", "verticalAlign-Text-keyboard": "var(--xmlui-verticalAlign-Text-keyboard)", "letterSpacing-Text-keyboard": "var(--xmlui-letterSpacing-Text-keyboard)", "fontFamily-Text-marked": "var(--xmlui-fontFamily-Text-marked)", "fontSize-Text-marked": "var(--xmlui-fontSize-Text-marked)", "fontWeight-Text-marked": "var(--xmlui-fontWeight-Text-marked)", "fontStyle-Text-marked": "var(--xmlui-fontStyle-Text-marked)", "fontStretch-Text-marked": "var(--xmlui-fontStretch-Text-marked)", "textDecorationLine-Text-marked": "var(--xmlui-textDecorationLine-Text-marked)", "textDecorationColor-Text-marked": "var(--xmlui-textDecorationColor-Text-marked)", "textDecorationStyle-Text-marked": "var(--xmlui-textDecorationStyle-Text-marked)", "textDecorationThickness-Text-marked": "var(--xmlui-textDecorationThickness-Text-marked)", "textUnderlineOffset-Text-marked": "var(--xmlui-textUnderlineOffset-Text-marked)", "lineHeight-Text-marked": "var(--xmlui-lineHeight-Text-marked)", "textColor-Text-marked": "var(--xmlui-textColor-Text-marked)", "backgroundColor-Text-marked": "var(--xmlui-backgroundColor-Text-marked)", "borderRadius-Text-marked": "var(--xmlui-borderRadius-Text-marked)", "borderColor-Text-marked": "var(--xmlui-borderColor-Text-marked)", "borderWidth-Text-marked": "var(--xmlui-borderWidth-Text-marked)", "borderStyle-Text-marked": "var(--xmlui-borderStyle-Text-marked)", "marginTop-Text-marked": "var(--xmlui-marginTop-Text-marked)", "marginBottom-Text-marked": "var(--xmlui-marginBottom-Text-marked)", "textTransform-Text-marked": "var(--xmlui-textTransform-Text-marked)", "verticalAlign-Text-marked": "var(--xmlui-verticalAlign-Text-marked)", "letterSpacing-Text-marked": "var(--xmlui-letterSpacing-Text-marked)", "fontFamily-Text-mono": "var(--xmlui-fontFamily-Text-mono)", "fontSize-Text-mono": "var(--xmlui-fontSize-Text-mono)", "fontWeight-Text-mono": "var(--xmlui-fontWeight-Text-mono)", "fontStyle-Text-mono": "var(--xmlui-fontStyle-Text-mono)", "fontStretch-Text-mono": "var(--xmlui-fontStretch-Text-mono)", "textDecorationLine-Text-mono": "var(--xmlui-textDecorationLine-Text-mono)", "textDecorationColor-Text-mono": "var(--xmlui-textDecorationColor-Text-mono)", "textDecorationStyle-Text-mono": "var(--xmlui-textDecorationStyle-Text-mono)", "textDecorationThickness-Text-mono": "var(--xmlui-textDecorationThickness-Text-mono)", "textUnderlineOffset-Text-mono": "var(--xmlui-textUnderlineOffset-Text-mono)", "lineHeight-Text-mono": "var(--xmlui-lineHeight-Text-mono)", "textColor-Text-mono": "var(--xmlui-textColor-Text-mono)", "backgroundColor-Text-mono": "var(--xmlui-backgroundColor-Text-mono)", "borderRadius-Text-mono": "var(--xmlui-borderRadius-Text-mono)", "borderColor-Text-mono": "var(--xmlui-borderColor-Text-mono)", "borderWidth-Text-mono": "var(--xmlui-borderWidth-Text-mono)", "borderStyle-Text-mono": "var(--xmlui-borderStyle-Text-mono)", "marginTop-Text-mono": "var(--xmlui-marginTop-Text-mono)", "marginBottom-Text-mono": "var(--xmlui-marginBottom-Text-mono)", "textTransform-Text-mono": "var(--xmlui-textTransform-Text-mono)", "verticalAlign-Text-mono": "var(--xmlui-verticalAlign-Text-mono)", "letterSpacing-Text-mono": "var(--xmlui-letterSpacing-Text-mono)", "fontFamily-Text-sample": "var(--xmlui-fontFamily-Text-sample)", "fontSize-Text-sample": "var(--xmlui-fontSize-Text-sample)", "fontWeight-Text-sample": "var(--xmlui-fontWeight-Text-sample)", "fontStyle-Text-sample": "var(--xmlui-fontStyle-Text-sample)", "fontStretch-Text-sample": "var(--xmlui-fontStretch-Text-sample)", "textDecorationLine-Text-sample": "var(--xmlui-textDecorationLine-Text-sample)", "textDecorationColor-Text-sample": "var(--xmlui-textDecorationColor-Text-sample)", "textDecorationStyle-Text-sample": "var(--xmlui-textDecorationStyle-Text-sample)", "textDecorationThickness-Text-sample": "var(--xmlui-textDecorationThickness-Text-sample)", "textUnderlineOffset-Text-sample": "var(--xmlui-textUnderlineOffset-Text-sample)", "lineHeight-Text-sample": "var(--xmlui-lineHeight-Text-sample)", "textColor-Text-sample": "var(--xmlui-textColor-Text-sample)", "backgroundColor-Text-sample": "var(--xmlui-backgroundColor-Text-sample)", "borderRadius-Text-sample": "var(--xmlui-borderRadius-Text-sample)", "borderColor-Text-sample": "var(--xmlui-borderColor-Text-sample)", "borderWidth-Text-sample": "var(--xmlui-borderWidth-Text-sample)", "borderStyle-Text-sample": "var(--xmlui-borderStyle-Text-sample)", "marginTop-Text-sample": "var(--xmlui-marginTop-Text-sample)", "marginBottom-Text-sample": "var(--xmlui-marginBottom-Text-sample)", "textTransform-Text-sample": "var(--xmlui-textTransform-Text-sample)", "verticalAlign-Text-sample": "var(--xmlui-verticalAlign-Text-sample)", "letterSpacing-Text-sample": "var(--xmlui-letterSpacing-Text-sample)", "fontFamily-Text-sup": "var(--xmlui-fontFamily-Text-sup)", "fontSize-Text-sup": "var(--xmlui-fontSize-Text-sup)", "fontWeight-Text-sup": "var(--xmlui-fontWeight-Text-sup)", "fontStyle-Text-sup": "var(--xmlui-fontStyle-Text-sup)", "fontStretch-Text-sup": "var(--xmlui-fontStretch-Text-sup)", "textDecorationLine-Text-sup": "var(--xmlui-textDecorationLine-Text-sup)", "textDecorationColor-Text-sup": "var(--xmlui-textDecorationColor-Text-sup)", "textDecorationStyle-Text-sup": "var(--xmlui-textDecorationStyle-Text-sup)", "textDecorationThickness-Text-sup": "var(--xmlui-textDecorationThickness-Text-sup)", "textUnderlineOffset-Text-sup": "var(--xmlui-textUnderlineOffset-Text-sup)", "lineHeight-Text-sup": "var(--xmlui-lineHeight-Text-sup)", "textColor-Text-sup": "var(--xmlui-textColor-Text-sup)", "backgroundColor-Text-sup": "var(--xmlui-backgroundColor-Text-sup)", "borderRadius-Text-sup": "var(--xmlui-borderRadius-Text-sup)", "borderColor-Text-sup": "var(--xmlui-borderColor-Text-sup)", "borderWidth-Text-sup": "var(--xmlui-borderWidth-Text-sup)", "borderStyle-Text-sup": "var(--xmlui-borderStyle-Text-sup)", "marginTop-Text-sup": "var(--xmlui-marginTop-Text-sup)", "marginBottom-Text-sup": "var(--xmlui-marginBottom-Text-sup)", "textTransform-Text-sup": "var(--xmlui-textTransform-Text-sup)", "verticalAlign-Text-sup": "var(--xmlui-verticalAlign-Text-sup)", "letterSpacing-Text-sup": "var(--xmlui-letterSpacing-Text-sup)", "fontFamily-Text-sub": "var(--xmlui-fontFamily-Text-sub)", "fontSize-Text-sub": "var(--xmlui-fontSize-Text-sub)", "fontWeight-Text-sub": "var(--xmlui-fontWeight-Text-sub)", "fontStyle-Text-sub": "var(--xmlui-fontStyle-Text-sub)", "fontStretch-Text-sub": "var(--xmlui-fontStretch-Text-sub)", "textDecorationLine-Text-sub": "var(--xmlui-textDecorationLine-Text-sub)", "textDecorationColor-Text-sub": "var(--xmlui-textDecorationColor-Text-sub)", "textDecorationStyle-Text-sub": "var(--xmlui-textDecorationStyle-Text-sub)", "textDecorationThickness-Text-sub": "var(--xmlui-textDecorationThickness-Text-sub)", "textUnderlineOffset-Text-sub": "var(--xmlui-textUnderlineOffset-Text-sub)", "lineHeight-Text-sub": "var(--xmlui-lineHeight-Text-sub)", "textColor-Text-sub": "var(--xmlui-textColor-Text-sub)", "backgroundColor-Text-sub": "var(--xmlui-backgroundColor-Text-sub)", "borderRadius-Text-sub": "var(--xmlui-borderRadius-Text-sub)", "borderColor-Text-sub": "var(--xmlui-borderColor-Text-sub)", "borderWidth-Text-sub": "var(--xmlui-borderWidth-Text-sub)", "borderStyle-Text-sub": "var(--xmlui-borderStyle-Text-sub)", "marginTop-Text-sub": "var(--xmlui-marginTop-Text-sub)", "marginBottom-Text-sub": "var(--xmlui-marginBottom-Text-sub)", "textTransform-Text-sub": "var(--xmlui-textTransform-Text-sub)", "verticalAlign-Text-sub": "var(--xmlui-verticalAlign-Text-sub)", "letterSpacing-Text-sub": "var(--xmlui-letterSpacing-Text-sub)", "fontFamily-Text-var": "var(--xmlui-fontFamily-Text-var)", "fontSize-Text-var": "var(--xmlui-fontSize-Text-var)", "fontWeight-Text-var": "var(--xmlui-fontWeight-Text-var)", "fontStyle-Text-var": "var(--xmlui-fontStyle-Text-var)", "fontStretch-Text-var": "var(--xmlui-fontStretch-Text-var)", "textDecorationLine-Text-var": "var(--xmlui-textDecorationLine-Text-var)", "textDecorationColor-Text-var": "var(--xmlui-textDecorationColor-Text-var)", "textDecorationStyle-Text-var": "var(--xmlui-textDecorationStyle-Text-var)", "textDecorationThickness-Text-var": "var(--xmlui-textDecorationThickness-Text-var)", "textUnderlineOffset-Text-var": "var(--xmlui-textUnderlineOffset-Text-var)", "lineHeight-Text-var": "var(--xmlui-lineHeight-Text-var)", "textColor-Text-var": "var(--xmlui-textColor-Text-var)", "backgroundColor-Text-var": "var(--xmlui-backgroundColor-Text-var)", "borderRadius-Text-var": "var(--xmlui-borderRadius-Text-var)", "borderColor-Text-var": "var(--xmlui-borderColor-Text-var)", "borderWidth-Text-var": "var(--xmlui-borderWidth-Text-var)", "borderStyle-Text-var": "var(--xmlui-borderStyle-Text-var)", "marginTop-Text-var": "var(--xmlui-marginTop-Text-var)", "marginBottom-Text-var": "var(--xmlui-marginBottom-Text-var)", "textTransform-Text-var": "var(--xmlui-textTransform-Text-var)", "verticalAlign-Text-var": "var(--xmlui-verticalAlign-Text-var)", "letterSpacing-Text-var": "var(--xmlui-letterSpacing-Text-var)", "fontFamily-Text-title": "var(--xmlui-fontFamily-Text-title)", "fontSize-Text-title": "var(--xmlui-fontSize-Text-title)", "fontWeight-Text-title": "var(--xmlui-fontWeight-Text-title)", "fontStyle-Text-title": "var(--xmlui-fontStyle-Text-title)", "fontStretch-Text-title": "var(--xmlui-fontStretch-Text-title)", "textDecorationLine-Text-title": "var(--xmlui-textDecorationLine-Text-title)", "textDecorationColor-Text-title": "var(--xmlui-textDecorationColor-Text-title)", "textDecorationStyle-Text-title": "var(--xmlui-textDecorationStyle-Text-title)", "textDecorationThickness-Text-title": "var(--xmlui-textDecorationThickness-Text-title)", "textUnderlineOffset-Text-title": "var(--xmlui-textUnderlineOffset-Text-title)", "lineHeight-Text-title": "var(--xmlui-lineHeight-Text-title)", "textColor-Text-title": "var(--xmlui-textColor-Text-title)", "backgroundColor-Text-title": "var(--xmlui-backgroundColor-Text-title)", "borderRadius-Text-title": "var(--xmlui-borderRadius-Text-title)", "borderColor-Text-title": "var(--xmlui-borderColor-Text-title)", "borderWidth-Text-title": "var(--xmlui-borderWidth-Text-title)", "borderStyle-Text-title": "var(--xmlui-borderStyle-Text-title)", "marginTop-Text-title": "var(--xmlui-marginTop-Text-title)", "marginBottom-Text-title": "var(--xmlui-marginBottom-Text-title)", "textTransform-Text-title": "var(--xmlui-textTransform-Text-title)", "verticalAlign-Text-title": "var(--xmlui-verticalAlign-Text-title)", "letterSpacing-Text-title": "var(--xmlui-letterSpacing-Text-title)", "fontFamily-Text-subtitle": "var(--xmlui-fontFamily-Text-subtitle)", "fontSize-Text-subtitle": "var(--xmlui-fontSize-Text-subtitle)", "fontWeight-Text-subtitle": "var(--xmlui-fontWeight-Text-subtitle)", "fontStyle-Text-subtitle": "var(--xmlui-fontStyle-Text-subtitle)", "fontStretch-Text-subtitle": "var(--xmlui-fontStretch-Text-subtitle)", "textDecorationLine-Text-subtitle": "var(--xmlui-textDecorationLine-Text-subtitle)", "textDecorationColor-Text-subtitle": "var(--xmlui-textDecorationColor-Text-subtitle)", "textDecorationStyle-Text-subtitle": "var(--xmlui-textDecorationStyle-Text-subtitle)", "textDecorationThickness-Text-subtitle": "var(--xmlui-textDecorationThickness-Text-subtitle)", "textUnderlineOffset-Text-subtitle": "var(--xmlui-textUnderlineOffset-Text-subtitle)", "lineHeight-Text-subtitle": "var(--xmlui-lineHeight-Text-subtitle)", "textColor-Text-subtitle": "var(--xmlui-textColor-Text-subtitle)", "backgroundColor-Text-subtitle": "var(--xmlui-backgroundColor-Text-subtitle)", "borderRadius-Text-subtitle": "var(--xmlui-borderRadius-Text-subtitle)", "borderColor-Text-subtitle": "var(--xmlui-borderColor-Text-subtitle)", "borderWidth-Text-subtitle": "var(--xmlui-borderWidth-Text-subtitle)", "borderStyle-Text-subtitle": "var(--xmlui-borderStyle-Text-subtitle)", "marginTop-Text-subtitle": "var(--xmlui-marginTop-Text-subtitle)", "marginBottom-Text-subtitle": "var(--xmlui-marginBottom-Text-subtitle)", "textTransform-Text-subtitle": "var(--xmlui-textTransform-Text-subtitle)", "verticalAlign-Text-subtitle": "var(--xmlui-verticalAlign-Text-subtitle)", "letterSpacing-Text-subtitle": "var(--xmlui-letterSpacing-Text-subtitle)", "fontFamily-Text-small": "var(--xmlui-fontFamily-Text-small)", "fontSize-Text-small": "var(--xmlui-fontSize-Text-small)", "fontWeight-Text-small": "var(--xmlui-fontWeight-Text-small)", "fontStyle-Text-small": "var(--xmlui-fontStyle-Text-small)", "fontStretch-Text-small": "var(--xmlui-fontStretch-Text-small)", "textDecorationLine-Text-small": "var(--xmlui-textDecorationLine-Text-small)", "textDecorationColor-Text-small": "var(--xmlui-textDecorationColor-Text-small)", "textDecorationStyle-Text-small": "var(--xmlui-textDecorationStyle-Text-small)", "textDecorationThickness-Text-small": "var(--xmlui-textDecorationThickness-Text-small)", "textUnderlineOffset-Text-small": "var(--xmlui-textUnderlineOffset-Text-small)", "lineHeight-Text-small": "var(--xmlui-lineHeight-Text-small)", "textColor-Text-small": "var(--xmlui-textColor-Text-small)", "backgroundColor-Text-small": "var(--xmlui-backgroundColor-Text-small)", "borderRadius-Text-small": "var(--xmlui-borderRadius-Text-small)", "borderColor-Text-small": "var(--xmlui-borderColor-Text-small)", "borderWidth-Text-small": "var(--xmlui-borderWidth-Text-small)", "borderStyle-Text-small": "var(--xmlui-borderStyle-Text-small)", "marginTop-Text-small": "var(--xmlui-marginTop-Text-small)", "marginBottom-Text-small": "var(--xmlui-marginBottom-Text-small)", "textTransform-Text-small": "var(--xmlui-textTransform-Text-small)", "verticalAlign-Text-small": "var(--xmlui-verticalAlign-Text-small)", "letterSpacing-Text-small": "var(--xmlui-letterSpacing-Text-small)", "fontFamily-Text-caption": "var(--xmlui-fontFamily-Text-caption)", "fontSize-Text-caption": "var(--xmlui-fontSize-Text-caption)", "fontWeight-Text-caption": "var(--xmlui-fontWeight-Text-caption)", "fontStyle-Text-caption": "var(--xmlui-fontStyle-Text-caption)", "fontStretch-Text-caption": "var(--xmlui-fontStretch-Text-caption)", "textDecorationLine-Text-caption": "var(--xmlui-textDecorationLine-Text-caption)", "textDecorationColor-Text-caption": "var(--xmlui-textDecorationColor-Text-caption)", "textDecorationStyle-Text-caption": "var(--xmlui-textDecorationStyle-Text-caption)", "textDecorationThickness-Text-caption": "var(--xmlui-textDecorationThickness-Text-caption)", "textUnderlineOffset-Text-caption": "var(--xmlui-textUnderlineOffset-Text-caption)", "lineHeight-Text-caption": "var(--xmlui-lineHeight-Text-caption)", "textColor-Text-caption": "var(--xmlui-textColor-Text-caption)", "backgroundColor-Text-caption": "var(--xmlui-backgroundColor-Text-caption)", "borderRadius-Text-caption": "var(--xmlui-borderRadius-Text-caption)", "borderColor-Text-caption": "var(--xmlui-borderColor-Text-caption)", "borderWidth-Text-caption": "var(--xmlui-borderWidth-Text-caption)", "borderStyle-Text-caption": "var(--xmlui-borderStyle-Text-caption)", "marginTop-Text-caption": "var(--xmlui-marginTop-Text-caption)", "marginBottom-Text-caption": "var(--xmlui-marginBottom-Text-caption)", "textTransform-Text-caption": "var(--xmlui-textTransform-Text-caption)", "verticalAlign-Text-caption": "var(--xmlui-verticalAlign-Text-caption)", "letterSpacing-Text-caption": "var(--xmlui-letterSpacing-Text-caption)", "fontFamily-Text-placeholder": "var(--xmlui-fontFamily-Text-placeholder)", "fontSize-Text-placeholder": "var(--xmlui-fontSize-Text-placeholder)", "fontWeight-Text-placeholder": "var(--xmlui-fontWeight-Text-placeholder)", "fontStyle-Text-placeholder": "var(--xmlui-fontStyle-Text-placeholder)", "fontStretch-Text-placeholder": "var(--xmlui-fontStretch-Text-placeholder)", "textDecorationLine-Text-placeholder": "var(--xmlui-textDecorationLine-Text-placeholder)", "textDecorationColor-Text-placeholder": "var(--xmlui-textDecorationColor-Text-placeholder)", "textDecorationStyle-Text-placeholder": "var(--xmlui-textDecorationStyle-Text-placeholder)", "textDecorationThickness-Text-placeholder": "var(--xmlui-textDecorationThickness-Text-placeholder)", "textUnderlineOffset-Text-placeholder": "var(--xmlui-textUnderlineOffset-Text-placeholder)", "lineHeight-Text-placeholder": "var(--xmlui-lineHeight-Text-placeholder)", "textColor-Text-placeholder": "var(--xmlui-textColor-Text-placeholder)", "backgroundColor-Text-placeholder": "var(--xmlui-backgroundColor-Text-placeholder)", "borderRadius-Text-placeholder": "var(--xmlui-borderRadius-Text-placeholder)", "borderColor-Text-placeholder": "var(--xmlui-borderColor-Text-placeholder)", "borderWidth-Text-placeholder": "var(--xmlui-borderWidth-Text-placeholder)", "borderStyle-Text-placeholder": "var(--xmlui-borderStyle-Text-placeholder)", "marginTop-Text-placeholder": "var(--xmlui-marginTop-Text-placeholder)", "marginBottom-Text-placeholder": "var(--xmlui-marginBottom-Text-placeholder)", "textTransform-Text-placeholder": "var(--xmlui-textTransform-Text-placeholder)", "verticalAlign-Text-placeholder": "var(--xmlui-verticalAlign-Text-placeholder)", "letterSpacing-Text-placeholder": "var(--xmlui-letterSpacing-Text-placeholder)", "fontFamily-Text-paragraph": "var(--xmlui-fontFamily-Text-paragraph)", "fontSize-Text-paragraph": "var(--xmlui-fontSize-Text-paragraph)", "fontWeight-Text-paragraph": "var(--xmlui-fontWeight-Text-paragraph)", "fontStyle-Text-paragraph": "var(--xmlui-fontStyle-Text-paragraph)", "fontStretch-Text-paragraph": "var(--xmlui-fontStretch-Text-paragraph)", "textDecorationLine-Text-paragraph": "var(--xmlui-textDecorationLine-Text-paragraph)", "textDecorationColor-Text-paragraph": "var(--xmlui-textDecorationColor-Text-paragraph)", "textDecorationStyle-Text-paragraph": "var(--xmlui-textDecorationStyle-Text-paragraph)", "textDecorationThickness-Text-paragraph": "var(--xmlui-textDecorationThickness-Text-paragraph)", "textUnderlineOffset-Text-paragraph": "var(--xmlui-textUnderlineOffset-Text-paragraph)", "lineHeight-Text-paragraph": "var(--xmlui-lineHeight-Text-paragraph)", "textColor-Text-paragraph": "var(--xmlui-textColor-Text-paragraph)", "backgroundColor-Text-paragraph": "var(--xmlui-backgroundColor-Text-paragraph)", "borderRadius-Text-paragraph": "var(--xmlui-borderRadius-Text-paragraph)", "borderColor-Text-paragraph": "var(--xmlui-borderColor-Text-paragraph)", "borderWidth-Text-paragraph": "var(--xmlui-borderWidth-Text-paragraph)", "borderStyle-Text-paragraph": "var(--xmlui-borderStyle-Text-paragraph)", "marginTop-Text-paragraph": "var(--xmlui-marginTop-Text-paragraph)", "marginBottom-Text-paragraph": "var(--xmlui-marginBottom-Text-paragraph)", "textTransform-Text-paragraph": "var(--xmlui-textTransform-Text-paragraph)", "verticalAlign-Text-paragraph": "var(--xmlui-verticalAlign-Text-paragraph)", "letterSpacing-Text-paragraph": "var(--xmlui-letterSpacing-Text-paragraph)", "fontFamily-Text-subheading": "var(--xmlui-fontFamily-Text-subheading)", "fontSize-Text-subheading": "var(--xmlui-fontSize-Text-subheading)", "fontWeight-Text-subheading": "var(--xmlui-fontWeight-Text-subheading)", "fontStyle-Text-subheading": "var(--xmlui-fontStyle-Text-subheading)", "fontStretch-Text-subheading": "var(--xmlui-fontStretch-Text-subheading)", "textDecorationLine-Text-subheading": "var(--xmlui-textDecorationLine-Text-subheading)", "textDecorationColor-Text-subheading": "var(--xmlui-textDecorationColor-Text-subheading)", "textDecorationStyle-Text-subheading": "var(--xmlui-textDecorationStyle-Text-subheading)", "textDecorationThickness-Text-subheading": "var(--xmlui-textDecorationThickness-Text-subheading)", "textUnderlineOffset-Text-subheading": "var(--xmlui-textUnderlineOffset-Text-subheading)", "lineHeight-Text-subheading": "var(--xmlui-lineHeight-Text-subheading)", "textColor-Text-subheading": "var(--xmlui-textColor-Text-subheading)", "backgroundColor-Text-subheading": "var(--xmlui-backgroundColor-Text-subheading)", "borderRadius-Text-subheading": "var(--xmlui-borderRadius-Text-subheading)", "borderColor-Text-subheading": "var(--xmlui-borderColor-Text-subheading)", "borderWidth-Text-subheading": "var(--xmlui-borderWidth-Text-subheading)", "borderStyle-Text-subheading": "var(--xmlui-borderStyle-Text-subheading)", "marginTop-Text-subheading": "var(--xmlui-marginTop-Text-subheading)", "marginBottom-Text-subheading": "var(--xmlui-marginBottom-Text-subheading)", "textTransform-Text-subheading": "var(--xmlui-textTransform-Text-subheading)", "verticalAlign-Text-subheading": "var(--xmlui-verticalAlign-Text-subheading)", "letterSpacing-Text-subheading": "var(--xmlui-letterSpacing-Text-subheading)", "fontFamily-Text-tableheading": "var(--xmlui-fontFamily-Text-tableheading)", "fontSize-Text-tableheading": "var(--xmlui-fontSize-Text-tableheading)", "fontWeight-Text-tableheading": "var(--xmlui-fontWeight-Text-tableheading)", "fontStyle-Text-tableheading": "var(--xmlui-fontStyle-Text-tableheading)", "fontStretch-Text-tableheading": "var(--xmlui-fontStretch-Text-tableheading)", "textDecorationLine-Text-tableheading": "var(--xmlui-textDecorationLine-Text-tableheading)", "textDecorationColor-Text-tableheading": "var(--xmlui-textDecorationColor-Text-tableheading)", "textDecorationStyle-Text-tableheading": "var(--xmlui-textDecorationStyle-Text-tableheading)", "textDecorationThickness-Text-tableheading": "var(--xmlui-textDecorationThickness-Text-tableheading)", "textUnderlineOffset-Text-tableheading": "var(--xmlui-textUnderlineOffset-Text-tableheading)", "lineHeight-Text-tableheading": "var(--xmlui-lineHeight-Text-tableheading)", "textColor-Text-tableheading": "var(--xmlui-textColor-Text-tableheading)", "backgroundColor-Text-tableheading": "var(--xmlui-backgroundColor-Text-tableheading)", "borderRadius-Text-tableheading": "var(--xmlui-borderRadius-Text-tableheading)", "borderColor-Text-tableheading": "var(--xmlui-borderColor-Text-tableheading)", "borderWidth-Text-tableheading": "var(--xmlui-borderWidth-Text-tableheading)", "borderStyle-Text-tableheading": "var(--xmlui-borderStyle-Text-tableheading)", "marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)", "marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)", "textTransform-Text-tableheading": "var(--xmlui-textTransform-Text-tableheading)", "verticalAlign-Text-tableheading": "var(--xmlui-verticalAlign-Text-tableheading)", "letterSpacing-Text-tableheading": "var(--xmlui-letterSpacing-Text-tableheading)", "fontFamily-Text-secondary": "var(--xmlui-fontFamily-Text-secondary)", "fontSize-Text-secondary": "var(--xmlui-fontSize-Text-secondary)", "fontWeight-Text-secondary": "var(--xmlui-fontWeight-Text-secondary)", "fontStyle-Text-secondary": "var(--xmlui-fontStyle-Text-secondary)", "fontStretch-Text-secondary": "var(--xmlui-fontStretch-Text-secondary)", "textDecorationLine-Text-secondary": "var(--xmlui-textDecorationLine-Text-secondary)", "textDecorationColor-Text-secondary": "var(--xmlui-textDecorationColor-Text-secondary)", "textDecorationStyle-Text-secondary": "var(--xmlui-textDecorationStyle-Text-secondary)", "textDecorationThickness-Text-secondary": "var(--xmlui-textDecorationThickness-Text-secondary)", "textUnderlineOffset-Text-secondary": "var(--xmlui-textUnderlineOffset-Text-secondary)", "lineHeight-Text-secondary": "var(--xmlui-lineHeight-Text-secondary)", "textColor-Text-secondary": "var(--xmlui-textColor-Text-secondary)", "backgroundColor-Text-secondary": "var(--xmlui-backgroundColor-Text-secondary)", "borderRadius-Text-secondary": "var(--xmlui-borderRadius-Text-secondary)", "borderColor-Text-secondary": "var(--xmlui-borderColor-Text-secondary)", "borderWidth-Text-secondary": "var(--xmlui-borderWidth-Text-secondary)", "borderStyle-Text-secondary": "var(--xmlui-borderStyle-Text-secondary)", "marginTop-Text-secondary": "var(--xmlui-marginTop-Text-secondary)", "marginBottom-Text-secondary": "var(--xmlui-marginBottom-Text-secondary)", "textTransform-Text-secondary": "var(--xmlui-textTransform-Text-secondary)", "verticalAlign-Text-secondary": "var(--xmlui-verticalAlign-Text-secondary)", "letterSpacing-Text-secondary": "var(--xmlui-letterSpacing-Text-secondary)"}'`;
1454
+ const text = "_text_uu1r2_13";
1455
+ const markdown = "_markdown_uu1r2_20";
1456
+ const abbr = "_abbr_uu1r2_52";
1457
+ const cite = "_cite_uu1r2_81";
1458
+ const codefence = "_codefence_uu1r2_110";
1459
+ const code = "_code_uu1r2_110";
1460
+ const deleted = "_deleted_uu1r2_173";
1461
+ const inserted = "_inserted_uu1r2_217";
1462
+ const keyboard = "_keyboard_uu1r2_261";
1463
+ const marked = "_marked_uu1r2_290";
1464
+ const mono = "_mono_uu1r2_334";
1465
+ const sample = "_sample_uu1r2_363";
1466
+ const sup = "_sup_uu1r2_392";
1467
+ const sub = "_sub_uu1r2_421";
1468
+ const title = "_title_uu1r2_479";
1469
+ const subtitle = "_subtitle_uu1r2_508";
1470
+ const small = "_small_uu1r2_537";
1471
+ const caption$1 = "_caption_uu1r2_566";
1472
+ const placeholder$2 = "_placeholder_uu1r2_595";
1473
+ const paragraph = "_paragraph_uu1r2_624";
1474
+ const subheading = "_subheading_uu1r2_653";
1475
+ const tableheading = "_tableheading_uu1r2_682";
1476
+ const secondary = "_secondary_uu1r2_711";
1477
+ const strong = "_strong_uu1r2_740";
1478
+ const truncateOverflow$1 = "_truncateOverflow_uu1r2_748";
1479
+ const preserveLinebreaks$1 = "_preserveLinebreaks_uu1r2_755";
1480
+ const noEllipsis$1 = "_noEllipsis_uu1r2_759";
1483
1481
  const styles$O = {
1484
1482
  themeVars: themeVars$L,
1485
1483
  text,
1484
+ markdown,
1486
1485
  abbr,
1487
1486
  cite,
1488
1487
  codefence,
@@ -1495,7 +1494,7 @@ const styles$O = {
1495
1494
  sample,
1496
1495
  sup,
1497
1496
  sub,
1498
- "var": "_var_1x9lo_421",
1497
+ "var": "_var_uu1r2_450",
1499
1498
  title,
1500
1499
  subtitle,
1501
1500
  small,
@@ -1674,7 +1673,7 @@ const bottom = "_bottom_rshqv_31";
1674
1673
  const start = "_start_rshqv_36";
1675
1674
  const shrinkToLabel = "_shrinkToLabel_rshqv_42";
1676
1675
  const inputLabel = "_inputLabel_rshqv_45";
1677
- const disabled$6 = "_disabled_rshqv_58";
1676
+ const disabled$7 = "_disabled_rshqv_58";
1678
1677
  const labelBreak = "_labelBreak_rshqv_62";
1679
1678
  const required = "_required_rshqv_66";
1680
1679
  const requiredMark = "_requiredMark_rshqv_73";
@@ -1687,7 +1686,7 @@ const styles$N = {
1687
1686
  start,
1688
1687
  shrinkToLabel,
1689
1688
  inputLabel,
1690
- disabled: disabled$6,
1689
+ disabled: disabled$7,
1691
1690
  labelBreak,
1692
1691
  required,
1693
1692
  requiredMark
@@ -3153,21 +3152,6 @@ function IconBase(props) {
3153
3152
  function BiErrorCircle(props) {
3154
3153
  return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M11.953 2C6.465 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.493 2 11.953 2zM12 20c-4.411 0-8-3.589-8-8s3.567-8 7.953-8C16.391 4 20 7.589 20 12s-3.589 8-8 8z" } }, { "tag": "path", "attr": { "d": "M11 7h2v7h-2zm0 8h2v2h-2z" } }] })(props);
3155
3154
  }
3156
- function FiChevronLeft(props) {
3157
- return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "15 18 9 12 15 6" } }] })(props);
3158
- }
3159
- function FiChevronRight(props) {
3160
- return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "9 18 15 12 9 6" } }] })(props);
3161
- }
3162
- function FiChevronsLeft(props) {
3163
- return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "11 17 6 12 11 7" } }, { "tag": "polyline", "attr": { "points": "18 17 13 12 18 7" } }] })(props);
3164
- }
3165
- function FiChevronsRight(props) {
3166
- return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "13 17 18 12 13 7" } }, { "tag": "polyline", "attr": { "points": "6 17 11 12 6 7" } }] })(props);
3167
- }
3168
- function AiOutlineWarning(props) {
3169
- return GenIcon({ "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M464 720a48 48 0 1 0 96 0 48 48 0 1 0-96 0zm16-304v184c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V416c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8zm475.7 440l-416-720c-6.2-10.7-16.9-16-27.7-16s-21.6 5.3-27.7 16l-416 720C56 877.4 71.4 904 96 904h832c24.6 0 40-26.6 27.7-48zm-783.5-27.9L512 239.9l339.8 588.2H172.2z" } }] })(props);
3170
- }
3171
3155
  const COMP$13 = "Theme";
3172
3156
  const ThemeMd = createMetadata({
3173
3157
  description: `The \`${COMP$13}\` component provides a way to define a particular theming context for its nested components. The XMLUI framework uses \`${COMP$13}\` to define the default theming context for all of its child components. Theme variables and theme settings only work in this context.`,
@@ -3274,7 +3258,7 @@ const base = "_base_mnwtn_13";
3274
3258
  const includeHoverIndicator = "_includeHoverIndicator_mnwtn_61";
3275
3259
  const displayActive = "_displayActive_mnwtn_71";
3276
3260
  const navItemActive = "_navItemActive_mnwtn_108";
3277
- const disabled$5 = "_disabled_mnwtn_143";
3261
+ const disabled$6 = "_disabled_mnwtn_143";
3278
3262
  const vertical$2 = "_vertical_mnwtn_147";
3279
3263
  const styles$I = {
3280
3264
  themeVars: themeVars$F,
@@ -3283,7 +3267,7 @@ const styles$I = {
3283
3267
  includeHoverIndicator,
3284
3268
  displayActive,
3285
3269
  navItemActive,
3286
- disabled: disabled$5,
3270
+ disabled: disabled$6,
3287
3271
  vertical: vertical$2
3288
3272
  };
3289
3273
  function createUrlWithQueryParams(to) {
@@ -3620,10 +3604,10 @@ const styles$G = {
3620
3604
  lg,
3621
3605
  clickable
3622
3606
  };
3623
- const defaultProps$g = {
3607
+ const defaultProps$f = {
3624
3608
  size: "sm"
3625
3609
  };
3626
- const Avatar = forwardRef(function Avatar2({ size = defaultProps$g.size, url, name, style, onClick, ...rest }, ref) {
3610
+ const Avatar = forwardRef(function Avatar2({ size = defaultProps$f.size, url, name, style, onClick, ...rest }, ref) {
3627
3611
  let abbrev = null;
3628
3612
  if (!url && !!name) {
3629
3613
  abbrev = name.trim().split(" ").filter((word) => !!word.trim().length).map((word) => word[0].toUpperCase()).slice(0, 3);
@@ -3654,7 +3638,7 @@ const AvatarMd = createMetadata({
3654
3638
  description: `This property defines the display size of the ${COMP$$}.`,
3655
3639
  availableValues: sizeMd,
3656
3640
  valueType: "string",
3657
- defaultValue: defaultProps$g.size
3641
+ defaultValue: defaultProps$f.size
3658
3642
  },
3659
3643
  name: {
3660
3644
  description: `This property sets the name value the ${COMP$$} uses to display initials.`,
@@ -3687,10 +3671,10 @@ const styles$F = {
3687
3671
  pill
3688
3672
  };
3689
3673
  const badgeVariantValues = ["badge", "pill"];
3690
- const defaultProps$f = {
3674
+ const defaultProps$e = {
3691
3675
  variant: "badge"
3692
3676
  };
3693
- forwardRef(function Badge2({ children, color, variant = defaultProps$f.variant, style }, forwardedRef) {
3677
+ forwardRef(function Badge2({ children, color, variant = defaultProps$e.variant, style }, forwardedRef) {
3694
3678
  return /* @__PURE__ */ jsx(
3695
3679
  "div",
3696
3680
  {
@@ -3789,13 +3773,13 @@ const styles$E = {
3789
3773
  const themeVars$A = `'{"padding-Link": "var(--xmlui-padding-Link)", "paddingHorizontal-Link": "var(--xmlui-paddingHorizontal-Link, var(--xmlui-padding-Link))", "paddingVertical-Link": "var(--xmlui-paddingVertical-Link, var(--xmlui-padding-Link))", "paddingLeft-Link": "var(--xmlui-paddingLeft-Link, var(--xmlui-paddingHorizontal-Link, var(--xmlui-padding-Link)))", "paddingRight-Link": "var(--xmlui-paddingRight-Link, var(--xmlui-paddingHorizontal-Link, var(--xmlui-padding-Link)))", "paddingTop-Link": "var(--xmlui-paddingTop-Link, var(--xmlui-paddingVertical-Link, var(--xmlui-padding-Link)))", "paddingBottom-Link": "var(--xmlui-paddingBottom-Link, var(--xmlui-paddingVertical-Link, var(--xmlui-padding-Link)))", "padding-icon-Link": "var(--xmlui-padding-icon-Link)", "paddingHorizontal-icon-Link": "var(--xmlui-paddingHorizontal-icon-Link, var(--xmlui-padding-icon-Link))", "paddingVertical-icon-Link": "var(--xmlui-paddingVertical-icon-Link, var(--xmlui-padding-icon-Link))", "paddingLeft-icon-Link": "var(--xmlui-paddingLeft-icon-Link, var(--xmlui-paddingHorizontal-icon-Link, var(--xmlui-padding-icon-Link)))", "paddingRight-icon-Link": "var(--xmlui-paddingRight-icon-Link, var(--xmlui-paddingHorizontal-icon-Link, var(--xmlui-padding-icon-Link)))", "paddingTop-icon-Link": "var(--xmlui-paddingTop-icon-Link, var(--xmlui-paddingVertical-icon-Link, var(--xmlui-padding-icon-Link)))", "paddingBottom-icon-Link": "var(--xmlui-paddingBottom-icon-Link, var(--xmlui-paddingVertical-icon-Link, var(--xmlui-padding-icon-Link)))", "border-Link": "var(--xmlui-border-Link)", "borderHorizontal-Link": "var(--xmlui-borderHorizontal-Link, var(--xmlui-border-Link))", "borderVertical-Link": "var(--xmlui-borderVertical-Link, var(--xmlui-border-Link))", "borderLeft-Link": "var(--xmlui-borderLeft-Link, var(--xmlui-borderHorizontal-Link, var(--xmlui-border-Link)))", "borderRight-Link": "var(--xmlui-borderRight-Link, var(--xmlui-borderHorizontal-Link, var(--xmlui-border-Link)))", "borderTop-Link": "var(--xmlui-borderTop-Link, var(--xmlui-borderVertical-Link, var(--xmlui-border-Link)))", "borderBottom-Link": "var(--xmlui-borderBottom-Link, var(--xmlui-borderVertical-Link, var(--xmlui-border-Link)))", "borderWidth-Link": "var(--xmlui-borderWidth-Link)", "borderHorizontalWidth-Link": "var(--xmlui-borderHorizontalWidth-Link, var(--xmlui-borderWidth-Link))", "borderLeftWidth-Link": "var(--xmlui-borderLeftWidth-Link, var(--xmlui-borderHorizontalWidth-Link, var(--xmlui-borderWidth-Link)))", "borderRightWidth-Link": "var(--xmlui-borderRightWidth-Link, var(--xmlui-borderHorizontalWidth-Link, var(--xmlui-borderWidth-Link)))", "borderVerticalWidth-Link": "var(--xmlui-borderVerticalWidth-Link, var(--xmlui-borderWidth-Link))", "borderTopWidth-Link": "var(--xmlui-borderTopWidth-Link, var(--xmlui-borderVerticalWidth-Link, var(--xmlui-borderWidth-Link)))", "borderBottomWidth-Link": "var(--xmlui-borderBottomWidth-Link, var(--xmlui-borderVerticalWidth-Link, var(--xmlui-borderWidth-Link)))", "borderStyle-Link": "var(--xmlui-borderStyle-Link)", "borderHorizontalStyle-Link": "var(--xmlui-borderHorizontalStyle-Link, var(--xmlui-borderStyle-Link))", "borderLeftStyle-Link": "var(--xmlui-borderLeftStyle-Link, var(--xmlui-borderHorizontalStyle-Link, var(--xmlui-borderStyle-Link)))", "borderRightStyle-Link": "var(--xmlui-borderRightStyle-Link, var(--xmlui-borderHorizontalStyle-Link, var(--xmlui-borderStyle-Link)))", "borderVerticalStyle-Link": "var(--xmlui-borderVerticalStyle-Link, var(--xmlui-borderStyle-Link))", "borderTopStyle-Link": "var(--xmlui-borderTopStyle-Link, var(--xmlui-borderVerticalStyle-Link, var(--xmlui-borderStyle-Link)))", "borderBottomStyle-Link": "var(--xmlui-borderBottomStyle-Link, var(--xmlui-borderVerticalStyle-Link, var(--xmlui-borderStyle-Link)))", "borderColor-Link": "var(--xmlui-borderColor-Link)", "borderHorizontalColor-Link": "var(--xmlui-borderHorizontalColor-Link, var(--xmlui-borderColor-Link))", "borderLeftColor-Link": "var(--xmlui-borderLeftColor-Link, var(--xmlui-borderHorizontalColor-Link, var(--xmlui-borderColor-Link)))", "borderRightColor-Link": "var(--xmlui-borderRightColor-Link, var(--xmlui-borderHorizontalColor-Link, var(--xmlui-borderColor-Link)))", "borderVerticalColor-Link": "var(--xmlui-borderVerticalColor-Link, var(--xmlui-borderColor-Link))", "borderTopColor-Link": "var(--xmlui-borderTopColor-Link, var(--xmlui-borderVerticalColor-Link, var(--xmlui-borderColor-Link)))", "borderBottomColor-Link": "var(--xmlui-borderBottomColor-Link, var(--xmlui-borderVerticalColor-Link, var(--xmlui-borderColor-Link)))", "borderStartStartRadius-Link": "var(--xmlui-borderStartStartRadius-Link, var(--xmlui-borderRadius-Link))", "borderStartEndRadius-Link": "var(--xmlui-borderStartEndRadius-Link, var(--xmlui-borderRadius-Link))", "borderEndStartRadius-Link": "var(--xmlui-borderEndStartRadius-Link, var(--xmlui-borderRadius-Link))", "borderEndEndRadius-Link": "var(--xmlui-borderEndEndRadius-Link, var(--xmlui-borderRadius-Link))", "textColor-Link": "var(--xmlui-textColor-Link)", "textColor-Link--active": "var(--xmlui-textColor-Link--active)", "textColor-Link--hover": "var(--xmlui-textColor-Link--hover)", "textColor-Link--hover--active": "var(--xmlui-textColor-Link--hover--active)", "fontFamily-Link": "var(--xmlui-fontFamily-Link)", "fontSize-Link": "var(--xmlui-fontSize-Link)", "fontWeight-Link": "var(--xmlui-fontWeight-Link)", "fontWeight-Link--active": "var(--xmlui-fontWeight-Link--active)", "textDecorationColor-Link": "var(--xmlui-textDecorationColor-Link)", "textUnderlineOffset-Link": "var(--xmlui-textUnderlineOffset-Link)", "textDecorationLine-Link": "var(--xmlui-textDecorationLine-Link)", "textDecorationStyle-Link": "var(--xmlui-textDecorationStyle-Link)", "textDecorationThickness-Link": "var(--xmlui-textDecorationThickness-Link)", "gap-icon-Link": "var(--xmlui-gap-icon-Link)", "outlineWidth-Link--focus": "var(--xmlui-outlineWidth-Link--focus)", "outlineColor-Link--focus": "var(--xmlui-outlineColor-Link--focus)", "outlineStyle-Link--focus": "var(--xmlui-outlineStyle-Link--focus)", "outlineOffset-Link--focus": "var(--xmlui-outlineOffset-Link--focus)"}'`;
3790
3774
  const container$1 = "_container_1pdwf_13";
3791
3775
  const active$2 = "_active_1pdwf_53";
3792
- const disabled$4 = "_disabled_1pdwf_57";
3776
+ const disabled$5 = "_disabled_1pdwf_57";
3793
3777
  const iconWrapper = "_iconWrapper_1pdwf_73";
3794
3778
  const styles$D = {
3795
3779
  themeVars: themeVars$A,
3796
3780
  container: container$1,
3797
3781
  active: active$2,
3798
- disabled: disabled$4,
3782
+ disabled: disabled$5,
3799
3783
  iconWrapper
3800
3784
  };
3801
3785
  const LocalLink = forwardRef(function LocalLink2(props, forwardedRef) {
@@ -3858,7 +3842,7 @@ const styles$C = {
3858
3842
  preserveLinebreaks,
3859
3843
  noEllipsis
3860
3844
  };
3861
- const defaultProps$e = {
3845
+ const defaultProps$d = {
3862
3846
  level: "h1",
3863
3847
  ellipses: true,
3864
3848
  omitFromToc: false,
@@ -3866,16 +3850,16 @@ const defaultProps$e = {
3866
3850
  };
3867
3851
  const Heading = forwardRef(function Heading2({
3868
3852
  uid,
3869
- level = defaultProps$e.level,
3853
+ level = defaultProps$d.level,
3870
3854
  children,
3871
3855
  sx,
3872
3856
  style,
3873
3857
  title: title2,
3874
- maxLines = defaultProps$e.maxLines,
3858
+ maxLines = defaultProps$d.maxLines,
3875
3859
  preserveLinebreaks: preserveLinebreaks2,
3876
- ellipses = defaultProps$e.ellipses,
3860
+ ellipses = defaultProps$d.ellipses,
3877
3861
  className,
3878
- omitFromToc = defaultProps$e.omitFromToc,
3862
+ omitFromToc = defaultProps$d.omitFromToc,
3879
3863
  ...furtherProps
3880
3864
  }, forwardedRef) {
3881
3865
  const Element2 = level == null ? void 0 : level.toLowerCase();
@@ -3922,19 +3906,19 @@ const Heading = forwardRef(function Heading2({
3922
3906
  }
3923
3907
  );
3924
3908
  });
3925
- const defaultProps$d = {
3909
+ const defaultProps$c = {
3926
3910
  orientation: "vertical",
3927
3911
  showAvatar: false
3928
3912
  };
3929
3913
  forwardRef(function Card2({
3930
3914
  children,
3931
- orientation = defaultProps$d.orientation,
3915
+ orientation = defaultProps$c.orientation,
3932
3916
  style,
3933
3917
  title: title2,
3934
3918
  subtitle: subtitle2,
3935
3919
  linkTo,
3936
3920
  avatarUrl,
3937
- showAvatar = !!avatarUrl || defaultProps$d.showAvatar,
3921
+ showAvatar = !!avatarUrl || defaultProps$c.showAvatar,
3938
3922
  onClick
3939
3923
  }, forwardedRef) {
3940
3924
  const titleProps = {
@@ -3975,7 +3959,7 @@ const CardMd = createMetadata({
3975
3959
  showAvatar: {
3976
3960
  description: `Indicates whether the ${COMP$Z} should be displayed`,
3977
3961
  valueType: "boolean",
3978
- defaultValue: defaultProps$d.showAvatar
3962
+ defaultValue: defaultProps$c.showAvatar
3979
3963
  },
3980
3964
  title: {
3981
3965
  description: `This prop sets the prestyled title.`,
@@ -3993,7 +3977,7 @@ const CardMd = createMetadata({
3993
3977
  description: `An optional property that governs the ${COMP$Z}'s orientation (whether the ${COMP$Z} lays out its children in a row or a column). If the orientation is set to \`horizontal\`, the ${COMP$Z} will display its children in a row, except for its [\`title\`](#title) and [\`subtitle\`](#subtitle).`,
3994
3978
  availableValues: orientationOptionMd,
3995
3979
  valueType: "string",
3996
- defaultValue: defaultProps$d.orientation
3980
+ defaultValue: defaultProps$c.orientation
3997
3981
  }
3998
3982
  },
3999
3983
  events: {
@@ -4008,7 +3992,7 @@ const CardMd = createMetadata({
4008
3992
  [`backgroundColor-${COMP$Z}`]: "$color-surface-raised"
4009
3993
  }
4010
3994
  });
4011
- const defaultProps$c = {
3995
+ const defaultProps$b = {
4012
3996
  throttleWaitInMs: 0
4013
3997
  };
4014
3998
  const COMP$Y = "ChangeListener";
@@ -4022,7 +4006,7 @@ const ChangeListenerMd = createMetadata({
4022
4006
  throttleWaitInMs: {
4023
4007
  description: `This variable sets a throttling time (in milliseconds) to apply when executing the \`didChange\` event handler. All changes within that throttling time will only fire the \`didChange\` event once.`,
4024
4008
  valueType: "number",
4025
- defaultValue: defaultProps$c.throttleWaitInMs
4009
+ defaultValue: defaultProps$b.throttleWaitInMs
4026
4010
  }
4027
4011
  },
4028
4012
  events: {
@@ -4048,7 +4032,7 @@ const styles$B = {
4048
4032
  valid: valid$a,
4049
4033
  "switch": "_switch_m9kqa_144"
4050
4034
  };
4051
- const defaultProps$b = {
4035
+ const defaultProps$a = {
4052
4036
  initialValue: false,
4053
4037
  value: false,
4054
4038
  enabled: true,
@@ -4057,18 +4041,18 @@ const defaultProps$b = {
4057
4041
  };
4058
4042
  const Toggle = forwardRef(function Toggle2({
4059
4043
  id,
4060
- initialValue = defaultProps$b.initialValue,
4061
- value = defaultProps$b.value,
4062
- enabled: enabled2 = defaultProps$b.enabled,
4044
+ initialValue = defaultProps$a.initialValue,
4045
+ value = defaultProps$a.value,
4046
+ enabled: enabled2 = defaultProps$a.enabled,
4063
4047
  style,
4064
4048
  readOnly: readOnly2,
4065
- validationStatus = defaultProps$b.validationStatus,
4049
+ validationStatus = defaultProps$a.validationStatus,
4066
4050
  updateState = noop$1,
4067
4051
  onDidChange = noop$1,
4068
4052
  onFocus = noop$1,
4069
4053
  onBlur = noop$1,
4070
4054
  variant = "checkbox",
4071
- indeterminate = defaultProps$b.indeterminate,
4055
+ indeterminate = defaultProps$a.indeterminate,
4072
4056
  className,
4073
4057
  label: label2,
4074
4058
  labelPosition = "end",
@@ -4196,17 +4180,17 @@ const CheckboxMd = createMetadata({
4196
4180
  status: "stable",
4197
4181
  description: `The \`${COMP$X}\` component allows users to make binary choices, typically between checked or unchecked. It consists of a small box that can be toggled on or off by clicking on it.`,
4198
4182
  props: {
4199
- indeterminate: dIndeterminate(defaultProps$b.indeterminate),
4183
+ indeterminate: dIndeterminate(defaultProps$a.indeterminate),
4200
4184
  label: dLabel(),
4201
4185
  labelPosition: dLabelPosition("end"),
4202
4186
  labelWidth: dLabelWidth(COMP$X),
4203
4187
  labelBreak: dLabelBreak(COMP$X),
4204
4188
  required: dRequired(),
4205
- initialValue: dInitialValue(defaultProps$b.initialValue),
4189
+ initialValue: dInitialValue(defaultProps$a.initialValue),
4206
4190
  autoFocus: dAutoFocus(),
4207
4191
  readOnly: dReadonly(),
4208
4192
  enabled: dEnabled(),
4209
- validationStatus: dValidationStatus(defaultProps$b.validationStatus),
4193
+ validationStatus: dValidationStatus(defaultProps$a.validationStatus),
4210
4194
  description: dInternal(
4211
4195
  `(*** NOT IMPLEMENTED YET ***) This optional property displays an alternate description of the ${COMP$X} besides its label.`
4212
4196
  ),
@@ -4241,7 +4225,7 @@ const themeVars$x = `'{"backgroundColor-ContentSeparator": "var(--xmlui-backgrou
4241
4225
  const styles$A = {
4242
4226
  themeVars: themeVars$x
4243
4227
  };
4244
- const defaultProps$a = {
4228
+ const defaultProps$9 = {
4245
4229
  orientation: "horizontal"
4246
4230
  };
4247
4231
  const COMP$W = "ContentSeparator";
@@ -4255,7 +4239,7 @@ const ContentSeparatorMd = createMetadata({
4255
4239
  orientation: {
4256
4240
  description: "Sets the main axis of the component",
4257
4241
  availableValues: orientationOptionMd,
4258
- defaultValue: defaultProps$a.orientation,
4242
+ defaultValue: defaultProps$9.orientation,
4259
4243
  valueType: "string"
4260
4244
  }
4261
4245
  },
@@ -4278,7 +4262,7 @@ const adornment$1 = "_adornment_1lk6v_50";
4278
4262
  const error$9 = "_error_1lk6v_53";
4279
4263
  const warning$9 = "_warning_1lk6v_81";
4280
4264
  const valid$9 = "_valid_1lk6v_109";
4281
- const disabled$3 = "_disabled_1lk6v_137";
4265
+ const disabled$4 = "_disabled_1lk6v_137";
4282
4266
  const indicator$2 = "_indicator_1lk6v_143";
4283
4267
  const datePickerInput = "_datePickerInput_1lk6v_143";
4284
4268
  const datePickerValue = "_datePickerValue_1lk6v_147";
@@ -4327,7 +4311,7 @@ const styles$z = {
4327
4311
  error: error$9,
4328
4312
  warning: warning$9,
4329
4313
  valid: valid$9,
4330
- disabled: disabled$3,
4314
+ disabled: disabled$4,
4331
4315
  indicator: indicator$2,
4332
4316
  datePickerInput,
4333
4317
  datePickerValue,
@@ -4390,7 +4374,7 @@ const dateFormats = [
4390
4374
  "yyyyMMdd",
4391
4375
  "MMddyyyy"
4392
4376
  ];
4393
- const defaultProps$9 = {
4377
+ const defaultProps$8 = {
4394
4378
  mode: "single",
4395
4379
  validationStatus: "none",
4396
4380
  enabled: true,
@@ -4404,23 +4388,23 @@ const DatePicker = forwardRef(function DatePicker2({
4404
4388
  id,
4405
4389
  initialValue,
4406
4390
  value,
4407
- mode = defaultProps$9.mode,
4408
- enabled: enabled2 = defaultProps$9.enabled,
4391
+ mode = defaultProps$8.mode,
4392
+ enabled: enabled2 = defaultProps$8.enabled,
4409
4393
  placeholder: placeholder2,
4410
4394
  updateState = noop$1,
4411
- validationStatus = defaultProps$9.validationStatus,
4395
+ validationStatus = defaultProps$8.validationStatus,
4412
4396
  onDidChange = noop$1,
4413
4397
  onFocus = noop$1,
4414
4398
  onBlur = noop$1,
4415
- dateFormat = defaultProps$9.dateFormat,
4416
- showWeekNumber = defaultProps$9.showWeekNumber,
4417
- weekStartsOn = defaultProps$9.weekStartsOn,
4399
+ dateFormat = defaultProps$8.dateFormat,
4400
+ showWeekNumber = defaultProps$8.showWeekNumber,
4401
+ weekStartsOn = defaultProps$8.weekStartsOn,
4418
4402
  fromDate,
4419
4403
  toDate,
4420
- disabledDates = defaultProps$9.disabledDates,
4404
+ disabledDates = defaultProps$8.disabledDates,
4421
4405
  style,
4422
4406
  registerComponentApi,
4423
- inline = defaultProps$9.inline,
4407
+ inline = defaultProps$8.inline,
4424
4408
  startText,
4425
4409
  startIcon,
4426
4410
  endText,
@@ -4626,29 +4610,29 @@ const DatePickerMd = createMetadata({
4626
4610
  initialValue: dInitialValue(),
4627
4611
  autoFocus: dAutoFocus(),
4628
4612
  readOnly: dReadonly(),
4629
- enabled: dEnabled(defaultProps$9.enabled),
4630
- validationStatus: dValidationStatus(defaultProps$9.validationStatus),
4613
+ enabled: dEnabled(defaultProps$8.enabled),
4614
+ validationStatus: dValidationStatus(defaultProps$8.validationStatus),
4631
4615
  mode: {
4632
4616
  description: "The mode of the datepicker (single or range)",
4633
4617
  valueType: "string",
4634
4618
  availableValues: DatePickerModeValues,
4635
- defaultValue: defaultProps$9.mode
4619
+ defaultValue: defaultProps$8.mode
4636
4620
  },
4637
4621
  dateFormat: {
4638
4622
  description: "The format of the date displayed in the input field",
4639
4623
  valueType: "string",
4640
- defaultValue: defaultProps$9.dateFormat,
4624
+ defaultValue: defaultProps$8.dateFormat,
4641
4625
  availableValues: dateFormats
4642
4626
  },
4643
4627
  showWeekNumber: {
4644
4628
  description: "Whether to show the week number in the calendar",
4645
4629
  valueType: "boolean",
4646
- defaultValue: defaultProps$9.showWeekNumber
4630
+ defaultValue: defaultProps$8.showWeekNumber
4647
4631
  },
4648
4632
  weekStartsOn: {
4649
4633
  description: "The first day of the week. 0 is Sunday, 1 is Monday, etc.",
4650
4634
  valueType: "number",
4651
- defaultValue: defaultProps$9.weekStartsOn,
4635
+ defaultValue: defaultProps$8.weekStartsOn,
4652
4636
  availableValues: [
4653
4637
  {
4654
4638
  value: WeekDays.Sunday,
@@ -4695,7 +4679,7 @@ const DatePickerMd = createMetadata({
4695
4679
  inline: {
4696
4680
  description: "Whether to display the datepicker inline",
4697
4681
  valueType: "boolean",
4698
- defaultValue: defaultProps$9.inline
4682
+ defaultValue: defaultProps$8.inline
4699
4683
  },
4700
4684
  startText: dStartText(),
4701
4685
  startIcon: dStartIcon(),
@@ -5679,7 +5663,7 @@ forwardRef(function FlowItemWrapper2({ children, forceBreak: forceBreak2, ...res
5679
5663
  isStarSizing && /* @__PURE__ */ jsx(FlowItemBreak, {})
5680
5664
  ] });
5681
5665
  });
5682
- const defaultProps$8 = {
5666
+ const defaultProps$7 = {
5683
5667
  columnGap: "$gap-normal",
5684
5668
  rowGap: "$gap-normal"
5685
5669
  };
@@ -5716,11 +5700,11 @@ const FlowLayoutMd = createMetadata({
5716
5700
  },
5717
5701
  columnGap: {
5718
5702
  description: "The `columnGap` property specifies the space between items in a single row; it overrides the `gap` value.",
5719
- defaultValue: defaultProps$8.columnGap
5703
+ defaultValue: defaultProps$7.columnGap
5720
5704
  },
5721
5705
  rowGap: {
5722
5706
  description: `The \`rowGap\` property specifies the space between the ${COMP$R} rows; it overrides the \`gap\` value.`,
5723
- defaultValue: defaultProps$8.rowGap
5707
+ defaultValue: defaultProps$7.rowGap
5724
5708
  }
5725
5709
  },
5726
5710
  themeVars: parseScssVar(styles$v.themeVars)
@@ -7133,7 +7117,7 @@ const initialState = {
7133
7117
  interactionFlags: {},
7134
7118
  submitInProgress: false
7135
7119
  };
7136
- const defaultProps$7 = {
7120
+ const defaultProps$6 = {
7137
7121
  cancelLabel: "Cancel",
7138
7122
  saveLabel: "Save",
7139
7123
  saveInProgressLabel: "Saving...",
@@ -7369,7 +7353,7 @@ const FormMd = createMetadata({
7369
7353
  description: `This property sets the position of the item labels within the form.Individual \`FormItem\` instances can override this property.`,
7370
7354
  availableValues: labelPositionMd,
7371
7355
  type: "string",
7372
- defaultValue: defaultProps$7.itemLabelPosition
7356
+ defaultValue: defaultProps$6.itemLabelPosition
7373
7357
  },
7374
7358
  itemLabelWidth: {
7375
7359
  description: `This property sets the width of the item labels within the form. Individual \`FormItem\` instances can override this property.`,
@@ -7378,12 +7362,12 @@ const FormMd = createMetadata({
7378
7362
  itemLabelBreak: {
7379
7363
  description: `This boolean value indicates if form item labels can be split into multiple lines if it would overflow the available label width. Individual \`FormItem\` instances can override this property.`,
7380
7364
  type: "boolean",
7381
- defaultValue: defaultProps$7.itemLabelBreak
7365
+ defaultValue: defaultProps$6.itemLabelBreak
7382
7366
  },
7383
7367
  keepModalOpenOnSubmit: {
7384
7368
  description: "This property prevents the modal from closing when the form is submitted.",
7385
7369
  type: "boolean",
7386
- defaultValue: defaultProps$7.keepModalOpenOnSubmit
7370
+ defaultValue: defaultProps$6.keepModalOpenOnSubmit
7387
7371
  },
7388
7372
  data: {
7389
7373
  description: `This property sets the initial value of the form's data structure. The form infrastructure uses this value to set the initial state of form items within the form.`
@@ -7391,17 +7375,17 @@ const FormMd = createMetadata({
7391
7375
  cancelLabel: {
7392
7376
  description: "This property defines the label of the Cancel button.",
7393
7377
  type: "string",
7394
- defaultValue: defaultProps$7.cancelLabel
7378
+ defaultValue: defaultProps$6.cancelLabel
7395
7379
  },
7396
7380
  saveLabel: {
7397
7381
  description: `This property defines the label of the Save button.`,
7398
7382
  type: "string",
7399
- defaultValue: defaultProps$7.saveLabel
7383
+ defaultValue: defaultProps$6.saveLabel
7400
7384
  },
7401
7385
  saveInProgressLabel: {
7402
7386
  description: "This property defines the label of the Save button to display during the form data submit (save) operation.",
7403
7387
  type: "string",
7404
- defaultValue: defaultProps$7.saveInProgressLabel
7388
+ defaultValue: defaultProps$6.saveInProgressLabel
7405
7389
  },
7406
7390
  swapCancelAndSave: {
7407
7391
  description: `By default, the Cancel button is to the left of the Save button. Set this property to \`true\` to swap them or \`false\` to keep their original location.`,
@@ -11499,7 +11483,7 @@ const warning$7 = "_warning_1dsq1_90";
11499
11483
  const valid$7 = "_valid_1dsq1_124";
11500
11484
  const spinnerBox = "_spinnerBox_1dsq1_184";
11501
11485
  const spinnerButton = "_spinnerButton_1dsq1_191";
11502
- const readOnly = "_readOnly_1dsq1_197";
11486
+ const readOnly$1 = "_readOnly_1dsq1_197";
11503
11487
  const styles$p = {
11504
11488
  themeVars: themeVars$n,
11505
11489
  inputRoot,
@@ -11510,7 +11494,7 @@ const styles$p = {
11510
11494
  valid: valid$7,
11511
11495
  spinnerBox,
11512
11496
  spinnerButton,
11513
- readOnly
11497
+ readOnly: readOnly$1
11514
11498
  };
11515
11499
  const NUMBERBOX_MAX_VALUE = 999999999999999;
11516
11500
  const DECIMAL_SEPARATOR = ".";
@@ -12758,7 +12742,7 @@ const error$5 = "_error_294hm_55";
12758
12742
  const warning$5 = "_warning_294hm_58";
12759
12743
  const valid$5 = "_valid_294hm_61";
12760
12744
  const indicator$1 = "_indicator_294hm_65";
12761
- const disabled$2 = "_disabled_294hm_78";
12745
+ const disabled$3 = "_disabled_294hm_78";
12762
12746
  const itemContainer = "_itemContainer_294hm_91";
12763
12747
  const optionLabel = "_optionLabel_294hm_99";
12764
12748
  const label = "_label_294hm_104";
@@ -12771,7 +12755,7 @@ const styles$n = {
12771
12755
  warning: warning$5,
12772
12756
  valid: valid$5,
12773
12757
  indicator: indicator$1,
12774
- disabled: disabled$2,
12758
+ disabled: disabled$3,
12775
12759
  itemContainer,
12776
12760
  optionLabel,
12777
12761
  label
@@ -13213,7 +13197,7 @@ const badgeListWrapper = "_badgeListWrapper_17zx6_20";
13213
13197
  const error$3 = "_error_17zx6_43";
13214
13198
  const warning$3 = "_warning_17zx6_62";
13215
13199
  const valid$3 = "_valid_17zx6_81";
13216
- const disabled$1 = "_disabled_17zx6_100";
13200
+ const disabled$2 = "_disabled_17zx6_100";
13217
13201
  const focused$1 = "_focused_17zx6_107";
13218
13202
  const badgeList = "_badgeList_17zx6_20";
13219
13203
  const badge = "_badge_17zx6_20";
@@ -13229,7 +13213,7 @@ const styles$l = {
13229
13213
  error: error$3,
13230
13214
  warning: warning$3,
13231
13215
  valid: valid$3,
13232
- disabled: disabled$1,
13216
+ disabled: disabled$2,
13233
13217
  focused: focused$1,
13234
13218
  badgeList,
13235
13219
  badge,
@@ -13635,29 +13619,47 @@ function AutoCompleteOption({ value, label: label2, enabled: enabled2 = true, ke
13635
13619
  );
13636
13620
  }
13637
13621
  const themeVars$i = `'{"Input:backgroundColor-track-Slider": "var(--xmlui-backgroundColor-track-Slider)", "Input:borderRadius-Slider-default": "var(--xmlui-borderRadius-Slider-default)", "Input:borderColor-Slider-default": "var(--xmlui-borderColor-Slider-default)", "Input:borderWidth-Slider-default": "var(--xmlui-borderWidth-Slider-default)", "Input:borderStyle-Slider-default": "var(--xmlui-borderStyle-Slider-default)", "Input:boxShadow-Slider-default": "var(--xmlui-boxShadow-Slider-default)", "Input:borderColor-Slider-default--hover": "var(--xmlui-borderColor-Slider-default--hover)", "Input:boxShadow-Slider-default--hover": "var(--xmlui-boxShadow-Slider-default--hover)", "Input:borderColor-Slider-default--focus": "var(--xmlui-borderColor-Slider-default--focus)", "Input:boxShadow-Slider-default--focus": "var(--xmlui-boxShadow-Slider-default--focus)", "Input:borderRadius-Slider-error": "var(--xmlui-borderRadius-Slider-error)", "Input:borderColor-Slider-error": "var(--xmlui-borderColor-Slider-error)", "Input:borderWidth-Slider-error": "var(--xmlui-borderWidth-Slider-error)", "Input:borderStyle-Slider-error": "var(--xmlui-borderStyle-Slider-error)", "Input:boxShadow-Slider-error": "var(--xmlui-boxShadow-Slider-error)", "Input:borderColor-Slider-error--hover": "var(--xmlui-borderColor-Slider-error--hover)", "Input:boxShadow-Slider-error--hover": "var(--xmlui-boxShadow-Slider-error--hover)", "Input:borderColor-Slider-error--focus": "var(--xmlui-borderColor-Slider-error--focus)", "Input:boxShadow-Slider-error--focus": "var(--xmlui-boxShadow-Slider-error--focus)", "Input:borderRadius-Slider-warning": "var(--xmlui-borderRadius-Slider-warning)", "Input:borderColor-Slider-warning": "var(--xmlui-borderColor-Slider-warning)", "Input:borderWidth-Slider-warning": "var(--xmlui-borderWidth-Slider-warning)", "Input:borderStyle-Slider-warning": "var(--xmlui-borderStyle-Slider-warning)", "Input:boxShadow-Slider-warning": "var(--xmlui-boxShadow-Slider-warning)", "Input:borderColor-Slider-warning--hover": "var(--xmlui-borderColor-Slider-warning--hover)", "Input:boxShadow-Slider-warning--hover": "var(--xmlui-boxShadow-Slider-warning--hover)", "Input:borderColor-Slider-warning--focus": "var(--xmlui-borderColor-Slider-warning--focus)", "Input:boxShadow-Slider-warning--focus": "var(--xmlui-boxShadow-Slider-warning--focus)", "Input:borderRadius-Slider-success": "var(--xmlui-borderRadius-Slider-success)", "Input:borderColor-Slider-success": "var(--xmlui-borderColor-Slider-success)", "Input:borderWidth-Slider-success": "var(--xmlui-borderWidth-Slider-success)", "Input:borderStyle-Slider-success": "var(--xmlui-borderStyle-Slider-success)", "Input:boxShadow-Slider-success": "var(--xmlui-boxShadow-Slider-success)", "Input:borderColor-Slider-success--hover": "var(--xmlui-borderColor-Slider-success--hover)", "Input:boxShadow-Slider-success--hover": "var(--xmlui-boxShadow-Slider-success--hover)", "Input:borderColor-Slider-success--focus": "var(--xmlui-borderColor-Slider-success--focus)", "Input:boxShadow-Slider-success--focus": "var(--xmlui-boxShadow-Slider-success--focus)", "Input:backgroundColor-track-Slider--disabled": "var(--xmlui-backgroundColor-track-Slider--disabled)", "Input:backgroundColor-range-Slider": "var(--xmlui-backgroundColor-range-Slider)", "Input:backgroundColor-range-Slider--disabled": "var(--xmlui-backgroundColor-range-Slider--disabled)", "Input:borderWidth-thumb-Slider": "var(--xmlui-borderWidth-thumb-Slider)", "Input:borderStyle-thumb-Slider": "var(--xmlui-borderStyle-thumb-Slider)", "Input:borderColor-thumb-Slider": "var(--xmlui-borderColor-thumb-Slider)", "Input:backgroundColor-thumb-Slider": "var(--xmlui-backgroundColor-thumb-Slider)", "Input:boxShadow-thumb-Slider": "var(--xmlui-boxShadow-thumb-Slider)"}'`;
13638
- const sliderRoot = "_sliderRoot_1irri_13";
13639
- const sliderTrack = "_sliderTrack_1irri_22";
13640
- const error$2 = "_error_1irri_43";
13641
- const warning$2 = "_warning_1irri_58";
13642
- const valid$2 = "_valid_1irri_73";
13643
- const sliderRange = "_sliderRange_1irri_92";
13644
- const sliderThumb = "_sliderThumb_1irri_101";
13622
+ const sliderContainer = "_sliderContainer_d4hsx_13";
13623
+ const sliderRoot = "_sliderRoot_d4hsx_19";
13624
+ const sliderTrack = "_sliderTrack_d4hsx_29";
13625
+ const error$2 = "_error_d4hsx_51";
13626
+ const warning$2 = "_warning_d4hsx_66";
13627
+ const valid$2 = "_valid_d4hsx_81";
13628
+ const disabled$1 = "_disabled_d4hsx_96";
13629
+ const sliderRange = "_sliderRange_d4hsx_100";
13630
+ const sliderThumb = "_sliderThumb_d4hsx_110";
13631
+ const readOnly = "_readOnly_d4hsx_133";
13645
13632
  const styles$k = {
13646
13633
  themeVars: themeVars$i,
13634
+ sliderContainer,
13647
13635
  sliderRoot,
13648
13636
  sliderTrack,
13649
13637
  error: error$2,
13650
13638
  warning: warning$2,
13651
13639
  valid: valid$2,
13640
+ disabled: disabled$1,
13652
13641
  sliderRange,
13653
- sliderThumb
13642
+ sliderThumb,
13643
+ readOnly
13644
+ };
13645
+ const formatValue = (val, defaultVal = 0) => {
13646
+ if (val === void 0) {
13647
+ return [defaultVal];
13648
+ }
13649
+ if (typeof val === "number") {
13650
+ return [val];
13651
+ }
13652
+ if (Array.isArray(val) && val.length > 0) {
13653
+ return val;
13654
+ }
13655
+ return [defaultVal];
13654
13656
  };
13655
13657
  const Slider = forwardRef(
13656
13658
  ({
13657
13659
  style,
13658
13660
  step = 1,
13659
- min,
13660
- max,
13661
+ min = 0,
13662
+ max = 10,
13661
13663
  inverted,
13662
13664
  updateState,
13663
13665
  onDidChange = noop$1,
@@ -13678,29 +13680,55 @@ const Slider = forwardRef(
13678
13680
  initialValue,
13679
13681
  minStepsBetweenThumbs,
13680
13682
  rangeStyle,
13681
- thumbStyle
13683
+ thumbStyle,
13684
+ showValues = true,
13685
+ valueFormat = (value2) => value2.toString()
13682
13686
  }, forwardedRef) => {
13683
13687
  const inputRef = useRef(null);
13684
13688
  const [localValue, setLocalValue] = React__default.useState([]);
13685
13689
  useEffect(() => {
13686
- if (typeof value === "object") {
13687
- setLocalValue(value);
13688
- } else if (typeof value === "number") {
13689
- setLocalValue([value]);
13690
+ let initialVal;
13691
+ if (typeof initialValue === "string") {
13692
+ try {
13693
+ initialVal = JSON.parse(initialValue);
13694
+ } catch (e) {
13695
+ const num = parseFloat(initialValue);
13696
+ if (!isNaN(num)) {
13697
+ initialVal = num;
13698
+ }
13699
+ }
13700
+ } else {
13701
+ initialVal = initialValue;
13702
+ }
13703
+ const formattedValue = formatValue(initialVal, min);
13704
+ setLocalValue(formattedValue);
13705
+ if (updateState) {
13706
+ updateState({
13707
+ value: formattedValue.length === 1 ? formattedValue[0] : formattedValue
13708
+ }, { initial: true });
13690
13709
  }
13691
- }, [value]);
13710
+ }, [initialValue, min, updateState]);
13692
13711
  useEffect(() => {
13693
- updateState({ value: initialValue }, { initial: true });
13694
- }, [initialValue, updateState]);
13712
+ if (value !== void 0) {
13713
+ const formattedValue = formatValue(value, min);
13714
+ setLocalValue(formattedValue);
13715
+ }
13716
+ }, [value, min]);
13695
13717
  const updateValue = useCallback(
13696
13718
  (value2) => {
13697
- updateState({ value: value2 });
13719
+ if (updateState) {
13720
+ updateState({ value: value2 });
13721
+ }
13698
13722
  onDidChange(value2);
13699
13723
  },
13700
13724
  [onDidChange, updateState]
13701
13725
  );
13702
13726
  const onInputChange = useCallback(
13703
13727
  (value2) => {
13728
+ setLocalValue(value2);
13729
+ if (inputRef.current) {
13730
+ inputRef.current.value = value2;
13731
+ }
13704
13732
  if (value2.length > 1) {
13705
13733
  updateValue(value2);
13706
13734
  } else if (value2.length === 1) {
@@ -13728,11 +13756,14 @@ const Slider = forwardRef(
13728
13756
  setValue
13729
13757
  });
13730
13758
  }, [focus, registerComponentApi, setValue]);
13759
+ const displayValue = localValue.length > 0 ? localValue : [min];
13760
+ const valuesText = displayValue.map((v) => valueFormat(v)).join(", ");
13761
+ const displayLabel = label2 ? showValues ? `${label2} ${valuesText}` : label2 : showValues ? valuesText : "";
13731
13762
  return /* @__PURE__ */ jsx(
13732
13763
  ItemWithLabel,
13733
13764
  {
13734
13765
  labelPosition,
13735
- label: label2,
13766
+ label: displayLabel,
13736
13767
  labelWidth,
13737
13768
  labelBreak: labelBreak2,
13738
13769
  required: required2,
@@ -13741,14 +13772,17 @@ const Slider = forwardRef(
13741
13772
  onBlur,
13742
13773
  style,
13743
13774
  ref: forwardedRef,
13744
- children: /* @__PURE__ */ jsxs(
13775
+ children: /* @__PURE__ */ jsx("div", { className: styles$k.sliderContainer, children: /* @__PURE__ */ jsxs(
13745
13776
  Root$1,
13746
13777
  {
13747
- minStepsBetweenThumbs,
13778
+ minStepsBetweenThumbs: minStepsBetweenThumbs || 1,
13748
13779
  ref: inputRef,
13749
13780
  tabIndex,
13750
13781
  "aria-readonly": readOnly2,
13751
- className: classnames(styles$k.sliderRoot),
13782
+ className: classnames(styles$k.sliderRoot, {
13783
+ [styles$k.disabled]: !enabled2,
13784
+ [styles$k.readOnly]: readOnly2
13785
+ }),
13752
13786
  style,
13753
13787
  max,
13754
13788
  min,
@@ -13759,7 +13793,7 @@ const Slider = forwardRef(
13759
13793
  onBlur: handleOnBlur,
13760
13794
  onValueChange: onInputChange,
13761
13795
  "aria-required": required2,
13762
- value: localValue,
13796
+ value: displayValue,
13763
13797
  autoFocus,
13764
13798
  children: [
13765
13799
  /* @__PURE__ */ jsx(
@@ -13772,13 +13806,30 @@ const Slider = forwardRef(
13772
13806
  [styles$k.warning]: validationStatus === "warning",
13773
13807
  [styles$k.valid]: validationStatus === "valid"
13774
13808
  }),
13775
- children: /* @__PURE__ */ jsx(Range, { className: styles$k.sliderRange, style: rangeStyle })
13809
+ style: rangeStyle ? { ...rangeStyle } : void 0,
13810
+ children: /* @__PURE__ */ jsx(
13811
+ Range,
13812
+ {
13813
+ className: classnames(styles$k.sliderRange, {
13814
+ [styles$k.disabled]: !enabled2
13815
+ })
13816
+ }
13817
+ )
13776
13818
  }
13777
13819
  ),
13778
- localValue == null ? void 0 : localValue.map((_, index) => /* @__PURE__ */ jsx(Thumb, { className: styles$k.sliderThumb, style: thumbStyle }, index))
13820
+ displayValue.map((_, index) => /* @__PURE__ */ jsx(
13821
+ Thumb,
13822
+ {
13823
+ className: classnames(styles$k.sliderThumb, {
13824
+ [styles$k.disabled]: !enabled2
13825
+ }),
13826
+ style: thumbStyle ? { ...thumbStyle } : void 0
13827
+ },
13828
+ index
13829
+ ))
13779
13830
  ]
13780
13831
  }
13781
- )
13832
+ ) })
13782
13833
  }
13783
13834
  );
13784
13835
  }
@@ -13796,7 +13847,7 @@ const styles$j = {
13796
13847
  warning: warning$1,
13797
13848
  valid: valid$1
13798
13849
  };
13799
- const defaultProps$6 = {
13850
+ const defaultProps$5 = {
13800
13851
  initialValue: "",
13801
13852
  value: "",
13802
13853
  enabled: true,
@@ -13810,8 +13861,8 @@ const ColorPicker = forwardRef(
13810
13861
  onFocus = noop$1,
13811
13862
  onBlur = noop$1,
13812
13863
  registerComponentApi,
13813
- enabled: enabled2 = defaultProps$6.enabled,
13814
- value = defaultProps$6.value,
13864
+ enabled: enabled2 = defaultProps$5.enabled,
13865
+ value = defaultProps$5.value,
13815
13866
  autoFocus,
13816
13867
  tabIndex = -1,
13817
13868
  label: label2,
@@ -13819,8 +13870,8 @@ const ColorPicker = forwardRef(
13819
13870
  labelWidth,
13820
13871
  labelBreak: labelBreak2,
13821
13872
  required: required2,
13822
- validationStatus = defaultProps$6.validationStatus,
13823
- initialValue = defaultProps$6.initialValue
13873
+ validationStatus = defaultProps$5.validationStatus,
13874
+ initialValue = defaultProps$5.initialValue
13824
13875
  }, forwardedRef) => {
13825
13876
  const inputRef = useRef(null);
13826
13877
  const updateValue = useCallback(
@@ -13910,6 +13961,9 @@ const styles$i = {
13910
13961
  error,
13911
13962
  warning
13912
13963
  };
13964
+ function AiOutlineWarning(props) {
13965
+ return GenIcon({ "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M464 720a48 48 0 1 0 96 0 48 48 0 1 0-96 0zm16-304v184c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V416c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8zm475.7 440l-416-720c-6.2-10.7-16.9-16-27.7-16s-21.6 5.3-27.7 16l-416 720C56 877.4 71.4 904 96 904h832c24.6 0 40-26.6 27.7-48zm-783.5-27.9L512 239.9l339.8 588.2H172.2z" } }] })(props);
13966
+ }
13913
13967
  const WarningIcon = (props) => /* @__PURE__ */ jsx(AiOutlineWarning, { ...props });
13914
13968
  const ErrorIcon = (props) => /* @__PURE__ */ jsx(BiErrorCircle, { ...props });
13915
13969
  const HelperText = ({ text: text2 = "", status, style }) => {
@@ -13940,7 +13994,7 @@ const HelperText = ({ text: text2 = "", status, style }) => {
13940
13994
  const DEFAULT_LABEL_POSITIONS = {
13941
13995
  checkbox: "end"
13942
13996
  };
13943
- const defaultProps$5 = {
13997
+ const defaultProps$4 = {
13944
13998
  type: "text",
13945
13999
  labelBreak: true,
13946
14000
  enabled: true,
@@ -13949,16 +14003,16 @@ const defaultProps$5 = {
13949
14003
  memo(function FormItem2({
13950
14004
  style,
13951
14005
  bindTo,
13952
- type = defaultProps$5.type,
14006
+ type = defaultProps$4.type,
13953
14007
  label: label2,
13954
- enabled: enabled2 = defaultProps$5.enabled,
14008
+ enabled: enabled2 = defaultProps$4.enabled,
13955
14009
  labelPosition,
13956
14010
  labelWidth,
13957
- labelBreak: labelBreak2 = defaultProps$5.labelBreak,
14011
+ labelBreak: labelBreak2 = defaultProps$4.labelBreak,
13958
14012
  children,
13959
14013
  validations,
13960
14014
  onValidate,
13961
- customValidationsDebounce = defaultProps$5.customValidationsDebounce,
14015
+ customValidationsDebounce = defaultProps$4.customValidationsDebounce,
13962
14016
  validationMode,
13963
14017
  registerComponentApi,
13964
14018
  maxTextLength,
@@ -14259,19 +14313,19 @@ const FormItemMd = createMetadata({
14259
14313
  labelBreak: {
14260
14314
  description: `This boolean value indicates if the label can be split into multiple lines if it would overflow the available label width.`,
14261
14315
  type: "boolean",
14262
- defaultValue: defaultProps$5.labelBreak
14316
+ defaultValue: defaultProps$4.labelBreak
14263
14317
  },
14264
14318
  enabled: dEnabled(),
14265
14319
  type: {
14266
14320
  description: `This property is used to determine the specific input control the FormItem will wrap around. Note that the control names start with a lowercase letter and map to input components found in XMLUI.`,
14267
14321
  availableValues: formControlTypesMd,
14268
- defaultValue: defaultProps$5.type,
14322
+ defaultValue: defaultProps$4.type,
14269
14323
  valueType: "string"
14270
14324
  },
14271
14325
  customValidationsDebounce: {
14272
14326
  description: `This optional number prop determines the time interval between two runs of a custom validation.`,
14273
14327
  type: "number",
14274
- defaultValue: defaultProps$5.customValidationsDebounce
14328
+ defaultValue: defaultProps$4.customValidationsDebounce
14275
14329
  },
14276
14330
  validationMode: {
14277
14331
  description: `This property sets what kind of validation mode or strategy to employ for a particular input field.`,
@@ -14390,7 +14444,7 @@ const MAX_LINES_DESC = d(
14390
14444
  const ELLIPSES_DESC = {
14391
14445
  description: `This property indicates whether ellipses should be displayed (\`true\`) when the heading text is cropped or not (\`false\`).`,
14392
14446
  type: "boolean",
14393
- defaultValue: defaultProps$e.ellipses
14447
+ defaultValue: defaultProps$d.ellipses
14394
14448
  };
14395
14449
  const PRESERVE_DESC = d(
14396
14450
  `This property indicates whether linebreaks should be preserved when displaying text.`
@@ -14399,7 +14453,7 @@ const LEVEL_DESC = (level) => `Represents a heading level ${level} text`;
14399
14453
  const OMIT_FROM_TOC_DESC = {
14400
14454
  description: "If true, this heading will be excluded from the table of contents.",
14401
14455
  type: "boolean",
14402
- defaultValue: defaultProps$e.omitFromToc
14456
+ defaultValue: defaultProps$d.omitFromToc
14403
14457
  };
14404
14458
  const HeadingMd = createMetadata({
14405
14459
  description: "Represents a heading text",
@@ -14408,7 +14462,7 @@ const HeadingMd = createMetadata({
14408
14462
  level: {
14409
14463
  description: "This property sets the visual significance (level) of the heading.",
14410
14464
  availableValues: ["h1", "h2", "h3", "h4", "h5", "h6"],
14411
- defaultValue: defaultProps$e.level
14465
+ defaultValue: defaultProps$d.level
14412
14466
  },
14413
14467
  maxLines: MAX_LINES_DESC,
14414
14468
  ellipses: ELLIPSES_DESC,
@@ -14775,31 +14829,9 @@ const LogoMd = createMetadata({
14775
14829
  status: "experimental",
14776
14830
  description: `The \`${COMP$H}\` component represents a logo or a brand symbol. Usually, you use this component in the [\`AppHeader\`](./AppHeader.mdx#logotemplate).`
14777
14831
  });
14778
- const themeVars$f = `'{"borderColor-HorizontalRule": "var(--xmlui-borderColor-HorizontalRule)", "borderWidth-HorizontalRule": "var(--xmlui-borderWidth-HorizontalRule)", "borderStyle-HorizontalRule": "var(--xmlui-borderStyle-HorizontalRule)", "backgroundColor-Blockquote": "var(--xmlui-backgroundColor-Blockquote)", "accent-Blockquote": "var(--xmlui-accent-Blockquote)", "borderRadius-Blockquote": "var(--xmlui-borderRadius-Blockquote)", "boxShadow-Blockquote": "var(--xmlui-boxShadow-Blockquote)", "padding-Blockquote": "var(--xmlui-padding-Blockquote)", "margin-Blockquote": "var(--xmlui-margin-Blockquote)", "backgroundColor-Admonition": "var(--xmlui-backgroundColor-Admonition)", "textColor-Admonition": "var(--xmlui-textColor-Admonition)", "size-icon-Admonition": "var(--xmlui-size-icon-Admonition)", "paddingLeft-UnorderedList": "var(--xmlui-paddingLeft-UnorderedList)", "paddingLeft-OrderedList": "var(--xmlui-paddingLeft-OrderedList)", "paddingLeft-ListItem": "var(--xmlui-paddingLeft-ListItem)", "color-marker-ListItem": "var(--xmlui-color-marker-ListItem)", "marginTop-HtmlHeading": "var(--xmlui-marginTop-HtmlHeading)", "marginBottom-HtmlHeading": "var(--xmlui-marginBottom-HtmlHeading)"}'`;
14779
- const markdownContent = "_markdownContent_1y6tk_13";
14780
- const horizontalRule = "_horizontalRule_1y6tk_30";
14781
- const blockquote = "_blockquote_1y6tk_34";
14782
- const admonitionBlockquote = "_admonitionBlockquote_1y6tk_54";
14783
- const admonitionContainer = "_admonitionContainer_1y6tk_64";
14784
- const admonitionIcon = "_admonitionIcon_1y6tk_70";
14785
- const admonitionContent = "_admonitionContent_1y6tk_76";
14786
- const unorderedList = "_unorderedList_1y6tk_81";
14787
- const orderedList = "_orderedList_1y6tk_87";
14788
- const listItem = "_listItem_1y6tk_93";
14789
- const htmlHeading = "_htmlHeading_1y6tk_101";
14832
+ const themeVars$f = `'{"accentColor-Blockquote": "var(--xmlui-accentColor-Blockquote)", "accentWidth-Blockquote": "var(--xmlui-accentWidth-Blockquote)", "backgroundColor-Admonition": "var(--xmlui-backgroundColor-Admonition)", "paddingLeft-Blockquote": "var(--xmlui-paddingLeft-Blockquote)", "borderRadius-Blockquote": "var(--xmlui-borderRadius-Blockquote)", "marginTop-Blockquote": "var(--xmlui-marginTop-Blockquote)", "marginBottom-Blockquote": "var(--xmlui-marginBottom-Blockquote)", "paddingLeft-Admonition": "var(--xmlui-paddingLeft-Admonition)", "borderRadius-Admonition": "var(--xmlui-borderRadius-Admonition)", "iconSize-Admonition": "var(--xmlui-iconSize-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)"}'`;
14790
14833
  const styles$g = {
14791
- themeVars: themeVars$f,
14792
- markdownContent,
14793
- horizontalRule,
14794
- blockquote,
14795
- admonitionBlockquote,
14796
- admonitionContainer,
14797
- admonitionIcon,
14798
- admonitionContent,
14799
- unorderedList,
14800
- orderedList,
14801
- listItem,
14802
- htmlHeading
14834
+ themeVars: themeVars$f
14803
14835
  };
14804
14836
  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)", "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)))"}'`;
14805
14837
  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)))"}'`;
@@ -14810,21 +14842,8 @@ const themeVarsTr = `'{"backgroundColor-HtmlTr": "var(--xmlui-backgroundColor-Ht
14810
14842
  const themeVarsTd = `'{"backgroundColor-HtmlTd": "var(--xmlui-backgroundColor-HtmlTd)", "text-align-HtmlTd": "var(--xmlui-text-align-HtmlTd)", "verticalAlign-HtmlTd": "var(--xmlui-verticalAlign-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)))"}'`;
14811
14843
  const themeVarsList = `'{"marginTop-HtmlOl": "var(--xmlui-marginTop-HtmlOl)", "marginBottom-HtmlOl": "var(--xmlui-marginBottom-HtmlOl)", "marginTop-HtmlUl": "var(--xmlui-marginTop-HtmlUl)", "marginBottom-HtmlUl": "var(--xmlui-marginBottom-HtmlUl)"}'`;
14812
14844
  const themeVarsHeading = `'{"marginTop-HtmlHeading": "var(--xmlui-marginTop-HtmlHeading)", "marginBottom-HtmlHeading": "var(--xmlui-marginBottom-HtmlHeading)"}'`;
14813
- const htmlTable = "_htmlTable_1snis_13";
14814
- const htmlThead = "_htmlThead_1snis_49";
14815
- const htmlTbody = "_htmlTbody_1snis_82";
14816
- const htmlTfoot = "_htmlTfoot_1snis_90";
14817
- const htmlTh = "_htmlTh_1snis_49";
14818
- const htmlTr = "_htmlTr_1snis_130";
14819
- const htmlTd = "_htmlTd_1snis_167";
14820
- const htmlUl = "_htmlUl_1snis_200";
14821
- const htmlOl = "_htmlOl_1snis_205";
14822
- const htmlH1 = "_htmlH1_1snis_228";
14823
- const htmlH2 = "_htmlH2_1snis_228";
14824
- const htmlH3 = "_htmlH3_1snis_228";
14825
- const htmlH4 = "_htmlH4_1snis_228";
14826
- const htmlH5 = "_htmlH5_1snis_228";
14827
- const htmlH6 = "_htmlH6_1snis_228";
14845
+ const themeVarsVideo = `'{"marginTop-HtmlVideo": "var(--xmlui-marginTop-HtmlVideo)", "marginBottom-HtmlVideo": "var(--xmlui-marginBottom-HtmlVideo)"}'`;
14846
+ const themeVarsDetails = `'{"marginTop-HtmlDetails": "var(--xmlui-marginTop-HtmlDetails)", "marginBottom-HtmlDetails": "var(--xmlui-marginBottom-HtmlDetails)"}'`;
14828
14847
  const styles$f = {
14829
14848
  themeVarsTable,
14830
14849
  themeVarsThead,
@@ -14835,273 +14854,33 @@ const styles$f = {
14835
14854
  themeVarsTd,
14836
14855
  themeVarsList,
14837
14856
  themeVarsHeading,
14838
- htmlTable,
14839
- htmlThead,
14840
- htmlTbody,
14841
- htmlTfoot,
14842
- htmlTh,
14843
- htmlTr,
14844
- htmlTd,
14845
- htmlUl,
14846
- htmlOl,
14847
- htmlH1,
14848
- htmlH2,
14849
- htmlH3,
14850
- htmlH4,
14851
- htmlH5,
14852
- htmlH6
14853
- };
14854
- const defaultProps$4 = {
14855
- removeIndents: true
14856
- };
14857
- memo(function Markdown2({
14858
- extractValue,
14859
- removeIndents = defaultProps$4.removeIndents,
14860
- children,
14861
- style
14862
- }) {
14863
- if (typeof children !== "string") {
14864
- return null;
14865
- }
14866
- const _children = removeIndents ? removeTextIndents(children) : children;
14867
- return /* @__PURE__ */ jsx("div", { className: styles$g.markdownContent, style: { ...style }, children: /* @__PURE__ */ jsx(
14868
- ReactMarkdown,
14869
- {
14870
- remarkPlugins: [remarkGfm, [bindingExpression, { extractValue }]],
14871
- components: {
14872
- h1({ children: children2 }) {
14873
- return /* @__PURE__ */ jsx("h1", { className: styles$f.htmlH1, children: children2 });
14874
- },
14875
- h2({ children: children2 }) {
14876
- return /* @__PURE__ */ jsx("h2", { className: styles$f.htmlH2, children: children2 });
14877
- },
14878
- h3({ children: children2 }) {
14879
- return /* @__PURE__ */ jsx("h3", { className: styles$f.htmlH3, children: children2 });
14880
- },
14881
- h4({ children: children2 }) {
14882
- return /* @__PURE__ */ jsx("h4", { className: styles$f.htmlH4, children: children2 });
14883
- },
14884
- h5({ children: children2 }) {
14885
- return /* @__PURE__ */ jsx("h5", { className: styles$f.htmlH5, children: children2 });
14886
- },
14887
- h6({ children: children2 }) {
14888
- return /* @__PURE__ */ jsx("h6", { className: styles$f.htmlH6, children: children2 });
14889
- },
14890
- p({ id, children: children2 }) {
14891
- return /* @__PURE__ */ jsx(Text, { uid: id, children: children2 });
14892
- },
14893
- code({ id, children: children2 }) {
14894
- return /* @__PURE__ */ jsx(Text, { uid: id, variant: "code", children: children2 });
14895
- },
14896
- pre({ id, children: children2 }) {
14897
- return /* @__PURE__ */ jsx(Text, { uid: id, variant: "codefence", children: children2 });
14898
- },
14899
- strong({ id, children: children2 }) {
14900
- return /* @__PURE__ */ jsx(Text, { uid: id, variant: "strong", children: children2 });
14901
- },
14902
- em({ id, children: children2 }) {
14903
- return /* @__PURE__ */ jsx(Text, { uid: id, variant: "em", children: children2 });
14904
- },
14905
- del({ id, children: children2 }) {
14906
- return /* @__PURE__ */ jsx(Text, { uid: id, variant: "deleted", children: children2 });
14907
- },
14908
- blockquote({ children: children2 }) {
14909
- return /* @__PURE__ */ jsx(Blockquote, { children: children2 });
14910
- },
14911
- ol({ children: children2 }) {
14912
- return /* @__PURE__ */ jsx("ol", { className: styles$f.htmlOl, children: children2 });
14913
- },
14914
- ul({ children: children2 }) {
14915
- return /* @__PURE__ */ jsx("ul", { className: styles$f.htmlUl, children: children2 });
14916
- },
14917
- li({ children: children2 }) {
14918
- return /* @__PURE__ */ jsx("li", { children: children2 });
14919
- },
14920
- hr() {
14921
- return /* @__PURE__ */ jsx(HorizontalRule, {});
14922
- },
14923
- a({ href, children: children2 }) {
14924
- return /* @__PURE__ */ jsx(LocalLink, { to: href || "/", children: children2 });
14925
- },
14926
- img({ src, alt }) {
14927
- return /* @__PURE__ */ jsx(Image, { src, alt });
14928
- },
14929
- // TODO: somehow get the label from the containing li element
14930
- input({ disabled: disabled2, checked }) {
14931
- return /* @__PURE__ */ jsx(
14932
- Toggle,
14933
- {
14934
- variant: "checkbox",
14935
- readOnly: disabled2,
14936
- value: checked
14937
- }
14938
- );
14939
- },
14940
- table({ children: children2 }) {
14941
- return /* @__PURE__ */ jsx("table", { className: styles$f.htmlTable, children: children2 });
14942
- },
14943
- tr({ children: children2 }) {
14944
- return /* @__PURE__ */ jsx("tr", { className: styles$f.htmlTr, children: children2 });
14945
- },
14946
- td({ children: children2 }) {
14947
- return /* @__PURE__ */ jsx("td", { className: styles$f.htmlTd, children: children2 });
14948
- },
14949
- th({ children: children2 }) {
14950
- return /* @__PURE__ */ jsx("th", { className: styles$f.htmlTh, children: children2 });
14951
- },
14952
- thead({ children: children2 }) {
14953
- return /* @__PURE__ */ jsx("thead", { className: styles$f.htmlThead, children: children2 });
14954
- },
14955
- tbody({ children: children2 }) {
14956
- return /* @__PURE__ */ jsx("tbody", { className: styles$f.htmlTbody, children: children2 });
14957
- },
14958
- tfoot({ children: children2 }) {
14959
- return /* @__PURE__ */ jsx("tfoot", { className: styles$f.htmlTfoot, children: children2 });
14960
- }
14961
- },
14962
- children: _children
14963
- }
14964
- ) });
14965
- });
14966
- function removeTextIndents(input2) {
14967
- if (!input2) {
14968
- return "";
14969
- }
14970
- const lines = input2.split("\n");
14971
- const minIndent = lines.reduce((min, line) => {
14972
- const match = line.match(/^\s*/);
14973
- const indentLength = match ? match[0].length : 0;
14974
- return line.trim() ? Math.min(min, indentLength) : min;
14975
- }, Infinity);
14976
- const trimmedLines = lines.map(
14977
- (line) => line.startsWith(" ".repeat(minIndent)) ? line.slice(minIndent) : line
14978
- );
14979
- return trimmedLines.join("\n");
14980
- }
14981
- const HorizontalRule = () => {
14982
- return /* @__PURE__ */ jsx("hr", { className: styles$g.horizontalRule });
14983
- };
14984
- const Blockquote = ({ children, style }) => {
14985
- const extractTextContent = (node) => {
14986
- if (typeof node === "string") {
14987
- return node;
14988
- }
14989
- if (React__default.isValidElement(node) && node.props && node.props.children) {
14990
- if (Array.isArray(node.props.children)) {
14991
- return node.props.children.map(extractTextContent).join("");
14992
- }
14993
- return extractTextContent(node.props.children);
14994
- }
14995
- return "";
14996
- };
14997
- const allText = React__default.Children.toArray(children).map(extractTextContent).join("");
14998
- const match = allText.match(/\[!([A-Z]+)\]/);
14999
- const isAdmonition = !!match;
15000
- if (isAdmonition && match && match[1]) {
15001
- const type = match[1].toLowerCase();
15002
- const emojiMap = {
15003
- info: "💡",
15004
- warning: "⚠️",
15005
- danger: "🚫",
15006
- note: "📝",
15007
- tip: "💬"
15008
- };
15009
- const processNode = (node) => {
15010
- if (typeof node === "string") {
15011
- return node.replace(/\[!([A-Z]+)\]\s*/, "");
15012
- }
15013
- if (React__default.isValidElement(node)) {
15014
- if (node.props && node.props.children) {
15015
- let newChildren;
15016
- if (Array.isArray(node.props.children)) {
15017
- newChildren = node.props.children.map(processNode);
15018
- } else {
15019
- newChildren = processNode(node.props.children);
15020
- }
15021
- return React__default.cloneElement(node, node.props, newChildren);
15022
- }
15023
- return node;
15024
- }
15025
- return node;
15026
- };
15027
- const processedChildren = React__default.Children.map(children, processNode);
15028
- return /* @__PURE__ */ jsx("blockquote", { className: styles$g.admonitionBlockquote, style, children: /* @__PURE__ */ jsxs("div", { className: styles$g.admonitionContainer, children: [
15029
- /* @__PURE__ */ jsx("div", { className: `${styles$g.admonitionIcon} ${styles$g[type] || ""}`, children: emojiMap[type] || "💡" }),
15030
- /* @__PURE__ */ jsx("div", { className: styles$g.admonitionContent, children: processedChildren })
15031
- ] }) });
15032
- }
15033
- return /* @__PURE__ */ jsx("blockquote", { className: styles$g.blockquote, style, children });
14857
+ themeVarsVideo,
14858
+ themeVarsDetails
15034
14859
  };
15035
- function bindingExpression({ extractValue }) {
15036
- return (tree) => {
15037
- visit(tree, "text", (node) => {
15038
- return detectBindingExpression(node);
15039
- });
15040
- };
15041
- function detectBindingExpression(node) {
15042
- node.value = node.value.replace(/\$\{\s*\}/g, "");
15043
- const regex = /\$\{((?:[^{}]|\{(?:[^{}]|\{(?:[^{}]|\{[^{}]*\})*\})*\})*)\}/g;
15044
- const parts = node.value.split(regex);
15045
- if (parts.length > 1) {
15046
- node.type = "html";
15047
- node.value = parts.map((part, index) => {
15048
- const extracted = index % 2 === 0 ? part : extractValue(`{${part}}`);
15049
- const resultExpr = mapByType(extracted);
15050
- return typeof resultExpr === "object" && resultExpr !== null ? JSON.stringify(resultExpr) : resultExpr;
15051
- }).join("");
15052
- }
15053
- }
15054
- function mapByType(extracted) {
15055
- if (extracted === null) {
15056
- return null;
15057
- } else if (extracted === void 0 || typeof extracted === "undefined") {
15058
- return void 0;
15059
- } else if (typeof extracted === "object") {
15060
- const arrowFuncResult = parseArrowFunc(extracted);
15061
- if (arrowFuncResult) {
15062
- return arrowFuncResult;
15063
- }
15064
- if (Array.isArray(extracted)) {
15065
- return extracted;
15066
- }
15067
- return Object.fromEntries(
15068
- Object.entries(extracted).map(([key, value]) => {
15069
- return [key, mapByType(value)];
15070
- })
15071
- );
15072
- } else {
15073
- return extracted;
15074
- }
15075
- }
15076
- function parseArrowFunc(extracted) {
15077
- if (extracted.hasOwnProperty("type") && extracted.type === T_ARROW_EXPRESSION && (extracted == null ? void 0 : extracted._ARROW_EXPR_)) {
15078
- return "[xmlui function]";
15079
- }
15080
- return "";
15081
- }
15082
- }
15083
14860
  const COMP$G = "Markdown";
15084
14861
  const MarkdownMd = createMetadata({
15085
- description: `\`${COMP$G}\` displays plain text styled with markdown syntax.`,
14862
+ description: `\`${COMP$G}\` displays plain text styled using markdown syntax.`,
15086
14863
  themeVars: parseScssVar(styles$g.themeVars),
15087
14864
  props: {
15088
14865
  content: d("This property sets the markdown content to display."),
15089
14866
  removeIndents: {
15090
14867
  description: "This boolean property specifies whether leading indents should be removed from the markdown content. If set to `true`, the shortest indent found at the start of the content lines is removed from the beginning of every line.",
15091
14868
  valueType: "boolean",
15092
- defaultValue: defaultProps$4.removeIndents
14869
+ defaultValue: true
15093
14870
  }
15094
14871
  },
15095
14872
  defaultThemeVars: {
15096
- "borderColor-HorizontalRule": "$borderColor",
15097
- "borderWidth-HorizontalRule": "1px",
15098
- "borderStyle-HorizontalRule": "solid",
15099
- "accent-Blockquote": "$color-primary",
15100
- "padding-Blockquote": "$space-2 $space-6",
15101
- "margin-Blockquote": "$space-2",
15102
- "paddingLeft-UnorderedList": "$space-6",
15103
- "paddingLeft-OrderedList": "$space-6",
15104
- "paddingLeft-ListItem": "$space-1",
14873
+ "borderRadius-Admonition": "$space-4",
14874
+ "iconSize-Admonition": "1.5rem",
14875
+ "padding-Admonition": "1rem",
14876
+ "marginBottom-Admonition": "1rem",
14877
+ "marginLeft-Admonition-content": ".5rem",
14878
+ "accentWidth-Blockquote": "3px",
14879
+ "accentColor-Blockquote": "$color-surface-500",
14880
+ "padding-Blockquote": ".5rem",
14881
+ "marginBottom-Blockquote": "1rem",
14882
+ "marginBottom-Text-codefence": ".5rem",
14883
+ "marginBottom-Text-markdown": ".5rem",
15105
14884
  light: {
15106
14885
  // --- No light-specific theme vars
15107
14886
  },
@@ -16061,17 +15840,17 @@ const COMP$n = "Switch";
16061
15840
  const SwitchMd = createMetadata({
16062
15841
  description: `The \`${COMP$n}\` component is a user interface element that allows users to toggle between two states: on and off. It consists of a small rectangular or circular button that can be moved left or right to change its state.`,
16063
15842
  props: {
16064
- indeterminate: dIndeterminate(defaultProps$b.indeterminate),
15843
+ indeterminate: dIndeterminate(defaultProps$a.indeterminate),
16065
15844
  label: dLabel(),
16066
15845
  labelPosition: dLabelPosition("end"),
16067
15846
  labelWidth: dLabelWidth(COMP$n),
16068
15847
  labelBreak: dLabelBreak(COMP$n),
16069
15848
  required: dRequired(),
16070
- initialValue: dInitialValue(defaultProps$b.initialValue),
15849
+ initialValue: dInitialValue(defaultProps$a.initialValue),
16071
15850
  autoFocus: dAutoFocus(),
16072
15851
  readOnly: dReadonly(),
16073
15852
  enabled: dEnabled(),
16074
- validationStatus: dValidationStatus(defaultProps$b.validationStatus),
15853
+ validationStatus: dValidationStatus(defaultProps$a.validationStatus),
16075
15854
  description: dInternal(
16076
15855
  `(*** NOT IMPLEMENTED YET ***) This optional property displays an alternate description of the ${COMP$n} besides its label.`
16077
15856
  )
@@ -16161,6 +15940,18 @@ const TableContext = createContext({
16161
15940
  unRegisterColumn: (id) => {
16162
15941
  }
16163
15942
  });
15943
+ function FiChevronLeft(props) {
15944
+ return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "15 18 9 12 15 6" } }] })(props);
15945
+ }
15946
+ function FiChevronRight(props) {
15947
+ return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "9 18 15 12 9 6" } }] })(props);
15948
+ }
15949
+ function FiChevronsLeft(props) {
15950
+ return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "11 17 6 12 11 7" } }, { "tag": "polyline", "attr": { "points": "18 17 13 12 18 7" } }] })(props);
15951
+ }
15952
+ function FiChevronsRight(props) {
15953
+ return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "polyline", "attr": { "points": "13 17 18 12 13 7" } }, { "tag": "polyline", "attr": { "points": "6 17 11 12 6 7" } }] })(props);
15954
+ }
16164
15955
  function useRowSelection({
16165
15956
  items = EMPTY_ARRAY,
16166
15957
  visibleItems = items,
@@ -21075,6 +20866,11 @@ const HtmlDetailsMd = createMetadata({
21075
20866
  isHtmlTag: true,
21076
20867
  props: {
21077
20868
  open: d("Specifies that the details are visible (open)")
20869
+ },
20870
+ themeVars: parseScssVar(styles$f.themeVarsDetails),
20871
+ defaultThemeVars: {
20872
+ "marginTop-HtmlDetails": "1rem",
20873
+ "marginBottom-HtmlDetails": "1rem"
21078
20874
  }
21079
20875
  });
21080
20876
  const HtmlDfnMd = createMetadata({
@@ -21740,6 +21536,11 @@ const HtmlVideoMd = createMetadata({
21740
21536
  ),
21741
21537
  src: d("Specifies the URL of the video file"),
21742
21538
  width: d("Specifies the width of the video player")
21539
+ },
21540
+ themeVars: parseScssVar(styles$f.themeVarsVideo),
21541
+ defaultThemeVars: {
21542
+ "marginTop-HtmlVideo": "1rem",
21543
+ "marginBottom-HtmlVideo": "1rem"
21743
21544
  }
21744
21545
  });
21745
21546
  const HtmlWbrMd = createMetadata({
@@ -21781,7 +21582,18 @@ const SliderMd = createMetadata({
21781
21582
  readOnly: dReadonly(),
21782
21583
  validationStatus: dValidationStatus(),
21783
21584
  rangeStyle: d(`This property allows you to apply custom styles to the range element of the slider.`),
21784
- thumbStyle: d(`This property allows yout top apply custom styles to the thumb elements of the slider.`)
21585
+ thumbStyle: d(`This property allows you to apply custom styles to the thumb elements of the slider.`),
21586
+ showValues: d(
21587
+ `This property controls whether the slider shows the current values of the thumbs.`,
21588
+ null,
21589
+ "boolean",
21590
+ true
21591
+ ),
21592
+ valueFormat: d(
21593
+ `This property allows you to customize how the values are displayed.`,
21594
+ null,
21595
+ "any"
21596
+ )
21785
21597
  },
21786
21598
  events: {
21787
21599
  didChange: dDidChange(COMP$1),
@@ -21802,8 +21614,25 @@ const SliderMd = createMetadata({
21802
21614
  [`borderColor-thumb-${COMP$1}`]: "$color-surface-50",
21803
21615
  [`backgroundColor-thumb-${COMP$1}`]: "$color-primary",
21804
21616
  [`boxShadow-thumb-${COMP$1}`]: "$boxShadow-md",
21805
- [`backgroundColor-track-${COMP$1}--disabled`]: "$color-surface-300",
21806
- [`backgroundColor-range-${COMP$1}--disabled`]: "$color-surface-400"
21617
+ [`boxShadow-thumb-${COMP$1}--hover`]: "$boxShadow-lg",
21618
+ [`boxShadow-thumb-${COMP$1}--focus`]: "$boxShadow-xl",
21619
+ [`borderRadius-${COMP$1}-default`]: "$borderRadius",
21620
+ [`borderColor-${COMP$1}-default`]: "transparent",
21621
+ [`borderWidth-${COMP$1}-default`]: "0",
21622
+ [`borderStyle-${COMP$1}-default`]: "solid",
21623
+ [`boxShadow-${COMP$1}-default`]: "none",
21624
+ light: {
21625
+ [`backgroundColor-track-${COMP$1}--disabled`]: "$color-surface-300",
21626
+ [`backgroundColor-range-${COMP$1}--disabled`]: "$color-surface-400",
21627
+ [`backgroundColor-thumb-${COMP$1}`]: "$color-primary-500",
21628
+ [`borderColor-thumb-${COMP$1}`]: "$color-surface-50"
21629
+ },
21630
+ dark: {
21631
+ [`backgroundColor-track-${COMP$1}--disabled`]: "$color-surface-600",
21632
+ [`backgroundColor-range-${COMP$1}--disabled`]: "$color-surface-800",
21633
+ [`backgroundColor-thumb-${COMP$1}`]: "$color-primary-400",
21634
+ [`borderColor-thumb-${COMP$1}`]: "$color-surface-950"
21635
+ }
21807
21636
  }
21808
21637
  });
21809
21638
  const COMP = "ColorPicker";
@@ -21819,7 +21648,7 @@ const ColorPickerMd = createMetadata({
21819
21648
  autoFocus: dAutoFocus(),
21820
21649
  required: dRequired(),
21821
21650
  readOnly: dReadonly(),
21822
- validationStatus: dValidationStatus(defaultProps$6.validationStatus)
21651
+ validationStatus: dValidationStatus(defaultProps$5.validationStatus)
21823
21652
  },
21824
21653
  events: {
21825
21654
  didChange: dDidChange(COMP),