@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 +6 -0
- package/dist/legacy/index.js +1 -1
- package/dist/legacy/index.mjs +1 -1
- package/dist/modern/index.js +1 -1
- package/dist/modern/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/legacy/index.js
CHANGED
|
@@ -77370,7 +77370,7 @@ var Table = (props) => {
|
|
|
77370
77370
|
style: {
|
|
77371
77371
|
flex: 1,
|
|
77372
77372
|
width: "100%",
|
|
77373
|
-
|
|
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
|
package/dist/legacy/index.mjs
CHANGED
|
@@ -77355,7 +77355,7 @@ var Table = (props) => {
|
|
|
77355
77355
|
style: {
|
|
77356
77356
|
flex: 1,
|
|
77357
77357
|
width: "100%",
|
|
77358
|
-
|
|
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
|
package/dist/modern/index.js
CHANGED
|
@@ -77162,7 +77162,7 @@ var Table = (props) => {
|
|
|
77162
77162
|
style: {
|
|
77163
77163
|
flex: 1,
|
|
77164
77164
|
width: "100%",
|
|
77165
|
-
|
|
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
|
package/dist/modern/index.mjs
CHANGED
|
@@ -77147,7 +77147,7 @@ var Table = (props) => {
|
|
|
77147
77147
|
style: {
|
|
77148
77148
|
flex: 1,
|
|
77149
77149
|
width: "100%",
|
|
77150
|
-
|
|
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