awing-library 2.1.2-dev.78 → 2.1.2-dev.79
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 +2 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -177643,7 +177643,7 @@ function TableCellEditable(props) {
|
|
|
177643
177643
|
InputProps: {
|
|
177644
177644
|
disableUnderline: true,
|
|
177645
177645
|
style: Object.assign({
|
|
177646
|
-
textAlign: ((_a = cellDefinition === null || cellDefinition === void 0 ? void 0 : cellDefinition.TableCellProps) === null || _a === void 0 ? void 0 : _a.align) == 'right' ? 'end' : undefined,
|
|
177646
|
+
textAlign: isContainer ? 'left' : ((_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
177649
|
textAlign: 'left'
|
|
@@ -177652,6 +177652,7 @@ function TableCellEditable(props) {
|
|
|
177652
177652
|
} : {}), cellDefinition), {
|
|
177653
177653
|
disableHelperText: true
|
|
177654
177654
|
});
|
|
177655
|
+
console.log('inputProps', inputProps);
|
|
177655
177656
|
return jsxRuntimeExports.jsx(InputFactory, Object.assign({}, inputProps));
|
|
177656
177657
|
};
|
|
177657
177658
|
return isContainer ? jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, {
|