@procore/data-table 15.0.0-alpha.0 → 15.0.0-alpha.2
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 +44 -6
- package/dist/legacy/index.cjs +46366 -2765
- package/dist/legacy/index.d.cts +14 -5
- package/dist/legacy/index.d.ts +14 -5
- package/dist/legacy/index.js +46046 -2445
- package/dist/modern/index.cjs +45949 -2760
- package/dist/modern/index.d.cts +14 -5
- package/dist/modern/index.d.ts +14 -5
- package/dist/modern/index.js +45629 -2440
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,49 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 14.26.0
|
|
4
4
|
|
|
5
|
-
###
|
|
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
|
+
|
|
24
|
+
## 14.24.0
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- a5a4cc3a2: Add ServerSideNumberFilterRenderer and ServerSideMultiNumberFilterRenderer to enable numerical filtering in the SSRM data table.
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- fc9d13662: Fire onTableConfigChange when Reset Columns is invoked
|
|
33
|
+
|
|
34
|
+
## 14.23.2
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 25ea323141: Fix install @ag-grid-enterprise/sparklines dep
|
|
39
|
+
- d6f8cdd9cd: Fix some accessibility a11y warnings
|
|
40
|
+
- 4e9b72a73f: Allow first column with checkbox to have CSS ellipsis display
|
|
41
|
+
|
|
42
|
+
## 14.23.1
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
6
45
|
|
|
7
|
-
-
|
|
8
|
-
- Introduce New Default Configurations
|
|
46
|
+
- 9f321050db: Expose the type CellFocusedEvent to be used in onCellFocused event
|
|
9
47
|
|
|
10
48
|
## 14.23.0
|
|
11
49
|
|
|
@@ -872,9 +910,9 @@ TextCellColumnDefinition<
|
|
|
872
910
|
'customBottomRowRenderer', // pinned row renderer
|
|
873
911
|
string,
|
|
874
912
|
string
|
|
875
|
-
|
|
913
|
+
>;
|
|
876
914
|
// v8
|
|
877
|
-
TextCellColumnDefinition<string, string, string
|
|
915
|
+
TextCellColumnDefinition<string, string, string>;
|
|
878
916
|
```
|
|
879
917
|
|
|
880
918
|
### Server Side Row Model Breaking Changes
|