@apia/theme 3.0.25 → 3.0.27
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-Dh0FTz17.js → index-BawgcZZA.js} +29 -4
- package/dist/index-BawgcZZA.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/{styles-DHevnJU2.js → styles-CwTZtZWI.js} +2 -2
- package/dist/{styles-DHevnJU2.js.map → styles-CwTZtZWI.js.map} +1 -1
- package/package.json +5 -4
- package/dist/index-Dh0FTz17.js.map +0 -1
|
@@ -2410,7 +2410,7 @@ const select = {
|
|
|
2410
2410
|
width: "100%",
|
|
2411
2411
|
maxWidth: "100%",
|
|
2412
2412
|
"& ~ svg": {
|
|
2413
|
-
background: "
|
|
2413
|
+
background: "transparent"
|
|
2414
2414
|
},
|
|
2415
2415
|
...getColorsAndStatesByPath("form.fields", {
|
|
2416
2416
|
states: {
|
|
@@ -3153,13 +3153,13 @@ function getSelectionStyles() {
|
|
|
3153
3153
|
const primary$6 = (theme) => {
|
|
3154
3154
|
return {
|
|
3155
3155
|
variant: "colors.tables.primary",
|
|
3156
|
-
width: "100%",
|
|
3157
3156
|
backgroundColor: "components.primaryTable.body.backgroundColor",
|
|
3158
3157
|
border: "1px solid",
|
|
3159
3158
|
borderColor: "components.primaryTable.borderColor",
|
|
3160
3159
|
borderCollapse: "separate",
|
|
3161
3160
|
borderSpacing: 0,
|
|
3162
3161
|
tableLayout: "fixed",
|
|
3162
|
+
width: "100%",
|
|
3163
3163
|
thead: {
|
|
3164
3164
|
zIndex: 1,
|
|
3165
3165
|
position: "sticky",
|
|
@@ -3180,6 +3180,13 @@ const primary$6 = (theme) => {
|
|
|
3180
3180
|
display: "table-cell",
|
|
3181
3181
|
verticalAlign: "center",
|
|
3182
3182
|
wordBreak: "break-word",
|
|
3183
|
+
textAlign: "left",
|
|
3184
|
+
boxShadow: "none",
|
|
3185
|
+
"&.additional-column": {
|
|
3186
|
+
width: "50px",
|
|
3187
|
+
textAlign: "center",
|
|
3188
|
+
verticalAlign: "middle"
|
|
3189
|
+
},
|
|
3183
3190
|
'&[role="presentation"]': {
|
|
3184
3191
|
display: "none"
|
|
3185
3192
|
},
|
|
@@ -3211,6 +3218,9 @@ const primary$6 = (theme) => {
|
|
|
3211
3218
|
verticalAlign: "center"
|
|
3212
3219
|
},
|
|
3213
3220
|
".headButton__container": {
|
|
3221
|
+
".headButton__label ": {
|
|
3222
|
+
width: "100%"
|
|
3223
|
+
},
|
|
3214
3224
|
width: "100%",
|
|
3215
3225
|
display: "flex",
|
|
3216
3226
|
alignItems: "center",
|
|
@@ -3242,6 +3252,9 @@ const primary$6 = (theme) => {
|
|
|
3242
3252
|
borderLeftWidth: "4px !important",
|
|
3243
3253
|
borderLeftColor: "palette.error.main"
|
|
3244
3254
|
},
|
|
3255
|
+
".iconInput": {
|
|
3256
|
+
border: "none"
|
|
3257
|
+
},
|
|
3245
3258
|
td: {
|
|
3246
3259
|
"input:not([disabled]), select:not([disabled])": {
|
|
3247
3260
|
border: "1px solid white"
|
|
@@ -3309,6 +3322,14 @@ const primary$6 = (theme) => {
|
|
|
3309
3322
|
borderBottom: "1px solid",
|
|
3310
3323
|
background: "transparent",
|
|
3311
3324
|
borderColor: "components.primaryTable.body.borderColor",
|
|
3325
|
+
"&.additional-column": {
|
|
3326
|
+
width: "50px",
|
|
3327
|
+
textAlign: "center",
|
|
3328
|
+
padding: 4,
|
|
3329
|
+
button: {
|
|
3330
|
+
margin: "auto"
|
|
3331
|
+
}
|
|
3332
|
+
},
|
|
3312
3333
|
"&.stickyColumn": {
|
|
3313
3334
|
position: "sticky",
|
|
3314
3335
|
left: 0,
|
|
@@ -3364,6 +3385,10 @@ const primary$6 = (theme) => {
|
|
|
3364
3385
|
borderWidth: "1.5px",
|
|
3365
3386
|
borderStyle: "dotted"
|
|
3366
3387
|
},
|
|
3388
|
+
"&.editionMode *:focus": {
|
|
3389
|
+
outlineWidth: "5px",
|
|
3390
|
+
outlineStyle: "dotted"
|
|
3391
|
+
},
|
|
3367
3392
|
".stateCell": {
|
|
3368
3393
|
width: "50px",
|
|
3369
3394
|
maxWidth: "50px",
|
|
@@ -6194,7 +6219,7 @@ async function getRemarkable(extensions) {
|
|
|
6194
6219
|
|
|
6195
6220
|
const parseMarkdown = async (options) => {
|
|
6196
6221
|
const markdownLibrary = await getRemarkable(options.extensions);
|
|
6197
|
-
const css = (await import('./styles-
|
|
6222
|
+
const css = (await import('./styles-CwTZtZWI.js')).markdownParserStyles ?? new ErrorImporting();
|
|
6198
6223
|
if (css instanceof ErrorImporting)
|
|
6199
6224
|
throw new Error("Could not import css, cannot continue");
|
|
6200
6225
|
const html = options.htmlTemplate ?? (await import('./html-B-K0BIiw.js')).markdownHtml ?? new ErrorImporting();
|
|
@@ -6652,4 +6677,4 @@ class MarkdownBuilder {
|
|
|
6652
6677
|
}
|
|
6653
6678
|
|
|
6654
6679
|
export { ApiaThemeProvider as A, Form as F, 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 };
|
|
6655
|
-
//# sourceMappingURL=index-
|
|
6680
|
+
//# sourceMappingURL=index-BawgcZZA.js.map
|