@procore/data-table 14.9.0 → 14.11.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 +23 -0
- package/dist/legacy/index.cjs +2184 -1924
- package/dist/legacy/index.d.cts +26 -4
- package/dist/legacy/index.d.ts +26 -4
- package/dist/legacy/index.js +1886 -1626
- package/dist/modern/index.cjs +2155 -1903
- package/dist/modern/index.d.cts +26 -4
- package/dist/modern/index.d.ts +26 -4
- package/dist/modern/index.js +1857 -1605
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c33c1a3df7: add new getVisibleRowNodes method for tableApi
|
|
8
|
+
- 2147af373f: Add new prop tabToNextCell for overriding the default behaviour for when user hits Tab key when a cell is focused
|
|
9
|
+
|
|
10
|
+
## 14.10.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- e9dadbc607: Default `rowDragManaged` to `false` for `ServerSideDataTable`
|
|
15
|
+
- 5d84bfcbd7: Implement Infinite Scroll Pagination for MultiSelectFilterRenderer
|
|
16
|
+
- 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.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 24771eb9c2: Fixed footer overlaps page sticky footer
|
|
21
|
+
- Updated dependencies [1bbf598693]
|
|
22
|
+
- Updated dependencies [29975c700c]
|
|
23
|
+
- @procore/labs-group-by-select@3.1.3
|
|
24
|
+
- @procore/labs-datetime-select@0.1.1
|
|
25
|
+
|
|
3
26
|
## 14.9.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|