tekivex-ui 3.22.1 → 3.32.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/README.md +7 -5
- package/dist/headless.cjs +1 -1
- package/dist/headless.js +58 -55
- package/dist/i18n.cjs +1 -1
- package/dist/i18n.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +17 -3
- package/dist/index.js +547 -525
- package/dist/src/components/TkxAccordion.d.ts +2 -1
- package/dist/src/components/TkxCode.d.ts +15 -0
- package/dist/src/components/TkxComboBox.d.ts +27 -0
- package/dist/src/components/TkxDatePicker.d.ts +4 -4
- package/dist/src/components/TkxDescriptions.d.ts +28 -0
- package/dist/src/components/TkxDrawer.d.ts +2 -1
- package/dist/src/components/TkxField.d.ts +19 -0
- package/dist/src/components/TkxSEO.d.ts +6 -1
- package/dist/src/components/TkxSplitter.d.ts +25 -0
- package/dist/src/components/TkxTextarea.d.ts +15 -0
- package/dist/src/components/TkxToast.d.ts +15 -1
- package/dist/src/components/TkxTooltip.d.ts +7 -3
- package/dist/src/components/index.d.ts +6 -0
- package/dist/src/engine/wcag.d.ts +1 -1
- package/dist/src/headless/index.d.ts +3 -1
- package/dist/src/hooks/index.d.ts +16 -0
- package/dist/src/hooks/useVariableVirtualList.d.ts +25 -0
- package/dist/src/i18n/index.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ WCAG 2.1 AAA target (third-party audit on roadmap, not yet completed) · WAI-ARI
|
|
|
13
13
|
[](./LICENSE)
|
|
14
14
|
[](https://www.typescriptlang.org/)
|
|
15
15
|
[](https://react.dev/)
|
|
16
|
-
[](https://www.w3.org/TR/WCAG21/)
|
|
17
17
|
[](#testing)
|
|
18
18
|
[](./docs/SECURITY-THREAT-MODEL.md)
|
|
19
19
|
[](https://socket.dev/npm/package/tekivex-ui)
|
|
@@ -564,12 +564,14 @@ const aaa = meetsAAA('#00f5d4', '#0a0a1a'); // → true (≥ 7:1)
|
|
|
564
564
|
|
|
565
565
|
## Accessibility
|
|
566
566
|
|
|
567
|
-
We
|
|
567
|
+
We ship **WCAG 2.1 AA with WAI-ARIA APG patterns throughout**, and work toward AAA as a tracked aspiration. **A third-party audit is on the roadmap and has not been completed** — treat this section as our internal compliance target, not a certification.
|
|
568
|
+
|
|
569
|
+
In July 2026 we ran an adversarially-verified internal audit of every interactive component against its APG pattern. It confirmed **35 violations** (4 high, 26 medium, 5 low) — published in full in [`docs/A11Y-AUDIT.md`](docs/A11Y-AUDIT.md) — and **all 35 were fixed across v3.29.0–v3.32.0** with regression tests (suite: 2,058 → 2,168 tests). Highlights: focus traps + focus restore in every dialog surface, full keyboard models for DataGrid (roving tabindex, virtualization-aware navigation) and DatePicker (roving calendar grid), real ARIA sliders in ColorPicker, correct menu semantics in Dropdown, and `inert` off-screen carousel slides. Details on the [Accessibility docs page](https://ui.tekivex.com/docs/accessibility/).
|
|
568
570
|
|
|
569
571
|
- ✅ Contrast ratio ≥ **7:1** for all text (AAA, not just AA's 4.5:1) — verified via internal `meetsAAA()` helper
|
|
570
|
-
- ✅ Full **keyboard navigation** — Tab, Enter, Space, Arrow keys, Escape
|
|
571
|
-
- ✅ Correct **ARIA roles, states & properties** (WAI-ARIA 1.2)
|
|
572
|
-
- ✅ **Focus management** — focus trap in modals, visible focus rings
|
|
572
|
+
- ✅ Full **keyboard navigation** — Tab, Enter, Space, Arrow keys, Escape (APG-audited)
|
|
573
|
+
- ✅ Correct **ARIA roles, states & properties** (WAI-ARIA 1.2, APG-audited)
|
|
574
|
+
- ✅ **Focus management** — focus trap + focus restore in modals, drawers, palettes, pickers; visible focus rings
|
|
573
575
|
- ✅ **Reduced-motion** — all animations respect `prefers-reduced-motion`
|
|
574
576
|
- ✅ **Screen reader** tested — live regions, `sr-only` text, meaningful `alt`
|
|
575
577
|
- ✅ **RTL support** — layout mirrors automatically for Arabic, Hebrew, Persian
|