@apia/theme 3.0.17 → 3.0.18
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-BkIq8Zxt.js → index-DOCkz85H.js} +26 -8
- package/dist/index-DOCkz85H.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/{styles-LVUMy7Mt.js → styles-CdKSTYgp.js} +2 -2
- package/dist/{styles-LVUMy7Mt.js.map → styles-CdKSTYgp.js.map} +1 -1
- package/package.json +3 -3
- package/dist/index-BkIq8Zxt.js.map +0 -1
|
@@ -3748,6 +3748,11 @@ const clean = (theme) => {
|
|
|
3748
3748
|
rowGap: 2,
|
|
3749
3749
|
".listPanel__details": {
|
|
3750
3750
|
pl: 6
|
|
3751
|
+
},
|
|
3752
|
+
".responsiveTable__additionalInfoItem": {
|
|
3753
|
+
whiteSpace: "break-spaces",
|
|
3754
|
+
overflow: "hidden",
|
|
3755
|
+
wordBreak: "break-all"
|
|
3751
3756
|
}
|
|
3752
3757
|
},
|
|
3753
3758
|
".responsiveTable__additionalInfoContainer .responsiveTable__additionalInfoItem.separator": {
|
|
@@ -4549,19 +4554,32 @@ const toolbar = {
|
|
|
4549
4554
|
const autocomplete = {
|
|
4550
4555
|
"&:focus-within": focusOutline,
|
|
4551
4556
|
".autocomplete__inputWrapper": {
|
|
4552
|
-
|
|
4557
|
+
display: "flex",
|
|
4558
|
+
alignItems: "center",
|
|
4559
|
+
border: "1px solid",
|
|
4560
|
+
borderColor: "palette.border.field"
|
|
4561
|
+
},
|
|
4562
|
+
".autocomplete__input": {
|
|
4563
|
+
textAlign: "left",
|
|
4564
|
+
whiteSpace: "nowrap",
|
|
4565
|
+
overflow: "hidden",
|
|
4566
|
+
textOverflow: "ellipsis",
|
|
4567
|
+
border: "none",
|
|
4568
|
+
outline: "none !important"
|
|
4553
4569
|
},
|
|
4554
4570
|
".autocomplete__icons": {
|
|
4555
4571
|
alignItems: "center",
|
|
4556
4572
|
display: "flex",
|
|
4557
4573
|
gap: 2,
|
|
4558
4574
|
height: "24px",
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4575
|
+
p: 3,
|
|
4576
|
+
position: "relative",
|
|
4577
|
+
width: "30px",
|
|
4562
4578
|
".autocomplete__loadingSpinner": {
|
|
4563
|
-
|
|
4564
|
-
|
|
4579
|
+
position: "absolute",
|
|
4580
|
+
right: "7px",
|
|
4581
|
+
width: "20px",
|
|
4582
|
+
height: "20px"
|
|
4565
4583
|
},
|
|
4566
4584
|
".autocomplete__downArrow": {
|
|
4567
4585
|
cursor: "pointer",
|
|
@@ -5469,7 +5487,7 @@ async function getRemarkable(extensions) {
|
|
|
5469
5487
|
|
|
5470
5488
|
const parseMarkdown = async (options) => {
|
|
5471
5489
|
const markdownLibrary = await getRemarkable(options.extensions);
|
|
5472
|
-
const css = (await import('./styles-
|
|
5490
|
+
const css = (await import('./styles-CdKSTYgp.js')).markdownParserStyles ?? new ErrorImporting();
|
|
5473
5491
|
if (css instanceof ErrorImporting)
|
|
5474
5492
|
throw new Error("Could not import css, cannot continue");
|
|
5475
5493
|
const html = options.htmlTemplate ?? (await import('./html-B-K0BIiw.js')).markdownHtml ?? new ErrorImporting();
|
|
@@ -5927,4 +5945,4 @@ class MarkdownBuilder {
|
|
|
5927
5945
|
}
|
|
5928
5946
|
|
|
5929
5947
|
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 };
|
|
5930
|
-
//# sourceMappingURL=index-
|
|
5948
|
+
//# sourceMappingURL=index-DOCkz85H.js.map
|