@procore/data-table 14.8.0 → 14.10.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 +29 -0
- package/dist/legacy/index.cjs +2146 -1955
- package/dist/legacy/index.d.cts +20 -5
- package/dist/legacy/index.d.ts +20 -5
- package/dist/legacy/index.js +1849 -1658
- package/dist/modern/index.cjs +2115 -1932
- package/dist/modern/index.d.cts +20 -5
- package/dist/modern/index.d.ts +20 -5
- package/dist/modern/index.js +1819 -1636
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e9dadbc607: Default `rowDragManaged` to `false` for `ServerSideDataTable`
|
|
8
|
+
- 5d84bfcbd7: Implement Infinite Scroll Pagination for MultiSelectFilterRenderer
|
|
9
|
+
- 2fb1b75287: Removes unused exports from the root `DataTable` object. Since these have not been exported since v14, this is an internal change only and not a breaking change.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 24771eb9c2: Fixed footer overlaps page sticky footer
|
|
14
|
+
- Updated dependencies [1bbf598693]
|
|
15
|
+
- Updated dependencies [29975c700c]
|
|
16
|
+
- @procore/labs-group-by-select@3.1.3
|
|
17
|
+
- @procore/labs-datetime-select@0.1.1
|
|
18
|
+
|
|
19
|
+
## 14.9.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 686d8f67d: Add support for conditional row actions when column virtualization is disabled
|
|
24
|
+
- db69660a7: Add default behaviour for persistance
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 7e74d5c1a: Ensure unviewable columns stay hidden when ungrouping
|
|
29
|
+
- 60800b67c: Fix client-side tables to only select filtered rows
|
|
30
|
+
- d263b410f: Add Background, Border and Box Shadow for pinned column footer cell
|
|
31
|
+
|
|
3
32
|
## 14.8.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|