@procore/data-table 14.25.0 → 14.26.1
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 +19 -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 +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.26.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4a1d11d: Update procore/labs-procore-environment to 5.0.1 in data-table
|
|
8
|
+
- @procore/error-pages@0.2.1
|
|
9
|
+
|
|
10
|
+
## 14.26.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 622faf6: Add SingleSelectFilterRenderer component
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- b971375: Fix loading icons position
|
|
19
|
+
|
|
3
20
|
## 14.25.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -900,9 +917,9 @@ TextCellColumnDefinition<
|
|
|
900
917
|
'customBottomRowRenderer', // pinned row renderer
|
|
901
918
|
string,
|
|
902
919
|
string
|
|
903
|
-
|
|
920
|
+
>;
|
|
904
921
|
// v8
|
|
905
|
-
TextCellColumnDefinition<string, string, string
|
|
922
|
+
TextCellColumnDefinition<string, string, string>;
|
|
906
923
|
```
|
|
907
924
|
|
|
908
925
|
### Server Side Row Model Breaking Changes
|