@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 +77 -0
- package/css/dist/index.css +2 -2
- package/css/dist/index.css.map +1 -1
- package/css/src/components/chatInput.module.css +1 -1
- package/css/src/components/label.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/components/organisms/grid/Grid.d.ts +1 -0
- package/dist/core/components/organisms/list/List.d.ts +1 -0
- package/dist/core/components/organisms/table/Table.d.ts +3 -0
- package/dist/esm/index.js +223 -196
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +224 -197
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +2 -2
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +11 -11
- package/package.json +1 -1
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
|
package/css/dist/index.css
CHANGED
|
@@ -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-
|
|
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 {
|