awing-library 2.1.2-dev.77 → 2.1.2-dev.78
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 +6 -5
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -177642,10 +177642,12 @@ function TableCellEditable(props) {
|
|
|
177642
177642
|
const inputProps = Object.assign(Object.assign(Object.assign({}, ![FIELD_TYPE.ASYNC_AUTOCOMPLETE, FIELD_TYPE.AUTOCOMPLETE].includes(cellDefinition === null || cellDefinition === void 0 ? void 0 : cellDefinition.type) ? {
|
|
177643
177643
|
InputProps: {
|
|
177644
177644
|
disableUnderline: true,
|
|
177645
|
-
style: {
|
|
177645
|
+
style: Object.assign({
|
|
177646
177646
|
textAlign: ((_a = cellDefinition === null || cellDefinition === void 0 ? void 0 : cellDefinition.TableCellProps) === null || _a === void 0 ? void 0 : _a.align) == 'right' ? 'end' : undefined,
|
|
177647
177647
|
padding: '0px 8px'
|
|
177648
|
-
}
|
|
177648
|
+
}, isContainer ? {
|
|
177649
|
+
textAlign: 'left'
|
|
177650
|
+
} : {})
|
|
177649
177651
|
}
|
|
177650
177652
|
} : {}), cellDefinition), {
|
|
177651
177653
|
disableHelperText: true
|
|
@@ -177887,7 +177889,7 @@ function TableRowEditable(props) {
|
|
|
177887
177889
|
children: colDef.label
|
|
177888
177890
|
}), jsxRuntimeExports.jsx(Stack, {
|
|
177889
177891
|
sx: {
|
|
177890
|
-
textAlign:
|
|
177892
|
+
textAlign: 'left'
|
|
177891
177893
|
},
|
|
177892
177894
|
children: colDef.isTooltip ? jsxRuntimeExports.jsx(StyleTooltip, {
|
|
177893
177895
|
title: colDef.getTitleTooltip && colDef.getTitleTooltip(content),
|
|
@@ -177913,8 +177915,7 @@ function TableRowEditable(props) {
|
|
|
177913
177915
|
sx: {
|
|
177914
177916
|
flex: '0 1 calc(33.333% - 16px)',
|
|
177915
177917
|
boxSizing: 'border-box',
|
|
177916
|
-
p: 2
|
|
177917
|
-
textAlign: "left!important"
|
|
177918
|
+
p: 2
|
|
177918
177919
|
},
|
|
177919
177920
|
children: jsxRuntimeExports.jsx(TableCellEditable, {
|
|
177920
177921
|
isContainer: true,
|