themed-markdown 0.1.67 → 0.1.70
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/index.mjs +53 -222
- package/dist/industryMarkdown/components/DocumentView.d.ts +0 -1
- package/dist/industryMarkdown/components/DocumentView.d.ts.map +1 -1
- package/dist/industryMarkdown/components/SlideNavigationHeader.d.ts +1 -0
- package/dist/industryMarkdown/components/SlideNavigationHeader.d.ts.map +1 -1
- package/dist/industryMarkdown/components/SlidePresentation.d.ts.map +1 -1
- package/dist/industryMarkdown/components/SlidePresentationBook.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6881,6 +6881,7 @@ var SlideNavigationHeader = ({
|
|
|
6881
6881
|
showFullscreenButton,
|
|
6882
6882
|
showPopoutButton = false,
|
|
6883
6883
|
isPopout = false,
|
|
6884
|
+
isMobile = false,
|
|
6884
6885
|
theme: theme2,
|
|
6885
6886
|
viewMode = "single",
|
|
6886
6887
|
tocDisplayMode = "overlay",
|
|
@@ -6926,10 +6927,11 @@ var SlideNavigationHeader = ({
|
|
|
6926
6927
|
disabled: currentSlide === 0,
|
|
6927
6928
|
theme: theme2,
|
|
6928
6929
|
title: "Previous slide",
|
|
6929
|
-
minWidth: "100px"
|
|
6930
|
+
minWidth: isMobile ? undefined : "100px",
|
|
6931
|
+
width: isMobile ? "36px" : undefined
|
|
6930
6932
|
}, /* @__PURE__ */ React16.createElement(ChevronLeft, {
|
|
6931
6933
|
size: 18
|
|
6932
|
-
}), "Previous"), viewMode === "book" && onCollapseLeft && /* @__PURE__ */ React16.createElement(HeaderButton, {
|
|
6934
|
+
}), !isMobile && "Previous"), viewMode === "book" && onCollapseLeft && /* @__PURE__ */ React16.createElement(HeaderButton, {
|
|
6933
6935
|
onClick: onCollapseLeft,
|
|
6934
6936
|
active: collapseRight,
|
|
6935
6937
|
theme: theme2,
|
|
@@ -6984,8 +6986,9 @@ var SlideNavigationHeader = ({
|
|
|
6984
6986
|
disabled: currentSlide === totalSlides - 1,
|
|
6985
6987
|
theme: theme2,
|
|
6986
6988
|
title: "Next slide",
|
|
6987
|
-
minWidth: "100px"
|
|
6988
|
-
|
|
6989
|
+
minWidth: isMobile ? undefined : "100px",
|
|
6990
|
+
width: isMobile ? "36px" : undefined
|
|
6991
|
+
}, !isMobile && "Next", /* @__PURE__ */ React16.createElement(ChevronRight, {
|
|
6989
6992
|
size: 18
|
|
6990
6993
|
})), showPopoutButton && onPopout && !isPopout && /* @__PURE__ */ React16.createElement(HeaderButton, {
|
|
6991
6994
|
onClick: onPopout,
|
|
@@ -7001,8 +7004,9 @@ var SlideNavigationHeader = ({
|
|
|
7001
7004
|
size: 18
|
|
7002
7005
|
})), showFullscreenButton && !showPopoutButton && /* @__PURE__ */ React16.createElement(HeaderButton, {
|
|
7003
7006
|
onClick: onToggleFullscreen,
|
|
7007
|
+
disabled: isMobile,
|
|
7004
7008
|
theme: theme2,
|
|
7005
|
-
title: isFullscreen ? "Exit fullscreen (F)" : "Enter fullscreen (F)"
|
|
7009
|
+
title: isMobile ? "Fullscreen not available on mobile" : isFullscreen ? "Exit fullscreen (F)" : "Enter fullscreen (F)"
|
|
7006
7010
|
}, isFullscreen ? /* @__PURE__ */ React16.createElement(Minimize2, {
|
|
7007
7011
|
size: 18
|
|
7008
7012
|
}) : /* @__PURE__ */ React16.createElement(Maximize2, {
|
|
@@ -7228,7 +7232,17 @@ var SlidePresentation = ({
|
|
|
7228
7232
|
fontSizeScale,
|
|
7229
7233
|
theme: theme2
|
|
7230
7234
|
}) => {
|
|
7231
|
-
const
|
|
7235
|
+
const [isMobile, setIsMobile] = useState11(false);
|
|
7236
|
+
useEffect10(() => {
|
|
7237
|
+
const checkMobile = () => {
|
|
7238
|
+
setIsMobile(/iPhone|iPad|iPod|Android/i.test(navigator.userAgent) || window.innerWidth < 768);
|
|
7239
|
+
};
|
|
7240
|
+
checkMobile();
|
|
7241
|
+
window.addEventListener("resize", checkMobile);
|
|
7242
|
+
return () => window.removeEventListener("resize", checkMobile);
|
|
7243
|
+
}, []);
|
|
7244
|
+
const effectiveTocDisplayMode = isMobile ? "overlay" : tocDisplayMode;
|
|
7245
|
+
const defaultTocOpen = initialTocOpen ?? effectiveTocDisplayMode === "sidebar";
|
|
7232
7246
|
const [currentSlide, setCurrentSlide] = useState11(initialSlide);
|
|
7233
7247
|
const [isFullscreen, setIsFullscreen] = useState11(false);
|
|
7234
7248
|
const [showTOC, setShowTOC] = useState11(defaultTocOpen);
|
|
@@ -7243,11 +7257,11 @@ var SlidePresentation = ({
|
|
|
7243
7257
|
if (slideIndex >= 0 && slideIndex < slides.length) {
|
|
7244
7258
|
setCurrentSlide(slideIndex);
|
|
7245
7259
|
onSlideChange?.(slideIndex);
|
|
7246
|
-
if (
|
|
7260
|
+
if (effectiveTocDisplayMode === "overlay") {
|
|
7247
7261
|
setShowTOC(false);
|
|
7248
7262
|
}
|
|
7249
7263
|
}
|
|
7250
|
-
}, [slides.length, onSlideChange,
|
|
7264
|
+
}, [slides.length, onSlideChange, effectiveTocDisplayMode]);
|
|
7251
7265
|
useEffect10(() => {
|
|
7252
7266
|
if (!searchQuery.trim()) {
|
|
7253
7267
|
setSearchResults([]);
|
|
@@ -7449,7 +7463,8 @@ var SlidePresentation = ({
|
|
|
7449
7463
|
showPopoutButton,
|
|
7450
7464
|
isPopout,
|
|
7451
7465
|
theme: theme2,
|
|
7452
|
-
tocDisplayMode,
|
|
7466
|
+
tocDisplayMode: effectiveTocDisplayMode,
|
|
7467
|
+
isMobile,
|
|
7453
7468
|
onPrevious: goToPreviousSlide,
|
|
7454
7469
|
onNext: goToNextSlide,
|
|
7455
7470
|
onToggleTOC: () => setShowTOC((prev) => !prev),
|
|
@@ -7463,7 +7478,7 @@ var SlidePresentation = ({
|
|
|
7463
7478
|
position: "relative",
|
|
7464
7479
|
display: "flex"
|
|
7465
7480
|
}
|
|
7466
|
-
},
|
|
7481
|
+
}, effectiveTocDisplayMode === "sidebar" ? /* @__PURE__ */ React18.createElement(R, {
|
|
7467
7482
|
key: `toc-${tocSidebarPosition}`,
|
|
7468
7483
|
collapsed: !showTOC,
|
|
7469
7484
|
collapsibleSide: tocSidebarPosition,
|
|
@@ -7707,103 +7722,7 @@ var SlidePresentation = ({
|
|
|
7707
7722
|
minSize: 15,
|
|
7708
7723
|
showCollapseButton: false,
|
|
7709
7724
|
theme: theme2
|
|
7710
|
-
}) : /* @__PURE__ */ React18.createElement(React18.Fragment, null,
|
|
7711
|
-
style: {
|
|
7712
|
-
position: "absolute",
|
|
7713
|
-
top: 0,
|
|
7714
|
-
left: 0,
|
|
7715
|
-
bottom: 0,
|
|
7716
|
-
width: "300px",
|
|
7717
|
-
backgroundColor: theme2.colors.backgroundSecondary,
|
|
7718
|
-
borderRight: `1px solid ${theme2.colors.border}`,
|
|
7719
|
-
zIndex: 10,
|
|
7720
|
-
overflowY: "auto",
|
|
7721
|
-
overflowX: "hidden"
|
|
7722
|
-
}
|
|
7723
|
-
}, /* @__PURE__ */ React18.createElement("div", {
|
|
7724
|
-
style: {
|
|
7725
|
-
padding: theme2.space[3],
|
|
7726
|
-
borderBottom: `1px solid ${theme2.colors.border}`,
|
|
7727
|
-
backgroundColor: theme2.colors.background,
|
|
7728
|
-
position: "sticky",
|
|
7729
|
-
top: 0,
|
|
7730
|
-
zIndex: 1
|
|
7731
|
-
}
|
|
7732
|
-
}, /* @__PURE__ */ React18.createElement("h3", {
|
|
7733
|
-
style: {
|
|
7734
|
-
margin: 0,
|
|
7735
|
-
fontSize: theme2.fontSizes[3],
|
|
7736
|
-
fontFamily: theme2.fonts.heading,
|
|
7737
|
-
color: theme2.colors.text,
|
|
7738
|
-
fontWeight: 600
|
|
7739
|
-
}
|
|
7740
|
-
}, "Table of Contents"), /* @__PURE__ */ React18.createElement("p", {
|
|
7741
|
-
style: {
|
|
7742
|
-
margin: `${theme2.space[1]}px 0 0 0`,
|
|
7743
|
-
fontSize: theme2.fontSizes[0],
|
|
7744
|
-
color: theme2.colors.textSecondary,
|
|
7745
|
-
fontFamily: theme2.fonts.body
|
|
7746
|
-
}
|
|
7747
|
-
}, slides.length, " ", slides.length === 1 ? "slide" : "slides")), /* @__PURE__ */ React18.createElement("div", {
|
|
7748
|
-
style: { padding: theme2.space[2] }
|
|
7749
|
-
}, slideTitles.map((title, index) => /* @__PURE__ */ React18.createElement("button", {
|
|
7750
|
-
key: index,
|
|
7751
|
-
onClick: () => navigateToSlide(index),
|
|
7752
|
-
style: {
|
|
7753
|
-
display: "block",
|
|
7754
|
-
width: "100%",
|
|
7755
|
-
padding: `${theme2.space[2]}px ${theme2.space[3]}px`,
|
|
7756
|
-
marginBottom: theme2.space[1],
|
|
7757
|
-
backgroundColor: currentSlide === index ? theme2.colors.primary : "transparent",
|
|
7758
|
-
border: "none",
|
|
7759
|
-
borderRadius: theme2.radii[1],
|
|
7760
|
-
color: currentSlide === index ? theme2.colors.background : theme2.colors.text,
|
|
7761
|
-
fontSize: theme2.fontSizes[1],
|
|
7762
|
-
fontFamily: theme2.fonts.body,
|
|
7763
|
-
textAlign: "left",
|
|
7764
|
-
cursor: "pointer",
|
|
7765
|
-
transition: "all 0.2s ease",
|
|
7766
|
-
position: "relative"
|
|
7767
|
-
},
|
|
7768
|
-
onMouseOver: (e2) => {
|
|
7769
|
-
if (currentSlide !== index) {
|
|
7770
|
-
e2.currentTarget.style.backgroundColor = theme2.colors.backgroundHover;
|
|
7771
|
-
}
|
|
7772
|
-
},
|
|
7773
|
-
onMouseOut: (e2) => {
|
|
7774
|
-
if (currentSlide !== index) {
|
|
7775
|
-
e2.currentTarget.style.backgroundColor = "transparent";
|
|
7776
|
-
}
|
|
7777
|
-
}
|
|
7778
|
-
}, /* @__PURE__ */ React18.createElement("div", {
|
|
7779
|
-
style: { display: "flex", alignItems: "center", gap: theme2.space[2] }
|
|
7780
|
-
}, /* @__PURE__ */ React18.createElement("span", {
|
|
7781
|
-
style: {
|
|
7782
|
-
display: "inline-block",
|
|
7783
|
-
minWidth: "24px",
|
|
7784
|
-
fontSize: theme2.fontSizes[0],
|
|
7785
|
-
fontFamily: theme2.fonts.monospace,
|
|
7786
|
-
opacity: 0.6
|
|
7787
|
-
}
|
|
7788
|
-
}, index + 1, "."), /* @__PURE__ */ React18.createElement("span", {
|
|
7789
|
-
style: {
|
|
7790
|
-
flex: 1,
|
|
7791
|
-
overflow: "hidden",
|
|
7792
|
-
textOverflow: "ellipsis",
|
|
7793
|
-
whiteSpace: "nowrap"
|
|
7794
|
-
}
|
|
7795
|
-
}, title)), currentSlide === index && /* @__PURE__ */ React18.createElement("div", {
|
|
7796
|
-
style: {
|
|
7797
|
-
position: "absolute",
|
|
7798
|
-
left: 0,
|
|
7799
|
-
top: "50%",
|
|
7800
|
-
transform: "translateY(-50%)",
|
|
7801
|
-
width: "3px",
|
|
7802
|
-
height: "60%",
|
|
7803
|
-
backgroundColor: currentSlide === index ? theme2.colors.background : theme2.colors.primary,
|
|
7804
|
-
borderRadius: "0 2px 2px 0"
|
|
7805
|
-
}
|
|
7806
|
-
}))))), tocDisplayMode === "overlay" && /* @__PURE__ */ React18.createElement("div", {
|
|
7725
|
+
}) : /* @__PURE__ */ React18.createElement(React18.Fragment, null, effectiveTocDisplayMode === "overlay" && /* @__PURE__ */ React18.createElement("div", {
|
|
7807
7726
|
style: {
|
|
7808
7727
|
position: "absolute",
|
|
7809
7728
|
top: 0,
|
|
@@ -7901,7 +7820,7 @@ var SlidePresentation = ({
|
|
|
7901
7820
|
backgroundColor: currentSlide === index ? theme2.colors.background : theme2.colors.primary,
|
|
7902
7821
|
borderRadius: "0 2px 2px 0"
|
|
7903
7822
|
}
|
|
7904
|
-
}))))),
|
|
7823
|
+
}))))), effectiveTocDisplayMode === "overlay" && showTOC && /* @__PURE__ */ React18.createElement("div", {
|
|
7905
7824
|
onClick: () => setShowTOC(false),
|
|
7906
7825
|
style: {
|
|
7907
7826
|
position: "absolute",
|
|
@@ -8004,7 +7923,16 @@ var SlidePresentationBook = ({
|
|
|
8004
7923
|
fontSizeScale,
|
|
8005
7924
|
theme: theme2
|
|
8006
7925
|
}) => {
|
|
8007
|
-
const
|
|
7926
|
+
const [isMobile, setIsMobile] = useState12(false);
|
|
7927
|
+
useEffect11(() => {
|
|
7928
|
+
const checkMobile = () => {
|
|
7929
|
+
setIsMobile(/iPhone|iPad|iPod|Android/i.test(navigator.userAgent) || window.innerWidth < 768);
|
|
7930
|
+
};
|
|
7931
|
+
checkMobile();
|
|
7932
|
+
window.addEventListener("resize", checkMobile);
|
|
7933
|
+
return () => window.removeEventListener("resize", checkMobile);
|
|
7934
|
+
}, []);
|
|
7935
|
+
const effectiveTocDisplayMode = isMobile && viewMode === "single" ? "overlay" : tocDisplayMode ?? (viewMode === "single" ? "sidebar" : "overlay");
|
|
8008
7936
|
const defaultTocOpen = initialTocOpen ?? false;
|
|
8009
7937
|
const adjustedInitialSlide = viewMode === "book" ? Math.floor(initialSlide / 2) * 2 : initialSlide;
|
|
8010
7938
|
const [currentSlide, setCurrentSlide] = useState12(adjustedInitialSlide);
|
|
@@ -8253,6 +8181,7 @@ var SlidePresentationBook = ({
|
|
|
8253
8181
|
showFullscreenButton,
|
|
8254
8182
|
showPopoutButton,
|
|
8255
8183
|
isPopout,
|
|
8184
|
+
isMobile,
|
|
8256
8185
|
theme: theme2,
|
|
8257
8186
|
viewMode,
|
|
8258
8187
|
tocDisplayMode: effectiveTocDisplayMode,
|
|
@@ -8524,106 +8453,7 @@ var SlidePresentationBook = ({
|
|
|
8524
8453
|
minSize: 15,
|
|
8525
8454
|
showCollapseButton: false,
|
|
8526
8455
|
theme: theme2
|
|
8527
|
-
}) : /* @__PURE__ */ React19.createElement(React19.Fragment, null,
|
|
8528
|
-
style: {
|
|
8529
|
-
position: "absolute",
|
|
8530
|
-
top: 0,
|
|
8531
|
-
left: 0,
|
|
8532
|
-
bottom: 0,
|
|
8533
|
-
width: "300px",
|
|
8534
|
-
zIndex: 10,
|
|
8535
|
-
backgroundColor: theme2.colors.backgroundSecondary,
|
|
8536
|
-
borderRight: `1px solid ${theme2.colors.border}`,
|
|
8537
|
-
overflowY: "auto",
|
|
8538
|
-
overflowX: "hidden"
|
|
8539
|
-
}
|
|
8540
|
-
}, /* @__PURE__ */ React19.createElement("div", {
|
|
8541
|
-
style: {
|
|
8542
|
-
padding: theme2.space[3],
|
|
8543
|
-
borderBottom: `1px solid ${theme2.colors.border}`,
|
|
8544
|
-
backgroundColor: theme2.colors.background,
|
|
8545
|
-
position: "sticky",
|
|
8546
|
-
top: 0,
|
|
8547
|
-
zIndex: 1
|
|
8548
|
-
}
|
|
8549
|
-
}, /* @__PURE__ */ React19.createElement("h3", {
|
|
8550
|
-
style: {
|
|
8551
|
-
margin: 0,
|
|
8552
|
-
fontSize: theme2.fontSizes[3],
|
|
8553
|
-
fontFamily: theme2.fonts.heading,
|
|
8554
|
-
color: theme2.colors.text,
|
|
8555
|
-
fontWeight: 600
|
|
8556
|
-
}
|
|
8557
|
-
}, "Table of Contents"), /* @__PURE__ */ React19.createElement("p", {
|
|
8558
|
-
style: {
|
|
8559
|
-
margin: `${theme2.space[1]}px 0 0 0`,
|
|
8560
|
-
fontSize: theme2.fontSizes[0],
|
|
8561
|
-
color: theme2.colors.textSecondary,
|
|
8562
|
-
fontFamily: theme2.fonts.body
|
|
8563
|
-
}
|
|
8564
|
-
}, slides.length, " ", slides.length === 1 ? "slide" : "slides")), /* @__PURE__ */ React19.createElement("div", {
|
|
8565
|
-
style: { padding: theme2.space[2] }
|
|
8566
|
-
}, slideTitles.map((title, index) => {
|
|
8567
|
-
const isCurrentPage = viewMode === "book" ? index === leftSlideIndex || index === rightSlideIndex : index === currentSlide;
|
|
8568
|
-
return /* @__PURE__ */ React19.createElement("button", {
|
|
8569
|
-
key: index,
|
|
8570
|
-
onClick: () => navigateToSlide(index),
|
|
8571
|
-
style: {
|
|
8572
|
-
display: "block",
|
|
8573
|
-
width: "100%",
|
|
8574
|
-
padding: `${theme2.space[2]}px ${theme2.space[3]}px`,
|
|
8575
|
-
marginBottom: theme2.space[1],
|
|
8576
|
-
backgroundColor: isCurrentPage ? theme2.colors.primary : "transparent",
|
|
8577
|
-
border: "none",
|
|
8578
|
-
borderRadius: theme2.radii[1],
|
|
8579
|
-
color: isCurrentPage ? theme2.colors.background : theme2.colors.text,
|
|
8580
|
-
fontSize: theme2.fontSizes[1],
|
|
8581
|
-
fontFamily: theme2.fonts.body,
|
|
8582
|
-
textAlign: "left",
|
|
8583
|
-
cursor: "pointer",
|
|
8584
|
-
transition: "all 0.2s ease",
|
|
8585
|
-
position: "relative"
|
|
8586
|
-
},
|
|
8587
|
-
onMouseOver: (e2) => {
|
|
8588
|
-
if (!isCurrentPage) {
|
|
8589
|
-
e2.currentTarget.style.backgroundColor = theme2.colors.backgroundHover;
|
|
8590
|
-
}
|
|
8591
|
-
},
|
|
8592
|
-
onMouseOut: (e2) => {
|
|
8593
|
-
if (!isCurrentPage) {
|
|
8594
|
-
e2.currentTarget.style.backgroundColor = "transparent";
|
|
8595
|
-
}
|
|
8596
|
-
}
|
|
8597
|
-
}, /* @__PURE__ */ React19.createElement("div", {
|
|
8598
|
-
style: { display: "flex", alignItems: "center", gap: theme2.space[2] }
|
|
8599
|
-
}, /* @__PURE__ */ React19.createElement("span", {
|
|
8600
|
-
style: {
|
|
8601
|
-
display: "inline-block",
|
|
8602
|
-
minWidth: "24px",
|
|
8603
|
-
fontSize: theme2.fontSizes[0],
|
|
8604
|
-
fontFamily: theme2.fonts.monospace,
|
|
8605
|
-
opacity: 0.6
|
|
8606
|
-
}
|
|
8607
|
-
}, index + 1, "."), /* @__PURE__ */ React19.createElement("span", {
|
|
8608
|
-
style: {
|
|
8609
|
-
flex: 1,
|
|
8610
|
-
overflow: "hidden",
|
|
8611
|
-
textOverflow: "ellipsis",
|
|
8612
|
-
whiteSpace: "nowrap"
|
|
8613
|
-
}
|
|
8614
|
-
}, title)), isCurrentPage && /* @__PURE__ */ React19.createElement("div", {
|
|
8615
|
-
style: {
|
|
8616
|
-
position: "absolute",
|
|
8617
|
-
left: 0,
|
|
8618
|
-
top: "50%",
|
|
8619
|
-
transform: "translateY(-50%)",
|
|
8620
|
-
width: "3px",
|
|
8621
|
-
height: "60%",
|
|
8622
|
-
backgroundColor: isCurrentPage ? theme2.colors.background : theme2.colors.primary,
|
|
8623
|
-
borderRadius: "0 2px 2px 0"
|
|
8624
|
-
}
|
|
8625
|
-
}));
|
|
8626
|
-
}))), effectiveTocDisplayMode === "overlay" && /* @__PURE__ */ React19.createElement("div", {
|
|
8456
|
+
}) : /* @__PURE__ */ React19.createElement(React19.Fragment, null, effectiveTocDisplayMode === "overlay" && /* @__PURE__ */ React19.createElement("div", {
|
|
8627
8457
|
style: {
|
|
8628
8458
|
position: "absolute",
|
|
8629
8459
|
top: 0,
|
|
@@ -8966,11 +8796,10 @@ var SlidePresentationBook = ({
|
|
|
8966
8796
|
import React20, { useRef as useRef12, useCallback as useCallback5 } from "react";
|
|
8967
8797
|
var DocumentView = ({
|
|
8968
8798
|
content,
|
|
8969
|
-
showSegmented =
|
|
8799
|
+
showSegmented = false,
|
|
8970
8800
|
onCheckboxChange,
|
|
8971
8801
|
onSectionClick,
|
|
8972
8802
|
maxWidth = "900px",
|
|
8973
|
-
padding = "24px",
|
|
8974
8803
|
showSectionHeaders = true,
|
|
8975
8804
|
showSeparators = true,
|
|
8976
8805
|
slideIdPrefix = "document",
|
|
@@ -9005,13 +8834,13 @@ var DocumentView = ({
|
|
|
9005
8834
|
style: {
|
|
9006
8835
|
height: "100%",
|
|
9007
8836
|
overflow: "auto",
|
|
9008
|
-
backgroundColor
|
|
9009
|
-
padding: typeof padding === "number" ? `${padding}px` : padding
|
|
8837
|
+
backgroundColor
|
|
9010
8838
|
}
|
|
9011
8839
|
}, /* @__PURE__ */ React20.createElement("div", {
|
|
9012
8840
|
style: {
|
|
9013
8841
|
maxWidth: typeof maxWidth === "number" ? `${maxWidth}px` : maxWidth,
|
|
9014
|
-
margin: "0 auto"
|
|
8842
|
+
margin: "0 auto",
|
|
8843
|
+
height: "100%"
|
|
9015
8844
|
}
|
|
9016
8845
|
}, /* @__PURE__ */ React20.createElement(IndustryMarkdownSlide, {
|
|
9017
8846
|
content,
|
|
@@ -9026,7 +8855,8 @@ var DocumentView = ({
|
|
|
9026
8855
|
handleRunBashCommand,
|
|
9027
8856
|
fontSizeScale,
|
|
9028
8857
|
handlePromptCopy,
|
|
9029
|
-
repositoryInfo
|
|
8858
|
+
repositoryInfo,
|
|
8859
|
+
transparentBackground
|
|
9030
8860
|
})));
|
|
9031
8861
|
}
|
|
9032
8862
|
if (!showSegmented) {
|
|
@@ -9040,13 +8870,13 @@ var DocumentView = ({
|
|
|
9040
8870
|
style: {
|
|
9041
8871
|
height: "100%",
|
|
9042
8872
|
overflow: "auto",
|
|
9043
|
-
backgroundColor
|
|
9044
|
-
padding: typeof padding === "number" ? `${padding}px` : padding
|
|
8873
|
+
backgroundColor
|
|
9045
8874
|
}
|
|
9046
8875
|
}, /* @__PURE__ */ React20.createElement("div", {
|
|
9047
8876
|
style: {
|
|
9048
8877
|
maxWidth: typeof maxWidth === "number" ? `${maxWidth}px` : maxWidth,
|
|
9049
|
-
margin: "0 auto"
|
|
8878
|
+
margin: "0 auto",
|
|
8879
|
+
height: "100%"
|
|
9050
8880
|
}
|
|
9051
8881
|
}, /* @__PURE__ */ React20.createElement(IndustryMarkdownSlide, {
|
|
9052
8882
|
content: fullContent,
|
|
@@ -9061,7 +8891,8 @@ var DocumentView = ({
|
|
|
9061
8891
|
handleRunBashCommand,
|
|
9062
8892
|
fontSizeScale,
|
|
9063
8893
|
handlePromptCopy,
|
|
9064
|
-
repositoryInfo
|
|
8894
|
+
repositoryInfo,
|
|
8895
|
+
transparentBackground
|
|
9065
8896
|
})));
|
|
9066
8897
|
}
|
|
9067
8898
|
return /* @__PURE__ */ React20.createElement("div", {
|
|
@@ -9069,8 +8900,7 @@ var DocumentView = ({
|
|
|
9069
8900
|
style: {
|
|
9070
8901
|
height: "100%",
|
|
9071
8902
|
overflow: "auto",
|
|
9072
|
-
backgroundColor
|
|
9073
|
-
padding: typeof padding === "number" ? `${padding}px` : padding
|
|
8903
|
+
backgroundColor
|
|
9074
8904
|
}
|
|
9075
8905
|
}, /* @__PURE__ */ React20.createElement("div", {
|
|
9076
8906
|
style: {
|
|
@@ -9127,7 +8957,8 @@ var DocumentView = ({
|
|
|
9127
8957
|
handleRunBashCommand,
|
|
9128
8958
|
fontSizeScale,
|
|
9129
8959
|
handlePromptCopy,
|
|
9130
|
-
repositoryInfo
|
|
8960
|
+
repositoryInfo,
|
|
8961
|
+
transparentBackground
|
|
9131
8962
|
}), showSeparators && index < content.length - 1 && /* @__PURE__ */ React20.createElement("div", {
|
|
9132
8963
|
style: {
|
|
9133
8964
|
marginTop: "32px",
|
|
@@ -7,7 +7,6 @@ export interface DocumentViewProps {
|
|
|
7
7
|
onCheckboxChange?: (slideIndex: number, lineNumber: number, checked: boolean) => void;
|
|
8
8
|
onSectionClick?: (sectionIndex: number) => void;
|
|
9
9
|
maxWidth?: string | number;
|
|
10
|
-
padding?: string | number;
|
|
11
10
|
showSectionHeaders?: boolean;
|
|
12
11
|
showSeparators?: boolean;
|
|
13
12
|
slideIdPrefix?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocumentView.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/DocumentView.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AACtG,OAAO,KAA8B,MAAM,OAAO,CAAC;AAInD,MAAM,WAAW,iBAAiB;IAEhC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAG3B,aAAa,CAAC,EAAE,OAAO,CAAC;IAGxB,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACtF,cAAc,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAGhD,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3B,
|
|
1
|
+
{"version":3,"file":"DocumentView.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/DocumentView.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AACtG,OAAO,KAA8B,MAAM,OAAO,CAAC;AAInD,MAAM,WAAW,iBAAiB;IAEhC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAG3B,aAAa,CAAC,EAAE,OAAO,CAAC;IAGxB,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACtF,cAAc,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAGhD,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,cAAc,CAAC,EAAE,OAAO,CAAC;IAGzB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,KAAK,CAAC;IACb,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CA6NpD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SlideNavigationHeader.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/SlideNavigationHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AAatD,OAAO,KAAK,MAAM,OAAO,CAAC;AA8E1B,MAAM,WAAW,0BAA0B;IACzC,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,EAAE,OAAO,CAAC;IACtB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IAC7B,cAAc,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACvC,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,MAAM,EAAE,MAAM,IAAI,CAAC;IACnB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,kBAAkB,EAAE,MAAM,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;IAC7B,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,yBAAyB,CAAC,EAAE,WAAW,GAAG,iBAAiB,CAAC;CAC7D;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,
|
|
1
|
+
{"version":3,"file":"SlideNavigationHeader.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/SlideNavigationHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AAatD,OAAO,KAAK,MAAM,OAAO,CAAC;AA8E1B,MAAM,WAAW,0BAA0B;IACzC,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,EAAE,OAAO,CAAC;IACtB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IAC7B,cAAc,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACvC,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,MAAM,EAAE,MAAM,IAAI,CAAC;IACnB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,kBAAkB,EAAE,MAAM,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;IAC7B,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,yBAAyB,CAAC,EAAE,WAAW,GAAG,iBAAiB,CAAC;CAC7D;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CA2MtE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SlidePresentation.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/SlidePresentation.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAEtF,OAAO,KAAmD,MAAM,OAAO,CAAC;AAQxE,MAAM,WAAW,sBAAsB;IAErC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAGtF,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,cAAc,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACvC,kBAAkB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACtC,cAAc,CAAC,EAAE,OAAO,CAAC;IAGzB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAGrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,KAAK,CAAC;CACd;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,
|
|
1
|
+
{"version":3,"file":"SlidePresentation.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/SlidePresentation.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAEtF,OAAO,KAAmD,MAAM,OAAO,CAAC;AAQxE,MAAM,WAAW,sBAAsB;IAErC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAGtF,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,cAAc,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACvC,kBAAkB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACtC,cAAc,CAAC,EAAE,OAAO,CAAC;IAGzB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAGrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,KAAK,CAAC;CACd;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CA45B9D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SlidePresentationBook.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/SlidePresentationBook.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAEtF,OAAO,KAAmD,MAAM,OAAO,CAAC;AAQxE,MAAM,WAAW,0BAA0B;IAEzC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAGtF,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IAG7B,cAAc,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACvC,kBAAkB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACtC,cAAc,CAAC,EAAE,OAAO,CAAC;IAGzB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAGrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,KAAK,CAAC;CACd;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,
|
|
1
|
+
{"version":3,"file":"SlidePresentationBook.d.ts","sourceRoot":"","sources":["../../../industryMarkdown/components/SlidePresentationBook.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,+BAA+B,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAEtF,OAAO,KAAmD,MAAM,OAAO,CAAC;AAQxE,MAAM,WAAW,0BAA0B;IAEzC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAGtF,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IAG7B,cAAc,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACvC,kBAAkB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACtC,cAAc,CAAC,EAAE,OAAO,CAAC;IAGzB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAGrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzD,oBAAoB,CAAC,EAAE,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,kBAAkB,KACzB,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,KAAK,CAAC;CACd;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAiqCtE,CAAC"}
|