@innovaccer/design-system 2.38.0 → 2.39.0
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 +80 -0
- package/css/dist/index.css +12 -5
- package/css/dist/index.css.map +1 -1
- package/css/src/components/message.css +4 -4
- package/css/src/components/tabs.css +8 -1
- package/dist/.lib/tsconfig.type.tsbuildinfo +10 -9
- package/dist/core/common.type.d.ts +1 -0
- package/dist/core/components/molecules/tabs/Tabs.d.ts +3 -1
- package/dist/core/components/molecules/tabs/TabsWrapper.d.ts +5 -0
- package/dist/core/components/organisms/combobox/ComboboxOption.d.ts +2 -0
- package/dist/index.esm.js +17 -9
- package/dist/index.js +17 -9
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,83 @@
|
|
|
1
|
+
## 2.39.0 (2024-07-16)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(tab): add small size support in tab component (0060c807)
|
|
6
|
+
- feat(Message): update background colors in message (d31d5fd1)
|
|
7
|
+
- feat(AIResponse): add generating response story (9f64993e)
|
|
8
|
+
|
|
9
|
+
### Breaking changes
|
|
10
|
+
|
|
11
|
+
NA
|
|
12
|
+
|
|
13
|
+
### Migration guide
|
|
14
|
+
|
|
15
|
+
NA
|
|
16
|
+
|
|
17
|
+
### Deprecations
|
|
18
|
+
|
|
19
|
+
NA
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- feat(tab): add small size support in tab component (0060c807)
|
|
24
|
+
- feat(Message): update background colors in message (d31d5fd1)
|
|
25
|
+
- feat(AIResponse): add generating response story (9f64993e)
|
|
26
|
+
|
|
27
|
+
### Fixes
|
|
28
|
+
|
|
29
|
+
- fix(chip): update inline alignment for multiple chips (bf8f6b29)
|
|
30
|
+
|
|
31
|
+
### Improvements
|
|
32
|
+
|
|
33
|
+
NA
|
|
34
|
+
|
|
35
|
+
### Documentation
|
|
36
|
+
|
|
37
|
+
- docs(message): update images in message documentation (2bf6b150)
|
|
38
|
+
- docs(tabs): add small size tabs documentation (5dbd6c9f)
|
|
39
|
+
- docs(AIResponse): add stories for generating content (96332c35)
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 2.38.1 (2024-07-12)
|
|
44
|
+
|
|
45
|
+
### Highlights
|
|
46
|
+
|
|
47
|
+
- fix: move lottie player npm package from dev-dependencies to dependencies (65d70faf)
|
|
48
|
+
- fix(combobox): add onFocus and onBlur callback function in combobox options (83e66918)
|
|
49
|
+
|
|
50
|
+
### Breaking changes
|
|
51
|
+
|
|
52
|
+
NA
|
|
53
|
+
|
|
54
|
+
### Migration guide
|
|
55
|
+
|
|
56
|
+
NA
|
|
57
|
+
|
|
58
|
+
### Deprecations
|
|
59
|
+
|
|
60
|
+
NA
|
|
61
|
+
|
|
62
|
+
### Features
|
|
63
|
+
|
|
64
|
+
NA
|
|
65
|
+
|
|
66
|
+
### Fixes
|
|
67
|
+
|
|
68
|
+
- fix: move lottie player npm package from dev-dependencies to dependencies (65d70faf)
|
|
69
|
+
- fix(combobox): add onFocus and onBlur callback function in combobox options (83e66918)
|
|
70
|
+
|
|
71
|
+
### Improvements
|
|
72
|
+
|
|
73
|
+
NA
|
|
74
|
+
|
|
75
|
+
### Documentation
|
|
76
|
+
|
|
77
|
+
NA
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
1
81
|
## 2.38.0 (2024-07-05)
|
|
2
82
|
|
|
3
83
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -5081,22 +5081,22 @@ body {
|
|
|
5081
5081
|
|
|
5082
5082
|
.Message--alert {
|
|
5083
5083
|
border-color: var(--alert);
|
|
5084
|
-
background-color: rgba(
|
|
5084
|
+
background-color: rgba(217, 55, 55, 0.04);
|
|
5085
5085
|
}
|
|
5086
5086
|
|
|
5087
5087
|
.Message--success {
|
|
5088
5088
|
border-color: var(--success);
|
|
5089
|
-
background-color: rgba(
|
|
5089
|
+
background-color: rgba(46, 168, 67, 0.04);
|
|
5090
5090
|
}
|
|
5091
5091
|
|
|
5092
5092
|
.Message--info {
|
|
5093
5093
|
border-color: var(--primary);
|
|
5094
|
-
background-color: rgba(
|
|
5094
|
+
background-color: rgba(0, 112, 221, 0.04);
|
|
5095
5095
|
}
|
|
5096
5096
|
|
|
5097
5097
|
.Message--warning {
|
|
5098
5098
|
border-color: var(--accent1);
|
|
5099
|
-
background-color: rgba(
|
|
5099
|
+
background-color: rgba(240, 125, 0, 0.04);
|
|
5100
5100
|
}
|
|
5101
5101
|
|
|
5102
5102
|
.Message-icon {
|
|
@@ -7137,11 +7137,18 @@ body {
|
|
|
7137
7137
|
flex-direction: row;
|
|
7138
7138
|
cursor: pointer;
|
|
7139
7139
|
min-width: 40px;
|
|
7140
|
-
padding: var(--spacing-l) var(--spacing-l) var(--spacing-2);
|
|
7141
7140
|
margin-bottom: calc(-1 * var(--spacing-xs));
|
|
7142
7141
|
text-align: center;
|
|
7143
7142
|
}
|
|
7144
7143
|
|
|
7144
|
+
.Tab--small {
|
|
7145
|
+
padding: var(--spacing) var(--spacing-l) var(--spacing-l);
|
|
7146
|
+
}
|
|
7147
|
+
|
|
7148
|
+
.Tab--regular {
|
|
7149
|
+
padding: var(--spacing-l) var(--spacing-l) var(--spacing-2);
|
|
7150
|
+
}
|
|
7151
|
+
|
|
7145
7152
|
.Tab:last-child {
|
|
7146
7153
|
margin-right: 0;
|
|
7147
7154
|
}
|