awing-library 2.1.2-dev.90 → 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.
Files changed (2) hide show
  1. package/dist/esm/index.js +14 -7
  2. package/package.json +1 -1
package/dist/esm/index.js CHANGED
@@ -167345,7 +167345,6 @@ const SchemaInformation = () => {
167345
167345
  }
167346
167346
  setDisplayFields(tmpDisplayData);
167347
167347
  }, [selectedRootSchema, fullFields, objectTypeCode]);
167348
- console.log('rootSchemaObjects', rootSchemaObjects);
167349
167348
  return jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, {
167350
167349
  children: [jsxRuntimeExports.jsx(DataForm, {
167351
167350
  fields: [{
@@ -177776,7 +177775,7 @@ function TableRowEditable(props) {
177776
177775
  rowSpan: numOfRowSpan
177777
177776
  }, idx === 0 ? {
177778
177777
  width: '15%',
177779
- maxWidth: "200px"
177778
+ maxWidth: '200px'
177780
177779
  } : {}, {
177781
177780
  children: jsxRuntimeExports.jsxs(Box$1, {
177782
177781
  display: "flex",
@@ -177840,7 +177839,7 @@ function TableRowEditable(props) {
177840
177839
  numOfRowSpan: numOfRowSpan
177841
177840
  }, idx);
177842
177841
  }
177843
- }), includeDelete === true && jsxRuntimeExports.jsx(TableCell, {
177842
+ }), !!includeDelete && jsxRuntimeExports.jsx(TableCell, {
177844
177843
  align: "center",
177845
177844
  sx: {
177846
177845
  p: 0,
@@ -177897,7 +177896,9 @@ function TableRowEditable(props) {
177897
177896
  children: colDef.label
177898
177897
  }), jsxRuntimeExports.jsx(Stack, {
177899
177898
  sx: {
177900
- textAlign: 'left'
177899
+ textAlign: 'left',
177900
+ minHeight: '24px',
177901
+ borderBottom: '1px solid rgba(0, 0, 0, .42)'
177901
177902
  },
177902
177903
  children: colDef.isTooltip ? jsxRuntimeExports.jsx(StyleTooltip, {
177903
177904
  title: colDef.getTitleTooltip && colDef.getTitleTooltip(content),
@@ -177923,7 +177924,10 @@ function TableRowEditable(props) {
177923
177924
  sx: {
177924
177925
  flex: '0 1 calc(33.333% - 16px)',
177925
177926
  boxSizing: 'border-box',
177926
- p: 2
177927
+ p: 2,
177928
+ '& .MuiFormControl-root': {
177929
+ borderBottom: '1px solid rgba(0, 0, 0, .42)'
177930
+ }
177927
177931
  },
177928
177932
  children: jsxRuntimeExports.jsx(TableCellEditable, {
177929
177933
  isContainer: true,
@@ -177954,6 +177958,11 @@ function TableRowEditable(props) {
177954
177958
  })
177955
177959
  })
177956
177960
  })
177961
+ }), !!includeDelete && jsxRuntimeExports.jsx(TableCell, {
177962
+ style: {
177963
+ paddingBottom: 0,
177964
+ paddingTop: 0
177965
+ }
177957
177966
  })]
177958
177967
  })]
177959
177968
  })
@@ -178341,7 +178350,6 @@ function TableEditable(props) {
178341
178350
  children: [jsxRuntimeExports.jsxs(TableContainer, {
178342
178351
  component: Paper$1,
178343
178352
  sx: {
178344
- overflow: 'hidden',
178345
178353
  width: 'fit-content',
178346
178354
  maxWidth: '100%'
178347
178355
  },
@@ -188431,7 +188439,6 @@ function Container$3() {
188431
188439
  useEffect(() => {
188432
188440
  if (parentDirectoryId) {
188433
188441
  queryData(parentDirectoryId);
188434
- console.log('Querying parent directory:', currentWorkspace, parentDirectoryId);
188435
188442
  }
188436
188443
  }, [currentWorkspace === null || currentWorkspace === void 0 ? void 0 : currentWorkspace.id, parentDirectoryId]);
188437
188444
  /** Get Directory Root */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awing-library",
3
- "version": "2.1.2-dev.90",
3
+ "version": "2.1.2-dev.92",
4
4
  "main": "dist/esm/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/index.d.ts",