@procore/data-table 12.2.0 → 13.0.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 13.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 2809d87d4: **Breaking changes**: changed package name from `labs-data-table` to `data-table`. All imports should be changed.
8
+
3
9
  ## 12.2.0
4
10
 
5
11
  ### Minor Changes
@@ -77370,7 +77370,7 @@ var Table = (props) => {
77370
77370
  style: {
77371
77371
  flex: 1,
77372
77372
  width: "100%",
77373
- height: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77373
+ maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77374
77374
  },
77375
77375
  className: cx21("ag-theme-alpine", {
77376
77376
  "ag-suppress-column-virtualization": suppressColumnVirtualisation
@@ -77355,7 +77355,7 @@ var Table = (props) => {
77355
77355
  style: {
77356
77356
  flex: 1,
77357
77357
  width: "100%",
77358
- height: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77358
+ maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77359
77359
  },
77360
77360
  className: cx21("ag-theme-alpine", {
77361
77361
  "ag-suppress-column-virtualization": suppressColumnVirtualisation
@@ -77162,7 +77162,7 @@ var Table = (props) => {
77162
77162
  style: {
77163
77163
  flex: 1,
77164
77164
  width: "100%",
77165
- height: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77165
+ maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77166
77166
  },
77167
77167
  className: cx21("ag-theme-alpine", {
77168
77168
  "ag-suppress-column-virtualization": suppressColumnVirtualisation
@@ -77147,7 +77147,7 @@ var Table = (props) => {
77147
77147
  style: {
77148
77148
  flex: 1,
77149
77149
  width: "100%",
77150
- height: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77150
+ maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
77151
77151
  },
77152
77152
  className: cx21("ag-theme-alpine", {
77153
77153
  "ag-suppress-column-virtualization": suppressColumnVirtualisation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@procore/data-table",
3
- "version": "12.2.0",
3
+ "version": "13.0.0",
4
4
  "description": "Complex data grid built on top of ag-grid, with DST components and styles.",
5
5
  "main": "dist/legacy/index.js",
6
6
  "module": "dist/legacy/index.mjs",