@innovaccer/design-system 2.38.1 → 2.40.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 +93 -0
- package/css/dist/index.css +19 -5
- package/css/dist/index.css.map +1 -1
- package/css/src/components/message.css +4 -4
- package/css/src/components/select.css +1 -0
- package/css/src/components/tabs.css +14 -1
- package/dist/.lib/tsconfig.type.tsbuildinfo +714 -2614
- package/dist/core/common.type.d.ts +1 -0
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +2 -0
- package/dist/core/components/molecules/keyValuePair/KeyElement.d.ts +18 -0
- package/dist/core/components/molecules/keyValuePair/KeyValuePair.d.ts +16 -0
- package/dist/core/components/molecules/keyValuePair/ValueElement.d.ts +8 -0
- package/dist/core/components/molecules/keyValuePair/index.d.ts +2 -0
- package/dist/core/components/molecules/popover/Popover.d.ts +1 -0
- package/dist/core/components/molecules/tabs/Tabs.d.ts +5 -1
- package/dist/core/components/molecules/tabs/TabsWrapper.d.ts +5 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/figma/ActionCard.figma.d.ts +1 -0
- package/dist/figma/Avatar.figma.d.ts +1 -0
- package/dist/figma/Backdrop.figma.d.ts +1 -0
- package/dist/figma/Badge.figma.d.ts +1 -0
- package/dist/figma/Breadcrumbs.figma.d.ts +1 -0
- package/dist/figma/Button.figma.d.ts +1 -0
- package/dist/figma/Card.figma.d.ts +1 -0
- package/dist/figma/Checkbox.figma.d.ts +1 -0
- package/dist/figma/Chip.figma.d.ts +1 -0
- package/dist/figma/Divider.figma.d.ts +1 -0
- package/dist/figma/HelpText.figma.d.ts +1 -0
- package/dist/figma/Icon.figma.d.ts +1 -0
- package/dist/figma/Input.figma.d.ts +1 -0
- package/dist/figma/Label.figma.d.ts +1 -0
- package/dist/figma/Link.figma.d.ts +1 -0
- package/dist/figma/LinkButton.figma.d.ts +1 -0
- package/dist/figma/Message.figma.d.ts +1 -0
- package/dist/figma/MetaList.figma.d.ts +1 -0
- package/dist/figma/MetricInput.figma.d.ts +1 -0
- package/dist/figma/Pill.figma.d.ts +1 -0
- package/dist/figma/PlaceholderImage.figma.d.ts +1 -0
- package/dist/figma/ProgressBar.figma.d.ts +1 -0
- package/dist/figma/ProgressRing.figma.d.ts +1 -0
- package/dist/figma/Radio.figma.d.ts +1 -0
- package/dist/figma/RangeSlider.figma.d.ts +1 -0
- package/dist/figma/SelectionCard.figma.d.ts +1 -0
- package/dist/figma/Slider.figma.d.ts +1 -0
- package/dist/figma/Spinner.figma.d.ts +1 -0
- package/dist/figma/StatusHint.figma.d.ts +1 -0
- package/dist/figma/Switch.figma.d.ts +1 -0
- package/dist/figma/Toast.figma.d.ts +1 -0
- package/dist/index.esm.js +140 -26
- package/dist/index.js +137 -31
- 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 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,96 @@
|
|
|
1
|
+
## 2.40.0 (2024-07-29)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(keyValuePair): add new key-value-pair component (e3d6a8bb)
|
|
6
|
+
- feat(figma): add figma code connect to atomic components (c66e9e3c)
|
|
7
|
+
- feat(tabs): add overflow behavior for text label (1aeaf466)
|
|
8
|
+
- feat: figma code connect for atom components (df43978b)
|
|
9
|
+
- feat(figma): update figma code connect variable for button component (c45a1223)
|
|
10
|
+
- feat(popover): add disabled prop to prevent toggle for disabled trigger (fdc01a87)
|
|
11
|
+
|
|
12
|
+
### Breaking changes
|
|
13
|
+
|
|
14
|
+
NA
|
|
15
|
+
|
|
16
|
+
### Migration guide
|
|
17
|
+
|
|
18
|
+
NA
|
|
19
|
+
|
|
20
|
+
### Deprecations
|
|
21
|
+
|
|
22
|
+
NA
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
- feat(keyValuePair): add new key-value-pair component (e3d6a8bb)
|
|
27
|
+
- feat(figma): add figma code connect to atomic components (c66e9e3c)
|
|
28
|
+
- feat(tabs): add overflow behavior for text label (1aeaf466)
|
|
29
|
+
- feat: figma code connect for atom components (df43978b)
|
|
30
|
+
- feat(figma): update figma code connect variable for button component (c45a1223)
|
|
31
|
+
- feat(popover): add disabled prop to prevent toggle for disabled trigger (fdc01a87)
|
|
32
|
+
|
|
33
|
+
### Fixes
|
|
34
|
+
|
|
35
|
+
- fix(inputMask): autofocus issue for WebKit browsers fix (201be4e2)
|
|
36
|
+
- fix(AIResponse): remove beta from the AI Response stories (37b44f0f)
|
|
37
|
+
- fix(link): add description for using subtle as appearance in link component (e820f517)
|
|
38
|
+
- fix(select): update width for select option wrapper (6f5527d3)
|
|
39
|
+
- fix(docs): remove keyValuePair nav from mobile page (137a9a92)
|
|
40
|
+
|
|
41
|
+
### Improvements
|
|
42
|
+
|
|
43
|
+
- feat(keyValuePair): update stories of keyValuePair component (323ecb62)
|
|
44
|
+
|
|
45
|
+
### Documentation
|
|
46
|
+
|
|
47
|
+
- docs(tabs): update tab label overflow documentation (b23e2592)
|
|
48
|
+
- docs(keyValuePair): add key value pair component documentation (be957de5)
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 2.39.0 (2024-07-16)
|
|
53
|
+
|
|
54
|
+
### Highlights
|
|
55
|
+
|
|
56
|
+
- feat(tab): add small size support in tab component (0060c807)
|
|
57
|
+
- feat(Message): update background colors in message (d31d5fd1)
|
|
58
|
+
- feat(AIResponse): add generating response story (9f64993e)
|
|
59
|
+
|
|
60
|
+
### Breaking changes
|
|
61
|
+
|
|
62
|
+
NA
|
|
63
|
+
|
|
64
|
+
### Migration guide
|
|
65
|
+
|
|
66
|
+
NA
|
|
67
|
+
|
|
68
|
+
### Deprecations
|
|
69
|
+
|
|
70
|
+
NA
|
|
71
|
+
|
|
72
|
+
### Features
|
|
73
|
+
|
|
74
|
+
- feat(tab): add small size support in tab component (0060c807)
|
|
75
|
+
- feat(Message): update background colors in message (d31d5fd1)
|
|
76
|
+
- feat(AIResponse): add generating response story (9f64993e)
|
|
77
|
+
|
|
78
|
+
### Fixes
|
|
79
|
+
|
|
80
|
+
- fix(chip): update inline alignment for multiple chips (bf8f6b29)
|
|
81
|
+
|
|
82
|
+
### Improvements
|
|
83
|
+
|
|
84
|
+
NA
|
|
85
|
+
|
|
86
|
+
### Documentation
|
|
87
|
+
|
|
88
|
+
- docs(message): update images in message documentation (2bf6b150)
|
|
89
|
+
- docs(tabs): add small size tabs documentation (5dbd6c9f)
|
|
90
|
+
- docs(AIResponse): add stories for generating content (96332c35)
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
1
94
|
## 2.38.1 (2024-07-12)
|
|
2
95
|
|
|
3
96
|
### 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 {
|
|
@@ -6316,6 +6316,7 @@ body {
|
|
|
6316
6316
|
margin: 0;
|
|
6317
6317
|
font-size: var(--font-size);
|
|
6318
6318
|
line-height: var(--font-height);
|
|
6319
|
+
width: 100%;
|
|
6319
6320
|
}
|
|
6320
6321
|
|
|
6321
6322
|
.Select-trigger--regular {
|
|
@@ -7137,11 +7138,18 @@ body {
|
|
|
7137
7138
|
flex-direction: row;
|
|
7138
7139
|
cursor: pointer;
|
|
7139
7140
|
min-width: 40px;
|
|
7140
|
-
padding: var(--spacing-l) var(--spacing-l) var(--spacing-2);
|
|
7141
7141
|
margin-bottom: calc(-1 * var(--spacing-xs));
|
|
7142
7142
|
text-align: center;
|
|
7143
7143
|
}
|
|
7144
7144
|
|
|
7145
|
+
.Tab--small {
|
|
7146
|
+
padding: var(--spacing) var(--spacing-l) var(--spacing-l);
|
|
7147
|
+
}
|
|
7148
|
+
|
|
7149
|
+
.Tab--regular {
|
|
7150
|
+
padding: var(--spacing-l) var(--spacing-l) var(--spacing-2);
|
|
7151
|
+
}
|
|
7152
|
+
|
|
7145
7153
|
.Tab:last-child {
|
|
7146
7154
|
margin-right: 0;
|
|
7147
7155
|
}
|
|
@@ -7231,6 +7239,7 @@ body {
|
|
|
7231
7239
|
.Tab-pills {
|
|
7232
7240
|
cursor: pointer;
|
|
7233
7241
|
margin-right: var(--spacing);
|
|
7242
|
+
overflow: visible;
|
|
7234
7243
|
}
|
|
7235
7244
|
|
|
7236
7245
|
.Tab-pills--disabled {
|
|
@@ -7269,6 +7278,11 @@ body {
|
|
|
7269
7278
|
background-color: var(--primary-light);
|
|
7270
7279
|
}
|
|
7271
7280
|
|
|
7281
|
+
.Tab--overflow {
|
|
7282
|
+
display: flex;
|
|
7283
|
+
box-sizing: border-box;
|
|
7284
|
+
}
|
|
7285
|
+
|
|
7272
7286
|
/* Textarea */
|
|
7273
7287
|
|
|
7274
7288
|
.Textarea {
|