@procore/data-table 14.44.0 → 14.46.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 +23 -0
- package/dist/legacy/index.cjs +388 -96
- package/dist/legacy/index.d.cts +2 -0
- package/dist/legacy/index.d.ts +2 -0
- package/dist/legacy/index.js +388 -96
- package/dist/modern/index.cjs +386 -96
- package/dist/modern/index.d.cts +2 -0
- package/dist/modern/index.d.ts +2 -0
- package/dist/modern/index.js +386 -96
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.46.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 538bb90: Added auto focus on filters content's first focusable element when the filter panel is opened. Focus moves back to the 'Filters' button when the filters panel is closed. Added `aria-expanded` and `aria-controls` attributes for filters `ToggleButton`.
|
|
8
|
+
|
|
9
|
+
## 14.45.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 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
|
|
14
|
+
- ec35ea9: Improve accessibility and keyboard navigation for Date Filter in DataTable
|
|
15
|
+
- Enable keyboard navigation from DateInput to SegmentedController
|
|
16
|
+
- Make calendar in overlay accessible via keyboard
|
|
17
|
+
- Fix focus behavior so overlay closes when tabbing outside
|
|
18
|
+
- Enable opening overlay via keyboard (Enter and Space)
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 6a9d600: Update filter's toggle button label from "Filters / More Filters" to "All Filters".
|
|
23
|
+
- 89cb4ff: Make external links accessible by using a Link element for navigation and adding an accessible label to the external-link SVG icon.
|
|
24
|
+
- e7cb2e4: Fix missing i18n scope on 'and' label in ServerSideNumberFilterRenderer. Add missing 'Is Equal To' i18n key
|
|
25
|
+
|
|
3
26
|
## 14.44.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|