@procore/data-table 15.0.0-alpha.3 → 15.0.0-alpha.5
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 +49 -0
- package/dist/legacy/index.cjs +1756 -1215
- package/dist/legacy/index.d.cts +37 -10
- package/dist/legacy/index.d.ts +37 -10
- package/dist/legacy/index.js +1438 -899
- package/dist/modern/index.cjs +1748 -1204
- package/dist/modern/index.d.cts +37 -10
- package/dist/modern/index.d.ts +37 -10
- package/dist/modern/index.js +1430 -888
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.30.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 89a9228: PDT clientside configuration panel now displays its children.
|
|
8
|
+
- b7410b4: add optional prop `excludeGroupRowCount` to BulkActions component
|
|
9
|
+
|
|
10
|
+
## 14.29.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 10547ee: Prevent SSR number and multi-number filters from sending empty value
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- f59703f: Remove filter when value is empty
|
|
19
|
+
|
|
20
|
+
## 14.28.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- e6586a3: If a row is not selectable, make isRowSelected = false
|
|
25
|
+
- 92682a0: Fix: ensure "Select All" checkbox stays visible and functional when the first column is hidden
|
|
26
|
+
- 3f72970: Add placeholder implementation for MultiSelectCellRenderer component
|
|
27
|
+
- 89c28a0: Prevent infinite requests when getRowId returns duplicate IDs in ServerSideDataTable.
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 5d92cf2: Fix Misalignment in Table Headers with Nested Column Definitions
|
|
32
|
+
|
|
33
|
+
## 14.27.1
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 03fe679: Fix layout issue in RowActionsCellStyles when closing side panel
|
|
38
|
+
|
|
39
|
+
## 14.27.0
|
|
40
|
+
|
|
41
|
+
### Minor Changes
|
|
42
|
+
|
|
43
|
+
- c07623f: Allow Shift Click multi-row select
|
|
44
|
+
- cfd02a2: Exposes `ServerSideMultiNumberFilterRenderer` and `ServerSideNumberFilterRenderer` as public APIs
|
|
45
|
+
|
|
46
|
+
## 14.26.3
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- 6b4152c: Fix row height progressively increasing in Safari when `enableDynamicRowHeight` is true.
|
|
51
|
+
|
|
3
52
|
## 14.26.2
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|