xmlui 0.9.25 → 0.9.30
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-CFF3bC6o.mjs → lib/apiInterceptorWorker-D8UVXhKa.mjs} +1 -1
- package/dist/{index-DtxDGaqF.mjs → lib/index-BF7GNHsi.mjs} +307 -185
- package/dist/{index.css → lib/index.css} +266 -162
- package/dist/lib/language-server-web-worker.d.ts +655 -0
- package/dist/{language-server-web-worker.mjs → lib/language-server-web-worker.mjs} +1 -1
- package/dist/lib/language-server.d.ts +657 -0
- package/dist/{language-server.mjs → lib/language-server.mjs} +1 -1
- package/dist/{server-common-9TiLMTJj.mjs → lib/server-common-B0FCNpIT.mjs} +4255 -1594
- package/dist/{xmlui-parser.d.ts → lib/xmlui-parser.d.ts} +633 -0
- package/dist/{xmlui.d.ts → lib/xmlui.d.ts} +638 -0
- package/dist/{xmlui.mjs → lib/xmlui.mjs} +1 -1
- package/dist/{style.css → metadata/style.css} +252 -156
- package/dist/{xmlui-metadata.mjs → metadata/xmlui-metadata.mjs} +126 -102
- package/dist/{xmlui-metadata.umd.js → metadata/xmlui-metadata.umd.js} +126 -102
- package/dist/scripts/package.json +37 -44
- package/dist/scripts/src/components/Bookmark/BookmarkNative.js +2 -2
- package/dist/scripts/src/components/CodeBlock/CodeBlock.js +7 -3
- package/dist/scripts/src/components/CodeBlock/CodeBlockNative.js +23 -4
- package/dist/scripts/src/components/CodeBlock/highlight-code.js +203 -0
- package/dist/scripts/src/components/FormItem/FormItemNative.js +0 -1
- package/dist/scripts/src/components/Heading/Heading.js +3 -0
- package/dist/scripts/src/components/Heading/HeadingNative.js +1 -1
- package/dist/scripts/src/components/HtmlTags/HtmlTags.js +6 -6
- package/dist/scripts/src/components/Markdown/Markdown.js +5 -1
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +41 -9
- package/dist/scripts/src/components/RadioGroup/RadioGroup.js +2 -1
- package/dist/scripts/src/components/RadioGroup/RadioGroupNative.js +17 -1
- package/dist/scripts/src/components/Switch/Switch.js +5 -3
- package/dist/scripts/src/components/Text/Text.js +4 -9
- package/dist/standalone/xmlui-standalone.es.d.ts +2812 -0
- package/dist/{xmlui-standalone.umd.js → standalone/xmlui-standalone.umd.js} +611 -379
- package/package.json +30 -34
- package/dist/language-server-web-worker.d.ts +0 -22
- package/dist/language-server.d.ts +0 -24
- /package/dist/{core-XLM8cuFP.mjs → lib/core-XLM8cuFP.mjs} +0 -0
- /package/dist/{grammar.tmLanguage-CiEHpsbo.mjs → lib/grammar.tmLanguage-CiEHpsbo.mjs} +0 -0
- /package/dist/{lint-CYAUfk0_.mjs → lib/lint-CYAUfk0_.mjs} +0 -0
- /package/dist/{metadata-utils-CCIMqe69.mjs → lib/metadata-utils-CCIMqe69.mjs} +0 -0
- /package/dist/{transform-DC0Gy6qw.mjs → lib/transform-DC0Gy6qw.mjs} +0 -0
- /package/dist/{wasm-DDgzZJey.mjs → lib/wasm-DDgzZJey.mjs} +0 -0
- /package/dist/{xmlui-h2uM9PUY.mjs → lib/xmlui-h2uM9PUY.mjs} +0 -0
- /package/dist/{xmlui-parser.mjs → lib/xmlui-parser.mjs} +0 -0
|
@@ -1886,7 +1886,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
1886
1886
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
1887
1887
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
1888
1888
|
*/
|
|
1889
|
-
.
|
|
1889
|
+
._wrapper_fztu9_13 {
|
|
1890
1890
|
--footer-height: 0;
|
|
1891
1891
|
height: 100%;
|
|
1892
1892
|
width: 100%;
|
|
@@ -1921,19 +1921,21 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
1921
1921
|
position: relative;
|
|
1922
1922
|
display: flex;
|
|
1923
1923
|
flex-direction: column;
|
|
1924
|
+
scrollbar-color: var(--xmlui-color-scrollbar-NavPanel) var(--xmlui-backgroundColor-scrollbar-NavPanel);
|
|
1925
|
+
scrollbar-width: thin;
|
|
1924
1926
|
}
|
|
1925
|
-
.
|
|
1927
|
+
._wrapper_fztu9_13:not(._condensed_fztu9_51) {
|
|
1926
1928
|
background-color: var(--xmlui-backgroundColor-NavPanel);
|
|
1927
1929
|
}
|
|
1928
|
-
.
|
|
1930
|
+
._wrapper_fztu9_13._horizontal_fztu9_54 {
|
|
1929
1931
|
box-shadow: none;
|
|
1930
1932
|
height: var(--xmlui-height-AppHeader);
|
|
1931
1933
|
}
|
|
1932
|
-
.
|
|
1934
|
+
._wrapper_fztu9_13._horizontal_fztu9_54:not(._condensed_fztu9_51) ._wrapperInner_fztu9_58 {
|
|
1933
1935
|
padding-inline: var(--xmlui-paddingHorizontal-NavPanel);
|
|
1934
1936
|
justify-content: var(--xmlui-align-content-AppHeader);
|
|
1935
1937
|
}
|
|
1936
|
-
.
|
|
1938
|
+
._wrapper_fztu9_13._horizontal_fztu9_54 ._wrapperInner_fztu9_58 {
|
|
1937
1939
|
height: 100%;
|
|
1938
1940
|
flex-direction: row;
|
|
1939
1941
|
max-width: var(--xmlui-maxWidth-content-App);
|
|
@@ -1942,13 +1944,13 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
1942
1944
|
justify-content: var(--xmlui-align-content-AppHeader);
|
|
1943
1945
|
}
|
|
1944
1946
|
|
|
1945
|
-
.
|
|
1947
|
+
._wrapperInner_fztu9_58 {
|
|
1946
1948
|
display: flex;
|
|
1947
1949
|
flex-direction: column;
|
|
1948
1950
|
justify-content: var(--xmlui-align-content-AppHeader);
|
|
1949
1951
|
}
|
|
1950
1952
|
|
|
1951
|
-
.
|
|
1953
|
+
._logoWrapper_fztu9_77:not(:empty) {
|
|
1952
1954
|
display: flex;
|
|
1953
1955
|
justify-content: center;
|
|
1954
1956
|
flex-shrink: 0;
|
|
@@ -1958,7 +1960,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
1958
1960
|
padding-inline: var(--xmlui-paddingHorizontal-logo-NavPanel);
|
|
1959
1961
|
margin-bottom: var(--xmlui-marginBottom-logo-NavPanel);
|
|
1960
1962
|
}
|
|
1961
|
-
.
|
|
1963
|
+
._logoWrapper_fztu9_77._inDrawer_fztu9_87 {
|
|
1962
1964
|
min-height: 40px;
|
|
1963
1965
|
}/*
|
|
1964
1966
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -2094,7 +2096,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2094
2096
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
2095
2097
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
2096
2098
|
*/
|
|
2097
|
-
.
|
|
2099
|
+
._heading_p6fbv_13._h1_p6fbv_13 {
|
|
2098
2100
|
padding: var(--xmlui-padding-H1);
|
|
2099
2101
|
padding-left: var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
|
|
2100
2102
|
padding-right: var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
|
|
@@ -2157,7 +2159,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2157
2159
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H1);
|
|
2158
2160
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H1);
|
|
2159
2161
|
}
|
|
2160
|
-
.
|
|
2162
|
+
._heading_p6fbv_13._h2_p6fbv_76 {
|
|
2161
2163
|
padding: var(--xmlui-padding-H2);
|
|
2162
2164
|
padding-left: var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
|
|
2163
2165
|
padding-right: var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
|
|
@@ -2220,7 +2222,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2220
2222
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H2);
|
|
2221
2223
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H2);
|
|
2222
2224
|
}
|
|
2223
|
-
.
|
|
2225
|
+
._heading_p6fbv_13._h3_p6fbv_139 {
|
|
2224
2226
|
padding: var(--xmlui-padding-H3);
|
|
2225
2227
|
padding-left: var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
|
|
2226
2228
|
padding-right: var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
|
|
@@ -2283,7 +2285,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2283
2285
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H3);
|
|
2284
2286
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H3);
|
|
2285
2287
|
}
|
|
2286
|
-
.
|
|
2288
|
+
._heading_p6fbv_13._h4_p6fbv_202 {
|
|
2287
2289
|
padding: var(--xmlui-padding-H4);
|
|
2288
2290
|
padding-left: var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
|
|
2289
2291
|
padding-right: var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
|
|
@@ -2346,7 +2348,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2346
2348
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H4);
|
|
2347
2349
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H4);
|
|
2348
2350
|
}
|
|
2349
|
-
.
|
|
2351
|
+
._heading_p6fbv_13._h5_p6fbv_265 {
|
|
2350
2352
|
padding: var(--xmlui-padding-H5);
|
|
2351
2353
|
padding-left: var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
|
|
2352
2354
|
padding-right: var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
|
|
@@ -2409,7 +2411,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2409
2411
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H5);
|
|
2410
2412
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H5);
|
|
2411
2413
|
}
|
|
2412
|
-
.
|
|
2414
|
+
._heading_p6fbv_13._h6_p6fbv_328 {
|
|
2413
2415
|
padding: var(--xmlui-padding-H6);
|
|
2414
2416
|
padding-left: var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
|
|
2415
2417
|
padding-right: var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
|
|
@@ -2472,8 +2474,18 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2472
2474
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H6);
|
|
2473
2475
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H6);
|
|
2474
2476
|
}
|
|
2477
|
+
._heading_p6fbv_13 a {
|
|
2478
|
+
opacity: 0;
|
|
2479
|
+
margin-left: var(--xmlui-gap-anchor-Heading);
|
|
2480
|
+
color: var(--xmlui-color-anchor-Heading);
|
|
2481
|
+
transition: opacity 0.2s ease-in-out;
|
|
2482
|
+
}
|
|
2483
|
+
._heading_p6fbv_13:hover a {
|
|
2484
|
+
opacity: 1;
|
|
2485
|
+
text-decoration: var(--xmlui-textDecorationLine-anchor-Heading);
|
|
2486
|
+
}
|
|
2475
2487
|
|
|
2476
|
-
.
|
|
2488
|
+
._anchorRef_p6fbv_402 {
|
|
2477
2489
|
--my-scroll-margin-top: var(--header-height);
|
|
2478
2490
|
width: 0;
|
|
2479
2491
|
height: 0;
|
|
@@ -2484,17 +2496,17 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2484
2496
|
This is a Chromium based solution that is supported by most modern browsers.
|
|
2485
2497
|
See this source for details: https://css-tricks.com/line-clampin/
|
|
2486
2498
|
*/
|
|
2487
|
-
.
|
|
2499
|
+
._truncateOverflow_p6fbv_413 {
|
|
2488
2500
|
overflow: hidden;
|
|
2489
2501
|
text-overflow: ellipsis;
|
|
2490
2502
|
white-space: nowrap;
|
|
2491
2503
|
}
|
|
2492
2504
|
|
|
2493
|
-
.
|
|
2505
|
+
._preserveLinebreaks_p6fbv_419 {
|
|
2494
2506
|
white-space: pre-wrap;
|
|
2495
2507
|
}
|
|
2496
2508
|
|
|
2497
|
-
.
|
|
2509
|
+
._noEllipsis_p6fbv_423 {
|
|
2498
2510
|
text-overflow: clip;
|
|
2499
2511
|
}/*
|
|
2500
2512
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -2508,7 +2520,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2508
2520
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
2509
2521
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
2510
2522
|
*/
|
|
2511
|
-
.
|
|
2523
|
+
._text_1qfdf_13 {
|
|
2512
2524
|
overflow: hidden;
|
|
2513
2525
|
text-overflow: ellipsis;
|
|
2514
2526
|
margin: 0;
|
|
@@ -2570,7 +2582,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2570
2582
|
margin-right: var(--xmlui-marginRight-Text-default);
|
|
2571
2583
|
vertical-align: var(--xmlui-verticalAlign-Text-default);
|
|
2572
2584
|
}
|
|
2573
|
-
.
|
|
2585
|
+
._text_1qfdf_13._markdown_1qfdf_75 {
|
|
2574
2586
|
padding: var(--xmlui-padding-Text-markdown);
|
|
2575
2587
|
padding-left: var(--xmlui-paddingLeft-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
2576
2588
|
padding-right: var(--xmlui-paddingRight-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
@@ -2627,7 +2639,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2627
2639
|
margin-right: var(--xmlui-marginRight-Text-markdown);
|
|
2628
2640
|
vertical-align: var(--xmlui-verticalAlign-Text-markdown);
|
|
2629
2641
|
}
|
|
2630
|
-
.
|
|
2642
|
+
._text_1qfdf_13._abbr_1qfdf_132 {
|
|
2631
2643
|
padding: var(--xmlui-padding-Text-abbr);
|
|
2632
2644
|
padding-left: var(--xmlui-paddingLeft-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
|
|
2633
2645
|
padding-right: var(--xmlui-paddingRight-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
|
|
@@ -2684,7 +2696,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2684
2696
|
margin-right: var(--xmlui-marginRight-Text-abbr);
|
|
2685
2697
|
vertical-align: var(--xmlui-verticalAlign-Text-abbr);
|
|
2686
2698
|
}
|
|
2687
|
-
.
|
|
2699
|
+
._text_1qfdf_13._cite_1qfdf_189 {
|
|
2688
2700
|
padding: var(--xmlui-padding-Text-cite);
|
|
2689
2701
|
padding-left: var(--xmlui-paddingLeft-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
|
|
2690
2702
|
padding-right: var(--xmlui-paddingRight-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
|
|
@@ -2741,12 +2753,69 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2741
2753
|
margin-right: var(--xmlui-marginRight-Text-cite);
|
|
2742
2754
|
vertical-align: var(--xmlui-verticalAlign-Text-cite);
|
|
2743
2755
|
}
|
|
2744
|
-
.
|
|
2756
|
+
._text_1qfdf_13._em_1qfdf_246 {
|
|
2757
|
+
padding: var(--xmlui-padding-Text-em);
|
|
2758
|
+
padding-left: var(--xmlui-paddingLeft-Text-em, var(--xmlui-paddingHorizontal-Text-em, var(--xmlui-padding-Text-em)));
|
|
2759
|
+
padding-right: var(--xmlui-paddingRight-Text-em, var(--xmlui-paddingHorizontal-Text-em, var(--xmlui-padding-Text-em)));
|
|
2760
|
+
padding-top: var(--xmlui-paddingTop-Text-em, var(--xmlui-paddingVertical-Text-em, var(--xmlui-padding-Text-em)));
|
|
2761
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-em, var(--xmlui-paddingVertical-Text-em, var(--xmlui-padding-Text-em)));
|
|
2762
|
+
border-left: var(--xmlui-borderLeft-Text-em, var(--xmlui-borderHorizontal-Text-em, var(--xmlui-border-Text-em)));
|
|
2763
|
+
border-right: var(--xmlui-borderRight-Text-em, var(--xmlui-borderHorizontal-Text-em, var(--xmlui-border-Text-em)));
|
|
2764
|
+
border-top: var(--xmlui-borderTop-Text-em, var(--xmlui-borderVertical-Text-em, var(--xmlui-border-Text-em)));
|
|
2765
|
+
border-bottom: var(--xmlui-borderBottom-Text-em, var(--xmlui-borderVertical-Text-em, var(--xmlui-border-Text-em)));
|
|
2766
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-em, var(--xmlui-borderHorizontalStyle-Text-em, var(--xmlui-borderStyle-Text-em)));
|
|
2767
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-em, var(--xmlui-borderHorizontalStyle-Text-em, var(--xmlui-borderStyle-Text-em)));
|
|
2768
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-em, var(--xmlui-borderVerticalStyle-Text-em, var(--xmlui-borderStyle-Text-em)));
|
|
2769
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-em, var(--xmlui-borderVerticalStyle-Text-em, var(--xmlui-borderStyle-Text-em)));
|
|
2770
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-em, var(--xmlui-borderHorizontalWidth-Text-em, var(--xmlui-borderWidth-Text-em)));
|
|
2771
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-em, var(--xmlui-borderHorizontalWidth-Text-em, var(--xmlui-borderWidth-Text-em)));
|
|
2772
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-em, var(--xmlui-borderVerticalWidth-Text-em, var(--xmlui-borderWidth-Text-em)));
|
|
2773
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-em, var(--xmlui-borderVerticalWidth-Text-em, var(--xmlui-borderWidth-Text-em)));
|
|
2774
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-em, var(--xmlui-borderHorizontalColor-Text-em, var(--xmlui-borderColor-Text-em)));
|
|
2775
|
+
border-right-color: var(--xmlui-borderRightColor-Text-em, var(--xmlui-borderHorizontalColor-Text-em, var(--xmlui-borderColor-Text-em)));
|
|
2776
|
+
border-top-color: var(--xmlui-borderTopColor-Text-em, var(--xmlui-borderVerticalColor-Text-em, var(--xmlui-borderColor-Text-em)));
|
|
2777
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-em, var(--xmlui-borderVerticalColor-Text-em, var(--xmlui-borderColor-Text-em)));
|
|
2778
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-em, var(--xmlui-borderRadius-Text-em));
|
|
2779
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-em, var(--xmlui-borderRadius-Text-em));
|
|
2780
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-em, var(--xmlui-borderRadius-Text-em));
|
|
2781
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-em, var(--xmlui-borderRadius-Text-em));
|
|
2782
|
+
color: var(--xmlui-textColor-Text-em);
|
|
2783
|
+
font-family: var(--xmlui-fontFamily-Text-em);
|
|
2784
|
+
font-size: var(--xmlui-fontSize-Text-em);
|
|
2785
|
+
font-style: var(--xmlui-fontStyle-Text-em);
|
|
2786
|
+
font-weight: var(--xmlui-fontWeight-Text-em);
|
|
2787
|
+
font-stretch: var(--xmlui-fontStretch-Text-em);
|
|
2788
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Text-em);
|
|
2789
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Text-em);
|
|
2790
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Text-em);
|
|
2791
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-em);
|
|
2792
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-em);
|
|
2793
|
+
line-height: var(--xmlui-lineHeight-Text-em);
|
|
2794
|
+
background-color: var(--xmlui-backgroundColor-Text-em);
|
|
2795
|
+
text-transform: var(--xmlui-textTransform-Text-em);
|
|
2796
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-em);
|
|
2797
|
+
word-spacing: var(--xmlui-wordSpacing-Text-em);
|
|
2798
|
+
text-shadow: var(--xmlui-textShadow-Text-em);
|
|
2799
|
+
text-indent: var(--xmlui-textIndent-Text-em);
|
|
2800
|
+
text-align: var(--xmlui-textAlign-Text-em);
|
|
2801
|
+
text-align-last: var(--xmlui-textAlignLast-Text-em);
|
|
2802
|
+
word-break: var(--xmlui-wordBreak-Text-em);
|
|
2803
|
+
word-wrap: var(--xmlui-wordWrap-Text-em);
|
|
2804
|
+
direction: var(--xmlui-direction-Text-em);
|
|
2805
|
+
writing-mode: var(--xmlui-writingMode-Text-em);
|
|
2806
|
+
line-break: var(--xmlui-lineBreak-Text-em);
|
|
2807
|
+
margin-top: var(--xmlui-marginTop-Text-em);
|
|
2808
|
+
margin-bottom: var(--xmlui-marginBottom-Text-em);
|
|
2809
|
+
margin-left: var(--xmlui-marginLeft-Text-em);
|
|
2810
|
+
margin-right: var(--xmlui-marginRight-Text-em);
|
|
2811
|
+
vertical-align: var(--xmlui-verticalAlign-Text-em);
|
|
2812
|
+
}
|
|
2813
|
+
._text_1qfdf_13 ._text_1qfdf_13._codefence_1qfdf_303 {
|
|
2745
2814
|
display: block;
|
|
2746
2815
|
margin-top: var(--xmlui-marginTop-Text-codefence);
|
|
2747
2816
|
margin-bottom: var(--xmlui-marginBottom-Text-codefence);
|
|
2748
2817
|
}
|
|
2749
|
-
:not(.
|
|
2818
|
+
:not(._text_1qfdf_13._codefence_1qfdf_303) > ._text_1qfdf_13._code_1qfdf_303, :not(._text_1qfdf_13._codefence_1qfdf_303) > ._textcode_1qfdf_308 {
|
|
2750
2819
|
padding: var(--xmlui-padding-Text-code);
|
|
2751
2820
|
padding-left: var(--xmlui-paddingLeft-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
|
|
2752
2821
|
padding-right: var(--xmlui-paddingRight-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
|
|
@@ -2803,7 +2872,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2803
2872
|
margin-right: var(--xmlui-marginRight-Text-code);
|
|
2804
2873
|
vertical-align: var(--xmlui-verticalAlign-Text-code);
|
|
2805
2874
|
}
|
|
2806
|
-
.
|
|
2875
|
+
._text_1qfdf_13._codefence_1qfdf_303:has(> ._text_1qfdf_13._code_1qfdf_303), ._text_1qfdf_13._codefence_1qfdf_303:has(> code) {
|
|
2807
2876
|
padding: var(--xmlui-padding-Text-codefence);
|
|
2808
2877
|
padding-left: var(--xmlui-paddingLeft-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
|
|
2809
2878
|
padding-right: var(--xmlui-paddingRight-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
|
|
@@ -2864,28 +2933,28 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2864
2933
|
font-size: var(--xmlui-fontSize-small);
|
|
2865
2934
|
line-height: 1.4;
|
|
2866
2935
|
}
|
|
2867
|
-
.
|
|
2936
|
+
._text_1qfdf_13._codefence_1qfdf_303:has(> code > span) {
|
|
2868
2937
|
padding-inline: 0;
|
|
2869
2938
|
}
|
|
2870
|
-
.
|
|
2939
|
+
._text_1qfdf_13._codefence_1qfdf_303 > code > span:not([class*=numbered]) {
|
|
2871
2940
|
padding-inline: var(--xmlui-space-3);
|
|
2872
2941
|
}
|
|
2873
|
-
.
|
|
2942
|
+
._text_1qfdf_13._codefence_1qfdf_303 > code {
|
|
2874
2943
|
white-space: pre-wrap;
|
|
2875
2944
|
display: inline-block;
|
|
2876
2945
|
width: 100%;
|
|
2877
2946
|
}
|
|
2878
|
-
.
|
|
2947
|
+
._text_1qfdf_13._codefence_1qfdf_303 > code::before {
|
|
2879
2948
|
counter-reset: listing;
|
|
2880
2949
|
}
|
|
2881
|
-
.
|
|
2950
|
+
._text_1qfdf_13._codefence_1qfdf_303 > code > span {
|
|
2882
2951
|
display: inline-block;
|
|
2883
2952
|
width: 100%;
|
|
2884
2953
|
}
|
|
2885
|
-
.
|
|
2954
|
+
._text_1qfdf_13._codefence_1qfdf_303 > code > span[class*=numbered] {
|
|
2886
2955
|
counter-increment: listing;
|
|
2887
2956
|
}
|
|
2888
|
-
.
|
|
2957
|
+
._text_1qfdf_13._codefence_1qfdf_303 > code > span[class*=numbered]::before {
|
|
2889
2958
|
content: counter(listing);
|
|
2890
2959
|
display: inline-block;
|
|
2891
2960
|
width: var(--xmlui-space-12);
|
|
@@ -2895,7 +2964,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2895
2964
|
text-align: right;
|
|
2896
2965
|
color: var(--xmlui-textColor-secondary);
|
|
2897
2966
|
}
|
|
2898
|
-
.
|
|
2967
|
+
._text_1qfdf_13._deleted_1qfdf_457 {
|
|
2899
2968
|
padding: var(--xmlui-padding-Text-deleted);
|
|
2900
2969
|
padding-left: var(--xmlui-paddingLeft-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
|
|
2901
2970
|
padding-right: var(--xmlui-paddingRight-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
|
|
@@ -2952,7 +3021,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2952
3021
|
margin-right: var(--xmlui-marginRight-Text-deleted);
|
|
2953
3022
|
vertical-align: var(--xmlui-verticalAlign-Text-deleted);
|
|
2954
3023
|
}
|
|
2955
|
-
.
|
|
3024
|
+
._text_1qfdf_13._deleted_1qfdf_457::before, ._text_1qfdf_13._deleted_1qfdf_457::after {
|
|
2956
3025
|
clip-path: inset(100%);
|
|
2957
3026
|
clip: rect(1px, 1px, 1px, 1px);
|
|
2958
3027
|
height: 1px;
|
|
@@ -2961,13 +3030,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2961
3030
|
white-space: nowrap;
|
|
2962
3031
|
width: 1px;
|
|
2963
3032
|
}
|
|
2964
|
-
.
|
|
3033
|
+
._text_1qfdf_13._deleted_1qfdf_457::before {
|
|
2965
3034
|
content: " [deletion start] ";
|
|
2966
3035
|
}
|
|
2967
|
-
.
|
|
3036
|
+
._text_1qfdf_13._deleted_1qfdf_457::after {
|
|
2968
3037
|
content: " [deletion end] ";
|
|
2969
3038
|
}
|
|
2970
|
-
.
|
|
3039
|
+
._text_1qfdf_13._inserted_1qfdf_529 {
|
|
2971
3040
|
padding: var(--xmlui-padding-Text-inserted);
|
|
2972
3041
|
padding-left: var(--xmlui-paddingLeft-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
|
|
2973
3042
|
padding-right: var(--xmlui-paddingRight-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
|
|
@@ -3024,7 +3093,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3024
3093
|
margin-right: var(--xmlui-marginRight-Text-inserted);
|
|
3025
3094
|
vertical-align: var(--xmlui-verticalAlign-Text-inserted);
|
|
3026
3095
|
}
|
|
3027
|
-
.
|
|
3096
|
+
._text_1qfdf_13._inserted_1qfdf_529::before, ._text_1qfdf_13._inserted_1qfdf_529::after {
|
|
3028
3097
|
clip-path: inset(100%);
|
|
3029
3098
|
clip: rect(1px, 1px, 1px, 1px);
|
|
3030
3099
|
height: 1px;
|
|
@@ -3033,13 +3102,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3033
3102
|
white-space: nowrap;
|
|
3034
3103
|
width: 1px;
|
|
3035
3104
|
}
|
|
3036
|
-
.
|
|
3105
|
+
._text_1qfdf_13._inserted_1qfdf_529::before {
|
|
3037
3106
|
content: " [insertion start] ";
|
|
3038
3107
|
}
|
|
3039
|
-
.
|
|
3108
|
+
._text_1qfdf_13._inserted_1qfdf_529::after {
|
|
3040
3109
|
content: " [insertion end] ";
|
|
3041
3110
|
}
|
|
3042
|
-
.
|
|
3111
|
+
._text_1qfdf_13._keyboard_1qfdf_601 {
|
|
3043
3112
|
padding: var(--xmlui-padding-Text-keyboard);
|
|
3044
3113
|
padding-left: var(--xmlui-paddingLeft-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
|
|
3045
3114
|
padding-right: var(--xmlui-paddingRight-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
|
|
@@ -3096,7 +3165,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3096
3165
|
margin-right: var(--xmlui-marginRight-Text-keyboard);
|
|
3097
3166
|
vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
|
|
3098
3167
|
}
|
|
3099
|
-
.
|
|
3168
|
+
._text_1qfdf_13._marked_1qfdf_658 {
|
|
3100
3169
|
padding: var(--xmlui-padding-Text-marked);
|
|
3101
3170
|
padding-left: var(--xmlui-paddingLeft-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
|
|
3102
3171
|
padding-right: var(--xmlui-paddingRight-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
|
|
@@ -3153,7 +3222,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3153
3222
|
margin-right: var(--xmlui-marginRight-Text-marked);
|
|
3154
3223
|
vertical-align: var(--xmlui-verticalAlign-Text-marked);
|
|
3155
3224
|
}
|
|
3156
|
-
.
|
|
3225
|
+
._text_1qfdf_13._marked_1qfdf_658::before, ._text_1qfdf_13._marked_1qfdf_658::after {
|
|
3157
3226
|
clip-path: inset(100%);
|
|
3158
3227
|
clip: rect(1px, 1px, 1px, 1px);
|
|
3159
3228
|
height: 1px;
|
|
@@ -3162,13 +3231,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3162
3231
|
white-space: nowrap;
|
|
3163
3232
|
width: 1px;
|
|
3164
3233
|
}
|
|
3165
|
-
.
|
|
3234
|
+
._text_1qfdf_13._marked_1qfdf_658::before {
|
|
3166
3235
|
content: " [highlight start] ";
|
|
3167
3236
|
}
|
|
3168
|
-
.
|
|
3237
|
+
._text_1qfdf_13._marked_1qfdf_658::after {
|
|
3169
3238
|
content: " [highlight end] ";
|
|
3170
3239
|
}
|
|
3171
|
-
.
|
|
3240
|
+
._text_1qfdf_13._mono_1qfdf_730 {
|
|
3172
3241
|
padding: var(--xmlui-padding-Text-mono);
|
|
3173
3242
|
padding-left: var(--xmlui-paddingLeft-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
|
|
3174
3243
|
padding-right: var(--xmlui-paddingRight-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
|
|
@@ -3225,7 +3294,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3225
3294
|
margin-right: var(--xmlui-marginRight-Text-mono);
|
|
3226
3295
|
vertical-align: var(--xmlui-verticalAlign-Text-mono);
|
|
3227
3296
|
}
|
|
3228
|
-
.
|
|
3297
|
+
._text_1qfdf_13._sample_1qfdf_787 {
|
|
3229
3298
|
padding: var(--xmlui-padding-Text-sample);
|
|
3230
3299
|
padding-left: var(--xmlui-paddingLeft-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
|
|
3231
3300
|
padding-right: var(--xmlui-paddingRight-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
|
|
@@ -3282,7 +3351,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3282
3351
|
margin-right: var(--xmlui-marginRight-Text-sample);
|
|
3283
3352
|
vertical-align: var(--xmlui-verticalAlign-Text-sample);
|
|
3284
3353
|
}
|
|
3285
|
-
.
|
|
3354
|
+
._text_1qfdf_13._sup_1qfdf_844 {
|
|
3286
3355
|
padding: var(--xmlui-padding-Text-sup);
|
|
3287
3356
|
padding-left: var(--xmlui-paddingLeft-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
|
|
3288
3357
|
padding-right: var(--xmlui-paddingRight-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
|
|
@@ -3339,7 +3408,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3339
3408
|
margin-right: var(--xmlui-marginRight-Text-sup);
|
|
3340
3409
|
vertical-align: var(--xmlui-verticalAlign-Text-sup);
|
|
3341
3410
|
}
|
|
3342
|
-
.
|
|
3411
|
+
._text_1qfdf_13._sub_1qfdf_901 {
|
|
3343
3412
|
padding: var(--xmlui-padding-Text-sub);
|
|
3344
3413
|
padding-left: var(--xmlui-paddingLeft-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
|
|
3345
3414
|
padding-right: var(--xmlui-paddingRight-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
|
|
@@ -3396,7 +3465,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3396
3465
|
margin-right: var(--xmlui-marginRight-Text-sub);
|
|
3397
3466
|
vertical-align: var(--xmlui-verticalAlign-Text-sub);
|
|
3398
3467
|
}
|
|
3399
|
-
.
|
|
3468
|
+
._text_1qfdf_13._var_1qfdf_958 {
|
|
3400
3469
|
padding: var(--xmlui-padding-Text-var);
|
|
3401
3470
|
padding-left: var(--xmlui-paddingLeft-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
|
|
3402
3471
|
padding-right: var(--xmlui-paddingRight-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
|
|
@@ -3453,7 +3522,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3453
3522
|
margin-right: var(--xmlui-marginRight-Text-var);
|
|
3454
3523
|
vertical-align: var(--xmlui-verticalAlign-Text-var);
|
|
3455
3524
|
}
|
|
3456
|
-
.
|
|
3525
|
+
._text_1qfdf_13._title_1qfdf_1015 {
|
|
3457
3526
|
padding: var(--xmlui-padding-Text-title);
|
|
3458
3527
|
padding-left: var(--xmlui-paddingLeft-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
|
|
3459
3528
|
padding-right: var(--xmlui-paddingRight-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
|
|
@@ -3510,7 +3579,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3510
3579
|
margin-right: var(--xmlui-marginRight-Text-title);
|
|
3511
3580
|
vertical-align: var(--xmlui-verticalAlign-Text-title);
|
|
3512
3581
|
}
|
|
3513
|
-
.
|
|
3582
|
+
._text_1qfdf_13._subtitle_1qfdf_1072 {
|
|
3514
3583
|
padding: var(--xmlui-padding-Text-subtitle);
|
|
3515
3584
|
padding-left: var(--xmlui-paddingLeft-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
|
|
3516
3585
|
padding-right: var(--xmlui-paddingRight-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
|
|
@@ -3567,7 +3636,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3567
3636
|
margin-right: var(--xmlui-marginRight-Text-subtitle);
|
|
3568
3637
|
vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
|
|
3569
3638
|
}
|
|
3570
|
-
.
|
|
3639
|
+
._text_1qfdf_13._small_1qfdf_1129 {
|
|
3571
3640
|
padding: var(--xmlui-padding-Text-small);
|
|
3572
3641
|
padding-left: var(--xmlui-paddingLeft-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
|
|
3573
3642
|
padding-right: var(--xmlui-paddingRight-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
|
|
@@ -3624,7 +3693,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3624
3693
|
margin-right: var(--xmlui-marginRight-Text-small);
|
|
3625
3694
|
vertical-align: var(--xmlui-verticalAlign-Text-small);
|
|
3626
3695
|
}
|
|
3627
|
-
.
|
|
3696
|
+
._text_1qfdf_13._caption_1qfdf_1186 {
|
|
3628
3697
|
padding: var(--xmlui-padding-Text-caption);
|
|
3629
3698
|
padding-left: var(--xmlui-paddingLeft-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
|
|
3630
3699
|
padding-right: var(--xmlui-paddingRight-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
|
|
@@ -3681,7 +3750,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3681
3750
|
margin-right: var(--xmlui-marginRight-Text-caption);
|
|
3682
3751
|
vertical-align: var(--xmlui-verticalAlign-Text-caption);
|
|
3683
3752
|
}
|
|
3684
|
-
.
|
|
3753
|
+
._text_1qfdf_13._placeholder_1qfdf_1243 {
|
|
3685
3754
|
padding: var(--xmlui-padding-Text-placeholder);
|
|
3686
3755
|
padding-left: var(--xmlui-paddingLeft-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
|
|
3687
3756
|
padding-right: var(--xmlui-paddingRight-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
|
|
@@ -3738,7 +3807,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3738
3807
|
margin-right: var(--xmlui-marginRight-Text-placeholder);
|
|
3739
3808
|
vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
|
|
3740
3809
|
}
|
|
3741
|
-
.
|
|
3810
|
+
._text_1qfdf_13._paragraph_1qfdf_1300 {
|
|
3742
3811
|
padding: var(--xmlui-padding-Text-paragraph);
|
|
3743
3812
|
padding-left: var(--xmlui-paddingLeft-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
|
|
3744
3813
|
padding-right: var(--xmlui-paddingRight-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
|
|
@@ -3795,7 +3864,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3795
3864
|
margin-right: var(--xmlui-marginRight-Text-paragraph);
|
|
3796
3865
|
vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
|
|
3797
3866
|
}
|
|
3798
|
-
.
|
|
3867
|
+
._text_1qfdf_13._subheading_1qfdf_1357 {
|
|
3799
3868
|
padding: var(--xmlui-padding-Text-subheading);
|
|
3800
3869
|
padding-left: var(--xmlui-paddingLeft-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
|
|
3801
3870
|
padding-right: var(--xmlui-paddingRight-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
|
|
@@ -3852,7 +3921,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3852
3921
|
margin-right: var(--xmlui-marginRight-Text-subheading);
|
|
3853
3922
|
vertical-align: var(--xmlui-verticalAlign-Text-subheading);
|
|
3854
3923
|
}
|
|
3855
|
-
.
|
|
3924
|
+
._text_1qfdf_13._tableheading_1qfdf_1414 {
|
|
3856
3925
|
padding: var(--xmlui-padding-Text-tableheading);
|
|
3857
3926
|
padding-left: var(--xmlui-paddingLeft-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
|
|
3858
3927
|
padding-right: var(--xmlui-paddingRight-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
|
|
@@ -3909,7 +3978,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3909
3978
|
margin-right: var(--xmlui-marginRight-Text-tableheading);
|
|
3910
3979
|
vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
|
|
3911
3980
|
}
|
|
3912
|
-
.
|
|
3981
|
+
._text_1qfdf_13._secondary_1qfdf_1471 {
|
|
3913
3982
|
padding: var(--xmlui-padding-Text-secondary);
|
|
3914
3983
|
padding-left: var(--xmlui-paddingLeft-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
|
|
3915
3984
|
padding-right: var(--xmlui-paddingRight-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
|
|
@@ -3966,7 +4035,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3966
4035
|
margin-right: var(--xmlui-marginRight-Text-secondary);
|
|
3967
4036
|
vertical-align: var(--xmlui-verticalAlign-Text-secondary);
|
|
3968
4037
|
}
|
|
3969
|
-
.
|
|
4038
|
+
._text_1qfdf_13._strong_1qfdf_1528 {
|
|
3970
4039
|
font-weight: var(--xmlui-fontWeight-bold);
|
|
3971
4040
|
}
|
|
3972
4041
|
|
|
@@ -3974,18 +4043,18 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3974
4043
|
This is a Chromium based solution that is supported by most modern browsers.
|
|
3975
4044
|
See this source for details: https://css-tricks.com/line-clampin/
|
|
3976
4045
|
*/
|
|
3977
|
-
.
|
|
4046
|
+
._truncateOverflow_1qfdf_1536 {
|
|
3978
4047
|
overflow: hidden;
|
|
3979
4048
|
overflow-wrap: break-word;
|
|
3980
4049
|
white-space: nowrap;
|
|
3981
4050
|
max-width: 100%;
|
|
3982
4051
|
}
|
|
3983
4052
|
|
|
3984
|
-
.
|
|
4053
|
+
._preserveLinebreaks_1qfdf_1543 {
|
|
3985
4054
|
white-space: pre-wrap;
|
|
3986
4055
|
}
|
|
3987
4056
|
|
|
3988
|
-
.
|
|
4057
|
+
._noEllipsis_1qfdf_1547 {
|
|
3989
4058
|
text-overflow: clip;
|
|
3990
4059
|
}/*
|
|
3991
4060
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -4290,7 +4359,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4290
4359
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
4291
4360
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
4292
4361
|
*/
|
|
4293
|
-
.
|
|
4362
|
+
._resetAppearance_1j250_13 {
|
|
4294
4363
|
/* Add if not using autoprefixer */
|
|
4295
4364
|
-webkit-appearance: none;
|
|
4296
4365
|
appearance: none;
|
|
@@ -4298,11 +4367,11 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4298
4367
|
margin: 0;
|
|
4299
4368
|
}
|
|
4300
4369
|
|
|
4301
|
-
.
|
|
4370
|
+
._label_1j250_21 {
|
|
4302
4371
|
width: 100%;
|
|
4303
4372
|
}
|
|
4304
4373
|
|
|
4305
|
-
.
|
|
4374
|
+
._inputContainer_1j250_25 {
|
|
4306
4375
|
z-index: -1;
|
|
4307
4376
|
position: relative;
|
|
4308
4377
|
opacity: 0;
|
|
@@ -4310,7 +4379,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4310
4379
|
height: 0;
|
|
4311
4380
|
}
|
|
4312
4381
|
|
|
4313
|
-
.
|
|
4382
|
+
._checkbox_1j250_33 {
|
|
4314
4383
|
display: grid;
|
|
4315
4384
|
place-content: center;
|
|
4316
4385
|
min-width: 1em;
|
|
@@ -4322,57 +4391,57 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4322
4391
|
border-color: var(--xmlui-borderColor-Checkbox-default);
|
|
4323
4392
|
background-color: var(--xmlui-backgroundColor-Checkbox-default);
|
|
4324
4393
|
}
|
|
4325
|
-
.
|
|
4394
|
+
._checkbox_1j250_33:not([readonly]) {
|
|
4326
4395
|
cursor: pointer;
|
|
4327
4396
|
}
|
|
4328
|
-
.
|
|
4397
|
+
._checkbox_1j250_33:focus-visible {
|
|
4329
4398
|
outline-width: var(--xmlui-outlineWidth-Checkbox-default--focus);
|
|
4330
4399
|
outline-color: var(--xmlui-outlineColor-Checkbox-default--focus);
|
|
4331
4400
|
outline-style: var(--xmlui-outlineStyle-Checkbox-default--focus);
|
|
4332
4401
|
outline-offset: var(--xmlui-outlineOffset-Checkbox-default--focus);
|
|
4333
4402
|
}
|
|
4334
|
-
.
|
|
4403
|
+
._checkbox_1j250_33:hover {
|
|
4335
4404
|
border-color: var(--xmlui-borderColor-Checkbox-default--hover);
|
|
4336
4405
|
}
|
|
4337
|
-
.
|
|
4406
|
+
._checkbox_1j250_33:disabled {
|
|
4338
4407
|
cursor: not-allowed;
|
|
4339
4408
|
background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
|
|
4340
4409
|
border-color: var(--xmlui-borderColor-Checkbox--disabled);
|
|
4341
4410
|
}
|
|
4342
|
-
.
|
|
4411
|
+
._checkbox_1j250_33._error_1j250_62 {
|
|
4343
4412
|
border-radius: var(--xmlui-borderRadius-Checkbox-error);
|
|
4344
4413
|
border-color: var(--xmlui-borderColor-Checkbox-error);
|
|
4345
4414
|
background-color: var(--xmlui-backgroundColor-Checkbox-error);
|
|
4346
4415
|
}
|
|
4347
|
-
.
|
|
4416
|
+
._checkbox_1j250_33._error_1j250_62:focus-visible {
|
|
4348
4417
|
outline-width: var(--xmlui-outlineWidth-Checkbox-error--focus);
|
|
4349
4418
|
outline-color: var(--xmlui-outlineColor-Checkbox-error--focus);
|
|
4350
4419
|
outline-style: var(--xmlui-outlineStyle-Checkbox-error--focus);
|
|
4351
4420
|
outline-offset: var(--xmlui-outlineOffset-Checkbox-error--focus);
|
|
4352
4421
|
}
|
|
4353
|
-
.
|
|
4422
|
+
._checkbox_1j250_33._warning_1j250_73 {
|
|
4354
4423
|
border-radius: var(--xmlui-borderRadius-Checkbox-warning);
|
|
4355
4424
|
border-color: var(--xmlui-borderColor-Checkbox-warning);
|
|
4356
4425
|
background-color: var(--xmlui-backgroundColor-Checkbox-warning);
|
|
4357
4426
|
}
|
|
4358
|
-
.
|
|
4427
|
+
._checkbox_1j250_33._warning_1j250_73:focus-visible {
|
|
4359
4428
|
outline-width: var(--xmlui-outlineWidth-Checkbox-warning--focus);
|
|
4360
4429
|
outline-color: var(--xmlui-outlineColor-Checkbox-warning--focus);
|
|
4361
4430
|
outline-style: var(--xmlui-outlineStyle-Checkbox-warning--focus);
|
|
4362
4431
|
outline-offset: var(--xmlui-outlineOffset-Checkbox-warning--focus);
|
|
4363
4432
|
}
|
|
4364
|
-
.
|
|
4433
|
+
._checkbox_1j250_33._valid_1j250_84 {
|
|
4365
4434
|
border-radius: var(--xmlui-borderRadius-Checkbox-success);
|
|
4366
4435
|
border-color: var(--xmlui-borderColor-Checkbox-success);
|
|
4367
4436
|
background-color: var(--xmlui-backgroundColor-Checkbox-success);
|
|
4368
4437
|
}
|
|
4369
|
-
.
|
|
4438
|
+
._checkbox_1j250_33._valid_1j250_84:focus-visible {
|
|
4370
4439
|
outline-width: var(--xmlui-outlineWidth-Checkbox-success--focus);
|
|
4371
4440
|
outline-color: var(--xmlui-outlineColor-Checkbox-success--focus);
|
|
4372
4441
|
outline-style: var(--xmlui-outlineStyle-Checkbox-success--focus);
|
|
4373
4442
|
outline-offset: var(--xmlui-outlineOffset-Checkbox-success--focus);
|
|
4374
4443
|
}
|
|
4375
|
-
.
|
|
4444
|
+
._checkbox_1j250_33::before {
|
|
4376
4445
|
content: "";
|
|
4377
4446
|
width: 0.5em;
|
|
4378
4447
|
height: 0.5em;
|
|
@@ -4382,47 +4451,47 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4382
4451
|
transform-origin: center;
|
|
4383
4452
|
clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
|
|
4384
4453
|
}
|
|
4385
|
-
.
|
|
4454
|
+
._checkbox_1j250_33:checked::before {
|
|
4386
4455
|
transform: scale(1);
|
|
4387
4456
|
}
|
|
4388
|
-
.
|
|
4457
|
+
._checkbox_1j250_33:checked {
|
|
4389
4458
|
border-color: var(--xmlui-borderColor-checked-Checkbox);
|
|
4390
4459
|
background-color: var(--xmlui-backgroundColor-checked-Checkbox);
|
|
4391
4460
|
}
|
|
4392
|
-
.
|
|
4461
|
+
._checkbox_1j250_33:checked:disabled {
|
|
4393
4462
|
background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
|
|
4394
4463
|
border-color: var(--xmlui-borderColor-Checkbox--disabled);
|
|
4395
4464
|
}
|
|
4396
|
-
.
|
|
4465
|
+
._checkbox_1j250_33:checked._error_1j250_62 {
|
|
4397
4466
|
border-color: var(--xmlui-borderColor-checked-Checkbox-error);
|
|
4398
4467
|
background-color: var(--xmlui-backgroundColor-checked-Checkbox-error);
|
|
4399
4468
|
}
|
|
4400
|
-
.
|
|
4469
|
+
._checkbox_1j250_33:checked._warning_1j250_73 {
|
|
4401
4470
|
border-color: var(--xmlui-borderColor-checked-Checkbox-warning);
|
|
4402
4471
|
background-color: var(--xmlui-backgroundColor-checked-Checkbox-warning);
|
|
4403
4472
|
}
|
|
4404
|
-
.
|
|
4473
|
+
._checkbox_1j250_33:checked._valid_1j250_84 {
|
|
4405
4474
|
border-color: var(--xmlui-borderColor-checked-Checkbox-success);
|
|
4406
4475
|
background-color: var(--xmlui-backgroundColor-checked-Checkbox-success);
|
|
4407
4476
|
}
|
|
4408
|
-
.
|
|
4477
|
+
._checkbox_1j250_33:indeterminate {
|
|
4409
4478
|
background-color: var(--xmlui-backgroundColor-checked-Checkbox);
|
|
4410
4479
|
border-color: var(--xmlui-borderColor-checked-Checkbox);
|
|
4411
4480
|
}
|
|
4412
|
-
.
|
|
4481
|
+
._checkbox_1j250_33:indeterminate[readonly] {
|
|
4413
4482
|
pointer-events: none;
|
|
4414
4483
|
}
|
|
4415
|
-
.
|
|
4484
|
+
._checkbox_1j250_33:indeterminate:disabled {
|
|
4416
4485
|
background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
|
|
4417
4486
|
border-color: var(--xmlui-borderColor-Checkbox--disabled);
|
|
4418
4487
|
}
|
|
4419
|
-
.
|
|
4488
|
+
._checkbox_1j250_33:indeterminate::before {
|
|
4420
4489
|
clip-path: circle(30% at 50% 50%);
|
|
4421
4490
|
transform: scale(1);
|
|
4422
4491
|
}
|
|
4423
4492
|
|
|
4424
|
-
.
|
|
4425
|
-
border:
|
|
4493
|
+
._switch_1j250_144 {
|
|
4494
|
+
border: 1px solid var(--xmlui-borderColor-Switch);
|
|
4426
4495
|
width: 32px;
|
|
4427
4496
|
height: 20px;
|
|
4428
4497
|
border-radius: 1rem;
|
|
@@ -4431,62 +4500,64 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4431
4500
|
flex-shrink: 0;
|
|
4432
4501
|
background-color: var(--xmlui-backgroundColor-Switch);
|
|
4433
4502
|
}
|
|
4434
|
-
.
|
|
4503
|
+
._switch_1j250_144:hover {
|
|
4435
4504
|
border-color: var(--xmlui-borderColor-Switch-default--hover);
|
|
4436
4505
|
}
|
|
4437
|
-
.
|
|
4506
|
+
._switch_1j250_144:disabled {
|
|
4438
4507
|
cursor: not-allowed;
|
|
4439
4508
|
background-color: var(--xmlui-backgroundColor-Switch--disabled);
|
|
4440
4509
|
border-color: var(--xmlui-borderColor-Switch--disabled);
|
|
4441
4510
|
}
|
|
4442
|
-
.
|
|
4511
|
+
._switch_1j250_144._error_1j250_62 {
|
|
4443
4512
|
border-color: var(--xmlui-borderColor-Switch-error);
|
|
4444
4513
|
}
|
|
4445
|
-
.
|
|
4514
|
+
._switch_1j250_144._warning_1j250_73 {
|
|
4446
4515
|
border-color: var(--xmlui-borderColor-Switch-warning);
|
|
4447
4516
|
}
|
|
4448
|
-
.
|
|
4517
|
+
._switch_1j250_144._valid_1j250_84 {
|
|
4449
4518
|
border-color: var(--xmlui-borderColor-Switch-success);
|
|
4450
4519
|
}
|
|
4451
|
-
.
|
|
4520
|
+
._switch_1j250_144::before {
|
|
4452
4521
|
content: "";
|
|
4453
4522
|
position: absolute;
|
|
4454
|
-
top:
|
|
4455
|
-
|
|
4523
|
+
top: 50%;
|
|
4524
|
+
transform: translateY(-50%);
|
|
4525
|
+
left: 1px;
|
|
4456
4526
|
width: 16px;
|
|
4457
4527
|
height: 16px;
|
|
4458
4528
|
background: var(--xmlui-backgroundColor-indicator-Switch);
|
|
4459
4529
|
border-radius: 1rem;
|
|
4460
4530
|
transition: 0.3s transform;
|
|
4461
4531
|
}
|
|
4462
|
-
.
|
|
4532
|
+
._switch_1j250_144:checked {
|
|
4463
4533
|
border-color: var(--xmlui-borderColor-checked-Switch);
|
|
4464
4534
|
background-color: var(--xmlui-backgroundColor-checked-Switch);
|
|
4465
4535
|
}
|
|
4466
|
-
.
|
|
4536
|
+
._switch_1j250_144:checked:disabled {
|
|
4467
4537
|
background-color: var(--xmlui-backgroundColor-Switch--disabled);
|
|
4468
4538
|
border-color: var(--xmlui-borderColor-Switch--disabled);
|
|
4469
4539
|
}
|
|
4470
|
-
.
|
|
4540
|
+
._switch_1j250_144:checked._error_1j250_62 {
|
|
4471
4541
|
border-color: var(--xmlui-borderColor-checked-Switch-error);
|
|
4472
4542
|
background-color: var(--xmlui-backgroundColor-checked-Switch-error);
|
|
4473
4543
|
}
|
|
4474
|
-
.
|
|
4544
|
+
._switch_1j250_144:checked._warning_1j250_73 {
|
|
4475
4545
|
border-color: var(--xmlui-borderColor-checked-Switch-warning);
|
|
4476
4546
|
background-color: var(--xmlui-backgroundColor-checked-Switch-warning);
|
|
4477
4547
|
}
|
|
4478
|
-
.
|
|
4548
|
+
._switch_1j250_144:checked._valid_1j250_84 {
|
|
4479
4549
|
border-color: var(--xmlui-borderColor-checked-Switch-success);
|
|
4480
4550
|
background-color: var(--xmlui-backgroundColor-checked-Switch-success);
|
|
4481
4551
|
}
|
|
4482
|
-
.
|
|
4552
|
+
._switch_1j250_144:focus-visible {
|
|
4483
4553
|
outline-width: var(--xmlui-outlineWidth-Switch--focus);
|
|
4484
4554
|
outline-color: var(--xmlui-outlineColor-Switch--focus);
|
|
4485
4555
|
outline-style: var(--xmlui-outlineStyle-Switch--focus);
|
|
4486
4556
|
outline-offset: var(--xmlui-outlineOffset-Switch--focus);
|
|
4487
4557
|
}
|
|
4488
|
-
.
|
|
4489
|
-
|
|
4558
|
+
._switch_1j250_144:checked::before {
|
|
4559
|
+
background: var(--xmlui-backgroundColor-indicator-checked-Switch);
|
|
4560
|
+
transform: translateX(calc(100% - 4px)) translateY(-50%);
|
|
4490
4561
|
}/*
|
|
4491
4562
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
4492
4563
|
*
|
|
@@ -6223,20 +6294,20 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
6223
6294
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6224
6295
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6225
6296
|
*/
|
|
6226
|
-
.
|
|
6297
|
+
._radioGroupContainer_1easy_13 {
|
|
6227
6298
|
width: 100%;
|
|
6228
6299
|
display: flex;
|
|
6229
6300
|
flex-direction: column;
|
|
6230
6301
|
gap: var(--xmlui-space-2);
|
|
6231
6302
|
}
|
|
6232
6303
|
|
|
6233
|
-
.
|
|
6304
|
+
._radioOptionContainer_1easy_20 {
|
|
6234
6305
|
display: flex;
|
|
6235
6306
|
align-items: center;
|
|
6236
6307
|
gap: var(--xmlui-gap-RadioGroupOption);
|
|
6237
6308
|
}
|
|
6238
6309
|
|
|
6239
|
-
.
|
|
6310
|
+
._radioOption_1easy_20 {
|
|
6240
6311
|
flex-shrink: 0;
|
|
6241
6312
|
width: 18px;
|
|
6242
6313
|
height: 18px;
|
|
@@ -6248,60 +6319,66 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
6248
6319
|
padding: 0;
|
|
6249
6320
|
cursor: pointer;
|
|
6250
6321
|
}
|
|
6251
|
-
.
|
|
6322
|
+
._radioOption_1easy_20:hover {
|
|
6252
6323
|
border-color: var(--xmlui-borderColor-RadioGroupOption-default--hover);
|
|
6253
6324
|
}
|
|
6254
|
-
.
|
|
6325
|
+
._radioOption_1easy_20:focus-visible {
|
|
6255
6326
|
outline-width: var(--xmlui-outlineWidth-RadioGroupOption--focus);
|
|
6256
6327
|
outline-color: var(--xmlui-outlineColor-RadioGroupOption--focus);
|
|
6257
6328
|
outline-style: var(--xmlui-outlineStyle-RadioGroupOption--focus);
|
|
6258
6329
|
outline-offset: var(--xmlui-outlineOffset-RadioGroupOption--focus);
|
|
6259
6330
|
}
|
|
6260
|
-
.
|
|
6331
|
+
._radioOption_1easy_20:disabled {
|
|
6261
6332
|
cursor: not-allowed;
|
|
6262
6333
|
border-color: var(--xmlui-borderColor-RadioGroupOption--disabled);
|
|
6263
6334
|
}
|
|
6264
|
-
.
|
|
6335
|
+
._radioOption_1easy_20:disabled + label {
|
|
6265
6336
|
cursor: not-allowed;
|
|
6266
6337
|
color: var(--xmlui-color-RadioGroupOption--disabled);
|
|
6267
6338
|
}
|
|
6268
|
-
.
|
|
6339
|
+
._radioOption_1easy_20._error_1easy_55 {
|
|
6269
6340
|
border-color: var(--xmlui-borderColor-RadioGroupOption-error);
|
|
6270
6341
|
}
|
|
6271
|
-
.
|
|
6342
|
+
._radioOption_1easy_20._warning_1easy_58 {
|
|
6272
6343
|
border-color: var(--xmlui-borderColor-RadioGroupOption-warning);
|
|
6273
6344
|
}
|
|
6274
|
-
.
|
|
6345
|
+
._radioOption_1easy_20._valid_1easy_61 {
|
|
6275
6346
|
border-color: var(--xmlui-borderColor-RadioGroupOption-success);
|
|
6276
6347
|
}
|
|
6348
|
+
._radioOption_1easy_20._checked_1easy_64 {
|
|
6349
|
+
border: none;
|
|
6350
|
+
}
|
|
6277
6351
|
|
|
6278
|
-
.
|
|
6352
|
+
._indicator_1easy_68 {
|
|
6279
6353
|
display: grid;
|
|
6280
6354
|
place-content: center;
|
|
6281
6355
|
width: 100%;
|
|
6282
6356
|
height: 100%;
|
|
6357
|
+
border-radius: 50%;
|
|
6358
|
+
background-color: var(--xmlui-backgroundColor-checked-RadioGroupOption-default);
|
|
6283
6359
|
}
|
|
6284
|
-
.
|
|
6360
|
+
._indicator_1easy_68::after {
|
|
6285
6361
|
content: "";
|
|
6286
|
-
width:
|
|
6287
|
-
height:
|
|
6362
|
+
width: 6px;
|
|
6363
|
+
height: 6px;
|
|
6288
6364
|
border-radius: 50%;
|
|
6289
|
-
|
|
6365
|
+
overflow: hidden;
|
|
6366
|
+
box-shadow: inset 1em 1em var(--xmlui-backgroundColor-checked-RadioGroupOption-indicator);
|
|
6290
6367
|
}
|
|
6291
|
-
.
|
|
6368
|
+
._indicator_1easy_68._disabled_1easy_84::after {
|
|
6292
6369
|
box-shadow: inset 1em 1em var(--xmlui-backgroundColor-checked-RadioGroupOption--disabled);
|
|
6293
6370
|
}
|
|
6294
|
-
.
|
|
6371
|
+
._indicator_1easy_68._error_1easy_55::after {
|
|
6295
6372
|
box-shadow: inset 1em 1em var(--xmlui-backgroundColor-checked-RadioGroupOption-error);
|
|
6296
6373
|
}
|
|
6297
|
-
.
|
|
6374
|
+
._indicator_1easy_68._warning_1easy_58::after {
|
|
6298
6375
|
box-shadow: inset 1em 1em var(--xmlui-backgroundColor-checked-RadioGroupOption-warning);
|
|
6299
6376
|
}
|
|
6300
|
-
.
|
|
6377
|
+
._indicator_1easy_68._valid_1easy_61::after {
|
|
6301
6378
|
box-shadow: inset 1em 1em var(--xmlui-backgroundColor-checked-RadioGroupOption-success);
|
|
6302
6379
|
}
|
|
6303
6380
|
|
|
6304
|
-
.
|
|
6381
|
+
._itemContainer_1easy_97 {
|
|
6305
6382
|
z-index: -1;
|
|
6306
6383
|
position: relative;
|
|
6307
6384
|
opacity: 0;
|
|
@@ -6309,12 +6386,12 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
6309
6386
|
height: 0;
|
|
6310
6387
|
}
|
|
6311
6388
|
|
|
6312
|
-
.
|
|
6389
|
+
._optionLabel_1easy_105 {
|
|
6313
6390
|
width: 100%;
|
|
6314
6391
|
cursor: pointer;
|
|
6315
6392
|
}
|
|
6316
6393
|
|
|
6317
|
-
.
|
|
6394
|
+
._label_1easy_110 {
|
|
6318
6395
|
width: 100%;
|
|
6319
6396
|
color: var(--xmlui-color-RadioGroupOption-default);
|
|
6320
6397
|
font-size: var(--xmlui-fontSize-RadioGroupOption);
|
|
@@ -6322,13 +6399,13 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
6322
6399
|
user-select: none;
|
|
6323
6400
|
cursor: pointer;
|
|
6324
6401
|
}
|
|
6325
|
-
.
|
|
6402
|
+
._label_1easy_110._error_1easy_55 {
|
|
6326
6403
|
color: var(--xmlui-color-RadioGroupOption-error);
|
|
6327
6404
|
}
|
|
6328
|
-
.
|
|
6405
|
+
._label_1easy_110._warning_1easy_58 {
|
|
6329
6406
|
color: var(--xmlui-color-RadioGroupOption-warning);
|
|
6330
6407
|
}
|
|
6331
|
-
.
|
|
6408
|
+
._label_1easy_110._valid_1easy_61 {
|
|
6332
6409
|
color: var(--xmlui-color-RadioGroupOption-success);
|
|
6333
6410
|
}/*
|
|
6334
6411
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -8056,45 +8133,45 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
8056
8133
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
8057
8134
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
8058
8135
|
*/
|
|
8059
|
-
.
|
|
8136
|
+
._markdownContent_1vc6z_13 {
|
|
8060
8137
|
padding-top: var(--xmlui-paddingTop-Markdown);
|
|
8061
8138
|
padding-bottom: var(--xmlui-paddingBottom-Markdown);
|
|
8062
8139
|
background-color: var(--xmlui-backgroundColor-Markdown);
|
|
8063
8140
|
min-width: 0;
|
|
8064
8141
|
width: 100%;
|
|
8065
8142
|
}
|
|
8066
|
-
.
|
|
8143
|
+
._markdownContent_1vc6z_13 h1 {
|
|
8067
8144
|
margin-top: var(--xmlui-marginTop-H1-markdown) !important;
|
|
8068
8145
|
margin-bottom: var(--xmlui-marginBottom-H1-markdown) !important;
|
|
8069
8146
|
font-size: var(--xmlui-fontSize-H1-markdown) !important;
|
|
8070
8147
|
}
|
|
8071
|
-
.
|
|
8148
|
+
._markdownContent_1vc6z_13 h2 {
|
|
8072
8149
|
margin-top: var(--xmlui-marginTop-H2-markdown) !important;
|
|
8073
8150
|
margin-bottom: var(--xmlui-marginBottom-H2-markdown) !important;
|
|
8074
8151
|
}
|
|
8075
|
-
.
|
|
8152
|
+
._markdownContent_1vc6z_13 h3 {
|
|
8076
8153
|
margin-top: var(--xmlui-marginTop-H3-markdown) !important;
|
|
8077
8154
|
margin-bottom: var(--xmlui-marginBottom-H3-markdown) !important;
|
|
8078
8155
|
}
|
|
8079
|
-
.
|
|
8156
|
+
._markdownContent_1vc6z_13 h4 {
|
|
8080
8157
|
margin-top: var(--xmlui-marginTop-H4-markdown) !important;
|
|
8081
8158
|
margin-bottom: var(--xmlui-marginBottom-H4-markdown) !important;
|
|
8082
8159
|
}
|
|
8083
|
-
.
|
|
8160
|
+
._markdownContent_1vc6z_13 h5 {
|
|
8084
8161
|
margin-top: var(--xmlui-marginTop-H5-markdown) !important;
|
|
8085
8162
|
margin-bottom: var(--xmlui-marginBottom-H5-markdown) !important;
|
|
8086
8163
|
}
|
|
8087
|
-
.
|
|
8164
|
+
._markdownContent_1vc6z_13 h6 {
|
|
8088
8165
|
margin-top: var(--xmlui-marginTop-H6-markdown) !important;
|
|
8089
8166
|
margin-bottom: var(--xmlui-marginBottom-H6-markdown) !important;
|
|
8090
8167
|
}
|
|
8091
|
-
.
|
|
8168
|
+
._markdownContent_1vc6z_13 ._blockquote_1vc6z_45 {
|
|
8092
8169
|
position: relative;
|
|
8093
8170
|
margin-top: var(--xmlui-marginTop-Blockquote);
|
|
8094
8171
|
margin-bottom: var(--xmlui-marginBottom-Blockquote);
|
|
8095
8172
|
background-color: var(--xmlui-backgroundColor-Blockquote);
|
|
8096
8173
|
}
|
|
8097
|
-
.
|
|
8174
|
+
._markdownContent_1vc6z_13 ._blockquote_1vc6z_45::before {
|
|
8098
8175
|
background-color: var(--xmlui-accentColor-Blockquote);
|
|
8099
8176
|
position: absolute;
|
|
8100
8177
|
top: 0;
|
|
@@ -8104,7 +8181,7 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
8104
8181
|
height: 100%;
|
|
8105
8182
|
width: var(--xmlui-accentWidth-Blockquote);
|
|
8106
8183
|
}
|
|
8107
|
-
.
|
|
8184
|
+
._markdownContent_1vc6z_13 ._blockquoteContainer_1vc6z_61 {
|
|
8108
8185
|
border-left: var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
|
|
8109
8186
|
border-right: var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
|
|
8110
8187
|
border-top: var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)));
|
|
@@ -8132,7 +8209,7 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
8132
8209
|
padding-top: var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
|
|
8133
8210
|
padding-bottom: var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
|
|
8134
8211
|
}
|
|
8135
|
-
.
|
|
8212
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89 {
|
|
8136
8213
|
margin-top: var(--xmlui-marginTop-Admonition);
|
|
8137
8214
|
margin-bottom: var(--xmlui-marginBottom-Admonition);
|
|
8138
8215
|
background-color: var(--xmlui-backgroundColor-Admonition);
|
|
@@ -8164,46 +8241,65 @@ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
|
|
|
8164
8241
|
padding-top: var(--xmlui-paddingTop-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)));
|
|
8165
8242
|
padding-bottom: var(--xmlui-paddingBottom-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)));
|
|
8166
8243
|
}
|
|
8167
|
-
.
|
|
8244
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89._info_1vc6z_121 {
|
|
8245
|
+
background-color: var(--xmlui-backgroundColor-Admonition-info);
|
|
8246
|
+
border-color: var(--xmlui-borderColor-Admonition-info);
|
|
8247
|
+
}
|
|
8248
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89._warning_1vc6z_125 {
|
|
8249
|
+
background-color: var(--xmlui-backgroundColor-Admonition-warning);
|
|
8250
|
+
border-color: var(--xmlui-borderColor-Admonition-warning);
|
|
8251
|
+
}
|
|
8252
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89._danger_1vc6z_129 {
|
|
8253
|
+
background-color: var(--xmlui-backgroundColor-Admonition-danger);
|
|
8254
|
+
border-color: var(--xmlui-borderColor-Admonition-danger);
|
|
8255
|
+
}
|
|
8256
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89._note_1vc6z_133 {
|
|
8257
|
+
background-color: var(--xmlui-backgroundColor-Admonition-note);
|
|
8258
|
+
border-color: var(--xmlui-borderColor-Admonition-note);
|
|
8259
|
+
}
|
|
8260
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89._tip_1vc6z_137 {
|
|
8261
|
+
background-color: var(--xmlui-backgroundColor-Admonition-tip);
|
|
8262
|
+
border-color: var(--xmlui-borderColor-Admonition-tip);
|
|
8263
|
+
}
|
|
8264
|
+
._markdownContent_1vc6z_13 ._admonitionContainer_1vc6z_141 {
|
|
8168
8265
|
padding: 0.5rem;
|
|
8169
8266
|
display: flex;
|
|
8170
8267
|
align-items: flex-start;
|
|
8171
8268
|
}
|
|
8172
|
-
.
|
|
8173
|
-
margin-left: var(--xmlui-marginLeft-Admonition-content);
|
|
8174
|
-
}
|
|
8175
|
-
._markdownContent_1q19g_13 ._admonitionIcon_1q19g_129 {
|
|
8269
|
+
._markdownContent_1vc6z_13 ._admonitionIcon_1vc6z_146 {
|
|
8176
8270
|
font-size: var(--xmlui-iconSize-Admonition);
|
|
8177
8271
|
line-height: 1;
|
|
8178
8272
|
}
|
|
8179
|
-
.
|
|
8273
|
+
._markdownContent_1vc6z_13 ._admonitionContent_1vc6z_150 {
|
|
8274
|
+
margin-left: var(--xmlui-marginLeft-Admonition-content);
|
|
8180
8275
|
flex: 1;
|
|
8181
8276
|
min-width: 0;
|
|
8182
8277
|
}
|
|
8183
|
-
.
|
|
8278
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89 ._admonitionContent_1vc6z_150 [class*=text_][class*=markdown_],
|
|
8279
|
+
._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89 ._admonitionContent_1vc6z_150 ul, ._markdownContent_1vc6z_13 ._admonitionBlockquote_1vc6z_89 ._admonitionContent_1vc6z_150 ol {
|
|
8184
8280
|
margin-top: 0;
|
|
8185
8281
|
margin-bottom: 0;
|
|
8186
8282
|
}
|
|
8187
|
-
.
|
|
8283
|
+
._markdownContent_1vc6z_13 ._horizontalRule_1vc6z_160 {
|
|
8188
8284
|
border-top-color: var(--xmlui-borderColor-HorizontalRule);
|
|
8189
8285
|
border-top-style: var(--xmlui-borderStyle-HorizontalRule);
|
|
8190
8286
|
border-top-width: var(--xmlui-borderWidth-HorizontalRule);
|
|
8191
8287
|
}
|
|
8192
|
-
.
|
|
8193
|
-
.
|
|
8288
|
+
._markdownContent_1vc6z_13 li:has(> input[type=checkbox]),
|
|
8289
|
+
._markdownContent_1vc6z_13 li:has(> input[type=checkbox]) {
|
|
8194
8290
|
display: flex;
|
|
8195
8291
|
align-items: flex-start;
|
|
8196
8292
|
}
|
|
8197
|
-
.
|
|
8198
|
-
.
|
|
8293
|
+
._markdownContent_1vc6z_13 li:has(> input[type=checkbox]) > input[type=checkbox],
|
|
8294
|
+
._markdownContent_1vc6z_13 li:has(> input[type=checkbox]) > input[type=checkbox] {
|
|
8199
8295
|
margin-right: 8px;
|
|
8200
8296
|
margin-top: 4px;
|
|
8201
8297
|
flex-shrink: 0;
|
|
8202
8298
|
}
|
|
8203
|
-
.
|
|
8299
|
+
._markdownContent_1vc6z_13 > *:first-child {
|
|
8204
8300
|
margin-top: 0;
|
|
8205
8301
|
}
|
|
8206
|
-
.
|
|
8302
|
+
._markdownContent_1vc6z_13 > *:last-child {
|
|
8207
8303
|
margin-bottom: 0;
|
|
8208
8304
|
}
|
|
8209
8305
|
|
|
@@ -8841,7 +8937,7 @@ li .htmlOl {
|
|
|
8841
8937
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
8842
8938
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
8843
8939
|
*/
|
|
8844
|
-
.
|
|
8940
|
+
._codeBlock_169sr_13 {
|
|
8845
8941
|
border-left: var(--xmlui-borderLeft-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)));
|
|
8846
8942
|
border-right: var(--xmlui-borderRight-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)));
|
|
8847
8943
|
border-top: var(--xmlui-borderTop-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)));
|
|
@@ -8858,7 +8954,6 @@ li .htmlOl {
|
|
|
8858
8954
|
border-right-color: var(--xmlui-borderRightColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
|
|
8859
8955
|
border-top-color: var(--xmlui-borderTopColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
|
|
8860
8956
|
border-bottom-color: var(--xmlui-borderBottomColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
|
|
8861
|
-
border-radius: var(--xmlui-borderRadius-CodeBlock);
|
|
8862
8957
|
border-start-start-radius: var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
|
|
8863
8958
|
border-start-end-radius: var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
|
|
8864
8959
|
border-end-start-radius: var(--xmlui-borderEndStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
|
|
@@ -8873,18 +8968,20 @@ li .htmlOl {
|
|
|
8873
8968
|
background-color: var(--xmlui-backgroundColor-CodeBlock);
|
|
8874
8969
|
}
|
|
8875
8970
|
|
|
8876
|
-
.
|
|
8971
|
+
._codeBlockHeader_169sr_44 {
|
|
8877
8972
|
padding: var(--xmlui-space-1);
|
|
8878
8973
|
padding-left: var(--xmlui-space-3);
|
|
8879
8974
|
background-color: var(--xmlui-backgroundColor-CodeBlock-header);
|
|
8880
8975
|
border-bottom: var(--xmlui-color-CodeBlock-headerSeparator) solid 2px;
|
|
8881
8976
|
font-size: var(--xmlui-fontSize-small);
|
|
8977
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
|
|
8978
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
|
|
8882
8979
|
}
|
|
8883
8980
|
|
|
8884
|
-
.
|
|
8981
|
+
._codeBlockCopyWrapper_169sr_54 {
|
|
8885
8982
|
position: relative;
|
|
8886
8983
|
}
|
|
8887
|
-
.
|
|
8984
|
+
._codeBlockCopyWrapper_169sr_54 ._codeBlockCopyButton_169sr_57 {
|
|
8888
8985
|
position: absolute;
|
|
8889
8986
|
top: var(--xmlui-space-1_5);
|
|
8890
8987
|
right: var(--xmlui-space-1_5);
|
|
@@ -8892,8 +8989,15 @@ li .htmlOl {
|
|
|
8892
8989
|
display: none;
|
|
8893
8990
|
background-color: var(--xmlui-backgroundColor-CodeBlock);
|
|
8894
8991
|
}
|
|
8895
|
-
.
|
|
8992
|
+
._codeBlockCopyWrapper_169sr_54:hover ._codeBlockCopyButton_169sr_57 {
|
|
8896
8993
|
display: block;
|
|
8994
|
+
}
|
|
8995
|
+
|
|
8996
|
+
.codeBlockHighlightRow {
|
|
8997
|
+
background-color: var(--xmlui-backgroundColor-CodeBlock-highlightRow);
|
|
8998
|
+
}
|
|
8999
|
+
.codeBlockHighlightString {
|
|
9000
|
+
background-color: var(--xmlui-backgroundColor-CodeBlock-highlightString);
|
|
8897
9001
|
}/*
|
|
8898
9002
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
8899
9003
|
*
|
|
@@ -10143,10 +10247,16 @@ li .htmlOl {
|
|
|
10143
10247
|
react_production_min.version = "18.2.0";
|
|
10144
10248
|
return react_production_min;
|
|
10145
10249
|
}
|
|
10146
|
-
|
|
10147
|
-
|
|
10250
|
+
var hasRequiredReact;
|
|
10251
|
+
function requireReact() {
|
|
10252
|
+
if (hasRequiredReact) return react.exports;
|
|
10253
|
+
hasRequiredReact = 1;
|
|
10254
|
+
{
|
|
10255
|
+
react.exports = requireReact_production_min();
|
|
10256
|
+
}
|
|
10257
|
+
return react.exports;
|
|
10148
10258
|
}
|
|
10149
|
-
var reactExports =
|
|
10259
|
+
var reactExports = requireReact();
|
|
10150
10260
|
const React = /* @__PURE__ */ getDefaultExportFromCjs(reactExports);
|
|
10151
10261
|
const React$1 = /* @__PURE__ */ _mergeNamespaces({
|
|
10152
10262
|
__proto__: null,
|
|
@@ -10167,7 +10277,7 @@ li .htmlOl {
|
|
|
10167
10277
|
function requireReactJsxRuntime_production_min() {
|
|
10168
10278
|
if (hasRequiredReactJsxRuntime_production_min) return reactJsxRuntime_production_min;
|
|
10169
10279
|
hasRequiredReactJsxRuntime_production_min = 1;
|
|
10170
|
-
var f2 =
|
|
10280
|
+
var f2 = requireReact(), k2 = Symbol.for("react.element"), l2 = Symbol.for("react.fragment"), m2 = Object.prototype.hasOwnProperty, n2 = f2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p2 = { key: true, ref: true, __self: true, __source: true };
|
|
10171
10281
|
function q2(c2, a2, g2) {
|
|
10172
10282
|
var b2, d2 = {}, e2 = null, h7 = null;
|
|
10173
10283
|
void 0 !== g2 && (e2 = "" + g2);
|
|
@@ -10457,7 +10567,7 @@ li .htmlOl {
|
|
|
10457
10567
|
function requireReactDom_production_min() {
|
|
10458
10568
|
if (hasRequiredReactDom_production_min) return reactDom_production_min;
|
|
10459
10569
|
hasRequiredReactDom_production_min = 1;
|
|
10460
|
-
var aa =
|
|
10570
|
+
var aa = requireReact(), ca = requireScheduler();
|
|
10461
10571
|
function p2(a2) {
|
|
10462
10572
|
for (var b2 = "https://reactjs.org/docs/error-decoder.html?invariant=" + a2, c2 = 1; c2 < arguments.length; c2++) b2 += "&args[]=" + encodeURIComponent(arguments[c2]);
|
|
10463
10573
|
return "Minified React error #" + a2 + "; visit " + b2 + " for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";
|
|
@@ -17930,7 +18040,7 @@ li .htmlOl {
|
|
|
17930
18040
|
});
|
|
17931
18041
|
}
|
|
17932
18042
|
}
|
|
17933
|
-
var define_process_env_default$a = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.
|
|
18043
|
+
var define_process_env_default$a = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.30 (built 5/14/2025)" };
|
|
17934
18044
|
class Mutation extends Removable {
|
|
17935
18045
|
constructor(config) {
|
|
17936
18046
|
super();
|
|
@@ -19115,7 +19225,7 @@ li .htmlOl {
|
|
|
19115
19225
|
function requireUseSyncExternalStoreShim_production() {
|
|
19116
19226
|
if (hasRequiredUseSyncExternalStoreShim_production) return useSyncExternalStoreShim_production;
|
|
19117
19227
|
hasRequiredUseSyncExternalStoreShim_production = 1;
|
|
19118
|
-
var React2 =
|
|
19228
|
+
var React2 = requireReact();
|
|
19119
19229
|
function is(x2, y2) {
|
|
19120
19230
|
return x2 === y2 && (0 !== x2 || 1 / x2 === 1 / y2) || x2 !== x2 && y2 !== y2;
|
|
19121
19231
|
}
|
|
@@ -29245,7 +29355,7 @@ ${error2.errorObject}`;
|
|
|
29245
29355
|
const themeVars$N = `'{"Input:borderRadius-Textarea-default": "var(--xmlui-borderRadius-Textarea-default)", "Input:borderColor-Textarea-default": "var(--xmlui-borderColor-Textarea-default)", "Input:borderWidth-Textarea-default": "var(--xmlui-borderWidth-Textarea-default)", "Input:borderStyle-Textarea-default": "var(--xmlui-borderStyle-Textarea-default)", "Input:fontSize-Textarea-default": "var(--xmlui-fontSize-Textarea-default)", "Input:padding-Textarea-default": "var(--xmlui-padding-Textarea-default)", "Input:backgroundColor-Textarea-default": "var(--xmlui-backgroundColor-Textarea-default)", "Input:boxShadow-Textarea-default": "var(--xmlui-boxShadow-Textarea-default)", "Input:textColor-Textarea-default": "var(--xmlui-textColor-Textarea-default)", "Input:borderColor-Textarea-default--hover": "var(--xmlui-borderColor-Textarea-default--hover)", "Input:backgroundColor-Textarea-default--hover": "var(--xmlui-backgroundColor-Textarea-default--hover)", "Input:boxShadow-Textarea-default--hover": "var(--xmlui-boxShadow-Textarea-default--hover)", "Input:textColor-Textarea-default--hover": "var(--xmlui-textColor-Textarea-default--hover)", "Input:borderColor-Textarea-default--focus": "var(--xmlui-borderColor-Textarea-default--focus)", "Input:backgroundColor-Textarea-default--focus": "var(--xmlui-backgroundColor-Textarea-default--focus)", "Input:boxShadow-Textarea-default--focus": "var(--xmlui-boxShadow-Textarea-default--focus)", "Input:textColor-Textarea-default--focus": "var(--xmlui-textColor-Textarea-default--focus)", "Input:outlineWidth-Textarea-default--focus": "var(--xmlui-outlineWidth-Textarea-default--focus)", "Input:outlineColor-Textarea-default--focus": "var(--xmlui-outlineColor-Textarea-default--focus)", "Input:outlineStyle-Textarea-default--focus": "var(--xmlui-outlineStyle-Textarea-default--focus)", "Input:outlineOffset-Textarea-default--focus": "var(--xmlui-outlineOffset-Textarea-default--focus)", "Input:color-placeholder-Textarea-default": "var(--xmlui-color-placeholder-Textarea-default)", "Input:borderRadius-Textarea-error": "var(--xmlui-borderRadius-Textarea-error)", "Input:borderColor-Textarea-error": "var(--xmlui-borderColor-Textarea-error)", "Input:borderWidth-Textarea-error": "var(--xmlui-borderWidth-Textarea-error)", "Input:borderStyle-Textarea-error": "var(--xmlui-borderStyle-Textarea-error)", "Input:fontSize-Textarea-error": "var(--xmlui-fontSize-Textarea-error)", "Input:padding-Textarea-error": "var(--xmlui-padding-Textarea-error)", "Input:backgroundColor-Textarea-error": "var(--xmlui-backgroundColor-Textarea-error)", "Input:boxShadow-Textarea-error": "var(--xmlui-boxShadow-Textarea-error)", "Input:textColor-Textarea-error": "var(--xmlui-textColor-Textarea-error)", "Input:borderColor-Textarea-error--hover": "var(--xmlui-borderColor-Textarea-error--hover)", "Input:backgroundColor-Textarea-error--hover": "var(--xmlui-backgroundColor-Textarea-error--hover)", "Input:boxShadow-Textarea-error--hover": "var(--xmlui-boxShadow-Textarea-error--hover)", "Input:textColor-Textarea-error--hover": "var(--xmlui-textColor-Textarea-error--hover)", "Input:borderColor-Textarea-error--focus": "var(--xmlui-borderColor-Textarea-error--focus)", "Input:backgroundColor-Textarea-error--focus": "var(--xmlui-backgroundColor-Textarea-error--focus)", "Input:boxShadow-Textarea-error--focus": "var(--xmlui-boxShadow-Textarea-error--focus)", "Input:textColor-Textarea-error--focus": "var(--xmlui-textColor-Textarea-error--focus)", "Input:outlineWidth-Textarea-error--focus": "var(--xmlui-outlineWidth-Textarea-error--focus)", "Input:outlineColor-Textarea-error--focus": "var(--xmlui-outlineColor-Textarea-error--focus)", "Input:outlineStyle-Textarea-error--focus": "var(--xmlui-outlineStyle-Textarea-error--focus)", "Input:outlineOffset-Textarea-error--focus": "var(--xmlui-outlineOffset-Textarea-error--focus)", "Input:color-placeholder-Textarea-error": "var(--xmlui-color-placeholder-Textarea-error)", "Input:borderRadius-Textarea-warning": "var(--xmlui-borderRadius-Textarea-warning)", "Input:borderColor-Textarea-warning": "var(--xmlui-borderColor-Textarea-warning)", "Input:borderWidth-Textarea-warning": "var(--xmlui-borderWidth-Textarea-warning)", "Input:borderStyle-Textarea-warning": "var(--xmlui-borderStyle-Textarea-warning)", "Input:fontSize-Textarea-warning": "var(--xmlui-fontSize-Textarea-warning)", "Input:padding-Textarea-warning": "var(--xmlui-padding-Textarea-warning)", "Input:backgroundColor-Textarea-warning": "var(--xmlui-backgroundColor-Textarea-warning)", "Input:boxShadow-Textarea-warning": "var(--xmlui-boxShadow-Textarea-warning)", "Input:textColor-Textarea-warning": "var(--xmlui-textColor-Textarea-warning)", "Input:borderColor-Textarea-warning--hover": "var(--xmlui-borderColor-Textarea-warning--hover)", "Input:backgroundColor-Textarea-warning--hover": "var(--xmlui-backgroundColor-Textarea-warning--hover)", "Input:boxShadow-Textarea-warning--hover": "var(--xmlui-boxShadow-Textarea-warning--hover)", "Input:textColor-Textarea-warning--hover": "var(--xmlui-textColor-Textarea-warning--hover)", "Input:borderColor-Textarea-warning--focus": "var(--xmlui-borderColor-Textarea-warning--focus)", "Input:backgroundColor-Textarea-warning--focus": "var(--xmlui-backgroundColor-Textarea-warning--focus)", "Input:boxShadow-Textarea-warning--focus": "var(--xmlui-boxShadow-Textarea-warning--focus)", "Input:textColor-Textarea-warning--focus": "var(--xmlui-textColor-Textarea-warning--focus)", "Input:outlineWidth-Textarea-warning--focus": "var(--xmlui-outlineWidth-Textarea-warning--focus)", "Input:outlineColor-Textarea-warning--focus": "var(--xmlui-outlineColor-Textarea-warning--focus)", "Input:outlineStyle-Textarea-warning--focus": "var(--xmlui-outlineStyle-Textarea-warning--focus)", "Input:outlineOffset-Textarea-warning--focus": "var(--xmlui-outlineOffset-Textarea-warning--focus)", "Input:color-placeholder-Textarea-warning": "var(--xmlui-color-placeholder-Textarea-warning)", "Input:borderRadius-Textarea-success": "var(--xmlui-borderRadius-Textarea-success)", "Input:borderColor-Textarea-success": "var(--xmlui-borderColor-Textarea-success)", "Input:borderWidth-Textarea-success": "var(--xmlui-borderWidth-Textarea-success)", "Input:borderStyle-Textarea-success": "var(--xmlui-borderStyle-Textarea-success)", "Input:fontSize-Textarea-success": "var(--xmlui-fontSize-Textarea-success)", "Input:padding-Textarea-success": "var(--xmlui-padding-Textarea-success)", "Input:backgroundColor-Textarea-success": "var(--xmlui-backgroundColor-Textarea-success)", "Input:boxShadow-Textarea-success": "var(--xmlui-boxShadow-Textarea-success)", "Input:textColor-Textarea-success": "var(--xmlui-textColor-Textarea-success)", "Input:borderColor-Textarea-success--hover": "var(--xmlui-borderColor-Textarea-success--hover)", "Input:backgroundColor-Textarea-success--hover": "var(--xmlui-backgroundColor-Textarea-success--hover)", "Input:boxShadow-Textarea-success--hover": "var(--xmlui-boxShadow-Textarea-success--hover)", "Input:textColor-Textarea-success--hover": "var(--xmlui-textColor-Textarea-success--hover)", "Input:borderColor-Textarea-success--focus": "var(--xmlui-borderColor-Textarea-success--focus)", "Input:backgroundColor-Textarea-success--focus": "var(--xmlui-backgroundColor-Textarea-success--focus)", "Input:boxShadow-Textarea-success--focus": "var(--xmlui-boxShadow-Textarea-success--focus)", "Input:textColor-Textarea-success--focus": "var(--xmlui-textColor-Textarea-success--focus)", "Input:outlineWidth-Textarea-success--focus": "var(--xmlui-outlineWidth-Textarea-success--focus)", "Input:outlineColor-Textarea-success--focus": "var(--xmlui-outlineColor-Textarea-success--focus)", "Input:outlineStyle-Textarea-success--focus": "var(--xmlui-outlineStyle-Textarea-success--focus)", "Input:outlineOffset-Textarea-success--focus": "var(--xmlui-outlineOffset-Textarea-success--focus)", "Input:color-placeholder-Textarea-success": "var(--xmlui-color-placeholder-Textarea-success)", "Input:backgroundColor-Textarea--disabled": "var(--xmlui-backgroundColor-Textarea--disabled)", "Input:textColor-Textarea--disabled": "var(--xmlui-textColor-Textarea--disabled)", "Input:borderColor-Textarea--disabled": "var(--xmlui-borderColor-Textarea--disabled)"}'`;
|
|
29246
29356
|
const textarea = "_textarea_y6osp_13";
|
|
29247
29357
|
const error$d = "_error_y6osp_53";
|
|
29248
|
-
const warning$
|
|
29358
|
+
const warning$d = "_warning_y6osp_85";
|
|
29249
29359
|
const valid$f = "_valid_y6osp_117";
|
|
29250
29360
|
const resizeHorizontal = "_resizeHorizontal_y6osp_156";
|
|
29251
29361
|
const resizeVertical = "_resizeVertical_y6osp_160";
|
|
@@ -29254,7 +29364,7 @@ ${error2.errorObject}`;
|
|
|
29254
29364
|
themeVars: themeVars$N,
|
|
29255
29365
|
textarea,
|
|
29256
29366
|
error: error$d,
|
|
29257
|
-
warning: warning$
|
|
29367
|
+
warning: warning$d,
|
|
29258
29368
|
valid: valid$f,
|
|
29259
29369
|
resizeHorizontal,
|
|
29260
29370
|
resizeVertical,
|
|
@@ -31619,7 +31729,7 @@ ${error2.errorObject}`;
|
|
|
31619
31729
|
state = null;
|
|
31620
31730
|
}
|
|
31621
31731
|
let location2 = createLocation$1(entries ? getCurrentLocation().pathname : "/", to2, state, key);
|
|
31622
|
-
warning$
|
|
31732
|
+
warning$c(location2.pathname.charAt(0) === "/", "relative pathnames are not supported in memory history: " + JSON.stringify(to2));
|
|
31623
31733
|
return location2;
|
|
31624
31734
|
}
|
|
31625
31735
|
function createHref(to2) {
|
|
@@ -31757,7 +31867,7 @@ ${error2.errorObject}`;
|
|
|
31757
31867
|
return href + "#" + (typeof to2 === "string" ? to2 : createPath(to2));
|
|
31758
31868
|
}
|
|
31759
31869
|
function validateHashLocation(location2, to2) {
|
|
31760
|
-
warning$
|
|
31870
|
+
warning$c(location2.pathname.charAt(0) === "/", "relative pathnames are not supported in hash history.push(" + JSON.stringify(to2) + ")");
|
|
31761
31871
|
}
|
|
31762
31872
|
return getUrlBasedHistory(createHashLocation, createHashHref, validateHashLocation, options2);
|
|
31763
31873
|
}
|
|
@@ -31766,7 +31876,7 @@ ${error2.errorObject}`;
|
|
|
31766
31876
|
throw new Error(message2);
|
|
31767
31877
|
}
|
|
31768
31878
|
}
|
|
31769
|
-
function warning$
|
|
31879
|
+
function warning$c(cond, message2) {
|
|
31770
31880
|
if (!cond) {
|
|
31771
31881
|
if (typeof console !== "undefined") console.warn(message2);
|
|
31772
31882
|
try {
|
|
@@ -32160,7 +32270,7 @@ ${error2.errorObject}`;
|
|
|
32160
32270
|
if (end2 === void 0) {
|
|
32161
32271
|
end2 = true;
|
|
32162
32272
|
}
|
|
32163
|
-
warning$
|
|
32273
|
+
warning$c(path2 === "*" || !path2.endsWith("*") || path2.endsWith("/*"), 'Route path "' + path2 + '" will be treated as if it were ' + ('"' + path2.replace(/\*$/, "/*") + '" because the `*` character must ') + "always follow a `/` in the pattern. To get rid of this warning, " + ('please change the route path to "' + path2.replace(/\*$/, "/*") + '".'));
|
|
32164
32274
|
let params = [];
|
|
32165
32275
|
let regexpSource = "^" + path2.replace(/\/*\*?$/, "").replace(/^\/*/, "/").replace(/[\\.*+^${}|()[\]]/g, "\\$&").replace(/\/:([\w-]+)(\?)?/g, (_2, paramName, isOptional) => {
|
|
32166
32276
|
params.push({
|
|
@@ -32186,7 +32296,7 @@ ${error2.errorObject}`;
|
|
|
32186
32296
|
try {
|
|
32187
32297
|
return value.split("/").map((v2) => decodeURIComponent(v2).replace(/\//g, "%2F")).join("/");
|
|
32188
32298
|
} catch (error2) {
|
|
32189
|
-
warning$
|
|
32299
|
+
warning$c(false, 'The URL path "' + value + '" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent ' + ("encoding (" + error2 + ")."));
|
|
32190
32300
|
return value;
|
|
32191
32301
|
}
|
|
32192
32302
|
}
|
|
@@ -37559,13 +37669,13 @@ ${error2.errorObject}`;
|
|
|
37559
37669
|
return "horizontal";
|
|
37560
37670
|
}
|
|
37561
37671
|
}
|
|
37562
|
-
const themeVars$E = `'{"border-NavPanel": "var(--xmlui-border-NavPanel)", "borderHorizontal-NavPanel": "var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel))", "borderVertical-NavPanel": "var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel))", "borderLeft-NavPanel": "var(--xmlui-borderLeft-NavPanel, var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel)))", "borderRight-NavPanel": "var(--xmlui-borderRight-NavPanel, var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel)))", "borderTop-NavPanel": "var(--xmlui-borderTop-NavPanel, var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel)))", "borderBottom-NavPanel": "var(--xmlui-borderBottom-NavPanel, var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel)))", "borderWidth-NavPanel": "var(--xmlui-borderWidth-NavPanel)", "borderHorizontalWidth-NavPanel": "var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel))", "borderLeftWidth-NavPanel": "var(--xmlui-borderLeftWidth-NavPanel, var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderRightWidth-NavPanel": "var(--xmlui-borderRightWidth-NavPanel, var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderVerticalWidth-NavPanel": "var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel))", "borderTopWidth-NavPanel": "var(--xmlui-borderTopWidth-NavPanel, var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderBottomWidth-NavPanel": "var(--xmlui-borderBottomWidth-NavPanel, var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderStyle-NavPanel": "var(--xmlui-borderStyle-NavPanel)", "borderHorizontalStyle-NavPanel": "var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel))", "borderLeftStyle-NavPanel": "var(--xmlui-borderLeftStyle-NavPanel, var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderRightStyle-NavPanel": "var(--xmlui-borderRightStyle-NavPanel, var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderVerticalStyle-NavPanel": "var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel))", "borderTopStyle-NavPanel": "var(--xmlui-borderTopStyle-NavPanel, var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderBottomStyle-NavPanel": "var(--xmlui-borderBottomStyle-NavPanel, var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderColor-NavPanel": "var(--xmlui-borderColor-NavPanel)", "borderHorizontalColor-NavPanel": "var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel))", "borderLeftColor-NavPanel": "var(--xmlui-borderLeftColor-NavPanel, var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderRightColor-NavPanel": "var(--xmlui-borderRightColor-NavPanel, var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderVerticalColor-NavPanel": "var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel))", "borderTopColor-NavPanel": "var(--xmlui-borderTopColor-NavPanel, var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderBottomColor-NavPanel": "var(--xmlui-borderBottomColor-NavPanel, var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderStartStartRadius-NavPanel": "var(--xmlui-borderStartStartRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderStartEndRadius-NavPanel": "var(--xmlui-borderStartEndRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderEndStartRadius-NavPanel": "var(--xmlui-borderEndStartRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderEndEndRadius-NavPanel": "var(--xmlui-borderEndEndRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "backgroundColor-NavPanel": "var(--xmlui-backgroundColor-NavPanel)", "boxShadow-NavPanel": "var(--xmlui-boxShadow-NavPanel)", "
|
|
37563
|
-
const wrapper$d = "
|
|
37564
|
-
const condensed = "
|
|
37565
|
-
const horizontal$4 = "
|
|
37566
|
-
const wrapperInner = "
|
|
37567
|
-
const logoWrapper = "
|
|
37568
|
-
const inDrawer = "
|
|
37672
|
+
const themeVars$E = `'{"border-NavPanel": "var(--xmlui-border-NavPanel)", "borderHorizontal-NavPanel": "var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel))", "borderVertical-NavPanel": "var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel))", "borderLeft-NavPanel": "var(--xmlui-borderLeft-NavPanel, var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel)))", "borderRight-NavPanel": "var(--xmlui-borderRight-NavPanel, var(--xmlui-borderHorizontal-NavPanel, var(--xmlui-border-NavPanel)))", "borderTop-NavPanel": "var(--xmlui-borderTop-NavPanel, var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel)))", "borderBottom-NavPanel": "var(--xmlui-borderBottom-NavPanel, var(--xmlui-borderVertical-NavPanel, var(--xmlui-border-NavPanel)))", "borderWidth-NavPanel": "var(--xmlui-borderWidth-NavPanel)", "borderHorizontalWidth-NavPanel": "var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel))", "borderLeftWidth-NavPanel": "var(--xmlui-borderLeftWidth-NavPanel, var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderRightWidth-NavPanel": "var(--xmlui-borderRightWidth-NavPanel, var(--xmlui-borderHorizontalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderVerticalWidth-NavPanel": "var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel))", "borderTopWidth-NavPanel": "var(--xmlui-borderTopWidth-NavPanel, var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderBottomWidth-NavPanel": "var(--xmlui-borderBottomWidth-NavPanel, var(--xmlui-borderVerticalWidth-NavPanel, var(--xmlui-borderWidth-NavPanel)))", "borderStyle-NavPanel": "var(--xmlui-borderStyle-NavPanel)", "borderHorizontalStyle-NavPanel": "var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel))", "borderLeftStyle-NavPanel": "var(--xmlui-borderLeftStyle-NavPanel, var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderRightStyle-NavPanel": "var(--xmlui-borderRightStyle-NavPanel, var(--xmlui-borderHorizontalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderVerticalStyle-NavPanel": "var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel))", "borderTopStyle-NavPanel": "var(--xmlui-borderTopStyle-NavPanel, var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderBottomStyle-NavPanel": "var(--xmlui-borderBottomStyle-NavPanel, var(--xmlui-borderVerticalStyle-NavPanel, var(--xmlui-borderStyle-NavPanel)))", "borderColor-NavPanel": "var(--xmlui-borderColor-NavPanel)", "borderHorizontalColor-NavPanel": "var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel))", "borderLeftColor-NavPanel": "var(--xmlui-borderLeftColor-NavPanel, var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderRightColor-NavPanel": "var(--xmlui-borderRightColor-NavPanel, var(--xmlui-borderHorizontalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderVerticalColor-NavPanel": "var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel))", "borderTopColor-NavPanel": "var(--xmlui-borderTopColor-NavPanel, var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderBottomColor-NavPanel": "var(--xmlui-borderBottomColor-NavPanel, var(--xmlui-borderVerticalColor-NavPanel, var(--xmlui-borderColor-NavPanel)))", "borderStartStartRadius-NavPanel": "var(--xmlui-borderStartStartRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderStartEndRadius-NavPanel": "var(--xmlui-borderStartEndRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderEndStartRadius-NavPanel": "var(--xmlui-borderEndStartRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "borderEndEndRadius-NavPanel": "var(--xmlui-borderEndEndRadius-NavPanel, var(--xmlui-borderRadius-NavPanel))", "backgroundColor-NavPanel": "var(--xmlui-backgroundColor-NavPanel)", "boxShadow-NavPanel": "var(--xmlui-boxShadow-NavPanel)", "padding-NavPanel": "var(--xmlui-padding-NavPanel)", "paddingHorizontal-NavPanel": "var(--xmlui-paddingHorizontal-NavPanel)", "paddingVertical-NavPanel": "var(--xmlui-paddingVertical-NavPanel, var(--xmlui-padding-NavPanel))", "paddingLeft-NavPanel": "var(--xmlui-paddingLeft-NavPanel, var(--xmlui-paddingHorizontal-NavPanel, var(--xmlui-padding-NavPanel)))", "paddingRight-NavPanel": "var(--xmlui-paddingRight-NavPanel, var(--xmlui-paddingHorizontal-NavPanel, var(--xmlui-padding-NavPanel)))", "paddingTop-NavPanel": "var(--xmlui-paddingTop-NavPanel, var(--xmlui-paddingVertical-NavPanel, var(--xmlui-padding-NavPanel)))", "paddingBottom-NavPanel": "var(--xmlui-paddingBottom-NavPanel, var(--xmlui-paddingVertical-NavPanel, var(--xmlui-padding-NavPanel)))", "padding-logo-NavPanel": "var(--xmlui-padding-logo-NavPanel)", "paddingHorizontal-logo-NavPanel": "var(--xmlui-paddingHorizontal-logo-NavPanel)", "paddingVertical-logo-NavPanel": "var(--xmlui-paddingVertical-logo-NavPanel)", "paddingLeft-logo-NavPanel": "var(--xmlui-paddingLeft-logo-NavPanel, var(--xmlui-paddingHorizontal-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "paddingRight-logo-NavPanel": "var(--xmlui-paddingRight-logo-NavPanel, var(--xmlui-paddingHorizontal-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "paddingTop-logo-NavPanel": "var(--xmlui-paddingTop-logo-NavPanel, var(--xmlui-paddingVertical-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "paddingBottom-logo-NavPanel": "var(--xmlui-paddingBottom-logo-NavPanel, var(--xmlui-paddingVertical-logo-NavPanel, var(--xmlui-padding-logo-NavPanel)))", "marginBottom-logo-NavPanel": "var(--xmlui-marginBottom-logo-NavPanel)", "color-scrollbar-NavPanel": "var(--xmlui-color-scrollbar-NavPanel)", "backgroundColor-scrollbar-NavPanel": "var(--xmlui-backgroundColor-scrollbar-NavPanel)", "maxWidth-content-App": "var(--xmlui-maxWidth-content-App)", "height-AppHeader": "var(--xmlui-height-AppHeader)", "paddingVertical-AppHeader": "var(--xmlui-paddingVertical-AppHeader)", "align-content-AppHeader": "var(--xmlui-align-content-AppHeader)"}'`;
|
|
37673
|
+
const wrapper$d = "_wrapper_fztu9_13";
|
|
37674
|
+
const condensed = "_condensed_fztu9_51";
|
|
37675
|
+
const horizontal$4 = "_horizontal_fztu9_54";
|
|
37676
|
+
const wrapperInner = "_wrapperInner_fztu9_58";
|
|
37677
|
+
const logoWrapper = "_logoWrapper_fztu9_77";
|
|
37678
|
+
const inDrawer = "_inDrawer_fztu9_87";
|
|
37569
37679
|
const styles$T = {
|
|
37570
37680
|
themeVars: themeVars$E,
|
|
37571
37681
|
wrapper: wrapper$d,
|
|
@@ -38107,18 +38217,18 @@ ${error2.errorObject}`;
|
|
|
38107
38217
|
);
|
|
38108
38218
|
}
|
|
38109
38219
|
);
|
|
38110
|
-
const themeVars$C = `'{"border-H1": "var(--xmlui-border-H1)", "borderHorizontal-H1": "var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1))", "borderVertical-H1": "var(--xmlui-borderVertical-H1, var(--xmlui-border-H1))", "borderLeft-H1": "var(--xmlui-borderLeft-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderRight-H1": "var(--xmlui-borderRight-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderTop-H1": "var(--xmlui-borderTop-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderBottom-H1": "var(--xmlui-borderBottom-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderWidth-H1": "var(--xmlui-borderWidth-H1)", "borderHorizontalWidth-H1": "var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1))", "borderLeftWidth-H1": "var(--xmlui-borderLeftWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderRightWidth-H1": "var(--xmlui-borderRightWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderVerticalWidth-H1": "var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1))", "borderTopWidth-H1": "var(--xmlui-borderTopWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderBottomWidth-H1": "var(--xmlui-borderBottomWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderStyle-H1": "var(--xmlui-borderStyle-H1)", "borderHorizontalStyle-H1": "var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1))", "borderLeftStyle-H1": "var(--xmlui-borderLeftStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderRightStyle-H1": "var(--xmlui-borderRightStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderVerticalStyle-H1": "var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1))", "borderTopStyle-H1": "var(--xmlui-borderTopStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderBottomStyle-H1": "var(--xmlui-borderBottomStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderColor-H1": "var(--xmlui-borderColor-H1)", "borderHorizontalColor-H1": "var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1))", "borderLeftColor-H1": "var(--xmlui-borderLeftColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderRightColor-H1": "var(--xmlui-borderRightColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderVerticalColor-H1": "var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1))", "borderTopColor-H1": "var(--xmlui-borderTopColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderBottomColor-H1": "var(--xmlui-borderBottomColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderStartStartRadius-H1": "var(--xmlui-borderStartStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderStartEndRadius-H1": "var(--xmlui-borderStartEndRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndStartRadius-H1": "var(--xmlui-borderEndStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndEndRadius-H1": "var(--xmlui-borderEndEndRadius-H1, var(--xmlui-borderRadius-H1))", "padding-H1": "var(--xmlui-padding-H1)", "paddingHorizontal-H1": "var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1))", "paddingVertical-H1": "var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1))", "paddingLeft-H1": "var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingRight-H1": "var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingTop-H1": "var(--xmlui-paddingTop-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "paddingBottom-H1": "var(--xmlui-paddingBottom-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "textColor-H1": "var(--xmlui-textColor-H1)", "fontFamily-H1": "var(--xmlui-fontFamily-H1)", "fontSize-H1": "var(--xmlui-fontSize-H1)", "fontStyle-H1": "var(--xmlui-fontStyle-H1)", "fontVariant-H1": "var(--xmlui-fontVariant-H1)", "fontWeight-H1": "var(--xmlui-fontWeight-H1)", "fontStretch-H1": "var(--xmlui-fontStretch-H1)", "textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "lineHeight-H1": "var(--xmlui-lineHeight-H1)", "backgroundColor-H1": "var(--xmlui-backgroundColor-H1)", "textTransform-H1": "var(--xmlui-textTransform-H1)", "letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "wordSpacing-H1": "var(--xmlui-wordSpacing-H1)", "textShadow-H1": "var(--xmlui-textShadow-H1)", "textIndent-H1": "var(--xmlui-textIndent-H1)", "textAlign-H1": "var(--xmlui-textAlign-H1)", "textAlignLast-H1": "var(--xmlui-textAlignLast-H1)", "wordBreak-H1": "var(--xmlui-wordBreak-H1)", "wordWrap-H1": "var(--xmlui-wordWrap-H1)", "direction-H1": "var(--xmlui-direction-H1)", "writingMode-H1": "var(--xmlui-writingMode-H1)", "lineBreak-H1": "var(--xmlui-lineBreak-H1)", "border-H2": "var(--xmlui-border-H2)", "borderHorizontal-H2": "var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2))", "borderVertical-H2": "var(--xmlui-borderVertical-H2, var(--xmlui-border-H2))", "borderLeft-H2": "var(--xmlui-borderLeft-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderRight-H2": "var(--xmlui-borderRight-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderTop-H2": "var(--xmlui-borderTop-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderBottom-H2": "var(--xmlui-borderBottom-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderWidth-H2": "var(--xmlui-borderWidth-H2)", "borderHorizontalWidth-H2": "var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2))", "borderLeftWidth-H2": "var(--xmlui-borderLeftWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderRightWidth-H2": "var(--xmlui-borderRightWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderVerticalWidth-H2": "var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2))", "borderTopWidth-H2": "var(--xmlui-borderTopWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderBottomWidth-H2": "var(--xmlui-borderBottomWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderStyle-H2": "var(--xmlui-borderStyle-H2)", "borderHorizontalStyle-H2": "var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2))", "borderLeftStyle-H2": "var(--xmlui-borderLeftStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderRightStyle-H2": "var(--xmlui-borderRightStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderVerticalStyle-H2": "var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2))", "borderTopStyle-H2": "var(--xmlui-borderTopStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderBottomStyle-H2": "var(--xmlui-borderBottomStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderColor-H2": "var(--xmlui-borderColor-H2)", "borderHorizontalColor-H2": "var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2))", "borderLeftColor-H2": "var(--xmlui-borderLeftColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderRightColor-H2": "var(--xmlui-borderRightColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderVerticalColor-H2": "var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2))", "borderTopColor-H2": "var(--xmlui-borderTopColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderBottomColor-H2": "var(--xmlui-borderBottomColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderStartStartRadius-H2": "var(--xmlui-borderStartStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderStartEndRadius-H2": "var(--xmlui-borderStartEndRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndStartRadius-H2": "var(--xmlui-borderEndStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndEndRadius-H2": "var(--xmlui-borderEndEndRadius-H2, var(--xmlui-borderRadius-H2))", "padding-H2": "var(--xmlui-padding-H2)", "paddingHorizontal-H2": "var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2))", "paddingVertical-H2": "var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2))", "paddingLeft-H2": "var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingRight-H2": "var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingTop-H2": "var(--xmlui-paddingTop-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "paddingBottom-H2": "var(--xmlui-paddingBottom-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "textColor-H2": "var(--xmlui-textColor-H2)", "fontFamily-H2": "var(--xmlui-fontFamily-H2)", "fontSize-H2": "var(--xmlui-fontSize-H2)", "fontStyle-H2": "var(--xmlui-fontStyle-H2)", "fontVariant-H2": "var(--xmlui-fontVariant-H2)", "fontWeight-H2": "var(--xmlui-fontWeight-H2)", "fontStretch-H2": "var(--xmlui-fontStretch-H2)", "textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "lineHeight-H2": "var(--xmlui-lineHeight-H2)", "backgroundColor-H2": "var(--xmlui-backgroundColor-H2)", "textTransform-H2": "var(--xmlui-textTransform-H2)", "letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "wordSpacing-H2": "var(--xmlui-wordSpacing-H2)", "textShadow-H2": "var(--xmlui-textShadow-H2)", "textIndent-H2": "var(--xmlui-textIndent-H2)", "textAlign-H2": "var(--xmlui-textAlign-H2)", "textAlignLast-H2": "var(--xmlui-textAlignLast-H2)", "wordBreak-H2": "var(--xmlui-wordBreak-H2)", "wordWrap-H2": "var(--xmlui-wordWrap-H2)", "direction-H2": "var(--xmlui-direction-H2)", "writingMode-H2": "var(--xmlui-writingMode-H2)", "lineBreak-H2": "var(--xmlui-lineBreak-H2)", "border-H3": "var(--xmlui-border-H3)", "borderHorizontal-H3": "var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3))", "borderVertical-H3": "var(--xmlui-borderVertical-H3, var(--xmlui-border-H3))", "borderLeft-H3": "var(--xmlui-borderLeft-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderRight-H3": "var(--xmlui-borderRight-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderTop-H3": "var(--xmlui-borderTop-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderBottom-H3": "var(--xmlui-borderBottom-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderWidth-H3": "var(--xmlui-borderWidth-H3)", "borderHorizontalWidth-H3": "var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3))", "borderLeftWidth-H3": "var(--xmlui-borderLeftWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderRightWidth-H3": "var(--xmlui-borderRightWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderVerticalWidth-H3": "var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3))", "borderTopWidth-H3": "var(--xmlui-borderTopWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderBottomWidth-H3": "var(--xmlui-borderBottomWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderStyle-H3": "var(--xmlui-borderStyle-H3)", "borderHorizontalStyle-H3": "var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3))", "borderLeftStyle-H3": "var(--xmlui-borderLeftStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderRightStyle-H3": "var(--xmlui-borderRightStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderVerticalStyle-H3": "var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3))", "borderTopStyle-H3": "var(--xmlui-borderTopStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderBottomStyle-H3": "var(--xmlui-borderBottomStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderColor-H3": "var(--xmlui-borderColor-H3)", "borderHorizontalColor-H3": "var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3))", "borderLeftColor-H3": "var(--xmlui-borderLeftColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderRightColor-H3": "var(--xmlui-borderRightColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderVerticalColor-H3": "var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3))", "borderTopColor-H3": "var(--xmlui-borderTopColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderBottomColor-H3": "var(--xmlui-borderBottomColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderStartStartRadius-H3": "var(--xmlui-borderStartStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderStartEndRadius-H3": "var(--xmlui-borderStartEndRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndStartRadius-H3": "var(--xmlui-borderEndStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndEndRadius-H3": "var(--xmlui-borderEndEndRadius-H3, var(--xmlui-borderRadius-H3))", "padding-H3": "var(--xmlui-padding-H3)", "paddingHorizontal-H3": "var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3))", "paddingVertical-H3": "var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3))", "paddingLeft-H3": "var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingRight-H3": "var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingTop-H3": "var(--xmlui-paddingTop-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "paddingBottom-H3": "var(--xmlui-paddingBottom-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "textColor-H3": "var(--xmlui-textColor-H3)", "fontFamily-H3": "var(--xmlui-fontFamily-H3)", "fontSize-H3": "var(--xmlui-fontSize-H3)", "fontStyle-H3": "var(--xmlui-fontStyle-H3)", "fontVariant-H3": "var(--xmlui-fontVariant-H3)", "fontWeight-H3": "var(--xmlui-fontWeight-H3)", "fontStretch-H3": "var(--xmlui-fontStretch-H3)", "textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "lineHeight-H3": "var(--xmlui-lineHeight-H3)", "backgroundColor-H3": "var(--xmlui-backgroundColor-H3)", "textTransform-H3": "var(--xmlui-textTransform-H3)", "letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "wordSpacing-H3": "var(--xmlui-wordSpacing-H3)", "textShadow-H3": "var(--xmlui-textShadow-H3)", "textIndent-H3": "var(--xmlui-textIndent-H3)", "textAlign-H3": "var(--xmlui-textAlign-H3)", "textAlignLast-H3": "var(--xmlui-textAlignLast-H3)", "wordBreak-H3": "var(--xmlui-wordBreak-H3)", "wordWrap-H3": "var(--xmlui-wordWrap-H3)", "direction-H3": "var(--xmlui-direction-H3)", "writingMode-H3": "var(--xmlui-writingMode-H3)", "lineBreak-H3": "var(--xmlui-lineBreak-H3)", "border-H4": "var(--xmlui-border-H4)", "borderHorizontal-H4": "var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4))", "borderVertical-H4": "var(--xmlui-borderVertical-H4, var(--xmlui-border-H4))", "borderLeft-H4": "var(--xmlui-borderLeft-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderRight-H4": "var(--xmlui-borderRight-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderTop-H4": "var(--xmlui-borderTop-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderBottom-H4": "var(--xmlui-borderBottom-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderWidth-H4": "var(--xmlui-borderWidth-H4)", "borderHorizontalWidth-H4": "var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4))", "borderLeftWidth-H4": "var(--xmlui-borderLeftWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderRightWidth-H4": "var(--xmlui-borderRightWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderVerticalWidth-H4": "var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4))", "borderTopWidth-H4": "var(--xmlui-borderTopWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderBottomWidth-H4": "var(--xmlui-borderBottomWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderStyle-H4": "var(--xmlui-borderStyle-H4)", "borderHorizontalStyle-H4": "var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4))", "borderLeftStyle-H4": "var(--xmlui-borderLeftStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderRightStyle-H4": "var(--xmlui-borderRightStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderVerticalStyle-H4": "var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4))", "borderTopStyle-H4": "var(--xmlui-borderTopStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderBottomStyle-H4": "var(--xmlui-borderBottomStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderColor-H4": "var(--xmlui-borderColor-H4)", "borderHorizontalColor-H4": "var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4))", "borderLeftColor-H4": "var(--xmlui-borderLeftColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderRightColor-H4": "var(--xmlui-borderRightColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderVerticalColor-H4": "var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4))", "borderTopColor-H4": "var(--xmlui-borderTopColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderBottomColor-H4": "var(--xmlui-borderBottomColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderStartStartRadius-H4": "var(--xmlui-borderStartStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderStartEndRadius-H4": "var(--xmlui-borderStartEndRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndStartRadius-H4": "var(--xmlui-borderEndStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndEndRadius-H4": "var(--xmlui-borderEndEndRadius-H4, var(--xmlui-borderRadius-H4))", "padding-H4": "var(--xmlui-padding-H4)", "paddingHorizontal-H4": "var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4))", "paddingVertical-H4": "var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4))", "paddingLeft-H4": "var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingRight-H4": "var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingTop-H4": "var(--xmlui-paddingTop-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "paddingBottom-H4": "var(--xmlui-paddingBottom-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "textColor-H4": "var(--xmlui-textColor-H4)", "fontFamily-H4": "var(--xmlui-fontFamily-H4)", "fontSize-H4": "var(--xmlui-fontSize-H4)", "fontStyle-H4": "var(--xmlui-fontStyle-H4)", "fontVariant-H4": "var(--xmlui-fontVariant-H4)", "fontWeight-H4": "var(--xmlui-fontWeight-H4)", "fontStretch-H4": "var(--xmlui-fontStretch-H4)", "textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "lineHeight-H4": "var(--xmlui-lineHeight-H4)", "backgroundColor-H4": "var(--xmlui-backgroundColor-H4)", "textTransform-H4": "var(--xmlui-textTransform-H4)", "letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "wordSpacing-H4": "var(--xmlui-wordSpacing-H4)", "textShadow-H4": "var(--xmlui-textShadow-H4)", "textIndent-H4": "var(--xmlui-textIndent-H4)", "textAlign-H4": "var(--xmlui-textAlign-H4)", "textAlignLast-H4": "var(--xmlui-textAlignLast-H4)", "wordBreak-H4": "var(--xmlui-wordBreak-H4)", "wordWrap-H4": "var(--xmlui-wordWrap-H4)", "direction-H4": "var(--xmlui-direction-H4)", "writingMode-H4": "var(--xmlui-writingMode-H4)", "lineBreak-H4": "var(--xmlui-lineBreak-H4)", "border-H5": "var(--xmlui-border-H5)", "borderHorizontal-H5": "var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5))", "borderVertical-H5": "var(--xmlui-borderVertical-H5, var(--xmlui-border-H5))", "borderLeft-H5": "var(--xmlui-borderLeft-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderRight-H5": "var(--xmlui-borderRight-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderTop-H5": "var(--xmlui-borderTop-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderBottom-H5": "var(--xmlui-borderBottom-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderWidth-H5": "var(--xmlui-borderWidth-H5)", "borderHorizontalWidth-H5": "var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5))", "borderLeftWidth-H5": "var(--xmlui-borderLeftWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderRightWidth-H5": "var(--xmlui-borderRightWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderVerticalWidth-H5": "var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5))", "borderTopWidth-H5": "var(--xmlui-borderTopWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderBottomWidth-H5": "var(--xmlui-borderBottomWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderStyle-H5": "var(--xmlui-borderStyle-H5)", "borderHorizontalStyle-H5": "var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5))", "borderLeftStyle-H5": "var(--xmlui-borderLeftStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderRightStyle-H5": "var(--xmlui-borderRightStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderVerticalStyle-H5": "var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5))", "borderTopStyle-H5": "var(--xmlui-borderTopStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderBottomStyle-H5": "var(--xmlui-borderBottomStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderColor-H5": "var(--xmlui-borderColor-H5)", "borderHorizontalColor-H5": "var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5))", "borderLeftColor-H5": "var(--xmlui-borderLeftColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderRightColor-H5": "var(--xmlui-borderRightColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderVerticalColor-H5": "var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5))", "borderTopColor-H5": "var(--xmlui-borderTopColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderBottomColor-H5": "var(--xmlui-borderBottomColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderStartStartRadius-H5": "var(--xmlui-borderStartStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderStartEndRadius-H5": "var(--xmlui-borderStartEndRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndStartRadius-H5": "var(--xmlui-borderEndStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndEndRadius-H5": "var(--xmlui-borderEndEndRadius-H5, var(--xmlui-borderRadius-H5))", "padding-H5": "var(--xmlui-padding-H5)", "paddingHorizontal-H5": "var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5))", "paddingVertical-H5": "var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5))", "paddingLeft-H5": "var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingRight-H5": "var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingTop-H5": "var(--xmlui-paddingTop-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "paddingBottom-H5": "var(--xmlui-paddingBottom-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "textColor-H5": "var(--xmlui-textColor-H5)", "fontFamily-H5": "var(--xmlui-fontFamily-H5)", "fontSize-H5": "var(--xmlui-fontSize-H5)", "fontStyle-H5": "var(--xmlui-fontStyle-H5)", "fontVariant-H5": "var(--xmlui-fontVariant-H5)", "fontWeight-H5": "var(--xmlui-fontWeight-H5)", "fontStretch-H5": "var(--xmlui-fontStretch-H5)", "textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "lineHeight-H5": "var(--xmlui-lineHeight-H5)", "backgroundColor-H5": "var(--xmlui-backgroundColor-H5)", "textTransform-H5": "var(--xmlui-textTransform-H5)", "letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "wordSpacing-H5": "var(--xmlui-wordSpacing-H5)", "textShadow-H5": "var(--xmlui-textShadow-H5)", "textIndent-H5": "var(--xmlui-textIndent-H5)", "textAlign-H5": "var(--xmlui-textAlign-H5)", "textAlignLast-H5": "var(--xmlui-textAlignLast-H5)", "wordBreak-H5": "var(--xmlui-wordBreak-H5)", "wordWrap-H5": "var(--xmlui-wordWrap-H5)", "direction-H5": "var(--xmlui-direction-H5)", "writingMode-H5": "var(--xmlui-writingMode-H5)", "lineBreak-H5": "var(--xmlui-lineBreak-H5)", "border-H6": "var(--xmlui-border-H6)", "borderHorizontal-H6": "var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6))", "borderVertical-H6": "var(--xmlui-borderVertical-H6, var(--xmlui-border-H6))", "borderLeft-H6": "var(--xmlui-borderLeft-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderRight-H6": "var(--xmlui-borderRight-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderTop-H6": "var(--xmlui-borderTop-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderBottom-H6": "var(--xmlui-borderBottom-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderWidth-H6": "var(--xmlui-borderWidth-H6)", "borderHorizontalWidth-H6": "var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6))", "borderLeftWidth-H6": "var(--xmlui-borderLeftWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderRightWidth-H6": "var(--xmlui-borderRightWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderVerticalWidth-H6": "var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6))", "borderTopWidth-H6": "var(--xmlui-borderTopWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderBottomWidth-H6": "var(--xmlui-borderBottomWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderStyle-H6": "var(--xmlui-borderStyle-H6)", "borderHorizontalStyle-H6": "var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6))", "borderLeftStyle-H6": "var(--xmlui-borderLeftStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderRightStyle-H6": "var(--xmlui-borderRightStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderVerticalStyle-H6": "var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6))", "borderTopStyle-H6": "var(--xmlui-borderTopStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderBottomStyle-H6": "var(--xmlui-borderBottomStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderColor-H6": "var(--xmlui-borderColor-H6)", "borderHorizontalColor-H6": "var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6))", "borderLeftColor-H6": "var(--xmlui-borderLeftColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderRightColor-H6": "var(--xmlui-borderRightColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderVerticalColor-H6": "var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6))", "borderTopColor-H6": "var(--xmlui-borderTopColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderBottomColor-H6": "var(--xmlui-borderBottomColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderStartStartRadius-H6": "var(--xmlui-borderStartStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderStartEndRadius-H6": "var(--xmlui-borderStartEndRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndStartRadius-H6": "var(--xmlui-borderEndStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndEndRadius-H6": "var(--xmlui-borderEndEndRadius-H6, var(--xmlui-borderRadius-H6))", "padding-H6": "var(--xmlui-padding-H6)", "paddingHorizontal-H6": "var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6))", "paddingVertical-H6": "var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6))", "paddingLeft-H6": "var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingRight-H6": "var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingTop-H6": "var(--xmlui-paddingTop-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "paddingBottom-H6": "var(--xmlui-paddingBottom-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "textColor-H6": "var(--xmlui-textColor-H6)", "fontFamily-H6": "var(--xmlui-fontFamily-H6)", "fontSize-H6": "var(--xmlui-fontSize-H6)", "fontStyle-H6": "var(--xmlui-fontStyle-H6)", "fontVariant-H6": "var(--xmlui-fontVariant-H6)", "fontWeight-H6": "var(--xmlui-fontWeight-H6)", "fontStretch-H6": "var(--xmlui-fontStretch-H6)", "textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)", "lineHeight-H6": "var(--xmlui-lineHeight-H6)", "backgroundColor-H6": "var(--xmlui-backgroundColor-H6)", "textTransform-H6": "var(--xmlui-textTransform-H6)", "letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "wordSpacing-H6": "var(--xmlui-wordSpacing-H6)", "textShadow-H6": "var(--xmlui-textShadow-H6)", "textIndent-H6": "var(--xmlui-textIndent-H6)", "textAlign-H6": "var(--xmlui-textAlign-H6)", "textAlignLast-H6": "var(--xmlui-textAlignLast-H6)", "wordBreak-H6": "var(--xmlui-wordBreak-H6)", "wordWrap-H6": "var(--xmlui-wordWrap-H6)", "direction-H6": "var(--xmlui-direction-H6)", "writingMode-H6": "var(--xmlui-writingMode-H6)", "lineBreak-H6": "var(--xmlui-lineBreak-H6)", "Heading:textColor-H1": "var(--xmlui-textColor-H1)", "Heading:letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "Heading:fontFamily-H1": "var(--xmlui-fontFamily-H1)", "Heading:fontWeight-H1": "var(--xmlui-fontWeight-H1)", "marginTop-H1": "var(--xmlui-marginTop-H1)", "marginBottom-H1": "var(--xmlui-marginBottom-H1)", "Heading:textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "Heading:textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "Heading:textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "Heading:textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "Heading:textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "Heading:textColor-H2": "var(--xmlui-textColor-H2)", "Heading:letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "Heading:fontFamily-H2": "var(--xmlui-fontFamily-H2)", "Heading:fontWeight-H2": "var(--xmlui-fontWeight-H2)", "marginTop-H2": "var(--xmlui-marginTop-H2)", "marginBottom-H2": "var(--xmlui-marginBottom-H2)", "Heading:textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "Heading:textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "Heading:textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "Heading:textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "Heading:textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "Heading:textColor-H3": "var(--xmlui-textColor-H3)", "Heading:letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "Heading:fontFamily-H3": "var(--xmlui-fontFamily-H3)", "Heading:fontWeight-H3": "var(--xmlui-fontWeight-H3)", "marginTop-H3": "var(--xmlui-marginTop-H3)", "marginBottom-H3": "var(--xmlui-marginBottom-H3)", "Heading:textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "Heading:textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "Heading:textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "Heading:textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "Heading:textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "Heading:textColor-H4": "var(--xmlui-textColor-H4)", "Heading:letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "Heading:fontFamily-H4": "var(--xmlui-fontFamily-H4)", "Heading:fontWeight-H4": "var(--xmlui-fontWeight-H4)", "marginTop-H4": "var(--xmlui-marginTop-H4)", "marginBottom-H4": "var(--xmlui-marginBottom-H4)", "Heading:textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "Heading:textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "Heading:textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "Heading:textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "Heading:textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "Heading:textColor-H5": "var(--xmlui-textColor-H5)", "Heading:letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "Heading:fontFamily-H5": "var(--xmlui-fontFamily-H5)", "Heading:fontWeight-H5": "var(--xmlui-fontWeight-H5)", "marginTop-H5": "var(--xmlui-marginTop-H5)", "marginBottom-H5": "var(--xmlui-marginBottom-H5)", "Heading:textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "Heading:textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "Heading:textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "Heading:textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "Heading:textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "Heading:textColor-H6": "var(--xmlui-textColor-H6)", "Heading:letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "Heading:fontFamily-H6": "var(--xmlui-fontFamily-H6)", "Heading:fontWeight-H6": "var(--xmlui-fontWeight-H6)", "marginTop-H6": "var(--xmlui-marginTop-H6)", "marginBottom-H6": "var(--xmlui-marginBottom-H6)", "Heading:textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "Heading:textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "Heading:textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "Heading:textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "Heading:textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)"}'`;
|
|
38111
|
-
const heading$4 = "
|
|
38112
|
-
const h1 = "
|
|
38113
|
-
const h2 = "
|
|
38114
|
-
const h3 = "
|
|
38115
|
-
const h4 = "
|
|
38116
|
-
const h5 = "
|
|
38117
|
-
const h6 = "
|
|
38118
|
-
const anchorRef$1 = "
|
|
38119
|
-
const truncateOverflow$1 = "
|
|
38120
|
-
const preserveLinebreaks$1 = "
|
|
38121
|
-
const noEllipsis$1 = "
|
|
38220
|
+
const themeVars$C = `'{"border-H1": "var(--xmlui-border-H1)", "borderHorizontal-H1": "var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1))", "borderVertical-H1": "var(--xmlui-borderVertical-H1, var(--xmlui-border-H1))", "borderLeft-H1": "var(--xmlui-borderLeft-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderRight-H1": "var(--xmlui-borderRight-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)))", "borderTop-H1": "var(--xmlui-borderTop-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderBottom-H1": "var(--xmlui-borderBottom-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)))", "borderWidth-H1": "var(--xmlui-borderWidth-H1)", "borderHorizontalWidth-H1": "var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1))", "borderLeftWidth-H1": "var(--xmlui-borderLeftWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderRightWidth-H1": "var(--xmlui-borderRightWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderVerticalWidth-H1": "var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1))", "borderTopWidth-H1": "var(--xmlui-borderTopWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderBottomWidth-H1": "var(--xmlui-borderBottomWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)))", "borderStyle-H1": "var(--xmlui-borderStyle-H1)", "borderHorizontalStyle-H1": "var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1))", "borderLeftStyle-H1": "var(--xmlui-borderLeftStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderRightStyle-H1": "var(--xmlui-borderRightStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderVerticalStyle-H1": "var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1))", "borderTopStyle-H1": "var(--xmlui-borderTopStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderBottomStyle-H1": "var(--xmlui-borderBottomStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)))", "borderColor-H1": "var(--xmlui-borderColor-H1)", "borderHorizontalColor-H1": "var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1))", "borderLeftColor-H1": "var(--xmlui-borderLeftColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderRightColor-H1": "var(--xmlui-borderRightColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)))", "borderVerticalColor-H1": "var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1))", "borderTopColor-H1": "var(--xmlui-borderTopColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderBottomColor-H1": "var(--xmlui-borderBottomColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)))", "borderStartStartRadius-H1": "var(--xmlui-borderStartStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderStartEndRadius-H1": "var(--xmlui-borderStartEndRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndStartRadius-H1": "var(--xmlui-borderEndStartRadius-H1, var(--xmlui-borderRadius-H1))", "borderEndEndRadius-H1": "var(--xmlui-borderEndEndRadius-H1, var(--xmlui-borderRadius-H1))", "padding-H1": "var(--xmlui-padding-H1)", "paddingHorizontal-H1": "var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1))", "paddingVertical-H1": "var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1))", "paddingLeft-H1": "var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingRight-H1": "var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)))", "paddingTop-H1": "var(--xmlui-paddingTop-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "paddingBottom-H1": "var(--xmlui-paddingBottom-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)))", "textColor-H1": "var(--xmlui-textColor-H1)", "fontFamily-H1": "var(--xmlui-fontFamily-H1)", "fontSize-H1": "var(--xmlui-fontSize-H1)", "fontStyle-H1": "var(--xmlui-fontStyle-H1)", "fontVariant-H1": "var(--xmlui-fontVariant-H1)", "fontWeight-H1": "var(--xmlui-fontWeight-H1)", "fontStretch-H1": "var(--xmlui-fontStretch-H1)", "textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "lineHeight-H1": "var(--xmlui-lineHeight-H1)", "backgroundColor-H1": "var(--xmlui-backgroundColor-H1)", "textTransform-H1": "var(--xmlui-textTransform-H1)", "letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "wordSpacing-H1": "var(--xmlui-wordSpacing-H1)", "textShadow-H1": "var(--xmlui-textShadow-H1)", "textIndent-H1": "var(--xmlui-textIndent-H1)", "textAlign-H1": "var(--xmlui-textAlign-H1)", "textAlignLast-H1": "var(--xmlui-textAlignLast-H1)", "wordBreak-H1": "var(--xmlui-wordBreak-H1)", "wordWrap-H1": "var(--xmlui-wordWrap-H1)", "direction-H1": "var(--xmlui-direction-H1)", "writingMode-H1": "var(--xmlui-writingMode-H1)", "lineBreak-H1": "var(--xmlui-lineBreak-H1)", "border-H2": "var(--xmlui-border-H2)", "borderHorizontal-H2": "var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2))", "borderVertical-H2": "var(--xmlui-borderVertical-H2, var(--xmlui-border-H2))", "borderLeft-H2": "var(--xmlui-borderLeft-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderRight-H2": "var(--xmlui-borderRight-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)))", "borderTop-H2": "var(--xmlui-borderTop-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderBottom-H2": "var(--xmlui-borderBottom-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)))", "borderWidth-H2": "var(--xmlui-borderWidth-H2)", "borderHorizontalWidth-H2": "var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2))", "borderLeftWidth-H2": "var(--xmlui-borderLeftWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderRightWidth-H2": "var(--xmlui-borderRightWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderVerticalWidth-H2": "var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2))", "borderTopWidth-H2": "var(--xmlui-borderTopWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderBottomWidth-H2": "var(--xmlui-borderBottomWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)))", "borderStyle-H2": "var(--xmlui-borderStyle-H2)", "borderHorizontalStyle-H2": "var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2))", "borderLeftStyle-H2": "var(--xmlui-borderLeftStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderRightStyle-H2": "var(--xmlui-borderRightStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderVerticalStyle-H2": "var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2))", "borderTopStyle-H2": "var(--xmlui-borderTopStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderBottomStyle-H2": "var(--xmlui-borderBottomStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)))", "borderColor-H2": "var(--xmlui-borderColor-H2)", "borderHorizontalColor-H2": "var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2))", "borderLeftColor-H2": "var(--xmlui-borderLeftColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderRightColor-H2": "var(--xmlui-borderRightColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)))", "borderVerticalColor-H2": "var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2))", "borderTopColor-H2": "var(--xmlui-borderTopColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderBottomColor-H2": "var(--xmlui-borderBottomColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)))", "borderStartStartRadius-H2": "var(--xmlui-borderStartStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderStartEndRadius-H2": "var(--xmlui-borderStartEndRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndStartRadius-H2": "var(--xmlui-borderEndStartRadius-H2, var(--xmlui-borderRadius-H2))", "borderEndEndRadius-H2": "var(--xmlui-borderEndEndRadius-H2, var(--xmlui-borderRadius-H2))", "padding-H2": "var(--xmlui-padding-H2)", "paddingHorizontal-H2": "var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2))", "paddingVertical-H2": "var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2))", "paddingLeft-H2": "var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingRight-H2": "var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)))", "paddingTop-H2": "var(--xmlui-paddingTop-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "paddingBottom-H2": "var(--xmlui-paddingBottom-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)))", "textColor-H2": "var(--xmlui-textColor-H2)", "fontFamily-H2": "var(--xmlui-fontFamily-H2)", "fontSize-H2": "var(--xmlui-fontSize-H2)", "fontStyle-H2": "var(--xmlui-fontStyle-H2)", "fontVariant-H2": "var(--xmlui-fontVariant-H2)", "fontWeight-H2": "var(--xmlui-fontWeight-H2)", "fontStretch-H2": "var(--xmlui-fontStretch-H2)", "textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "lineHeight-H2": "var(--xmlui-lineHeight-H2)", "backgroundColor-H2": "var(--xmlui-backgroundColor-H2)", "textTransform-H2": "var(--xmlui-textTransform-H2)", "letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "wordSpacing-H2": "var(--xmlui-wordSpacing-H2)", "textShadow-H2": "var(--xmlui-textShadow-H2)", "textIndent-H2": "var(--xmlui-textIndent-H2)", "textAlign-H2": "var(--xmlui-textAlign-H2)", "textAlignLast-H2": "var(--xmlui-textAlignLast-H2)", "wordBreak-H2": "var(--xmlui-wordBreak-H2)", "wordWrap-H2": "var(--xmlui-wordWrap-H2)", "direction-H2": "var(--xmlui-direction-H2)", "writingMode-H2": "var(--xmlui-writingMode-H2)", "lineBreak-H2": "var(--xmlui-lineBreak-H2)", "border-H3": "var(--xmlui-border-H3)", "borderHorizontal-H3": "var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3))", "borderVertical-H3": "var(--xmlui-borderVertical-H3, var(--xmlui-border-H3))", "borderLeft-H3": "var(--xmlui-borderLeft-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderRight-H3": "var(--xmlui-borderRight-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)))", "borderTop-H3": "var(--xmlui-borderTop-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderBottom-H3": "var(--xmlui-borderBottom-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)))", "borderWidth-H3": "var(--xmlui-borderWidth-H3)", "borderHorizontalWidth-H3": "var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3))", "borderLeftWidth-H3": "var(--xmlui-borderLeftWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderRightWidth-H3": "var(--xmlui-borderRightWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderVerticalWidth-H3": "var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3))", "borderTopWidth-H3": "var(--xmlui-borderTopWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderBottomWidth-H3": "var(--xmlui-borderBottomWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)))", "borderStyle-H3": "var(--xmlui-borderStyle-H3)", "borderHorizontalStyle-H3": "var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3))", "borderLeftStyle-H3": "var(--xmlui-borderLeftStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderRightStyle-H3": "var(--xmlui-borderRightStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderVerticalStyle-H3": "var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3))", "borderTopStyle-H3": "var(--xmlui-borderTopStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderBottomStyle-H3": "var(--xmlui-borderBottomStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)))", "borderColor-H3": "var(--xmlui-borderColor-H3)", "borderHorizontalColor-H3": "var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3))", "borderLeftColor-H3": "var(--xmlui-borderLeftColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderRightColor-H3": "var(--xmlui-borderRightColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)))", "borderVerticalColor-H3": "var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3))", "borderTopColor-H3": "var(--xmlui-borderTopColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderBottomColor-H3": "var(--xmlui-borderBottomColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)))", "borderStartStartRadius-H3": "var(--xmlui-borderStartStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderStartEndRadius-H3": "var(--xmlui-borderStartEndRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndStartRadius-H3": "var(--xmlui-borderEndStartRadius-H3, var(--xmlui-borderRadius-H3))", "borderEndEndRadius-H3": "var(--xmlui-borderEndEndRadius-H3, var(--xmlui-borderRadius-H3))", "padding-H3": "var(--xmlui-padding-H3)", "paddingHorizontal-H3": "var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3))", "paddingVertical-H3": "var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3))", "paddingLeft-H3": "var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingRight-H3": "var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)))", "paddingTop-H3": "var(--xmlui-paddingTop-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "paddingBottom-H3": "var(--xmlui-paddingBottom-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)))", "textColor-H3": "var(--xmlui-textColor-H3)", "fontFamily-H3": "var(--xmlui-fontFamily-H3)", "fontSize-H3": "var(--xmlui-fontSize-H3)", "fontStyle-H3": "var(--xmlui-fontStyle-H3)", "fontVariant-H3": "var(--xmlui-fontVariant-H3)", "fontWeight-H3": "var(--xmlui-fontWeight-H3)", "fontStretch-H3": "var(--xmlui-fontStretch-H3)", "textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "lineHeight-H3": "var(--xmlui-lineHeight-H3)", "backgroundColor-H3": "var(--xmlui-backgroundColor-H3)", "textTransform-H3": "var(--xmlui-textTransform-H3)", "letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "wordSpacing-H3": "var(--xmlui-wordSpacing-H3)", "textShadow-H3": "var(--xmlui-textShadow-H3)", "textIndent-H3": "var(--xmlui-textIndent-H3)", "textAlign-H3": "var(--xmlui-textAlign-H3)", "textAlignLast-H3": "var(--xmlui-textAlignLast-H3)", "wordBreak-H3": "var(--xmlui-wordBreak-H3)", "wordWrap-H3": "var(--xmlui-wordWrap-H3)", "direction-H3": "var(--xmlui-direction-H3)", "writingMode-H3": "var(--xmlui-writingMode-H3)", "lineBreak-H3": "var(--xmlui-lineBreak-H3)", "border-H4": "var(--xmlui-border-H4)", "borderHorizontal-H4": "var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4))", "borderVertical-H4": "var(--xmlui-borderVertical-H4, var(--xmlui-border-H4))", "borderLeft-H4": "var(--xmlui-borderLeft-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderRight-H4": "var(--xmlui-borderRight-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)))", "borderTop-H4": "var(--xmlui-borderTop-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderBottom-H4": "var(--xmlui-borderBottom-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)))", "borderWidth-H4": "var(--xmlui-borderWidth-H4)", "borderHorizontalWidth-H4": "var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4))", "borderLeftWidth-H4": "var(--xmlui-borderLeftWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderRightWidth-H4": "var(--xmlui-borderRightWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderVerticalWidth-H4": "var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4))", "borderTopWidth-H4": "var(--xmlui-borderTopWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderBottomWidth-H4": "var(--xmlui-borderBottomWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)))", "borderStyle-H4": "var(--xmlui-borderStyle-H4)", "borderHorizontalStyle-H4": "var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4))", "borderLeftStyle-H4": "var(--xmlui-borderLeftStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderRightStyle-H4": "var(--xmlui-borderRightStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderVerticalStyle-H4": "var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4))", "borderTopStyle-H4": "var(--xmlui-borderTopStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderBottomStyle-H4": "var(--xmlui-borderBottomStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)))", "borderColor-H4": "var(--xmlui-borderColor-H4)", "borderHorizontalColor-H4": "var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4))", "borderLeftColor-H4": "var(--xmlui-borderLeftColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderRightColor-H4": "var(--xmlui-borderRightColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)))", "borderVerticalColor-H4": "var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4))", "borderTopColor-H4": "var(--xmlui-borderTopColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderBottomColor-H4": "var(--xmlui-borderBottomColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)))", "borderStartStartRadius-H4": "var(--xmlui-borderStartStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderStartEndRadius-H4": "var(--xmlui-borderStartEndRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndStartRadius-H4": "var(--xmlui-borderEndStartRadius-H4, var(--xmlui-borderRadius-H4))", "borderEndEndRadius-H4": "var(--xmlui-borderEndEndRadius-H4, var(--xmlui-borderRadius-H4))", "padding-H4": "var(--xmlui-padding-H4)", "paddingHorizontal-H4": "var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4))", "paddingVertical-H4": "var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4))", "paddingLeft-H4": "var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingRight-H4": "var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)))", "paddingTop-H4": "var(--xmlui-paddingTop-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "paddingBottom-H4": "var(--xmlui-paddingBottom-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)))", "textColor-H4": "var(--xmlui-textColor-H4)", "fontFamily-H4": "var(--xmlui-fontFamily-H4)", "fontSize-H4": "var(--xmlui-fontSize-H4)", "fontStyle-H4": "var(--xmlui-fontStyle-H4)", "fontVariant-H4": "var(--xmlui-fontVariant-H4)", "fontWeight-H4": "var(--xmlui-fontWeight-H4)", "fontStretch-H4": "var(--xmlui-fontStretch-H4)", "textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "lineHeight-H4": "var(--xmlui-lineHeight-H4)", "backgroundColor-H4": "var(--xmlui-backgroundColor-H4)", "textTransform-H4": "var(--xmlui-textTransform-H4)", "letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "wordSpacing-H4": "var(--xmlui-wordSpacing-H4)", "textShadow-H4": "var(--xmlui-textShadow-H4)", "textIndent-H4": "var(--xmlui-textIndent-H4)", "textAlign-H4": "var(--xmlui-textAlign-H4)", "textAlignLast-H4": "var(--xmlui-textAlignLast-H4)", "wordBreak-H4": "var(--xmlui-wordBreak-H4)", "wordWrap-H4": "var(--xmlui-wordWrap-H4)", "direction-H4": "var(--xmlui-direction-H4)", "writingMode-H4": "var(--xmlui-writingMode-H4)", "lineBreak-H4": "var(--xmlui-lineBreak-H4)", "border-H5": "var(--xmlui-border-H5)", "borderHorizontal-H5": "var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5))", "borderVertical-H5": "var(--xmlui-borderVertical-H5, var(--xmlui-border-H5))", "borderLeft-H5": "var(--xmlui-borderLeft-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderRight-H5": "var(--xmlui-borderRight-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)))", "borderTop-H5": "var(--xmlui-borderTop-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderBottom-H5": "var(--xmlui-borderBottom-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)))", "borderWidth-H5": "var(--xmlui-borderWidth-H5)", "borderHorizontalWidth-H5": "var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5))", "borderLeftWidth-H5": "var(--xmlui-borderLeftWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderRightWidth-H5": "var(--xmlui-borderRightWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderVerticalWidth-H5": "var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5))", "borderTopWidth-H5": "var(--xmlui-borderTopWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderBottomWidth-H5": "var(--xmlui-borderBottomWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)))", "borderStyle-H5": "var(--xmlui-borderStyle-H5)", "borderHorizontalStyle-H5": "var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5))", "borderLeftStyle-H5": "var(--xmlui-borderLeftStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderRightStyle-H5": "var(--xmlui-borderRightStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderVerticalStyle-H5": "var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5))", "borderTopStyle-H5": "var(--xmlui-borderTopStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderBottomStyle-H5": "var(--xmlui-borderBottomStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)))", "borderColor-H5": "var(--xmlui-borderColor-H5)", "borderHorizontalColor-H5": "var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5))", "borderLeftColor-H5": "var(--xmlui-borderLeftColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderRightColor-H5": "var(--xmlui-borderRightColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)))", "borderVerticalColor-H5": "var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5))", "borderTopColor-H5": "var(--xmlui-borderTopColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderBottomColor-H5": "var(--xmlui-borderBottomColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)))", "borderStartStartRadius-H5": "var(--xmlui-borderStartStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderStartEndRadius-H5": "var(--xmlui-borderStartEndRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndStartRadius-H5": "var(--xmlui-borderEndStartRadius-H5, var(--xmlui-borderRadius-H5))", "borderEndEndRadius-H5": "var(--xmlui-borderEndEndRadius-H5, var(--xmlui-borderRadius-H5))", "padding-H5": "var(--xmlui-padding-H5)", "paddingHorizontal-H5": "var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5))", "paddingVertical-H5": "var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5))", "paddingLeft-H5": "var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingRight-H5": "var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)))", "paddingTop-H5": "var(--xmlui-paddingTop-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "paddingBottom-H5": "var(--xmlui-paddingBottom-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)))", "textColor-H5": "var(--xmlui-textColor-H5)", "fontFamily-H5": "var(--xmlui-fontFamily-H5)", "fontSize-H5": "var(--xmlui-fontSize-H5)", "fontStyle-H5": "var(--xmlui-fontStyle-H5)", "fontVariant-H5": "var(--xmlui-fontVariant-H5)", "fontWeight-H5": "var(--xmlui-fontWeight-H5)", "fontStretch-H5": "var(--xmlui-fontStretch-H5)", "textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "lineHeight-H5": "var(--xmlui-lineHeight-H5)", "backgroundColor-H5": "var(--xmlui-backgroundColor-H5)", "textTransform-H5": "var(--xmlui-textTransform-H5)", "letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "wordSpacing-H5": "var(--xmlui-wordSpacing-H5)", "textShadow-H5": "var(--xmlui-textShadow-H5)", "textIndent-H5": "var(--xmlui-textIndent-H5)", "textAlign-H5": "var(--xmlui-textAlign-H5)", "textAlignLast-H5": "var(--xmlui-textAlignLast-H5)", "wordBreak-H5": "var(--xmlui-wordBreak-H5)", "wordWrap-H5": "var(--xmlui-wordWrap-H5)", "direction-H5": "var(--xmlui-direction-H5)", "writingMode-H5": "var(--xmlui-writingMode-H5)", "lineBreak-H5": "var(--xmlui-lineBreak-H5)", "border-H6": "var(--xmlui-border-H6)", "borderHorizontal-H6": "var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6))", "borderVertical-H6": "var(--xmlui-borderVertical-H6, var(--xmlui-border-H6))", "borderLeft-H6": "var(--xmlui-borderLeft-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderRight-H6": "var(--xmlui-borderRight-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)))", "borderTop-H6": "var(--xmlui-borderTop-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderBottom-H6": "var(--xmlui-borderBottom-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)))", "borderWidth-H6": "var(--xmlui-borderWidth-H6)", "borderHorizontalWidth-H6": "var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6))", "borderLeftWidth-H6": "var(--xmlui-borderLeftWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderRightWidth-H6": "var(--xmlui-borderRightWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderVerticalWidth-H6": "var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6))", "borderTopWidth-H6": "var(--xmlui-borderTopWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderBottomWidth-H6": "var(--xmlui-borderBottomWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)))", "borderStyle-H6": "var(--xmlui-borderStyle-H6)", "borderHorizontalStyle-H6": "var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6))", "borderLeftStyle-H6": "var(--xmlui-borderLeftStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderRightStyle-H6": "var(--xmlui-borderRightStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderVerticalStyle-H6": "var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6))", "borderTopStyle-H6": "var(--xmlui-borderTopStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderBottomStyle-H6": "var(--xmlui-borderBottomStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)))", "borderColor-H6": "var(--xmlui-borderColor-H6)", "borderHorizontalColor-H6": "var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6))", "borderLeftColor-H6": "var(--xmlui-borderLeftColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderRightColor-H6": "var(--xmlui-borderRightColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)))", "borderVerticalColor-H6": "var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6))", "borderTopColor-H6": "var(--xmlui-borderTopColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderBottomColor-H6": "var(--xmlui-borderBottomColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)))", "borderStartStartRadius-H6": "var(--xmlui-borderStartStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderStartEndRadius-H6": "var(--xmlui-borderStartEndRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndStartRadius-H6": "var(--xmlui-borderEndStartRadius-H6, var(--xmlui-borderRadius-H6))", "borderEndEndRadius-H6": "var(--xmlui-borderEndEndRadius-H6, var(--xmlui-borderRadius-H6))", "padding-H6": "var(--xmlui-padding-H6)", "paddingHorizontal-H6": "var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6))", "paddingVertical-H6": "var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6))", "paddingLeft-H6": "var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingRight-H6": "var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)))", "paddingTop-H6": "var(--xmlui-paddingTop-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "paddingBottom-H6": "var(--xmlui-paddingBottom-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)))", "textColor-H6": "var(--xmlui-textColor-H6)", "fontFamily-H6": "var(--xmlui-fontFamily-H6)", "fontSize-H6": "var(--xmlui-fontSize-H6)", "fontStyle-H6": "var(--xmlui-fontStyle-H6)", "fontVariant-H6": "var(--xmlui-fontVariant-H6)", "fontWeight-H6": "var(--xmlui-fontWeight-H6)", "fontStretch-H6": "var(--xmlui-fontStretch-H6)", "textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)", "lineHeight-H6": "var(--xmlui-lineHeight-H6)", "backgroundColor-H6": "var(--xmlui-backgroundColor-H6)", "textTransform-H6": "var(--xmlui-textTransform-H6)", "letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "wordSpacing-H6": "var(--xmlui-wordSpacing-H6)", "textShadow-H6": "var(--xmlui-textShadow-H6)", "textIndent-H6": "var(--xmlui-textIndent-H6)", "textAlign-H6": "var(--xmlui-textAlign-H6)", "textAlignLast-H6": "var(--xmlui-textAlignLast-H6)", "wordBreak-H6": "var(--xmlui-wordBreak-H6)", "wordWrap-H6": "var(--xmlui-wordWrap-H6)", "direction-H6": "var(--xmlui-direction-H6)", "writingMode-H6": "var(--xmlui-writingMode-H6)", "lineBreak-H6": "var(--xmlui-lineBreak-H6)", "color-anchor-Heading": "var(--xmlui-color-anchor-Heading)", "gap-anchor-Heading": "var(--xmlui-gap-anchor-Heading)", "textDecorationLine-anchor-Heading": "var(--xmlui-textDecorationLine-anchor-Heading)", "Heading:textColor-H1": "var(--xmlui-textColor-H1)", "Heading:letterSpacing-H1": "var(--xmlui-letterSpacing-H1)", "Heading:fontFamily-H1": "var(--xmlui-fontFamily-H1)", "Heading:fontWeight-H1": "var(--xmlui-fontWeight-H1)", "marginTop-H1": "var(--xmlui-marginTop-H1)", "marginBottom-H1": "var(--xmlui-marginBottom-H1)", "Heading:textDecorationLine-H1": "var(--xmlui-textDecorationLine-H1)", "Heading:textDecorationColor-H1": "var(--xmlui-textDecorationColor-H1)", "Heading:textDecorationStyle-H1": "var(--xmlui-textDecorationStyle-H1)", "Heading:textDecorationThickness-H1": "var(--xmlui-textDecorationThickness-H1)", "Heading:textUnderlineOffset-H1": "var(--xmlui-textUnderlineOffset-H1)", "Heading:textColor-H2": "var(--xmlui-textColor-H2)", "Heading:letterSpacing-H2": "var(--xmlui-letterSpacing-H2)", "Heading:fontFamily-H2": "var(--xmlui-fontFamily-H2)", "Heading:fontWeight-H2": "var(--xmlui-fontWeight-H2)", "marginTop-H2": "var(--xmlui-marginTop-H2)", "marginBottom-H2": "var(--xmlui-marginBottom-H2)", "Heading:textDecorationLine-H2": "var(--xmlui-textDecorationLine-H2)", "Heading:textDecorationColor-H2": "var(--xmlui-textDecorationColor-H2)", "Heading:textDecorationStyle-H2": "var(--xmlui-textDecorationStyle-H2)", "Heading:textDecorationThickness-H2": "var(--xmlui-textDecorationThickness-H2)", "Heading:textUnderlineOffset-H2": "var(--xmlui-textUnderlineOffset-H2)", "Heading:textColor-H3": "var(--xmlui-textColor-H3)", "Heading:letterSpacing-H3": "var(--xmlui-letterSpacing-H3)", "Heading:fontFamily-H3": "var(--xmlui-fontFamily-H3)", "Heading:fontWeight-H3": "var(--xmlui-fontWeight-H3)", "marginTop-H3": "var(--xmlui-marginTop-H3)", "marginBottom-H3": "var(--xmlui-marginBottom-H3)", "Heading:textDecorationLine-H3": "var(--xmlui-textDecorationLine-H3)", "Heading:textDecorationColor-H3": "var(--xmlui-textDecorationColor-H3)", "Heading:textDecorationStyle-H3": "var(--xmlui-textDecorationStyle-H3)", "Heading:textDecorationThickness-H3": "var(--xmlui-textDecorationThickness-H3)", "Heading:textUnderlineOffset-H3": "var(--xmlui-textUnderlineOffset-H3)", "Heading:textColor-H4": "var(--xmlui-textColor-H4)", "Heading:letterSpacing-H4": "var(--xmlui-letterSpacing-H4)", "Heading:fontFamily-H4": "var(--xmlui-fontFamily-H4)", "Heading:fontWeight-H4": "var(--xmlui-fontWeight-H4)", "marginTop-H4": "var(--xmlui-marginTop-H4)", "marginBottom-H4": "var(--xmlui-marginBottom-H4)", "Heading:textDecorationLine-H4": "var(--xmlui-textDecorationLine-H4)", "Heading:textDecorationColor-H4": "var(--xmlui-textDecorationColor-H4)", "Heading:textDecorationStyle-H4": "var(--xmlui-textDecorationStyle-H4)", "Heading:textDecorationThickness-H4": "var(--xmlui-textDecorationThickness-H4)", "Heading:textUnderlineOffset-H4": "var(--xmlui-textUnderlineOffset-H4)", "Heading:textColor-H5": "var(--xmlui-textColor-H5)", "Heading:letterSpacing-H5": "var(--xmlui-letterSpacing-H5)", "Heading:fontFamily-H5": "var(--xmlui-fontFamily-H5)", "Heading:fontWeight-H5": "var(--xmlui-fontWeight-H5)", "marginTop-H5": "var(--xmlui-marginTop-H5)", "marginBottom-H5": "var(--xmlui-marginBottom-H5)", "Heading:textDecorationLine-H5": "var(--xmlui-textDecorationLine-H5)", "Heading:textDecorationColor-H5": "var(--xmlui-textDecorationColor-H5)", "Heading:textDecorationStyle-H5": "var(--xmlui-textDecorationStyle-H5)", "Heading:textDecorationThickness-H5": "var(--xmlui-textDecorationThickness-H5)", "Heading:textUnderlineOffset-H5": "var(--xmlui-textUnderlineOffset-H5)", "Heading:textColor-H6": "var(--xmlui-textColor-H6)", "Heading:letterSpacing-H6": "var(--xmlui-letterSpacing-H6)", "Heading:fontFamily-H6": "var(--xmlui-fontFamily-H6)", "Heading:fontWeight-H6": "var(--xmlui-fontWeight-H6)", "marginTop-H6": "var(--xmlui-marginTop-H6)", "marginBottom-H6": "var(--xmlui-marginBottom-H6)", "Heading:textDecorationLine-H6": "var(--xmlui-textDecorationLine-H6)", "Heading:textDecorationColor-H6": "var(--xmlui-textDecorationColor-H6)", "Heading:textDecorationStyle-H6": "var(--xmlui-textDecorationStyle-H6)", "Heading:textDecorationThickness-H6": "var(--xmlui-textDecorationThickness-H6)", "Heading:textUnderlineOffset-H6": "var(--xmlui-textUnderlineOffset-H6)"}'`;
|
|
38221
|
+
const heading$4 = "_heading_p6fbv_13";
|
|
38222
|
+
const h1 = "_h1_p6fbv_13";
|
|
38223
|
+
const h2 = "_h2_p6fbv_76";
|
|
38224
|
+
const h3 = "_h3_p6fbv_139";
|
|
38225
|
+
const h4 = "_h4_p6fbv_202";
|
|
38226
|
+
const h5 = "_h5_p6fbv_265";
|
|
38227
|
+
const h6 = "_h6_p6fbv_328";
|
|
38228
|
+
const anchorRef$1 = "_anchorRef_p6fbv_402";
|
|
38229
|
+
const truncateOverflow$1 = "_truncateOverflow_p6fbv_413";
|
|
38230
|
+
const preserveLinebreaks$1 = "_preserveLinebreaks_p6fbv_419";
|
|
38231
|
+
const noEllipsis$1 = "_noEllipsis_p6fbv_423";
|
|
38122
38232
|
const styles$R = {
|
|
38123
38233
|
themeVars: themeVars$C,
|
|
38124
38234
|
heading: heading$4,
|
|
@@ -38331,7 +38441,8 @@ ${error2.errorObject}`;
|
|
|
38331
38441
|
return registerHeading == null ? void 0 : registerHeading({
|
|
38332
38442
|
id: anchorId,
|
|
38333
38443
|
level: parseInt(level.replace("h", "")),
|
|
38334
|
-
text: elementRef.current.textContent.trim(),
|
|
38444
|
+
text: elementRef.current.textContent.trim().replace(/#$/, ""),
|
|
38445
|
+
// Remove trailing #
|
|
38335
38446
|
anchor: anchorRef2.current
|
|
38336
38447
|
});
|
|
38337
38448
|
}
|
|
@@ -46611,6 +46722,9 @@ ${error2.errorObject}`;
|
|
|
46611
46722
|
[`textColor-${COMP$19}`]: "inherit",
|
|
46612
46723
|
[`fontWeight-${COMP$19}`]: "$fontWeight-bold",
|
|
46613
46724
|
[`letterSpacing-${COMP$19} `]: "0",
|
|
46725
|
+
[`color-anchor-${COMP$19} `]: "$color-surface-400",
|
|
46726
|
+
[`gap-anchor-${COMP$19} `]: "$space-2",
|
|
46727
|
+
[`textDecorationLine-anchor-${COMP$19} `]: "underline",
|
|
46614
46728
|
light: {
|
|
46615
46729
|
// --- No light-specific theme vars
|
|
46616
46730
|
},
|
|
@@ -46873,41 +46987,43 @@ ${error2.errorObject}`;
|
|
|
46873
46987
|
});
|
|
46874
46988
|
}
|
|
46875
46989
|
);
|
|
46876
|
-
const themeVars$B = `'{"marginTop-Text-default": "var(--xmlui-marginTop-Text-default)", "marginBottom-Text-default": "var(--xmlui-marginBottom-Text-default)", "marginLeft-Text-default": "var(--xmlui-marginLeft-Text-default)", "marginRight-Text-default": "var(--xmlui-marginRight-Text-default)", "verticalAlign-Text-default": "var(--xmlui-verticalAlign-Text-default)", "marginTop-Text-markdown": "var(--xmlui-marginTop-Text-markdown)", "marginBottom-Text-markdown": "var(--xmlui-marginBottom-Text-markdown)", "marginLeft-Text-markdown": "var(--xmlui-marginLeft-Text-markdown)", "marginRight-Text-markdown": "var(--xmlui-marginRight-Text-markdown)", "verticalAlign-Text-markdown": "var(--xmlui-verticalAlign-Text-markdown)", "marginTop-Text-abbr": "var(--xmlui-marginTop-Text-abbr)", "marginBottom-Text-abbr": "var(--xmlui-marginBottom-Text-abbr)", "marginLeft-Text-abbr": "var(--xmlui-marginLeft-Text-abbr)", "marginRight-Text-abbr": "var(--xmlui-marginRight-Text-abbr)", "verticalAlign-Text-abbr": "var(--xmlui-verticalAlign-Text-abbr)", "marginTop-Text-cite": "var(--xmlui-marginTop-Text-cite)", "marginBottom-Text-cite": "var(--xmlui-marginBottom-Text-cite)", "marginLeft-Text-cite": "var(--xmlui-marginLeft-Text-cite)", "marginRight-Text-cite": "var(--xmlui-marginRight-Text-cite)", "verticalAlign-Text-cite": "var(--xmlui-verticalAlign-Text-cite)", "marginTop-Text-codefence": "var(--xmlui-marginTop-Text-codefence)", "marginBottom-Text-codefence": "var(--xmlui-marginBottom-Text-codefence)", "marginTop-Text-code": "var(--xmlui-marginTop-Text-code)", "marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)", "marginLeft-Text-code": "var(--xmlui-marginLeft-Text-code)", "marginRight-Text-code": "var(--xmlui-marginRight-Text-code)", "verticalAlign-Text-code": "var(--xmlui-verticalAlign-Text-code)", "marginLeft-Text-codefence": "var(--xmlui-marginLeft-Text-codefence)", "marginRight-Text-codefence": "var(--xmlui-marginRight-Text-codefence)", "verticalAlign-Text-codefence": "var(--xmlui-verticalAlign-Text-codefence)", "marginTop-Text-deleted": "var(--xmlui-marginTop-Text-deleted)", "marginBottom-Text-deleted": "var(--xmlui-marginBottom-Text-deleted)", "marginLeft-Text-deleted": "var(--xmlui-marginLeft-Text-deleted)", "marginRight-Text-deleted": "var(--xmlui-marginRight-Text-deleted)", "verticalAlign-Text-deleted": "var(--xmlui-verticalAlign-Text-deleted)", "marginTop-Text-inserted": "var(--xmlui-marginTop-Text-inserted)", "marginBottom-Text-inserted": "var(--xmlui-marginBottom-Text-inserted)", "marginLeft-Text-inserted": "var(--xmlui-marginLeft-Text-inserted)", "marginRight-Text-inserted": "var(--xmlui-marginRight-Text-inserted)", "verticalAlign-Text-inserted": "var(--xmlui-verticalAlign-Text-inserted)", "marginTop-Text-keyboard": "var(--xmlui-marginTop-Text-keyboard)", "marginBottom-Text-keyboard": "var(--xmlui-marginBottom-Text-keyboard)", "marginLeft-Text-keyboard": "var(--xmlui-marginLeft-Text-keyboard)", "marginRight-Text-keyboard": "var(--xmlui-marginRight-Text-keyboard)", "verticalAlign-Text-keyboard": "var(--xmlui-verticalAlign-Text-keyboard)", "marginTop-Text-marked": "var(--xmlui-marginTop-Text-marked)", "marginBottom-Text-marked": "var(--xmlui-marginBottom-Text-marked)", "marginLeft-Text-marked": "var(--xmlui-marginLeft-Text-marked)", "marginRight-Text-marked": "var(--xmlui-marginRight-Text-marked)", "verticalAlign-Text-marked": "var(--xmlui-verticalAlign-Text-marked)", "marginTop-Text-mono": "var(--xmlui-marginTop-Text-mono)", "marginBottom-Text-mono": "var(--xmlui-marginBottom-Text-mono)", "marginLeft-Text-mono": "var(--xmlui-marginLeft-Text-mono)", "marginRight-Text-mono": "var(--xmlui-marginRight-Text-mono)", "verticalAlign-Text-mono": "var(--xmlui-verticalAlign-Text-mono)", "marginTop-Text-sample": "var(--xmlui-marginTop-Text-sample)", "marginBottom-Text-sample": "var(--xmlui-marginBottom-Text-sample)", "marginLeft-Text-sample": "var(--xmlui-marginLeft-Text-sample)", "marginRight-Text-sample": "var(--xmlui-marginRight-Text-sample)", "verticalAlign-Text-sample": "var(--xmlui-verticalAlign-Text-sample)", "marginTop-Text-sup": "var(--xmlui-marginTop-Text-sup)", "marginBottom-Text-sup": "var(--xmlui-marginBottom-Text-sup)", "marginLeft-Text-sup": "var(--xmlui-marginLeft-Text-sup)", "marginRight-Text-sup": "var(--xmlui-marginRight-Text-sup)", "verticalAlign-Text-sup": "var(--xmlui-verticalAlign-Text-sup)", "marginTop-Text-sub": "var(--xmlui-marginTop-Text-sub)", "marginBottom-Text-sub": "var(--xmlui-marginBottom-Text-sub)", "marginLeft-Text-sub": "var(--xmlui-marginLeft-Text-sub)", "marginRight-Text-sub": "var(--xmlui-marginRight-Text-sub)", "verticalAlign-Text-sub": "var(--xmlui-verticalAlign-Text-sub)", "marginTop-Text-var": "var(--xmlui-marginTop-Text-var)", "marginBottom-Text-var": "var(--xmlui-marginBottom-Text-var)", "marginLeft-Text-var": "var(--xmlui-marginLeft-Text-var)", "marginRight-Text-var": "var(--xmlui-marginRight-Text-var)", "verticalAlign-Text-var": "var(--xmlui-verticalAlign-Text-var)", "marginTop-Text-title": "var(--xmlui-marginTop-Text-title)", "marginBottom-Text-title": "var(--xmlui-marginBottom-Text-title)", "marginLeft-Text-title": "var(--xmlui-marginLeft-Text-title)", "marginRight-Text-title": "var(--xmlui-marginRight-Text-title)", "verticalAlign-Text-title": "var(--xmlui-verticalAlign-Text-title)", "marginTop-Text-subtitle": "var(--xmlui-marginTop-Text-subtitle)", "marginBottom-Text-subtitle": "var(--xmlui-marginBottom-Text-subtitle)", "marginLeft-Text-subtitle": "var(--xmlui-marginLeft-Text-subtitle)", "marginRight-Text-subtitle": "var(--xmlui-marginRight-Text-subtitle)", "verticalAlign-Text-subtitle": "var(--xmlui-verticalAlign-Text-subtitle)", "marginTop-Text-small": "var(--xmlui-marginTop-Text-small)", "marginBottom-Text-small": "var(--xmlui-marginBottom-Text-small)", "marginLeft-Text-small": "var(--xmlui-marginLeft-Text-small)", "marginRight-Text-small": "var(--xmlui-marginRight-Text-small)", "verticalAlign-Text-small": "var(--xmlui-verticalAlign-Text-small)", "marginTop-Text-caption": "var(--xmlui-marginTop-Text-caption)", "marginBottom-Text-caption": "var(--xmlui-marginBottom-Text-caption)", "marginLeft-Text-caption": "var(--xmlui-marginLeft-Text-caption)", "marginRight-Text-caption": "var(--xmlui-marginRight-Text-caption)", "verticalAlign-Text-caption": "var(--xmlui-verticalAlign-Text-caption)", "marginTop-Text-placeholder": "var(--xmlui-marginTop-Text-placeholder)", "marginBottom-Text-placeholder": "var(--xmlui-marginBottom-Text-placeholder)", "marginLeft-Text-placeholder": "var(--xmlui-marginLeft-Text-placeholder)", "marginRight-Text-placeholder": "var(--xmlui-marginRight-Text-placeholder)", "verticalAlign-Text-placeholder": "var(--xmlui-verticalAlign-Text-placeholder)", "marginTop-Text-paragraph": "var(--xmlui-marginTop-Text-paragraph)", "marginBottom-Text-paragraph": "var(--xmlui-marginBottom-Text-paragraph)", "marginLeft-Text-paragraph": "var(--xmlui-marginLeft-Text-paragraph)", "marginRight-Text-paragraph": "var(--xmlui-marginRight-Text-paragraph)", "verticalAlign-Text-paragraph": "var(--xmlui-verticalAlign-Text-paragraph)", "marginTop-Text-subheading": "var(--xmlui-marginTop-Text-subheading)", "marginBottom-Text-subheading": "var(--xmlui-marginBottom-Text-subheading)", "marginLeft-Text-subheading": "var(--xmlui-marginLeft-Text-subheading)", "marginRight-Text-subheading": "var(--xmlui-marginRight-Text-subheading)", "verticalAlign-Text-subheading": "var(--xmlui-verticalAlign-Text-subheading)", "marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)", "marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)", "marginLeft-Text-tableheading": "var(--xmlui-marginLeft-Text-tableheading)", "marginRight-Text-tableheading": "var(--xmlui-marginRight-Text-tableheading)", "verticalAlign-Text-tableheading": "var(--xmlui-verticalAlign-Text-tableheading)", "marginTop-Text-secondary": "var(--xmlui-marginTop-Text-secondary)", "marginBottom-Text-secondary": "var(--xmlui-marginBottom-Text-secondary)", "marginLeft-Text-secondary": "var(--xmlui-marginLeft-Text-secondary)", "marginRight-Text-secondary": "var(--xmlui-marginRight-Text-secondary)", "verticalAlign-Text-secondary": "var(--xmlui-verticalAlign-Text-secondary)"}'`;
|
|
46877
|
-
const text$a = "
|
|
46878
|
-
const markdown = "
|
|
46879
|
-
const abbr = "
|
|
46880
|
-
const cite = "
|
|
46881
|
-
const
|
|
46882
|
-
const
|
|
46883
|
-
const
|
|
46884
|
-
const
|
|
46885
|
-
const
|
|
46886
|
-
const
|
|
46887
|
-
const
|
|
46888
|
-
const
|
|
46889
|
-
const
|
|
46890
|
-
const
|
|
46891
|
-
const
|
|
46892
|
-
const
|
|
46893
|
-
const
|
|
46894
|
-
const
|
|
46895
|
-
const
|
|
46896
|
-
const
|
|
46897
|
-
const
|
|
46898
|
-
const
|
|
46899
|
-
const
|
|
46900
|
-
const
|
|
46901
|
-
const
|
|
46902
|
-
const
|
|
46903
|
-
const
|
|
46904
|
-
const
|
|
46990
|
+
const themeVars$B = `'{"marginTop-Text-default": "var(--xmlui-marginTop-Text-default)", "marginBottom-Text-default": "var(--xmlui-marginBottom-Text-default)", "marginLeft-Text-default": "var(--xmlui-marginLeft-Text-default)", "marginRight-Text-default": "var(--xmlui-marginRight-Text-default)", "verticalAlign-Text-default": "var(--xmlui-verticalAlign-Text-default)", "marginTop-Text-markdown": "var(--xmlui-marginTop-Text-markdown)", "marginBottom-Text-markdown": "var(--xmlui-marginBottom-Text-markdown)", "marginLeft-Text-markdown": "var(--xmlui-marginLeft-Text-markdown)", "marginRight-Text-markdown": "var(--xmlui-marginRight-Text-markdown)", "verticalAlign-Text-markdown": "var(--xmlui-verticalAlign-Text-markdown)", "marginTop-Text-abbr": "var(--xmlui-marginTop-Text-abbr)", "marginBottom-Text-abbr": "var(--xmlui-marginBottom-Text-abbr)", "marginLeft-Text-abbr": "var(--xmlui-marginLeft-Text-abbr)", "marginRight-Text-abbr": "var(--xmlui-marginRight-Text-abbr)", "verticalAlign-Text-abbr": "var(--xmlui-verticalAlign-Text-abbr)", "marginTop-Text-cite": "var(--xmlui-marginTop-Text-cite)", "marginBottom-Text-cite": "var(--xmlui-marginBottom-Text-cite)", "marginLeft-Text-cite": "var(--xmlui-marginLeft-Text-cite)", "marginRight-Text-cite": "var(--xmlui-marginRight-Text-cite)", "verticalAlign-Text-cite": "var(--xmlui-verticalAlign-Text-cite)", "marginTop-Text-em": "var(--xmlui-marginTop-Text-em)", "marginBottom-Text-em": "var(--xmlui-marginBottom-Text-em)", "marginLeft-Text-em": "var(--xmlui-marginLeft-Text-em)", "marginRight-Text-em": "var(--xmlui-marginRight-Text-em)", "verticalAlign-Text-em": "var(--xmlui-verticalAlign-Text-em)", "marginTop-Text-codefence": "var(--xmlui-marginTop-Text-codefence)", "marginBottom-Text-codefence": "var(--xmlui-marginBottom-Text-codefence)", "marginTop-Text-code": "var(--xmlui-marginTop-Text-code)", "marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)", "marginLeft-Text-code": "var(--xmlui-marginLeft-Text-code)", "marginRight-Text-code": "var(--xmlui-marginRight-Text-code)", "verticalAlign-Text-code": "var(--xmlui-verticalAlign-Text-code)", "marginLeft-Text-codefence": "var(--xmlui-marginLeft-Text-codefence)", "marginRight-Text-codefence": "var(--xmlui-marginRight-Text-codefence)", "verticalAlign-Text-codefence": "var(--xmlui-verticalAlign-Text-codefence)", "marginTop-Text-deleted": "var(--xmlui-marginTop-Text-deleted)", "marginBottom-Text-deleted": "var(--xmlui-marginBottom-Text-deleted)", "marginLeft-Text-deleted": "var(--xmlui-marginLeft-Text-deleted)", "marginRight-Text-deleted": "var(--xmlui-marginRight-Text-deleted)", "verticalAlign-Text-deleted": "var(--xmlui-verticalAlign-Text-deleted)", "marginTop-Text-inserted": "var(--xmlui-marginTop-Text-inserted)", "marginBottom-Text-inserted": "var(--xmlui-marginBottom-Text-inserted)", "marginLeft-Text-inserted": "var(--xmlui-marginLeft-Text-inserted)", "marginRight-Text-inserted": "var(--xmlui-marginRight-Text-inserted)", "verticalAlign-Text-inserted": "var(--xmlui-verticalAlign-Text-inserted)", "marginTop-Text-keyboard": "var(--xmlui-marginTop-Text-keyboard)", "marginBottom-Text-keyboard": "var(--xmlui-marginBottom-Text-keyboard)", "marginLeft-Text-keyboard": "var(--xmlui-marginLeft-Text-keyboard)", "marginRight-Text-keyboard": "var(--xmlui-marginRight-Text-keyboard)", "verticalAlign-Text-keyboard": "var(--xmlui-verticalAlign-Text-keyboard)", "marginTop-Text-marked": "var(--xmlui-marginTop-Text-marked)", "marginBottom-Text-marked": "var(--xmlui-marginBottom-Text-marked)", "marginLeft-Text-marked": "var(--xmlui-marginLeft-Text-marked)", "marginRight-Text-marked": "var(--xmlui-marginRight-Text-marked)", "verticalAlign-Text-marked": "var(--xmlui-verticalAlign-Text-marked)", "marginTop-Text-mono": "var(--xmlui-marginTop-Text-mono)", "marginBottom-Text-mono": "var(--xmlui-marginBottom-Text-mono)", "marginLeft-Text-mono": "var(--xmlui-marginLeft-Text-mono)", "marginRight-Text-mono": "var(--xmlui-marginRight-Text-mono)", "verticalAlign-Text-mono": "var(--xmlui-verticalAlign-Text-mono)", "marginTop-Text-sample": "var(--xmlui-marginTop-Text-sample)", "marginBottom-Text-sample": "var(--xmlui-marginBottom-Text-sample)", "marginLeft-Text-sample": "var(--xmlui-marginLeft-Text-sample)", "marginRight-Text-sample": "var(--xmlui-marginRight-Text-sample)", "verticalAlign-Text-sample": "var(--xmlui-verticalAlign-Text-sample)", "marginTop-Text-sup": "var(--xmlui-marginTop-Text-sup)", "marginBottom-Text-sup": "var(--xmlui-marginBottom-Text-sup)", "marginLeft-Text-sup": "var(--xmlui-marginLeft-Text-sup)", "marginRight-Text-sup": "var(--xmlui-marginRight-Text-sup)", "verticalAlign-Text-sup": "var(--xmlui-verticalAlign-Text-sup)", "marginTop-Text-sub": "var(--xmlui-marginTop-Text-sub)", "marginBottom-Text-sub": "var(--xmlui-marginBottom-Text-sub)", "marginLeft-Text-sub": "var(--xmlui-marginLeft-Text-sub)", "marginRight-Text-sub": "var(--xmlui-marginRight-Text-sub)", "verticalAlign-Text-sub": "var(--xmlui-verticalAlign-Text-sub)", "marginTop-Text-var": "var(--xmlui-marginTop-Text-var)", "marginBottom-Text-var": "var(--xmlui-marginBottom-Text-var)", "marginLeft-Text-var": "var(--xmlui-marginLeft-Text-var)", "marginRight-Text-var": "var(--xmlui-marginRight-Text-var)", "verticalAlign-Text-var": "var(--xmlui-verticalAlign-Text-var)", "marginTop-Text-title": "var(--xmlui-marginTop-Text-title)", "marginBottom-Text-title": "var(--xmlui-marginBottom-Text-title)", "marginLeft-Text-title": "var(--xmlui-marginLeft-Text-title)", "marginRight-Text-title": "var(--xmlui-marginRight-Text-title)", "verticalAlign-Text-title": "var(--xmlui-verticalAlign-Text-title)", "marginTop-Text-subtitle": "var(--xmlui-marginTop-Text-subtitle)", "marginBottom-Text-subtitle": "var(--xmlui-marginBottom-Text-subtitle)", "marginLeft-Text-subtitle": "var(--xmlui-marginLeft-Text-subtitle)", "marginRight-Text-subtitle": "var(--xmlui-marginRight-Text-subtitle)", "verticalAlign-Text-subtitle": "var(--xmlui-verticalAlign-Text-subtitle)", "marginTop-Text-small": "var(--xmlui-marginTop-Text-small)", "marginBottom-Text-small": "var(--xmlui-marginBottom-Text-small)", "marginLeft-Text-small": "var(--xmlui-marginLeft-Text-small)", "marginRight-Text-small": "var(--xmlui-marginRight-Text-small)", "verticalAlign-Text-small": "var(--xmlui-verticalAlign-Text-small)", "marginTop-Text-caption": "var(--xmlui-marginTop-Text-caption)", "marginBottom-Text-caption": "var(--xmlui-marginBottom-Text-caption)", "marginLeft-Text-caption": "var(--xmlui-marginLeft-Text-caption)", "marginRight-Text-caption": "var(--xmlui-marginRight-Text-caption)", "verticalAlign-Text-caption": "var(--xmlui-verticalAlign-Text-caption)", "marginTop-Text-placeholder": "var(--xmlui-marginTop-Text-placeholder)", "marginBottom-Text-placeholder": "var(--xmlui-marginBottom-Text-placeholder)", "marginLeft-Text-placeholder": "var(--xmlui-marginLeft-Text-placeholder)", "marginRight-Text-placeholder": "var(--xmlui-marginRight-Text-placeholder)", "verticalAlign-Text-placeholder": "var(--xmlui-verticalAlign-Text-placeholder)", "marginTop-Text-paragraph": "var(--xmlui-marginTop-Text-paragraph)", "marginBottom-Text-paragraph": "var(--xmlui-marginBottom-Text-paragraph)", "marginLeft-Text-paragraph": "var(--xmlui-marginLeft-Text-paragraph)", "marginRight-Text-paragraph": "var(--xmlui-marginRight-Text-paragraph)", "verticalAlign-Text-paragraph": "var(--xmlui-verticalAlign-Text-paragraph)", "marginTop-Text-subheading": "var(--xmlui-marginTop-Text-subheading)", "marginBottom-Text-subheading": "var(--xmlui-marginBottom-Text-subheading)", "marginLeft-Text-subheading": "var(--xmlui-marginLeft-Text-subheading)", "marginRight-Text-subheading": "var(--xmlui-marginRight-Text-subheading)", "verticalAlign-Text-subheading": "var(--xmlui-verticalAlign-Text-subheading)", "marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)", "marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)", "marginLeft-Text-tableheading": "var(--xmlui-marginLeft-Text-tableheading)", "marginRight-Text-tableheading": "var(--xmlui-marginRight-Text-tableheading)", "verticalAlign-Text-tableheading": "var(--xmlui-verticalAlign-Text-tableheading)", "marginTop-Text-secondary": "var(--xmlui-marginTop-Text-secondary)", "marginBottom-Text-secondary": "var(--xmlui-marginBottom-Text-secondary)", "marginLeft-Text-secondary": "var(--xmlui-marginLeft-Text-secondary)", "marginRight-Text-secondary": "var(--xmlui-marginRight-Text-secondary)", "verticalAlign-Text-secondary": "var(--xmlui-verticalAlign-Text-secondary)"}'`;
|
|
46991
|
+
const text$a = "_text_1qfdf_13";
|
|
46992
|
+
const markdown = "_markdown_1qfdf_75";
|
|
46993
|
+
const abbr = "_abbr_1qfdf_132";
|
|
46994
|
+
const cite = "_cite_1qfdf_189";
|
|
46995
|
+
const em = "_em_1qfdf_246";
|
|
46996
|
+
const codefence = "_codefence_1qfdf_303";
|
|
46997
|
+
const code$4 = "_code_1qfdf_303";
|
|
46998
|
+
const textcode = "_textcode_1qfdf_308";
|
|
46999
|
+
const deleted = "_deleted_1qfdf_457";
|
|
47000
|
+
const inserted = "_inserted_1qfdf_529";
|
|
47001
|
+
const keyboard = "_keyboard_1qfdf_601";
|
|
47002
|
+
const marked = "_marked_1qfdf_658";
|
|
47003
|
+
const mono = "_mono_1qfdf_730";
|
|
47004
|
+
const sample = "_sample_1qfdf_787";
|
|
47005
|
+
const sup = "_sup_1qfdf_844";
|
|
47006
|
+
const sub = "_sub_1qfdf_901";
|
|
47007
|
+
const title$3 = "_title_1qfdf_1015";
|
|
47008
|
+
const subtitle = "_subtitle_1qfdf_1072";
|
|
47009
|
+
const small = "_small_1qfdf_1129";
|
|
47010
|
+
const caption$1 = "_caption_1qfdf_1186";
|
|
47011
|
+
const placeholder$2 = "_placeholder_1qfdf_1243";
|
|
47012
|
+
const paragraph$3 = "_paragraph_1qfdf_1300";
|
|
47013
|
+
const subheading = "_subheading_1qfdf_1357";
|
|
47014
|
+
const tableheading = "_tableheading_1qfdf_1414";
|
|
47015
|
+
const secondary = "_secondary_1qfdf_1471";
|
|
47016
|
+
const strong$3 = "_strong_1qfdf_1528";
|
|
47017
|
+
const truncateOverflow = "_truncateOverflow_1qfdf_1536";
|
|
47018
|
+
const preserveLinebreaks = "_preserveLinebreaks_1qfdf_1543";
|
|
47019
|
+
const noEllipsis = "_noEllipsis_1qfdf_1547";
|
|
46905
47020
|
const styles$Q = {
|
|
46906
47021
|
themeVars: themeVars$B,
|
|
46907
47022
|
text: text$a,
|
|
46908
47023
|
markdown,
|
|
46909
47024
|
abbr,
|
|
46910
47025
|
cite,
|
|
47026
|
+
em,
|
|
46911
47027
|
codefence,
|
|
46912
47028
|
code: code$4,
|
|
46913
47029
|
textcode,
|
|
@@ -46919,7 +47035,7 @@ ${error2.errorObject}`;
|
|
|
46919
47035
|
sample,
|
|
46920
47036
|
sup,
|
|
46921
47037
|
sub,
|
|
46922
|
-
"var": "
|
|
47038
|
+
"var": "_var_1qfdf_958",
|
|
46923
47039
|
title: title$3,
|
|
46924
47040
|
subtitle,
|
|
46925
47041
|
small,
|
|
@@ -47018,8 +47134,6 @@ ${error2.errorObject}`;
|
|
|
47018
47134
|
[`borderStyle-${COMP$18}-code`]: "solid",
|
|
47019
47135
|
[`borderRadius-${COMP$18}-code`]: "4px",
|
|
47020
47136
|
[`paddingHorizontal-${COMP$18}-code`]: "$space-1",
|
|
47021
|
-
[`marginLeft-${COMP$18}-code`]: "$space-1",
|
|
47022
|
-
[`marginRight-${COMP$18}-code`]: "$space-1",
|
|
47023
47137
|
[`paddingBottom-${COMP$18}-code`]: "2px",
|
|
47024
47138
|
[`textDecorationLine-${COMP$18}-deleted`]: "line-through",
|
|
47025
47139
|
[`textDecorationLine-${COMP$18}-inserted`]: "underline",
|
|
@@ -47035,6 +47149,7 @@ ${error2.errorObject}`;
|
|
|
47035
47149
|
[`fontSize-${COMP$18}-sub`]: "$fontSize-smaller",
|
|
47036
47150
|
[`verticalAlign-${COMP$18}-sub`]: "sub",
|
|
47037
47151
|
[`fontStyle-${COMP$18}-var`]: "italic",
|
|
47152
|
+
[`fontStyle-${COMP$18}-em`]: "italic",
|
|
47038
47153
|
[`fontFamily-${COMP$18}-mono`]: "$fontFamily-monospace",
|
|
47039
47154
|
[`fontSize-${COMP$18}-title`]: "$fontSize-large",
|
|
47040
47155
|
[`fontSize-${COMP$18}-subtitle`]: "$fontSize-medium",
|
|
@@ -47057,19 +47172,15 @@ ${error2.errorObject}`;
|
|
|
47057
47172
|
[`marginTop-${COMP$18}-markdown`]: "$space-3",
|
|
47058
47173
|
[`marginBottom-${COMP$18}-markdown`]: "$space-6",
|
|
47059
47174
|
[`fontSize-${COMP$18}-markdown`]: "$fontSize-normal",
|
|
47060
|
-
[`backgroundColor-${COMP$18}-code`]: "$color-surface-100",
|
|
47061
|
-
[`borderColor-${COMP$18}-code`]: "$color-surface-
|
|
47062
|
-
[`backgroundColor-${COMP$18}-keyboard`]: "$color-surface-
|
|
47175
|
+
[`backgroundColor-${COMP$18}-code`]: "rgba($color-surface-100-rgb, .4)",
|
|
47176
|
+
[`borderColor-${COMP$18}-code`]: "$color-surface-300",
|
|
47177
|
+
[`backgroundColor-${COMP$18}-keyboard`]: "rgba($color-surface-100-rgb, .4)",
|
|
47063
47178
|
[`borderColor-${COMP$18}-keyboard`]: "$color-surface-300",
|
|
47064
47179
|
[`backgroundColor-${COMP$18}-marked`]: "yellow",
|
|
47065
47180
|
[`color-${COMP$18}-placeholder`]: "$color-surface-500",
|
|
47066
|
-
[`backgroundColor-${COMP$18}-codefence`]: "#f2f7fc",
|
|
47067
47181
|
[`color-${COMP$18}-codefence`]: "$color-surface-900",
|
|
47068
47182
|
[`color-${COMP$18}-subheading`]: "$textColor-secondary",
|
|
47069
|
-
[`color-${COMP$18}-secondary`]: "$textColor-secondary"
|
|
47070
|
-
dark: {
|
|
47071
|
-
[`backgroundColor-${COMP$18}-codefence`]: "#112033"
|
|
47072
|
-
}
|
|
47183
|
+
[`color-${COMP$18}-secondary`]: "$textColor-secondary"
|
|
47073
47184
|
}
|
|
47074
47185
|
});
|
|
47075
47186
|
const textComponentRenderer = createComponentRenderer(
|
|
@@ -51630,14 +51741,14 @@ ${error2.errorObject}`;
|
|
|
51630
51741
|
alpha2
|
|
51631
51742
|
};
|
|
51632
51743
|
}
|
|
51633
|
-
const themeVars$z = `'{"Input:borderRadius-Checkbox-default": "var(--xmlui-borderRadius-Checkbox-default)", "Input:borderColor-Checkbox-default": "var(--xmlui-borderColor-Checkbox-default)", "Input:backgroundColor-Checkbox-default": "var(--xmlui-backgroundColor-Checkbox-default)", "Input:outlineWidth-Checkbox-default--focus": "var(--xmlui-outlineWidth-Checkbox-default--focus)", "Input:outlineColor-Checkbox-default--focus": "var(--xmlui-outlineColor-Checkbox-default--focus)", "Input:outlineStyle-Checkbox-default--focus": "var(--xmlui-outlineStyle-Checkbox-default--focus)", "Input:outlineOffset-Checkbox-default--focus": "var(--xmlui-outlineOffset-Checkbox-default--focus)", "Input:borderColor-Checkbox-default--hover": "var(--xmlui-borderColor-Checkbox-default--hover)", "Input:backgroundColor-Checkbox--disabled": "var(--xmlui-backgroundColor-Checkbox--disabled)", "Input:borderColor-Checkbox--disabled": "var(--xmlui-borderColor-Checkbox--disabled)", "Input:borderRadius-Checkbox-error": "var(--xmlui-borderRadius-Checkbox-error)", "Input:borderColor-Checkbox-error": "var(--xmlui-borderColor-Checkbox-error)", "Input:backgroundColor-Checkbox-error": "var(--xmlui-backgroundColor-Checkbox-error)", "Input:outlineWidth-Checkbox-error--focus": "var(--xmlui-outlineWidth-Checkbox-error--focus)", "Input:outlineColor-Checkbox-error--focus": "var(--xmlui-outlineColor-Checkbox-error--focus)", "Input:outlineStyle-Checkbox-error--focus": "var(--xmlui-outlineStyle-Checkbox-error--focus)", "Input:outlineOffset-Checkbox-error--focus": "var(--xmlui-outlineOffset-Checkbox-error--focus)", "Input:borderRadius-Checkbox-warning": "var(--xmlui-borderRadius-Checkbox-warning)", "Input:borderColor-Checkbox-warning": "var(--xmlui-borderColor-Checkbox-warning)", "Input:backgroundColor-Checkbox-warning": "var(--xmlui-backgroundColor-Checkbox-warning)", "Input:outlineWidth-Checkbox-warning--focus": "var(--xmlui-outlineWidth-Checkbox-warning--focus)", "Input:outlineColor-Checkbox-warning--focus": "var(--xmlui-outlineColor-Checkbox-warning--focus)", "Input:outlineStyle-Checkbox-warning--focus": "var(--xmlui-outlineStyle-Checkbox-warning--focus)", "Input:outlineOffset-Checkbox-warning--focus": "var(--xmlui-outlineOffset-Checkbox-warning--focus)", "Input:borderRadius-Checkbox-success": "var(--xmlui-borderRadius-Checkbox-success)", "Input:borderColor-Checkbox-success": "var(--xmlui-borderColor-Checkbox-success)", "Input:backgroundColor-Checkbox-success": "var(--xmlui-backgroundColor-Checkbox-success)", "Input:outlineWidth-Checkbox-success--focus": "var(--xmlui-outlineWidth-Checkbox-success--focus)", "Input:outlineColor-Checkbox-success--focus": "var(--xmlui-outlineColor-Checkbox-success--focus)", "Input:outlineStyle-Checkbox-success--focus": "var(--xmlui-outlineStyle-Checkbox-success--focus)", "Input:outlineOffset-Checkbox-success--focus": "var(--xmlui-outlineOffset-Checkbox-success--focus)", "backgroundColor-indicator-Checkbox": "var(--xmlui-backgroundColor-indicator-Checkbox)", "Input:borderColor-checked-Checkbox": "var(--xmlui-borderColor-checked-Checkbox)", "Input:backgroundColor-checked-Checkbox": "var(--xmlui-backgroundColor-checked-Checkbox)", "Input:borderColor-checked-Checkbox-error": "var(--xmlui-borderColor-checked-Checkbox-error)", "Input:backgroundColor-checked-Checkbox-error": "var(--xmlui-backgroundColor-checked-Checkbox-error)", "Input:borderColor-checked-Checkbox-warning": "var(--xmlui-borderColor-checked-Checkbox-warning)", "Input:backgroundColor-checked-Checkbox-warning": "var(--xmlui-backgroundColor-checked-Checkbox-warning)", "Input:borderColor-checked-Checkbox-success": "var(--xmlui-borderColor-checked-Checkbox-success)", "Input:backgroundColor-checked-Checkbox-success": "var(--xmlui-backgroundColor-checked-Checkbox-success)", "Input:borderColor-Switch": "var(--xmlui-borderColor-Switch)", "Input:backgroundColor-Switch": "var(--xmlui-backgroundColor-Switch)", "Input:borderColor-Switch-default--hover": "var(--xmlui-borderColor-Switch-default--hover)", "Input:backgroundColor-Switch--disabled": "var(--xmlui-backgroundColor-Switch--disabled)", "Input:borderColor-Switch--disabled": "var(--xmlui-borderColor-Switch--disabled)", "Input:borderColor-Switch-error": "var(--xmlui-borderColor-Switch-error)", "Input:borderColor-Switch-warning": "var(--xmlui-borderColor-Switch-warning)", "Input:borderColor-Switch-success": "var(--xmlui-borderColor-Switch-success)", "backgroundColor-indicator-Switch": "var(--xmlui-backgroundColor-indicator-Switch)", "Input:borderColor-checked-Switch": "var(--xmlui-borderColor-checked-Switch)", "Input:backgroundColor-checked-Switch": "var(--xmlui-backgroundColor-checked-Switch)", "Input:borderColor-checked-Switch-error": "var(--xmlui-borderColor-checked-Switch-error)", "Input:backgroundColor-checked-Switch-error": "var(--xmlui-backgroundColor-checked-Switch-error)", "Input:borderColor-checked-Switch-warning": "var(--xmlui-borderColor-checked-Switch-warning)", "Input:backgroundColor-checked-Switch-warning": "var(--xmlui-backgroundColor-checked-Switch-warning)", "Input:borderColor-checked-Switch-success": "var(--xmlui-borderColor-checked-Switch-success)", "Input:backgroundColor-checked-Switch-success": "var(--xmlui-backgroundColor-checked-Switch-success)", "Input:outlineWidth-Switch--focus": "var(--xmlui-outlineWidth-Switch--focus)", "Input:outlineColor-Switch--focus": "var(--xmlui-outlineColor-Switch--focus)", "Input:outlineStyle-Switch--focus": "var(--xmlui-outlineStyle-Switch--focus)", "Input:outlineOffset-Switch--focus": "var(--xmlui-outlineOffset-Switch--focus)"}'`;
|
|
51634
|
-
const resetAppearance = "
|
|
51635
|
-
const label$1 = "
|
|
51636
|
-
const inputContainer = "
|
|
51637
|
-
const checkbox = "
|
|
51638
|
-
const error$c = "
|
|
51639
|
-
const warning$
|
|
51640
|
-
const valid$e = "
|
|
51744
|
+
const themeVars$z = `'{"Input:borderRadius-Checkbox-default": "var(--xmlui-borderRadius-Checkbox-default)", "Input:borderColor-Checkbox-default": "var(--xmlui-borderColor-Checkbox-default)", "Input:backgroundColor-Checkbox-default": "var(--xmlui-backgroundColor-Checkbox-default)", "Input:outlineWidth-Checkbox-default--focus": "var(--xmlui-outlineWidth-Checkbox-default--focus)", "Input:outlineColor-Checkbox-default--focus": "var(--xmlui-outlineColor-Checkbox-default--focus)", "Input:outlineStyle-Checkbox-default--focus": "var(--xmlui-outlineStyle-Checkbox-default--focus)", "Input:outlineOffset-Checkbox-default--focus": "var(--xmlui-outlineOffset-Checkbox-default--focus)", "Input:borderColor-Checkbox-default--hover": "var(--xmlui-borderColor-Checkbox-default--hover)", "Input:backgroundColor-Checkbox--disabled": "var(--xmlui-backgroundColor-Checkbox--disabled)", "Input:borderColor-Checkbox--disabled": "var(--xmlui-borderColor-Checkbox--disabled)", "Input:borderRadius-Checkbox-error": "var(--xmlui-borderRadius-Checkbox-error)", "Input:borderColor-Checkbox-error": "var(--xmlui-borderColor-Checkbox-error)", "Input:backgroundColor-Checkbox-error": "var(--xmlui-backgroundColor-Checkbox-error)", "Input:outlineWidth-Checkbox-error--focus": "var(--xmlui-outlineWidth-Checkbox-error--focus)", "Input:outlineColor-Checkbox-error--focus": "var(--xmlui-outlineColor-Checkbox-error--focus)", "Input:outlineStyle-Checkbox-error--focus": "var(--xmlui-outlineStyle-Checkbox-error--focus)", "Input:outlineOffset-Checkbox-error--focus": "var(--xmlui-outlineOffset-Checkbox-error--focus)", "Input:borderRadius-Checkbox-warning": "var(--xmlui-borderRadius-Checkbox-warning)", "Input:borderColor-Checkbox-warning": "var(--xmlui-borderColor-Checkbox-warning)", "Input:backgroundColor-Checkbox-warning": "var(--xmlui-backgroundColor-Checkbox-warning)", "Input:outlineWidth-Checkbox-warning--focus": "var(--xmlui-outlineWidth-Checkbox-warning--focus)", "Input:outlineColor-Checkbox-warning--focus": "var(--xmlui-outlineColor-Checkbox-warning--focus)", "Input:outlineStyle-Checkbox-warning--focus": "var(--xmlui-outlineStyle-Checkbox-warning--focus)", "Input:outlineOffset-Checkbox-warning--focus": "var(--xmlui-outlineOffset-Checkbox-warning--focus)", "Input:borderRadius-Checkbox-success": "var(--xmlui-borderRadius-Checkbox-success)", "Input:borderColor-Checkbox-success": "var(--xmlui-borderColor-Checkbox-success)", "Input:backgroundColor-Checkbox-success": "var(--xmlui-backgroundColor-Checkbox-success)", "Input:outlineWidth-Checkbox-success--focus": "var(--xmlui-outlineWidth-Checkbox-success--focus)", "Input:outlineColor-Checkbox-success--focus": "var(--xmlui-outlineColor-Checkbox-success--focus)", "Input:outlineStyle-Checkbox-success--focus": "var(--xmlui-outlineStyle-Checkbox-success--focus)", "Input:outlineOffset-Checkbox-success--focus": "var(--xmlui-outlineOffset-Checkbox-success--focus)", "backgroundColor-indicator-Checkbox": "var(--xmlui-backgroundColor-indicator-Checkbox)", "Input:borderColor-checked-Checkbox": "var(--xmlui-borderColor-checked-Checkbox)", "Input:backgroundColor-checked-Checkbox": "var(--xmlui-backgroundColor-checked-Checkbox)", "Input:borderColor-checked-Checkbox-error": "var(--xmlui-borderColor-checked-Checkbox-error)", "Input:backgroundColor-checked-Checkbox-error": "var(--xmlui-backgroundColor-checked-Checkbox-error)", "Input:borderColor-checked-Checkbox-warning": "var(--xmlui-borderColor-checked-Checkbox-warning)", "Input:backgroundColor-checked-Checkbox-warning": "var(--xmlui-backgroundColor-checked-Checkbox-warning)", "Input:borderColor-checked-Checkbox-success": "var(--xmlui-borderColor-checked-Checkbox-success)", "Input:backgroundColor-checked-Checkbox-success": "var(--xmlui-backgroundColor-checked-Checkbox-success)", "Input:borderColor-Switch": "var(--xmlui-borderColor-Switch)", "Input:backgroundColor-Switch": "var(--xmlui-backgroundColor-Switch)", "Input:borderColor-Switch-default--hover": "var(--xmlui-borderColor-Switch-default--hover)", "Input:backgroundColor-Switch--disabled": "var(--xmlui-backgroundColor-Switch--disabled)", "Input:borderColor-Switch--disabled": "var(--xmlui-borderColor-Switch--disabled)", "Input:borderColor-Switch-error": "var(--xmlui-borderColor-Switch-error)", "Input:borderColor-Switch-warning": "var(--xmlui-borderColor-Switch-warning)", "Input:borderColor-Switch-success": "var(--xmlui-borderColor-Switch-success)", "backgroundColor-indicator-Switch": "var(--xmlui-backgroundColor-indicator-Switch)", "Input:borderColor-checked-Switch": "var(--xmlui-borderColor-checked-Switch)", "Input:backgroundColor-checked-Switch": "var(--xmlui-backgroundColor-checked-Switch)", "Input:borderColor-checked-Switch-error": "var(--xmlui-borderColor-checked-Switch-error)", "Input:backgroundColor-checked-Switch-error": "var(--xmlui-backgroundColor-checked-Switch-error)", "Input:borderColor-checked-Switch-warning": "var(--xmlui-borderColor-checked-Switch-warning)", "Input:backgroundColor-checked-Switch-warning": "var(--xmlui-backgroundColor-checked-Switch-warning)", "Input:borderColor-checked-Switch-success": "var(--xmlui-borderColor-checked-Switch-success)", "Input:backgroundColor-checked-Switch-success": "var(--xmlui-backgroundColor-checked-Switch-success)", "Input:outlineWidth-Switch--focus": "var(--xmlui-outlineWidth-Switch--focus)", "Input:outlineColor-Switch--focus": "var(--xmlui-outlineColor-Switch--focus)", "Input:outlineStyle-Switch--focus": "var(--xmlui-outlineStyle-Switch--focus)", "Input:outlineOffset-Switch--focus": "var(--xmlui-outlineOffset-Switch--focus)", "backgroundColor-indicator-checked-Switch": "var(--xmlui-backgroundColor-indicator-checked-Switch)"}'`;
|
|
51745
|
+
const resetAppearance = "_resetAppearance_1j250_13";
|
|
51746
|
+
const label$1 = "_label_1j250_21";
|
|
51747
|
+
const inputContainer = "_inputContainer_1j250_25";
|
|
51748
|
+
const checkbox = "_checkbox_1j250_33";
|
|
51749
|
+
const error$c = "_error_1j250_62";
|
|
51750
|
+
const warning$b = "_warning_1j250_73";
|
|
51751
|
+
const valid$e = "_valid_1j250_84";
|
|
51641
51752
|
const styles$O = {
|
|
51642
51753
|
themeVars: themeVars$z,
|
|
51643
51754
|
resetAppearance,
|
|
@@ -51645,9 +51756,9 @@ ${error2.errorObject}`;
|
|
|
51645
51756
|
inputContainer,
|
|
51646
51757
|
checkbox,
|
|
51647
51758
|
error: error$c,
|
|
51648
|
-
warning: warning$
|
|
51759
|
+
warning: warning$b,
|
|
51649
51760
|
valid: valid$e,
|
|
51650
|
-
"switch": "
|
|
51761
|
+
"switch": "_switch_1j250_144"
|
|
51651
51762
|
};
|
|
51652
51763
|
const defaultProps$g = {
|
|
51653
51764
|
initialValue: false,
|
|
@@ -51943,14 +52054,14 @@ ${error2.errorObject}`;
|
|
|
51943
52054
|
reactExports.useEffect(() => {
|
|
51944
52055
|
onSelectionDidChange == null ? void 0 : onSelectionDidChange(selectedItems);
|
|
51945
52056
|
}, [selectedItems, onSelectionDidChange]);
|
|
51946
|
-
const checkAllRows = useEvent((
|
|
52057
|
+
const checkAllRows = useEvent((checked2) => {
|
|
51947
52058
|
if (!rowsSelectable) {
|
|
51948
52059
|
return;
|
|
51949
52060
|
}
|
|
51950
|
-
if (!enableMultiRowSelection &&
|
|
52061
|
+
if (!enableMultiRowSelection && checked2) {
|
|
51951
52062
|
return;
|
|
51952
52063
|
}
|
|
51953
|
-
setSelectedRowIds(
|
|
52064
|
+
setSelectedRowIds(checked2 ? items.map((item2) => item2[idKey]) : []);
|
|
51954
52065
|
});
|
|
51955
52066
|
const selectedRowIdMap = reactExports.useMemo(() => {
|
|
51956
52067
|
let rows = {};
|
|
@@ -52209,8 +52320,8 @@ ${error2.errorObject}`;
|
|
|
52209
52320
|
}),
|
|
52210
52321
|
value: table22.getIsAllRowsSelected(),
|
|
52211
52322
|
indeterminate: table22.getIsSomeRowsSelected(),
|
|
52212
|
-
onDidChange: (
|
|
52213
|
-
checkAllRows(
|
|
52323
|
+
onDidChange: (checked2) => {
|
|
52324
|
+
checkAllRows(checked2);
|
|
52214
52325
|
}
|
|
52215
52326
|
}
|
|
52216
52327
|
}
|
|
@@ -53077,7 +53188,7 @@ ${error2.errorObject}`;
|
|
|
53077
53188
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
53078
53189
|
};
|
|
53079
53190
|
Object.defineProperty(renderPropsVersion, "__esModule", { value: true });
|
|
53080
|
-
const react_1 =
|
|
53191
|
+
const react_1 = requireReact();
|
|
53081
53192
|
const events_1 = events;
|
|
53082
53193
|
const find_1 = __importDefault$3(find$5);
|
|
53083
53194
|
const getClosestTransformedParent_1 = __importDefault$3(getClosestTransformedParent$1);
|
|
@@ -53334,7 +53445,7 @@ ${error2.errorObject}`;
|
|
|
53334
53445
|
};
|
|
53335
53446
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
53336
53447
|
exports2.defaultProps = void 0;
|
|
53337
|
-
const react_12 = __importDefault2(
|
|
53448
|
+
const react_12 = __importDefault2(requireReact());
|
|
53338
53449
|
const render_props_version_12 = __importDefault2(renderPropsVersion);
|
|
53339
53450
|
exports2.defaultProps = Object.assign(Object.assign({}, render_props_version_12.default.defaultProps), { stickyClassName: "sticky", wrapperClassName: "", stickyStyle: {} });
|
|
53340
53451
|
function Sticky2(props) {
|
|
@@ -60409,7 +60520,7 @@ to {
|
|
|
60409
60520
|
const input$1 = "_input_qxt8y_13";
|
|
60410
60521
|
const adornment$2 = "_adornment_qxt8y_53";
|
|
60411
60522
|
const error$b = "_error_qxt8y_56";
|
|
60412
|
-
const warning$
|
|
60523
|
+
const warning$a = "_warning_qxt8y_91";
|
|
60413
60524
|
const valid$d = "_valid_qxt8y_126";
|
|
60414
60525
|
const readOnly$2 = "_readOnly_qxt8y_181";
|
|
60415
60526
|
const styles$A = {
|
|
@@ -60418,7 +60529,7 @@ to {
|
|
|
60418
60529
|
input: input$1,
|
|
60419
60530
|
adornment: adornment$2,
|
|
60420
60531
|
error: error$b,
|
|
60421
|
-
warning: warning$
|
|
60532
|
+
warning: warning$a,
|
|
60422
60533
|
valid: valid$d,
|
|
60423
60534
|
readOnly: readOnly$2
|
|
60424
60535
|
};
|
|
@@ -60752,7 +60863,7 @@ to {
|
|
|
60752
60863
|
const input = "_input_1ynbq_13";
|
|
60753
60864
|
const adornment$1 = "_adornment_1ynbq_53";
|
|
60754
60865
|
const error$a = "_error_1ynbq_56";
|
|
60755
|
-
const warning$
|
|
60866
|
+
const warning$9 = "_warning_1ynbq_90";
|
|
60756
60867
|
const valid$c = "_valid_1ynbq_124";
|
|
60757
60868
|
const spinnerBox = "_spinnerBox_1ynbq_184";
|
|
60758
60869
|
const spinnerButton = "_spinnerButton_1ynbq_191";
|
|
@@ -60763,7 +60874,7 @@ to {
|
|
|
60763
60874
|
input,
|
|
60764
60875
|
adornment: adornment$1,
|
|
60765
60876
|
error: error$a,
|
|
60766
|
-
warning: warning$
|
|
60877
|
+
warning: warning$9,
|
|
60767
60878
|
valid: valid$c,
|
|
60768
60879
|
spinnerBox,
|
|
60769
60880
|
spinnerButton,
|
|
@@ -68408,7 +68519,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
68408
68519
|
const themeVars$i = `'{"padding-item-Select": "var(--xmlui-padding-item-Select)", "paddingHorizontal-item-Select": "var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select))", "paddingVertical-item-Select": "var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select))", "paddingLeft-item-Select": "var(--xmlui-paddingLeft-item-Select, var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select)))", "paddingRight-item-Select": "var(--xmlui-paddingRight-item-Select, var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select)))", "paddingTop-item-Select": "var(--xmlui-paddingTop-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)))", "paddingBottom-item-Select": "var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)))", "Input:fontSize-Select-default": "var(--xmlui-fontSize-Select-default)", "Input:textColor-placeholder-Select-default": "var(--xmlui-textColor-placeholder-Select-default)", "Input:textColor-Select-default": "var(--xmlui-textColor-Select-default)", "Input:fontSize-Select-error": "var(--xmlui-fontSize-Select-error)", "Input:textColor-placeholder-Select-error": "var(--xmlui-textColor-placeholder-Select-error)", "Input:textColor-Select-error": "var(--xmlui-textColor-Select-error)", "Input:fontSize-Select-warning": "var(--xmlui-fontSize-Select-warning)", "Input:textColor-placeholder-Select-warning": "var(--xmlui-textColor-placeholder-Select-warning)", "Input:textColor-Select-warning": "var(--xmlui-textColor-Select-warning)", "Input:fontSize-Select-success": "var(--xmlui-fontSize-Select-success)", "Input:textColor-placeholder-Select-success": "var(--xmlui-textColor-placeholder-Select-success)", "Input:textColor-Select-success": "var(--xmlui-textColor-Select-success)", "Input:borderRadius-Select-default": "var(--xmlui-borderRadius-Select-default)", "Input:borderColor-Select-default": "var(--xmlui-borderColor-Select-default)", "Input:borderWidth-Select-default": "var(--xmlui-borderWidth-Select-default)", "Input:borderStyle-Select-default": "var(--xmlui-borderStyle-Select-default)", "Input:backgroundColor-Select-default": "var(--xmlui-backgroundColor-Select-default)", "Input:boxShadow-Select-default": "var(--xmlui-boxShadow-Select-default)", "Input:borderColor-Select-default--hover": "var(--xmlui-borderColor-Select-default--hover)", "Input:backgroundColor-Select-default--hover": "var(--xmlui-backgroundColor-Select-default--hover)", "Input:boxShadow-Select-default--hover": "var(--xmlui-boxShadow-Select-default--hover)", "Input:textColor-Select-default--hover": "var(--xmlui-textColor-Select-default--hover)", "Input:outlineWidth-Select-default--focus": "var(--xmlui-outlineWidth-Select-default--focus)", "Input:outlineColor-Select-default--focus": "var(--xmlui-outlineColor-Select-default--focus)", "Input:outlineStyle-Select-default--focus": "var(--xmlui-outlineStyle-Select-default--focus)", "Input:outlineOffset-Select-default--focus": "var(--xmlui-outlineOffset-Select-default--focus)", "Input:borderRadius-Select-error": "var(--xmlui-borderRadius-Select-error)", "Input:borderColor-Select-error": "var(--xmlui-borderColor-Select-error)", "Input:borderWidth-Select-error": "var(--xmlui-borderWidth-Select-error)", "Input:borderStyle-Select-error": "var(--xmlui-borderStyle-Select-error)", "Input:backgroundColor-Select-error": "var(--xmlui-backgroundColor-Select-error)", "Input:boxShadow-Select-error": "var(--xmlui-boxShadow-Select-error)", "Input:borderColor-Select-error--hover": "var(--xmlui-borderColor-Select-error--hover)", "Input:backgroundColor-Select-error--hover": "var(--xmlui-backgroundColor-Select-error--hover)", "Input:boxShadow-Select-error--hover": "var(--xmlui-boxShadow-Select-error--hover)", "Input:textColor-Select-error--hover": "var(--xmlui-textColor-Select-error--hover)", "Input:outlineWidth-Select-error--focus": "var(--xmlui-outlineWidth-Select-error--focus)", "Input:outlineColor-Select-error--focus": "var(--xmlui-outlineColor-Select-error--focus)", "Input:outlineStyle-Select-error--focus": "var(--xmlui-outlineStyle-Select-error--focus)", "Input:outlineOffset-Select-error--focus": "var(--xmlui-outlineOffset-Select-error--focus)", "Input:borderRadius-Select-warning": "var(--xmlui-borderRadius-Select-warning)", "Input:borderColor-Select-warning": "var(--xmlui-borderColor-Select-warning)", "Input:borderWidth-Select-warning": "var(--xmlui-borderWidth-Select-warning)", "Input:borderStyle-Select-warning": "var(--xmlui-borderStyle-Select-warning)", "Input:backgroundColor-Select-warning": "var(--xmlui-backgroundColor-Select-warning)", "Input:boxShadow-Select-warning": "var(--xmlui-boxShadow-Select-warning)", "Input:borderColor-Select-warning--hover": "var(--xmlui-borderColor-Select-warning--hover)", "Input:backgroundColor-Select-warning--hover": "var(--xmlui-backgroundColor-Select-warning--hover)", "Input:boxShadow-Select-warning--hover": "var(--xmlui-boxShadow-Select-warning--hover)", "Input:textColor-Select-warning--hover": "var(--xmlui-textColor-Select-warning--hover)", "Input:outlineWidth-Select-warning--focus": "var(--xmlui-outlineWidth-Select-warning--focus)", "Input:outlineColor-Select-warning--focus": "var(--xmlui-outlineColor-Select-warning--focus)", "Input:outlineStyle-Select-warning--focus": "var(--xmlui-outlineStyle-Select-warning--focus)", "Input:outlineOffset-Select-warning--focus": "var(--xmlui-outlineOffset-Select-warning--focus)", "Input:borderRadius-Select-success": "var(--xmlui-borderRadius-Select-success)", "Input:borderColor-Select-success": "var(--xmlui-borderColor-Select-success)", "Input:borderWidth-Select-success": "var(--xmlui-borderWidth-Select-success)", "Input:borderStyle-Select-success": "var(--xmlui-borderStyle-Select-success)", "Input:backgroundColor-Select-success": "var(--xmlui-backgroundColor-Select-success)", "Input:boxShadow-Select-success": "var(--xmlui-boxShadow-Select-success)", "Input:borderColor-Select-success--hover": "var(--xmlui-borderColor-Select-success--hover)", "Input:backgroundColor-Select-success--hover": "var(--xmlui-backgroundColor-Select-success--hover)", "Input:boxShadow-Select-success--hover": "var(--xmlui-boxShadow-Select-success--hover)", "Input:textColor-Select-success--hover": "var(--xmlui-textColor-Select-success--hover)", "Input:outlineWidth-Select-success--focus": "var(--xmlui-outlineWidth-Select-success--focus)", "Input:outlineColor-Select-success--focus": "var(--xmlui-outlineColor-Select-success--focus)", "Input:outlineStyle-Select-success--focus": "var(--xmlui-outlineStyle-Select-success--focus)", "Input:outlineOffset-Select-success--focus": "var(--xmlui-outlineOffset-Select-success--focus)", "opacity-Select--disabled": "var(--xmlui-opacity-Select--disabled)", "Input:backgroundColor-Select--disabled": "var(--xmlui-backgroundColor-Select--disabled)", "Input:textColor-Select--disabled": "var(--xmlui-textColor-Select--disabled)", "Input:borderColor-Select--disabled": "var(--xmlui-borderColor-Select--disabled)", "paddingVertical-Select-badge": "var(--xmlui-paddingVertical-Select-badge)", "paddingHorizontal-Select-badge": "var(--xmlui-paddingHorizontal-Select-badge)", "Input:fontSize-Select-badge": "var(--xmlui-fontSize-Select-badge)", "Input:backgroundColor-Select-badge": "var(--xmlui-backgroundColor-Select-badge)", "Input:textColor-Select-badge": "var(--xmlui-textColor-Select-badge)", "Input:backgroundColor-Select-badge--hover": "var(--xmlui-backgroundColor-Select-badge--hover)", "Input:textColor-Select-badge--hover": "var(--xmlui-textColor-Select-badge--hover)", "Input:backgroundColor-Select-badge--active": "var(--xmlui-backgroundColor-Select-badge--active)", "Input:textColor-Select-badge--active": "var(--xmlui-textColor-Select-badge--active)", "Input:textColor-placeholder-Select": "var(--xmlui-textColor-placeholder-Select)", "Input:backgroundColor-menu-Select": "var(--xmlui-backgroundColor-menu-Select)", "Input:borderRadius-menu-Select": "var(--xmlui-borderRadius-menu-Select)", "Input:boxShadow-menu-Select": "var(--xmlui-boxShadow-menu-Select)", "Input:borderWidth-menu-Select": "var(--xmlui-borderWidth-menu-Select)", "Input:borderColor-menu-Select": "var(--xmlui-borderColor-menu-Select)", "backgroundColor-item-Select": "var(--xmlui-backgroundColor-item-Select)", "backgroundColor-item-Select--hover": "var(--xmlui-backgroundColor-item-Select--hover)", "opacity-text-item-Select--disabled": "var(--xmlui-opacity-text-item-Select--disabled)", "fontSize-Select": "var(--xmlui-fontSize-Select)", "backgroundColor-item-Select--active": "var(--xmlui-backgroundColor-item-Select--active)", "textColor-indicator-Select": "var(--xmlui-textColor-indicator-Select)"}'`;
|
|
68409
68520
|
const selectValue = "_selectValue_1cwq0_13";
|
|
68410
68521
|
const error$9 = "_error_1cwq0_21";
|
|
68411
|
-
const warning$
|
|
68522
|
+
const warning$8 = "_warning_1cwq0_29";
|
|
68412
68523
|
const valid$b = "_valid_1cwq0_37";
|
|
68413
68524
|
const selectTrigger = "_selectTrigger_1cwq0_46";
|
|
68414
68525
|
const badgeListContainer = "_badgeListContainer_1cwq0_170";
|
|
@@ -68445,7 +68556,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
68445
68556
|
themeVars: themeVars$i,
|
|
68446
68557
|
selectValue,
|
|
68447
68558
|
error: error$9,
|
|
68448
|
-
warning: warning$
|
|
68559
|
+
warning: warning$8,
|
|
68449
68560
|
valid: valid$b,
|
|
68450
68561
|
selectTrigger,
|
|
68451
68562
|
badgeListContainer,
|
|
@@ -69930,7 +70041,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
69930
70041
|
const [$ce77a8961b41be9e$var$createRadioContext, $ce77a8961b41be9e$export$67d2296460f1b002] = $c512c27ab02ef895$export$50c7b4e9d9f19c1$5($ce77a8961b41be9e$var$RADIO_NAME);
|
|
69931
70042
|
const [$ce77a8961b41be9e$var$RadioProvider, $ce77a8961b41be9e$var$useRadioContext] = $ce77a8961b41be9e$var$createRadioContext($ce77a8961b41be9e$var$RADIO_NAME);
|
|
69932
70043
|
const $ce77a8961b41be9e$export$d7b12c4107be0d61 = /* @__PURE__ */ reactExports.forwardRef((props, forwardedRef) => {
|
|
69933
|
-
const { __scopeRadio, name: name2, checked = false, required: required2, disabled: disabled2, value = "on", onCheck, ...radioProps } = props;
|
|
70044
|
+
const { __scopeRadio, name: name2, checked: checked2 = false, required: required2, disabled: disabled2, value = "on", onCheck, ...radioProps } = props;
|
|
69934
70045
|
const [button2, setButton] = reactExports.useState(null);
|
|
69935
70046
|
const composedRefs = $6ed0406888f73fc4$export$c7b2cbe3552a0d05$4(
|
|
69936
70047
|
forwardedRef,
|
|
@@ -69940,20 +70051,20 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
69940
70051
|
const isFormControl = button2 ? Boolean(button2.closest("form")) : true;
|
|
69941
70052
|
return /* @__PURE__ */ reactExports.createElement($ce77a8961b41be9e$var$RadioProvider, {
|
|
69942
70053
|
scope: __scopeRadio,
|
|
69943
|
-
checked,
|
|
70054
|
+
checked: checked2,
|
|
69944
70055
|
disabled: disabled2
|
|
69945
70056
|
}, /* @__PURE__ */ reactExports.createElement($8927f6f2acc4f386$export$250ffa63cdc0d034$6.button, _extends$5({
|
|
69946
70057
|
type: "button",
|
|
69947
70058
|
role: "radio",
|
|
69948
|
-
"aria-checked":
|
|
69949
|
-
"data-state": $ce77a8961b41be9e$var$getState(
|
|
70059
|
+
"aria-checked": checked2,
|
|
70060
|
+
"data-state": $ce77a8961b41be9e$var$getState(checked2),
|
|
69950
70061
|
"data-disabled": disabled2 ? "" : void 0,
|
|
69951
70062
|
disabled: disabled2,
|
|
69952
70063
|
value
|
|
69953
70064
|
}, radioProps, {
|
|
69954
70065
|
ref: composedRefs,
|
|
69955
70066
|
onClick: $e42e1063c40fb3ef$export$b9ecd428b558ff10(props.onClick, (event) => {
|
|
69956
|
-
if (!
|
|
70067
|
+
if (!checked2) onCheck === null || onCheck === void 0 || onCheck();
|
|
69957
70068
|
if (isFormControl) {
|
|
69958
70069
|
hasConsumerStoppedPropagationRef.current = event.isPropagationStopped();
|
|
69959
70070
|
if (!hasConsumerStoppedPropagationRef.current) event.stopPropagation();
|
|
@@ -69964,7 +70075,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
69964
70075
|
bubbles: !hasConsumerStoppedPropagationRef.current,
|
|
69965
70076
|
name: name2,
|
|
69966
70077
|
value,
|
|
69967
|
-
checked,
|
|
70078
|
+
checked: checked2,
|
|
69968
70079
|
required: required2,
|
|
69969
70080
|
disabled: disabled2,
|
|
69970
70081
|
style: {
|
|
@@ -69986,31 +70097,31 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
69986
70097
|
})));
|
|
69987
70098
|
});
|
|
69988
70099
|
const $ce77a8961b41be9e$var$BubbleInput = (props) => {
|
|
69989
|
-
const { control, checked, bubbles = true, ...inputProps } = props;
|
|
70100
|
+
const { control, checked: checked2, bubbles = true, ...inputProps } = props;
|
|
69990
70101
|
const ref = reactExports.useRef(null);
|
|
69991
|
-
const prevChecked = $010c2913dbd2fe3d$export$5cae361ad82dce8b(
|
|
70102
|
+
const prevChecked = $010c2913dbd2fe3d$export$5cae361ad82dce8b(checked2);
|
|
69992
70103
|
const controlSize = $db6c3485150b8e66$export$1ab7ae714698c4b8(control);
|
|
69993
70104
|
reactExports.useEffect(() => {
|
|
69994
70105
|
const input2 = ref.current;
|
|
69995
70106
|
const inputProto = window.HTMLInputElement.prototype;
|
|
69996
70107
|
const descriptor = Object.getOwnPropertyDescriptor(inputProto, "checked");
|
|
69997
70108
|
const setChecked = descriptor.set;
|
|
69998
|
-
if (prevChecked !==
|
|
70109
|
+
if (prevChecked !== checked2 && setChecked) {
|
|
69999
70110
|
const event = new Event("click", {
|
|
70000
70111
|
bubbles
|
|
70001
70112
|
});
|
|
70002
|
-
setChecked.call(input2,
|
|
70113
|
+
setChecked.call(input2, checked2);
|
|
70003
70114
|
input2.dispatchEvent(event);
|
|
70004
70115
|
}
|
|
70005
70116
|
}, [
|
|
70006
70117
|
prevChecked,
|
|
70007
|
-
|
|
70118
|
+
checked2,
|
|
70008
70119
|
bubbles
|
|
70009
70120
|
]);
|
|
70010
70121
|
return /* @__PURE__ */ reactExports.createElement("input", _extends$5({
|
|
70011
70122
|
type: "radio",
|
|
70012
70123
|
"aria-hidden": true,
|
|
70013
|
-
defaultChecked:
|
|
70124
|
+
defaultChecked: checked2
|
|
70014
70125
|
}, inputProps, {
|
|
70015
70126
|
tabIndex: -1,
|
|
70016
70127
|
ref,
|
|
@@ -70024,8 +70135,8 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70024
70135
|
}
|
|
70025
70136
|
}));
|
|
70026
70137
|
};
|
|
70027
|
-
function $ce77a8961b41be9e$var$getState(
|
|
70028
|
-
return
|
|
70138
|
+
function $ce77a8961b41be9e$var$getState(checked2) {
|
|
70139
|
+
return checked2 ? "checked" : "unchecked";
|
|
70029
70140
|
}
|
|
70030
70141
|
const $f99a8c78507165f7$var$ARROW_KEYS = [
|
|
70031
70142
|
"ArrowUp",
|
|
@@ -70082,7 +70193,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70082
70193
|
const radioScope = $f99a8c78507165f7$var$useRadioScope(__scopeRadioGroup);
|
|
70083
70194
|
const ref = reactExports.useRef(null);
|
|
70084
70195
|
const composedRefs = $6ed0406888f73fc4$export$c7b2cbe3552a0d05$4(forwardedRef, ref);
|
|
70085
|
-
const
|
|
70196
|
+
const checked2 = context.value === itemProps.value;
|
|
70086
70197
|
const isArrowKeyPressedRef = reactExports.useRef(false);
|
|
70087
70198
|
reactExports.useEffect(() => {
|
|
70088
70199
|
const handleKeyDown = (event) => {
|
|
@@ -70100,11 +70211,11 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70100
70211
|
asChild: true
|
|
70101
70212
|
}, rovingFocusGroupScope, {
|
|
70102
70213
|
focusable: !isDisabled,
|
|
70103
|
-
active:
|
|
70214
|
+
active: checked2
|
|
70104
70215
|
}), /* @__PURE__ */ reactExports.createElement($ce77a8961b41be9e$export$d7b12c4107be0d61, _extends$5({
|
|
70105
70216
|
disabled: isDisabled,
|
|
70106
70217
|
required: context.required,
|
|
70107
|
-
checked
|
|
70218
|
+
checked: checked2
|
|
70108
70219
|
}, radioScope, itemProps, {
|
|
70109
70220
|
name: context.name,
|
|
70110
70221
|
ref: composedRefs,
|
|
@@ -70128,26 +70239,28 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70128
70239
|
const $f99a8c78507165f7$export$be92b6f5f03c0fe9 = $f99a8c78507165f7$export$a98f0dcb43a68a25;
|
|
70129
70240
|
const $f99a8c78507165f7$export$6d08773d2e66f8f2 = $f99a8c78507165f7$export$9f866c100ef519e4;
|
|
70130
70241
|
const $f99a8c78507165f7$export$adb584737d712b70 = $f99a8c78507165f7$export$5fb54c671a65c88;
|
|
70131
|
-
const themeVars$h = `'{"gap-RadioGroupOption": "var(--xmlui-gap-RadioGroupOption)", "Input:backgroundColor-RadioGroupOption-default": "var(--xmlui-backgroundColor-RadioGroupOption-default)", "borderWidth-RadioGroupOption": "var(--xmlui-borderWidth-RadioGroupOption)", "Input:borderColor-RadioGroupOption-default": "var(--xmlui-borderColor-RadioGroupOption-default)", "Input:borderColor-RadioGroupOption-default--hover": "var(--xmlui-borderColor-RadioGroupOption-default--hover)", "Input:borderColor-RadioGroupOption-default--active": "var(--xmlui-borderColor-RadioGroupOption-default--active)", "Input:borderColor-RadioGroupOption--disabled": "var(--xmlui-borderColor-RadioGroupOption--disabled)", "Input:color-RadioGroupOption--disabled": "var(--xmlui-color-RadioGroupOption--disabled)", "Input:borderColor-RadioGroupOption-error": "var(--xmlui-borderColor-RadioGroupOption-error)", "Input:borderColor-RadioGroupOption-warning": "var(--xmlui-borderColor-RadioGroupOption-warning)", "Input:borderColor-RadioGroupOption-success": "var(--xmlui-borderColor-RadioGroupOption-success)", "backgroundColor-checked-RadioGroupOption-default": "var(--xmlui-backgroundColor-checked-RadioGroupOption-default)", "backgroundColor-checked-RadioGroupOption--disabled": "var(--xmlui-backgroundColor-checked-RadioGroupOption--disabled)", "backgroundColor-checked-RadioGroupOption-error": "var(--xmlui-backgroundColor-checked-RadioGroupOption-error)", "backgroundColor-checked-RadioGroupOption-warning": "var(--xmlui-backgroundColor-checked-RadioGroupOption-warning)", "backgroundColor-checked-RadioGroupOption-success": "var(--xmlui-backgroundColor-checked-RadioGroupOption-success)", "Input:fontSize-RadioGroupOption": "var(--xmlui-fontSize-RadioGroupOption)", "Input:fontWeight-RadioGroupOption": "var(--xmlui-fontWeight-RadioGroupOption)", "Input:color-RadioGroupOption-default": "var(--xmlui-color-RadioGroupOption-default)", "Input:color-RadioGroupOption-error": "var(--xmlui-color-RadioGroupOption-error)", "Input:color-RadioGroupOption-warning": "var(--xmlui-color-RadioGroupOption-warning)", "Input:color-RadioGroupOption-success": "var(--xmlui-color-RadioGroupOption-success)", "Input:outlineWidth-RadioGroupOption--focus": "var(--xmlui-outlineWidth-RadioGroupOption--focus)", "Input:outlineColor-RadioGroupOption--focus": "var(--xmlui-outlineColor-RadioGroupOption--focus)", "Input:outlineStyle-RadioGroupOption--focus": "var(--xmlui-outlineStyle-RadioGroupOption--focus)", "Input:outlineOffset-RadioGroupOption--focus": "var(--xmlui-outlineOffset-RadioGroupOption--focus)"}'`;
|
|
70132
|
-
const radioGroupContainer = "
|
|
70133
|
-
const radioOptionContainer = "
|
|
70134
|
-
const radioOption = "
|
|
70135
|
-
const error$8 = "
|
|
70136
|
-
const warning$
|
|
70137
|
-
const valid$a = "
|
|
70138
|
-
const
|
|
70139
|
-
const
|
|
70140
|
-
const
|
|
70141
|
-
const
|
|
70142
|
-
const
|
|
70242
|
+
const themeVars$h = `'{"gap-RadioGroupOption": "var(--xmlui-gap-RadioGroupOption)", "Input:backgroundColor-RadioGroupOption-default": "var(--xmlui-backgroundColor-RadioGroupOption-default)", "borderWidth-RadioGroupOption": "var(--xmlui-borderWidth-RadioGroupOption)", "Input:borderColor-RadioGroupOption-default": "var(--xmlui-borderColor-RadioGroupOption-default)", "Input:borderColor-RadioGroupOption-default--hover": "var(--xmlui-borderColor-RadioGroupOption-default--hover)", "Input:borderColor-RadioGroupOption-default--active": "var(--xmlui-borderColor-RadioGroupOption-default--active)", "Input:borderColor-RadioGroupOption--disabled": "var(--xmlui-borderColor-RadioGroupOption--disabled)", "Input:color-RadioGroupOption--disabled": "var(--xmlui-color-RadioGroupOption--disabled)", "Input:borderColor-RadioGroupOption-error": "var(--xmlui-borderColor-RadioGroupOption-error)", "Input:borderColor-RadioGroupOption-warning": "var(--xmlui-borderColor-RadioGroupOption-warning)", "Input:borderColor-RadioGroupOption-success": "var(--xmlui-borderColor-RadioGroupOption-success)", "Input:backgroundColor-checked-RadioGroupOption-indicator": "var(--xmlui-backgroundColor-checked-RadioGroupOption-indicator)", "backgroundColor-checked-RadioGroupOption-default": "var(--xmlui-backgroundColor-checked-RadioGroupOption-default)", "backgroundColor-checked-RadioGroupOption--disabled": "var(--xmlui-backgroundColor-checked-RadioGroupOption--disabled)", "backgroundColor-checked-RadioGroupOption-error": "var(--xmlui-backgroundColor-checked-RadioGroupOption-error)", "backgroundColor-checked-RadioGroupOption-warning": "var(--xmlui-backgroundColor-checked-RadioGroupOption-warning)", "backgroundColor-checked-RadioGroupOption-success": "var(--xmlui-backgroundColor-checked-RadioGroupOption-success)", "Input:fontSize-RadioGroupOption": "var(--xmlui-fontSize-RadioGroupOption)", "Input:fontWeight-RadioGroupOption": "var(--xmlui-fontWeight-RadioGroupOption)", "Input:color-RadioGroupOption-default": "var(--xmlui-color-RadioGroupOption-default)", "Input:color-RadioGroupOption-error": "var(--xmlui-color-RadioGroupOption-error)", "Input:color-RadioGroupOption-warning": "var(--xmlui-color-RadioGroupOption-warning)", "Input:color-RadioGroupOption-success": "var(--xmlui-color-RadioGroupOption-success)", "Input:outlineWidth-RadioGroupOption--focus": "var(--xmlui-outlineWidth-RadioGroupOption--focus)", "Input:outlineColor-RadioGroupOption--focus": "var(--xmlui-outlineColor-RadioGroupOption--focus)", "Input:outlineStyle-RadioGroupOption--focus": "var(--xmlui-outlineStyle-RadioGroupOption--focus)", "Input:outlineOffset-RadioGroupOption--focus": "var(--xmlui-outlineOffset-RadioGroupOption--focus)"}'`;
|
|
70243
|
+
const radioGroupContainer = "_radioGroupContainer_1easy_13";
|
|
70244
|
+
const radioOptionContainer = "_radioOptionContainer_1easy_20";
|
|
70245
|
+
const radioOption = "_radioOption_1easy_20";
|
|
70246
|
+
const error$8 = "_error_1easy_55";
|
|
70247
|
+
const warning$7 = "_warning_1easy_58";
|
|
70248
|
+
const valid$a = "_valid_1easy_61";
|
|
70249
|
+
const checked = "_checked_1easy_64";
|
|
70250
|
+
const indicator$2 = "_indicator_1easy_68";
|
|
70251
|
+
const disabled$4 = "_disabled_1easy_84";
|
|
70252
|
+
const itemContainer = "_itemContainer_1easy_97";
|
|
70253
|
+
const optionLabel = "_optionLabel_1easy_105";
|
|
70254
|
+
const label = "_label_1easy_110";
|
|
70143
70255
|
const styles$v = {
|
|
70144
70256
|
themeVars: themeVars$h,
|
|
70145
70257
|
radioGroupContainer,
|
|
70146
70258
|
radioOptionContainer,
|
|
70147
70259
|
radioOption,
|
|
70148
70260
|
error: error$8,
|
|
70149
|
-
warning: warning$
|
|
70261
|
+
warning: warning$7,
|
|
70150
70262
|
valid: valid$a,
|
|
70263
|
+
checked,
|
|
70151
70264
|
indicator: indicator$2,
|
|
70152
70265
|
disabled: disabled$4,
|
|
70153
70266
|
itemContainer,
|
|
@@ -70249,6 +70362,18 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70249
70362
|
}
|
|
70250
70363
|
);
|
|
70251
70364
|
});
|
|
70365
|
+
function useRadioGroupValue() {
|
|
70366
|
+
const context = reactExports.useContext(RadioGroupValidationStatusContext);
|
|
70367
|
+
if (!context) {
|
|
70368
|
+
throw new Error("useRadioGroupValue must be used within a RadioGroup");
|
|
70369
|
+
}
|
|
70370
|
+
const { value } = context;
|
|
70371
|
+
const isChecked = reactExports.useCallback((optionValue) => value === optionValue, [value]);
|
|
70372
|
+
return {
|
|
70373
|
+
value,
|
|
70374
|
+
isChecked
|
|
70375
|
+
};
|
|
70376
|
+
}
|
|
70252
70377
|
const RadioGroupOption = ({
|
|
70253
70378
|
value,
|
|
70254
70379
|
label: label2,
|
|
@@ -70258,6 +70383,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70258
70383
|
}) => {
|
|
70259
70384
|
const id = reactExports.useId();
|
|
70260
70385
|
const validationContext = reactExports.useContext(RadioGroupValidationStatusContext);
|
|
70386
|
+
const { isChecked } = useRadioGroupValue();
|
|
70261
70387
|
const statusStyles = reactExports.useMemo(
|
|
70262
70388
|
() => ({
|
|
70263
70389
|
[styles$v.disabled]: !enabled2,
|
|
@@ -70272,7 +70398,9 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
70272
70398
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
70273
70399
|
$f99a8c78507165f7$export$6d08773d2e66f8f2,
|
|
70274
70400
|
{
|
|
70275
|
-
className: classnames(styles$v.radioOption, statusStyles
|
|
70401
|
+
className: classnames(styles$v.radioOption, statusStyles, {
|
|
70402
|
+
[styles$v.checked]: isChecked(value)
|
|
70403
|
+
}),
|
|
70276
70404
|
value,
|
|
70277
70405
|
disabled: !enabled2,
|
|
70278
70406
|
id,
|
|
@@ -76023,7 +76151,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
76023
76151
|
const placeholder = "_placeholder_qilmv_47";
|
|
76024
76152
|
const adornment = "_adornment_qilmv_50";
|
|
76025
76153
|
const error$7 = "_error_qilmv_53";
|
|
76026
|
-
const warning$
|
|
76154
|
+
const warning$6 = "_warning_qilmv_81";
|
|
76027
76155
|
const valid$9 = "_valid_qilmv_109";
|
|
76028
76156
|
const disabled$3 = "_disabled_qilmv_137";
|
|
76029
76157
|
const indicator$1 = "_indicator_qilmv_143";
|
|
@@ -76070,7 +76198,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
76070
76198
|
placeholder,
|
|
76071
76199
|
adornment,
|
|
76072
76200
|
error: error$7,
|
|
76073
|
-
warning: warning$
|
|
76201
|
+
warning: warning$6,
|
|
76074
76202
|
valid: valid$9,
|
|
76075
76203
|
disabled: disabled$3,
|
|
76076
76204
|
indicator: indicator$1,
|
|
@@ -76377,16 +76505,16 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
76377
76505
|
const validationContainer = "_validationContainer_1sc6r_22";
|
|
76378
76506
|
const error$6 = "_error_1sc6r_52";
|
|
76379
76507
|
const heading$3 = "_heading_1sc6r_58";
|
|
76380
|
-
const warning$
|
|
76381
|
-
const info = "_info_1sc6r_72";
|
|
76508
|
+
const warning$5 = "_warning_1sc6r_62";
|
|
76509
|
+
const info$1 = "_info_1sc6r_72";
|
|
76382
76510
|
const valid$8 = "_valid_1sc6r_22";
|
|
76383
76511
|
const styles$s = {
|
|
76384
76512
|
summaryContainer,
|
|
76385
76513
|
validationContainer,
|
|
76386
76514
|
error: error$6,
|
|
76387
76515
|
heading: heading$3,
|
|
76388
|
-
warning: warning$
|
|
76389
|
-
info,
|
|
76516
|
+
warning: warning$5,
|
|
76517
|
+
info: info$1,
|
|
76390
76518
|
valid: valid$8
|
|
76391
76519
|
};
|
|
76392
76520
|
function ValidationSummary({
|
|
@@ -76952,7 +77080,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
76952
77080
|
const command = "_command_1xx47_13";
|
|
76953
77081
|
const badgeListWrapper = "_badgeListWrapper_1xx47_20";
|
|
76954
77082
|
const error$5 = "_error_1xx47_44";
|
|
76955
|
-
const warning$
|
|
77083
|
+
const warning$4 = "_warning_1xx47_63";
|
|
76956
77084
|
const valid$7 = "_valid_1xx47_82";
|
|
76957
77085
|
const disabled$2 = "_disabled_1xx47_101";
|
|
76958
77086
|
const focused = "_focused_1xx47_108";
|
|
@@ -76968,7 +77096,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
76968
77096
|
command,
|
|
76969
77097
|
badgeListWrapper,
|
|
76970
77098
|
error: error$5,
|
|
76971
|
-
warning: warning$
|
|
77099
|
+
warning: warning$4,
|
|
76972
77100
|
valid: valid$7,
|
|
76973
77101
|
disabled: disabled$2,
|
|
76974
77102
|
focused,
|
|
@@ -77973,7 +78101,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
77973
78101
|
const sliderRoot = "_sliderRoot_d4hsx_19";
|
|
77974
78102
|
const sliderTrack = "_sliderTrack_d4hsx_29";
|
|
77975
78103
|
const error$4 = "_error_d4hsx_51";
|
|
77976
|
-
const warning$
|
|
78104
|
+
const warning$3 = "_warning_d4hsx_66";
|
|
77977
78105
|
const valid$6 = "_valid_d4hsx_81";
|
|
77978
78106
|
const disabled$1 = "_disabled_d4hsx_96";
|
|
77979
78107
|
const sliderRange = "_sliderRange_d4hsx_100";
|
|
@@ -77985,7 +78113,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
77985
78113
|
sliderRoot,
|
|
77986
78114
|
sliderTrack,
|
|
77987
78115
|
error: error$4,
|
|
77988
|
-
warning: warning$
|
|
78116
|
+
warning: warning$3,
|
|
77989
78117
|
valid: valid$6,
|
|
77990
78118
|
disabled: disabled$1,
|
|
77991
78119
|
sliderRange,
|
|
@@ -78188,13 +78316,13 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
78188
78316
|
const themeVars$c = `'{"Input:backgroundColor-ColorPicker": "var(--xmlui-backgroundColor-ColorPicker)", "Input:borderRadius-ColorPicker-default": "var(--xmlui-borderRadius-ColorPicker-default)", "Input:borderColor-ColorPicker-default": "var(--xmlui-borderColor-ColorPicker-default)", "Input:borderWidth-ColorPicker-default": "var(--xmlui-borderWidth-ColorPicker-default)", "Input:borderStyle-ColorPicker-default": "var(--xmlui-borderStyle-ColorPicker-default)", "Input:boxShadow-ColorPicker-default": "var(--xmlui-boxShadow-ColorPicker-default)", "Input:borderColor-ColorPicker-default--hover": "var(--xmlui-borderColor-ColorPicker-default--hover)", "Input:boxShadow-ColorPicker-default--hover": "var(--xmlui-boxShadow-ColorPicker-default--hover)", "Input:borderColor-ColorPicker-default--focus": "var(--xmlui-borderColor-ColorPicker-default--focus)", "Input:boxShadow-ColorPicker-default--focus": "var(--xmlui-boxShadow-ColorPicker-default--focus)", "Input:borderRadius-ColorPicker-error": "var(--xmlui-borderRadius-ColorPicker-error)", "Input:borderColor-ColorPicker-error": "var(--xmlui-borderColor-ColorPicker-error)", "Input:borderWidth-ColorPicker-error": "var(--xmlui-borderWidth-ColorPicker-error)", "Input:borderStyle-ColorPicker-error": "var(--xmlui-borderStyle-ColorPicker-error)", "Input:boxShadow-ColorPicker-error": "var(--xmlui-boxShadow-ColorPicker-error)", "Input:borderColor-ColorPicker-error--hover": "var(--xmlui-borderColor-ColorPicker-error--hover)", "Input:boxShadow-ColorPicker-error--hover": "var(--xmlui-boxShadow-ColorPicker-error--hover)", "Input:borderColor-ColorPicker-error--focus": "var(--xmlui-borderColor-ColorPicker-error--focus)", "Input:boxShadow-ColorPicker-error--focus": "var(--xmlui-boxShadow-ColorPicker-error--focus)", "Input:borderRadius-ColorPicker-warning": "var(--xmlui-borderRadius-ColorPicker-warning)", "Input:borderColor-ColorPicker-warning": "var(--xmlui-borderColor-ColorPicker-warning)", "Input:borderWidth-ColorPicker-warning": "var(--xmlui-borderWidth-ColorPicker-warning)", "Input:borderStyle-ColorPicker-warning": "var(--xmlui-borderStyle-ColorPicker-warning)", "Input:boxShadow-ColorPicker-warning": "var(--xmlui-boxShadow-ColorPicker-warning)", "Input:borderColor-ColorPicker-warning--hover": "var(--xmlui-borderColor-ColorPicker-warning--hover)", "Input:boxShadow-ColorPicker-warning--hover": "var(--xmlui-boxShadow-ColorPicker-warning--hover)", "Input:borderColor-ColorPicker-warning--focus": "var(--xmlui-borderColor-ColorPicker-warning--focus)", "Input:boxShadow-ColorPicker-warning--focus": "var(--xmlui-boxShadow-ColorPicker-warning--focus)", "Input:borderRadius-ColorPicker-success": "var(--xmlui-borderRadius-ColorPicker-success)", "Input:borderColor-ColorPicker-success": "var(--xmlui-borderColor-ColorPicker-success)", "Input:borderWidth-ColorPicker-success": "var(--xmlui-borderWidth-ColorPicker-success)", "Input:borderStyle-ColorPicker-success": "var(--xmlui-borderStyle-ColorPicker-success)", "Input:boxShadow-ColorPicker-success": "var(--xmlui-boxShadow-ColorPicker-success)", "Input:borderColor-ColorPicker-success--hover": "var(--xmlui-borderColor-ColorPicker-success--hover)", "Input:boxShadow-ColorPicker-success--hover": "var(--xmlui-boxShadow-ColorPicker-success--hover)", "Input:borderColor-ColorPicker-success--focus": "var(--xmlui-borderColor-ColorPicker-success--focus)", "Input:boxShadow-ColorPicker-success--focus": "var(--xmlui-boxShadow-ColorPicker-success--focus)"}'`;
|
|
78189
78317
|
const colorInput = "_colorInput_ays9f_13";
|
|
78190
78318
|
const error$3 = "_error_ays9f_41";
|
|
78191
|
-
const warning$
|
|
78319
|
+
const warning$2 = "_warning_ays9f_56";
|
|
78192
78320
|
const valid$5 = "_valid_ays9f_71";
|
|
78193
78321
|
const styles$p = {
|
|
78194
78322
|
themeVars: themeVars$c,
|
|
78195
78323
|
colorInput,
|
|
78196
78324
|
error: error$3,
|
|
78197
|
-
warning: warning$
|
|
78325
|
+
warning: warning$2,
|
|
78198
78326
|
valid: valid$5
|
|
78199
78327
|
};
|
|
78200
78328
|
const defaultProps$6 = {
|
|
@@ -78303,13 +78431,13 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
78303
78431
|
const helperText = "_helperText_1qbfk_24";
|
|
78304
78432
|
const valid$4 = "_valid_1qbfk_29";
|
|
78305
78433
|
const error$2 = "_error_1qbfk_34";
|
|
78306
|
-
const warning = "_warning_1qbfk_39";
|
|
78434
|
+
const warning$1 = "_warning_1qbfk_39";
|
|
78307
78435
|
const styles$o = {
|
|
78308
78436
|
helper,
|
|
78309
78437
|
helperText,
|
|
78310
78438
|
valid: valid$4,
|
|
78311
78439
|
error: error$2,
|
|
78312
|
-
warning
|
|
78440
|
+
warning: warning$1
|
|
78313
78441
|
};
|
|
78314
78442
|
function AiFillPlusCircle(props) {
|
|
78315
78443
|
return GenIcon({ "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm192 472c0 4.4-3.6 8-8 8H544v152c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V544H328c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h152V328c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v152h152c4.4 0 8 3.6 8 8v48z" } }] })(props);
|
|
@@ -79374,7 +79502,6 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
79374
79502
|
break;
|
|
79375
79503
|
}
|
|
79376
79504
|
case "text": {
|
|
79377
|
-
console.log("gap", gap);
|
|
79378
79505
|
formControl = /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
79379
79506
|
TextBox,
|
|
79380
79507
|
{
|
|
@@ -101125,7 +101252,8 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
101125
101252
|
themeVars: parseScssVar(styles$v.themeVars),
|
|
101126
101253
|
defaultThemeVars: {
|
|
101127
101254
|
[`gap-${RGOption}`]: "$space-1_5",
|
|
101128
|
-
[`borderWidth-${RGOption}`]: "
|
|
101255
|
+
[`borderWidth-${RGOption}`]: "1px",
|
|
101256
|
+
[`backgroundColor-checked-${RGOption}-indicator`]: `$backgroundColor-primary`,
|
|
101129
101257
|
[`backgroundColor-checked-${RGOption}--disabled]`]: `$borderColor-${RGOption}--disabled`,
|
|
101130
101258
|
[`backgroundColor-checked-${RGOption}-error`]: `$borderColor-${RGOption}-error`,
|
|
101131
101259
|
[`backgroundColor-checked-${RGOption}-warning`]: `$borderColor-${RGOption}-warning`,
|
|
@@ -101333,24 +101461,34 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
101333
101461
|
);
|
|
101334
101462
|
}
|
|
101335
101463
|
);
|
|
101336
|
-
const themeVars$9 = `'{"paddingTop-Markdown": "var(--xmlui-paddingTop-Markdown)", "paddingBottom-Markdown": "var(--xmlui-paddingBottom-Markdown)", "backgroundColor-Markdown": "var(--xmlui-backgroundColor-Markdown)", "padding-Blockquote": "var(--xmlui-padding-Blockquote)", "paddingHorizontal-Blockquote": "var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote))", "paddingVertical-Blockquote": "var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote))", "paddingLeft-Blockquote": "var(--xmlui-paddingLeft-Blockquote)", "paddingRight-Blockquote": "var(--xmlui-paddingRight-Blockquote, var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote)))", "paddingTop-Blockquote": "var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)))", "paddingBottom-Blockquote": "var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)))", "border-Blockquote": "var(--xmlui-border-Blockquote)", "borderHorizontal-Blockquote": "var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote))", "borderVertical-Blockquote": "var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote))", "borderLeft-Blockquote": "var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)))", "borderRight-Blockquote": "var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)))", "borderTop-Blockquote": "var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)))", "borderBottom-Blockquote": "var(--xmlui-borderBottom-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)))", "borderWidth-Blockquote": "var(--xmlui-borderWidth-Blockquote)", "borderHorizontalWidth-Blockquote": "var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote))", "borderLeftWidth-Blockquote": "var(--xmlui-borderLeftWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderRightWidth-Blockquote": "var(--xmlui-borderRightWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderVerticalWidth-Blockquote": "var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote))", "borderTopWidth-Blockquote": "var(--xmlui-borderTopWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderBottomWidth-Blockquote": "var(--xmlui-borderBottomWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderStyle-Blockquote": "var(--xmlui-borderStyle-Blockquote)", "borderHorizontalStyle-Blockquote": "var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote))", "borderLeftStyle-Blockquote": "var(--xmlui-borderLeftStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderRightStyle-Blockquote": "var(--xmlui-borderRightStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderVerticalStyle-Blockquote": "var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote))", "borderTopStyle-Blockquote": "var(--xmlui-borderTopStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderBottomStyle-Blockquote": "var(--xmlui-borderBottomStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderColor-Blockquote": "var(--xmlui-borderColor-Blockquote)", "borderHorizontalColor-Blockquote": "var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote))", "borderLeftColor-Blockquote": "var(--xmlui-borderLeftColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderRightColor-Blockquote": "var(--xmlui-borderRightColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderVerticalColor-Blockquote": "var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote))", "borderTopColor-Blockquote": "var(--xmlui-borderTopColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderBottomColor-Blockquote": "var(--xmlui-borderBottomColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderStartStartRadius-Blockquote": "var(--xmlui-borderStartStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderStartEndRadius-Blockquote": "var(--xmlui-borderStartEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderEndStartRadius-Blockquote": "var(--xmlui-borderEndStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderEndEndRadius-Blockquote": "var(--xmlui-borderEndEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "accentColor-Blockquote": "var(--xmlui-accentColor-Blockquote)", "accentWidth-Blockquote": "var(--xmlui-accentWidth-Blockquote)", "backgroundColor-Blockquote": "var(--xmlui-backgroundColor-Blockquote)", "borderRadius-Blockquote": "var(--xmlui-borderRadius-Blockquote)", "marginTop-Blockquote": "var(--xmlui-marginTop-Blockquote)", "marginBottom-Blockquote": "var(--xmlui-marginBottom-Blockquote)", "padding-Admonition": "var(--xmlui-padding-Admonition)", "paddingHorizontal-Admonition": "var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition))", "paddingVertical-Admonition": "var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition))", "paddingLeft-Admonition": "var(--xmlui-paddingLeft-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)))", "paddingRight-Admonition": "var(--xmlui-paddingRight-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)))", "paddingTop-Admonition": "var(--xmlui-paddingTop-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)))", "paddingBottom-Admonition": "var(--xmlui-paddingBottom-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)))", "border-Admonition": "var(--xmlui-border-Admonition)", "borderHorizontal-Admonition": "var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition))", "borderVertical-Admonition": "var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition))", "borderLeft-Admonition": "var(--xmlui-borderLeft-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)))", "borderRight-Admonition": "var(--xmlui-borderRight-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)))", "borderTop-Admonition": "var(--xmlui-borderTop-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)))", "borderBottom-Admonition": "var(--xmlui-borderBottom-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)))", "borderWidth-Admonition": "var(--xmlui-borderWidth-Admonition)", "borderHorizontalWidth-Admonition": "var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition))", "borderLeftWidth-Admonition": "var(--xmlui-borderLeftWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderRightWidth-Admonition": "var(--xmlui-borderRightWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderVerticalWidth-Admonition": "var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition))", "borderTopWidth-Admonition": "var(--xmlui-borderTopWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderBottomWidth-Admonition": "var(--xmlui-borderBottomWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderStyle-Admonition": "var(--xmlui-borderStyle-Admonition)", "borderHorizontalStyle-Admonition": "var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition))", "borderLeftStyle-Admonition": "var(--xmlui-borderLeftStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderRightStyle-Admonition": "var(--xmlui-borderRightStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderVerticalStyle-Admonition": "var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition))", "borderTopStyle-Admonition": "var(--xmlui-borderTopStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderBottomStyle-Admonition": "var(--xmlui-borderBottomStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderColor-Admonition": "var(--xmlui-borderColor-Admonition)", "borderHorizontalColor-Admonition": "var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition))", "borderLeftColor-Admonition": "var(--xmlui-borderLeftColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderRightColor-Admonition": "var(--xmlui-borderRightColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderVerticalColor-Admonition": "var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition))", "borderTopColor-Admonition": "var(--xmlui-borderTopColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderBottomColor-Admonition": "var(--xmlui-borderBottomColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderStartStartRadius-Admonition": "var(--xmlui-borderStartStartRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderStartEndRadius-Admonition": "var(--xmlui-borderStartEndRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderEndStartRadius-Admonition": "var(--xmlui-borderEndStartRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderEndEndRadius-Admonition": "var(--xmlui-borderEndEndRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "backgroundColor-Admonition": "var(--xmlui-backgroundColor-Admonition)", "borderRadius-Admonition": "var(--xmlui-borderRadius-Admonition)", "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)", "marginTop-H1-markdown": "var(--xmlui-marginTop-H1-markdown)", "marginBottom-H1-markdown": "var(--xmlui-marginBottom-H1-markdown)", "fontSize-H1-markdown": "var(--xmlui-fontSize-H1-markdown)", "marginTop-H2-markdown": "var(--xmlui-marginTop-H2-markdown)", "marginBottom-H2-markdown": "var(--xmlui-marginBottom-H2-markdown)", "marginTop-H3-markdown": "var(--xmlui-marginTop-H3-markdown)", "marginBottom-H3-markdown": "var(--xmlui-marginBottom-H3-markdown)", "marginTop-H4-markdown": "var(--xmlui-marginTop-H4-markdown)", "marginBottom-H4-markdown": "var(--xmlui-marginBottom-H4-markdown)", "marginTop-H5-markdown": "var(--xmlui-marginTop-H5-markdown)", "marginBottom-H5-markdown": "var(--xmlui-marginBottom-H5-markdown)", "marginTop-H6-markdown": "var(--xmlui-marginTop-H6-markdown)", "marginBottom-H6-markdown": "var(--xmlui-marginBottom-H6-markdown)", "borderColor-HorizontalRule": "var(--xmlui-borderColor-HorizontalRule)", "borderStyle-HorizontalRule": "var(--xmlui-borderStyle-HorizontalRule)", "borderWidth-HorizontalRule": "var(--xmlui-borderWidth-HorizontalRule)"}'`;
|
|
101337
|
-
const markdownContent = "
|
|
101338
|
-
const blockquote$3 = "
|
|
101339
|
-
const blockquoteContainer = "
|
|
101340
|
-
const admonitionBlockquote = "
|
|
101341
|
-
const
|
|
101342
|
-
const
|
|
101343
|
-
const
|
|
101344
|
-
const
|
|
101464
|
+
const themeVars$9 = `'{"paddingTop-Markdown": "var(--xmlui-paddingTop-Markdown)", "paddingBottom-Markdown": "var(--xmlui-paddingBottom-Markdown)", "backgroundColor-Markdown": "var(--xmlui-backgroundColor-Markdown)", "padding-Blockquote": "var(--xmlui-padding-Blockquote)", "paddingHorizontal-Blockquote": "var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote))", "paddingVertical-Blockquote": "var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote))", "paddingLeft-Blockquote": "var(--xmlui-paddingLeft-Blockquote)", "paddingRight-Blockquote": "var(--xmlui-paddingRight-Blockquote, var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote)))", "paddingTop-Blockquote": "var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)))", "paddingBottom-Blockquote": "var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)))", "border-Blockquote": "var(--xmlui-border-Blockquote)", "borderHorizontal-Blockquote": "var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote))", "borderVertical-Blockquote": "var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote))", "borderLeft-Blockquote": "var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)))", "borderRight-Blockquote": "var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)))", "borderTop-Blockquote": "var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)))", "borderBottom-Blockquote": "var(--xmlui-borderBottom-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)))", "borderWidth-Blockquote": "var(--xmlui-borderWidth-Blockquote)", "borderHorizontalWidth-Blockquote": "var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote))", "borderLeftWidth-Blockquote": "var(--xmlui-borderLeftWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderRightWidth-Blockquote": "var(--xmlui-borderRightWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderVerticalWidth-Blockquote": "var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote))", "borderTopWidth-Blockquote": "var(--xmlui-borderTopWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderBottomWidth-Blockquote": "var(--xmlui-borderBottomWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)))", "borderStyle-Blockquote": "var(--xmlui-borderStyle-Blockquote)", "borderHorizontalStyle-Blockquote": "var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote))", "borderLeftStyle-Blockquote": "var(--xmlui-borderLeftStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderRightStyle-Blockquote": "var(--xmlui-borderRightStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderVerticalStyle-Blockquote": "var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote))", "borderTopStyle-Blockquote": "var(--xmlui-borderTopStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderBottomStyle-Blockquote": "var(--xmlui-borderBottomStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)))", "borderColor-Blockquote": "var(--xmlui-borderColor-Blockquote)", "borderHorizontalColor-Blockquote": "var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote))", "borderLeftColor-Blockquote": "var(--xmlui-borderLeftColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderRightColor-Blockquote": "var(--xmlui-borderRightColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderVerticalColor-Blockquote": "var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote))", "borderTopColor-Blockquote": "var(--xmlui-borderTopColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderBottomColor-Blockquote": "var(--xmlui-borderBottomColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)))", "borderStartStartRadius-Blockquote": "var(--xmlui-borderStartStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderStartEndRadius-Blockquote": "var(--xmlui-borderStartEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderEndStartRadius-Blockquote": "var(--xmlui-borderEndStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "borderEndEndRadius-Blockquote": "var(--xmlui-borderEndEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote))", "accentColor-Blockquote": "var(--xmlui-accentColor-Blockquote)", "accentWidth-Blockquote": "var(--xmlui-accentWidth-Blockquote)", "backgroundColor-Blockquote": "var(--xmlui-backgroundColor-Blockquote)", "borderRadius-Blockquote": "var(--xmlui-borderRadius-Blockquote)", "marginTop-Blockquote": "var(--xmlui-marginTop-Blockquote)", "marginBottom-Blockquote": "var(--xmlui-marginBottom-Blockquote)", "padding-Admonition": "var(--xmlui-padding-Admonition)", "paddingHorizontal-Admonition": "var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition))", "paddingVertical-Admonition": "var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition))", "paddingLeft-Admonition": "var(--xmlui-paddingLeft-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)))", "paddingRight-Admonition": "var(--xmlui-paddingRight-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)))", "paddingTop-Admonition": "var(--xmlui-paddingTop-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)))", "paddingBottom-Admonition": "var(--xmlui-paddingBottom-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)))", "border-Admonition": "var(--xmlui-border-Admonition)", "borderHorizontal-Admonition": "var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition))", "borderVertical-Admonition": "var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition))", "borderLeft-Admonition": "var(--xmlui-borderLeft-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)))", "borderRight-Admonition": "var(--xmlui-borderRight-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)))", "borderTop-Admonition": "var(--xmlui-borderTop-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)))", "borderBottom-Admonition": "var(--xmlui-borderBottom-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)))", "borderWidth-Admonition": "var(--xmlui-borderWidth-Admonition)", "borderHorizontalWidth-Admonition": "var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition))", "borderLeftWidth-Admonition": "var(--xmlui-borderLeftWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderRightWidth-Admonition": "var(--xmlui-borderRightWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderVerticalWidth-Admonition": "var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition))", "borderTopWidth-Admonition": "var(--xmlui-borderTopWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderBottomWidth-Admonition": "var(--xmlui-borderBottomWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)))", "borderStyle-Admonition": "var(--xmlui-borderStyle-Admonition)", "borderHorizontalStyle-Admonition": "var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition))", "borderLeftStyle-Admonition": "var(--xmlui-borderLeftStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderRightStyle-Admonition": "var(--xmlui-borderRightStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderVerticalStyle-Admonition": "var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition))", "borderTopStyle-Admonition": "var(--xmlui-borderTopStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderBottomStyle-Admonition": "var(--xmlui-borderBottomStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)))", "borderColor-Admonition": "var(--xmlui-borderColor-Admonition)", "borderHorizontalColor-Admonition": "var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition))", "borderLeftColor-Admonition": "var(--xmlui-borderLeftColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderRightColor-Admonition": "var(--xmlui-borderRightColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderVerticalColor-Admonition": "var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition))", "borderTopColor-Admonition": "var(--xmlui-borderTopColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderBottomColor-Admonition": "var(--xmlui-borderBottomColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)))", "borderStartStartRadius-Admonition": "var(--xmlui-borderStartStartRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderStartEndRadius-Admonition": "var(--xmlui-borderStartEndRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderEndStartRadius-Admonition": "var(--xmlui-borderEndStartRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "borderEndEndRadius-Admonition": "var(--xmlui-borderEndEndRadius-Admonition, var(--xmlui-borderRadius-Admonition))", "backgroundColor-Admonition": "var(--xmlui-backgroundColor-Admonition)", "borderRadius-Admonition": "var(--xmlui-borderRadius-Admonition)", "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)", "marginTop-H1-markdown": "var(--xmlui-marginTop-H1-markdown)", "marginBottom-H1-markdown": "var(--xmlui-marginBottom-H1-markdown)", "fontSize-H1-markdown": "var(--xmlui-fontSize-H1-markdown)", "marginTop-H2-markdown": "var(--xmlui-marginTop-H2-markdown)", "marginBottom-H2-markdown": "var(--xmlui-marginBottom-H2-markdown)", "marginTop-H3-markdown": "var(--xmlui-marginTop-H3-markdown)", "marginBottom-H3-markdown": "var(--xmlui-marginBottom-H3-markdown)", "marginTop-H4-markdown": "var(--xmlui-marginTop-H4-markdown)", "marginBottom-H4-markdown": "var(--xmlui-marginBottom-H4-markdown)", "marginTop-H5-markdown": "var(--xmlui-marginTop-H5-markdown)", "marginBottom-H5-markdown": "var(--xmlui-marginBottom-H5-markdown)", "marginTop-H6-markdown": "var(--xmlui-marginTop-H6-markdown)", "marginBottom-H6-markdown": "var(--xmlui-marginBottom-H6-markdown)", "backgroundColor-Admonition-info": "var(--xmlui-backgroundColor-Admonition-info)", "borderColor-Admonition-info": "var(--xmlui-borderColor-Admonition-info)", "backgroundColor-Admonition-warning": "var(--xmlui-backgroundColor-Admonition-warning)", "borderColor-Admonition-warning": "var(--xmlui-borderColor-Admonition-warning)", "backgroundColor-Admonition-danger": "var(--xmlui-backgroundColor-Admonition-danger)", "borderColor-Admonition-danger": "var(--xmlui-borderColor-Admonition-danger)", "backgroundColor-Admonition-note": "var(--xmlui-backgroundColor-Admonition-note)", "borderColor-Admonition-note": "var(--xmlui-borderColor-Admonition-note)", "backgroundColor-Admonition-tip": "var(--xmlui-backgroundColor-Admonition-tip)", "borderColor-Admonition-tip": "var(--xmlui-borderColor-Admonition-tip)", "borderColor-HorizontalRule": "var(--xmlui-borderColor-HorizontalRule)", "borderStyle-HorizontalRule": "var(--xmlui-borderStyle-HorizontalRule)", "borderWidth-HorizontalRule": "var(--xmlui-borderWidth-HorizontalRule)"}'`;
|
|
101465
|
+
const markdownContent = "_markdownContent_1vc6z_13";
|
|
101466
|
+
const blockquote$3 = "_blockquote_1vc6z_45";
|
|
101467
|
+
const blockquoteContainer = "_blockquoteContainer_1vc6z_61";
|
|
101468
|
+
const admonitionBlockquote = "_admonitionBlockquote_1vc6z_89";
|
|
101469
|
+
const info = "_info_1vc6z_121";
|
|
101470
|
+
const warning = "_warning_1vc6z_125";
|
|
101471
|
+
const danger = "_danger_1vc6z_129";
|
|
101472
|
+
const note = "_note_1vc6z_133";
|
|
101473
|
+
const tip = "_tip_1vc6z_137";
|
|
101474
|
+
const admonitionContainer = "_admonitionContainer_1vc6z_141";
|
|
101475
|
+
const admonitionIcon = "_admonitionIcon_1vc6z_146";
|
|
101476
|
+
const admonitionContent = "_admonitionContent_1vc6z_150";
|
|
101477
|
+
const horizontalRule = "_horizontalRule_1vc6z_160";
|
|
101345
101478
|
const styles$k = {
|
|
101346
101479
|
themeVars: themeVars$9,
|
|
101347
101480
|
markdownContent,
|
|
101348
101481
|
blockquote: blockquote$3,
|
|
101349
101482
|
blockquoteContainer,
|
|
101350
101483
|
admonitionBlockquote,
|
|
101484
|
+
info,
|
|
101485
|
+
warning,
|
|
101486
|
+
danger,
|
|
101487
|
+
note,
|
|
101488
|
+
tip,
|
|
101351
101489
|
admonitionContainer,
|
|
101352
|
-
admonitionContent,
|
|
101353
101490
|
admonitionIcon,
|
|
101491
|
+
admonitionContent,
|
|
101354
101492
|
horizontalRule
|
|
101355
101493
|
};
|
|
101356
101494
|
function ok$4() {
|
|
@@ -132335,7 +132473,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
132335
132473
|
function isResponseWithoutBody(status) {
|
|
132336
132474
|
return RESPONSE_STATUS_CODES_WITHOUT_BODY.has(status);
|
|
132337
132475
|
}
|
|
132338
|
-
var define_process_env_default$6 = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.
|
|
132476
|
+
var define_process_env_default$6 = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.30 (built 5/14/2025)" };
|
|
132339
132477
|
var __defProp$7 = Object.defineProperty;
|
|
132340
132478
|
var __export = (target2, all2) => {
|
|
132341
132479
|
for (var name2 in all2)
|
|
@@ -140302,13 +140440,11 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140302
140440
|
}
|
|
140303
140441
|
) });
|
|
140304
140442
|
}
|
|
140443
|
+
const highlightRowsClass = "codeBlockHighlightRow";
|
|
140444
|
+
const highlightSubstringsClass = "codeBlockHighlightString";
|
|
140305
140445
|
function parseMetaAndHighlightCode(node2, codeHighlighter, themeTone) {
|
|
140306
140446
|
const codeStr = mapTextContent(node2);
|
|
140307
|
-
const meta = extractMetaFromChildren(
|
|
140308
|
-
node2,
|
|
140309
|
-
CodeHighlighterMetaKeysData,
|
|
140310
|
-
codeStr.split("\n").length
|
|
140311
|
-
);
|
|
140447
|
+
const meta = extractMetaFromChildren(node2, CodeHighlighterMetaKeysData, codeStr);
|
|
140312
140448
|
const { language, ...restMeta } = meta;
|
|
140313
140449
|
if (language && codeHighlighter.availableLangs.includes(language)) {
|
|
140314
140450
|
const htmlCodeStr = codeHighlighter.highlight(codeStr, language, restMeta, themeTone);
|
|
@@ -140361,7 +140497,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140361
140497
|
return splitNode.join("\n");
|
|
140362
140498
|
}
|
|
140363
140499
|
}
|
|
140364
|
-
function extractMetaFromChildren(node2, keys2,
|
|
140500
|
+
function extractMetaFromChildren(node2, keys2, code2 = "") {
|
|
140365
140501
|
if (!node2) return {};
|
|
140366
140502
|
if (typeof node2 === "string") return {};
|
|
140367
140503
|
if (typeof node2 === "number") return {};
|
|
@@ -140382,9 +140518,14 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140382
140518
|
[CodeHighlighterMetaKeys.rowNumbers.prop]: parseBoolean(
|
|
140383
140519
|
meta[CodeHighlighterMetaKeys.rowNumbers.data]
|
|
140384
140520
|
),
|
|
140385
|
-
[CodeHighlighterMetaKeys.highlightRows.prop]:
|
|
140386
|
-
|
|
140387
|
-
|
|
140521
|
+
[CodeHighlighterMetaKeys.highlightRows.prop]: parseRowHighlights(
|
|
140522
|
+
code2.split("\n").length,
|
|
140523
|
+
meta[CodeHighlighterMetaKeys.highlightRows.data]
|
|
140524
|
+
),
|
|
140525
|
+
[CodeHighlighterMetaKeys.highlightSubstrings.prop]: parseSubstringHighlights(
|
|
140526
|
+
code2,
|
|
140527
|
+
meta[CodeHighlighterMetaKeys.highlightSubstrings.data]
|
|
140528
|
+
)
|
|
140388
140529
|
};
|
|
140389
140530
|
}
|
|
140390
140531
|
return {};
|
|
@@ -140394,24 +140535,56 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140394
140535
|
if (str === "false") return false;
|
|
140395
140536
|
return false;
|
|
140396
140537
|
}
|
|
140397
|
-
function parseRowHighlights(
|
|
140538
|
+
function parseRowHighlights(codeLines, str) {
|
|
140539
|
+
if (!str) return [];
|
|
140398
140540
|
if (str === "") return [];
|
|
140399
140541
|
return str.split(",").map((item2) => {
|
|
140400
140542
|
item2 = item2.trim();
|
|
140401
|
-
const
|
|
140402
|
-
|
|
140543
|
+
const split = item2.split("-");
|
|
140544
|
+
let start2 = 0;
|
|
140403
140545
|
let end2 = 0;
|
|
140404
|
-
if (
|
|
140405
|
-
|
|
140546
|
+
if (split.length === 0) return { start: start2, end: end2, properties: { class: highlightRowsClass } };
|
|
140547
|
+
const val = parseAndRemoveIfInvalid(split[0]);
|
|
140548
|
+
start2 = val - 1;
|
|
140549
|
+
if (split.length === 1) {
|
|
140550
|
+
end2 = val;
|
|
140406
140551
|
} else {
|
|
140407
|
-
end2 =
|
|
140552
|
+
end2 = parseAndRemoveIfInvalid(split[1]);
|
|
140408
140553
|
}
|
|
140409
|
-
return { start: start2, end: end2 };
|
|
140554
|
+
return { start: start2, end: end2, properties: { class: highlightRowsClass } };
|
|
140410
140555
|
}).filter((item2) => {
|
|
140411
140556
|
if (item2.start === -1 || item2.end === -1) return false;
|
|
140412
140557
|
if (item2.start > codeLines || item2.end > codeLines) return false;
|
|
140413
140558
|
return true;
|
|
140414
140559
|
});
|
|
140560
|
+
function parseAndRemoveIfInvalid(value) {
|
|
140561
|
+
const parsed = parseInt(value, 10);
|
|
140562
|
+
if (Number.isNaN(parsed)) return -1;
|
|
140563
|
+
if (parsed < 0) return -1;
|
|
140564
|
+
if (parsed > codeLines) return -1;
|
|
140565
|
+
return parsed;
|
|
140566
|
+
}
|
|
140567
|
+
}
|
|
140568
|
+
function parseSubstringHighlights(code2, str) {
|
|
140569
|
+
if (!str) return [];
|
|
140570
|
+
if (!code2) return [];
|
|
140571
|
+
return str.split(" ").map((item2) => window.atob(item2)).reduce((acc, item2) => acc.concat(findAllNonOverlappingSubstrings(code2, item2)), []);
|
|
140572
|
+
function findAllNonOverlappingSubstrings(str2, code22) {
|
|
140573
|
+
const result = [];
|
|
140574
|
+
let startIndex = 0;
|
|
140575
|
+
const searchLength = code22.length;
|
|
140576
|
+
while (startIndex <= str2.length - searchLength) {
|
|
140577
|
+
const index2 = str2.indexOf(code22, startIndex);
|
|
140578
|
+
if (index2 === -1) break;
|
|
140579
|
+
result.push({
|
|
140580
|
+
start: index2,
|
|
140581
|
+
end: index2 + searchLength,
|
|
140582
|
+
properties: { class: highlightSubstringsClass }
|
|
140583
|
+
});
|
|
140584
|
+
startIndex = index2 + searchLength;
|
|
140585
|
+
}
|
|
140586
|
+
return result;
|
|
140587
|
+
}
|
|
140415
140588
|
}
|
|
140416
140589
|
const CodeHighlighterMetaKeys = {
|
|
140417
140590
|
language: { data: "data-language", prop: "language" },
|
|
@@ -140424,11 +140597,11 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140424
140597
|
const CodeHighlighterMetaKeysData = Object.values(CodeHighlighterMetaKeys).map(
|
|
140425
140598
|
(item2) => item2.data
|
|
140426
140599
|
);
|
|
140427
|
-
const themeVars$7 = `'{"padding-CodeBlock": "var(--xmlui-padding-CodeBlock)", "paddingHorizontal-CodeBlock": "var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingVertical-CodeBlock": "var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingLeft-CodeBlock": "var(--xmlui-paddingLeft-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingRight-CodeBlock": "var(--xmlui-paddingRight-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingTop-CodeBlock": "var(--xmlui-paddingTop-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingBottom-CodeBlock": "var(--xmlui-paddingBottom-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "border-CodeBlock": "var(--xmlui-border-CodeBlock)", "borderHorizontal-CodeBlock": "var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock))", "borderVertical-CodeBlock": "var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock))", "borderLeft-CodeBlock": "var(--xmlui-borderLeft-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderRight-CodeBlock": "var(--xmlui-borderRight-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderTop-CodeBlock": "var(--xmlui-borderTop-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderBottom-CodeBlock": "var(--xmlui-borderBottom-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderWidth-CodeBlock": "var(--xmlui-borderWidth-CodeBlock)", "borderHorizontalWidth-CodeBlock": "var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderLeftWidth-CodeBlock": "var(--xmlui-borderLeftWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderRightWidth-CodeBlock": "var(--xmlui-borderRightWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderVerticalWidth-CodeBlock": "var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderTopWidth-CodeBlock": "var(--xmlui-borderTopWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderBottomWidth-CodeBlock": "var(--xmlui-borderBottomWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderStyle-CodeBlock": "var(--xmlui-borderStyle-CodeBlock)", "borderHorizontalStyle-CodeBlock": "var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderLeftStyle-CodeBlock": "var(--xmlui-borderLeftStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderRightStyle-CodeBlock": "var(--xmlui-borderRightStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderVerticalStyle-CodeBlock": "var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderTopStyle-CodeBlock": "var(--xmlui-borderTopStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderBottomStyle-CodeBlock": "var(--xmlui-borderBottomStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderColor-CodeBlock": "var(--xmlui-borderColor-CodeBlock)", "borderHorizontalColor-CodeBlock": "var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderLeftColor-CodeBlock": "var(--xmlui-borderLeftColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderRightColor-CodeBlock": "var(--xmlui-borderRightColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderVerticalColor-CodeBlock": "var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderTopColor-CodeBlock": "var(--xmlui-borderTopColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderBottomColor-CodeBlock": "var(--xmlui-borderBottomColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderStartStartRadius-CodeBlock": "var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderStartEndRadius-CodeBlock": "var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndStartRadius-CodeBlock": "var(--xmlui-borderEndStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndEndRadius-CodeBlock": "var(--xmlui-borderEndEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "backgroundColor-CodeBlock": "var(--xmlui-backgroundColor-CodeBlock)", "backgroundColor-CodeBlock-header": "var(--xmlui-backgroundColor-CodeBlock-header)", "
|
|
140428
|
-
const codeBlock = "
|
|
140429
|
-
const codeBlockHeader = "
|
|
140430
|
-
const codeBlockCopyWrapper = "
|
|
140431
|
-
const codeBlockCopyButton = "
|
|
140600
|
+
const themeVars$7 = `'{"padding-CodeBlock": "var(--xmlui-padding-CodeBlock)", "paddingHorizontal-CodeBlock": "var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingVertical-CodeBlock": "var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock))", "paddingLeft-CodeBlock": "var(--xmlui-paddingLeft-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingRight-CodeBlock": "var(--xmlui-paddingRight-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingTop-CodeBlock": "var(--xmlui-paddingTop-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "paddingBottom-CodeBlock": "var(--xmlui-paddingBottom-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)))", "border-CodeBlock": "var(--xmlui-border-CodeBlock)", "borderHorizontal-CodeBlock": "var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock))", "borderVertical-CodeBlock": "var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock))", "borderLeft-CodeBlock": "var(--xmlui-borderLeft-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderRight-CodeBlock": "var(--xmlui-borderRight-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderTop-CodeBlock": "var(--xmlui-borderTop-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderBottom-CodeBlock": "var(--xmlui-borderBottom-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)))", "borderWidth-CodeBlock": "var(--xmlui-borderWidth-CodeBlock)", "borderHorizontalWidth-CodeBlock": "var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderLeftWidth-CodeBlock": "var(--xmlui-borderLeftWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderRightWidth-CodeBlock": "var(--xmlui-borderRightWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderVerticalWidth-CodeBlock": "var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock))", "borderTopWidth-CodeBlock": "var(--xmlui-borderTopWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderBottomWidth-CodeBlock": "var(--xmlui-borderBottomWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)))", "borderStyle-CodeBlock": "var(--xmlui-borderStyle-CodeBlock)", "borderHorizontalStyle-CodeBlock": "var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderLeftStyle-CodeBlock": "var(--xmlui-borderLeftStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderRightStyle-CodeBlock": "var(--xmlui-borderRightStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderVerticalStyle-CodeBlock": "var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock))", "borderTopStyle-CodeBlock": "var(--xmlui-borderTopStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderBottomStyle-CodeBlock": "var(--xmlui-borderBottomStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)))", "borderColor-CodeBlock": "var(--xmlui-borderColor-CodeBlock)", "borderHorizontalColor-CodeBlock": "var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderLeftColor-CodeBlock": "var(--xmlui-borderLeftColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderRightColor-CodeBlock": "var(--xmlui-borderRightColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderVerticalColor-CodeBlock": "var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock))", "borderTopColor-CodeBlock": "var(--xmlui-borderTopColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderBottomColor-CodeBlock": "var(--xmlui-borderBottomColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)))", "borderStartStartRadius-CodeBlock": "var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderStartEndRadius-CodeBlock": "var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndStartRadius-CodeBlock": "var(--xmlui-borderEndStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "borderEndEndRadius-CodeBlock": "var(--xmlui-borderEndEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock))", "backgroundColor-CodeBlock": "var(--xmlui-backgroundColor-CodeBlock)", "backgroundColor-CodeBlock-header": "var(--xmlui-backgroundColor-CodeBlock-header)", "color-CodeBlock-headerSeparator": "var(--xmlui-color-CodeBlock-headerSeparator)", "marginTop-CodeBlock": "var(--xmlui-marginTop-CodeBlock)", "marginBottom-CodeBlock": "var(--xmlui-marginBottom-CodeBlock)", "backgroundColor-CodeBlock-highlightRow": "var(--xmlui-backgroundColor-CodeBlock-highlightRow)", "backgroundColor-CodeBlock-highlightString": "var(--xmlui-backgroundColor-CodeBlock-highlightString)"}'`;
|
|
140601
|
+
const codeBlock = "_codeBlock_169sr_13";
|
|
140602
|
+
const codeBlockHeader = "_codeBlockHeader_169sr_44";
|
|
140603
|
+
const codeBlockCopyWrapper = "_codeBlockCopyWrapper_169sr_54";
|
|
140604
|
+
const codeBlockCopyButton = "_codeBlockCopyButton_169sr_57";
|
|
140432
140605
|
const styles$f = {
|
|
140433
140606
|
themeVars: themeVars$7,
|
|
140434
140607
|
codeBlock,
|
|
@@ -140484,13 +140657,22 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140484
140657
|
if (item2 === "") return acc;
|
|
140485
140658
|
if (item2.indexOf("=") === -1) {
|
|
140486
140659
|
if (item2.startsWith("/") && item2.endsWith("/")) {
|
|
140487
|
-
acc[CodeHighlighterMetaKeys.highlightSubstrings.data]
|
|
140488
|
-
|
|
140489
|
-
|
|
140490
|
-
|
|
140660
|
+
const unparsedSubstrings = acc[CodeHighlighterMetaKeys.highlightSubstrings.data];
|
|
140661
|
+
const newItemBase64 = window.btoa(item2.substring(1, item2.length - 1));
|
|
140662
|
+
if (!unparsedSubstrings) {
|
|
140663
|
+
acc[CodeHighlighterMetaKeys.highlightSubstrings.data] = newItemBase64;
|
|
140664
|
+
} else {
|
|
140665
|
+
acc[CodeHighlighterMetaKeys.highlightSubstrings.data] = `${unparsedSubstrings} ${newItemBase64}`;
|
|
140666
|
+
}
|
|
140491
140667
|
}
|
|
140492
140668
|
if (item2.startsWith("{") && item2.endsWith("}")) {
|
|
140493
|
-
acc[CodeHighlighterMetaKeys.highlightRows.data]
|
|
140669
|
+
const unparsedRows = acc[CodeHighlighterMetaKeys.highlightRows.data];
|
|
140670
|
+
const newItem = item2.substring(1, item2.length - 1);
|
|
140671
|
+
if (!unparsedRows) {
|
|
140672
|
+
acc[CodeHighlighterMetaKeys.highlightRows.data] = newItem;
|
|
140673
|
+
} else {
|
|
140674
|
+
acc[CodeHighlighterMetaKeys.highlightRows.data] = `${unparsedRows}, ${newItem}`;
|
|
140675
|
+
}
|
|
140494
140676
|
}
|
|
140495
140677
|
if (item2 === "copy") {
|
|
140496
140678
|
acc[CodeHighlighterMetaKeys.copy.data] = "true";
|
|
@@ -140544,6 +140726,20 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140544
140726
|
return null;
|
|
140545
140727
|
}
|
|
140546
140728
|
children = removeIndents ? removeTextIndents(children) : children;
|
|
140729
|
+
const renderHeading2 = (level, children2) => {
|
|
140730
|
+
if (typeof children2 === "string") {
|
|
140731
|
+
const [headingLabel, anchorId] = getCustomAnchor(children2);
|
|
140732
|
+
if (anchorId) {
|
|
140733
|
+
const currentPath = window.location.href.replace(new RegExp("(?<!\\/)#.*$"), "");
|
|
140734
|
+
const href = `${currentPath}#${anchorId}`;
|
|
140735
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs(Heading, { level, id: anchorId, children: [
|
|
140736
|
+
headingLabel,
|
|
140737
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("a", { href, id: anchorId, "aria-label": "Permalink for this section", children: "#" })
|
|
140738
|
+
] });
|
|
140739
|
+
}
|
|
140740
|
+
}
|
|
140741
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(Heading, { level, children: children2 });
|
|
140742
|
+
};
|
|
140547
140743
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$k.markdownContent, style: { ...style2 }, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
140548
140744
|
MarkdownHooks,
|
|
140549
140745
|
{
|
|
@@ -140566,22 +140762,22 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140566
140762
|
}
|
|
140567
140763
|
},
|
|
140568
140764
|
h1({ children: children2 }) {
|
|
140569
|
-
return
|
|
140765
|
+
return renderHeading2("h1", children2);
|
|
140570
140766
|
},
|
|
140571
140767
|
h2({ children: children2 }) {
|
|
140572
|
-
return
|
|
140768
|
+
return renderHeading2("h2", children2);
|
|
140573
140769
|
},
|
|
140574
140770
|
h3({ children: children2 }) {
|
|
140575
|
-
return
|
|
140771
|
+
return renderHeading2("h3", children2);
|
|
140576
140772
|
},
|
|
140577
140773
|
h4({ children: children2 }) {
|
|
140578
|
-
return
|
|
140774
|
+
return renderHeading2("h4", children2);
|
|
140579
140775
|
},
|
|
140580
140776
|
h5({ children: children2 }) {
|
|
140581
|
-
return
|
|
140777
|
+
return renderHeading2("h5", children2);
|
|
140582
140778
|
},
|
|
140583
140779
|
h6({ children: children2 }) {
|
|
140584
|
-
return
|
|
140780
|
+
return renderHeading2("h6", children2);
|
|
140585
140781
|
},
|
|
140586
140782
|
p({ id, children: children2 }) {
|
|
140587
140783
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { uid: id, variant: "markdown", children: children2 });
|
|
@@ -140620,13 +140816,13 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140620
140816
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(LocalLink, { to: href, ...props, children: children2 });
|
|
140621
140817
|
},
|
|
140622
140818
|
// TODO: somehow get the label from the containing li element
|
|
140623
|
-
input({ disabled: disabled2, checked }) {
|
|
140819
|
+
input({ disabled: disabled2, checked: checked2 }) {
|
|
140624
140820
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
140625
140821
|
Toggle,
|
|
140626
140822
|
{
|
|
140627
140823
|
variant: "checkbox",
|
|
140628
140824
|
readOnly: disabled2,
|
|
140629
|
-
value:
|
|
140825
|
+
value: checked2
|
|
140630
140826
|
}
|
|
140631
140827
|
);
|
|
140632
140828
|
},
|
|
@@ -140707,6 +140903,18 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140707
140903
|
);
|
|
140708
140904
|
return trimmedLines.join("\n");
|
|
140709
140905
|
}
|
|
140906
|
+
function getCustomAnchor(value) {
|
|
140907
|
+
if (!value) {
|
|
140908
|
+
return ["", ""];
|
|
140909
|
+
}
|
|
140910
|
+
const match2 = value.match(/^(.*?)\s*\[#([^\]]+)\]$/);
|
|
140911
|
+
if (match2) {
|
|
140912
|
+
const headingLabel = match2[1].trim();
|
|
140913
|
+
const anchorId = match2[2].trim();
|
|
140914
|
+
return [headingLabel, anchorId];
|
|
140915
|
+
}
|
|
140916
|
+
return [value.trim(), ""];
|
|
140917
|
+
}
|
|
140710
140918
|
const HorizontalRule = () => {
|
|
140711
140919
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("hr", { className: styles$k.horizontalRule });
|
|
140712
140920
|
};
|
|
@@ -140754,10 +140962,23 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
140754
140962
|
return node2;
|
|
140755
140963
|
};
|
|
140756
140964
|
const processedChildren = React.Children.map(children, processNode);
|
|
140757
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
140758
|
-
|
|
140759
|
-
|
|
140760
|
-
|
|
140965
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
140966
|
+
"blockquote",
|
|
140967
|
+
{
|
|
140968
|
+
className: classnames(styles$k.admonitionBlockquote, {
|
|
140969
|
+
[styles$k.info]: type === "info",
|
|
140970
|
+
[styles$k.warning]: type === "warning",
|
|
140971
|
+
[styles$k.danger]: type === "danger",
|
|
140972
|
+
[styles$k.note]: type === "note",
|
|
140973
|
+
[styles$k.tip]: type === "tip"
|
|
140974
|
+
}),
|
|
140975
|
+
style: style2,
|
|
140976
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: styles$k.admonitionContainer, children: [
|
|
140977
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: `${styles$k.admonitionIcon} ${styles$k[type] || ""}`, children: emojiMap[type] || "💡" }),
|
|
140978
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$k.admonitionContent, children: processedChildren })
|
|
140979
|
+
] })
|
|
140980
|
+
}
|
|
140981
|
+
);
|
|
140761
140982
|
}
|
|
140762
140983
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("blockquote", { className: styles$k.blockquote, style: style2, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$k.blockquoteContainer, children }) });
|
|
140763
140984
|
};
|
|
@@ -141065,8 +141286,12 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
141065
141286
|
},
|
|
141066
141287
|
defaultThemeVars: {
|
|
141067
141288
|
"backgroundColor-Admonition": "$color-primary-100",
|
|
141068
|
-
"borderRadius-Admonition": "$space-2",
|
|
141069
141289
|
"border-Admonition": "1px solid $color-primary-300",
|
|
141290
|
+
"backgroundColor-Admonition-warning": "$color-warn-100",
|
|
141291
|
+
"borderColor-Admonition-warning": "$color-warn-300",
|
|
141292
|
+
"backgroundColor-Admonition-danger": "$color-danger-100",
|
|
141293
|
+
"borderColor-Admonition-danger": "$color-danger-300",
|
|
141294
|
+
"borderRadius-Admonition": "$space-2",
|
|
141070
141295
|
"iconSize-Admonition": "$space-5",
|
|
141071
141296
|
"paddingLeft-Admonition": "$space-2",
|
|
141072
141297
|
"paddingRight-Admonition": "$space-6",
|
|
@@ -141490,9 +141715,11 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
141490
141715
|
[`backgroundColor-checked-${COMP$r}-warning`]: `$borderColor-${COMP$r}-warning`,
|
|
141491
141716
|
[`borderColor-checked-${COMP$r}-success`]: `$borderColor-${COMP$r}-success`,
|
|
141492
141717
|
[`backgroundColor-checked-${COMP$r}-success`]: `$borderColor-${COMP$r}-success`,
|
|
141493
|
-
[`backgroundColor-${COMP$r}`]: "$
|
|
141494
|
-
[`borderColor-${COMP$r}`]: "$color-surface-
|
|
141495
|
-
[`
|
|
141718
|
+
[`backgroundColor-${COMP$r}`]: "$backgroundColor-primary",
|
|
141719
|
+
[`borderColor-${COMP$r}`]: "$color-surface-200",
|
|
141720
|
+
[`borderWidth-${COMP$r}`]: "1px",
|
|
141721
|
+
[`backgroundColor-indicator-${COMP$r}`]: "$color-surface-200",
|
|
141722
|
+
[`backgroundColor-indicator-checked-${COMP$r}`]: "$backgroundColor-primary",
|
|
141496
141723
|
[`borderColor-checked-${COMP$r}`]: "$color-primary-500",
|
|
141497
141724
|
[`backgroundColor-checked-${COMP$r}`]: "$color-primary-500",
|
|
141498
141725
|
[`backgroundColor-${COMP$r}--disabled`]: "$color-surface-200"
|
|
@@ -148566,12 +148793,12 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
148566
148793
|
const registerHeading = tableOfContentsContext == null ? void 0 : tableOfContentsContext.registerHeading;
|
|
148567
148794
|
const observeIntersection = tableOfContentsContext == null ? void 0 : tableOfContentsContext.hasTableOfContents;
|
|
148568
148795
|
reactExports.useLayoutEffect(() => {
|
|
148569
|
-
var _a3, _b2;
|
|
148796
|
+
var _a3, _b2, _c2;
|
|
148570
148797
|
if (observeIntersection && elementRef.current && uid && !omitFromToc) {
|
|
148571
148798
|
return registerHeading == null ? void 0 : registerHeading({
|
|
148572
148799
|
id: uid,
|
|
148573
148800
|
level,
|
|
148574
|
-
text: title2 || ((_b2 = (_a3 = elementRef.current) == null ? void 0 : _a3.textContent) == null ? void 0 : _b2.trim()) || uid,
|
|
148801
|
+
text: title2 || ((_c2 = (_b2 = (_a3 = elementRef.current) == null ? void 0 : _a3.textContent) == null ? void 0 : _b2.trim()) == null ? void 0 : _c2.replace(/#$/, "")) || uid,
|
|
148575
148802
|
anchor: elementRef.current
|
|
148576
148803
|
});
|
|
148577
148804
|
}
|
|
@@ -153494,7 +153721,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
153494
153721
|
HtmlInputMd,
|
|
153495
153722
|
({ node: node2, extractValue, extractResourceUrl, layoutCss }) => {
|
|
153496
153723
|
const p2 = new PropsTrasform(extractValue, extractResourceUrl, layoutCss, node2.props);
|
|
153497
|
-
const { autoFocus, checked, disabled: disabled2, readOnly: readOnly2, required: required2, multiple } = p2.asOptionalBoolean(
|
|
153724
|
+
const { autoFocus, checked: checked2, disabled: disabled2, readOnly: readOnly2, required: required2, multiple } = p2.asOptionalBoolean(
|
|
153498
153725
|
"autoFocus",
|
|
153499
153726
|
"checked",
|
|
153500
153727
|
"disabled",
|
|
@@ -153509,7 +153736,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
153509
153736
|
{
|
|
153510
153737
|
style: layoutCss,
|
|
153511
153738
|
autoFocus: autoFocus ?? false,
|
|
153512
|
-
checked:
|
|
153739
|
+
checked: checked2 ?? false,
|
|
153513
153740
|
disabled: disabled2 ?? false,
|
|
153514
153741
|
multiple: multiple ?? false,
|
|
153515
153742
|
readOnly: readOnly2 ?? false,
|
|
@@ -153733,8 +153960,8 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
153733
153960
|
themeVars: parseScssVar(styles$j.themeVarsList),
|
|
153734
153961
|
// Use only themeVarsList
|
|
153735
153962
|
defaultThemeVars: {
|
|
153736
|
-
"marginTop-HtmlOl": "$space-
|
|
153737
|
-
"marginBottom-HtmlOl": "$space-
|
|
153963
|
+
"marginTop-HtmlOl": "$space-5",
|
|
153964
|
+
"marginBottom-HtmlOl": "$space-5"
|
|
153738
153965
|
}
|
|
153739
153966
|
});
|
|
153740
153967
|
const htmlOlTagRenderer = createComponentRenderer(
|
|
@@ -154315,8 +154542,8 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
154315
154542
|
defaultThemeVars: {
|
|
154316
154543
|
"padding-HtmlTh": "$space-2",
|
|
154317
154544
|
"fontSize-HtmlTh": "$fontSize-tiny",
|
|
154318
|
-
"fontWeight-HtmlTh": "$fontWeight-bold"
|
|
154319
|
-
"backgroundColor-HtmlTh--hover": "$color-surface-200"
|
|
154545
|
+
"fontWeight-HtmlTh": "$fontWeight-bold"
|
|
154546
|
+
//"backgroundColor-HtmlTh--hover": "$color-surface-200",
|
|
154320
154547
|
}
|
|
154321
154548
|
});
|
|
154322
154549
|
const htmlThTagRenderer = createComponentRenderer(
|
|
@@ -154372,8 +154599,8 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
154372
154599
|
themeVars: parseScssVar(styles$j.themeVarsTr),
|
|
154373
154600
|
defaultThemeVars: {
|
|
154374
154601
|
"fontSize-HtmlTr": "$fontSize-small",
|
|
154375
|
-
"backgroundColor-row-HtmlTr": "inherit"
|
|
154376
|
-
"backgroundColor-HtmlTr--hover": "$color-primary-50"
|
|
154602
|
+
"backgroundColor-row-HtmlTr": "inherit"
|
|
154603
|
+
//"backgroundColor-HtmlTr--hover": "$color-primary-50",
|
|
154377
154604
|
}
|
|
154378
154605
|
});
|
|
154379
154606
|
const htmlTrTagRenderer = createComponentRenderer(
|
|
@@ -154429,8 +154656,8 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
154429
154656
|
themeVars: parseScssVar(styles$j.themeVarsList),
|
|
154430
154657
|
// Use only themeVarsList
|
|
154431
154658
|
defaultThemeVars: {
|
|
154432
|
-
"marginTop-HtmlUl": "$space-
|
|
154433
|
-
"marginBottom-HtmlUl": "$space-
|
|
154659
|
+
"marginTop-HtmlUl": "$space-5",
|
|
154660
|
+
"marginBottom-HtmlUl": "$space-5"
|
|
154434
154661
|
}
|
|
154435
154662
|
});
|
|
154436
154663
|
const htmlUlTagRenderer = createComponentRenderer(
|
|
@@ -154587,7 +154814,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
154587
154814
|
);
|
|
154588
154815
|
}
|
|
154589
154816
|
);
|
|
154590
|
-
const RadioItem = ({ checked, style: style2, value }) => {
|
|
154817
|
+
const RadioItem = ({ checked: checked2, style: style2, value }) => {
|
|
154591
154818
|
const id = reactExports.useId();
|
|
154592
154819
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$v.radioOptionContainer, style: style2, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
154593
154820
|
$f99a8c78507165f7$export$6d08773d2e66f8f2,
|
|
@@ -154595,7 +154822,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
154595
154822
|
className: classnames(styles$v.radioOption),
|
|
154596
154823
|
id,
|
|
154597
154824
|
value,
|
|
154598
|
-
checked,
|
|
154825
|
+
checked: checked2,
|
|
154599
154826
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx($f99a8c78507165f7$export$adb584737d712b70, { className: classnames(styles$v.indicator) })
|
|
154600
154827
|
}
|
|
154601
154828
|
) }, id);
|
|
@@ -154735,20 +154962,25 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
154735
154962
|
props: {},
|
|
154736
154963
|
themeVars: parseScssVar(styles$f.themeVars),
|
|
154737
154964
|
defaultThemeVars: {
|
|
154738
|
-
"backgroundColor-CodeBlock": "
|
|
154965
|
+
"backgroundColor-CodeBlock": "#f2f7fc",
|
|
154966
|
+
// "$color-surface-100"
|
|
154739
154967
|
"backgroundColor-CodeBlock-header": "$color-primary-100",
|
|
154740
|
-
//"borderLeft-CodeBlock": "$color-surface-300 2px solid",
|
|
154741
154968
|
"marginTop-CodeBlock": "$space-5",
|
|
154742
154969
|
"marginBottom-CodeBlock": "$space-5",
|
|
154970
|
+
"backgroundColor-CodeBlock-highlightRow": "$color-surface-200",
|
|
154971
|
+
"backgroundColor-CodeBlock-highlightString": "$color-surface-300",
|
|
154972
|
+
"borderRadius-CodeBlock": "$space-2",
|
|
154743
154973
|
dark: {
|
|
154744
|
-
"backgroundColor-CodeBlock-header": "$color-primary-200"
|
|
154974
|
+
"backgroundColor-CodeBlock-header": "$color-primary-200",
|
|
154975
|
+
"backgroundColor-CodeBlock": "#112033",
|
|
154976
|
+
"backgroundColor-CodeBlock-highlightRow": "$color-surface-100"
|
|
154745
154977
|
}
|
|
154746
154978
|
}
|
|
154747
154979
|
});
|
|
154748
154980
|
const codeBlockComponentRenderer = createComponentRenderer(
|
|
154749
154981
|
"CodeBlock",
|
|
154750
154982
|
CodeBlockMd,
|
|
154751
|
-
({ node: node2,
|
|
154983
|
+
({ node: node2, renderChild: renderChild2, layoutCss }) => {
|
|
154752
154984
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(CodeBlock, { style: layoutCss, children: renderChild2(node2.children) });
|
|
154753
154985
|
}
|
|
154754
154986
|
);
|
|
@@ -155883,7 +156115,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
155883
156115
|
/* @__PURE__ */ jsxRuntimeExports.jsx("svg", { style: { display: "none" }, ref: spriteRootRef })
|
|
155884
156116
|
] });
|
|
155885
156117
|
}
|
|
155886
|
-
const version = "0.9.
|
|
156118
|
+
const version = "0.9.30";
|
|
155887
156119
|
const miscellaneousUtils = {
|
|
155888
156120
|
capitalize: capitalize$1,
|
|
155889
156121
|
pluralize: pluralize$1,
|
|
@@ -160903,7 +161135,7 @@ If this message still persists after updating, please report an issue: https://g
|
|
|
160903
161135
|
valueType: "boolean"
|
|
160904
161136
|
}
|
|
160905
161137
|
};
|
|
160906
|
-
var define_process_env_default = { VITE_XMLUI_VERSION: "0.9.
|
|
161138
|
+
var define_process_env_default = { VITE_XMLUI_VERSION: "0.9.30 (built 5/14/2025)" };
|
|
160907
161139
|
const MAIN_FILE = "Main." + componentFileExtension;
|
|
160908
161140
|
const MAIN_CODE_BEHIND_FILE = "Main." + codeBehindFileExtension;
|
|
160909
161141
|
const CONFIG_FILE = "config.json";
|