@exxatdesignux/ui 0.2.12 → 0.2.13

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 CHANGED
@@ -15,6 +15,12 @@ After the user bumps `@exxatdesignux/ui`, do this in order:
15
15
 
16
16
  ---
17
17
 
18
+ ## [0.2.13] - 2026-05-14
19
+
20
+ ### Fixed
21
+
22
+ - Starter **secondary panel** (Question bank): collapse control tooltip / **`aria-label`** now read **“Collapse to icons”** instead of the unclear **“Use icon-only navigation”**.
23
+
18
24
  ## [0.2.12] - 2026-05-13
19
25
 
20
26
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exxatdesignux/ui",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Exxat shared design system (components, hooks, tokens). Monorepo setup: clone repo then pnpm bootstrap at workspace root — see github.com/ExxatDesign/Exxat-DS-Workspace README.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -162,13 +162,13 @@ function QuestionBankPanel() {
162
162
  >
163
163
  Question bank
164
164
  </h2>
165
- <Tip label="Use icon-only navigation" side="bottom">
165
+ <Tip label="Collapse to icons" side="bottom">
166
166
  <Button
167
167
  type="button"
168
168
  size="icon"
169
169
  variant="ghost"
170
170
  onClick={() => collapseActiveSecondaryPanel()}
171
- aria-label="Use icon-only navigation"
171
+ aria-label="Collapse to icons"
172
172
  >
173
173
  <i className="fa-light fa-angles-left" aria-hidden="true" />
174
174
  </Button>