@apia/theme 3.0.8 → 3.0.9
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-YQcMmPq6.js → index-BNr0t6tQ.js} +47 -3
- package/dist/index-BNr0t6tQ.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/{styles-BzChuFms.js → styles-BjQDjVkI.js} +2 -2
- package/dist/{styles-BzChuFms.js.map → styles-BjQDjVkI.js.map} +1 -1
- package/package.json +3 -3
- package/dist/index-YQcMmPq6.js.map +0 -1
|
@@ -4550,8 +4550,52 @@ const collector = {
|
|
|
4550
4550
|
}
|
|
4551
4551
|
};
|
|
4552
4552
|
|
|
4553
|
+
const speedui = {
|
|
4554
|
+
/* PREPEND HERE */
|
|
4555
|
+
modal: {
|
|
4556
|
+
alignItems: "center",
|
|
4557
|
+
display: "flex",
|
|
4558
|
+
justifyContent: "center",
|
|
4559
|
+
left: 0,
|
|
4560
|
+
p: 5,
|
|
4561
|
+
pointerEvents: "none",
|
|
4562
|
+
position: "fixed",
|
|
4563
|
+
right: 0,
|
|
4564
|
+
top: 0,
|
|
4565
|
+
".modal__main": {
|
|
4566
|
+
pointerEvents: "all"
|
|
4567
|
+
},
|
|
4568
|
+
".speedui__selector": {
|
|
4569
|
+
maxHeight: "calc(100vh - 100px)",
|
|
4570
|
+
overflowY: "auto",
|
|
4571
|
+
overflowX: "hidden",
|
|
4572
|
+
position: "relative"
|
|
4573
|
+
},
|
|
4574
|
+
".speedui__autocomplete": {
|
|
4575
|
+
position: "sticky",
|
|
4576
|
+
top: 0
|
|
4577
|
+
},
|
|
4578
|
+
".speedui__autocomplete, .speedui__option": {
|
|
4579
|
+
p: 3,
|
|
4580
|
+
textAlign: "left",
|
|
4581
|
+
width: "400px",
|
|
4582
|
+
scrollMarginTop: "50px"
|
|
4583
|
+
},
|
|
4584
|
+
".speedui__option.selected": (theme) => ({
|
|
4585
|
+
backgroundColor: theme.palette.getColor(
|
|
4586
|
+
theme.palette.background.paper,
|
|
4587
|
+
"selected"
|
|
4588
|
+
),
|
|
4589
|
+
color: theme.palette.getContrastText(
|
|
4590
|
+
theme.palette.getColor(theme.palette.background.paper, "selected")
|
|
4591
|
+
)
|
|
4592
|
+
})
|
|
4593
|
+
}
|
|
4594
|
+
};
|
|
4595
|
+
|
|
4553
4596
|
const util = {
|
|
4554
|
-
collector
|
|
4597
|
+
collector,
|
|
4598
|
+
speedui
|
|
4555
4599
|
/* PREPEND HERE */
|
|
4556
4600
|
};
|
|
4557
4601
|
|
|
@@ -5221,7 +5265,7 @@ async function getRemarkable(extensions) {
|
|
|
5221
5265
|
|
|
5222
5266
|
const parseMarkdown = async (options) => {
|
|
5223
5267
|
const markdownLibrary = await getRemarkable(options.extensions);
|
|
5224
|
-
const css = (await import('./styles-
|
|
5268
|
+
const css = (await import('./styles-BjQDjVkI.js')).markdownParserStyles ?? new ErrorImporting();
|
|
5225
5269
|
if (css instanceof ErrorImporting)
|
|
5226
5270
|
throw new Error("Could not import css, cannot continue");
|
|
5227
5271
|
const html = options.htmlTemplate ?? (await import('./html-B-K0BIiw.js')).markdownHtml ?? new ErrorImporting();
|
|
@@ -5679,4 +5723,4 @@ class MarkdownBuilder {
|
|
|
5679
5723
|
}
|
|
5680
5724
|
|
|
5681
5725
|
export { ApiaThemeProvider as A, MarkdownBlock as M, getColorStates as a, getColorsAndStatesByDefinition as b, getColorsAndStatesByPath as c, getColorsByDefinition as d, getColorsByPath as e, getOneColorState as f, getColorState as g, applyStatesGetColor as h, makeStyledComponent as i, injectStyles as j, getSpacingLayouts as k, spacing as l, markdownExtensions as m, smallButton as n, focusOutline as o, parsePalette as p, getVariant as q, responsive$1 as r, spacingLayouts as s, MarkdownBuilder as t, useMainTheme as u, parseMarkdown as v, MarkdownList as w, MarkdownParagraph as x, MarkdownTable as y, MarkdownTableOfContents as z };
|
|
5682
|
-
//# sourceMappingURL=index-
|
|
5726
|
+
//# sourceMappingURL=index-BNr0t6tQ.js.map
|