@procore/data-table 14.25.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 +12 -2
- package/dist/legacy/index.cjs +1184 -1066
- package/dist/legacy/index.d.cts +4 -1
- package/dist/legacy/index.d.ts +4 -1
- package/dist/legacy/index.js +882 -765
- package/dist/modern/index.cjs +1179 -1066
- package/dist/modern/index.d.cts +4 -1
- package/dist/modern/index.d.ts +4 -1
- package/dist/modern/index.js +877 -765
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
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
|
+
|
|
3
13
|
## 14.25.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -900,9 +910,9 @@ TextCellColumnDefinition<
|
|
|
900
910
|
'customBottomRowRenderer', // pinned row renderer
|
|
901
911
|
string,
|
|
902
912
|
string
|
|
903
|
-
|
|
913
|
+
>;
|
|
904
914
|
// v8
|
|
905
|
-
TextCellColumnDefinition<string, string, string
|
|
915
|
+
TextCellColumnDefinition<string, string, string>;
|
|
906
916
|
```
|
|
907
917
|
|
|
908
918
|
### Server Side Row Model Breaking Changes
|