@procore/data-table 14.43.2 → 14.45.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 +28 -0
- package/dist/legacy/index.cjs +322 -103
- package/dist/legacy/index.js +322 -103
- package/dist/modern/index.cjs +318 -103
- package/dist/modern/index.js +318 -103
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.45.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 91235cf: Override the `Clear` component in `SuperSelectFilterPreset` to provide a contextual `aria-label` using the column header name, so screen readers announce `Remove {filterName}` instead of a generic label
|
|
8
|
+
- ec35ea9: Improve accessibility and keyboard navigation for Date Filter in DataTable
|
|
9
|
+
- Enable keyboard navigation from DateInput to SegmentedController
|
|
10
|
+
- Make calendar in overlay accessible via keyboard
|
|
11
|
+
- Fix focus behavior so overlay closes when tabbing outside
|
|
12
|
+
- Enable opening overlay via keyboard (Enter and Space)
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 6a9d600: Update filter's toggle button label from "Filters / More Filters" to "All Filters".
|
|
17
|
+
- 89cb4ff: Make external links accessible by using a Link element for navigation and adding an accessible label to the external-link SVG icon.
|
|
18
|
+
- e7cb2e4: Fix missing i18n scope on 'and' label in ServerSideNumberFilterRenderer. Add missing 'Is Equal To' i18n key
|
|
19
|
+
|
|
20
|
+
## 14.44.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- dc8aaf4: Made data-table column menu accessible via keyboard using `⌥ Alt+↓`
|
|
25
|
+
- a9569f8: Focus BulkEditPanel after opening
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- c33f992: Improve accessibility in QuickFilters by adding descriptive `aria-label` to filter token remove button (includes filter name)
|
|
30
|
+
|
|
3
31
|
## 14.43.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|