@innovaccer/design-system 4.11.0 → 4.11.2
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 +76 -0
- package/css/dist/index.css +1 -1
- package/css/dist/index.css.map +1 -1
- package/css/src/components/chatInput.module.css +1 -1
- package/dist/brotli/index.js +1 -1
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +1 -1
- package/dist/core/components/molecules/chat/chatInput/ChatInput.d.ts +1 -0
- package/dist/core/utils/navigationHelper.d.ts +1 -0
- package/dist/esm/index.js +186 -175
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +186 -175
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,79 @@
|
|
|
1
|
+
## 4.11.2 (2025-07-28)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(Navigation): add extended support for count prop in VerticalNav & HorizontalNav component (06ca0737)
|
|
6
|
+
- test(HorizontalNav): add test cases for menu count formatting support (cd6d54aa)
|
|
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(Navigation): add extended support for count prop in VerticalNav & HorizontalNav component (06ca0737)
|
|
23
|
+
- test(HorizontalNav): add test cases for menu count formatting support (cd6d54aa)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
NA
|
|
28
|
+
|
|
29
|
+
### Improvements
|
|
30
|
+
|
|
31
|
+
NA
|
|
32
|
+
|
|
33
|
+
### Documentation
|
|
34
|
+
|
|
35
|
+
NA
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 4.11.1 (2025-07-22)
|
|
40
|
+
|
|
41
|
+
### Highlights
|
|
42
|
+
|
|
43
|
+
- feat(chatInput): add readOnly prop for chatInput (f9dcd789)
|
|
44
|
+
- docs(chatInput): add readOnly state in chat input docs (841730d6)
|
|
45
|
+
|
|
46
|
+
### Breaking changes
|
|
47
|
+
|
|
48
|
+
NA
|
|
49
|
+
|
|
50
|
+
### Migration guide
|
|
51
|
+
|
|
52
|
+
NA
|
|
53
|
+
|
|
54
|
+
### Deprecations
|
|
55
|
+
|
|
56
|
+
NA
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
- feat(chatInput): add readOnly prop for chatInput (f9dcd789)
|
|
61
|
+
- docs(chatInput): add readOnly state in chat input docs (841730d6)
|
|
62
|
+
|
|
63
|
+
### Fixes
|
|
64
|
+
|
|
65
|
+
NA
|
|
66
|
+
|
|
67
|
+
### Improvements
|
|
68
|
+
|
|
69
|
+
NA
|
|
70
|
+
|
|
71
|
+
### Documentation
|
|
72
|
+
|
|
73
|
+
NA
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
1
77
|
## 4.11.0 (2025-07-15)
|
|
2
78
|
|
|
3
79
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -2162,7 +2162,6 @@ body {
|
|
|
2162
2162
|
|
|
2163
2163
|
.ChatInput-textarea {
|
|
2164
2164
|
flex: 1;
|
|
2165
|
-
/* height: 100%; */
|
|
2166
2165
|
height: var(--spacing-60);
|
|
2167
2166
|
width: 100%;
|
|
2168
2167
|
resize: none;
|
|
@@ -2180,6 +2179,7 @@ body {
|
|
|
2180
2179
|
font-weight: var(--font-weight-normal);
|
|
2181
2180
|
line-height: var(--font-height);
|
|
2182
2181
|
font-size: var(--font-size);
|
|
2182
|
+
color: var(--inverse);
|
|
2183
2183
|
}
|
|
2184
2184
|
|
|
2185
2185
|
.ChatInput-textarea::-moz-placeholder {
|