awing-library 2.1.2-dev.91 → 2.1.2-dev.92
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/esm/index.js +14 -5
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -177775,7 +177775,7 @@ function TableRowEditable(props) {
|
|
|
177775
177775
|
rowSpan: numOfRowSpan
|
|
177776
177776
|
}, idx === 0 ? {
|
|
177777
177777
|
width: '15%',
|
|
177778
|
-
maxWidth:
|
|
177778
|
+
maxWidth: '200px'
|
|
177779
177779
|
} : {}, {
|
|
177780
177780
|
children: jsxRuntimeExports.jsxs(Box$1, {
|
|
177781
177781
|
display: "flex",
|
|
@@ -177839,7 +177839,7 @@ function TableRowEditable(props) {
|
|
|
177839
177839
|
numOfRowSpan: numOfRowSpan
|
|
177840
177840
|
}, idx);
|
|
177841
177841
|
}
|
|
177842
|
-
}), includeDelete
|
|
177842
|
+
}), !!includeDelete && jsxRuntimeExports.jsx(TableCell, {
|
|
177843
177843
|
align: "center",
|
|
177844
177844
|
sx: {
|
|
177845
177845
|
p: 0,
|
|
@@ -177896,7 +177896,9 @@ function TableRowEditable(props) {
|
|
|
177896
177896
|
children: colDef.label
|
|
177897
177897
|
}), jsxRuntimeExports.jsx(Stack, {
|
|
177898
177898
|
sx: {
|
|
177899
|
-
textAlign: 'left'
|
|
177899
|
+
textAlign: 'left',
|
|
177900
|
+
minHeight: '24px',
|
|
177901
|
+
borderBottom: '1px solid rgba(0, 0, 0, .42)'
|
|
177900
177902
|
},
|
|
177901
177903
|
children: colDef.isTooltip ? jsxRuntimeExports.jsx(StyleTooltip, {
|
|
177902
177904
|
title: colDef.getTitleTooltip && colDef.getTitleTooltip(content),
|
|
@@ -177922,7 +177924,10 @@ function TableRowEditable(props) {
|
|
|
177922
177924
|
sx: {
|
|
177923
177925
|
flex: '0 1 calc(33.333% - 16px)',
|
|
177924
177926
|
boxSizing: 'border-box',
|
|
177925
|
-
p: 2
|
|
177927
|
+
p: 2,
|
|
177928
|
+
'& .MuiFormControl-root': {
|
|
177929
|
+
borderBottom: '1px solid rgba(0, 0, 0, .42)'
|
|
177930
|
+
}
|
|
177926
177931
|
},
|
|
177927
177932
|
children: jsxRuntimeExports.jsx(TableCellEditable, {
|
|
177928
177933
|
isContainer: true,
|
|
@@ -177953,6 +177958,11 @@ function TableRowEditable(props) {
|
|
|
177953
177958
|
})
|
|
177954
177959
|
})
|
|
177955
177960
|
})
|
|
177961
|
+
}), !!includeDelete && jsxRuntimeExports.jsx(TableCell, {
|
|
177962
|
+
style: {
|
|
177963
|
+
paddingBottom: 0,
|
|
177964
|
+
paddingTop: 0
|
|
177965
|
+
}
|
|
177956
177966
|
})]
|
|
177957
177967
|
})]
|
|
177958
177968
|
})
|
|
@@ -178340,7 +178350,6 @@ function TableEditable(props) {
|
|
|
178340
178350
|
children: [jsxRuntimeExports.jsxs(TableContainer, {
|
|
178341
178351
|
component: Paper$1,
|
|
178342
178352
|
sx: {
|
|
178343
|
-
overflow: 'hidden',
|
|
178344
178353
|
width: 'fit-content',
|
|
178345
178354
|
maxWidth: '100%'
|
|
178346
178355
|
},
|