@innovaccer/design-system 5.0.0-23 → 5.0.0-24
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 +51 -0
- package/css/dist/index.css +2 -3
- package/css/dist/index.css.map +1 -1
- package/css/src/components/chatInput.module.css +2 -3
- package/dist/brotli/index.js +4 -4
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +3 -3
- package/dist/esm/index.js +360 -350
- package/dist/gzip/index.js +4 -4
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.umd.css +2 -3
- package/dist/index.umd.js +3 -3
- package/dist/types/tsconfig.type.tsbuildinfo +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,54 @@
|
|
|
1
|
+
## 4.22.0 (2026-03-30)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(colors): introduced primitive color scale tokens.
|
|
6
|
+
- Extended WCAG 2.2 AA accessibility coverage across Table, FileList, Breadcrumbs, Pagination, ProgressRing, Modal, Calendar, Tooltip, Slider, and Avatar;
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
NA
|
|
11
|
+
|
|
12
|
+
### Migration guide
|
|
13
|
+
|
|
14
|
+
NA
|
|
15
|
+
|
|
16
|
+
### Deprecations
|
|
17
|
+
|
|
18
|
+
NA
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- feat(Table): add aria-labels to column filter and menu icon buttons (e56f9a4d6)
|
|
23
|
+
- feat(fileList): enhance accessibility with aria-labels for file items (fd42fdbab)
|
|
24
|
+
- feat(breadcrumbs): enhance accessibility by adding aria-labels and changing div to nav (293c1be80)
|
|
25
|
+
- feat(pagination): add aria-labels for accessibility on pagination buttons (0e3897481)
|
|
26
|
+
- feat(progressRing): add accessibility attributes for progress indication (5169b0b8e)
|
|
27
|
+
- feat(modal): add aria-label for close button to improve accessibility (66f22a52a)
|
|
28
|
+
- feat(a11y): add accessibility prop table (159bcebfc)
|
|
29
|
+
- feat(calendar): add keyboard navigation (730dd9339)
|
|
30
|
+
- feat(tooltip): close tooltip on Escape key for WCAG (48aee979d)
|
|
31
|
+
- feat(slider): improve keyboard navigation and story updates (7233a83c0)
|
|
32
|
+
- feat(avatar): add accessibility support in avatar family components (040a32c00)
|
|
33
|
+
- feat(tokens): introduce primitive color scale and update palette (339e8d307)
|
|
34
|
+
|
|
35
|
+
### Fixes
|
|
36
|
+
|
|
37
|
+
- fix(combobox): update multiselect clear icon to match Input clear icon pattern (3d48abbb7)
|
|
38
|
+
- fix(chatInput): update focus state to outline-based ring per design spec (a5309c8d8)
|
|
39
|
+
- fix(chipInput): update focus ring to outline-based style, remove error halo (040f94e1f)
|
|
40
|
+
- fix(button): revert focus ring to primary-focus, keep inverse-focus only for toast (bfd4fca54)
|
|
41
|
+
- fix(colors): replace hardcoded colors with design tokens and update focus styles (5b3677350)
|
|
42
|
+
- fix(table): update infinite scroll fetch rows issue (03855578a)
|
|
43
|
+
- fix(button): remove blend mode from outlined variants (9364aa673)
|
|
44
|
+
|
|
45
|
+
### Improvements
|
|
46
|
+
|
|
47
|
+
- chore: fix synk vulnerability badge link (12e3ae1f4)
|
|
48
|
+
- chore: add mkdirp dependencies for docs site (135834ae8)
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
1
52
|
## 4.21.0 (2026-03-19)
|
|
2
53
|
|
|
3
54
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -2828,10 +2828,9 @@ body {
|
|
|
2828
2828
|
.ChatInput:focus-within,
|
|
2829
2829
|
.ChatInput:focus,
|
|
2830
2830
|
.ChatInput:focus-visible {
|
|
2831
|
-
outline: none;
|
|
2832
2831
|
background: var(--white);
|
|
2833
|
-
|
|
2834
|
-
|
|
2832
|
+
outline: var(--border-width-05) solid var(--primary-focus);
|
|
2833
|
+
outline-offset: var(--spacing-05);
|
|
2835
2834
|
}
|
|
2836
2835
|
|
|
2837
2836
|
.ChatInput-textarea {
|