xmlui 0.9.2 → 0.9.4
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.
- package/dist/{apiInterceptorWorker-DJ_oGB-F.mjs → apiInterceptorWorker-Bez0_28l.mjs} +1 -1
- package/dist/{index-2qtmUAFJ.mjs → index-KP1TDy9n.mjs} +1533 -692
- package/dist/index.css +297 -219
- package/dist/scripts/src/components/App/AppNative.js +2 -2
- package/dist/scripts/src/components/HtmlTags/HtmlTags.js +11 -1
- package/dist/scripts/src/components/Markdown/Markdown.js +17 -13
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +38 -19
- package/dist/scripts/src/components/Slider/Slider.js +25 -6
- package/dist/scripts/src/components/Slider/SliderNative.js +78 -18
- package/dist/scripts/src/components/Theme/ThemeNative.js +1 -1
- package/dist/scripts/src/components-core/InspectorContext.js +1 -1
- package/dist/scripts/src/components-core/RestApiProxy.js +19 -9
- package/dist/scripts/src/components-core/{DevTools.js → devtools/DevTools.js} +71 -10
- package/dist/scripts/src/syntax/monaco/grammar.monacoLanguage.js +286 -0
- package/dist/scripts/src/syntax/monaco/xmlui-dark.js +27 -0
- package/dist/scripts/src/syntax/monaco/xmlui-light.js +26 -0
- package/dist/scripts/src/syntax/monaco/xmluiscript.monacoLanguage.js +310 -0
- package/dist/style.css +210 -138
- package/dist/xmlui-metadata.mjs +306 -477
- package/dist/xmlui-metadata.umd.js +308 -476
- package/dist/xmlui-standalone.umd.js +34028 -29170
- package/dist/xmlui.mjs +1 -1
- package/package.json +4 -4
|
@@ -38,12 +38,14 @@ import EmojiPicker, { EmojiStyle, Theme as Theme$1 } from "emoji-picker-react";
|
|
|
38
38
|
import * as HoverCard from "@radix-ui/react-hover-card";
|
|
39
39
|
import ReactMarkdown from "react-markdown";
|
|
40
40
|
import remarkGfm from "remark-gfm";
|
|
41
|
+
import rehypeRaw from "rehype-raw";
|
|
41
42
|
import { visit } from "unist-util-visit";
|
|
42
43
|
import { c as createXmlUiParser, D as DiagnosticCategory, E as ErrCodes, S as SyntaxKind } from "./parser-B3m9ZEAK.mjs";
|
|
43
44
|
import { usePopper } from "react-popper";
|
|
44
45
|
import { Rnd } from "react-rnd";
|
|
45
46
|
import * as RTabs from "@radix-ui/react-tabs";
|
|
46
47
|
import { Root as Root$2, List, Trigger as Trigger$1, Content as Content$1 } from "@radix-ui/react-tabs";
|
|
48
|
+
import loader from "@monaco-editor/loader";
|
|
47
49
|
import Papa from "papaparse";
|
|
48
50
|
import scrollIntoView from "scroll-into-view-if-needed";
|
|
49
51
|
import * as RAccordion from "@radix-ui/react-accordion";
|
|
@@ -1471,7 +1473,7 @@ const bottom$2 = "_bottom_rshqv_31";
|
|
|
1471
1473
|
const start = "_start_rshqv_36";
|
|
1472
1474
|
const shrinkToLabel = "_shrinkToLabel_rshqv_42";
|
|
1473
1475
|
const inputLabel = "_inputLabel_rshqv_45";
|
|
1474
|
-
const disabled$
|
|
1476
|
+
const disabled$7 = "_disabled_rshqv_58";
|
|
1475
1477
|
const labelBreak = "_labelBreak_rshqv_62";
|
|
1476
1478
|
const required = "_required_rshqv_66";
|
|
1477
1479
|
const requiredMark = "_requiredMark_rshqv_73";
|
|
@@ -1484,7 +1486,7 @@ const styles$12 = {
|
|
|
1484
1486
|
start,
|
|
1485
1487
|
shrinkToLabel,
|
|
1486
1488
|
inputLabel,
|
|
1487
|
-
disabled: disabled$
|
|
1489
|
+
disabled: disabled$7,
|
|
1488
1490
|
labelBreak,
|
|
1489
1491
|
required,
|
|
1490
1492
|
requiredMark
|
|
@@ -1991,7 +1993,7 @@ const icon$1 = "_icon_mnwtn_55";
|
|
|
1991
1993
|
const includeHoverIndicator = "_includeHoverIndicator_mnwtn_61";
|
|
1992
1994
|
const displayActive = "_displayActive_mnwtn_71";
|
|
1993
1995
|
const navItemActive = "_navItemActive_mnwtn_108";
|
|
1994
|
-
const disabled$
|
|
1996
|
+
const disabled$6 = "_disabled_mnwtn_143";
|
|
1995
1997
|
const vertical$5 = "_vertical_mnwtn_147";
|
|
1996
1998
|
const navLinkStyles = {
|
|
1997
1999
|
themeVars: themeVars$L,
|
|
@@ -2001,7 +2003,7 @@ const navLinkStyles = {
|
|
|
2001
2003
|
includeHoverIndicator,
|
|
2002
2004
|
displayActive,
|
|
2003
2005
|
navItemActive,
|
|
2004
|
-
disabled: disabled$
|
|
2006
|
+
disabled: disabled$6,
|
|
2005
2007
|
vertical: vertical$5
|
|
2006
2008
|
};
|
|
2007
2009
|
const themeVars$K = `'{"size-Icon": "var(--xmlui-size-Icon)", "thickness-stroke-Icon": "var(--xmlui-thickness-stroke-Icon)"}'`;
|
|
@@ -3735,7 +3737,7 @@ const styles$X = {
|
|
|
3735
3737
|
ghostSecondary,
|
|
3736
3738
|
ghostAttention
|
|
3737
3739
|
};
|
|
3738
|
-
const defaultProps$
|
|
3740
|
+
const defaultProps$h = {
|
|
3739
3741
|
type: "button",
|
|
3740
3742
|
iconPosition: "start",
|
|
3741
3743
|
contentPosition: "center",
|
|
@@ -3747,14 +3749,14 @@ const defaultProps$i = {
|
|
|
3747
3749
|
};
|
|
3748
3750
|
const Button = React__default.forwardRef(function Button2({
|
|
3749
3751
|
id,
|
|
3750
|
-
type = defaultProps$
|
|
3752
|
+
type = defaultProps$h.type,
|
|
3751
3753
|
icon: icon2,
|
|
3752
|
-
iconPosition = defaultProps$
|
|
3753
|
-
contentPosition = defaultProps$
|
|
3754
|
-
orientation = defaultProps$
|
|
3755
|
-
variant = defaultProps$
|
|
3756
|
-
themeColor = defaultProps$
|
|
3757
|
-
size = defaultProps$
|
|
3754
|
+
iconPosition = defaultProps$h.iconPosition,
|
|
3755
|
+
contentPosition = defaultProps$h.contentPosition,
|
|
3756
|
+
orientation = defaultProps$h.orientation,
|
|
3757
|
+
variant = defaultProps$h.variant,
|
|
3758
|
+
themeColor = defaultProps$h.themeColor,
|
|
3759
|
+
size = defaultProps$h.size,
|
|
3758
3760
|
disabled: disabled2,
|
|
3759
3761
|
children,
|
|
3760
3762
|
formId,
|
|
@@ -3764,7 +3766,7 @@ const Button = React__default.forwardRef(function Button2({
|
|
|
3764
3766
|
style: style2,
|
|
3765
3767
|
gap,
|
|
3766
3768
|
className,
|
|
3767
|
-
autoFocus = defaultProps$
|
|
3769
|
+
autoFocus = defaultProps$h.autoFocus,
|
|
3768
3770
|
...rest
|
|
3769
3771
|
}, ref) {
|
|
3770
3772
|
const innerRef = useRef(null);
|
|
@@ -3949,7 +3951,7 @@ function App({
|
|
|
3949
3951
|
name
|
|
3950
3952
|
}) {
|
|
3951
3953
|
const { getThemeVar } = useTheme();
|
|
3952
|
-
const { setActiveThemeTone, setActiveThemeId } = useThemes();
|
|
3954
|
+
const { setActiveThemeTone, setActiveThemeId, themes } = useThemes();
|
|
3953
3955
|
const mounted = useRef(false);
|
|
3954
3956
|
const layoutWithDefaultValue = layout || getThemeVar("layout-App") || "condensed-sticky";
|
|
3955
3957
|
const safeLayout = layoutWithDefaultValue == null ? void 0 : layoutWithDefaultValue.trim().replace(/[\u2013\u2014\u2011]/g, "-");
|
|
@@ -3981,7 +3983,7 @@ function App({
|
|
|
3981
3983
|
return () => {
|
|
3982
3984
|
mounted.current = false;
|
|
3983
3985
|
};
|
|
3984
|
-
}, [defaultTone, defaultTheme, setActiveThemeTone, setActiveThemeId]);
|
|
3986
|
+
}, [defaultTone, defaultTheme, setActiveThemeTone, setActiveThemeId, themes]);
|
|
3985
3987
|
useEffect(() => {
|
|
3986
3988
|
onReady();
|
|
3987
3989
|
}, [onReady]);
|
|
@@ -4481,13 +4483,13 @@ const navLinkComponentRenderer = createComponentRenderer(
|
|
|
4481
4483
|
const themeVars$E = `'{"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)"}'`;
|
|
4482
4484
|
const container$2 = "_container_1pdwf_13";
|
|
4483
4485
|
const active$3 = "_active_1pdwf_53";
|
|
4484
|
-
const disabled$
|
|
4486
|
+
const disabled$5 = "_disabled_1pdwf_57";
|
|
4485
4487
|
const iconWrapper = "_iconWrapper_1pdwf_73";
|
|
4486
4488
|
const styles$V = {
|
|
4487
4489
|
themeVars: themeVars$E,
|
|
4488
4490
|
container: container$2,
|
|
4489
4491
|
active: active$3,
|
|
4490
|
-
disabled: disabled$
|
|
4492
|
+
disabled: disabled$5,
|
|
4491
4493
|
iconWrapper
|
|
4492
4494
|
};
|
|
4493
4495
|
const LocalLink = forwardRef(function LocalLink2(props, forwardedRef) {
|
|
@@ -4811,28 +4813,28 @@ const ButtonMd = createMetadata({
|
|
|
4811
4813
|
description: "Indicates if the button should receive focus when the page loads.",
|
|
4812
4814
|
isRequired: false,
|
|
4813
4815
|
type: "boolean",
|
|
4814
|
-
defaultValue: defaultProps$
|
|
4816
|
+
defaultValue: defaultProps$h.autoFocus
|
|
4815
4817
|
},
|
|
4816
4818
|
variant: {
|
|
4817
4819
|
description: "The button variant determines the level of emphasis the button should possess.",
|
|
4818
4820
|
isRequired: false,
|
|
4819
4821
|
type: "string",
|
|
4820
4822
|
availableValues: buttonVariantMd,
|
|
4821
|
-
defaultValue: defaultProps$
|
|
4823
|
+
defaultValue: defaultProps$h.variant
|
|
4822
4824
|
},
|
|
4823
4825
|
themeColor: {
|
|
4824
4826
|
description: "Sets the button color scheme defined in the application theme.",
|
|
4825
4827
|
isRequired: false,
|
|
4826
4828
|
type: "string",
|
|
4827
4829
|
availableValues: buttonThemeMd,
|
|
4828
|
-
defaultValue: defaultProps$
|
|
4830
|
+
defaultValue: defaultProps$h.themeColor
|
|
4829
4831
|
},
|
|
4830
4832
|
size: {
|
|
4831
4833
|
description: "Sets the size of the button.",
|
|
4832
4834
|
isRequired: false,
|
|
4833
4835
|
type: "string",
|
|
4834
4836
|
availableValues: sizeMd,
|
|
4835
|
-
defaultValue: defaultProps$
|
|
4837
|
+
defaultValue: defaultProps$h.size
|
|
4836
4838
|
},
|
|
4837
4839
|
label: {
|
|
4838
4840
|
description: `This property is an optional string to set a label for the ${COMP$1a}. If no label is specified and an icon is set, the ${COMP$1a} will modify its styling to look like a small icon button. When the ${COMP$1a} has nested children, it will display them and ignore the value of the \`label\` prop.`,
|
|
@@ -4842,14 +4844,14 @@ const ButtonMd = createMetadata({
|
|
|
4842
4844
|
description: `This optional string describes how the ${COMP$1a} appears in an HTML context. You rarely need to set this property explicitly.`,
|
|
4843
4845
|
availableValues: buttonTypesMd,
|
|
4844
4846
|
valueType: "string",
|
|
4845
|
-
defaultValue: defaultProps$
|
|
4847
|
+
defaultValue: defaultProps$h.type
|
|
4846
4848
|
},
|
|
4847
4849
|
enabled: {
|
|
4848
4850
|
description: `The value of this property indicates whether the button accepts actions (\`true\`) or does not react to them (\`false\`).`,
|
|
4849
4851
|
type: "boolean",
|
|
4850
4852
|
defaultValue: true
|
|
4851
4853
|
},
|
|
4852
|
-
orientation: dOrientation(defaultProps$
|
|
4854
|
+
orientation: dOrientation(defaultProps$h.orientation),
|
|
4853
4855
|
icon: {
|
|
4854
4856
|
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$1a} displays only that icon.`,
|
|
4855
4857
|
type: "string"
|
|
@@ -4858,13 +4860,13 @@ const ButtonMd = createMetadata({
|
|
|
4858
4860
|
description: `This optional string determines the location of the icon in the ${COMP$1a}.`,
|
|
4859
4861
|
availableValues: iconPositionMd,
|
|
4860
4862
|
type: "string",
|
|
4861
|
-
defaultValue: defaultProps$
|
|
4863
|
+
defaultValue: defaultProps$h.iconPosition
|
|
4862
4864
|
},
|
|
4863
4865
|
contentPosition: {
|
|
4864
4866
|
description: `This optional value determines how the label and icon (or nested children) should be placedinside the ${COMP$1a} component.`,
|
|
4865
4867
|
availableValues: alignmentOptionMd,
|
|
4866
4868
|
type: "string",
|
|
4867
|
-
defaultValue: defaultProps$
|
|
4869
|
+
defaultValue: defaultProps$h.contentPosition
|
|
4868
4870
|
}
|
|
4869
4871
|
},
|
|
4870
4872
|
events: {
|
|
@@ -5140,7 +5142,7 @@ function useTableOfContents() {
|
|
|
5140
5142
|
}
|
|
5141
5143
|
return context;
|
|
5142
5144
|
}
|
|
5143
|
-
const defaultProps$
|
|
5145
|
+
const defaultProps$g = {
|
|
5144
5146
|
level: "h1",
|
|
5145
5147
|
ellipses: true,
|
|
5146
5148
|
omitFromToc: false,
|
|
@@ -5148,16 +5150,16 @@ const defaultProps$h = {
|
|
|
5148
5150
|
};
|
|
5149
5151
|
const Heading = forwardRef(function Heading2({
|
|
5150
5152
|
uid,
|
|
5151
|
-
level = defaultProps$
|
|
5153
|
+
level = defaultProps$g.level,
|
|
5152
5154
|
children,
|
|
5153
5155
|
sx,
|
|
5154
5156
|
style: style2,
|
|
5155
5157
|
title: title2,
|
|
5156
|
-
maxLines = defaultProps$
|
|
5158
|
+
maxLines = defaultProps$g.maxLines,
|
|
5157
5159
|
preserveLinebreaks: preserveLinebreaks2,
|
|
5158
|
-
ellipses = defaultProps$
|
|
5160
|
+
ellipses = defaultProps$g.ellipses,
|
|
5159
5161
|
className,
|
|
5160
|
-
omitFromToc = defaultProps$
|
|
5162
|
+
omitFromToc = defaultProps$g.omitFromToc,
|
|
5161
5163
|
...furtherProps
|
|
5162
5164
|
}, forwardedRef) {
|
|
5163
5165
|
const Element2 = level == null ? void 0 : level.toLowerCase();
|
|
@@ -7065,7 +7067,7 @@ const MAX_LINES_DESC = d(
|
|
|
7065
7067
|
const ELLIPSES_DESC = {
|
|
7066
7068
|
description: `This property indicates whether ellipses should be displayed (\`true\`) when the heading text is cropped or not (\`false\`).`,
|
|
7067
7069
|
type: "boolean",
|
|
7068
|
-
defaultValue: defaultProps$
|
|
7070
|
+
defaultValue: defaultProps$g.ellipses
|
|
7069
7071
|
};
|
|
7070
7072
|
const PRESERVE_DESC = d(
|
|
7071
7073
|
`This property indicates whether linebreaks should be preserved when displaying text.`
|
|
@@ -7074,7 +7076,7 @@ const LEVEL_DESC = (level) => `Represents a heading level ${level} text`;
|
|
|
7074
7076
|
const OMIT_FROM_TOC_DESC = {
|
|
7075
7077
|
description: "If true, this heading will be excluded from the table of contents.",
|
|
7076
7078
|
type: "boolean",
|
|
7077
|
-
defaultValue: defaultProps$
|
|
7079
|
+
defaultValue: defaultProps$g.omitFromToc
|
|
7078
7080
|
};
|
|
7079
7081
|
const HeadingMd = createMetadata({
|
|
7080
7082
|
description: "Represents a heading text",
|
|
@@ -7083,7 +7085,7 @@ const HeadingMd = createMetadata({
|
|
|
7083
7085
|
level: {
|
|
7084
7086
|
description: "This property sets the visual significance (level) of the heading.",
|
|
7085
7087
|
availableValues: ["h1", "h2", "h3", "h4", "h5", "h6"],
|
|
7086
|
-
defaultValue: defaultProps$
|
|
7088
|
+
defaultValue: defaultProps$g.level
|
|
7087
7089
|
},
|
|
7088
7090
|
maxLines: MAX_LINES_DESC,
|
|
7089
7091
|
ellipses: ELLIPSES_DESC,
|
|
@@ -7345,36 +7347,38 @@ const h6ComponentRenderer = createComponentRenderer(
|
|
|
7345
7347
|
});
|
|
7346
7348
|
}
|
|
7347
7349
|
);
|
|
7348
|
-
const themeVars$C = `'{"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)"}'`;
|
|
7349
|
-
const text = "
|
|
7350
|
-
const
|
|
7351
|
-
const
|
|
7352
|
-
const
|
|
7353
|
-
const
|
|
7354
|
-
const
|
|
7355
|
-
const
|
|
7356
|
-
const
|
|
7357
|
-
const
|
|
7358
|
-
const
|
|
7359
|
-
const
|
|
7360
|
-
const
|
|
7361
|
-
const
|
|
7362
|
-
const
|
|
7363
|
-
const
|
|
7364
|
-
const
|
|
7365
|
-
const
|
|
7366
|
-
const
|
|
7367
|
-
const
|
|
7368
|
-
const
|
|
7369
|
-
const
|
|
7370
|
-
const
|
|
7371
|
-
const
|
|
7372
|
-
const
|
|
7373
|
-
const
|
|
7374
|
-
const
|
|
7350
|
+
const themeVars$C = `'{"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)"}'`;
|
|
7351
|
+
const text = "_text_uu1r2_13";
|
|
7352
|
+
const markdown = "_markdown_uu1r2_20";
|
|
7353
|
+
const abbr = "_abbr_uu1r2_52";
|
|
7354
|
+
const cite = "_cite_uu1r2_81";
|
|
7355
|
+
const codefence = "_codefence_uu1r2_110";
|
|
7356
|
+
const code = "_code_uu1r2_110";
|
|
7357
|
+
const deleted = "_deleted_uu1r2_173";
|
|
7358
|
+
const inserted = "_inserted_uu1r2_217";
|
|
7359
|
+
const keyboard = "_keyboard_uu1r2_261";
|
|
7360
|
+
const marked = "_marked_uu1r2_290";
|
|
7361
|
+
const mono = "_mono_uu1r2_334";
|
|
7362
|
+
const sample = "_sample_uu1r2_363";
|
|
7363
|
+
const sup = "_sup_uu1r2_392";
|
|
7364
|
+
const sub = "_sub_uu1r2_421";
|
|
7365
|
+
const title$3 = "_title_uu1r2_479";
|
|
7366
|
+
const subtitle = "_subtitle_uu1r2_508";
|
|
7367
|
+
const small = "_small_uu1r2_537";
|
|
7368
|
+
const caption$1 = "_caption_uu1r2_566";
|
|
7369
|
+
const placeholder$2 = "_placeholder_uu1r2_595";
|
|
7370
|
+
const paragraph = "_paragraph_uu1r2_624";
|
|
7371
|
+
const subheading = "_subheading_uu1r2_653";
|
|
7372
|
+
const tableheading = "_tableheading_uu1r2_682";
|
|
7373
|
+
const secondary = "_secondary_uu1r2_711";
|
|
7374
|
+
const strong = "_strong_uu1r2_740";
|
|
7375
|
+
const truncateOverflow = "_truncateOverflow_uu1r2_748";
|
|
7376
|
+
const preserveLinebreaks = "_preserveLinebreaks_uu1r2_755";
|
|
7377
|
+
const noEllipsis = "_noEllipsis_uu1r2_759";
|
|
7375
7378
|
const styles$S = {
|
|
7376
7379
|
themeVars: themeVars$C,
|
|
7377
7380
|
text,
|
|
7381
|
+
markdown,
|
|
7378
7382
|
abbr,
|
|
7379
7383
|
cite,
|
|
7380
7384
|
codefence,
|
|
@@ -7387,7 +7391,7 @@ const styles$S = {
|
|
|
7387
7391
|
sample,
|
|
7388
7392
|
sup,
|
|
7389
7393
|
sub,
|
|
7390
|
-
"var": "
|
|
7394
|
+
"var": "_var_uu1r2_450",
|
|
7391
7395
|
title: title$3,
|
|
7392
7396
|
subtitle,
|
|
7393
7397
|
small,
|
|
@@ -7578,7 +7582,7 @@ const showInHeader = "_showInHeader_q25wx_103";
|
|
|
7578
7582
|
const selected = "_selected_q25wx_106";
|
|
7579
7583
|
const allSelected = "_allSelected_q25wx_106";
|
|
7580
7584
|
const focused$1 = "_focused_q25wx_152";
|
|
7581
|
-
const disabled$
|
|
7585
|
+
const disabled$4 = "_disabled_q25wx_164";
|
|
7582
7586
|
const noRows$1 = "_noRows_q25wx_193";
|
|
7583
7587
|
const pagination = "_pagination_q25wx_199";
|
|
7584
7588
|
const paginationLabel = "_paginationLabel_q25wx_215";
|
|
@@ -7605,7 +7609,7 @@ const styles$R = {
|
|
|
7605
7609
|
selected,
|
|
7606
7610
|
allSelected,
|
|
7607
7611
|
focused: focused$1,
|
|
7608
|
-
disabled: disabled$
|
|
7612
|
+
disabled: disabled$4,
|
|
7609
7613
|
noRows: noRows$1,
|
|
7610
7614
|
pagination,
|
|
7611
7615
|
paginationLabel,
|
|
@@ -8620,7 +8624,7 @@ const styles$Q = {
|
|
|
8620
8624
|
valid: valid$a,
|
|
8621
8625
|
"switch": "_switch_m9kqa_144"
|
|
8622
8626
|
};
|
|
8623
|
-
const defaultProps$
|
|
8627
|
+
const defaultProps$f = {
|
|
8624
8628
|
initialValue: false,
|
|
8625
8629
|
value: false,
|
|
8626
8630
|
enabled: true,
|
|
@@ -8629,18 +8633,18 @@ const defaultProps$g = {
|
|
|
8629
8633
|
};
|
|
8630
8634
|
const Toggle = forwardRef(function Toggle2({
|
|
8631
8635
|
id,
|
|
8632
|
-
initialValue = defaultProps$
|
|
8633
|
-
value = defaultProps$
|
|
8634
|
-
enabled: enabled2 = defaultProps$
|
|
8636
|
+
initialValue = defaultProps$f.initialValue,
|
|
8637
|
+
value = defaultProps$f.value,
|
|
8638
|
+
enabled: enabled2 = defaultProps$f.enabled,
|
|
8635
8639
|
style: style2,
|
|
8636
8640
|
readOnly: readOnly2,
|
|
8637
|
-
validationStatus = defaultProps$
|
|
8641
|
+
validationStatus = defaultProps$f.validationStatus,
|
|
8638
8642
|
updateState = noop$1,
|
|
8639
8643
|
onDidChange = noop$1,
|
|
8640
8644
|
onFocus = noop$1,
|
|
8641
8645
|
onBlur = noop$1,
|
|
8642
8646
|
variant = "checkbox",
|
|
8643
|
-
indeterminate = defaultProps$
|
|
8647
|
+
indeterminate = defaultProps$f.indeterminate,
|
|
8644
8648
|
className,
|
|
8645
8649
|
label: label2,
|
|
8646
8650
|
labelPosition = "end",
|
|
@@ -9938,10 +9942,10 @@ const styles$O = {
|
|
|
9938
9942
|
pill
|
|
9939
9943
|
};
|
|
9940
9944
|
const badgeVariantValues = ["badge", "pill"];
|
|
9941
|
-
const defaultProps$
|
|
9945
|
+
const defaultProps$e = {
|
|
9942
9946
|
variant: "badge"
|
|
9943
9947
|
};
|
|
9944
|
-
const Badge = forwardRef(function Badge2({ children, color, variant = defaultProps$
|
|
9948
|
+
const Badge = forwardRef(function Badge2({ children, color, variant = defaultProps$e.variant, style: style2 }, forwardedRef) {
|
|
9945
9949
|
return /* @__PURE__ */ jsx(
|
|
9946
9950
|
"div",
|
|
9947
9951
|
{
|
|
@@ -10028,10 +10032,10 @@ const styles$N = {
|
|
|
10028
10032
|
lg,
|
|
10029
10033
|
clickable
|
|
10030
10034
|
};
|
|
10031
|
-
const defaultProps$
|
|
10035
|
+
const defaultProps$d = {
|
|
10032
10036
|
size: "sm"
|
|
10033
10037
|
};
|
|
10034
|
-
const Avatar = forwardRef(function Avatar2({ size = defaultProps$
|
|
10038
|
+
const Avatar = forwardRef(function Avatar2({ size = defaultProps$d.size, url, name, style: style2, onClick, ...rest }, ref) {
|
|
10035
10039
|
let abbrev = null;
|
|
10036
10040
|
if (!url && !!name) {
|
|
10037
10041
|
abbrev = name.trim().split(" ").filter((word) => !!word.trim().length).map((word) => word[0].toUpperCase()).slice(0, 3);
|
|
@@ -10062,7 +10066,7 @@ const AvatarMd = createMetadata({
|
|
|
10062
10066
|
description: `This property defines the display size of the ${COMP$13}.`,
|
|
10063
10067
|
availableValues: sizeMd,
|
|
10064
10068
|
valueType: "string",
|
|
10065
|
-
defaultValue: defaultProps$
|
|
10069
|
+
defaultValue: defaultProps$d.size
|
|
10066
10070
|
},
|
|
10067
10071
|
name: {
|
|
10068
10072
|
description: `This property sets the name value the ${COMP$13} uses to display initials.`,
|
|
@@ -10113,11 +10117,11 @@ const styles$M = {
|
|
|
10113
10117
|
horizontal: horizontal$3,
|
|
10114
10118
|
vertical: vertical$3
|
|
10115
10119
|
};
|
|
10116
|
-
const defaultProps$
|
|
10120
|
+
const defaultProps$c = {
|
|
10117
10121
|
orientation: "horizontal"
|
|
10118
10122
|
};
|
|
10119
10123
|
const ContentSeparator = ({
|
|
10120
|
-
orientation = defaultProps$
|
|
10124
|
+
orientation = defaultProps$c.orientation,
|
|
10121
10125
|
size,
|
|
10122
10126
|
style: style2
|
|
10123
10127
|
}) => {
|
|
@@ -10147,7 +10151,7 @@ const ContentSeparatorMd = createMetadata({
|
|
|
10147
10151
|
orientation: {
|
|
10148
10152
|
description: "Sets the main axis of the component",
|
|
10149
10153
|
availableValues: orientationOptionMd,
|
|
10150
|
-
defaultValue: defaultProps$
|
|
10154
|
+
defaultValue: defaultProps$c.orientation,
|
|
10151
10155
|
valueType: "string"
|
|
10152
10156
|
}
|
|
10153
10157
|
},
|
|
@@ -10189,19 +10193,19 @@ const styles$L = {
|
|
|
10189
10193
|
vertical: vertical$2,
|
|
10190
10194
|
isClickable
|
|
10191
10195
|
};
|
|
10192
|
-
const defaultProps$
|
|
10196
|
+
const defaultProps$b = {
|
|
10193
10197
|
orientation: "vertical",
|
|
10194
10198
|
showAvatar: false
|
|
10195
10199
|
};
|
|
10196
10200
|
const Card = forwardRef(function Card2({
|
|
10197
10201
|
children,
|
|
10198
|
-
orientation = defaultProps$
|
|
10202
|
+
orientation = defaultProps$b.orientation,
|
|
10199
10203
|
style: style2,
|
|
10200
10204
|
title: title2,
|
|
10201
10205
|
subtitle: subtitle2,
|
|
10202
10206
|
linkTo,
|
|
10203
10207
|
avatarUrl,
|
|
10204
|
-
showAvatar = !!avatarUrl || defaultProps$
|
|
10208
|
+
showAvatar = !!avatarUrl || defaultProps$b.showAvatar,
|
|
10205
10209
|
onClick
|
|
10206
10210
|
}, forwardedRef) {
|
|
10207
10211
|
const titleProps = {
|
|
@@ -10242,7 +10246,7 @@ const CardMd = createMetadata({
|
|
|
10242
10246
|
showAvatar: {
|
|
10243
10247
|
description: `Indicates whether the ${COMP$11} should be displayed`,
|
|
10244
10248
|
valueType: "boolean",
|
|
10245
|
-
defaultValue: defaultProps$
|
|
10249
|
+
defaultValue: defaultProps$b.showAvatar
|
|
10246
10250
|
},
|
|
10247
10251
|
title: {
|
|
10248
10252
|
description: `This prop sets the prestyled title.`,
|
|
@@ -10260,7 +10264,7 @@ const CardMd = createMetadata({
|
|
|
10260
10264
|
description: `An optional property that governs the ${COMP$11}'s orientation (whether the ${COMP$11} lays out its children in a row or a column). If the orientation is set to \`horizontal\`, the ${COMP$11} will display its children in a row, except for its [\`title\`](#title) and [\`subtitle\`](#subtitle).`,
|
|
10261
10265
|
availableValues: orientationOptionMd,
|
|
10262
10266
|
valueType: "string",
|
|
10263
|
-
defaultValue: defaultProps$
|
|
10267
|
+
defaultValue: defaultProps$b.orientation
|
|
10264
10268
|
}
|
|
10265
10269
|
},
|
|
10266
10270
|
events: {
|
|
@@ -10716,7 +10720,7 @@ const FlowItemWrapper = forwardRef(function FlowItemWrapper2({ children, forceBr
|
|
|
10716
10720
|
isStarSizing && /* @__PURE__ */ jsx(FlowItemBreak, {})
|
|
10717
10721
|
] });
|
|
10718
10722
|
});
|
|
10719
|
-
const defaultProps$
|
|
10723
|
+
const defaultProps$a = {
|
|
10720
10724
|
columnGap: "$gap-normal",
|
|
10721
10725
|
rowGap: "$gap-normal"
|
|
10722
10726
|
};
|
|
@@ -10753,11 +10757,11 @@ const FlowLayoutMd = createMetadata({
|
|
|
10753
10757
|
},
|
|
10754
10758
|
columnGap: {
|
|
10755
10759
|
description: "The `columnGap` property specifies the space between items in a single row; it overrides the `gap` value.",
|
|
10756
|
-
defaultValue: defaultProps$
|
|
10760
|
+
defaultValue: defaultProps$a.columnGap
|
|
10757
10761
|
},
|
|
10758
10762
|
rowGap: {
|
|
10759
10763
|
description: `The \`rowGap\` property specifies the space between the ${COMP$10} rows; it overrides the \`gap\` value.`,
|
|
10760
|
-
defaultValue: defaultProps$
|
|
10764
|
+
defaultValue: defaultProps$a.rowGap
|
|
10761
10765
|
}
|
|
10762
10766
|
},
|
|
10763
10767
|
themeVars: parseScssVar(styles$K.themeVars)
|
|
@@ -13021,10 +13025,10 @@ const positionedContainerComponentRenderer = createComponentRenderer(
|
|
|
13021
13025
|
);
|
|
13022
13026
|
}
|
|
13023
13027
|
);
|
|
13024
|
-
const defaultProps$
|
|
13028
|
+
const defaultProps$9 = {
|
|
13025
13029
|
throttleWaitInMs: 0
|
|
13026
13030
|
};
|
|
13027
|
-
function ChangeListener({ listenTo, onChange, throttleWaitInMs = defaultProps$
|
|
13031
|
+
function ChangeListener({ listenTo, onChange, throttleWaitInMs = defaultProps$9.throttleWaitInMs }) {
|
|
13028
13032
|
const prevValue = usePrevious(listenTo);
|
|
13029
13033
|
const throttledOnChange = useMemo(() => {
|
|
13030
13034
|
if (throttleWaitInMs !== 0 && onChange) {
|
|
@@ -13055,7 +13059,7 @@ const ChangeListenerMd = createMetadata({
|
|
|
13055
13059
|
throttleWaitInMs: {
|
|
13056
13060
|
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.`,
|
|
13057
13061
|
valueType: "number",
|
|
13058
|
-
defaultValue: defaultProps$
|
|
13062
|
+
defaultValue: defaultProps$9.throttleWaitInMs
|
|
13059
13063
|
}
|
|
13060
13064
|
},
|
|
13061
13065
|
events: {
|
|
@@ -14499,7 +14503,7 @@ const adornment$2 = "_adornment_ley74_53";
|
|
|
14499
14503
|
const error$9 = "_error_ley74_56";
|
|
14500
14504
|
const warning$9 = "_warning_ley74_91";
|
|
14501
14505
|
const valid$9 = "_valid_ley74_126";
|
|
14502
|
-
const readOnly$
|
|
14506
|
+
const readOnly$2 = "_readOnly_ley74_181";
|
|
14503
14507
|
const styles$C = {
|
|
14504
14508
|
themeVars: themeVars$m,
|
|
14505
14509
|
inputRoot: inputRoot$1,
|
|
@@ -14508,7 +14512,7 @@ const styles$C = {
|
|
|
14508
14512
|
error: error$9,
|
|
14509
14513
|
warning: warning$9,
|
|
14510
14514
|
valid: valid$9,
|
|
14511
|
-
readOnly: readOnly$
|
|
14515
|
+
readOnly: readOnly$2
|
|
14512
14516
|
};
|
|
14513
14517
|
const wrapper$7 = "_wrapper_wg0td_13";
|
|
14514
14518
|
const styles$B = {
|
|
@@ -14840,7 +14844,7 @@ const warning$8 = "_warning_1dsq1_90";
|
|
|
14840
14844
|
const valid$8 = "_valid_1dsq1_124";
|
|
14841
14845
|
const spinnerBox = "_spinnerBox_1dsq1_184";
|
|
14842
14846
|
const spinnerButton = "_spinnerButton_1dsq1_191";
|
|
14843
|
-
const readOnly = "_readOnly_1dsq1_197";
|
|
14847
|
+
const readOnly$1 = "_readOnly_1dsq1_197";
|
|
14844
14848
|
const styles$z = {
|
|
14845
14849
|
themeVars: themeVars$k,
|
|
14846
14850
|
inputRoot,
|
|
@@ -14851,7 +14855,7 @@ const styles$z = {
|
|
|
14851
14855
|
valid: valid$8,
|
|
14852
14856
|
spinnerBox,
|
|
14853
14857
|
spinnerButton,
|
|
14854
|
-
readOnly
|
|
14858
|
+
readOnly: readOnly$1
|
|
14855
14859
|
};
|
|
14856
14860
|
const NUMBERBOX_MAX_VALUE = 999999999999999;
|
|
14857
14861
|
const DECIMAL_SEPARATOR = ".";
|
|
@@ -16099,7 +16103,7 @@ const error$6 = "_error_294hm_55";
|
|
|
16099
16103
|
const warning$6 = "_warning_294hm_58";
|
|
16100
16104
|
const valid$6 = "_valid_294hm_61";
|
|
16101
16105
|
const indicator$2 = "_indicator_294hm_65";
|
|
16102
|
-
const disabled$
|
|
16106
|
+
const disabled$3 = "_disabled_294hm_78";
|
|
16103
16107
|
const itemContainer = "_itemContainer_294hm_91";
|
|
16104
16108
|
const optionLabel = "_optionLabel_294hm_99";
|
|
16105
16109
|
const label = "_label_294hm_104";
|
|
@@ -16112,7 +16116,7 @@ const styles$x = {
|
|
|
16112
16116
|
warning: warning$6,
|
|
16113
16117
|
valid: valid$6,
|
|
16114
16118
|
indicator: indicator$2,
|
|
16115
|
-
disabled: disabled$
|
|
16119
|
+
disabled: disabled$3,
|
|
16116
16120
|
itemContainer,
|
|
16117
16121
|
optionLabel,
|
|
16118
16122
|
label
|
|
@@ -16260,7 +16264,7 @@ const adornment = "_adornment_1lk6v_50";
|
|
|
16260
16264
|
const error$5 = "_error_1lk6v_53";
|
|
16261
16265
|
const warning$5 = "_warning_1lk6v_81";
|
|
16262
16266
|
const valid$5 = "_valid_1lk6v_109";
|
|
16263
|
-
const disabled$
|
|
16267
|
+
const disabled$2 = "_disabled_1lk6v_137";
|
|
16264
16268
|
const indicator$1 = "_indicator_1lk6v_143";
|
|
16265
16269
|
const datePickerInput = "_datePickerInput_1lk6v_143";
|
|
16266
16270
|
const datePickerValue = "_datePickerValue_1lk6v_147";
|
|
@@ -16309,7 +16313,7 @@ const styles$w = {
|
|
|
16309
16313
|
error: error$5,
|
|
16310
16314
|
warning: warning$5,
|
|
16311
16315
|
valid: valid$5,
|
|
16312
|
-
disabled: disabled$
|
|
16316
|
+
disabled: disabled$2,
|
|
16313
16317
|
indicator: indicator$1,
|
|
16314
16318
|
datePickerInput,
|
|
16315
16319
|
datePickerValue,
|
|
@@ -16372,7 +16376,7 @@ const dateFormats = [
|
|
|
16372
16376
|
"yyyyMMdd",
|
|
16373
16377
|
"MMddyyyy"
|
|
16374
16378
|
];
|
|
16375
|
-
const defaultProps$
|
|
16379
|
+
const defaultProps$8 = {
|
|
16376
16380
|
mode: "single",
|
|
16377
16381
|
validationStatus: "none",
|
|
16378
16382
|
enabled: true,
|
|
@@ -16386,23 +16390,23 @@ const DatePicker = forwardRef(function DatePicker2({
|
|
|
16386
16390
|
id,
|
|
16387
16391
|
initialValue,
|
|
16388
16392
|
value,
|
|
16389
|
-
mode = defaultProps$
|
|
16390
|
-
enabled: enabled2 = defaultProps$
|
|
16393
|
+
mode = defaultProps$8.mode,
|
|
16394
|
+
enabled: enabled2 = defaultProps$8.enabled,
|
|
16391
16395
|
placeholder: placeholder2,
|
|
16392
16396
|
updateState = noop$1,
|
|
16393
|
-
validationStatus = defaultProps$
|
|
16397
|
+
validationStatus = defaultProps$8.validationStatus,
|
|
16394
16398
|
onDidChange = noop$1,
|
|
16395
16399
|
onFocus = noop$1,
|
|
16396
16400
|
onBlur = noop$1,
|
|
16397
|
-
dateFormat = defaultProps$
|
|
16398
|
-
showWeekNumber = defaultProps$
|
|
16399
|
-
weekStartsOn = defaultProps$
|
|
16401
|
+
dateFormat = defaultProps$8.dateFormat,
|
|
16402
|
+
showWeekNumber = defaultProps$8.showWeekNumber,
|
|
16403
|
+
weekStartsOn = defaultProps$8.weekStartsOn,
|
|
16400
16404
|
fromDate,
|
|
16401
16405
|
toDate,
|
|
16402
|
-
disabledDates = defaultProps$
|
|
16406
|
+
disabledDates = defaultProps$8.disabledDates,
|
|
16403
16407
|
style: style2,
|
|
16404
16408
|
registerComponentApi,
|
|
16405
|
-
inline = defaultProps$
|
|
16409
|
+
inline = defaultProps$8.inline,
|
|
16406
16410
|
startText,
|
|
16407
16411
|
startIcon,
|
|
16408
16412
|
endText,
|
|
@@ -16883,7 +16887,7 @@ const initialState = {
|
|
|
16883
16887
|
interactionFlags: {},
|
|
16884
16888
|
submitInProgress: false
|
|
16885
16889
|
};
|
|
16886
|
-
const defaultProps$
|
|
16890
|
+
const defaultProps$7 = {
|
|
16887
16891
|
cancelLabel: "Cancel",
|
|
16888
16892
|
saveLabel: "Save",
|
|
16889
16893
|
saveInProgressLabel: "Saving...",
|
|
@@ -17176,7 +17180,7 @@ const badgeListWrapper = "_badgeListWrapper_17zx6_20";
|
|
|
17176
17180
|
const error$3 = "_error_17zx6_43";
|
|
17177
17181
|
const warning$3 = "_warning_17zx6_62";
|
|
17178
17182
|
const valid$3 = "_valid_17zx6_81";
|
|
17179
|
-
const disabled = "_disabled_17zx6_100";
|
|
17183
|
+
const disabled$1 = "_disabled_17zx6_100";
|
|
17180
17184
|
const focused = "_focused_17zx6_107";
|
|
17181
17185
|
const badgeList = "_badgeList_17zx6_20";
|
|
17182
17186
|
const badge = "_badge_17zx6_20";
|
|
@@ -17192,7 +17196,7 @@ const styles$t = {
|
|
|
17192
17196
|
error: error$3,
|
|
17193
17197
|
warning: warning$3,
|
|
17194
17198
|
valid: valid$3,
|
|
17195
|
-
disabled,
|
|
17199
|
+
disabled: disabled$1,
|
|
17196
17200
|
focused,
|
|
17197
17201
|
badgeList,
|
|
17198
17202
|
badge,
|
|
@@ -17598,29 +17602,47 @@ function AutoCompleteOption({ value, label: label2, enabled: enabled2 = true, ke
|
|
|
17598
17602
|
);
|
|
17599
17603
|
}
|
|
17600
17604
|
const themeVars$e = `'{"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)"}'`;
|
|
17601
|
-
const
|
|
17602
|
-
const
|
|
17603
|
-
const
|
|
17604
|
-
const
|
|
17605
|
-
const
|
|
17606
|
-
const
|
|
17607
|
-
const
|
|
17605
|
+
const sliderContainer = "_sliderContainer_d4hsx_13";
|
|
17606
|
+
const sliderRoot = "_sliderRoot_d4hsx_19";
|
|
17607
|
+
const sliderTrack = "_sliderTrack_d4hsx_29";
|
|
17608
|
+
const error$2 = "_error_d4hsx_51";
|
|
17609
|
+
const warning$2 = "_warning_d4hsx_66";
|
|
17610
|
+
const valid$2 = "_valid_d4hsx_81";
|
|
17611
|
+
const disabled = "_disabled_d4hsx_96";
|
|
17612
|
+
const sliderRange = "_sliderRange_d4hsx_100";
|
|
17613
|
+
const sliderThumb = "_sliderThumb_d4hsx_110";
|
|
17614
|
+
const readOnly = "_readOnly_d4hsx_133";
|
|
17608
17615
|
const styles$s = {
|
|
17609
17616
|
themeVars: themeVars$e,
|
|
17617
|
+
sliderContainer,
|
|
17610
17618
|
sliderRoot,
|
|
17611
17619
|
sliderTrack,
|
|
17612
17620
|
error: error$2,
|
|
17613
17621
|
warning: warning$2,
|
|
17614
17622
|
valid: valid$2,
|
|
17623
|
+
disabled,
|
|
17615
17624
|
sliderRange,
|
|
17616
|
-
sliderThumb
|
|
17625
|
+
sliderThumb,
|
|
17626
|
+
readOnly
|
|
17627
|
+
};
|
|
17628
|
+
const formatValue = (val, defaultVal = 0) => {
|
|
17629
|
+
if (val === void 0) {
|
|
17630
|
+
return [defaultVal];
|
|
17631
|
+
}
|
|
17632
|
+
if (typeof val === "number") {
|
|
17633
|
+
return [val];
|
|
17634
|
+
}
|
|
17635
|
+
if (Array.isArray(val) && val.length > 0) {
|
|
17636
|
+
return val;
|
|
17637
|
+
}
|
|
17638
|
+
return [defaultVal];
|
|
17617
17639
|
};
|
|
17618
17640
|
const Slider = forwardRef(
|
|
17619
17641
|
({
|
|
17620
17642
|
style: style2,
|
|
17621
17643
|
step = 1,
|
|
17622
|
-
min,
|
|
17623
|
-
max,
|
|
17644
|
+
min = 0,
|
|
17645
|
+
max = 10,
|
|
17624
17646
|
inverted,
|
|
17625
17647
|
updateState,
|
|
17626
17648
|
onDidChange = noop$1,
|
|
@@ -17641,29 +17663,55 @@ const Slider = forwardRef(
|
|
|
17641
17663
|
initialValue,
|
|
17642
17664
|
minStepsBetweenThumbs,
|
|
17643
17665
|
rangeStyle,
|
|
17644
|
-
thumbStyle
|
|
17666
|
+
thumbStyle,
|
|
17667
|
+
showValues = true,
|
|
17668
|
+
valueFormat = (value2) => value2.toString()
|
|
17645
17669
|
}, forwardedRef) => {
|
|
17646
17670
|
const inputRef = useRef(null);
|
|
17647
17671
|
const [localValue, setLocalValue] = React__default.useState([]);
|
|
17648
17672
|
useEffect(() => {
|
|
17649
|
-
|
|
17650
|
-
|
|
17651
|
-
|
|
17652
|
-
|
|
17673
|
+
let initialVal;
|
|
17674
|
+
if (typeof initialValue === "string") {
|
|
17675
|
+
try {
|
|
17676
|
+
initialVal = JSON.parse(initialValue);
|
|
17677
|
+
} catch (e) {
|
|
17678
|
+
const num = parseFloat(initialValue);
|
|
17679
|
+
if (!isNaN(num)) {
|
|
17680
|
+
initialVal = num;
|
|
17681
|
+
}
|
|
17682
|
+
}
|
|
17683
|
+
} else {
|
|
17684
|
+
initialVal = initialValue;
|
|
17685
|
+
}
|
|
17686
|
+
const formattedValue = formatValue(initialVal, min);
|
|
17687
|
+
setLocalValue(formattedValue);
|
|
17688
|
+
if (updateState) {
|
|
17689
|
+
updateState({
|
|
17690
|
+
value: formattedValue.length === 1 ? formattedValue[0] : formattedValue
|
|
17691
|
+
}, { initial: true });
|
|
17653
17692
|
}
|
|
17654
|
-
}, [
|
|
17693
|
+
}, [initialValue, min, updateState]);
|
|
17655
17694
|
useEffect(() => {
|
|
17656
|
-
|
|
17657
|
-
|
|
17695
|
+
if (value !== void 0) {
|
|
17696
|
+
const formattedValue = formatValue(value, min);
|
|
17697
|
+
setLocalValue(formattedValue);
|
|
17698
|
+
}
|
|
17699
|
+
}, [value, min]);
|
|
17658
17700
|
const updateValue = useCallback(
|
|
17659
17701
|
(value2) => {
|
|
17660
|
-
updateState
|
|
17702
|
+
if (updateState) {
|
|
17703
|
+
updateState({ value: value2 });
|
|
17704
|
+
}
|
|
17661
17705
|
onDidChange(value2);
|
|
17662
17706
|
},
|
|
17663
17707
|
[onDidChange, updateState]
|
|
17664
17708
|
);
|
|
17665
17709
|
const onInputChange = useCallback(
|
|
17666
17710
|
(value2) => {
|
|
17711
|
+
setLocalValue(value2);
|
|
17712
|
+
if (inputRef.current) {
|
|
17713
|
+
inputRef.current.value = value2;
|
|
17714
|
+
}
|
|
17667
17715
|
if (value2.length > 1) {
|
|
17668
17716
|
updateValue(value2);
|
|
17669
17717
|
} else if (value2.length === 1) {
|
|
@@ -17691,11 +17739,14 @@ const Slider = forwardRef(
|
|
|
17691
17739
|
setValue
|
|
17692
17740
|
});
|
|
17693
17741
|
}, [focus, registerComponentApi, setValue]);
|
|
17742
|
+
const displayValue = localValue.length > 0 ? localValue : [min];
|
|
17743
|
+
const valuesText = displayValue.map((v) => valueFormat(v)).join(", ");
|
|
17744
|
+
const displayLabel = label2 ? showValues ? `${label2} ${valuesText}` : label2 : showValues ? valuesText : "";
|
|
17694
17745
|
return /* @__PURE__ */ jsx(
|
|
17695
17746
|
ItemWithLabel,
|
|
17696
17747
|
{
|
|
17697
17748
|
labelPosition,
|
|
17698
|
-
label:
|
|
17749
|
+
label: displayLabel,
|
|
17699
17750
|
labelWidth,
|
|
17700
17751
|
labelBreak: labelBreak2,
|
|
17701
17752
|
required: required2,
|
|
@@ -17704,14 +17755,17 @@ const Slider = forwardRef(
|
|
|
17704
17755
|
onBlur,
|
|
17705
17756
|
style: style2,
|
|
17706
17757
|
ref: forwardedRef,
|
|
17707
|
-
children: /* @__PURE__ */ jsxs(
|
|
17758
|
+
children: /* @__PURE__ */ jsx("div", { className: styles$s.sliderContainer, children: /* @__PURE__ */ jsxs(
|
|
17708
17759
|
Root$1,
|
|
17709
17760
|
{
|
|
17710
|
-
minStepsBetweenThumbs,
|
|
17761
|
+
minStepsBetweenThumbs: minStepsBetweenThumbs || 1,
|
|
17711
17762
|
ref: inputRef,
|
|
17712
17763
|
tabIndex,
|
|
17713
17764
|
"aria-readonly": readOnly2,
|
|
17714
|
-
className: classnames(styles$s.sliderRoot
|
|
17765
|
+
className: classnames(styles$s.sliderRoot, {
|
|
17766
|
+
[styles$s.disabled]: !enabled2,
|
|
17767
|
+
[styles$s.readOnly]: readOnly2
|
|
17768
|
+
}),
|
|
17715
17769
|
style: style2,
|
|
17716
17770
|
max,
|
|
17717
17771
|
min,
|
|
@@ -17722,7 +17776,7 @@ const Slider = forwardRef(
|
|
|
17722
17776
|
onBlur: handleOnBlur,
|
|
17723
17777
|
onValueChange: onInputChange,
|
|
17724
17778
|
"aria-required": required2,
|
|
17725
|
-
value:
|
|
17779
|
+
value: displayValue,
|
|
17726
17780
|
autoFocus,
|
|
17727
17781
|
children: [
|
|
17728
17782
|
/* @__PURE__ */ jsx(
|
|
@@ -17735,13 +17789,30 @@ const Slider = forwardRef(
|
|
|
17735
17789
|
[styles$s.warning]: validationStatus === "warning",
|
|
17736
17790
|
[styles$s.valid]: validationStatus === "valid"
|
|
17737
17791
|
}),
|
|
17738
|
-
|
|
17792
|
+
style: rangeStyle ? { ...rangeStyle } : void 0,
|
|
17793
|
+
children: /* @__PURE__ */ jsx(
|
|
17794
|
+
Range,
|
|
17795
|
+
{
|
|
17796
|
+
className: classnames(styles$s.sliderRange, {
|
|
17797
|
+
[styles$s.disabled]: !enabled2
|
|
17798
|
+
})
|
|
17799
|
+
}
|
|
17800
|
+
)
|
|
17739
17801
|
}
|
|
17740
17802
|
),
|
|
17741
|
-
|
|
17803
|
+
displayValue.map((_, index) => /* @__PURE__ */ jsx(
|
|
17804
|
+
Thumb,
|
|
17805
|
+
{
|
|
17806
|
+
className: classnames(styles$s.sliderThumb, {
|
|
17807
|
+
[styles$s.disabled]: !enabled2
|
|
17808
|
+
}),
|
|
17809
|
+
style: thumbStyle ? { ...thumbStyle } : void 0
|
|
17810
|
+
},
|
|
17811
|
+
index
|
|
17812
|
+
))
|
|
17742
17813
|
]
|
|
17743
17814
|
}
|
|
17744
|
-
)
|
|
17815
|
+
) })
|
|
17745
17816
|
}
|
|
17746
17817
|
);
|
|
17747
17818
|
}
|
|
@@ -17759,7 +17830,7 @@ const styles$r = {
|
|
|
17759
17830
|
warning: warning$1,
|
|
17760
17831
|
valid: valid$1
|
|
17761
17832
|
};
|
|
17762
|
-
const defaultProps$
|
|
17833
|
+
const defaultProps$6 = {
|
|
17763
17834
|
initialValue: "",
|
|
17764
17835
|
value: "",
|
|
17765
17836
|
enabled: true,
|
|
@@ -17773,8 +17844,8 @@ const ColorPicker = forwardRef(
|
|
|
17773
17844
|
onFocus = noop$1,
|
|
17774
17845
|
onBlur = noop$1,
|
|
17775
17846
|
registerComponentApi,
|
|
17776
|
-
enabled: enabled2 = defaultProps$
|
|
17777
|
-
value = defaultProps$
|
|
17847
|
+
enabled: enabled2 = defaultProps$6.enabled,
|
|
17848
|
+
value = defaultProps$6.value,
|
|
17778
17849
|
autoFocus,
|
|
17779
17850
|
tabIndex = -1,
|
|
17780
17851
|
label: label2,
|
|
@@ -17782,8 +17853,8 @@ const ColorPicker = forwardRef(
|
|
|
17782
17853
|
labelWidth,
|
|
17783
17854
|
labelBreak: labelBreak2,
|
|
17784
17855
|
required: required2,
|
|
17785
|
-
validationStatus = defaultProps$
|
|
17786
|
-
initialValue = defaultProps$
|
|
17856
|
+
validationStatus = defaultProps$6.validationStatus,
|
|
17857
|
+
initialValue = defaultProps$6.initialValue
|
|
17787
17858
|
}, forwardedRef) => {
|
|
17788
17859
|
const inputRef = useRef(null);
|
|
17789
17860
|
const updateValue = useCallback(
|
|
@@ -17936,7 +18007,7 @@ const HelperText = ({ text: text2 = "", status, style: style2 }) => {
|
|
|
17936
18007
|
const DEFAULT_LABEL_POSITIONS = {
|
|
17937
18008
|
checkbox: "end"
|
|
17938
18009
|
};
|
|
17939
|
-
const defaultProps$
|
|
18010
|
+
const defaultProps$5 = {
|
|
17940
18011
|
type: "text",
|
|
17941
18012
|
labelBreak: true,
|
|
17942
18013
|
enabled: true,
|
|
@@ -17945,16 +18016,16 @@ const defaultProps$6 = {
|
|
|
17945
18016
|
const FormItem = memo(function FormItem2({
|
|
17946
18017
|
style: style2,
|
|
17947
18018
|
bindTo,
|
|
17948
|
-
type = defaultProps$
|
|
18019
|
+
type = defaultProps$5.type,
|
|
17949
18020
|
label: label2,
|
|
17950
|
-
enabled: enabled2 = defaultProps$
|
|
18021
|
+
enabled: enabled2 = defaultProps$5.enabled,
|
|
17951
18022
|
labelPosition,
|
|
17952
18023
|
labelWidth,
|
|
17953
|
-
labelBreak: labelBreak2 = defaultProps$
|
|
18024
|
+
labelBreak: labelBreak2 = defaultProps$5.labelBreak,
|
|
17954
18025
|
children,
|
|
17955
18026
|
validations,
|
|
17956
18027
|
onValidate,
|
|
17957
|
-
customValidationsDebounce = defaultProps$
|
|
18028
|
+
customValidationsDebounce = defaultProps$5.customValidationsDebounce,
|
|
17958
18029
|
validationMode,
|
|
17959
18030
|
registerComponentApi,
|
|
17960
18031
|
maxTextLength,
|
|
@@ -18280,19 +18351,19 @@ const FormItemMd = createMetadata({
|
|
|
18280
18351
|
labelBreak: {
|
|
18281
18352
|
description: `This boolean value indicates if the label can be split into multiple lines if it would overflow the available label width.`,
|
|
18282
18353
|
type: "boolean",
|
|
18283
|
-
defaultValue: defaultProps$
|
|
18354
|
+
defaultValue: defaultProps$5.labelBreak
|
|
18284
18355
|
},
|
|
18285
18356
|
enabled: dEnabled(),
|
|
18286
18357
|
type: {
|
|
18287
18358
|
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.`,
|
|
18288
18359
|
availableValues: formControlTypesMd,
|
|
18289
|
-
defaultValue: defaultProps$
|
|
18360
|
+
defaultValue: defaultProps$5.type,
|
|
18290
18361
|
valueType: "string"
|
|
18291
18362
|
},
|
|
18292
18363
|
customValidationsDebounce: {
|
|
18293
18364
|
description: `This optional number prop determines the time interval between two runs of a custom validation.`,
|
|
18294
18365
|
type: "number",
|
|
18295
|
-
defaultValue: defaultProps$
|
|
18366
|
+
defaultValue: defaultProps$5.customValidationsDebounce
|
|
18296
18367
|
},
|
|
18297
18368
|
validationMode: {
|
|
18298
18369
|
description: `This property sets what kind of validation mode or strategy to employ for a particular input field.`,
|
|
@@ -18750,7 +18821,11 @@ class RestApiProxy {
|
|
|
18750
18821
|
transactionId = randomUUID(),
|
|
18751
18822
|
resolveBindingExpressions = false
|
|
18752
18823
|
}) => {
|
|
18753
|
-
const { file, asForm, formParams } = this.extractParam(
|
|
18824
|
+
const { file, asForm, formParams } = this.extractParam(
|
|
18825
|
+
resolveBindingExpressions,
|
|
18826
|
+
operation,
|
|
18827
|
+
params
|
|
18828
|
+
);
|
|
18754
18829
|
const uploadParams = {
|
|
18755
18830
|
chunkStart: chunk == null ? void 0 : chunk.chunkStart,
|
|
18756
18831
|
chunkEnd: chunk ? (chunk == null ? void 0 : chunk.chunkEnd) - 1 : void 0,
|
|
@@ -18764,9 +18839,11 @@ class RestApiProxy {
|
|
|
18764
18839
|
const data = new FormData();
|
|
18765
18840
|
data.append(file.name, (chunk == null ? void 0 : chunk.blob) || file);
|
|
18766
18841
|
if (formParams) {
|
|
18767
|
-
Object.entries(this.extractParam(resolveBindingExpressions, formParams, params)).forEach(
|
|
18768
|
-
|
|
18769
|
-
|
|
18842
|
+
Object.entries(this.extractParam(resolveBindingExpressions, formParams, params)).forEach(
|
|
18843
|
+
([key, value]) => {
|
|
18844
|
+
data.append(key, value);
|
|
18845
|
+
}
|
|
18846
|
+
);
|
|
18770
18847
|
}
|
|
18771
18848
|
return await this.executeOperation({
|
|
18772
18849
|
operation,
|
|
@@ -18800,7 +18877,11 @@ class RestApiProxy {
|
|
|
18800
18877
|
resolveBindingExpressions,
|
|
18801
18878
|
rawBody: evt.target.result,
|
|
18802
18879
|
headers: {
|
|
18803
|
-
...this.extractParam(
|
|
18880
|
+
...this.extractParam(
|
|
18881
|
+
resolveBindingExpressions,
|
|
18882
|
+
operation.headers || {},
|
|
18883
|
+
contextParams
|
|
18884
|
+
),
|
|
18804
18885
|
"Content-Type": file.type
|
|
18805
18886
|
},
|
|
18806
18887
|
onUploadProgress,
|
|
@@ -18861,18 +18942,29 @@ class RestApiProxy {
|
|
|
18861
18942
|
resolveBindingExpressions,
|
|
18862
18943
|
relativePath = this.extractParam(resolveBindingExpressions, operation.url, contextParams),
|
|
18863
18944
|
method = this.extractParam(resolveBindingExpressions, operation.method, contextParams),
|
|
18864
|
-
queryParams = this.extractParam(
|
|
18945
|
+
queryParams = this.extractParam(
|
|
18946
|
+
resolveBindingExpressions,
|
|
18947
|
+
operation.queryParams,
|
|
18948
|
+
contextParams
|
|
18949
|
+
),
|
|
18865
18950
|
body = this.extractParam(resolveBindingExpressions, operation.body, contextParams, true),
|
|
18866
18951
|
rawBody = this.extractParam(resolveBindingExpressions, operation.rawBody, contextParams),
|
|
18867
18952
|
headers = this.extractParam(resolveBindingExpressions, operation.headers, contextParams),
|
|
18868
|
-
payloadType = this.extractParam(
|
|
18953
|
+
payloadType = this.extractParam(
|
|
18954
|
+
resolveBindingExpressions,
|
|
18955
|
+
operation.payloadType,
|
|
18956
|
+
contextParams
|
|
18957
|
+
) || "json",
|
|
18869
18958
|
onUploadProgress,
|
|
18870
18959
|
parseResponse = this.tryParseResponse,
|
|
18871
18960
|
transactionId
|
|
18872
18961
|
}) => {
|
|
18873
18962
|
const includeClientTxId = method && method !== "get" && !!transactionId;
|
|
18874
18963
|
const headersWithoutContentType = { ...this.getHeaders(), ["Content-Type"]: void 0 };
|
|
18875
|
-
const aggregatedHeaders = omitBy(
|
|
18964
|
+
const aggregatedHeaders = omitBy(
|
|
18965
|
+
{ ...body ? this.getHeaders() : headersWithoutContentType, ...headers },
|
|
18966
|
+
isUndefined
|
|
18967
|
+
);
|
|
18876
18968
|
if (includeClientTxId) {
|
|
18877
18969
|
aggregatedHeaders["x-ue-client-tx-id"] = transactionId;
|
|
18878
18970
|
}
|
|
@@ -18936,7 +19028,9 @@ class RestApiProxy {
|
|
|
18936
19028
|
if ("config" in response) {
|
|
18937
19029
|
try {
|
|
18938
19030
|
return new GenericBackendError(
|
|
18939
|
-
this.config.errorResponseTransform ? this.extractParam(true, this.config.errorResponseTransform, {
|
|
19031
|
+
this.config.errorResponseTransform ? this.extractParam(true, this.config.errorResponseTransform, {
|
|
19032
|
+
$response: response.data
|
|
19033
|
+
}) : response.data,
|
|
18940
19034
|
response.status
|
|
18941
19035
|
);
|
|
18942
19036
|
} catch {
|
|
@@ -18951,7 +19045,9 @@ class RestApiProxy {
|
|
|
18951
19045
|
} catch {
|
|
18952
19046
|
}
|
|
18953
19047
|
}
|
|
18954
|
-
return new Error(
|
|
19048
|
+
return new Error(
|
|
19049
|
+
`[!] Server responded with an error: ${response.status} - ${response.statusText}`
|
|
19050
|
+
);
|
|
18955
19051
|
};
|
|
18956
19052
|
this.getHeaders = () => {
|
|
18957
19053
|
return {
|
|
@@ -18962,9 +19058,10 @@ class RestApiProxy {
|
|
|
18962
19058
|
const conf = (appContext == null ? void 0 : appContext.appGlobals) || { apiUrl: "" };
|
|
18963
19059
|
const { apiUrl, errorResponseTransform } = conf;
|
|
18964
19060
|
this.appContext = appContext;
|
|
18965
|
-
const
|
|
19061
|
+
const xsrfToken = readCookie("XSRF-TOKEN");
|
|
19062
|
+
const xsrfHeaders = xsrfToken ? {
|
|
18966
19063
|
"X-XSRF-TOKEN": readCookie("XSRF-TOKEN")
|
|
18967
|
-
};
|
|
19064
|
+
} : {};
|
|
18968
19065
|
this.config = {
|
|
18969
19066
|
apiUrl,
|
|
18970
19067
|
errorResponseTransform,
|
|
@@ -19135,7 +19232,7 @@ const FormMd = createMetadata({
|
|
|
19135
19232
|
description: `This property sets the position of the item labels within the form.Individual \`FormItem\` instances can override this property.`,
|
|
19136
19233
|
availableValues: labelPositionMd,
|
|
19137
19234
|
type: "string",
|
|
19138
|
-
defaultValue: defaultProps$
|
|
19235
|
+
defaultValue: defaultProps$7.itemLabelPosition
|
|
19139
19236
|
},
|
|
19140
19237
|
itemLabelWidth: {
|
|
19141
19238
|
description: `This property sets the width of the item labels within the form. Individual \`FormItem\` instances can override this property.`,
|
|
@@ -19144,12 +19241,12 @@ const FormMd = createMetadata({
|
|
|
19144
19241
|
itemLabelBreak: {
|
|
19145
19242
|
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.`,
|
|
19146
19243
|
type: "boolean",
|
|
19147
|
-
defaultValue: defaultProps$
|
|
19244
|
+
defaultValue: defaultProps$7.itemLabelBreak
|
|
19148
19245
|
},
|
|
19149
19246
|
keepModalOpenOnSubmit: {
|
|
19150
19247
|
description: "This property prevents the modal from closing when the form is submitted.",
|
|
19151
19248
|
type: "boolean",
|
|
19152
|
-
defaultValue: defaultProps$
|
|
19249
|
+
defaultValue: defaultProps$7.keepModalOpenOnSubmit
|
|
19153
19250
|
},
|
|
19154
19251
|
data: {
|
|
19155
19252
|
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.`
|
|
@@ -19157,17 +19254,17 @@ const FormMd = createMetadata({
|
|
|
19157
19254
|
cancelLabel: {
|
|
19158
19255
|
description: "This property defines the label of the Cancel button.",
|
|
19159
19256
|
type: "string",
|
|
19160
|
-
defaultValue: defaultProps$
|
|
19257
|
+
defaultValue: defaultProps$7.cancelLabel
|
|
19161
19258
|
},
|
|
19162
19259
|
saveLabel: {
|
|
19163
19260
|
description: `This property defines the label of the Save button.`,
|
|
19164
19261
|
type: "string",
|
|
19165
|
-
defaultValue: defaultProps$
|
|
19262
|
+
defaultValue: defaultProps$7.saveLabel
|
|
19166
19263
|
},
|
|
19167
19264
|
saveInProgressLabel: {
|
|
19168
19265
|
description: "This property defines the label of the Save button to display during the form data submit (save) operation.",
|
|
19169
19266
|
type: "string",
|
|
19170
|
-
defaultValue: defaultProps$
|
|
19267
|
+
defaultValue: defaultProps$7.saveInProgressLabel
|
|
19171
19268
|
},
|
|
19172
19269
|
swapCancelAndSave: {
|
|
19173
19270
|
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.`,
|
|
@@ -19771,7 +19868,7 @@ function mergeProps(childProps, restProps) {
|
|
|
19771
19868
|
}
|
|
19772
19869
|
return { ...childProps, ...overrideProps };
|
|
19773
19870
|
}
|
|
19774
|
-
const defaultProps$
|
|
19871
|
+
const defaultProps$4 = {
|
|
19775
19872
|
iconHorizontalExpanded: "chevronleft",
|
|
19776
19873
|
iconHorizontalCollapsed: "chevronright",
|
|
19777
19874
|
iconVerticalExpanded: "chevronup",
|
|
@@ -19779,10 +19876,10 @@ const defaultProps$5 = {
|
|
|
19779
19876
|
};
|
|
19780
19877
|
const NavGroupContext = createContext({
|
|
19781
19878
|
level: -1,
|
|
19782
|
-
iconHorizontalCollapsed: defaultProps$
|
|
19783
|
-
iconHorizontalExpanded: defaultProps$
|
|
19784
|
-
iconVerticalCollapsed: defaultProps$
|
|
19785
|
-
iconVerticalExpanded: defaultProps$
|
|
19879
|
+
iconHorizontalCollapsed: defaultProps$4.iconHorizontalCollapsed,
|
|
19880
|
+
iconHorizontalExpanded: defaultProps$4.iconHorizontalExpanded,
|
|
19881
|
+
iconVerticalCollapsed: defaultProps$4.iconVerticalCollapsed,
|
|
19882
|
+
iconVerticalExpanded: defaultProps$4.iconVerticalExpanded
|
|
19786
19883
|
});
|
|
19787
19884
|
const NavGroup = forwardRef(function NavGroup2({
|
|
19788
19885
|
node,
|
|
@@ -19807,10 +19904,10 @@ const NavGroup = forwardRef(function NavGroup2({
|
|
|
19807
19904
|
const navGroupContextValue = useMemo(() => {
|
|
19808
19905
|
return {
|
|
19809
19906
|
level: level + 1,
|
|
19810
|
-
iconHorizontalCollapsed: iconHorizontalCollapsed ?? defaultProps$
|
|
19811
|
-
iconHorizontalExpanded: iconHorizontalExpanded ?? defaultProps$
|
|
19812
|
-
iconVerticalCollapsed: iconVerticalCollapsed ?? defaultProps$
|
|
19813
|
-
iconVerticalExpanded: iconVerticalExpanded ?? defaultProps$
|
|
19907
|
+
iconHorizontalCollapsed: iconHorizontalCollapsed ?? defaultProps$4.iconHorizontalCollapsed,
|
|
19908
|
+
iconHorizontalExpanded: iconHorizontalExpanded ?? defaultProps$4.iconHorizontalExpanded,
|
|
19909
|
+
iconVerticalCollapsed: iconVerticalCollapsed ?? defaultProps$4.iconVerticalCollapsed,
|
|
19910
|
+
iconVerticalExpanded: iconVerticalExpanded ?? defaultProps$4.iconVerticalExpanded
|
|
19814
19911
|
};
|
|
19815
19912
|
}, [level]);
|
|
19816
19913
|
return /* @__PURE__ */ jsx(NavGroupContext.Provider, { value: navGroupContextValue, children: inline ? /* @__PURE__ */ jsx(
|
|
@@ -19957,22 +20054,22 @@ const NavGroupMd = createMetadata({
|
|
|
19957
20054
|
iconHorizontalExpanded: {
|
|
19958
20055
|
description: "Set a custom icon to display when the navigation menu is expanded, is in a **horizontal** app layout, and is in a navigation submenu.",
|
|
19959
20056
|
valueType: "string",
|
|
19960
|
-
defaultValue: defaultProps$
|
|
20057
|
+
defaultValue: defaultProps$4.iconHorizontalExpanded
|
|
19961
20058
|
},
|
|
19962
20059
|
iconVerticalExpanded: {
|
|
19963
20060
|
description: "Set a custom icon to display when the navigation menu is expanded, is in a **vertical** app layout, or is in a **horizontal** layout and is the top-level navigation item in the menu.",
|
|
19964
20061
|
valueType: "string",
|
|
19965
|
-
defaultValue: defaultProps$
|
|
20062
|
+
defaultValue: defaultProps$4.iconVerticalExpanded
|
|
19966
20063
|
},
|
|
19967
20064
|
iconHorizontalCollapsed: {
|
|
19968
20065
|
description: "Set a custom icon to display when the navigation menu is collapsed, is in a **horizontal** app layout, and is in a navigation submenu.",
|
|
19969
20066
|
valueType: "string",
|
|
19970
|
-
defaultValue: defaultProps$
|
|
20067
|
+
defaultValue: defaultProps$4.iconHorizontalCollapsed
|
|
19971
20068
|
},
|
|
19972
20069
|
iconVerticalCollapsed: {
|
|
19973
20070
|
description: "Set a custom icon to display when the navigation menu is collapsed, is in a **vertical** app layout, or is in a **horizontal** layout and is the top-level navigation item in the menu.",
|
|
19974
20071
|
valueType: "string",
|
|
19975
|
-
defaultValue: defaultProps$
|
|
20072
|
+
defaultValue: defaultProps$4.iconVerticalCollapsed
|
|
19976
20073
|
}
|
|
19977
20074
|
},
|
|
19978
20075
|
themeVars: parseScssVar(styles$n.themeVars),
|
|
@@ -20251,31 +20348,23 @@ const spinnerComponentRenderer = createComponentRenderer(
|
|
|
20251
20348
|
);
|
|
20252
20349
|
}
|
|
20253
20350
|
);
|
|
20254
|
-
const themeVars$a = `'{"
|
|
20255
|
-
const markdownContent = "
|
|
20256
|
-
const
|
|
20257
|
-
const
|
|
20258
|
-
const admonitionBlockquote = "
|
|
20259
|
-
const admonitionContainer = "
|
|
20260
|
-
const
|
|
20261
|
-
const
|
|
20262
|
-
const unorderedList = "_unorderedList_1y6tk_81";
|
|
20263
|
-
const orderedList = "_orderedList_1y6tk_87";
|
|
20264
|
-
const listItem$1 = "_listItem_1y6tk_93";
|
|
20265
|
-
const htmlHeading = "_htmlHeading_1y6tk_101";
|
|
20351
|
+
const themeVars$a = `'{"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)"}'`;
|
|
20352
|
+
const markdownContent = "_markdownContent_1ldtu_13";
|
|
20353
|
+
const blockquote = "_blockquote_1ldtu_13";
|
|
20354
|
+
const blockquoteContainer = "_blockquoteContainer_1ldtu_31";
|
|
20355
|
+
const admonitionBlockquote = "_admonitionBlockquote_1ldtu_34";
|
|
20356
|
+
const admonitionContainer = "_admonitionContainer_1ldtu_40";
|
|
20357
|
+
const admonitionContent = "_admonitionContent_1ldtu_45";
|
|
20358
|
+
const admonitionIcon = "_admonitionIcon_1ldtu_48";
|
|
20266
20359
|
const styles$m = {
|
|
20267
20360
|
themeVars: themeVars$a,
|
|
20268
20361
|
markdownContent,
|
|
20269
|
-
horizontalRule,
|
|
20270
20362
|
blockquote,
|
|
20363
|
+
blockquoteContainer,
|
|
20271
20364
|
admonitionBlockquote,
|
|
20272
20365
|
admonitionContainer,
|
|
20273
|
-
admonitionIcon,
|
|
20274
20366
|
admonitionContent,
|
|
20275
|
-
|
|
20276
|
-
orderedList,
|
|
20277
|
-
listItem: listItem$1,
|
|
20278
|
-
htmlHeading
|
|
20367
|
+
admonitionIcon
|
|
20279
20368
|
};
|
|
20280
20369
|
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)))"}'`;
|
|
20281
20370
|
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)))"}'`;
|
|
@@ -20286,21 +20375,19 @@ const themeVarsTr = `'{"backgroundColor-HtmlTr": "var(--xmlui-backgroundColor-Ht
|
|
|
20286
20375
|
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)))"}'`;
|
|
20287
20376
|
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)"}'`;
|
|
20288
20377
|
const themeVarsHeading = `'{"marginTop-HtmlHeading": "var(--xmlui-marginTop-HtmlHeading)", "marginBottom-HtmlHeading": "var(--xmlui-marginBottom-HtmlHeading)"}'`;
|
|
20289
|
-
const
|
|
20290
|
-
const
|
|
20291
|
-
const
|
|
20292
|
-
const
|
|
20293
|
-
const
|
|
20294
|
-
const
|
|
20295
|
-
const
|
|
20296
|
-
const
|
|
20297
|
-
const
|
|
20298
|
-
const
|
|
20299
|
-
const
|
|
20300
|
-
const
|
|
20301
|
-
const
|
|
20302
|
-
const htmlH5 = "_htmlH5_1snis_228";
|
|
20303
|
-
const htmlH6 = "_htmlH6_1snis_228";
|
|
20378
|
+
const themeVarsVideo = `'{"marginTop-HtmlVideo": "var(--xmlui-marginTop-HtmlVideo)", "marginBottom-HtmlVideo": "var(--xmlui-marginBottom-HtmlVideo)"}'`;
|
|
20379
|
+
const themeVarsDetails = `'{"marginTop-HtmlDetails": "var(--xmlui-marginTop-HtmlDetails)", "marginBottom-HtmlDetails": "var(--xmlui-marginBottom-HtmlDetails)"}'`;
|
|
20380
|
+
const htmlTable = "_htmlTable_1wzn5_13";
|
|
20381
|
+
const htmlThead = "_htmlThead_1wzn5_49";
|
|
20382
|
+
const htmlTbody = "_htmlTbody_1wzn5_82";
|
|
20383
|
+
const htmlTfoot = "_htmlTfoot_1wzn5_90";
|
|
20384
|
+
const htmlTh = "_htmlTh_1wzn5_49";
|
|
20385
|
+
const htmlTr = "_htmlTr_1wzn5_130";
|
|
20386
|
+
const htmlTd = "_htmlTd_1wzn5_167";
|
|
20387
|
+
const htmlUl = "_htmlUl_1wzn5_200";
|
|
20388
|
+
const htmlOl = "_htmlOl_1wzn5_205";
|
|
20389
|
+
const htmlVideo = "_htmlVideo_1wzn5_233";
|
|
20390
|
+
const htmlDetails = "_htmlDetails_1wzn5_238";
|
|
20304
20391
|
const styles$l = {
|
|
20305
20392
|
themeVarsTable,
|
|
20306
20393
|
themeVarsThead,
|
|
@@ -20311,6 +20398,8 @@ const styles$l = {
|
|
|
20311
20398
|
themeVarsTd,
|
|
20312
20399
|
themeVarsList,
|
|
20313
20400
|
themeVarsHeading,
|
|
20401
|
+
themeVarsVideo,
|
|
20402
|
+
themeVarsDetails,
|
|
20314
20403
|
htmlTable,
|
|
20315
20404
|
htmlThead,
|
|
20316
20405
|
htmlTbody,
|
|
@@ -20320,51 +20409,51 @@ const styles$l = {
|
|
|
20320
20409
|
htmlTd,
|
|
20321
20410
|
htmlUl,
|
|
20322
20411
|
htmlOl,
|
|
20323
|
-
|
|
20324
|
-
|
|
20325
|
-
htmlH3,
|
|
20326
|
-
htmlH4,
|
|
20327
|
-
htmlH5,
|
|
20328
|
-
htmlH6
|
|
20329
|
-
};
|
|
20330
|
-
const defaultProps$4 = {
|
|
20331
|
-
removeIndents: true
|
|
20412
|
+
htmlVideo,
|
|
20413
|
+
htmlDetails
|
|
20332
20414
|
};
|
|
20333
20415
|
const Markdown = memo(function Markdown2({
|
|
20334
20416
|
extractValue,
|
|
20335
|
-
removeIndents =
|
|
20417
|
+
removeIndents = true,
|
|
20336
20418
|
children,
|
|
20337
20419
|
style: style2
|
|
20338
20420
|
}) {
|
|
20339
20421
|
if (typeof children !== "string") {
|
|
20340
20422
|
return null;
|
|
20341
20423
|
}
|
|
20342
|
-
|
|
20424
|
+
children = removeIndents ? removeTextIndents(children) : children;
|
|
20343
20425
|
return /* @__PURE__ */ jsx("div", { className: styles$m.markdownContent, style: { ...style2 }, children: /* @__PURE__ */ jsx(
|
|
20344
20426
|
ReactMarkdown,
|
|
20345
20427
|
{
|
|
20346
20428
|
remarkPlugins: [remarkGfm, [bindingExpression, { extractValue }]],
|
|
20429
|
+
rehypePlugins: [rehypeRaw],
|
|
20347
20430
|
components: {
|
|
20431
|
+
details({ children: children2, node, ...props }) {
|
|
20432
|
+
return /* @__PURE__ */ jsx("details", { className: styles$l.htmlDetails, ...props, children: children2 });
|
|
20433
|
+
},
|
|
20434
|
+
video({ children: children2, node, ...props }) {
|
|
20435
|
+
return /* @__PURE__ */ jsx("video", { className: styles$l.htmlVideo, ...props, children: children2 });
|
|
20436
|
+
},
|
|
20348
20437
|
h1({ children: children2 }) {
|
|
20349
|
-
return /* @__PURE__ */ jsx(
|
|
20438
|
+
return /* @__PURE__ */ jsx(Heading, { level: "h1", children: children2 });
|
|
20350
20439
|
},
|
|
20351
20440
|
h2({ children: children2 }) {
|
|
20352
|
-
return /* @__PURE__ */ jsx(
|
|
20441
|
+
return /* @__PURE__ */ jsx(Heading, { level: "h2", children: children2 });
|
|
20353
20442
|
},
|
|
20354
20443
|
h3({ children: children2 }) {
|
|
20355
|
-
return /* @__PURE__ */ jsx(
|
|
20444
|
+
return /* @__PURE__ */ jsx(Heading, { level: "h3", children: children2 });
|
|
20356
20445
|
},
|
|
20357
20446
|
h4({ children: children2 }) {
|
|
20358
|
-
return /* @__PURE__ */ jsx(
|
|
20447
|
+
return /* @__PURE__ */ jsx(Heading, { level: "h4", children: children2 });
|
|
20359
20448
|
},
|
|
20360
20449
|
h5({ children: children2 }) {
|
|
20361
|
-
return /* @__PURE__ */ jsx(
|
|
20450
|
+
return /* @__PURE__ */ jsx(Heading, { level: "h5", children: children2 });
|
|
20362
20451
|
},
|
|
20363
20452
|
h6({ children: children2 }) {
|
|
20364
|
-
return /* @__PURE__ */ jsx(
|
|
20453
|
+
return /* @__PURE__ */ jsx(Heading, { level: "h6", children: children2 });
|
|
20365
20454
|
},
|
|
20366
20455
|
p({ id, children: children2 }) {
|
|
20367
|
-
return /* @__PURE__ */ jsx(Text, { uid: id, children: children2 });
|
|
20456
|
+
return /* @__PURE__ */ jsx(Text, { uid: id, variant: "markdown", children: children2 });
|
|
20368
20457
|
},
|
|
20369
20458
|
code({ id, children: children2 }) {
|
|
20370
20459
|
return /* @__PURE__ */ jsx(Text, { uid: id, variant: "code", children: children2 });
|
|
@@ -20396,8 +20485,9 @@ const Markdown = memo(function Markdown2({
|
|
|
20396
20485
|
hr() {
|
|
20397
20486
|
return /* @__PURE__ */ jsx(HorizontalRule, {});
|
|
20398
20487
|
},
|
|
20399
|
-
a({
|
|
20400
|
-
|
|
20488
|
+
a({ children: children2, href, ...props }) {
|
|
20489
|
+
const allowedProps = ["style", "disabled", "active", "icon", "onClick"];
|
|
20490
|
+
return /* @__PURE__ */ jsx(LocalLink, { to: href, ...allowedProps, children: children2 });
|
|
20401
20491
|
},
|
|
20402
20492
|
img({ src, alt }) {
|
|
20403
20493
|
return /* @__PURE__ */ jsx(Image, { src, alt });
|
|
@@ -20435,7 +20525,7 @@ const Markdown = memo(function Markdown2({
|
|
|
20435
20525
|
return /* @__PURE__ */ jsx("tfoot", { className: styles$l.htmlTfoot, children: children2 });
|
|
20436
20526
|
}
|
|
20437
20527
|
},
|
|
20438
|
-
children
|
|
20528
|
+
children
|
|
20439
20529
|
}
|
|
20440
20530
|
) });
|
|
20441
20531
|
});
|
|
@@ -20506,7 +20596,7 @@ const Blockquote = ({ children, style: style2 }) => {
|
|
|
20506
20596
|
/* @__PURE__ */ jsx("div", { className: styles$m.admonitionContent, children: processedChildren })
|
|
20507
20597
|
] }) });
|
|
20508
20598
|
}
|
|
20509
|
-
return /* @__PURE__ */ jsx("blockquote", { className: styles$m.blockquote, style: style2, children });
|
|
20599
|
+
return /* @__PURE__ */ jsx("blockquote", { className: styles$m.blockquote, style: style2, children: /* @__PURE__ */ jsx("div", { className: styles$m.blockquoteContainer, children }) });
|
|
20510
20600
|
};
|
|
20511
20601
|
function bindingExpression({ extractValue }) {
|
|
20512
20602
|
return (tree) => {
|
|
@@ -20558,26 +20648,28 @@ function bindingExpression({ extractValue }) {
|
|
|
20558
20648
|
}
|
|
20559
20649
|
const COMP$w = "Markdown";
|
|
20560
20650
|
const MarkdownMd = createMetadata({
|
|
20561
|
-
description: `\`${COMP$w}\` displays plain text styled
|
|
20651
|
+
description: `\`${COMP$w}\` displays plain text styled using markdown syntax.`,
|
|
20562
20652
|
themeVars: parseScssVar(styles$m.themeVars),
|
|
20563
20653
|
props: {
|
|
20564
20654
|
content: d("This property sets the markdown content to display."),
|
|
20565
20655
|
removeIndents: {
|
|
20566
20656
|
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.",
|
|
20567
20657
|
valueType: "boolean",
|
|
20568
|
-
defaultValue:
|
|
20658
|
+
defaultValue: true
|
|
20569
20659
|
}
|
|
20570
20660
|
},
|
|
20571
20661
|
defaultThemeVars: {
|
|
20572
|
-
"
|
|
20573
|
-
"
|
|
20574
|
-
"
|
|
20575
|
-
"
|
|
20576
|
-
"
|
|
20577
|
-
"
|
|
20578
|
-
"
|
|
20579
|
-
"
|
|
20580
|
-
"
|
|
20662
|
+
"borderRadius-Admonition": "$space-4",
|
|
20663
|
+
"iconSize-Admonition": "1.5rem",
|
|
20664
|
+
"padding-Admonition": "1rem",
|
|
20665
|
+
"marginBottom-Admonition": "1rem",
|
|
20666
|
+
"marginLeft-Admonition-content": ".5rem",
|
|
20667
|
+
"accentWidth-Blockquote": "3px",
|
|
20668
|
+
"accentColor-Blockquote": "$color-surface-500",
|
|
20669
|
+
"padding-Blockquote": ".5rem",
|
|
20670
|
+
"marginBottom-Blockquote": "1rem",
|
|
20671
|
+
"marginBottom-Text-codefence": ".5rem",
|
|
20672
|
+
"marginBottom-Text-markdown": ".5rem",
|
|
20581
20673
|
light: {
|
|
20582
20674
|
// --- No light-specific theme vars
|
|
20583
20675
|
},
|
|
@@ -20609,10 +20701,7 @@ const markdownComponentRenderer = createComponentRenderer(
|
|
|
20609
20701
|
Markdown,
|
|
20610
20702
|
{
|
|
20611
20703
|
style: layoutCss,
|
|
20612
|
-
removeIndents: extractValue.asOptionalBoolean(
|
|
20613
|
-
node.props.removeIndents,
|
|
20614
|
-
defaultProps$4.removeIndents
|
|
20615
|
-
),
|
|
20704
|
+
removeIndents: extractValue.asOptionalBoolean(node.props.removeIndents, true),
|
|
20616
20705
|
extractValue,
|
|
20617
20706
|
children: renderedChildren
|
|
20618
20707
|
}
|
|
@@ -21081,17 +21170,17 @@ const CheckboxMd = createMetadata({
|
|
|
21081
21170
|
status: "stable",
|
|
21082
21171
|
description: `The \`${COMP$t}\` 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.`,
|
|
21083
21172
|
props: {
|
|
21084
|
-
indeterminate: dIndeterminate(defaultProps$
|
|
21173
|
+
indeterminate: dIndeterminate(defaultProps$f.indeterminate),
|
|
21085
21174
|
label: dLabel(),
|
|
21086
21175
|
labelPosition: dLabelPosition("end"),
|
|
21087
21176
|
labelWidth: dLabelWidth(COMP$t),
|
|
21088
21177
|
labelBreak: dLabelBreak(COMP$t),
|
|
21089
21178
|
required: dRequired(),
|
|
21090
|
-
initialValue: dInitialValue(defaultProps$
|
|
21179
|
+
initialValue: dInitialValue(defaultProps$f.initialValue),
|
|
21091
21180
|
autoFocus: dAutoFocus(),
|
|
21092
21181
|
readOnly: dReadonly(),
|
|
21093
21182
|
enabled: dEnabled(),
|
|
21094
|
-
validationStatus: dValidationStatus(defaultProps$
|
|
21183
|
+
validationStatus: dValidationStatus(defaultProps$f.validationStatus),
|
|
21095
21184
|
description: dInternal(
|
|
21096
21185
|
`(*** NOT IMPLEMENTED YET ***) This optional property displays an alternate description of the ${COMP$t} besides its label.`
|
|
21097
21186
|
),
|
|
@@ -21154,7 +21243,7 @@ const checkboxComponentRenderer = createComponentRenderer(
|
|
|
21154
21243
|
style: layoutCss,
|
|
21155
21244
|
initialValue: extractValue.asOptionalBoolean(
|
|
21156
21245
|
node.props.initialValue,
|
|
21157
|
-
defaultProps$
|
|
21246
|
+
defaultProps$f.initialValue
|
|
21158
21247
|
),
|
|
21159
21248
|
value: state == null ? void 0 : state.value,
|
|
21160
21249
|
readOnly: extractValue.asOptionalBoolean(node.props.readOnly),
|
|
@@ -21178,17 +21267,17 @@ const COMP$s = "Switch";
|
|
|
21178
21267
|
const SwitchMd = createMetadata({
|
|
21179
21268
|
description: `The \`${COMP$s}\` 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.`,
|
|
21180
21269
|
props: {
|
|
21181
|
-
indeterminate: dIndeterminate(defaultProps$
|
|
21270
|
+
indeterminate: dIndeterminate(defaultProps$f.indeterminate),
|
|
21182
21271
|
label: dLabel(),
|
|
21183
21272
|
labelPosition: dLabelPosition("end"),
|
|
21184
21273
|
labelWidth: dLabelWidth(COMP$s),
|
|
21185
21274
|
labelBreak: dLabelBreak(COMP$s),
|
|
21186
21275
|
required: dRequired(),
|
|
21187
|
-
initialValue: dInitialValue(defaultProps$
|
|
21276
|
+
initialValue: dInitialValue(defaultProps$f.initialValue),
|
|
21188
21277
|
autoFocus: dAutoFocus(),
|
|
21189
21278
|
readOnly: dReadonly(),
|
|
21190
21279
|
enabled: dEnabled(),
|
|
21191
|
-
validationStatus: dValidationStatus(defaultProps$
|
|
21280
|
+
validationStatus: dValidationStatus(defaultProps$f.validationStatus),
|
|
21192
21281
|
description: dInternal(
|
|
21193
21282
|
`(*** NOT IMPLEMENTED YET ***) This optional property displays an alternate description of the ${COMP$s} besides its label.`
|
|
21194
21283
|
)
|
|
@@ -21237,7 +21326,7 @@ const switchComponentRenderer = createComponentRenderer(
|
|
|
21237
21326
|
style: layoutCss,
|
|
21238
21327
|
initialValue: extractValue.asOptionalBoolean(
|
|
21239
21328
|
node.props.initialValue,
|
|
21240
|
-
defaultProps$
|
|
21329
|
+
defaultProps$f.initialValue
|
|
21241
21330
|
),
|
|
21242
21331
|
value: state == null ? void 0 : state.value,
|
|
21243
21332
|
readOnly: extractValue.asOptionalBoolean(node.props.readOnly),
|
|
@@ -23210,87 +23299,19 @@ const wrapper$2 = "_wrapper_8djl9_13";
|
|
|
23210
23299
|
const styles$h = {
|
|
23211
23300
|
wrapper: wrapper$2
|
|
23212
23301
|
};
|
|
23213
|
-
const
|
|
23214
|
-
const
|
|
23215
|
-
const
|
|
23302
|
+
const wrapper$1 = "_wrapper_1buy3_13";
|
|
23303
|
+
const actions = "_actions_1buy3_24";
|
|
23304
|
+
const tabs$1 = "_tabs_1buy3_30";
|
|
23305
|
+
const tabItems = "_tabItems_1buy3_36";
|
|
23306
|
+
const sideButtons = "_sideButtons_1buy3_41";
|
|
23307
|
+
const menuItem = "_menuItem_1buy3_49";
|
|
23308
|
+
const list$1 = "_list_1buy3_59";
|
|
23309
|
+
const menu = "_menu_1buy3_49";
|
|
23310
|
+
const content$1 = "_content_1buy3_75";
|
|
23311
|
+
const copyButton = "_copyButton_1buy3_80";
|
|
23312
|
+
const xmluiEditor = "_xmluiEditor_1buy3_98";
|
|
23216
23313
|
const styles$g = {
|
|
23217
|
-
|
|
23218
|
-
dark,
|
|
23219
|
-
wrapper: wrapper$1
|
|
23220
|
-
};
|
|
23221
|
-
let highlighter = null;
|
|
23222
|
-
function XmluiCodeHighlighter({ value }) {
|
|
23223
|
-
const { activeThemeTone } = useTheme();
|
|
23224
|
-
const [initialized, setInitialized] = useState(false);
|
|
23225
|
-
useEffect(() => {
|
|
23226
|
-
async function load() {
|
|
23227
|
-
if (!highlighter) {
|
|
23228
|
-
const { createHighlighterCore } = await import("./core-XLM8cuFP.mjs");
|
|
23229
|
-
highlighter = await createHighlighterCore({
|
|
23230
|
-
// @ts-ignore
|
|
23231
|
-
themes: [import("./xmlui-h2uM9PUY.mjs")],
|
|
23232
|
-
// @ts-ignore
|
|
23233
|
-
langs: [import("./grammar.tmLanguage-CiEHpsbo.mjs")],
|
|
23234
|
-
loadWasm: import("./wasm-DDgzZJey.mjs")
|
|
23235
|
-
});
|
|
23236
|
-
}
|
|
23237
|
-
setInitialized(true);
|
|
23238
|
-
}
|
|
23239
|
-
load();
|
|
23240
|
-
}, []);
|
|
23241
|
-
const html = useMemo(() => {
|
|
23242
|
-
return !initialized || !highlighter ? "" : highlighter.codeToHtml(value, {
|
|
23243
|
-
lang: "xmlui",
|
|
23244
|
-
theme: "xmlui",
|
|
23245
|
-
colorReplacements: {
|
|
23246
|
-
"#000001": "var(--syntax-token-component)",
|
|
23247
|
-
"#000002": "var(--syntax-token-delimiter-angle)",
|
|
23248
|
-
"#000003": "var(--syntax-token-attribute-name)",
|
|
23249
|
-
"#000004": "var(--syntax-token-equal-sign)",
|
|
23250
|
-
"#000005": "var(--syntax-token-string)",
|
|
23251
|
-
"#000006": "var(--syntax-token-script)",
|
|
23252
|
-
"#000007": "var(--syntax-token-helper)",
|
|
23253
|
-
"#000008": "var(--syntax-token-comment)",
|
|
23254
|
-
"#000009": "var(--syntax-token-escape)",
|
|
23255
|
-
"#000010": "var(--syntax-token-constant)",
|
|
23256
|
-
"#000011": "var(--syntax-token-cdata)",
|
|
23257
|
-
"#000012": "var(--syntax-token-delimiter-curly)",
|
|
23258
|
-
"#000013": "var(--syntax-token-text)"
|
|
23259
|
-
}
|
|
23260
|
-
});
|
|
23261
|
-
}, [initialized, value]);
|
|
23262
|
-
return /* @__PURE__ */ jsx("div", { className: styles$g.wrapper, children: /* @__PURE__ */ jsx(
|
|
23263
|
-
"div",
|
|
23264
|
-
{
|
|
23265
|
-
className: classnames(styles$g.innerWrapper, {
|
|
23266
|
-
[styles$g.dark]: activeThemeTone === "dark",
|
|
23267
|
-
[styles$g.light]: activeThemeTone === "light"
|
|
23268
|
-
}),
|
|
23269
|
-
dangerouslySetInnerHTML: {
|
|
23270
|
-
__html: html
|
|
23271
|
-
}
|
|
23272
|
-
}
|
|
23273
|
-
) });
|
|
23274
|
-
}
|
|
23275
|
-
const codeComponentRenderer = createComponentRenderer(
|
|
23276
|
-
"XmluiCodehighlighter",
|
|
23277
|
-
{},
|
|
23278
|
-
({ node, renderChild: renderChild2 }) => {
|
|
23279
|
-
return /* @__PURE__ */ jsx(XmluiCodeHighlighter, { value: renderChild2(node.children) });
|
|
23280
|
-
}
|
|
23281
|
-
);
|
|
23282
|
-
const wrapper = "_wrapper_1f03i_13";
|
|
23283
|
-
const actions = "_actions_1f03i_24";
|
|
23284
|
-
const tabs$1 = "_tabs_1f03i_30";
|
|
23285
|
-
const tabItems = "_tabItems_1f03i_36";
|
|
23286
|
-
const sideButtons = "_sideButtons_1f03i_41";
|
|
23287
|
-
const menuItem = "_menuItem_1f03i_49";
|
|
23288
|
-
const list$1 = "_list_1f03i_59";
|
|
23289
|
-
const menu = "_menu_1f03i_49";
|
|
23290
|
-
const content$1 = "_content_1f03i_75";
|
|
23291
|
-
const copyButton = "_copyButton_1f03i_80";
|
|
23292
|
-
const styles$f = {
|
|
23293
|
-
wrapper,
|
|
23314
|
+
wrapper: wrapper$1,
|
|
23294
23315
|
actions,
|
|
23295
23316
|
tabs: tabs$1,
|
|
23296
23317
|
tabItems,
|
|
@@ -23299,110 +23320,9 @@ const styles$f = {
|
|
|
23299
23320
|
list: list$1,
|
|
23300
23321
|
menu,
|
|
23301
23322
|
content: content$1,
|
|
23302
|
-
copyButton
|
|
23323
|
+
copyButton,
|
|
23324
|
+
xmluiEditor
|
|
23303
23325
|
};
|
|
23304
|
-
function CiCalendarDate(props) {
|
|
23305
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": { "id": "Calendar_Date" }, "child": [{ "tag": "path", "attr": { "d": "M18.435,4.955h-1.94v-1.41c0-0.26-0.23-0.51-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v1.41h-7v-1.41\n c0-0.26-0.23-0.51-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v1.41h-1.93c-1.38,0-2.5,1.12-2.5,2.5v11c0,1.38,1.12,2.5,2.5,2.5h12.87\n c1.38,0,2.5-1.12,2.5-2.5v-11C20.935,6.075,19.815,4.955,18.435,4.955z M19.935,18.455c0,0.83-0.67,1.5-1.5,1.5H5.565\n c-0.83,0-1.5-0.67-1.5-1.5v-8.42h15.87V18.455z M19.935,9.035H4.065v-1.58c0-0.83,0.67-1.5,1.5-1.5h1.93v0.59\n c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-0.59h7v0.59c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-0.59\n h1.94c0.83,0,1.5,0.67,1.5,1.5V9.035z" } }, { "tag": "path", "attr": { "d": "M11.492,17.173v-3.46c0-0.059-0.064-0.095-0.114-0.064l-0.638,0.392\n c-0.1,0.061-0.228-0.01-0.228-0.128v-0.651c0-0.105,0.055-0.203,0.146-0.257l0.764-0.457c0.047-0.028,0.1-0.043,0.154-0.043h0.626\n c0.166,0,0.3,0.134,0.3,0.3v4.367c0,0.166-0.134,0.3-0.3,0.3h-0.409C11.626,17.473,11.492,17.339,11.492,17.173z" } }] }] })(props);
|
|
23306
|
-
}
|
|
23307
|
-
function IoMdLink(props) {
|
|
23308
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M74.6 256c0-38.3 31.1-69.4 69.4-69.4h88V144h-88c-61.8 0-112 50.2-112 112s50.2 112 112 112h88v-42.6h-88c-38.3 0-69.4-31.1-69.4-69.4zm85.4 22h192v-44H160v44zm208-134h-88v42.6h88c38.3 0 69.4 31.1 69.4 69.4s-31.1 69.4-69.4 69.4h-88V368h88c61.8 0 112-50.2 112-112s-50.2-112-112-112z" } }] })(props);
|
|
23309
|
-
}
|
|
23310
|
-
function IoChatboxOutline(props) {
|
|
23311
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M408 64H104a56.16 56.16 0 00-56 56v192a56.16 56.16 0 0056 56h40v80l93.72-78.14a8 8 0 015.13-1.86H408a56.16 56.16 0 0056-56V120a56.16 56.16 0 00-56-56z" } }] })(props);
|
|
23312
|
-
}
|
|
23313
|
-
function IoCubeOutline(props) {
|
|
23314
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M448 341.37V170.61A32 32 0 00432.11 143l-152-88.46a47.94 47.94 0 00-48.24 0L79.89 143A32 32 0 0064 170.61v170.76A32 32 0 0079.89 369l152 88.46a48 48 0 0048.24 0l152-88.46A32 32 0 00448 341.37z" } }, { "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M69 153.99l187 110 187-110m-187 310v-200" } }] })(props);
|
|
23315
|
-
}
|
|
23316
|
-
function IoEllipsisHorizontal(props) {
|
|
23317
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "circle", "attr": { "cx": "256", "cy": "256", "r": "48" } }, { "tag": "circle", "attr": { "cx": "416", "cy": "256", "r": "48" } }, { "tag": "circle", "attr": { "cx": "96", "cy": "256", "r": "48" } }] })(props);
|
|
23318
|
-
}
|
|
23319
|
-
function IoEllipsisVertical(props) {
|
|
23320
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "circle", "attr": { "cx": "256", "cy": "256", "r": "48" } }, { "tag": "circle", "attr": { "cx": "256", "cy": "416", "r": "48" } }, { "tag": "circle", "attr": { "cx": "256", "cy": "96", "r": "48" } }] })(props);
|
|
23321
|
-
}
|
|
23322
|
-
function IoPencil(props) {
|
|
23323
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "44", "d": "M358.62 129.28L86.49 402.08 70 442l39.92-16.49 272.8-272.13-24.1-24.1zm54.45-54.44l-11.79 11.78 24.1 24.1 11.79-11.79a16.51 16.51 0 000-23.34l-.75-.75a16.51 16.51 0 00-23.35 0z" } }] })(props);
|
|
23324
|
-
}
|
|
23325
|
-
function IoSwapVertical(props) {
|
|
23326
|
-
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M464 208L352 96 240 208m112-94.87V416M48 304l112 112 112-112m-112 94V96" } }] })(props);
|
|
23327
|
-
}
|
|
23328
|
-
function MdOutlineDeleteForever(props) {
|
|
23329
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" } }] })(props);
|
|
23330
|
-
}
|
|
23331
|
-
function MdOutlineLanguage(props) {
|
|
23332
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95a15.65 15.65 0 00-1.38-3.56A8.03 8.03 0 0118.92 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A7.987 7.987 0 015.08 16zm2.95-8H5.08a7.987 7.987 0 014.33-3.56A15.65 15.65 0 008.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 01-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" } }] })(props);
|
|
23333
|
-
}
|
|
23334
|
-
function MdOutlineLaunch(props) {
|
|
23335
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M19 19H5V5h7V3H5a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" } }] })(props);
|
|
23336
|
-
}
|
|
23337
|
-
function MdOutlineMailOutline(props) {
|
|
23338
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" } }] })(props);
|
|
23339
|
-
}
|
|
23340
|
-
function MdOutlineContentCopy(props) {
|
|
23341
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" } }] })(props);
|
|
23342
|
-
}
|
|
23343
|
-
function MdOutlineDriveFileRenameOutline(props) {
|
|
23344
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M15 16l-4 4h10v-4zM12.06 7.19L3 16.25V20h3.75l9.06-9.06-3.75-3.75zM5.92 18H5v-.92l7.06-7.06.92.92L5.92 18zM18.71 8.04a.996.996 0 000-1.41l-2.34-2.34a1.001 1.001 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" } }] })(props);
|
|
23345
|
-
}
|
|
23346
|
-
function MdOutlinePalette(props) {
|
|
23347
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67A2.5 2.5 0 0112 22zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5a.54.54 0 00-.14-.35c-.41-.46-.63-1.05-.63-1.65a2.5 2.5 0 012.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" } }, { "tag": "circle", "attr": { "cx": "6.5", "cy": "11.5", "r": "1.5" } }, { "tag": "circle", "attr": { "cx": "9.5", "cy": "7.5", "r": "1.5" } }, { "tag": "circle", "attr": { "cx": "14.5", "cy": "7.5", "r": "1.5" } }, { "tag": "circle", "attr": { "cx": "17.5", "cy": "11.5", "r": "1.5" } }] })(props);
|
|
23348
|
-
}
|
|
23349
|
-
function BsArrowDownShort(props) {
|
|
23350
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z" } }] })(props);
|
|
23351
|
-
}
|
|
23352
|
-
function BsArrowLeftShort(props) {
|
|
23353
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z" } }] })(props);
|
|
23354
|
-
}
|
|
23355
|
-
function BsArrowRightShort(props) {
|
|
23356
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" } }] })(props);
|
|
23357
|
-
}
|
|
23358
|
-
function BsArrowUpShort(props) {
|
|
23359
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z" } }] })(props);
|
|
23360
|
-
}
|
|
23361
|
-
function BsChatDots(props) {
|
|
23362
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" } }, { "tag": "path", "attr": { "d": "m2.165 15.803.02-.004c1.83-.363 2.948-.842 3.468-1.105A9.06 9.06 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.437 10.437 0 0 1-.524 2.318l-.003.011a10.722 10.722 0 0 1-.244.637c-.079.186.074.394.273.362a21.673 21.673 0 0 0 .693-.125zm.8-3.108a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6c0 3.193-3.004 6-7 6a8.06 8.06 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a10.97 10.97 0 0 0 .398-2z" } }] })(props);
|
|
23363
|
-
}
|
|
23364
|
-
function BsHash(props) {
|
|
23365
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M8.39 12.648a1.32 1.32 0 0 0-.015.18c0 .305.21.508.5.508.266 0 .492-.172.555-.477l.554-2.703h1.204c.421 0 .617-.234.617-.547 0-.312-.188-.53-.617-.53h-.985l.516-2.524h1.265c.43 0 .618-.227.618-.547 0-.313-.188-.524-.618-.524h-1.046l.476-2.304a1.06 1.06 0 0 0 .016-.164.51.51 0 0 0-.516-.516.54.54 0 0 0-.539.43l-.523 2.554H7.617l.477-2.304c.008-.04.015-.118.015-.164a.512.512 0 0 0-.523-.516.539.539 0 0 0-.531.43L6.53 5.484H5.414c-.43 0-.617.22-.617.532 0 .312.187.539.617.539h.906l-.515 2.523H4.609c-.421 0-.609.219-.609.531 0 .313.188.547.61.547h.976l-.516 2.492c-.008.04-.015.125-.015.18 0 .305.21.508.5.508.265 0 .492-.172.554-.477l.555-2.703h2.242l-.515 2.492zm-1-6.109h2.266l-.515 2.563H6.859l.532-2.563z" } }] })(props);
|
|
23366
|
-
}
|
|
23367
|
-
function BsPause(props) {
|
|
23368
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M6 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5zm4 0a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5z" } }] })(props);
|
|
23369
|
-
}
|
|
23370
|
-
function BsPlay(props) {
|
|
23371
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M10.804 8 5 4.633v6.734L10.804 8zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C4.713 12.69 4 12.345 4 11.692V4.308c0-.653.713-.998 1.233-.696l6.363 3.692z" } }] })(props);
|
|
23372
|
-
}
|
|
23373
|
-
function BsReply(props) {
|
|
23374
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M6.598 5.013a.144.144 0 0 1 .202.134V6.3a.5.5 0 0 0 .5.5c.667 0 2.013.005 3.3.822.984.624 1.99 1.76 2.595 3.876-1.02-.983-2.185-1.516-3.205-1.799a8.74 8.74 0 0 0-1.921-.306 7.404 7.404 0 0 0-.798.008h-.013l-.005.001h-.001L7.3 9.9l-.05-.498a.5.5 0 0 0-.45.498v1.153c0 .108-.11.176-.202.134L2.614 8.254a.503.503 0 0 0-.042-.028.147.147 0 0 1 0-.252.499.499 0 0 0 .042-.028l3.984-2.933zM7.8 10.386c.068 0 .143.003.223.006.434.02 1.034.086 1.7.271 1.326.368 2.896 1.202 3.94 3.08a.5.5 0 0 0 .933-.305c-.464-3.71-1.886-5.662-3.46-6.66-1.245-.79-2.527-.942-3.336-.971v-.66a1.144 1.144 0 0 0-1.767-.96l-3.994 2.94a1.147 1.147 0 0 0 0 1.946l3.994 2.94a1.144 1.144 0 0 0 1.767-.96v-.667z" } }] })(props);
|
|
23375
|
-
}
|
|
23376
|
-
function BsSquareFill(props) {
|
|
23377
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2z" } }] })(props);
|
|
23378
|
-
}
|
|
23379
|
-
function BsSquareHalf(props) {
|
|
23380
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M8 15V1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H8zm6 1a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12z" } }] })(props);
|
|
23381
|
-
}
|
|
23382
|
-
function BsSquare(props) {
|
|
23383
|
-
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z" } }] })(props);
|
|
23384
|
-
}
|
|
23385
|
-
function RiMessage2Line(props) {
|
|
23386
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": {}, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M6.455 19L2 22.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H6.455zm-.692-2H20V5H4v13.385L5.763 17zM11 10h2v2h-2v-2zm-4 0h2v2H7v-2zm8 0h2v2h-2v-2z" } }] }] })(props);
|
|
23387
|
-
}
|
|
23388
|
-
function RiStickyNoteLine(props) {
|
|
23389
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": {}, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M21 15l-6 5.996L4.002 21A.998.998 0 0 1 3 20.007V3.993C3 3.445 3.445 3 3.993 3h16.014c.548 0 .993.456.993 1.002V15zM19 5H5v14h8v-5a1 1 0 0 1 .883-.993L14 13l5-.001V5zm-.829 9.999L15 15v3.169l3.171-3.17z" } }] }] })(props);
|
|
23390
|
-
}
|
|
23391
|
-
function RiAttachment2(props) {
|
|
23392
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": {}, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M14.828 7.757l-5.656 5.657a1 1 0 1 0 1.414 1.414l5.657-5.656A3 3 0 1 0 12 4.929l-5.657 5.657a5 5 0 1 0 7.071 7.07L19.071 12l1.414 1.414-5.657 5.657a7 7 0 1 1-9.9-9.9l5.658-5.656a5 5 0 0 1 7.07 7.07L12 16.244A3 3 0 1 1 7.757 12l5.657-5.657 1.414 1.414z" } }] }] })(props);
|
|
23393
|
-
}
|
|
23394
|
-
function GrDocumentConfig(props) {
|
|
23395
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "d": "M4.99787498,8.99999999 L4.99787498,0.999999992 L19.4999998,0.999999992 L22.9999998,4.50000005 L23,23 L16,23 M18,1 L18,6 L23,6 M9,14 L9,11 M9,20 C10.6568542,20 12,18.6568542 12,17 C12,15.3431458 10.6568542,14 9,14 C7.34314575,14 6,15.3431458 6,17 C6,18.6568542 7.34314575,20 9,20 Z M9,23 L9,20 M12,17 L15,17 M3,17 L6,17 M5,13 L7,15 M11,19 L13,21 M13,13 L11,15 M7,19 L5,21" } }] })(props);
|
|
23396
|
-
}
|
|
23397
|
-
function GrEmoji(props) {
|
|
23398
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M12,1.73A10.27,10.27,0,1,0,22.24,12,10.25,10.25,0,0,0,12,1.73ZM21,12a9,9,0,1,1-9-9A9,9,0,0,1,21,12Z" } }, { "tag": "path", "attr": { "d": "M8.8,11.05a1.55,1.55,0,1,0-1.51-1.5A1.56,1.56,0,0,0,8.8,11.05Z" } }, { "tag": "path", "attr": { "d": "M15.44,11.05a1.55,1.55,0,1,0,0-3.09,1.53,1.53,0,0,0-1.51,1.59A1.51,1.51,0,0,0,15.44,11.05Z" } }, { "tag": "path", "attr": { "d": "M12.19,16.35A6.58,6.58,0,0,1,6.9,13.5a5.71,5.71,0,0,0,5.3,4,5.54,5.54,0,0,0,5.31-4A6.27,6.27,0,0,1,12.19,16.35Z" } }] })(props);
|
|
23399
|
-
}
|
|
23400
|
-
function GrNext(props) {
|
|
23401
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "polyline", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "points": "7 2 17 12 7 22" } }] })(props);
|
|
23402
|
-
}
|
|
23403
|
-
function GrPrevious(props) {
|
|
23404
|
-
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "polyline", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "points": "7 2 17 12 7 22", "transform": "matrix(-1 0 0 1 24 0)" } }] })(props);
|
|
23405
|
-
}
|
|
23406
23326
|
function HiOutlineCog(props) {
|
|
23407
23327
|
return GenIcon({ "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" } }, { "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M15 12a3 3 0 11-6 0 3 3 0 016 0z" } }] })(props);
|
|
23408
23328
|
}
|
|
@@ -23430,39 +23350,662 @@ function HiOutlineClipboardDocument(props) {
|
|
|
23430
23350
|
function HiOutlinePaintBrush(props) {
|
|
23431
23351
|
return GenIcon({ "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "1.5", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M9.53 16.122a3 3 0 00-5.78 1.128 2.25 2.25 0 01-2.4 2.245 4.5 4.5 0 008.4-2.245c0-.399-.078-.78-.22-1.128zm0 0a15.998 15.998 0 003.388-1.62m-5.043-.025a15.994 15.994 0 011.622-3.395m3.42 3.42a15.995 15.995 0 004.764-4.648l3.876-5.814a1.151 1.151 0 00-1.597-1.597L14.146 6.32a15.996 15.996 0 00-4.649 4.763m3.42 3.42a6.776 6.776 0 00-3.42-3.42" } }] })(props);
|
|
23432
23352
|
}
|
|
23433
|
-
|
|
23434
|
-
|
|
23435
|
-
|
|
23436
|
-
|
|
23437
|
-
|
|
23438
|
-
}
|
|
23439
|
-
|
|
23440
|
-
|
|
23441
|
-
}
|
|
23442
|
-
|
|
23443
|
-
|
|
23444
|
-
}
|
|
23445
|
-
|
|
23446
|
-
|
|
23447
|
-
}
|
|
23448
|
-
|
|
23449
|
-
|
|
23450
|
-
}
|
|
23451
|
-
|
|
23452
|
-
|
|
23453
|
-
|
|
23454
|
-
|
|
23455
|
-
|
|
23456
|
-
|
|
23353
|
+
const XmluiGrammar = {
|
|
23354
|
+
id: "xmlui",
|
|
23355
|
+
config: {
|
|
23356
|
+
comments: {
|
|
23357
|
+
blockComment: ["<!--", "-->"]
|
|
23358
|
+
},
|
|
23359
|
+
brackets: [["<", ">"]],
|
|
23360
|
+
autoClosingPairs: [
|
|
23361
|
+
{ open: "<", close: ">" },
|
|
23362
|
+
{ open: "'", close: "'" },
|
|
23363
|
+
{ open: '"', close: '"' },
|
|
23364
|
+
{ open: "`", close: "`" }
|
|
23365
|
+
],
|
|
23366
|
+
surroundingPairs: [
|
|
23367
|
+
{ open: "<", close: ">" },
|
|
23368
|
+
{ open: "'", close: "'" },
|
|
23369
|
+
{ open: '"', close: '"' },
|
|
23370
|
+
{ open: "`", close: "`" }
|
|
23371
|
+
]
|
|
23372
|
+
},
|
|
23373
|
+
language: {
|
|
23374
|
+
defaultToken: "",
|
|
23375
|
+
tokenPostfix: ".xmlui",
|
|
23376
|
+
ignoreCase: false,
|
|
23377
|
+
identifier: /[a-zA-Z$_][-\w.$]*/,
|
|
23378
|
+
tokenizer: {
|
|
23379
|
+
root: [
|
|
23380
|
+
{ include: "@commentStart" },
|
|
23381
|
+
{ include: "@helperTag" },
|
|
23382
|
+
{ include: "@componentTagStart" },
|
|
23383
|
+
{ include: "@escapeCharacter" },
|
|
23384
|
+
{ include: "@textWithBindingExpr" },
|
|
23385
|
+
{ include: "@entity" },
|
|
23386
|
+
{ include: "@cdataStart" }
|
|
23387
|
+
],
|
|
23388
|
+
helperTag: [
|
|
23389
|
+
{ include: "@scriptTagStart" },
|
|
23390
|
+
{ include: "@eventTagStart" },
|
|
23391
|
+
{ include: "@apiTagStart" },
|
|
23392
|
+
{ include: "@methodTagStart" },
|
|
23393
|
+
{ include: "@propOrVarTagStart" }
|
|
23394
|
+
],
|
|
23395
|
+
eventTagStart: [
|
|
23396
|
+
[
|
|
23397
|
+
/(<)((?:[a-zA-Z_][\w\.\-]*?:)?)(event)/,
|
|
23398
|
+
["delimiter.angle", "namespace", { token: "tag-event", next: "@eventTag" }]
|
|
23399
|
+
]
|
|
23400
|
+
],
|
|
23401
|
+
eventTag: [
|
|
23402
|
+
{ include: "@commentStart" },
|
|
23403
|
+
{ include: "@valueAttributeScriptInsideStart" },
|
|
23404
|
+
{ include: "@attributeStart" },
|
|
23405
|
+
[/\/>/, "delimiter.angle", "@pop"],
|
|
23406
|
+
[
|
|
23407
|
+
/(<\/)(event)(\s*>)/,
|
|
23408
|
+
["delimiter.angle", "tag-event", { token: "delimiter.angle", next: "@pop" }]
|
|
23409
|
+
],
|
|
23410
|
+
[/>/, { token: "delimiter.angle", next: "@eventTagContent" }]
|
|
23411
|
+
],
|
|
23412
|
+
eventTagContent: [
|
|
23413
|
+
{ include: "commentStart" },
|
|
23414
|
+
{ include: "componentTagStart" },
|
|
23415
|
+
[
|
|
23416
|
+
/[^<]/,
|
|
23417
|
+
{ token: "@rematch", next: "@eventTagScriptContent", nextEmbedded: "xmluiscript" }
|
|
23418
|
+
],
|
|
23419
|
+
[/<\/event\s*>/, { token: "@rematch", next: "@pop" }]
|
|
23420
|
+
],
|
|
23421
|
+
eventTagScriptContent: [
|
|
23422
|
+
[/<\/event\s*>/, { token: "@rematch", next: "@pop", nextEmbedded: "@pop" }],
|
|
23423
|
+
[/[^<]/, ""]
|
|
23424
|
+
],
|
|
23425
|
+
methodTagStart: [
|
|
23426
|
+
[
|
|
23427
|
+
/(<)((?:[a-zA-Z_][\w\.\-]*?:)?)(method)/,
|
|
23428
|
+
["delimiter.angle", "namespace", { token: "tag-helper", next: "@methodTag" }]
|
|
23429
|
+
]
|
|
23430
|
+
],
|
|
23431
|
+
methodTag: [
|
|
23432
|
+
{ include: "@commentStart" },
|
|
23433
|
+
{ include: "@valueAttributeScriptInsideStart" },
|
|
23434
|
+
{ include: "@attributeStart" },
|
|
23435
|
+
[/\/>/, "delimiter.angle", "@pop"],
|
|
23436
|
+
[
|
|
23437
|
+
/>/,
|
|
23438
|
+
{
|
|
23439
|
+
token: "delimiter.angle",
|
|
23440
|
+
next: "@methodTagScriptContent",
|
|
23441
|
+
nextEmbedded: "xmluiscript"
|
|
23442
|
+
}
|
|
23443
|
+
],
|
|
23444
|
+
[
|
|
23445
|
+
/(<\/)(method)(\s*>)/,
|
|
23446
|
+
["delimiter.angle", "tag-helper", { token: "delimiter.angle", next: "@pop" }]
|
|
23447
|
+
]
|
|
23448
|
+
],
|
|
23449
|
+
methodTagScriptContent: [
|
|
23450
|
+
[/<\/method\s*>/, { token: "@rematch", next: "@pop", nextEmbedded: "@pop" }],
|
|
23451
|
+
[/[^</]/, ""]
|
|
23452
|
+
],
|
|
23453
|
+
apiTagStart: [
|
|
23454
|
+
[
|
|
23455
|
+
/(<)((?:[a-zA-Z_][\w\.\-]*?:)?)(api)/,
|
|
23456
|
+
["delimiter.angle", "namespace", { token: "tag-helper", next: "@apiTag" }]
|
|
23457
|
+
]
|
|
23458
|
+
],
|
|
23459
|
+
apiTag: [
|
|
23460
|
+
{ include: "@commentStart" },
|
|
23461
|
+
{ include: "@valueAttributeScriptInsideStart" },
|
|
23462
|
+
{ include: "@attributeStart" },
|
|
23463
|
+
[/\/>/, "delimiter.angle", "@pop"],
|
|
23464
|
+
[
|
|
23465
|
+
/>/,
|
|
23466
|
+
{ token: "delimiter.angle", next: "@apiTagScriptContent", nextEmbedded: "xmluiscript" }
|
|
23467
|
+
],
|
|
23468
|
+
[
|
|
23469
|
+
/(<\/)(api)(\s*>)/,
|
|
23470
|
+
["delimiter.angle", "tag-helper", { token: "delimiter.angle", next: "@pop" }]
|
|
23471
|
+
]
|
|
23472
|
+
],
|
|
23473
|
+
apiTagScriptContent: [
|
|
23474
|
+
[/<\/api\s*>/, { token: "@rematch", next: "@pop", nextEmbedded: "@pop" }],
|
|
23475
|
+
[/[^</]/, ""]
|
|
23476
|
+
],
|
|
23477
|
+
valueAttributeScriptInsideStart: [
|
|
23478
|
+
[
|
|
23479
|
+
/(^|\s+)(value)(\s*=)(['\"`])/,
|
|
23480
|
+
[
|
|
23481
|
+
"",
|
|
23482
|
+
"attribute",
|
|
23483
|
+
"operators",
|
|
23484
|
+
{
|
|
23485
|
+
cases: {
|
|
23486
|
+
"'": { token: "string", next: "@singleQuotedScript", nextEmbedded: "xmluiscript" },
|
|
23487
|
+
'"': { token: "string", next: "@doubleQuotedScript", nextEmbedded: "xmluiscript" },
|
|
23488
|
+
"`": {
|
|
23489
|
+
token: "string",
|
|
23490
|
+
next: "@backtickQuotedScript",
|
|
23491
|
+
nextEmbedded: "xmluiscript"
|
|
23492
|
+
}
|
|
23493
|
+
}
|
|
23494
|
+
}
|
|
23495
|
+
]
|
|
23496
|
+
]
|
|
23497
|
+
],
|
|
23498
|
+
scriptTagStart: [
|
|
23499
|
+
[
|
|
23500
|
+
/(<)(script\s*)(>)/,
|
|
23501
|
+
[
|
|
23502
|
+
"delimiter.angle",
|
|
23503
|
+
"tag-script",
|
|
23504
|
+
{ token: "delimiter.angle", nextEmbedded: "xmluiscript", next: "@scriptTag" }
|
|
23505
|
+
]
|
|
23506
|
+
],
|
|
23507
|
+
[/(<\/)(script\s*)(>)/, ["delimiter.angle", "tag-script", "delimiter.angle"]]
|
|
23508
|
+
],
|
|
23509
|
+
scriptTag: [
|
|
23510
|
+
[/<\/script>/, { token: "@rematch", next: "@pop", nextEmbedded: "@pop" }],
|
|
23511
|
+
[/[^<]+/, ""]
|
|
23512
|
+
],
|
|
23513
|
+
propOrVarTagStart: [
|
|
23514
|
+
[
|
|
23515
|
+
/(<\/?)((?:[a-zA-Z_][\w\.\-]*?:)?)((?:property)|(?:prop)|(?:var))/,
|
|
23516
|
+
["delimiter.angle", "namespace", { token: "tag-helper", next: "@propOrVarTag" }]
|
|
23517
|
+
]
|
|
23518
|
+
],
|
|
23519
|
+
propOrVarTag: [
|
|
23520
|
+
[/\/?>/, { token: "delimiter.angle", next: "@pop" }],
|
|
23521
|
+
{ include: "@commentStart" },
|
|
23522
|
+
{ include: "@attributeStart" }
|
|
23523
|
+
],
|
|
23524
|
+
componentTagStart: [
|
|
23525
|
+
[
|
|
23526
|
+
/(\s*<\/?)((?:[a-zA-Z_][\w\.\-]*?:)?)([A-Z][\w\.\-]*)/,
|
|
23527
|
+
["delimiter.angle", "namespace", { token: "tag-component", next: "@componentTag" }]
|
|
23528
|
+
]
|
|
23529
|
+
],
|
|
23530
|
+
componentTag: [
|
|
23531
|
+
[/\/?>/, { token: "delimiter.angle", next: "@pop" }],
|
|
23532
|
+
{ include: "@commentStart" },
|
|
23533
|
+
{ include: "@eventHandler" },
|
|
23534
|
+
{ include: "@attributeStart" }
|
|
23535
|
+
],
|
|
23536
|
+
eventHandler: [
|
|
23537
|
+
[
|
|
23538
|
+
/(^|\s+)(on[A-Z][-\w.]*)(\s*=)(['\"`])/,
|
|
23539
|
+
[
|
|
23540
|
+
"",
|
|
23541
|
+
"attribute",
|
|
23542
|
+
"operators",
|
|
23543
|
+
{
|
|
23544
|
+
cases: {
|
|
23545
|
+
"'": { token: "string", next: "@singleQuotedScript", nextEmbedded: "xmluiscript" },
|
|
23546
|
+
'"': { token: "string", next: "@doubleQuotedScript", nextEmbedded: "xmluiscript" },
|
|
23547
|
+
"`": {
|
|
23548
|
+
token: "string",
|
|
23549
|
+
next: "@backtickQuotedScript",
|
|
23550
|
+
nextEmbedded: "xmluiscript"
|
|
23551
|
+
}
|
|
23552
|
+
}
|
|
23553
|
+
}
|
|
23554
|
+
]
|
|
23555
|
+
]
|
|
23556
|
+
],
|
|
23557
|
+
doubleQuotedScript: [
|
|
23558
|
+
[/"/, { token: "string", next: "@pop", nextEmbedded: "@pop" }],
|
|
23559
|
+
[/[^"]/, ""]
|
|
23560
|
+
],
|
|
23561
|
+
singleQuotedScript: [
|
|
23562
|
+
[/'/, { token: "string", next: "@pop", nextEmbedded: "@pop" }],
|
|
23563
|
+
[/[^']/, ""]
|
|
23564
|
+
],
|
|
23565
|
+
backtickQuotedScript: [
|
|
23566
|
+
[/`/, { token: "string", next: "@pop", nextEmbedded: "@pop" }],
|
|
23567
|
+
[/[^`]/, ""]
|
|
23568
|
+
],
|
|
23569
|
+
attributeStart: [
|
|
23570
|
+
[
|
|
23571
|
+
/(^|\s+)(@identifier(?::@identifier)?)(\s*=\s*)(['\"`])/,
|
|
23572
|
+
[
|
|
23573
|
+
"",
|
|
23574
|
+
"attribute",
|
|
23575
|
+
"operators",
|
|
23576
|
+
{
|
|
23577
|
+
cases: {
|
|
23578
|
+
"'": { token: "string", next: "@singleQuotedString" },
|
|
23579
|
+
'"': { token: "string", next: "@doubleQuotedString" },
|
|
23580
|
+
"`": { token: "string", next: "@backtickQuotedString" }
|
|
23581
|
+
}
|
|
23582
|
+
}
|
|
23583
|
+
]
|
|
23584
|
+
],
|
|
23585
|
+
[
|
|
23586
|
+
/(^|\s+)(@identifier(?::@identifier)?)(\s*=\s*)(@identifier)/,
|
|
23587
|
+
["", "attribute", "operators", "string"]
|
|
23588
|
+
],
|
|
23589
|
+
[/(^|\s+)(@identifier(?::@identifier)?)/, ["", "attribute"]]
|
|
23590
|
+
],
|
|
23591
|
+
singleQuotedString: [
|
|
23592
|
+
[/'/, "string", "@pop"],
|
|
23593
|
+
{ include: "@textWithBindingExpr" },
|
|
23594
|
+
[/[^']/, "string"]
|
|
23595
|
+
],
|
|
23596
|
+
doubleQuotedString: [
|
|
23597
|
+
[/"/, "string", "@pop"],
|
|
23598
|
+
{ include: "@textWithBindingExpr" },
|
|
23599
|
+
[/[^"]/, "string"]
|
|
23600
|
+
],
|
|
23601
|
+
backtickQuotedString: [
|
|
23602
|
+
[/`/, "string", "@pop"],
|
|
23603
|
+
{ include: "@textWithBindingExpr" },
|
|
23604
|
+
[/[^`]/, "string"]
|
|
23605
|
+
],
|
|
23606
|
+
textWithBindingExpr: [
|
|
23607
|
+
{ include: "@escapeCharacter" },
|
|
23608
|
+
{ include: "@entity" },
|
|
23609
|
+
[/{/, { token: "delimiter.curly", next: "@bindingExpr", nextEmbedded: "xmluiscript" }]
|
|
23610
|
+
],
|
|
23611
|
+
bindingExpr: [
|
|
23612
|
+
[/}/, { token: "delimiter.curly", next: "@pop", nextEmbedded: "@pop" }],
|
|
23613
|
+
[/[^}]+/, ""]
|
|
23614
|
+
],
|
|
23615
|
+
cdataStart: [
|
|
23616
|
+
[
|
|
23617
|
+
/(<!\[)(CDATA)(\[)/,
|
|
23618
|
+
["delimiter.angle", "tag-cdata", { token: "delimiter.angle", next: "@cdata" }]
|
|
23619
|
+
]
|
|
23620
|
+
],
|
|
23621
|
+
cdata: [
|
|
23622
|
+
[/]]>/, "delimiter.angle", "@pop"],
|
|
23623
|
+
[/./, "string"]
|
|
23624
|
+
],
|
|
23625
|
+
commentStart: [[/<!--/, "comment", "@comment"]],
|
|
23626
|
+
comment: [
|
|
23627
|
+
[/[^<\-]+/, "comment.content"],
|
|
23628
|
+
[/-->/, { token: "comment", next: "@pop" }],
|
|
23629
|
+
[/[<\-]/, "comment.content"]
|
|
23630
|
+
],
|
|
23631
|
+
escapeCharacter: [[/\\S/, "string.escape"]],
|
|
23632
|
+
entity: [[/&(amp|lt|gt|quot|apos|nbsp);/, "string.escape"]]
|
|
23633
|
+
}
|
|
23634
|
+
}
|
|
23635
|
+
};
|
|
23636
|
+
const XmluiScripGrammar = {
|
|
23637
|
+
id: "xmluiscript",
|
|
23638
|
+
config: {
|
|
23639
|
+
wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\@\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,
|
|
23640
|
+
comments: {
|
|
23641
|
+
lineComment: "//",
|
|
23642
|
+
blockComment: ["/*", "*/"]
|
|
23643
|
+
},
|
|
23644
|
+
brackets: [
|
|
23645
|
+
["{", "}"],
|
|
23646
|
+
["[", "]"],
|
|
23647
|
+
["(", ")"]
|
|
23648
|
+
],
|
|
23649
|
+
onEnterRules: [
|
|
23650
|
+
{
|
|
23651
|
+
// e.g. /** | */
|
|
23652
|
+
beforeText: /^\s*\/\*\*(?!\/)([^\*]|\*(?!\/))*$/,
|
|
23653
|
+
afterText: /^\s*\*\/$/,
|
|
23654
|
+
action: {
|
|
23655
|
+
// numeric repr of indentAction: languages.IndentAction.IndentOutdent, but without the "monaco-core" package
|
|
23656
|
+
indentAction: 2,
|
|
23657
|
+
appendText: " * "
|
|
23658
|
+
}
|
|
23659
|
+
},
|
|
23660
|
+
{
|
|
23661
|
+
// e.g. /** ...|
|
|
23662
|
+
beforeText: /^\s*\/\*\*(?!\/)([^\*]|\*(?!\/))*$/,
|
|
23663
|
+
action: {
|
|
23664
|
+
// numeric repr of indentAction: languages.IndentAction.None, but without the "monaco-core" package
|
|
23665
|
+
indentAction: 0,
|
|
23666
|
+
appendText: " * "
|
|
23667
|
+
}
|
|
23668
|
+
},
|
|
23669
|
+
{
|
|
23670
|
+
// e.g. * ...|
|
|
23671
|
+
beforeText: /^(\t|(\ \ ))*\ \*(\ ([^\*]|\*(?!\/))*)?$/,
|
|
23672
|
+
action: {
|
|
23673
|
+
// numeric repr of indentAction: languages.IndentAction.None, but without the "monaco-core" package
|
|
23674
|
+
indentAction: 0,
|
|
23675
|
+
appendText: "* "
|
|
23676
|
+
}
|
|
23677
|
+
},
|
|
23678
|
+
{
|
|
23679
|
+
// e.g. */|
|
|
23680
|
+
beforeText: /^(\t|(\ \ ))*\ \*\/\s*$/,
|
|
23681
|
+
action: {
|
|
23682
|
+
// numeric repr of indentAction: languages.IndentAction.None, but without the "monaco-core" package
|
|
23683
|
+
indentAction: 0,
|
|
23684
|
+
removeText: 1
|
|
23685
|
+
}
|
|
23686
|
+
}
|
|
23687
|
+
],
|
|
23688
|
+
autoClosingPairs: [
|
|
23689
|
+
{ open: "{", close: "}" },
|
|
23690
|
+
{ open: "[", close: "]" },
|
|
23691
|
+
{ open: "(", close: ")" },
|
|
23692
|
+
{ open: '"', close: '"', notIn: ["string"] },
|
|
23693
|
+
{ open: "'", close: "'", notIn: ["string", "comment"] },
|
|
23694
|
+
{ open: "`", close: "`", notIn: ["string", "comment"] },
|
|
23695
|
+
{ open: "/**", close: " */", notIn: ["string"] }
|
|
23696
|
+
],
|
|
23697
|
+
folding: {
|
|
23698
|
+
markers: {
|
|
23699
|
+
start: new RegExp("^\\s*//\\s*#?region\\b"),
|
|
23700
|
+
end: new RegExp("^\\s*//\\s*#?endregion\\b")
|
|
23701
|
+
}
|
|
23702
|
+
}
|
|
23703
|
+
},
|
|
23704
|
+
language: {
|
|
23705
|
+
// Set defaultToken to invalid to see what you do not tokenize yet
|
|
23706
|
+
defaultToken: "invalid",
|
|
23707
|
+
tokenPostfix: ".xs",
|
|
23708
|
+
typeKeywords: [],
|
|
23709
|
+
keywords: [
|
|
23710
|
+
"break",
|
|
23711
|
+
"case",
|
|
23712
|
+
"catch",
|
|
23713
|
+
"class",
|
|
23714
|
+
"continue",
|
|
23715
|
+
"const",
|
|
23716
|
+
"constructor",
|
|
23717
|
+
"debugger",
|
|
23718
|
+
"default",
|
|
23719
|
+
"delete",
|
|
23720
|
+
"do",
|
|
23721
|
+
"else",
|
|
23722
|
+
"export",
|
|
23723
|
+
"extends",
|
|
23724
|
+
"false",
|
|
23725
|
+
"finally",
|
|
23726
|
+
"for",
|
|
23727
|
+
"from",
|
|
23728
|
+
"function",
|
|
23729
|
+
"get",
|
|
23730
|
+
"if",
|
|
23731
|
+
"import",
|
|
23732
|
+
"in",
|
|
23733
|
+
"instanceof",
|
|
23734
|
+
"let",
|
|
23735
|
+
"new",
|
|
23736
|
+
"null",
|
|
23737
|
+
"return",
|
|
23738
|
+
"set",
|
|
23739
|
+
"static",
|
|
23740
|
+
"super",
|
|
23741
|
+
"switch",
|
|
23742
|
+
"symbol",
|
|
23743
|
+
"this",
|
|
23744
|
+
"throw",
|
|
23745
|
+
"true",
|
|
23746
|
+
"try",
|
|
23747
|
+
"typeof",
|
|
23748
|
+
"undefined",
|
|
23749
|
+
"var",
|
|
23750
|
+
"void",
|
|
23751
|
+
"while",
|
|
23752
|
+
"with",
|
|
23753
|
+
"yield",
|
|
23754
|
+
"async",
|
|
23755
|
+
"await",
|
|
23756
|
+
"of"
|
|
23757
|
+
],
|
|
23758
|
+
operators: [
|
|
23759
|
+
"<=",
|
|
23760
|
+
">=",
|
|
23761
|
+
"==",
|
|
23762
|
+
"!=",
|
|
23763
|
+
"===",
|
|
23764
|
+
"!==",
|
|
23765
|
+
"=>",
|
|
23766
|
+
"+",
|
|
23767
|
+
"-",
|
|
23768
|
+
"**",
|
|
23769
|
+
"*",
|
|
23770
|
+
"/",
|
|
23771
|
+
"%",
|
|
23772
|
+
"++",
|
|
23773
|
+
"--",
|
|
23774
|
+
"<<",
|
|
23775
|
+
"</",
|
|
23776
|
+
">>",
|
|
23777
|
+
">>>",
|
|
23778
|
+
"&",
|
|
23779
|
+
"|",
|
|
23780
|
+
"^",
|
|
23781
|
+
"!",
|
|
23782
|
+
"~",
|
|
23783
|
+
"&&",
|
|
23784
|
+
"||",
|
|
23785
|
+
"??",
|
|
23786
|
+
"?",
|
|
23787
|
+
":",
|
|
23788
|
+
"=",
|
|
23789
|
+
"+=",
|
|
23790
|
+
"-=",
|
|
23791
|
+
"*=",
|
|
23792
|
+
"**=",
|
|
23793
|
+
"/=",
|
|
23794
|
+
"%=",
|
|
23795
|
+
"<<=",
|
|
23796
|
+
">>=",
|
|
23797
|
+
">>>=",
|
|
23798
|
+
"&=",
|
|
23799
|
+
"|=",
|
|
23800
|
+
"^=",
|
|
23801
|
+
"@"
|
|
23802
|
+
],
|
|
23803
|
+
// we include these common regular expressions
|
|
23804
|
+
symbols: /[=><!~?:&|+\-*\/\^%]+/,
|
|
23805
|
+
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
|
|
23806
|
+
digits: /\d+(_+\d+)*/,
|
|
23807
|
+
octaldigits: /[0-7]+(_+[0-7]+)*/,
|
|
23808
|
+
binarydigits: /[0-1]+(_+[0-1]+)*/,
|
|
23809
|
+
hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,
|
|
23810
|
+
regexpctl: /[(){}\[\]\$\^|\-*+?\.]/,
|
|
23811
|
+
regexpesc: /\\(?:[bBdDfnrstvwWn0\\\/]|@regexpctl|c[A-Z]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4})/,
|
|
23812
|
+
// The main tokenizer for our languages
|
|
23813
|
+
tokenizer: {
|
|
23814
|
+
root: [[/[{}]/, "delimiter.bracket"], { include: "common" }],
|
|
23815
|
+
common: [
|
|
23816
|
+
// identifiers and keywords
|
|
23817
|
+
[
|
|
23818
|
+
/#?[a-z_$][\w$]*/,
|
|
23819
|
+
{
|
|
23820
|
+
cases: {
|
|
23821
|
+
"@keywords": "keyword",
|
|
23822
|
+
"@default": "identifier"
|
|
23823
|
+
}
|
|
23824
|
+
}
|
|
23825
|
+
],
|
|
23826
|
+
[/[A-Z][\w\$]*/, "type.identifier"],
|
|
23827
|
+
// to show class names nicely
|
|
23828
|
+
// [/[A-Z][\w\$]*/, 'identifier'],
|
|
23829
|
+
// whitespace
|
|
23830
|
+
{ include: "@whitespace" },
|
|
23831
|
+
// regular expression: ensure it is terminated before beginning (otherwise it is an opeator)
|
|
23832
|
+
[
|
|
23833
|
+
/\/(?=([^\\\/]|\\.)+\/([dgimsuy]*)(\s*)(\.|;|,|\)|\]|\}|$))/,
|
|
23834
|
+
{ token: "regexp", bracket: "@open", next: "@regexp" }
|
|
23835
|
+
],
|
|
23836
|
+
// delimiters and operators
|
|
23837
|
+
[/[()\[\]]/, "@brackets"],
|
|
23838
|
+
[/[<>](?!@symbols)/, "@brackets"],
|
|
23839
|
+
[/!(?=([^=]|$))/, "delimiter"],
|
|
23840
|
+
[
|
|
23841
|
+
/@symbols/,
|
|
23842
|
+
{
|
|
23843
|
+
cases: {
|
|
23844
|
+
"@operators": "delimiter",
|
|
23845
|
+
"@default": ""
|
|
23846
|
+
}
|
|
23847
|
+
}
|
|
23848
|
+
],
|
|
23849
|
+
// numbers
|
|
23850
|
+
[/(@digits)[eE]([\-+]?(@digits))?/, "number.float"],
|
|
23851
|
+
[/(@digits)\.(@digits)([eE][\-+]?(@digits))?/, "number.float"],
|
|
23852
|
+
[/0[xX](@hexdigits)n?/, "number.hex"],
|
|
23853
|
+
[/0[oO]?(@octaldigits)n?/, "number.octal"],
|
|
23854
|
+
[/0[bB](@binarydigits)n?/, "number.binary"],
|
|
23855
|
+
[/(@digits)n?/, "number"],
|
|
23856
|
+
// delimiter: after number because of .\d floats
|
|
23857
|
+
[/[;,.]/, "delimiter"],
|
|
23858
|
+
// strings
|
|
23859
|
+
[/"([^"\\]|\\.)*$/, "string.invalid"],
|
|
23860
|
+
// non-teminated string
|
|
23861
|
+
[/'([^'\\]|\\.)*$/, "string.invalid"],
|
|
23862
|
+
// non-teminated string
|
|
23863
|
+
[/"/, "string", "@string_double"],
|
|
23864
|
+
[/'/, "string", "@string_single"],
|
|
23865
|
+
[/`/, "string", "@string_backtick"]
|
|
23866
|
+
],
|
|
23867
|
+
whitespace: [
|
|
23868
|
+
[/[ \t\r\n]+/, ""],
|
|
23869
|
+
[/\/\*\*(?!\/)/, "comment.doc", "@jsdoc"],
|
|
23870
|
+
[/\/\*/, "comment", "@comment"],
|
|
23871
|
+
[/\/\/.*$/, "comment"]
|
|
23872
|
+
],
|
|
23873
|
+
comment: [
|
|
23874
|
+
[/[^\/*]+/, "comment"],
|
|
23875
|
+
[/\*\//, "comment", "@pop"],
|
|
23876
|
+
[/[\/*]/, "comment"]
|
|
23877
|
+
],
|
|
23878
|
+
jsdoc: [
|
|
23879
|
+
[/[^\/*]+/, "comment.doc"],
|
|
23880
|
+
[/\*\//, "comment.doc", "@pop"],
|
|
23881
|
+
[/[\/*]/, "comment.doc"]
|
|
23882
|
+
],
|
|
23883
|
+
// We match regular expression quite precisely
|
|
23884
|
+
regexp: [
|
|
23885
|
+
[
|
|
23886
|
+
/(\{)(\d+(?:,\d*)?)(\})/,
|
|
23887
|
+
["regexp.escape.control", "regexp.escape.control", "regexp.escape.control"]
|
|
23888
|
+
],
|
|
23889
|
+
[
|
|
23890
|
+
/(\[)(\^?)(?=(?:[^\]\\\/]|\\.)+)/,
|
|
23891
|
+
["regexp.escape.control", { token: "regexp.escape.control", next: "@regexrange" }]
|
|
23892
|
+
],
|
|
23893
|
+
[/(\()(\?:|\?=|\?!)/, ["regexp.escape.control", "regexp.escape.control"]],
|
|
23894
|
+
[/[()]/, "regexp.escape.control"],
|
|
23895
|
+
[/@regexpctl/, "regexp.escape.control"],
|
|
23896
|
+
[/[^\\\/]/, "regexp"],
|
|
23897
|
+
[/@regexpesc/, "regexp.escape"],
|
|
23898
|
+
[/\\\./, "regexp.invalid"],
|
|
23899
|
+
[
|
|
23900
|
+
/(\/)([dgimsuy]*)/,
|
|
23901
|
+
[{ token: "regexp", bracket: "@close", next: "@pop" }, "keyword.other"]
|
|
23902
|
+
]
|
|
23903
|
+
],
|
|
23904
|
+
regexrange: [
|
|
23905
|
+
[/-/, "regexp.escape.control"],
|
|
23906
|
+
[/\^/, "regexp.invalid"],
|
|
23907
|
+
[/@regexpesc/, "regexp.escape"],
|
|
23908
|
+
[/[^\]]/, "regexp"],
|
|
23909
|
+
[
|
|
23910
|
+
/\]/,
|
|
23911
|
+
{
|
|
23912
|
+
token: "regexp.escape.control",
|
|
23913
|
+
next: "@pop",
|
|
23914
|
+
bracket: "@close"
|
|
23915
|
+
}
|
|
23916
|
+
]
|
|
23917
|
+
],
|
|
23918
|
+
string_double: [
|
|
23919
|
+
[/[^\\"]+/, "string"],
|
|
23920
|
+
[/@escapes/, "string.escape"],
|
|
23921
|
+
[/\\./, "string.escape.invalid"],
|
|
23922
|
+
[/"/, "string", "@pop"]
|
|
23923
|
+
],
|
|
23924
|
+
string_single: [
|
|
23925
|
+
[/[^\\']+/, "string"],
|
|
23926
|
+
[/@escapes/, "string.escape"],
|
|
23927
|
+
[/\\./, "string.escape.invalid"],
|
|
23928
|
+
[/'/, "string", "@pop"]
|
|
23929
|
+
],
|
|
23930
|
+
string_backtick: [
|
|
23931
|
+
[/\$\{/, { token: "delimiter.bracket", next: "@bracketCounting" }],
|
|
23932
|
+
[/[^\\`$]+/, "string"],
|
|
23933
|
+
[/@escapes/, "string.escape"],
|
|
23934
|
+
[/\\./, "string.escape.invalid"],
|
|
23935
|
+
[/`/, "string", "@pop"]
|
|
23936
|
+
],
|
|
23937
|
+
bracketCounting: [
|
|
23938
|
+
[/\{/, "delimiter.bracket", "@bracketCounting"],
|
|
23939
|
+
[/\}/, "delimiter.bracket", "@pop"],
|
|
23940
|
+
{ include: "common" }
|
|
23941
|
+
]
|
|
23942
|
+
}
|
|
23943
|
+
}
|
|
23944
|
+
};
|
|
23945
|
+
const lightTheme = {
|
|
23946
|
+
base: "vs",
|
|
23947
|
+
inherit: true,
|
|
23948
|
+
rules: [
|
|
23949
|
+
{ token: "comment", foreground: "#4E4E4E" },
|
|
23950
|
+
{ token: "comment.content", foreground: "#4E4E4E" },
|
|
23951
|
+
{ token: "tag-component", foreground: "#F07100" },
|
|
23952
|
+
{ token: "tag-event", foreground: "#3572F6" },
|
|
23953
|
+
{ token: "tag-helper", foreground: "#3572F6" },
|
|
23954
|
+
{ token: "attribute", foreground: "#C79B00" },
|
|
23955
|
+
{ token: "operators", foreground: "#7235C7" },
|
|
23956
|
+
{ token: "delimiter.angle", foreground: "#66748E" },
|
|
23957
|
+
{ token: "delimiter.curly", foreground: "#000000" },
|
|
23958
|
+
{ token: "string", foreground: "#497A48" },
|
|
23959
|
+
{ token: "tag-cdata", foreground: "#1BADFF" },
|
|
23960
|
+
{ token: "tag-script", foreground: "#0CA6A6" },
|
|
23961
|
+
{ token: "string.escape", foreground: "#1BB95A" },
|
|
23962
|
+
{ token: "constant", foreground: "#FF00E8" }
|
|
23963
|
+
],
|
|
23964
|
+
colors: {
|
|
23965
|
+
"editor.foreground": "#497A48"
|
|
23966
|
+
}
|
|
23967
|
+
};
|
|
23968
|
+
const darkTheme = {
|
|
23969
|
+
base: "vs-dark",
|
|
23970
|
+
inherit: true,
|
|
23971
|
+
rules: [
|
|
23972
|
+
{ token: "comment", foreground: "#4E4E4E" },
|
|
23973
|
+
{ token: "comment.content", foreground: "#4E4E4E" },
|
|
23974
|
+
{ token: "tag-component", foreground: "#F07100" },
|
|
23975
|
+
{ token: "tag-event", foreground: "#3572F6" },
|
|
23976
|
+
{ token: "tag-helper", foreground: "#3572F6" },
|
|
23977
|
+
{ token: "attribute", foreground: "#C79B00" },
|
|
23978
|
+
{ token: "operators", foreground: "#7235C7" },
|
|
23979
|
+
{ token: "delimiter.angle", foreground: "#66748E" },
|
|
23980
|
+
{ token: "delimiter.curly", foreground: "#000000" },
|
|
23981
|
+
{ token: "string", foreground: "#497A48" },
|
|
23982
|
+
{ token: "tag-cdata", foreground: "#1BADFF" },
|
|
23983
|
+
{ token: "tag-script", foreground: "#0CA6A6" },
|
|
23984
|
+
{ token: "string.escape", foreground: "#1BB95A" },
|
|
23985
|
+
{ token: "constant", foreground: "#FF00E8" }
|
|
23986
|
+
],
|
|
23987
|
+
colors: {
|
|
23988
|
+
"editor.background": "#17232b",
|
|
23989
|
+
"editor.foreground": "#497A48"
|
|
23990
|
+
}
|
|
23991
|
+
};
|
|
23457
23992
|
const DevTools = ({ setIsOpen, node }) => {
|
|
23458
23993
|
var _a;
|
|
23459
23994
|
const [side, setSide] = useState("bottom");
|
|
23460
|
-
const { root: root2 } = useTheme();
|
|
23995
|
+
const { root: root2, activeThemeTone } = useTheme();
|
|
23461
23996
|
const { setDevToolsSize, setDevToolsSide } = useDevTools();
|
|
23462
23997
|
const [copied, setCopied] = useState(false);
|
|
23998
|
+
const monacoEditorInstance = useRef(null);
|
|
23999
|
+
const editorRef = useRef(null);
|
|
24000
|
+
const [activeTab, setActiveTab] = useState("code");
|
|
24001
|
+
const monacoSetupDone = useRef(false);
|
|
23463
24002
|
const copyToClipboard = () => {
|
|
24003
|
+
var _a2;
|
|
23464
24004
|
setCopied(true);
|
|
23465
|
-
|
|
24005
|
+
if (monacoEditorInstance == null ? void 0 : monacoEditorInstance.current) {
|
|
24006
|
+
const code2 = (_a2 = monacoEditorInstance == null ? void 0 : monacoEditorInstance.current) == null ? void 0 : _a2.getValue();
|
|
24007
|
+
navigator.clipboard.writeText(code2);
|
|
24008
|
+
}
|
|
23466
24009
|
};
|
|
23467
24010
|
const { sources } = useContext(InspectorContext);
|
|
23468
24011
|
const value = useMemo(() => {
|
|
@@ -23493,6 +24036,54 @@ const DevTools = ({ setIsOpen, node }) => {
|
|
|
23493
24036
|
});
|
|
23494
24037
|
return prunedLines.map((line) => line.slice(trimBeginCount)).join("\n");
|
|
23495
24038
|
}, [(_a = node.debug) == null ? void 0 : _a.source, sources]);
|
|
24039
|
+
useEffect(() => {
|
|
24040
|
+
if (activeTab === "code") {
|
|
24041
|
+
if (monacoEditorInstance.current) {
|
|
24042
|
+
monacoEditorInstance.current.layout();
|
|
24043
|
+
} else if (editorRef.current) {
|
|
24044
|
+
loader.init().then((monaco) => {
|
|
24045
|
+
if (!editorRef.current || monacoEditorInstance.current) return;
|
|
24046
|
+
if (!monacoSetupDone.current) {
|
|
24047
|
+
monaco.languages.register({ id: XmluiGrammar.id });
|
|
24048
|
+
monaco.languages.setMonarchTokensProvider(XmluiGrammar.id, XmluiGrammar.language);
|
|
24049
|
+
monaco.languages.setLanguageConfiguration(XmluiGrammar.id, XmluiGrammar.config);
|
|
24050
|
+
monaco.languages.register({ id: XmluiScripGrammar.id });
|
|
24051
|
+
monaco.languages.setMonarchTokensProvider(
|
|
24052
|
+
XmluiScripGrammar.id,
|
|
24053
|
+
XmluiScripGrammar.language
|
|
24054
|
+
);
|
|
24055
|
+
monaco.languages.setLanguageConfiguration(
|
|
24056
|
+
XmluiScripGrammar.id,
|
|
24057
|
+
XmluiScripGrammar.config
|
|
24058
|
+
);
|
|
24059
|
+
monaco.editor.defineTheme("xmlui-light", lightTheme);
|
|
24060
|
+
monaco.editor.defineTheme("xmlui-dark", darkTheme);
|
|
24061
|
+
monacoSetupDone.current = true;
|
|
24062
|
+
}
|
|
24063
|
+
monaco.editor.setTheme(activeThemeTone === "dark" ? "xmlui-dark" : "xmlui-light");
|
|
24064
|
+
monacoEditorInstance.current = monaco.editor.create(editorRef.current, {
|
|
24065
|
+
value,
|
|
24066
|
+
language: "xmlui",
|
|
24067
|
+
readOnly: true,
|
|
24068
|
+
scrollBeyondLastLine: false,
|
|
24069
|
+
overviewRulerLanes: 0,
|
|
24070
|
+
hideCursorInOverviewRuler: true,
|
|
24071
|
+
minimap: { enabled: false },
|
|
24072
|
+
padding: {
|
|
24073
|
+
top: 10,
|
|
24074
|
+
bottom: 10
|
|
24075
|
+
}
|
|
24076
|
+
});
|
|
24077
|
+
});
|
|
24078
|
+
}
|
|
24079
|
+
}
|
|
24080
|
+
return () => {
|
|
24081
|
+
if (monacoEditorInstance.current) {
|
|
24082
|
+
monacoEditorInstance.current.dispose();
|
|
24083
|
+
monacoEditorInstance.current = null;
|
|
24084
|
+
}
|
|
24085
|
+
};
|
|
24086
|
+
}, [activeTab, activeThemeTone, value]);
|
|
23496
24087
|
const getInitialSize = useCallback(() => {
|
|
23497
24088
|
switch (side) {
|
|
23498
24089
|
case "bottom":
|
|
@@ -23518,6 +24109,11 @@ const DevTools = ({ setIsOpen, node }) => {
|
|
|
23518
24109
|
}, [side]);
|
|
23519
24110
|
const [size, setSize] = useState(getInitialSize());
|
|
23520
24111
|
const [position, setPosition] = useState(getInitialPosition());
|
|
24112
|
+
useEffect(() => {
|
|
24113
|
+
if ((monacoEditorInstance == null ? void 0 : monacoEditorInstance.current) && activeTab === "code") {
|
|
24114
|
+
monacoEditorInstance.current.layout();
|
|
24115
|
+
}
|
|
24116
|
+
}, [activeTab, size, position]);
|
|
23521
24117
|
useEffect(() => {
|
|
23522
24118
|
const handleResize = () => {
|
|
23523
24119
|
setSize(getInitialSize());
|
|
@@ -23542,7 +24138,7 @@ const DevTools = ({ setIsOpen, node }) => {
|
|
|
23542
24138
|
/* @__PURE__ */ jsx(
|
|
23543
24139
|
Rnd,
|
|
23544
24140
|
{
|
|
23545
|
-
className: styles$
|
|
24141
|
+
className: styles$g.wrapper,
|
|
23546
24142
|
size,
|
|
23547
24143
|
position,
|
|
23548
24144
|
disableDragging: true,
|
|
@@ -23566,81 +24162,90 @@ const DevTools = ({ setIsOpen, node }) => {
|
|
|
23566
24162
|
setPosition(position2);
|
|
23567
24163
|
},
|
|
23568
24164
|
bounds: "window",
|
|
23569
|
-
children: /* @__PURE__ */ jsxs(
|
|
23570
|
-
|
|
23571
|
-
|
|
23572
|
-
|
|
23573
|
-
|
|
23574
|
-
|
|
23575
|
-
|
|
23576
|
-
|
|
23577
|
-
|
|
23578
|
-
/* @__PURE__ */
|
|
23579
|
-
"
|
|
23580
|
-
/* @__PURE__ */
|
|
23581
|
-
|
|
23582
|
-
|
|
23583
|
-
|
|
23584
|
-
|
|
23585
|
-
|
|
23586
|
-
|
|
23587
|
-
|
|
23588
|
-
|
|
23589
|
-
|
|
23590
|
-
|
|
23591
|
-
|
|
23592
|
-
|
|
23593
|
-
|
|
23594
|
-
|
|
23595
|
-
|
|
23596
|
-
|
|
23597
|
-
|
|
23598
|
-
|
|
23599
|
-
|
|
23600
|
-
|
|
23601
|
-
|
|
23602
|
-
|
|
23603
|
-
|
|
23604
|
-
|
|
23605
|
-
|
|
23606
|
-
|
|
23607
|
-
|
|
23608
|
-
|
|
23609
|
-
|
|
23610
|
-
|
|
23611
|
-
|
|
23612
|
-
|
|
23613
|
-
|
|
23614
|
-
|
|
23615
|
-
|
|
24165
|
+
children: /* @__PURE__ */ jsxs(
|
|
24166
|
+
Root$2,
|
|
24167
|
+
{
|
|
24168
|
+
defaultValue: "code",
|
|
24169
|
+
className: styles$g.tabs,
|
|
24170
|
+
style: { width: "100%", height: "100%" },
|
|
24171
|
+
onValueChange: setActiveTab,
|
|
24172
|
+
children: [
|
|
24173
|
+
/* @__PURE__ */ jsxs(List, { className: styles$g.list, children: [
|
|
24174
|
+
/* @__PURE__ */ jsxs("div", { className: styles$g.tabItems, children: [
|
|
24175
|
+
/* @__PURE__ */ jsx(Trigger$1, { value: "code", children: /* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", children: "Code" }) }),
|
|
24176
|
+
/* @__PURE__ */ jsx(Trigger$1, { value: "console", children: /* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", children: "Console" }) })
|
|
24177
|
+
] }),
|
|
24178
|
+
/* @__PURE__ */ jsxs("div", { className: styles$g.actions, children: [
|
|
24179
|
+
/* @__PURE__ */ jsxs(ReactDropdownMenu.Root, { children: [
|
|
24180
|
+
/* @__PURE__ */ jsx(ReactDropdownMenu.Trigger, { children: /* @__PURE__ */ jsx(Button, { variant: "ghost", size: "xs", children: /* @__PURE__ */ jsx(HiOutlineDotsVertical, { color: "currentColor" }) }) }),
|
|
24181
|
+
/* @__PURE__ */ jsx(ReactDropdownMenu.Portal, { container: root2, children: /* @__PURE__ */ jsx(ReactDropdownMenu.Content, { className: styles$g.menu, children: /* @__PURE__ */ jsxs(ReactDropdownMenu.Item, { className: styles$g.menuItem, children: [
|
|
24182
|
+
"Dock side",
|
|
24183
|
+
/* @__PURE__ */ jsxs("div", { className: styles$g.sideButtons, children: [
|
|
24184
|
+
/* @__PURE__ */ jsx(
|
|
24185
|
+
Button,
|
|
24186
|
+
{
|
|
24187
|
+
style: { padding: 8 },
|
|
24188
|
+
onClick: () => {
|
|
24189
|
+
setSide("left");
|
|
24190
|
+
},
|
|
24191
|
+
variant: "ghost",
|
|
24192
|
+
children: /* @__PURE__ */ jsx(BiDockLeft, { color: "currentColor", size: 16 })
|
|
24193
|
+
}
|
|
24194
|
+
),
|
|
24195
|
+
/* @__PURE__ */ jsx(
|
|
24196
|
+
Button,
|
|
24197
|
+
{
|
|
24198
|
+
style: { padding: 8 },
|
|
24199
|
+
onClick: () => {
|
|
24200
|
+
setSide("bottom");
|
|
24201
|
+
},
|
|
24202
|
+
variant: "ghost",
|
|
24203
|
+
children: /* @__PURE__ */ jsx(BiDockBottom, { color: "currentColor", size: 16 })
|
|
24204
|
+
}
|
|
24205
|
+
),
|
|
24206
|
+
/* @__PURE__ */ jsx(
|
|
24207
|
+
Button,
|
|
24208
|
+
{
|
|
24209
|
+
style: { padding: 8 },
|
|
24210
|
+
onClick: () => {
|
|
24211
|
+
setSide("right");
|
|
24212
|
+
},
|
|
24213
|
+
variant: "ghost",
|
|
24214
|
+
children: /* @__PURE__ */ jsx(BiDockRight, { color: "currentColor", size: 16 })
|
|
24215
|
+
}
|
|
24216
|
+
)
|
|
24217
|
+
] })
|
|
24218
|
+
] }) }) })
|
|
24219
|
+
] }),
|
|
24220
|
+
/* @__PURE__ */ jsx(
|
|
24221
|
+
Button,
|
|
24222
|
+
{
|
|
24223
|
+
onClick: () => setIsOpen(false),
|
|
24224
|
+
size: "xs",
|
|
24225
|
+
variant: "ghost",
|
|
24226
|
+
icon: /* @__PURE__ */ jsx(Icon, { name: "close" })
|
|
24227
|
+
}
|
|
24228
|
+
)
|
|
24229
|
+
] })
|
|
23616
24230
|
] }),
|
|
23617
|
-
/* @__PURE__ */
|
|
23618
|
-
|
|
23619
|
-
{
|
|
23620
|
-
|
|
23621
|
-
|
|
23622
|
-
|
|
23623
|
-
|
|
23624
|
-
|
|
23625
|
-
|
|
23626
|
-
|
|
23627
|
-
|
|
23628
|
-
|
|
23629
|
-
|
|
23630
|
-
|
|
23631
|
-
|
|
23632
|
-
|
|
23633
|
-
|
|
23634
|
-
|
|
23635
|
-
themeColor: "secondary",
|
|
23636
|
-
style: { padding: 8 },
|
|
23637
|
-
size: "sm",
|
|
23638
|
-
children: copied ? /* @__PURE__ */ jsx(HiOutlineClipboardDocumentCheck, { size: 16 }) : /* @__PURE__ */ jsx(HiOutlineClipboardDocument, { size: 16 })
|
|
23639
|
-
}
|
|
23640
|
-
) })
|
|
23641
|
-
] }),
|
|
23642
|
-
/* @__PURE__ */ jsx(Content$1, { value: "console", className: styles$f.content, children: "Debug console" })
|
|
23643
|
-
] })
|
|
24231
|
+
/* @__PURE__ */ jsxs(Content$1, { value: "code", className: styles$g.content, children: [
|
|
24232
|
+
/* @__PURE__ */ jsx("div", { ref: editorRef, className: styles$g.xmluiEditor }),
|
|
24233
|
+
/* @__PURE__ */ jsx("div", { className: styles$g.copyButton, children: /* @__PURE__ */ jsx(
|
|
24234
|
+
Button,
|
|
24235
|
+
{
|
|
24236
|
+
onClick: copyToClipboard,
|
|
24237
|
+
variant: "solid",
|
|
24238
|
+
themeColor: "secondary",
|
|
24239
|
+
style: { padding: 8 },
|
|
24240
|
+
size: "sm",
|
|
24241
|
+
children: copied ? /* @__PURE__ */ jsx(HiOutlineClipboardDocumentCheck, { size: 16 }) : /* @__PURE__ */ jsx(HiOutlineClipboardDocument, { size: 16 })
|
|
24242
|
+
}
|
|
24243
|
+
) })
|
|
24244
|
+
] }),
|
|
24245
|
+
/* @__PURE__ */ jsx(Content$1, { value: "console", className: styles$g.content, children: "Debug console" })
|
|
24246
|
+
]
|
|
24247
|
+
}
|
|
24248
|
+
)
|
|
23644
24249
|
}
|
|
23645
24250
|
),
|
|
23646
24251
|
root2
|
|
@@ -23954,13 +24559,13 @@ function Theme({
|
|
|
23954
24559
|
/* @__PURE__ */ jsx("link", { rel: "icon", type: "image/svg+xml", href: faviconUrl }),
|
|
23955
24560
|
fontLinks == null ? void 0 : fontLinks.map((fontLink) => /* @__PURE__ */ jsx("link", { href: fontLink, rel: "stylesheet" }, fontLink))
|
|
23956
24561
|
] }),
|
|
23957
|
-
/* @__PURE__ */ jsx("style", { type: "text/css", children:
|
|
24562
|
+
/* @__PURE__ */ jsx("style", { type: "text/css", children: `.${className} {${css}}` }),
|
|
23958
24563
|
/* @__PURE__ */ jsxs(
|
|
23959
24564
|
"div",
|
|
23960
24565
|
{
|
|
23961
24566
|
style: inspectStyle,
|
|
23962
24567
|
id: "_ui-engine-theme-root",
|
|
23963
|
-
className: classnames(styles$j.baseRootComponent),
|
|
24568
|
+
className: classnames(styles$j.baseRootComponent, className),
|
|
23964
24569
|
ref: (el) => {
|
|
23965
24570
|
if (el) {
|
|
23966
24571
|
setRoot(el);
|
|
@@ -24707,7 +25312,7 @@ async function delay(_executionContext, timeoutInMs, callback) {
|
|
|
24707
25312
|
const timedAction = createAction("delay", delay);
|
|
24708
25313
|
function Loader({
|
|
24709
25314
|
state,
|
|
24710
|
-
loader,
|
|
25315
|
+
loader: loader2,
|
|
24711
25316
|
loaderFn,
|
|
24712
25317
|
queryId,
|
|
24713
25318
|
pollIntervalInSeconds,
|
|
@@ -24718,11 +25323,11 @@ function Loader({
|
|
|
24718
25323
|
loaderError: loaderError2,
|
|
24719
25324
|
transformResult
|
|
24720
25325
|
}) {
|
|
24721
|
-
const { uid } =
|
|
25326
|
+
const { uid } = loader2;
|
|
24722
25327
|
const appContext = useAppContext();
|
|
24723
25328
|
const { data, status, isFetching, error: error2, refetch } = useQuery(
|
|
24724
25329
|
{
|
|
24725
|
-
queryKey: useMemo(() => queryId ? queryId : [uid, extractParam(state,
|
|
25330
|
+
queryKey: useMemo(() => queryId ? queryId : [uid, extractParam(state, loader2.props, appContext)], [appContext, loader2.props, queryId, state, uid]),
|
|
24726
25331
|
queryFn: useCallback(async ({ signal }) => {
|
|
24727
25332
|
const newVar = await loaderFn(signal);
|
|
24728
25333
|
if (newVar === void 0) {
|
|
@@ -24732,7 +25337,7 @@ function Loader({
|
|
|
24732
25337
|
}, [loaderFn]),
|
|
24733
25338
|
select: useCallback((data2) => {
|
|
24734
25339
|
let result = data2;
|
|
24735
|
-
const resultSelector =
|
|
25340
|
+
const resultSelector = loader2.props.resultSelector;
|
|
24736
25341
|
if (resultSelector) {
|
|
24737
25342
|
result = extractParam(
|
|
24738
25343
|
{ $response: data2 },
|
|
@@ -24740,7 +25345,7 @@ function Loader({
|
|
|
24740
25345
|
);
|
|
24741
25346
|
}
|
|
24742
25347
|
return transformResult ? transformResult(result) : result;
|
|
24743
|
-
}, [
|
|
25348
|
+
}, [loader2.props.resultSelector, transformResult]),
|
|
24744
25349
|
retry: false
|
|
24745
25350
|
}
|
|
24746
25351
|
);
|
|
@@ -24819,7 +25424,7 @@ function Loader({
|
|
|
24819
25424
|
return null;
|
|
24820
25425
|
}
|
|
24821
25426
|
function ApiLoader$1({
|
|
24822
|
-
loader,
|
|
25427
|
+
loader: loader2,
|
|
24823
25428
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24824
25429
|
loaderLoaded: loaderLoaded2,
|
|
24825
25430
|
loaderError: loaderError2,
|
|
@@ -24827,7 +25432,7 @@ function ApiLoader$1({
|
|
|
24827
25432
|
doNotRemoveNulls
|
|
24828
25433
|
}) {
|
|
24829
25434
|
const appContext = useAppContext();
|
|
24830
|
-
const url = extractParam(state,
|
|
25435
|
+
const url = extractParam(state, loader2.props.url, appContext);
|
|
24831
25436
|
const loadable = !!url;
|
|
24832
25437
|
const doLoad = useCallback(async () => {
|
|
24833
25438
|
if (!loadable) {
|
|
@@ -24835,7 +25440,7 @@ function ApiLoader$1({
|
|
|
24835
25440
|
}
|
|
24836
25441
|
console.log("doLoad ", url);
|
|
24837
25442
|
const response = await fetch(url);
|
|
24838
|
-
if (
|
|
25443
|
+
if (loader2.props.raw) {
|
|
24839
25444
|
return await response.text();
|
|
24840
25445
|
}
|
|
24841
25446
|
const responseObj = await response.json();
|
|
@@ -24843,12 +25448,12 @@ function ApiLoader$1({
|
|
|
24843
25448
|
removeNullProperties(responseObj);
|
|
24844
25449
|
}
|
|
24845
25450
|
return responseObj;
|
|
24846
|
-
}, [doNotRemoveNulls, loadable,
|
|
25451
|
+
}, [doNotRemoveNulls, loadable, loader2.props.raw, url]);
|
|
24847
25452
|
return /* @__PURE__ */ jsx(
|
|
24848
25453
|
Loader,
|
|
24849
25454
|
{
|
|
24850
25455
|
state,
|
|
24851
|
-
loader,
|
|
25456
|
+
loader: loader2,
|
|
24852
25457
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24853
25458
|
loaderLoaded: loaderLoaded2,
|
|
24854
25459
|
loaderError: loaderError2,
|
|
@@ -24865,11 +25470,11 @@ const ApiLoaderMd = createMetadata({
|
|
|
24865
25470
|
});
|
|
24866
25471
|
const apiLoaderRenderer = createLoaderRenderer(
|
|
24867
25472
|
"ApiLoader",
|
|
24868
|
-
({ loader, state, dispatch, loaderInProgressChanged: loaderInProgressChanged2, loaderLoaded: loaderLoaded2, loaderError: loaderError2 }) => {
|
|
25473
|
+
({ loader: loader2, state, dispatch, loaderInProgressChanged: loaderInProgressChanged2, loaderLoaded: loaderLoaded2, loaderError: loaderError2 }) => {
|
|
24869
25474
|
return /* @__PURE__ */ jsx(
|
|
24870
25475
|
ApiLoader$1,
|
|
24871
25476
|
{
|
|
24872
|
-
loader,
|
|
25477
|
+
loader: loader2,
|
|
24873
25478
|
state,
|
|
24874
25479
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24875
25480
|
loaderLoaded: loaderLoaded2,
|
|
@@ -24880,7 +25485,7 @@ const apiLoaderRenderer = createLoaderRenderer(
|
|
|
24880
25485
|
ApiLoaderMd
|
|
24881
25486
|
);
|
|
24882
25487
|
function ExternalDataLoader({
|
|
24883
|
-
loader,
|
|
25488
|
+
loader: loader2,
|
|
24884
25489
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24885
25490
|
loaderError: loaderError2,
|
|
24886
25491
|
loaderLoaded: loaderLoaded2,
|
|
@@ -24888,11 +25493,11 @@ function ExternalDataLoader({
|
|
|
24888
25493
|
doNotRemoveNulls
|
|
24889
25494
|
}) {
|
|
24890
25495
|
const appContext = useAppContext();
|
|
24891
|
-
const method = extractParam(state,
|
|
24892
|
-
const headers = extractParam(state,
|
|
24893
|
-
const data = extractParam(state,
|
|
25496
|
+
const method = extractParam(state, loader2.props.method, appContext);
|
|
25497
|
+
const headers = extractParam(state, loader2.props.headers, appContext);
|
|
25498
|
+
const data = extractParam(state, loader2.props.data, appContext);
|
|
24894
25499
|
console.log("resolve");
|
|
24895
|
-
const url = extractParam(state,
|
|
25500
|
+
const url = extractParam(state, loader2.props.url, appContext);
|
|
24896
25501
|
const urlLoadable = !!url;
|
|
24897
25502
|
const doLoad = useCallback(async () => {
|
|
24898
25503
|
if (!urlLoadable) {
|
|
@@ -24918,7 +25523,7 @@ function ExternalDataLoader({
|
|
|
24918
25523
|
Loader,
|
|
24919
25524
|
{
|
|
24920
25525
|
state,
|
|
24921
|
-
loader,
|
|
25526
|
+
loader: loader2,
|
|
24922
25527
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24923
25528
|
loaderLoaded: loaderLoaded2,
|
|
24924
25529
|
loaderError: loaderError2,
|
|
@@ -24937,11 +25542,11 @@ const ExternalDataLoaderMd = createMetadata({
|
|
|
24937
25542
|
});
|
|
24938
25543
|
const externalDataLoaderRenderer = createLoaderRenderer(
|
|
24939
25544
|
"ExternalDataLoader",
|
|
24940
|
-
({ loader, state, loaderInProgressChanged: loaderInProgressChanged2, loaderError: loaderError2, loaderLoaded: loaderLoaded2 }) => {
|
|
25545
|
+
({ loader: loader2, state, loaderInProgressChanged: loaderInProgressChanged2, loaderError: loaderError2, loaderLoaded: loaderLoaded2 }) => {
|
|
24941
25546
|
return /* @__PURE__ */ jsx(
|
|
24942
25547
|
ExternalDataLoader,
|
|
24943
25548
|
{
|
|
24944
|
-
loader,
|
|
25549
|
+
loader: loader2,
|
|
24945
25550
|
state,
|
|
24946
25551
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24947
25552
|
loaderLoaded: loaderLoaded2,
|
|
@@ -24952,15 +25557,15 @@ const externalDataLoaderRenderer = createLoaderRenderer(
|
|
|
24952
25557
|
ExternalDataLoaderMd
|
|
24953
25558
|
);
|
|
24954
25559
|
function ApiLoader({
|
|
24955
|
-
loader,
|
|
25560
|
+
loader: loader2,
|
|
24956
25561
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24957
25562
|
loaderError: loaderError2,
|
|
24958
25563
|
loaderLoaded: loaderLoaded2,
|
|
24959
25564
|
state
|
|
24960
25565
|
}) {
|
|
24961
25566
|
const appContext = useAppContext();
|
|
24962
|
-
const waitTime = extractParam(state,
|
|
24963
|
-
const responseObj = extractParam(state,
|
|
25567
|
+
const waitTime = extractParam(state, loader2.props.waitTime, appContext);
|
|
25568
|
+
const responseObj = extractParam(state, loader2.props.data, appContext);
|
|
24964
25569
|
const doLoad = useCallback(async () => {
|
|
24965
25570
|
waitTime && await asyncWait(waitTime);
|
|
24966
25571
|
return responseObj;
|
|
@@ -24969,7 +25574,7 @@ function ApiLoader({
|
|
|
24969
25574
|
Loader,
|
|
24970
25575
|
{
|
|
24971
25576
|
state,
|
|
24972
|
-
loader,
|
|
25577
|
+
loader: loader2,
|
|
24973
25578
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24974
25579
|
loaderLoaded: loaderLoaded2,
|
|
24975
25580
|
loaderError: loaderError2,
|
|
@@ -24986,11 +25591,11 @@ const MockLoaderMd = createMetadata({
|
|
|
24986
25591
|
});
|
|
24987
25592
|
const mockLoaderRenderer = createLoaderRenderer(
|
|
24988
25593
|
"MockLoader",
|
|
24989
|
-
({ loader, state, loaderInProgressChanged: loaderInProgressChanged2, loaderLoaded: loaderLoaded2, loaderError: loaderError2 }) => {
|
|
25594
|
+
({ loader: loader2, state, loaderInProgressChanged: loaderInProgressChanged2, loaderLoaded: loaderLoaded2, loaderError: loaderError2 }) => {
|
|
24990
25595
|
return /* @__PURE__ */ jsx(
|
|
24991
25596
|
ApiLoader,
|
|
24992
25597
|
{
|
|
24993
|
-
loader,
|
|
25598
|
+
loader: loader2,
|
|
24994
25599
|
state,
|
|
24995
25600
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
24996
25601
|
loaderLoaded: loaderLoaded2,
|
|
@@ -25002,7 +25607,7 @@ const mockLoaderRenderer = createLoaderRenderer(
|
|
|
25002
25607
|
);
|
|
25003
25608
|
function PageableLoader({
|
|
25004
25609
|
state,
|
|
25005
|
-
loader,
|
|
25610
|
+
loader: loader2,
|
|
25006
25611
|
loaderFn,
|
|
25007
25612
|
queryId,
|
|
25008
25613
|
registerComponentApi,
|
|
@@ -25013,17 +25618,17 @@ function PageableLoader({
|
|
|
25013
25618
|
loaderError: loaderError2,
|
|
25014
25619
|
transformResult
|
|
25015
25620
|
}) {
|
|
25016
|
-
const { uid } =
|
|
25621
|
+
const { uid } = loader2;
|
|
25017
25622
|
const appContext = useAppContext();
|
|
25018
25623
|
const queryKey = useMemo(
|
|
25019
|
-
() => queryId ? queryId : [uid, extractParam(state,
|
|
25020
|
-
[appContext,
|
|
25624
|
+
() => queryId ? queryId : [uid, extractParam(state, loader2.props, appContext)],
|
|
25625
|
+
[appContext, loader2.props, queryId, state, uid]
|
|
25021
25626
|
);
|
|
25022
25627
|
const thizRef = useRef(queryKey);
|
|
25023
25628
|
const getPreviousPageParam = useCallback(
|
|
25024
25629
|
(firstPage) => {
|
|
25025
25630
|
let prevPageParam = void 0;
|
|
25026
|
-
const prevPageSelector =
|
|
25631
|
+
const prevPageSelector = loader2.props.prevPageSelector;
|
|
25027
25632
|
if (prevPageSelector) {
|
|
25028
25633
|
prevPageParam = extractParam(
|
|
25029
25634
|
{ $response: firstPage.filter((item2) => !item2._optimisticValue) },
|
|
@@ -25037,12 +25642,12 @@ function PageableLoader({
|
|
|
25037
25642
|
prevPageParam
|
|
25038
25643
|
};
|
|
25039
25644
|
},
|
|
25040
|
-
[
|
|
25645
|
+
[loader2.props.prevPageSelector]
|
|
25041
25646
|
);
|
|
25042
25647
|
const getNextPageParam = useCallback(
|
|
25043
25648
|
(lastPage) => {
|
|
25044
25649
|
let nextPageParam = void 0;
|
|
25045
|
-
const nextPageSelector =
|
|
25650
|
+
const nextPageSelector = loader2.props.nextPageSelector;
|
|
25046
25651
|
if (nextPageSelector) {
|
|
25047
25652
|
nextPageParam = extractParam(
|
|
25048
25653
|
{ $response: lastPage },
|
|
@@ -25056,7 +25661,7 @@ function PageableLoader({
|
|
|
25056
25661
|
nextPageParam
|
|
25057
25662
|
};
|
|
25058
25663
|
},
|
|
25059
|
-
[
|
|
25664
|
+
[loader2.props.nextPageSelector]
|
|
25060
25665
|
);
|
|
25061
25666
|
const {
|
|
25062
25667
|
data,
|
|
@@ -25084,7 +25689,7 @@ function PageableLoader({
|
|
|
25084
25689
|
if (data2) {
|
|
25085
25690
|
result = data2.pages.flatMap((d2) => d2);
|
|
25086
25691
|
}
|
|
25087
|
-
const resultSelector =
|
|
25692
|
+
const resultSelector = loader2.props.resultSelector;
|
|
25088
25693
|
if (resultSelector) {
|
|
25089
25694
|
result = extractParam(
|
|
25090
25695
|
{ $response: result },
|
|
@@ -25093,10 +25698,10 @@ function PageableLoader({
|
|
|
25093
25698
|
}
|
|
25094
25699
|
return transformResult ? transformResult(result) : result;
|
|
25095
25700
|
},
|
|
25096
|
-
[
|
|
25701
|
+
[loader2.props.resultSelector, transformResult]
|
|
25097
25702
|
),
|
|
25098
|
-
getPreviousPageParam:
|
|
25099
|
-
getNextPageParam:
|
|
25703
|
+
getPreviousPageParam: loader2.props.prevPageSelector === void 0 ? void 0 : getPreviousPageParam,
|
|
25704
|
+
getNextPageParam: loader2.props.nextPageSelector === void 0 ? void 0 : getNextPageParam
|
|
25100
25705
|
});
|
|
25101
25706
|
useEffect(() => {
|
|
25102
25707
|
const queryKey2 = thizRef.current;
|
|
@@ -25219,7 +25824,7 @@ function PageableLoader({
|
|
|
25219
25824
|
appContext.queryClient,
|
|
25220
25825
|
fetchPrevPage,
|
|
25221
25826
|
data,
|
|
25222
|
-
|
|
25827
|
+
loader2.uid,
|
|
25223
25828
|
queryId,
|
|
25224
25829
|
queryKey,
|
|
25225
25830
|
refetch,
|
|
@@ -25229,7 +25834,7 @@ function PageableLoader({
|
|
|
25229
25834
|
return null;
|
|
25230
25835
|
}
|
|
25231
25836
|
function DataLoader({
|
|
25232
|
-
loader,
|
|
25837
|
+
loader: loader2,
|
|
25233
25838
|
state,
|
|
25234
25839
|
registerComponentApi,
|
|
25235
25840
|
onLoaded,
|
|
@@ -25240,41 +25845,41 @@ function DataLoader({
|
|
|
25240
25845
|
transformResult
|
|
25241
25846
|
}) {
|
|
25242
25847
|
const appContext = useAppContext();
|
|
25243
|
-
const url = extractParam(state,
|
|
25848
|
+
const url = extractParam(state, loader2.props.url, appContext);
|
|
25244
25849
|
const queryParamsInner = useMemo(() => {
|
|
25245
|
-
return extractParam(state,
|
|
25246
|
-
}, [appContext,
|
|
25850
|
+
return extractParam(state, loader2.props.queryParams, appContext);
|
|
25851
|
+
}, [appContext, loader2.props.queryParams, state]);
|
|
25247
25852
|
const queryParams = useShallowCompareMemoize(queryParamsInner);
|
|
25248
25853
|
const bodyInner = useMemo(() => {
|
|
25249
|
-
return extractParam(state,
|
|
25250
|
-
}, [appContext,
|
|
25854
|
+
return extractParam(state, loader2.props.body, appContext);
|
|
25855
|
+
}, [appContext, loader2.props.body, state]);
|
|
25251
25856
|
const body = useShallowCompareMemoize(bodyInner);
|
|
25252
25857
|
const rawBodyInner = useMemo(() => {
|
|
25253
|
-
return extractParam(state,
|
|
25254
|
-
}, [appContext,
|
|
25858
|
+
return extractParam(state, loader2.props.rawBody, appContext);
|
|
25859
|
+
}, [appContext, loader2.props.rawBody, state]);
|
|
25255
25860
|
const rawBody = useShallowCompareMemoize(rawBodyInner);
|
|
25256
25861
|
const pagingDirection = useMemo(() => {
|
|
25257
|
-
if (
|
|
25862
|
+
if (loader2.props.prevPageSelector && loader2.props.nextPageSelector) {
|
|
25258
25863
|
return "BIDIRECTIONAL";
|
|
25259
25864
|
}
|
|
25260
|
-
if (
|
|
25865
|
+
if (loader2.props.prevPageSelector) {
|
|
25261
25866
|
return "BACKWARD";
|
|
25262
25867
|
}
|
|
25263
|
-
if (
|
|
25868
|
+
if (loader2.props.nextPageSelector) {
|
|
25264
25869
|
return "FORWARD";
|
|
25265
25870
|
}
|
|
25266
25871
|
return null;
|
|
25267
|
-
}, [
|
|
25872
|
+
}, [loader2.props.nextPageSelector, loader2.props.prevPageSelector]);
|
|
25268
25873
|
const hasPaging = pagingDirection !== null;
|
|
25269
25874
|
const api = useMemo(() => {
|
|
25270
25875
|
return new RestApiProxy(appContext);
|
|
25271
25876
|
}, [appContext]);
|
|
25272
25877
|
const doLoad = useCallback(
|
|
25273
25878
|
async (abortSignal, pageParams) => {
|
|
25274
|
-
if (
|
|
25879
|
+
if (loader2.props.dataType === "csv") {
|
|
25275
25880
|
try {
|
|
25276
|
-
const method = extractParam(state,
|
|
25277
|
-
const headers = extractParam(state,
|
|
25881
|
+
const method = extractParam(state, loader2.props.method, appContext) || "GET";
|
|
25882
|
+
const headers = extractParam(state, loader2.props.headers, appContext) || {};
|
|
25278
25883
|
const fetchOptions = {
|
|
25279
25884
|
method,
|
|
25280
25885
|
headers
|
|
@@ -25317,7 +25922,7 @@ function DataLoader({
|
|
|
25317
25922
|
} else {
|
|
25318
25923
|
return await api.execute({
|
|
25319
25924
|
abortSignal,
|
|
25320
|
-
operation:
|
|
25925
|
+
operation: loader2.props,
|
|
25321
25926
|
params: {
|
|
25322
25927
|
...state,
|
|
25323
25928
|
$pageParams: pageParams
|
|
@@ -25328,7 +25933,7 @@ function DataLoader({
|
|
|
25328
25933
|
},
|
|
25329
25934
|
[
|
|
25330
25935
|
api,
|
|
25331
|
-
|
|
25936
|
+
loader2.props,
|
|
25332
25937
|
state,
|
|
25333
25938
|
url,
|
|
25334
25939
|
body,
|
|
@@ -25353,7 +25958,7 @@ function DataLoader({
|
|
|
25353
25958
|
loaderInProgressChanged2(isInProgress);
|
|
25354
25959
|
const inProgressMessage = extractParam(
|
|
25355
25960
|
stateRef.current.state,
|
|
25356
|
-
|
|
25961
|
+
loader2.props.inProgressNotificationMessage,
|
|
25357
25962
|
stateRef.current.appContext
|
|
25358
25963
|
);
|
|
25359
25964
|
if (isInProgress && inProgressMessage) {
|
|
@@ -25367,7 +25972,7 @@ function DataLoader({
|
|
|
25367
25972
|
}
|
|
25368
25973
|
}
|
|
25369
25974
|
},
|
|
25370
|
-
[
|
|
25975
|
+
[loader2.props.inProgressNotificationMessage, loaderInProgressChanged2]
|
|
25371
25976
|
);
|
|
25372
25977
|
const loaded = useCallback(
|
|
25373
25978
|
(data, pageInfo) => {
|
|
@@ -25377,7 +25982,7 @@ function DataLoader({
|
|
|
25377
25982
|
...stateRef.current.state,
|
|
25378
25983
|
$result: data
|
|
25379
25984
|
},
|
|
25380
|
-
|
|
25985
|
+
loader2.props.completedNotificationMessage,
|
|
25381
25986
|
stateRef.current.appContext
|
|
25382
25987
|
);
|
|
25383
25988
|
if (completedMessage) {
|
|
@@ -25390,7 +25995,7 @@ function DataLoader({
|
|
|
25390
25995
|
}
|
|
25391
25996
|
}
|
|
25392
25997
|
},
|
|
25393
|
-
[
|
|
25998
|
+
[loader2.props.completedNotificationMessage, loaderLoaded2]
|
|
25394
25999
|
);
|
|
25395
26000
|
const error2 = useCallback(
|
|
25396
26001
|
async (error22) => {
|
|
@@ -25409,7 +26014,7 @@ function DataLoader({
|
|
|
25409
26014
|
...stateRef.current.state,
|
|
25410
26015
|
$error: error22
|
|
25411
26016
|
},
|
|
25412
|
-
|
|
26017
|
+
loader2.props.errorNotificationMessage,
|
|
25413
26018
|
stateRef.current.appContext
|
|
25414
26019
|
);
|
|
25415
26020
|
if (errorMessage) {
|
|
@@ -25425,15 +26030,15 @@ function DataLoader({
|
|
|
25425
26030
|
appContext.signError(error22);
|
|
25426
26031
|
}
|
|
25427
26032
|
},
|
|
25428
|
-
[appContext,
|
|
26033
|
+
[appContext, loader2.props.errorNotificationMessage, loaderError2, onError]
|
|
25429
26034
|
);
|
|
25430
|
-
const pollIntervalInSeconds = extractParam(state,
|
|
26035
|
+
const pollIntervalInSeconds = extractParam(state, loader2.props.pollIntervalInSeconds, appContext);
|
|
25431
26036
|
return hasPaging ? /* @__PURE__ */ jsx(
|
|
25432
26037
|
PageableLoader,
|
|
25433
26038
|
{
|
|
25434
26039
|
queryId,
|
|
25435
26040
|
state,
|
|
25436
|
-
loader,
|
|
26041
|
+
loader: loader2,
|
|
25437
26042
|
loaderInProgressChanged: inProgress,
|
|
25438
26043
|
loaderLoaded: loaded,
|
|
25439
26044
|
loaderError: error2,
|
|
@@ -25449,7 +26054,7 @@ function DataLoader({
|
|
|
25449
26054
|
{
|
|
25450
26055
|
queryId,
|
|
25451
26056
|
state,
|
|
25452
|
-
loader,
|
|
26057
|
+
loader: loader2,
|
|
25453
26058
|
loaderInProgressChanged: inProgress,
|
|
25454
26059
|
loaderLoaded: loaded,
|
|
25455
26060
|
loaderError: error2,
|
|
@@ -25489,7 +26094,7 @@ const DataLoaderMd = createMetadata({
|
|
|
25489
26094
|
const dataLoaderRenderer = createLoaderRenderer(
|
|
25490
26095
|
"DataLoader",
|
|
25491
26096
|
({
|
|
25492
|
-
loader,
|
|
26097
|
+
loader: loader2,
|
|
25493
26098
|
state,
|
|
25494
26099
|
loaderLoaded: loaderLoaded2,
|
|
25495
26100
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
@@ -25499,21 +26104,21 @@ const dataLoaderRenderer = createLoaderRenderer(
|
|
|
25499
26104
|
lookupSyncCallback
|
|
25500
26105
|
}) => {
|
|
25501
26106
|
var _a, _b, _c;
|
|
25502
|
-
if (!((_a =
|
|
26107
|
+
if (!((_a = loader2.props) == null ? void 0 : _a.url) || !loader2.props.url.trim()) {
|
|
25503
26108
|
throw new Error("You must specify a non-empty (not whitespace-only) 'url' property for DataSource");
|
|
25504
26109
|
}
|
|
25505
26110
|
return /* @__PURE__ */ jsx(
|
|
25506
26111
|
DataLoader,
|
|
25507
26112
|
{
|
|
25508
|
-
loader,
|
|
26113
|
+
loader: loader2,
|
|
25509
26114
|
state,
|
|
25510
26115
|
loaderInProgressChanged: loaderInProgressChanged2,
|
|
25511
26116
|
loaderLoaded: loaderLoaded2,
|
|
25512
26117
|
loaderError: loaderError2,
|
|
25513
26118
|
registerComponentApi,
|
|
25514
|
-
transformResult: lookupSyncCallback(
|
|
25515
|
-
onLoaded: lookupAction((_b =
|
|
25516
|
-
onError: lookupAction((_c =
|
|
26119
|
+
transformResult: lookupSyncCallback(loader2.props.transformResult),
|
|
26120
|
+
onLoaded: lookupAction((_b = loader2.events) == null ? void 0 : _b.loaded, { eventName: "loaded" }),
|
|
26121
|
+
onError: lookupAction((_c = loader2.events) == null ? void 0 : _c.error, { eventName: "error" })
|
|
25517
26122
|
}
|
|
25518
26123
|
);
|
|
25519
26124
|
},
|
|
@@ -25528,29 +26133,29 @@ const DatePickerMd = createMetadata({
|
|
|
25528
26133
|
initialValue: dInitialValue(),
|
|
25529
26134
|
autoFocus: dAutoFocus(),
|
|
25530
26135
|
readOnly: dReadonly(),
|
|
25531
|
-
enabled: dEnabled(defaultProps$
|
|
25532
|
-
validationStatus: dValidationStatus(defaultProps$
|
|
26136
|
+
enabled: dEnabled(defaultProps$8.enabled),
|
|
26137
|
+
validationStatus: dValidationStatus(defaultProps$8.validationStatus),
|
|
25533
26138
|
mode: {
|
|
25534
26139
|
description: "The mode of the datepicker (single or range)",
|
|
25535
26140
|
valueType: "string",
|
|
25536
26141
|
availableValues: DatePickerModeValues,
|
|
25537
|
-
defaultValue: defaultProps$
|
|
26142
|
+
defaultValue: defaultProps$8.mode
|
|
25538
26143
|
},
|
|
25539
26144
|
dateFormat: {
|
|
25540
26145
|
description: "The format of the date displayed in the input field",
|
|
25541
26146
|
valueType: "string",
|
|
25542
|
-
defaultValue: defaultProps$
|
|
26147
|
+
defaultValue: defaultProps$8.dateFormat,
|
|
25543
26148
|
availableValues: dateFormats
|
|
25544
26149
|
},
|
|
25545
26150
|
showWeekNumber: {
|
|
25546
26151
|
description: "Whether to show the week number in the calendar",
|
|
25547
26152
|
valueType: "boolean",
|
|
25548
|
-
defaultValue: defaultProps$
|
|
26153
|
+
defaultValue: defaultProps$8.showWeekNumber
|
|
25549
26154
|
},
|
|
25550
26155
|
weekStartsOn: {
|
|
25551
26156
|
description: "The first day of the week. 0 is Sunday, 1 is Monday, etc.",
|
|
25552
26157
|
valueType: "number",
|
|
25553
|
-
defaultValue: defaultProps$
|
|
26158
|
+
defaultValue: defaultProps$8.weekStartsOn,
|
|
25554
26159
|
availableValues: [
|
|
25555
26160
|
{
|
|
25556
26161
|
value: WeekDays.Sunday,
|
|
@@ -25597,7 +26202,7 @@ const DatePickerMd = createMetadata({
|
|
|
25597
26202
|
inline: {
|
|
25598
26203
|
description: "Whether to display the datepicker inline",
|
|
25599
26204
|
valueType: "boolean",
|
|
25600
|
-
defaultValue: defaultProps$
|
|
26205
|
+
defaultValue: defaultProps$8.inline
|
|
25601
26206
|
},
|
|
25602
26207
|
startText: dStartText(),
|
|
25603
26208
|
startIcon: dStartIcon(),
|
|
@@ -25689,7 +26294,7 @@ const filler = "_filler_1mgc2_27";
|
|
|
25689
26294
|
const tabTrigger = "_tabTrigger_1mgc2_41";
|
|
25690
26295
|
const tabsList = "_tabsList_1mgc2_81";
|
|
25691
26296
|
const tabsContent = "_tabsContent_1mgc2_101";
|
|
25692
|
-
const styles$
|
|
26297
|
+
const styles$f = {
|
|
25693
26298
|
themeVars: themeVars$8,
|
|
25694
26299
|
tabs,
|
|
25695
26300
|
filler,
|
|
@@ -25781,7 +26386,7 @@ const Tabs = forwardRef(function Tabs2({
|
|
|
25781
26386
|
RTabs.Root,
|
|
25782
26387
|
{
|
|
25783
26388
|
ref: forwardedRef,
|
|
25784
|
-
className: styles$
|
|
26389
|
+
className: styles$f.tabs,
|
|
25785
26390
|
value: `${currentTab}`,
|
|
25786
26391
|
onValueChange: (tab) => {
|
|
25787
26392
|
const newIndex = tabItems2.findIndex((item2) => item2.id === tab);
|
|
@@ -25793,11 +26398,11 @@ const Tabs = forwardRef(function Tabs2({
|
|
|
25793
26398
|
orientation,
|
|
25794
26399
|
style: style2,
|
|
25795
26400
|
children: [
|
|
25796
|
-
/* @__PURE__ */ jsxs(RTabs.List, { className: styles$
|
|
26401
|
+
/* @__PURE__ */ jsxs(RTabs.List, { className: styles$f.tabsList, children: [
|
|
25797
26402
|
tabItems2.map(
|
|
25798
|
-
(tab) => tabRenderer ? /* @__PURE__ */ jsx(RTabs.Trigger, { value: tab.id, children: tabRenderer({ label: tab.label, isActive: tab.id === currentTab }) }, tab.id) : /* @__PURE__ */ jsx(RTabs.Trigger, { className: styles$
|
|
26403
|
+
(tab) => tabRenderer ? /* @__PURE__ */ jsx(RTabs.Trigger, { value: tab.id, children: tabRenderer({ label: tab.label, isActive: tab.id === currentTab }) }, tab.id) : /* @__PURE__ */ jsx(RTabs.Trigger, { className: styles$f.tabTrigger, value: tab.id, children: tab.label }, tab.id)
|
|
25799
26404
|
),
|
|
25800
|
-
/* @__PURE__ */ jsx("div", { className: styles$
|
|
26405
|
+
/* @__PURE__ */ jsx("div", { className: styles$f.filler, "data-orientation": orientation })
|
|
25801
26406
|
] }),
|
|
25802
26407
|
children
|
|
25803
26408
|
]
|
|
@@ -25823,7 +26428,7 @@ const TabsMd = createMetadata({
|
|
|
25823
26428
|
apis: {
|
|
25824
26429
|
next: d(`This method selects the next tab.`)
|
|
25825
26430
|
},
|
|
25826
|
-
themeVars: parseScssVar(styles$
|
|
26431
|
+
themeVars: parseScssVar(styles$f.themeVars),
|
|
25827
26432
|
defaultThemeVars: {
|
|
25828
26433
|
[`backgroundColor-${COMP$m}`]: "$backgroundColor-primary",
|
|
25829
26434
|
[`borderStyle-${COMP$m}`]: "solid",
|
|
@@ -26006,7 +26611,7 @@ const head_4 = "_head_4_10u25_81";
|
|
|
26006
26611
|
const head_5 = "_head_5_10u25_88";
|
|
26007
26612
|
const head_6 = "_head_6_10u25_95";
|
|
26008
26613
|
const active$1 = "_active_10u25_102";
|
|
26009
|
-
const styles$
|
|
26614
|
+
const styles$e = {
|
|
26010
26615
|
themeVars: themeVars$7,
|
|
26011
26616
|
nav,
|
|
26012
26617
|
list,
|
|
@@ -26047,24 +26652,24 @@ const TableOfContents = forwardRef(function TableOfContents2({ style: style2, sm
|
|
|
26047
26652
|
}
|
|
26048
26653
|
}
|
|
26049
26654
|
}, [activeAnchorId, headings]);
|
|
26050
|
-
return /* @__PURE__ */ jsx("div", { className: styles$
|
|
26655
|
+
return /* @__PURE__ */ jsx("div", { className: styles$e.nav, ref, style: style2, children: /* @__PURE__ */ jsx("ul", { className: styles$e.list, children: headings.map((value) => {
|
|
26051
26656
|
if (value.level <= maxHeadingLevel) {
|
|
26052
26657
|
return /* @__PURE__ */ jsx(
|
|
26053
26658
|
"li",
|
|
26054
26659
|
{
|
|
26055
|
-
className: classnames(styles$
|
|
26056
|
-
[styles$
|
|
26660
|
+
className: classnames(styles$e.listItem, {
|
|
26661
|
+
[styles$e.active]: value.id === activeAnchorId
|
|
26057
26662
|
}),
|
|
26058
26663
|
children: /* @__PURE__ */ jsx(
|
|
26059
26664
|
NavLink$1,
|
|
26060
26665
|
{
|
|
26061
|
-
className: classnames(styles$
|
|
26062
|
-
[styles$
|
|
26063
|
-
[styles$
|
|
26064
|
-
[styles$
|
|
26065
|
-
[styles$
|
|
26066
|
-
[styles$
|
|
26067
|
-
[styles$
|
|
26666
|
+
className: classnames(styles$e.link, {
|
|
26667
|
+
[styles$e.head_1]: value.level === 1,
|
|
26668
|
+
[styles$e.head_2]: value.level === 2,
|
|
26669
|
+
[styles$e.head_3]: value.level === 3,
|
|
26670
|
+
[styles$e.head_4]: value.level === 4,
|
|
26671
|
+
[styles$e.head_5]: value.level === 5,
|
|
26672
|
+
[styles$e.head_6]: value.level === 6
|
|
26068
26673
|
}),
|
|
26069
26674
|
to: `#${value.id}`,
|
|
26070
26675
|
onClick: (event) => {
|
|
@@ -26100,7 +26705,7 @@ const TableOfContentsMd = createMetadata({
|
|
|
26100
26705
|
defaultValue: "6"
|
|
26101
26706
|
}
|
|
26102
26707
|
},
|
|
26103
|
-
themeVars: parseScssVar(styles$
|
|
26708
|
+
themeVars: parseScssVar(styles$e.themeVars),
|
|
26104
26709
|
defaultThemeVars: {
|
|
26105
26710
|
[`width-${COMP$j}`]: "auto",
|
|
26106
26711
|
[`height-${COMP$j}`]: "auto",
|
|
@@ -26164,7 +26769,7 @@ const triggerStart = "_triggerStart_1usiy_86";
|
|
|
26164
26769
|
const contentWrapper = "_contentWrapper_1usiy_90";
|
|
26165
26770
|
const content = "_content_1usiy_90";
|
|
26166
26771
|
const chevron = "_chevron_1usiy_106";
|
|
26167
|
-
const styles$
|
|
26772
|
+
const styles$d = {
|
|
26168
26773
|
themeVars: themeVars$6,
|
|
26169
26774
|
root,
|
|
26170
26775
|
item,
|
|
@@ -26310,7 +26915,7 @@ const AccordionComponent = forwardRef(function AccordionComponent2({
|
|
|
26310
26915
|
ref: forwardedRef,
|
|
26311
26916
|
value: expandedItems,
|
|
26312
26917
|
type: "multiple",
|
|
26313
|
-
className: styles$
|
|
26918
|
+
className: styles$d.root,
|
|
26314
26919
|
onValueChange: (value) => setExpandedItems(value),
|
|
26315
26920
|
children
|
|
26316
26921
|
}
|
|
@@ -26357,7 +26962,7 @@ const AccordionMd = createMetadata({
|
|
|
26357
26962
|
toggle: d(`This method toggles the state of the ${COMP$i} between expanded and collapsed.`),
|
|
26358
26963
|
focus: dFocus(COMP$i)
|
|
26359
26964
|
},
|
|
26360
|
-
themeVars: parseScssVar(styles$
|
|
26965
|
+
themeVars: parseScssVar(styles$d.themeVars),
|
|
26361
26966
|
defaultThemeVars: {
|
|
26362
26967
|
[`paddingHorizontal-header-${COMP$i}`]: "$space-3",
|
|
26363
26968
|
[`paddingVertical-header-${COMP$i}`]: "$space-3",
|
|
@@ -26398,7 +27003,7 @@ const accordionComponentRenderer = createComponentRenderer(
|
|
|
26398
27003
|
}
|
|
26399
27004
|
);
|
|
26400
27005
|
const themeVars$5 = '"[]"';
|
|
26401
|
-
const styles$
|
|
27006
|
+
const styles$c = {
|
|
26402
27007
|
themeVars: themeVars$5
|
|
26403
27008
|
};
|
|
26404
27009
|
const Alert = forwardRef(function Alert2({ style: style2 }, forwardedRef) {
|
|
@@ -26447,7 +27052,7 @@ const AlertMd = createMetadata({
|
|
|
26447
27052
|
`This method dismisses the ${COMP$h}. It triggers the \`didDismiss\` event with the argument set to \`false\`.`
|
|
26448
27053
|
)
|
|
26449
27054
|
},
|
|
26450
|
-
themeVars: parseScssVar(styles$
|
|
27055
|
+
themeVars: parseScssVar(styles$c.themeVars),
|
|
26451
27056
|
defaultThemeVars: {
|
|
26452
27057
|
light: {},
|
|
26453
27058
|
dark: {}
|
|
@@ -26470,7 +27075,7 @@ const spacer = "_spacer_10ppq_123";
|
|
|
26470
27075
|
const offCanvasHeader = "_offCanvasHeader_10ppq_128";
|
|
26471
27076
|
const offCanvasButtonSpace = "_offCanvasButtonSpace_10ppq_135";
|
|
26472
27077
|
const offCanvasTitle = "_offCanvasTitle_10ppq_139";
|
|
26473
|
-
const styles$
|
|
27078
|
+
const styles$b = {
|
|
26474
27079
|
themeVars: themeVars$4,
|
|
26475
27080
|
overlay: overlay$2,
|
|
26476
27081
|
overlayVisible,
|
|
@@ -26513,8 +27118,8 @@ const OffCanvas = ({
|
|
|
26513
27118
|
showBackdrop && /* @__PURE__ */ jsx(
|
|
26514
27119
|
"div",
|
|
26515
27120
|
{
|
|
26516
|
-
className: classnames(styles$
|
|
26517
|
-
[styles$
|
|
27121
|
+
className: classnames(styles$b.overlay, {
|
|
27122
|
+
[styles$b.overlayVisible]: isOpen
|
|
26518
27123
|
}),
|
|
26519
27124
|
onClick: onClose
|
|
26520
27125
|
}
|
|
@@ -26522,23 +27127,23 @@ const OffCanvas = ({
|
|
|
26522
27127
|
/* @__PURE__ */ jsxs(
|
|
26523
27128
|
"div",
|
|
26524
27129
|
{
|
|
26525
|
-
className: classnames(styles$
|
|
26526
|
-
[styles$
|
|
26527
|
-
[styles$
|
|
26528
|
-
[styles$
|
|
26529
|
-
[styles$
|
|
26530
|
-
[styles$
|
|
27130
|
+
className: classnames(styles$b.offCanvas, {
|
|
27131
|
+
[styles$b.open]: isOpen,
|
|
27132
|
+
[styles$b.left]: place === "left",
|
|
27133
|
+
[styles$b.right]: place === "right",
|
|
27134
|
+
[styles$b.top]: place === "top",
|
|
27135
|
+
[styles$b.bottom]: place === "bottom"
|
|
26531
27136
|
}),
|
|
26532
27137
|
style: style2,
|
|
26533
27138
|
children: [
|
|
26534
|
-
/* @__PURE__ */ jsxs("header", { className: styles$
|
|
26535
|
-
!!title2 && /* @__PURE__ */ jsx("span", { className: styles$
|
|
26536
|
-
/* @__PURE__ */ jsx("div", { className: styles$
|
|
27139
|
+
/* @__PURE__ */ jsxs("header", { className: styles$b.offCanvasHeader, children: [
|
|
27140
|
+
!!title2 && /* @__PURE__ */ jsx("span", { className: styles$b.offCanvasTitle, children: title2 }),
|
|
27141
|
+
/* @__PURE__ */ jsx("div", { className: styles$b.spacer }),
|
|
26537
27142
|
showCloseButton && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
26538
27143
|
place !== "left" && /* @__PURE__ */ jsx(
|
|
26539
27144
|
"button",
|
|
26540
27145
|
{
|
|
26541
|
-
className: styles$
|
|
27146
|
+
className: styles$b.button,
|
|
26542
27147
|
onClick: () => {
|
|
26543
27148
|
setPlace("left");
|
|
26544
27149
|
},
|
|
@@ -26548,7 +27153,7 @@ const OffCanvas = ({
|
|
|
26548
27153
|
place !== "right" && /* @__PURE__ */ jsx(
|
|
26549
27154
|
"button",
|
|
26550
27155
|
{
|
|
26551
|
-
className: styles$
|
|
27156
|
+
className: styles$b.button,
|
|
26552
27157
|
onClick: () => {
|
|
26553
27158
|
setPlace("right");
|
|
26554
27159
|
},
|
|
@@ -26558,7 +27163,7 @@ const OffCanvas = ({
|
|
|
26558
27163
|
place !== "top" && /* @__PURE__ */ jsx(
|
|
26559
27164
|
"button",
|
|
26560
27165
|
{
|
|
26561
|
-
className: styles$
|
|
27166
|
+
className: styles$b.button,
|
|
26562
27167
|
onClick: () => {
|
|
26563
27168
|
setPlace("top");
|
|
26564
27169
|
},
|
|
@@ -26568,18 +27173,18 @@ const OffCanvas = ({
|
|
|
26568
27173
|
place !== "bottom" && /* @__PURE__ */ jsx(
|
|
26569
27174
|
"button",
|
|
26570
27175
|
{
|
|
26571
|
-
className: styles$
|
|
27176
|
+
className: styles$b.button,
|
|
26572
27177
|
onClick: () => {
|
|
26573
27178
|
setPlace("bottom");
|
|
26574
27179
|
},
|
|
26575
27180
|
children: "↓"
|
|
26576
27181
|
}
|
|
26577
27182
|
),
|
|
26578
|
-
/* @__PURE__ */ jsx("div", { className: styles$
|
|
27183
|
+
/* @__PURE__ */ jsx("div", { className: styles$b.offCanvasButtonSpace }),
|
|
26579
27184
|
/* @__PURE__ */ jsx(
|
|
26580
27185
|
"button",
|
|
26581
27186
|
{
|
|
26582
|
-
className: styles$
|
|
27187
|
+
className: styles$b.button,
|
|
26583
27188
|
onClick: () => {
|
|
26584
27189
|
setIsOpen(false);
|
|
26585
27190
|
onClose == null ? void 0 : onClose();
|
|
@@ -26645,7 +27250,7 @@ const OffCanvasMd = createMetadata({
|
|
|
26645
27250
|
`This method closes the component. It triggers the \`didClose\` event with the argument set to \`false\`.`
|
|
26646
27251
|
)
|
|
26647
27252
|
},
|
|
26648
|
-
themeVars: parseScssVar(styles$
|
|
27253
|
+
themeVars: parseScssVar(styles$b.themeVars),
|
|
26649
27254
|
defaultThemeVars: {
|
|
26650
27255
|
"width-OffCanvas": "600px",
|
|
26651
27256
|
"padding-OffCanvas": "$padding-tight",
|
|
@@ -26674,6 +27279,75 @@ const offCanvasComponentRenderer = createComponentRenderer(
|
|
|
26674
27279
|
);
|
|
26675
27280
|
}
|
|
26676
27281
|
);
|
|
27282
|
+
const innerWrapper$1 = "_innerWrapper_x6hwk_13";
|
|
27283
|
+
const dark = "_dark_x6hwk_32";
|
|
27284
|
+
const wrapper = "_wrapper_x6hwk_51";
|
|
27285
|
+
const styles$a = {
|
|
27286
|
+
innerWrapper: innerWrapper$1,
|
|
27287
|
+
dark,
|
|
27288
|
+
wrapper
|
|
27289
|
+
};
|
|
27290
|
+
let highlighter = null;
|
|
27291
|
+
function XmluiCodeHighlighter({ value }) {
|
|
27292
|
+
const { activeThemeTone } = useTheme();
|
|
27293
|
+
const [initialized, setInitialized] = useState(false);
|
|
27294
|
+
useEffect(() => {
|
|
27295
|
+
async function load() {
|
|
27296
|
+
if (!highlighter) {
|
|
27297
|
+
const { createHighlighterCore } = await import("./core-XLM8cuFP.mjs");
|
|
27298
|
+
highlighter = await createHighlighterCore({
|
|
27299
|
+
// @ts-ignore
|
|
27300
|
+
themes: [import("./xmlui-h2uM9PUY.mjs")],
|
|
27301
|
+
// @ts-ignore
|
|
27302
|
+
langs: [import("./grammar.tmLanguage-CiEHpsbo.mjs")],
|
|
27303
|
+
loadWasm: import("./wasm-DDgzZJey.mjs")
|
|
27304
|
+
});
|
|
27305
|
+
}
|
|
27306
|
+
setInitialized(true);
|
|
27307
|
+
}
|
|
27308
|
+
load();
|
|
27309
|
+
}, []);
|
|
27310
|
+
const html = useMemo(() => {
|
|
27311
|
+
return !initialized || !highlighter ? "" : highlighter.codeToHtml(value, {
|
|
27312
|
+
lang: "xmlui",
|
|
27313
|
+
theme: "xmlui",
|
|
27314
|
+
colorReplacements: {
|
|
27315
|
+
"#000001": "var(--syntax-token-component)",
|
|
27316
|
+
"#000002": "var(--syntax-token-delimiter-angle)",
|
|
27317
|
+
"#000003": "var(--syntax-token-attribute-name)",
|
|
27318
|
+
"#000004": "var(--syntax-token-equal-sign)",
|
|
27319
|
+
"#000005": "var(--syntax-token-string)",
|
|
27320
|
+
"#000006": "var(--syntax-token-script)",
|
|
27321
|
+
"#000007": "var(--syntax-token-helper)",
|
|
27322
|
+
"#000008": "var(--syntax-token-comment)",
|
|
27323
|
+
"#000009": "var(--syntax-token-escape)",
|
|
27324
|
+
"#000010": "var(--syntax-token-constant)",
|
|
27325
|
+
"#000011": "var(--syntax-token-cdata)",
|
|
27326
|
+
"#000012": "var(--syntax-token-delimiter-curly)",
|
|
27327
|
+
"#000013": "var(--syntax-token-text)"
|
|
27328
|
+
}
|
|
27329
|
+
});
|
|
27330
|
+
}, [initialized, value]);
|
|
27331
|
+
return /* @__PURE__ */ jsx("div", { className: styles$a.wrapper, children: /* @__PURE__ */ jsx(
|
|
27332
|
+
"div",
|
|
27333
|
+
{
|
|
27334
|
+
className: classnames(styles$a.innerWrapper, {
|
|
27335
|
+
[styles$a.dark]: activeThemeTone === "dark",
|
|
27336
|
+
[styles$a.light]: activeThemeTone === "light"
|
|
27337
|
+
}),
|
|
27338
|
+
dangerouslySetInnerHTML: {
|
|
27339
|
+
__html: html
|
|
27340
|
+
}
|
|
27341
|
+
}
|
|
27342
|
+
) });
|
|
27343
|
+
}
|
|
27344
|
+
const codeComponentRenderer = createComponentRenderer(
|
|
27345
|
+
"XmluiCodehighlighter",
|
|
27346
|
+
{},
|
|
27347
|
+
({ node, renderChild: renderChild2 }) => {
|
|
27348
|
+
return /* @__PURE__ */ jsx(XmluiCodeHighlighter, { value: renderChild2(node.children) });
|
|
27349
|
+
}
|
|
27350
|
+
);
|
|
26677
27351
|
const TabItemComponent = forwardRef(function TabItemComponent2({ children, label: label2, style: style2 }, forwardedRef) {
|
|
26678
27352
|
const id = useId();
|
|
26679
27353
|
const { register, unRegister, activeTabId } = useTabContext();
|
|
@@ -26694,7 +27368,7 @@ const TabItemComponent = forwardRef(function TabItemComponent2({ children, label
|
|
|
26694
27368
|
Content$1,
|
|
26695
27369
|
{
|
|
26696
27370
|
value: id,
|
|
26697
|
-
className: styles$
|
|
27371
|
+
className: styles$f.tabsContent,
|
|
26698
27372
|
ref: forwardedRef,
|
|
26699
27373
|
style: style2,
|
|
26700
27374
|
children
|
|
@@ -26753,13 +27427,13 @@ const AccordionItemComponent = forwardRef(function AccordionItemComponent2({ id,
|
|
|
26753
27427
|
unRegister(triggerId);
|
|
26754
27428
|
};
|
|
26755
27429
|
}, [triggerId, unRegister]);
|
|
26756
|
-
return /* @__PURE__ */ jsxs(RAccordion.Item, { value: itemId, className: styles$
|
|
26757
|
-
/* @__PURE__ */ jsx(RAccordion.Header, { className: styles$
|
|
27430
|
+
return /* @__PURE__ */ jsxs(RAccordion.Item, { value: itemId, className: styles$d.item, ref: forwardedRef, style: style2, children: [
|
|
27431
|
+
/* @__PURE__ */ jsx(RAccordion.Header, { className: styles$d.header, children: /* @__PURE__ */ jsxs(
|
|
26758
27432
|
RAccordion.Trigger,
|
|
26759
27433
|
{
|
|
26760
27434
|
id: `trigger_${itemId}`,
|
|
26761
|
-
className: classnames(styles$
|
|
26762
|
-
[styles$
|
|
27435
|
+
className: classnames(styles$d.trigger, {
|
|
27436
|
+
[styles$d.triggerStart]: triggerPosition === "start"
|
|
26763
27437
|
}),
|
|
26764
27438
|
children: [
|
|
26765
27439
|
headerRenderer(header2),
|
|
@@ -26774,7 +27448,7 @@ const AccordionItemComponent = forwardRef(function AccordionItemComponent2({ id,
|
|
|
26774
27448
|
Icon,
|
|
26775
27449
|
{
|
|
26776
27450
|
name: !expanded2 ? collapsedIcon : expandedIcon || collapsedIcon,
|
|
26777
|
-
className: styles$
|
|
27451
|
+
className: styles$d.chevron
|
|
26778
27452
|
}
|
|
26779
27453
|
)
|
|
26780
27454
|
}
|
|
@@ -26782,7 +27456,7 @@ const AccordionItemComponent = forwardRef(function AccordionItemComponent2({ id,
|
|
|
26782
27456
|
]
|
|
26783
27457
|
}
|
|
26784
27458
|
) }),
|
|
26785
|
-
/* @__PURE__ */ jsx(RAccordion.Content, { className: styles$
|
|
27459
|
+
/* @__PURE__ */ jsx(RAccordion.Content, { className: styles$d.contentWrapper, children: /* @__PURE__ */ jsx("div", { className: styles$d.content, children: content2 }) })
|
|
26786
27460
|
] }, itemId);
|
|
26787
27461
|
});
|
|
26788
27462
|
const COMP$e = "AccordionItem";
|
|
@@ -26860,7 +27534,18 @@ const SliderMd = createMetadata({
|
|
|
26860
27534
|
readOnly: dReadonly(),
|
|
26861
27535
|
validationStatus: dValidationStatus(),
|
|
26862
27536
|
rangeStyle: d(`This property allows you to apply custom styles to the range element of the slider.`),
|
|
26863
|
-
thumbStyle: d(`This property allows
|
|
27537
|
+
thumbStyle: d(`This property allows you to apply custom styles to the thumb elements of the slider.`),
|
|
27538
|
+
showValues: d(
|
|
27539
|
+
`This property controls whether the slider shows the current values of the thumbs.`,
|
|
27540
|
+
null,
|
|
27541
|
+
"boolean",
|
|
27542
|
+
true
|
|
27543
|
+
),
|
|
27544
|
+
valueFormat: d(
|
|
27545
|
+
`This property allows you to customize how the values are displayed.`,
|
|
27546
|
+
null,
|
|
27547
|
+
"any"
|
|
27548
|
+
)
|
|
26864
27549
|
},
|
|
26865
27550
|
events: {
|
|
26866
27551
|
didChange: dDidChange(COMP$d),
|
|
@@ -26881,8 +27566,25 @@ const SliderMd = createMetadata({
|
|
|
26881
27566
|
[`borderColor-thumb-${COMP$d}`]: "$color-surface-50",
|
|
26882
27567
|
[`backgroundColor-thumb-${COMP$d}`]: "$color-primary",
|
|
26883
27568
|
[`boxShadow-thumb-${COMP$d}`]: "$boxShadow-md",
|
|
26884
|
-
[`
|
|
26885
|
-
[`
|
|
27569
|
+
[`boxShadow-thumb-${COMP$d}--hover`]: "$boxShadow-lg",
|
|
27570
|
+
[`boxShadow-thumb-${COMP$d}--focus`]: "$boxShadow-xl",
|
|
27571
|
+
[`borderRadius-${COMP$d}-default`]: "$borderRadius",
|
|
27572
|
+
[`borderColor-${COMP$d}-default`]: "transparent",
|
|
27573
|
+
[`borderWidth-${COMP$d}-default`]: "0",
|
|
27574
|
+
[`borderStyle-${COMP$d}-default`]: "solid",
|
|
27575
|
+
[`boxShadow-${COMP$d}-default`]: "none",
|
|
27576
|
+
light: {
|
|
27577
|
+
[`backgroundColor-track-${COMP$d}--disabled`]: "$color-surface-300",
|
|
27578
|
+
[`backgroundColor-range-${COMP$d}--disabled`]: "$color-surface-400",
|
|
27579
|
+
[`backgroundColor-thumb-${COMP$d}`]: "$color-primary-500",
|
|
27580
|
+
[`borderColor-thumb-${COMP$d}`]: "$color-surface-50"
|
|
27581
|
+
},
|
|
27582
|
+
dark: {
|
|
27583
|
+
[`backgroundColor-track-${COMP$d}--disabled`]: "$color-surface-600",
|
|
27584
|
+
[`backgroundColor-range-${COMP$d}--disabled`]: "$color-surface-800",
|
|
27585
|
+
[`backgroundColor-thumb-${COMP$d}`]: "$color-primary-400",
|
|
27586
|
+
[`borderColor-thumb-${COMP$d}`]: "$color-surface-950"
|
|
27587
|
+
}
|
|
26886
27588
|
}
|
|
26887
27589
|
});
|
|
26888
27590
|
const sliderComponentRenderer = createComponentRenderer(
|
|
@@ -26892,12 +27594,13 @@ const sliderComponentRenderer = createComponentRenderer(
|
|
|
26892
27594
|
node,
|
|
26893
27595
|
extractValue,
|
|
26894
27596
|
lookupEventHandler,
|
|
27597
|
+
lookupSyncCallback,
|
|
26895
27598
|
layoutCss,
|
|
26896
27599
|
updateState,
|
|
26897
27600
|
state,
|
|
26898
27601
|
registerComponentApi
|
|
26899
27602
|
}) => {
|
|
26900
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
27603
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i;
|
|
26901
27604
|
return /* @__PURE__ */ jsx(
|
|
26902
27605
|
Slider,
|
|
26903
27606
|
{
|
|
@@ -26923,7 +27626,9 @@ const sliderComponentRenderer = createComponentRenderer(
|
|
|
26923
27626
|
labelBreak: extractValue.asOptionalBoolean(node.props.labelBreak),
|
|
26924
27627
|
required: extractValue.asOptionalBoolean(node.props.required),
|
|
26925
27628
|
rangeStyle: extractValue((_f = node.props) == null ? void 0 : _f.rangeStyle),
|
|
26926
|
-
thumbStyle: extractValue((_g = node.props) == null ? void 0 : _g.thumbStyle)
|
|
27629
|
+
thumbStyle: extractValue((_g = node.props) == null ? void 0 : _g.thumbStyle),
|
|
27630
|
+
showValues: extractValue.asOptionalBoolean((_h = node.props) == null ? void 0 : _h.showValues),
|
|
27631
|
+
valueFormat: lookupSyncCallback((_i = node.props) == null ? void 0 : _i.valueFormat)
|
|
26927
27632
|
}
|
|
26928
27633
|
);
|
|
26929
27634
|
}
|
|
@@ -28232,6 +28937,11 @@ const HtmlDetailsMd = createMetadata({
|
|
|
28232
28937
|
isHtmlTag: true,
|
|
28233
28938
|
props: {
|
|
28234
28939
|
open: d("Specifies that the details are visible (open)")
|
|
28940
|
+
},
|
|
28941
|
+
themeVars: parseScssVar(styles$l.themeVarsDetails),
|
|
28942
|
+
defaultThemeVars: {
|
|
28943
|
+
"marginTop-HtmlDetails": "1rem",
|
|
28944
|
+
"marginBottom-HtmlDetails": "1rem"
|
|
28235
28945
|
}
|
|
28236
28946
|
});
|
|
28237
28947
|
const htmlDetailsTagRenderer = createComponentRenderer(
|
|
@@ -28241,7 +28951,7 @@ const htmlDetailsTagRenderer = createComponentRenderer(
|
|
|
28241
28951
|
const p = new PropsTrasform(extractValue, extractResourceUrl, layoutCss, node.props);
|
|
28242
28952
|
const { open: open2 } = p.asOptionalBoolean("open");
|
|
28243
28953
|
const props = p.asRest();
|
|
28244
|
-
return /* @__PURE__ */ jsx("details", { style: layoutCss, open: open2 ?? false, ...props, children: renderChild2(node.children) });
|
|
28954
|
+
return /* @__PURE__ */ jsx("details", { style: layoutCss, className: styles$l.htmlDetails, open: open2 ?? false, ...props, children: renderChild2(node.children) });
|
|
28245
28955
|
}
|
|
28246
28956
|
);
|
|
28247
28957
|
const HtmlDfnMd = createMetadata({
|
|
@@ -29659,6 +30369,11 @@ const HtmlVideoMd = createMetadata({
|
|
|
29659
30369
|
),
|
|
29660
30370
|
src: d("Specifies the URL of the video file"),
|
|
29661
30371
|
width: d("Specifies the width of the video player")
|
|
30372
|
+
},
|
|
30373
|
+
themeVars: parseScssVar(styles$l.themeVarsVideo),
|
|
30374
|
+
defaultThemeVars: {
|
|
30375
|
+
"marginTop-HtmlVideo": "1rem",
|
|
30376
|
+
"marginBottom-HtmlVideo": "1rem"
|
|
29662
30377
|
}
|
|
29663
30378
|
});
|
|
29664
30379
|
const htmlVideoTagRenderer = createComponentRenderer(
|
|
@@ -29716,7 +30431,7 @@ const ColorPickerMd = createMetadata({
|
|
|
29716
30431
|
autoFocus: dAutoFocus(),
|
|
29717
30432
|
required: dRequired(),
|
|
29718
30433
|
readOnly: dReadonly(),
|
|
29719
|
-
validationStatus: dValidationStatus(defaultProps$
|
|
30434
|
+
validationStatus: dValidationStatus(defaultProps$6.validationStatus)
|
|
29720
30435
|
},
|
|
29721
30436
|
events: {
|
|
29722
30437
|
didChange: dDidChange(COMP$3),
|
|
@@ -30469,6 +31184,129 @@ const ConfirmationModalContextProvider = ({ children }) => {
|
|
|
30469
31184
|
)
|
|
30470
31185
|
] });
|
|
30471
31186
|
};
|
|
31187
|
+
function BsArrowDownShort(props) {
|
|
31188
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z" } }] })(props);
|
|
31189
|
+
}
|
|
31190
|
+
function BsArrowLeftShort(props) {
|
|
31191
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z" } }] })(props);
|
|
31192
|
+
}
|
|
31193
|
+
function BsArrowRightShort(props) {
|
|
31194
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" } }] })(props);
|
|
31195
|
+
}
|
|
31196
|
+
function BsArrowUpShort(props) {
|
|
31197
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z" } }] })(props);
|
|
31198
|
+
}
|
|
31199
|
+
function BsChatDots(props) {
|
|
31200
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" } }, { "tag": "path", "attr": { "d": "m2.165 15.803.02-.004c1.83-.363 2.948-.842 3.468-1.105A9.06 9.06 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.437 10.437 0 0 1-.524 2.318l-.003.011a10.722 10.722 0 0 1-.244.637c-.079.186.074.394.273.362a21.673 21.673 0 0 0 .693-.125zm.8-3.108a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6c0 3.193-3.004 6-7 6a8.06 8.06 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a10.97 10.97 0 0 0 .398-2z" } }] })(props);
|
|
31201
|
+
}
|
|
31202
|
+
function BsHash(props) {
|
|
31203
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M8.39 12.648a1.32 1.32 0 0 0-.015.18c0 .305.21.508.5.508.266 0 .492-.172.555-.477l.554-2.703h1.204c.421 0 .617-.234.617-.547 0-.312-.188-.53-.617-.53h-.985l.516-2.524h1.265c.43 0 .618-.227.618-.547 0-.313-.188-.524-.618-.524h-1.046l.476-2.304a1.06 1.06 0 0 0 .016-.164.51.51 0 0 0-.516-.516.54.54 0 0 0-.539.43l-.523 2.554H7.617l.477-2.304c.008-.04.015-.118.015-.164a.512.512 0 0 0-.523-.516.539.539 0 0 0-.531.43L6.53 5.484H5.414c-.43 0-.617.22-.617.532 0 .312.187.539.617.539h.906l-.515 2.523H4.609c-.421 0-.609.219-.609.531 0 .313.188.547.61.547h.976l-.516 2.492c-.008.04-.015.125-.015.18 0 .305.21.508.5.508.265 0 .492-.172.554-.477l.555-2.703h2.242l-.515 2.492zm-1-6.109h2.266l-.515 2.563H6.859l.532-2.563z" } }] })(props);
|
|
31204
|
+
}
|
|
31205
|
+
function BsPause(props) {
|
|
31206
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M6 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5zm4 0a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5z" } }] })(props);
|
|
31207
|
+
}
|
|
31208
|
+
function BsPlay(props) {
|
|
31209
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M10.804 8 5 4.633v6.734L10.804 8zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C4.713 12.69 4 12.345 4 11.692V4.308c0-.653.713-.998 1.233-.696l6.363 3.692z" } }] })(props);
|
|
31210
|
+
}
|
|
31211
|
+
function BsReply(props) {
|
|
31212
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M6.598 5.013a.144.144 0 0 1 .202.134V6.3a.5.5 0 0 0 .5.5c.667 0 2.013.005 3.3.822.984.624 1.99 1.76 2.595 3.876-1.02-.983-2.185-1.516-3.205-1.799a8.74 8.74 0 0 0-1.921-.306 7.404 7.404 0 0 0-.798.008h-.013l-.005.001h-.001L7.3 9.9l-.05-.498a.5.5 0 0 0-.45.498v1.153c0 .108-.11.176-.202.134L2.614 8.254a.503.503 0 0 0-.042-.028.147.147 0 0 1 0-.252.499.499 0 0 0 .042-.028l3.984-2.933zM7.8 10.386c.068 0 .143.003.223.006.434.02 1.034.086 1.7.271 1.326.368 2.896 1.202 3.94 3.08a.5.5 0 0 0 .933-.305c-.464-3.71-1.886-5.662-3.46-6.66-1.245-.79-2.527-.942-3.336-.971v-.66a1.144 1.144 0 0 0-1.767-.96l-3.994 2.94a1.147 1.147 0 0 0 0 1.946l3.994 2.94a1.144 1.144 0 0 0 1.767-.96v-.667z" } }] })(props);
|
|
31213
|
+
}
|
|
31214
|
+
function BsSquareFill(props) {
|
|
31215
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2z" } }] })(props);
|
|
31216
|
+
}
|
|
31217
|
+
function BsSquareHalf(props) {
|
|
31218
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M8 15V1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H8zm6 1a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12z" } }] })(props);
|
|
31219
|
+
}
|
|
31220
|
+
function BsSquare(props) {
|
|
31221
|
+
return GenIcon({ "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z" } }] })(props);
|
|
31222
|
+
}
|
|
31223
|
+
function GrDocumentConfig(props) {
|
|
31224
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "d": "M4.99787498,8.99999999 L4.99787498,0.999999992 L19.4999998,0.999999992 L22.9999998,4.50000005 L23,23 L16,23 M18,1 L18,6 L23,6 M9,14 L9,11 M9,20 C10.6568542,20 12,18.6568542 12,17 C12,15.3431458 10.6568542,14 9,14 C7.34314575,14 6,15.3431458 6,17 C6,18.6568542 7.34314575,20 9,20 Z M9,23 L9,20 M12,17 L15,17 M3,17 L6,17 M5,13 L7,15 M11,19 L13,21 M13,13 L11,15 M7,19 L5,21" } }] })(props);
|
|
31225
|
+
}
|
|
31226
|
+
function GrEmoji(props) {
|
|
31227
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M12,1.73A10.27,10.27,0,1,0,22.24,12,10.25,10.25,0,0,0,12,1.73ZM21,12a9,9,0,1,1-9-9A9,9,0,0,1,21,12Z" } }, { "tag": "path", "attr": { "d": "M8.8,11.05a1.55,1.55,0,1,0-1.51-1.5A1.56,1.56,0,0,0,8.8,11.05Z" } }, { "tag": "path", "attr": { "d": "M15.44,11.05a1.55,1.55,0,1,0,0-3.09,1.53,1.53,0,0,0-1.51,1.59A1.51,1.51,0,0,0,15.44,11.05Z" } }, { "tag": "path", "attr": { "d": "M12.19,16.35A6.58,6.58,0,0,1,6.9,13.5a5.71,5.71,0,0,0,5.3,4,5.54,5.54,0,0,0,5.31-4A6.27,6.27,0,0,1,12.19,16.35Z" } }] })(props);
|
|
31228
|
+
}
|
|
31229
|
+
function GrNext(props) {
|
|
31230
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "polyline", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "points": "7 2 17 12 7 22" } }] })(props);
|
|
31231
|
+
}
|
|
31232
|
+
function GrPrevious(props) {
|
|
31233
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "polyline", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "points": "7 2 17 12 7 22", "transform": "matrix(-1 0 0 1 24 0)" } }] })(props);
|
|
31234
|
+
}
|
|
31235
|
+
function IoChatboxOutline(props) {
|
|
31236
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M408 64H104a56.16 56.16 0 00-56 56v192a56.16 56.16 0 0056 56h40v80l93.72-78.14a8 8 0 015.13-1.86H408a56.16 56.16 0 0056-56V120a56.16 56.16 0 00-56-56z" } }] })(props);
|
|
31237
|
+
}
|
|
31238
|
+
function IoCubeOutline(props) {
|
|
31239
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M448 341.37V170.61A32 32 0 00432.11 143l-152-88.46a47.94 47.94 0 00-48.24 0L79.89 143A32 32 0 0064 170.61v170.76A32 32 0 0079.89 369l152 88.46a48 48 0 0048.24 0l152-88.46A32 32 0 00448 341.37z" } }, { "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M69 153.99l187 110 187-110m-187 310v-200" } }] })(props);
|
|
31240
|
+
}
|
|
31241
|
+
function IoEllipsisHorizontal(props) {
|
|
31242
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "circle", "attr": { "cx": "256", "cy": "256", "r": "48" } }, { "tag": "circle", "attr": { "cx": "416", "cy": "256", "r": "48" } }, { "tag": "circle", "attr": { "cx": "96", "cy": "256", "r": "48" } }] })(props);
|
|
31243
|
+
}
|
|
31244
|
+
function IoEllipsisVertical(props) {
|
|
31245
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "circle", "attr": { "cx": "256", "cy": "256", "r": "48" } }, { "tag": "circle", "attr": { "cx": "256", "cy": "416", "r": "48" } }, { "tag": "circle", "attr": { "cx": "256", "cy": "96", "r": "48" } }] })(props);
|
|
31246
|
+
}
|
|
31247
|
+
function IoPencil(props) {
|
|
31248
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "44", "d": "M358.62 129.28L86.49 402.08 70 442l39.92-16.49 272.8-272.13-24.1-24.1zm54.45-54.44l-11.79 11.78 24.1 24.1 11.79-11.79a16.51 16.51 0 000-23.34l-.75-.75a16.51 16.51 0 00-23.35 0z" } }] })(props);
|
|
31249
|
+
}
|
|
31250
|
+
function IoSwapVertical(props) {
|
|
31251
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M464 208L352 96 240 208m112-94.87V416M48 304l112 112 112-112m-112 94V96" } }] })(props);
|
|
31252
|
+
}
|
|
31253
|
+
function MdOutlineDeleteForever(props) {
|
|
31254
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" } }] })(props);
|
|
31255
|
+
}
|
|
31256
|
+
function MdOutlineLanguage(props) {
|
|
31257
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95a15.65 15.65 0 00-1.38-3.56A8.03 8.03 0 0118.92 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A7.987 7.987 0 015.08 16zm2.95-8H5.08a7.987 7.987 0 014.33-3.56A15.65 15.65 0 008.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 01-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" } }] })(props);
|
|
31258
|
+
}
|
|
31259
|
+
function MdOutlineLaunch(props) {
|
|
31260
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M19 19H5V5h7V3H5a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" } }] })(props);
|
|
31261
|
+
}
|
|
31262
|
+
function MdOutlineMailOutline(props) {
|
|
31263
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" } }] })(props);
|
|
31264
|
+
}
|
|
31265
|
+
function MdOutlineContentCopy(props) {
|
|
31266
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" } }, { "tag": "path", "attr": { "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" } }] })(props);
|
|
31267
|
+
}
|
|
31268
|
+
function MdOutlineDriveFileRenameOutline(props) {
|
|
31269
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M15 16l-4 4h10v-4zM12.06 7.19L3 16.25V20h3.75l9.06-9.06-3.75-3.75zM5.92 18H5v-.92l7.06-7.06.92.92L5.92 18zM18.71 8.04a.996.996 0 000-1.41l-2.34-2.34a1.001 1.001 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" } }] })(props);
|
|
31270
|
+
}
|
|
31271
|
+
function MdOutlinePalette(props) {
|
|
31272
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67A2.5 2.5 0 0112 22zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5a.54.54 0 00-.14-.35c-.41-.46-.63-1.05-.63-1.65a2.5 2.5 0 012.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" } }, { "tag": "circle", "attr": { "cx": "6.5", "cy": "11.5", "r": "1.5" } }, { "tag": "circle", "attr": { "cx": "9.5", "cy": "7.5", "r": "1.5" } }, { "tag": "circle", "attr": { "cx": "14.5", "cy": "7.5", "r": "1.5" } }, { "tag": "circle", "attr": { "cx": "17.5", "cy": "11.5", "r": "1.5" } }] })(props);
|
|
31273
|
+
}
|
|
31274
|
+
function RiMessage2Line(props) {
|
|
31275
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": {}, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M6.455 19L2 22.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H6.455zm-.692-2H20V5H4v13.385L5.763 17zM11 10h2v2h-2v-2zm-4 0h2v2H7v-2zm8 0h2v2h-2v-2z" } }] }] })(props);
|
|
31276
|
+
}
|
|
31277
|
+
function RiStickyNoteLine(props) {
|
|
31278
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": {}, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M21 15l-6 5.996L4.002 21A.998.998 0 0 1 3 20.007V3.993C3 3.445 3.445 3 3.993 3h16.014c.548 0 .993.456.993 1.002V15zM19 5H5v14h8v-5a1 1 0 0 1 .883-.993L14 13l5-.001V5zm-.829 9.999L15 15v3.169l3.171-3.17z" } }] }] })(props);
|
|
31279
|
+
}
|
|
31280
|
+
function RiAttachment2(props) {
|
|
31281
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": {}, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" } }, { "tag": "path", "attr": { "d": "M14.828 7.757l-5.656 5.657a1 1 0 1 0 1.414 1.414l5.657-5.656A3 3 0 1 0 12 4.929l-5.657 5.657a5 5 0 1 0 7.071 7.07L19.071 12l1.414 1.414-5.657 5.657a7 7 0 1 1-9.9-9.9l5.658-5.656a5 5 0 0 1 7.07 7.07L12 16.244A3 3 0 1 1 7.757 12l5.657-5.657 1.414 1.414z" } }] }] })(props);
|
|
31282
|
+
}
|
|
31283
|
+
function VscDebugStart(props) {
|
|
31284
|
+
return GenIcon({ "attr": { "viewBox": "0 0 16 16", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "clipRule": "evenodd", "d": "M4.25 3l1.166-.624 8 5.333v1.248l-8 5.334-1.166-.624V3zm1.5 1.401v7.864l5.898-3.932L5.75 4.401z" } }] })(props);
|
|
31285
|
+
}
|
|
31286
|
+
function VscDebugStop(props) {
|
|
31287
|
+
return GenIcon({ "attr": { "viewBox": "0 0 16 16", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "d": "M2 2v12h12V2H2zm10.75 10.75h-9.5v-9.5h9.5v9.5z" } }] })(props);
|
|
31288
|
+
}
|
|
31289
|
+
function VscSplitHorizontal(props) {
|
|
31290
|
+
return GenIcon({ "attr": { "viewBox": "0 0 16 16", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "d": "M14 1H3L2 2v11l1 1h11l1-1V2l-1-1zM8 13H3V2h5v11zm6 0H9V2h5v11z" } }] })(props);
|
|
31291
|
+
}
|
|
31292
|
+
function VscSplitVertical(props) {
|
|
31293
|
+
return GenIcon({ "attr": { "viewBox": "0 0 16 16", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "d": "M14 1H3L2 2v11l1 1h11l1-1V2l-1-1zm0 12H3V8h11v5zm0-6H3V2h11v5z" } }] })(props);
|
|
31294
|
+
}
|
|
31295
|
+
function RxExit(props) {
|
|
31296
|
+
return GenIcon({ "attr": { "viewBox": "0 0 15 15", "fill": "none" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "clipRule": "evenodd", "d": "M3 1C2.44771 1 2 1.44772 2 2V13C2 13.5523 2.44772 14 3 14H10.5C10.7761 14 11 13.7761 11 13.5C11 13.2239 10.7761 13 10.5 13H3V2L10.5 2C10.7761 2 11 1.77614 11 1.5C11 1.22386 10.7761 1 10.5 1H3ZM12.6036 4.89645C12.4083 4.70118 12.0917 4.70118 11.8964 4.89645C11.7012 5.09171 11.7012 5.40829 11.8964 5.60355L13.2929 7H6.5C6.22386 7 6 7.22386 6 7.5C6 7.77614 6.22386 8 6.5 8H13.2929L11.8964 9.39645C11.7012 9.59171 11.7012 9.90829 11.8964 10.1036C12.0917 10.2988 12.4083 10.2988 12.6036 10.1036L14.8536 7.85355C15.0488 7.65829 15.0488 7.34171 14.8536 7.14645L12.6036 4.89645Z", "fill": "currentColor" } }] })(props);
|
|
31297
|
+
}
|
|
31298
|
+
function RxLightningBolt(props) {
|
|
31299
|
+
return GenIcon({ "attr": { "viewBox": "0 0 15 15", "fill": "none" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "clipRule": "evenodd", "d": "M8.69667 0.0403541C8.90859 0.131038 9.03106 0.354857 8.99316 0.582235L8.0902 6.00001H12.5C12.6893 6.00001 12.8625 6.10701 12.9472 6.27641C13.0319 6.4458 13.0136 6.6485 12.8999 6.80001L6.89997 14.8C6.76167 14.9844 6.51521 15.0503 6.30328 14.9597C6.09135 14.869 5.96888 14.6452 6.00678 14.4178L6.90974 9H2.49999C2.31061 9 2.13748 8.893 2.05278 8.72361C1.96809 8.55422 1.98636 8.35151 2.09999 8.2L8.09997 0.200038C8.23828 0.0156255 8.48474 -0.0503301 8.69667 0.0403541ZM3.49999 8.00001H7.49997C7.64695 8.00001 7.78648 8.06467 7.88148 8.17682C7.97648 8.28896 8.01733 8.43723 7.99317 8.5822L7.33027 12.5596L11.5 7.00001H7.49997C7.353 7.00001 7.21347 6.93534 7.11846 6.8232C7.02346 6.71105 6.98261 6.56279 7.00678 6.41781L7.66968 2.44042L3.49999 8.00001Z", "fill": "currentColor" } }] })(props);
|
|
31300
|
+
}
|
|
31301
|
+
function RxOpenInNewWindow(props) {
|
|
31302
|
+
return GenIcon({ "attr": { "viewBox": "0 0 15 15", "fill": "none" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "clipRule": "evenodd", "d": "M12 13C12.5523 13 13 12.5523 13 12V3C13 2.44771 12.5523 2 12 2H3C2.44771 2 2 2.44771 2 3V6.5C2 6.77614 2.22386 7 2.5 7C2.77614 7 3 6.77614 3 6.5V3H12V12H8.5C8.22386 12 8 12.2239 8 12.5C8 12.7761 8.22386 13 8.5 13H12ZM9 6.5C9 6.5001 9 6.50021 9 6.50031V6.50035V9.5C9 9.77614 8.77614 10 8.5 10C8.22386 10 8 9.77614 8 9.5V7.70711L2.85355 12.8536C2.65829 13.0488 2.34171 13.0488 2.14645 12.8536C1.95118 12.6583 1.95118 12.3417 2.14645 12.1464L7.29289 7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H8.5C8.56779 6 8.63244 6.01349 8.69139 6.03794C8.74949 6.06198 8.80398 6.09744 8.85143 6.14433C8.94251 6.23434 8.9992 6.35909 8.99999 6.49708L8.99999 6.49738", "fill": "currentColor" } }] })(props);
|
|
31303
|
+
}
|
|
31304
|
+
function TfiReload(props) {
|
|
31305
|
+
return GenIcon({ "attr": { "version": "1.1", "viewBox": "0 0 17 17" }, "child": [{ "tag": "g", "attr": {}, "child": [] }, { "tag": "path", "attr": { "d": "M6 8h-6v-6h1v4.109c1.013-3.193 4.036-5.484 7.5-5.484 3.506 0 6.621 2.36 7.574 5.739l-0.963 0.271c-0.832-2.95-3.551-5.011-6.611-5.011-3.226 0.001-6.016 2.276-6.708 5.376h4.208v1zM11 9v1h4.208c-0.693 3.101-3.479 5.375-6.708 5.375-3.062 0-5.78-2.061-6.611-5.011l-0.963 0.271c0.952 3.379 4.067 5.739 7.574 5.739 3.459 0 6.475-2.28 7.5-5.482v4.108h1v-6h-6z" } }] })(props);
|
|
31306
|
+
}
|
|
31307
|
+
function CiCalendarDate(props) {
|
|
31308
|
+
return GenIcon({ "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "g", "attr": { "id": "Calendar_Date" }, "child": [{ "tag": "path", "attr": { "d": "M18.435,4.955h-1.94v-1.41c0-0.26-0.23-0.51-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v1.41h-7v-1.41\n c0-0.26-0.23-0.51-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v1.41h-1.93c-1.38,0-2.5,1.12-2.5,2.5v11c0,1.38,1.12,2.5,2.5,2.5h12.87\n c1.38,0,2.5-1.12,2.5-2.5v-11C20.935,6.075,19.815,4.955,18.435,4.955z M19.935,18.455c0,0.83-0.67,1.5-1.5,1.5H5.565\n c-0.83,0-1.5-0.67-1.5-1.5v-8.42h15.87V18.455z M19.935,9.035H4.065v-1.58c0-0.83,0.67-1.5,1.5-1.5h1.93v0.59\n c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-0.59h7v0.59c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-0.59\n h1.94c0.83,0,1.5,0.67,1.5,1.5V9.035z" } }, { "tag": "path", "attr": { "d": "M11.492,17.173v-3.46c0-0.059-0.064-0.095-0.114-0.064l-0.638,0.392\n c-0.1,0.061-0.228-0.01-0.228-0.128v-0.651c0-0.105,0.055-0.203,0.146-0.257l0.764-0.457c0.047-0.028,0.1-0.043,0.154-0.043h0.626\n c0.166,0,0.3,0.134,0.3,0.3v4.367c0,0.166-0.134,0.3-0.3,0.3h-0.409C11.626,17.473,11.492,17.339,11.492,17.173z" } }] }] })(props);
|
|
31309
|
+
}
|
|
30472
31310
|
const SvgApi = (props) => /* @__PURE__ */ React.createElement("svg", { width: 24, height: 25, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M12 8.5C16.9706 8.5 21 7.15685 21 5.5C21 3.84315 16.9706 2.5 12 2.5C7.02944 2.5 3 3.84315 3 5.5C3 7.15685 7.02944 8.5 12 8.5Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ React.createElement("path", { d: "M21 12.5C21 14.16 17 15.5 12 15.5C7 15.5 3 14.16 3 12.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ React.createElement("path", { d: "M3 5.5V19.5C3 21.16 7 22.5 12 22.5C17 22.5 21 21.16 21 19.5V5.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
30473
31311
|
const ApiIcon = (props) => /* @__PURE__ */ jsx(SvgApi, { ...props });
|
|
30474
31312
|
const SvgAttach = (props) => /* @__PURE__ */ React.createElement("svg", { fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", width: "16px", height: "16px", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "surface1" }, /* @__PURE__ */ React.createElement("path", { stroke: "none", fillRule: "nonzero", fillOpacity: 1, d: "M 9.886719 5.171875 L 6.113281 8.941406 C 5.855469 9.203125 5.855469 9.625 6.113281 9.886719 C 6.375 10.144531 6.796875 10.144531 7.058594 9.886719 L 10.828125 6.113281 C 11.609375 5.332031 11.609375 4.066406 10.828125 3.285156 C 10.046875 2.503906 8.78125 2.503906 8 3.285156 L 4.230469 7.058594 C 2.925781 8.359375 2.925781 10.46875 4.230469 11.769531 C 5.53125 13.074219 7.640625 13.074219 8.941406 11.769531 L 12.714844 8 L 13.65625 8.941406 L 9.886719 12.714844 C 8.0625 14.535156 5.109375 14.535156 3.285156 12.714844 C 1.464844 10.890625 1.464844 7.9375 3.285156 6.113281 L 7.058594 2.34375 C 8.359375 1.042969 10.46875 1.042969 11.769531 2.34375 C 13.074219 3.644531 13.074219 5.753906 11.769531 7.058594 L 8 10.828125 C 7.21875 11.609375 5.953125 11.609375 5.171875 10.828125 C 4.390625 10.046875 4.390625 8.78125 5.171875 8 L 8.941406 4.230469 Z M 9.886719 5.171875 " })));
|
|
@@ -30518,6 +31356,9 @@ const HomeIcon = (props) => /* @__PURE__ */ jsx(FiHome, { ...props });
|
|
|
30518
31356
|
const HyperLinkIcon = (props) => /* @__PURE__ */ jsx(MdOutlineLaunch, { ...props });
|
|
30519
31357
|
const SvgImg = (props) => /* @__PURE__ */ React.createElement("svg", { width: 22, height: 28, viewBox: "0 0 22 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#clip0_1960_14704)" }, /* @__PURE__ */ React.createElement("path", { d: "M22.2271 7.38281L16.304 5.74219L14.6117 0H1.91936C0.984697 0 0.227051 0.734508 0.227051 1.64062V26.3594C0.227051 27.2655 0.984697 28 1.91936 28H20.5347C21.4694 28 22.2271 27.2655 22.2271 26.3594V7.38281Z", fill: "#F2F2F2" }), /* @__PURE__ */ React.createElement("path", { d: "M22.2271 7.38281V26.3594C22.2271 27.2655 21.4695 28 20.5348 28H11.3625V0H14.6117L16.304 5.74219L22.2271 7.38281Z", fill: "#F2F2F2" }), /* @__PURE__ */ React.createElement("path", { d: "M22.227 7.38281H16.3039C15.3731 7.38281 14.6116 6.64453 14.6116 5.74219V0C14.8316 0 15.0516 0.0820312 15.2038 0.246148L21.9731 6.80865C22.1423 6.95625 22.227 7.16953 22.227 7.38281Z", fill: "#E1E1E1" }), /* @__PURE__ */ React.createElement("path", { d: "M9 17L14.1962 21.5H3.80385L9 17Z", fill: "#8BDC6F" }), /* @__PURE__ */ React.createElement("path", { d: "M13 14L18.1963 21.5H7.80396L13 14Z", fill: "#8BDC6F" }), /* @__PURE__ */ React.createElement("circle", { cx: 7, cy: 11, r: 2, fill: "#EFC942" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "clip0_1960_14704" }, /* @__PURE__ */ React.createElement("rect", { width: 22, height: 28, fill: "white" }))));
|
|
30520
31358
|
const ImageFileIcon = (props) => /* @__PURE__ */ jsx(SvgImg, { ...props });
|
|
31359
|
+
function IoMdLink(props) {
|
|
31360
|
+
return GenIcon({ "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M74.6 256c0-38.3 31.1-69.4 69.4-69.4h88V144h-88c-61.8 0-112 50.2-112 112s50.2 112 112 112h88v-42.6h-88c-38.3 0-69.4-31.1-69.4-69.4zm85.4 22h192v-44H160v44zm208-134h-88v42.6h88c38.3 0 69.4 31.1 69.4 69.4s-31.1 69.4-69.4 69.4h-88V368h88c61.8 0 112-50.2 112-112s-50.2-112-112-112z" } }] })(props);
|
|
31361
|
+
}
|
|
30521
31362
|
const LinkIcon = (props) => /* @__PURE__ */ jsx(IoMdLink, { ...props });
|
|
30522
31363
|
const ListIcon = (props) => /* @__PURE__ */ jsx(FiList, { ...props });
|
|
30523
31364
|
const LooseListIcon = (props) => /* @__PURE__ */ jsx(HiOutlineViewList, { ...props });
|
|
@@ -30808,7 +31649,7 @@ function IconProvider({ children }) {
|
|
|
30808
31649
|
/* @__PURE__ */ jsx("svg", { style: { display: "none" }, ref: spriteRootRef })
|
|
30809
31650
|
] });
|
|
30810
31651
|
}
|
|
30811
|
-
const version = "0.9.
|
|
31652
|
+
const version = "0.9.4";
|
|
30812
31653
|
const ApiInterceptorContext = createContext(null);
|
|
30813
31654
|
function useApiInterceptorContext() {
|
|
30814
31655
|
return useContext(ApiInterceptorContext);
|
|
@@ -33017,22 +33858,22 @@ function renderLoaders({
|
|
|
33017
33858
|
cleanup,
|
|
33018
33859
|
memoedVarsRef
|
|
33019
33860
|
}) {
|
|
33020
|
-
return loaders.map((
|
|
33021
|
-
if (
|
|
33022
|
-
if (uidInfo[
|
|
33861
|
+
return loaders.map((loader2) => {
|
|
33862
|
+
if (loader2 == null ? void 0 : loader2.uid) {
|
|
33863
|
+
if (uidInfo[loader2.uid]) {
|
|
33023
33864
|
throw new Error(
|
|
33024
|
-
`Another ${uidInfo[
|
|
33865
|
+
`Another ${uidInfo[loader2.uid]} definition in this container already uses the uid '${loader2.uid}'`
|
|
33025
33866
|
);
|
|
33026
33867
|
}
|
|
33027
|
-
uidInfo[
|
|
33028
|
-
uidInfoRef.current[
|
|
33868
|
+
uidInfo[loader2.uid] = "loader";
|
|
33869
|
+
uidInfoRef.current[loader2.uid] = {
|
|
33029
33870
|
type: "loader",
|
|
33030
33871
|
value: "loaderValue",
|
|
33031
|
-
uid:
|
|
33872
|
+
uid: loader2.uid
|
|
33032
33873
|
};
|
|
33033
33874
|
}
|
|
33034
33875
|
const renderedLoader = renderLoader({
|
|
33035
|
-
loader,
|
|
33876
|
+
loader: loader2,
|
|
33036
33877
|
componentState,
|
|
33037
33878
|
dispatch,
|
|
33038
33879
|
appContext,
|
|
@@ -33045,10 +33886,10 @@ function renderLoaders({
|
|
|
33045
33886
|
if (renderedLoader === void 0) {
|
|
33046
33887
|
return void 0;
|
|
33047
33888
|
}
|
|
33048
|
-
return /* @__PURE__ */ jsx(Fragment$1, { children: renderedLoader },
|
|
33889
|
+
return /* @__PURE__ */ jsx(Fragment$1, { children: renderedLoader }, loader2.uid);
|
|
33049
33890
|
});
|
|
33050
33891
|
function renderLoader({
|
|
33051
|
-
loader,
|
|
33892
|
+
loader: loader2,
|
|
33052
33893
|
componentState: componentState2,
|
|
33053
33894
|
dispatch: dispatch2,
|
|
33054
33895
|
appContext: appContext2,
|
|
@@ -33058,17 +33899,17 @@ function renderLoaders({
|
|
|
33058
33899
|
cleanup: cleanup2,
|
|
33059
33900
|
memoedVarsRef: memoedVarsRef2
|
|
33060
33901
|
}) {
|
|
33061
|
-
if (!
|
|
33902
|
+
if (!loader2) {
|
|
33062
33903
|
return null;
|
|
33063
33904
|
}
|
|
33064
|
-
if (!shouldKeep(
|
|
33905
|
+
if (!shouldKeep(loader2.when, componentState2, appContext2)) {
|
|
33065
33906
|
return null;
|
|
33066
33907
|
}
|
|
33067
33908
|
return /* @__PURE__ */ jsx(
|
|
33068
33909
|
LoaderComponent,
|
|
33069
33910
|
{
|
|
33070
33911
|
onUnmount: cleanup2,
|
|
33071
|
-
node:
|
|
33912
|
+
node: loader2,
|
|
33072
33913
|
state: componentState2,
|
|
33073
33914
|
dispatch: dispatch2,
|
|
33074
33915
|
registerComponentApi: registerComponentApi2,
|
|
@@ -34792,7 +35633,7 @@ function ApiInterceptorProvider({
|
|
|
34792
35633
|
let interceptorWorker;
|
|
34793
35634
|
(async () => {
|
|
34794
35635
|
if (process.env.VITE_MOCK_ENABLED) {
|
|
34795
|
-
const { createApiInterceptorWorker } = await import("./apiInterceptorWorker-
|
|
35636
|
+
const { createApiInterceptorWorker } = await import("./apiInterceptorWorker-Bez0_28l.mjs");
|
|
34796
35637
|
if (interceptor) {
|
|
34797
35638
|
interceptorWorker = await createApiInterceptorWorker(interceptor, apiWorker);
|
|
34798
35639
|
if (!apiWorker) {
|