@procore/data-table 14.24.0 → 14.26.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 -2
- package/dist/legacy/index.cjs +1352 -1198
- package/dist/legacy/index.d.cts +4 -1
- package/dist/legacy/index.d.ts +4 -1
- package/dist/legacy/index.js +1047 -893
- package/dist/modern/index.cjs +1347 -1198
- package/dist/modern/index.d.cts +4 -1
- package/dist/modern/index.d.ts +4 -1
- package/dist/modern/index.js +1042 -893
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.26.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 622faf6: Add SingleSelectFilterRenderer component
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- b971375: Fix loading icons position
|
|
12
|
+
|
|
13
|
+
## 14.25.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- ef8d5df8d0: Update react-resize-detector to version 12.0.0 to ensure compatibility with React 19.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- db3385ee7a: Fix DateSelect background color when cellEditorPopup is enabled
|
|
22
|
+
- 68b3e08f0c: Fix issue with groupping and not rerendering new option items in Column's menu
|
|
23
|
+
|
|
3
24
|
## 14.24.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -889,9 +910,9 @@ TextCellColumnDefinition<
|
|
|
889
910
|
'customBottomRowRenderer', // pinned row renderer
|
|
890
911
|
string,
|
|
891
912
|
string
|
|
892
|
-
|
|
913
|
+
>;
|
|
893
914
|
// v8
|
|
894
|
-
TextCellColumnDefinition<string, string, string
|
|
915
|
+
TextCellColumnDefinition<string, string, string>;
|
|
895
916
|
```
|
|
896
917
|
|
|
897
918
|
### Server Side Row Model Breaking Changes
|