@innovaccer/design-system 4.10.0 → 4.11.1

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
@@ -1,3 +1,80 @@
1
+ ## 4.11.1 (2025-07-22)
2
+
3
+ ### Highlights
4
+
5
+ - feat(chatInput): add readOnly prop for chatInput (f9dcd789)
6
+ - docs(chatInput): add readOnly state in chat input docs (841730d6)
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(chatInput): add readOnly prop for chatInput (f9dcd789)
23
+ - docs(chatInput): add readOnly state in chat input docs (841730d6)
24
+
25
+ ### Fixes
26
+
27
+ NA
28
+
29
+ ### Improvements
30
+
31
+ NA
32
+
33
+ ### Documentation
34
+
35
+ NA
36
+
37
+ ---
38
+
39
+ ## 4.11.0 (2025-07-15)
40
+
41
+ ### Highlights
42
+
43
+ - feat(table): add prop to hide nested row trigger icon in table (0b7c18c9)
44
+ - fix(table): remove extra api call for infinite scroll in table (e150f784)
45
+ - fix(label): update label overflow behaviour (dfa340c2)
46
+
47
+ ### Breaking changes
48
+
49
+ NA
50
+
51
+ ### Migration guide
52
+
53
+ NA
54
+
55
+ ### Deprecations
56
+
57
+ NA
58
+
59
+ ### Features
60
+
61
+ - feat(table): add prop to hide nested row trigger icon in table (0b7c18c9)
62
+
63
+ ### Fixes
64
+
65
+ - fix(table): remove extra api call for infinite scroll in table (e150f784)
66
+ - fix(label): update label overflow behaviour (dfa340c2)
67
+
68
+ ### Improvements
69
+
70
+ NA
71
+
72
+ ### Documentation
73
+
74
+ NA
75
+
76
+ ---
77
+
1
78
  ## 4.10.0 (2025-06-25)
2
79
 
3
80
  ### Highlights
@@ -691,7 +691,7 @@ body {
691
691
  .Label-text {
692
692
  line-height: var(--font-height-s);
693
693
  font-weight: var(--font-weight-medium);
694
- word-break: break-all;
694
+ word-break: break-word;
695
695
  }
696
696
 
697
697
  .Label-optionalText {
@@ -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 {