@procore/data-table 15.0.0-alpha.0 → 15.0.0-alpha.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 +22 -2
- package/dist/legacy/index.cjs +44728 -1457
- package/dist/legacy/index.d.cts +11 -5
- package/dist/legacy/index.d.ts +11 -5
- package/dist/legacy/index.js +44731 -1460
- package/dist/modern/index.cjs +44346 -1482
- package/dist/modern/index.d.cts +11 -5
- package/dist/modern/index.d.ts +11 -5
- package/dist/modern/index.js +44349 -1485
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.0.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Merge main branch with fix for @ag-grid-enterprise/sparklines
|
|
8
|
+
|
|
3
9
|
## 15.0.0-alpha.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
|
@@ -7,6 +13,20 @@
|
|
|
7
13
|
- Update ag-grid to v32.3.3
|
|
8
14
|
- Introduce New Default Configurations
|
|
9
15
|
|
|
16
|
+
## 14.23.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 25ea323141: Fix install @ag-grid-enterprise/sparklines dep
|
|
21
|
+
- d6f8cdd9cd: Fix some accessibility a11y warnings
|
|
22
|
+
- 4e9b72a73f: Allow first column with checkbox to have CSS ellipsis display
|
|
23
|
+
|
|
24
|
+
## 14.23.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 9f321050db: Expose the type CellFocusedEvent to be used in onCellFocused event
|
|
29
|
+
|
|
10
30
|
## 14.23.0
|
|
11
31
|
|
|
12
32
|
### Minor Changes
|
|
@@ -872,9 +892,9 @@ TextCellColumnDefinition<
|
|
|
872
892
|
'customBottomRowRenderer', // pinned row renderer
|
|
873
893
|
string,
|
|
874
894
|
string
|
|
875
|
-
|
|
895
|
+
>;
|
|
876
896
|
// v8
|
|
877
|
-
TextCellColumnDefinition<string, string, string
|
|
897
|
+
TextCellColumnDefinition<string, string, string>;
|
|
878
898
|
```
|
|
879
899
|
|
|
880
900
|
### Server Side Row Model Breaking Changes
|