@procore/data-table 14.46.1 → 14.46.3
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 +23 -0
- package/dist/legacy/index.cjs +249 -115
- package/dist/legacy/index.d.cts +8 -2
- package/dist/legacy/index.d.ts +8 -2
- package/dist/legacy/index.js +249 -115
- package/dist/modern/index.cjs +244 -113
- package/dist/modern/index.d.cts +8 -2
- package/dist/modern/index.d.ts +8 -2
- package/dist/modern/index.js +244 -113
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.46.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 05247ae: Fix inconsistent keyboard focus management across Filters, Configure, and Bulk Edit panels
|
|
8
|
+
- Move focus to the panel container on open and return focus to the trigger button on close
|
|
9
|
+
- Add `role="region"` and `aria-label` to panel containers for screen reader announcements
|
|
10
|
+
- Centralize focus logic in `useContextPanel` hook, removing scattered per-panel implementations
|
|
11
|
+
- Updated dependencies [05247ae]
|
|
12
|
+
- @procore/toast-alert@5.2.0
|
|
13
|
+
|
|
14
|
+
## 14.46.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 064caac: Fixed cell validation for group header nodes if they are editable
|
|
19
|
+
- fb77dbc: - fix — Update translation key for number filter and add "Is Equal To" tests
|
|
20
|
+
- docs/chore - Update README and enable locale-switching for Storybook configuration for Data Table components
|
|
21
|
+
- 2812fff: Fix keyboard accessibility for group expand/collapse controls (WCAG 2.1.1).
|
|
22
|
+
|
|
23
|
+
- Replace `<Box role="button">` GroupCaret with a native `<button>` element that supports keyboard interaction (Enter/Space), includes `aria-expanded`, and has focus-visible styling.
|
|
24
|
+
- Replace `<div role="button">` header expand/collapse-all toggle with a native `<button>` element that supports keyboard interaction, includes `aria-expanded`, and forwards keyboard events from the AG Grid header cell.
|
|
25
|
+
|
|
3
26
|
## 14.46.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|