@apia/theme 4.0.47 → 4.0.58
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/LICENSE.md +6 -0
- package/dist/{index-BOvGFjjE.js → index-BJp5z7uE.js} +36 -19
- package/dist/index-BJp5z7uE.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/{styles-JuqAJl1O.js → styles-C4AklZvX.js} +2 -2
- package/dist/{styles-JuqAJl1O.js.map → styles-C4AklZvX.js.map} +1 -1
- package/package.json +4 -3
- package/dist/index-BOvGFjjE.js.map +0 -1
package/LICENSE.md
ADDED
|
@@ -1959,6 +1959,11 @@ const root = {
|
|
|
1959
1959
|
body: {
|
|
1960
1960
|
// minHeight: '100vh',
|
|
1961
1961
|
},
|
|
1962
|
+
".requiredFilter__Border": {
|
|
1963
|
+
borderLeftStyle: "solid",
|
|
1964
|
+
borderLeftWidth: "4px",
|
|
1965
|
+
borderLeftColor: "palette.error.main"
|
|
1966
|
+
},
|
|
1962
1967
|
//cambia el estilo del scroll
|
|
1963
1968
|
"div::-webkit-scrollbar": {
|
|
1964
1969
|
width: "8px",
|
|
@@ -2475,7 +2480,6 @@ const radio = {
|
|
|
2475
2480
|
input: {
|
|
2476
2481
|
height: "32px !important"
|
|
2477
2482
|
},
|
|
2478
|
-
...getColorsAndStatesByPath("form.radio"),
|
|
2479
2483
|
path: {
|
|
2480
2484
|
fill: "inherit"
|
|
2481
2485
|
}
|
|
@@ -3164,7 +3168,8 @@ const modals = {
|
|
|
3164
3168
|
},
|
|
3165
3169
|
xl: {
|
|
3166
3170
|
variant: "layout.common.modals.main",
|
|
3167
|
-
|
|
3171
|
+
width: responsive$1({ 0: "95vw", 2: "60vw" }),
|
|
3172
|
+
height: responsive$1({ 0: "95vh", 2: "80vh" })
|
|
3168
3173
|
},
|
|
3169
3174
|
"xl-fixed": {
|
|
3170
3175
|
variant: "layout.common.modals.main",
|
|
@@ -3358,10 +3363,6 @@ const primary$4 = (theme) => {
|
|
|
3358
3363
|
borderRightWidth: "1px"
|
|
3359
3364
|
}
|
|
3360
3365
|
}
|
|
3361
|
-
},
|
|
3362
|
-
"th.requiredFilterColumn": {
|
|
3363
|
-
borderLeft: "4px solid !important",
|
|
3364
|
-
borderLeftColor: "palette.error.main !important"
|
|
3365
3366
|
}
|
|
3366
3367
|
},
|
|
3367
3368
|
"tr.filtersRow, tr.responsiveTable__filters__row": {
|
|
@@ -3812,10 +3813,6 @@ const clean = (theme) => {
|
|
|
3812
3813
|
borderRightWidth: "1px"
|
|
3813
3814
|
}
|
|
3814
3815
|
}
|
|
3815
|
-
},
|
|
3816
|
-
"th.requiredFilterColumn": {
|
|
3817
|
-
borderLeft: "4px solid !important",
|
|
3818
|
-
borderLeftColor: "palette.error.main !important"
|
|
3819
3816
|
}
|
|
3820
3817
|
},
|
|
3821
3818
|
"tr.filtersRow, tr.responsiveTable__filters__row": {
|
|
@@ -5005,19 +5002,39 @@ const filters = {
|
|
|
5005
5002
|
const fileCard = {
|
|
5006
5003
|
"&.fileCard": {
|
|
5007
5004
|
display: "flex",
|
|
5008
|
-
|
|
5009
|
-
position: "relative",
|
|
5005
|
+
flexDirection: "column",
|
|
5010
5006
|
border: "1px solid",
|
|
5011
5007
|
borderColor: "palette.border.field",
|
|
5012
|
-
height: "50px",
|
|
5013
5008
|
borderRadius: "default",
|
|
5014
5009
|
boxShadow: `0px 1px 1px #c7c7c7`,
|
|
5015
|
-
|
|
5016
|
-
|
|
5010
|
+
p: 3,
|
|
5011
|
+
".fileCard__container": {
|
|
5012
|
+
display: "flex",
|
|
5013
|
+
flexDirection: "row",
|
|
5014
|
+
alignItems: "center",
|
|
5015
|
+
position: "relative",
|
|
5016
|
+
borderRadius: "default",
|
|
5017
|
+
background: "palette.background.paper",
|
|
5018
|
+
cursor: "pointer"
|
|
5019
|
+
},
|
|
5020
|
+
".fileCard__preview": {
|
|
5021
|
+
display: "flex",
|
|
5022
|
+
alignItems: "center",
|
|
5023
|
+
justifyContent: "center",
|
|
5024
|
+
pt: 3,
|
|
5025
|
+
img: {
|
|
5026
|
+
borderRadius: "default",
|
|
5027
|
+
display: "block",
|
|
5028
|
+
maxWidth: "100%",
|
|
5029
|
+
maxHeight: "100%",
|
|
5030
|
+
width: "auto",
|
|
5031
|
+
height: "auto",
|
|
5032
|
+
objectFit: "contain"
|
|
5033
|
+
}
|
|
5034
|
+
},
|
|
5017
5035
|
".fileCard__content": {
|
|
5018
5036
|
display: "flex",
|
|
5019
5037
|
alignItems: "center",
|
|
5020
|
-
p: 3,
|
|
5021
5038
|
gap: 3,
|
|
5022
5039
|
width: "100%"
|
|
5023
5040
|
},
|
|
@@ -7255,7 +7272,7 @@ const form = {
|
|
|
7255
7272
|
".touched": {
|
|
7256
7273
|
borderStyle: "solid",
|
|
7257
7274
|
borderWidth: "1px",
|
|
7258
|
-
borderColor: "
|
|
7275
|
+
borderColor: "touchedBorderColor",
|
|
7259
7276
|
"&.radio-label": {
|
|
7260
7277
|
border: "none",
|
|
7261
7278
|
"input[role]:checked~svg": {
|
|
@@ -8904,7 +8921,7 @@ async function getRemarkable(extensions) {
|
|
|
8904
8921
|
|
|
8905
8922
|
const parseMarkdown = async (options) => {
|
|
8906
8923
|
const markdownLibrary = await getRemarkable(options.extensions);
|
|
8907
|
-
const css = (await import('./styles-
|
|
8924
|
+
const css = (await import('./styles-C4AklZvX.js')).markdownParserStyles ?? new ErrorImporting();
|
|
8908
8925
|
if (css instanceof ErrorImporting)
|
|
8909
8926
|
throw new Error("Could not import css, cannot continue");
|
|
8910
8927
|
const html = options.htmlTemplate ?? (await import('./html-B-K0BIiw.js')).markdownHtml ?? new ErrorImporting();
|
|
@@ -9416,4 +9433,4 @@ ${pageBreakTag}`;
|
|
|
9416
9433
|
}
|
|
9417
9434
|
|
|
9418
9435
|
export { ApiaThemeProvider as A, MarkdownTableOfContents as B, Form as F, MaterialInput as M, Table as T, 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, MarkdownBlock as t, useMainTheme as u, MarkdownBuilder as v, parseMarkdown as w, MarkdownList as x, MarkdownParagraph as y, MarkdownTable as z };
|
|
9419
|
-
//# sourceMappingURL=index-
|
|
9436
|
+
//# sourceMappingURL=index-BJp5z7uE.js.map
|