@innovaccer/design-system 2.26.0 → 2.27.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 +41 -0
- package/css/dist/index.css +33 -1
- package/css/dist/index.css.map +1 -1
- package/css/src/components/avatar.css +1 -1
- package/css/src/components/icon.css +32 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +233 -61
- package/dist/core/components/atoms/avatar/Avatar.d.ts +4 -1
- package/dist/core/components/atoms/avatar/AvatarProvider.d.ts +10 -0
- package/dist/core/components/atoms/avatar/avatarIcon/AvatarIcon.d.ts +11 -0
- package/dist/core/components/atoms/avatar/avatarIcon/index.d.ts +2 -0
- package/dist/core/components/atoms/avatar/avatarImage/AvatarImage.d.ts +8 -0
- package/dist/core/components/atoms/avatar/avatarImage/index.d.ts +2 -0
- package/dist/core/components/atoms/helpText/HelpText.d.ts +2 -1
- package/dist/core/components/atoms/icon/Icon.d.ts +1 -1
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +268 -268
- package/dist/core/components/organisms/textField/TextField.d.ts +8 -0
- package/dist/core/components/organisms/textField/TextFieldCommon.d.ts +12 -0
- package/dist/core/components/organisms/textField/TextFieldWithInput.d.ts +14 -0
- package/dist/core/components/organisms/textField/TextFieldWithTextarea.d.ts +11 -0
- package/dist/core/components/organisms/textField/__test__/Textarea.test.d.ts +6 -0
- package/dist/core/components/organisms/textField/index.d.ts +2 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/core/utils/navigationHelper.d.ts +2 -2
- package/dist/index.esm.js +301 -20
- package/dist/index.js +296 -19
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
## 2.27.0 (2024-01-15)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(textfield): add new textfield component (8d21fe15)
|
|
6
|
+
- feat(avatar): add icon and image support (44c8b5ef)
|
|
7
|
+
- feat(icon): add darker appearance support (b96e06c8
|
|
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(textfield): add new textfield component (8d21fe15)
|
|
24
|
+
- feat(avatar): add icon and image support (44c8b5ef)
|
|
25
|
+
- feat(icon): add darker appearance support (b96e06c8)
|
|
26
|
+
|
|
27
|
+
### Fixes
|
|
28
|
+
|
|
29
|
+
NA
|
|
30
|
+
|
|
31
|
+
### Improvements
|
|
32
|
+
|
|
33
|
+
- test(docs): update cypress test for patterns (54c04204)
|
|
34
|
+
|
|
35
|
+
### Documentation
|
|
36
|
+
|
|
37
|
+
- docs(docs): update icon appearances documentation (176fedf6)
|
|
38
|
+
- docs(docs): add input with word count in input documentation (a714d804)
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
1
42
|
## 2.26.0 (2024-01-04)
|
|
2
43
|
|
|
3
44
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -860,7 +860,7 @@ body {
|
|
|
860
860
|
background: var(--secondary-light);
|
|
861
861
|
}
|
|
862
862
|
|
|
863
|
-
/*
|
|
863
|
+
/* Avatar */
|
|
864
864
|
|
|
865
865
|
.Avatar {
|
|
866
866
|
display: flex;
|
|
@@ -4081,6 +4081,10 @@ body {
|
|
|
4081
4081
|
color: var(--primary-dark);
|
|
4082
4082
|
}
|
|
4083
4083
|
|
|
4084
|
+
.Icon--primaryDarker {
|
|
4085
|
+
color: var(--primary-darker);
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4084
4088
|
.Icon--alertLighter {
|
|
4085
4089
|
color: var(--alert-lighter);
|
|
4086
4090
|
}
|
|
@@ -4089,6 +4093,10 @@ body {
|
|
|
4089
4093
|
color: var(--alert-dark);
|
|
4090
4094
|
}
|
|
4091
4095
|
|
|
4096
|
+
.Icon--alertDarker {
|
|
4097
|
+
color: var(--alert-darker);
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4092
4100
|
.Icon--successLighter {
|
|
4093
4101
|
color: var(--success-lighter);
|
|
4094
4102
|
}
|
|
@@ -4097,6 +4105,10 @@ body {
|
|
|
4097
4105
|
color: var(--success-dark);
|
|
4098
4106
|
}
|
|
4099
4107
|
|
|
4108
|
+
.Icon--successDarker {
|
|
4109
|
+
color: var(--success-darker);
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4100
4112
|
.Icon--warningLighter {
|
|
4101
4113
|
color: var(--warning-lighter);
|
|
4102
4114
|
}
|
|
@@ -4105,6 +4117,10 @@ body {
|
|
|
4105
4117
|
color: var(--warning-dark);
|
|
4106
4118
|
}
|
|
4107
4119
|
|
|
4120
|
+
.Icon--warningDarker {
|
|
4121
|
+
color: var(--warning-darker);
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4108
4124
|
.Icon--accent1 {
|
|
4109
4125
|
color: var(--accent1);
|
|
4110
4126
|
}
|
|
@@ -4117,6 +4133,10 @@ body {
|
|
|
4117
4133
|
color: var(--accent1-dark);
|
|
4118
4134
|
}
|
|
4119
4135
|
|
|
4136
|
+
.Icon--accent1Darker {
|
|
4137
|
+
color: var(--accent1-darker);
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4120
4140
|
.Icon--accent2 {
|
|
4121
4141
|
color: var(--accent2);
|
|
4122
4142
|
}
|
|
@@ -4129,6 +4149,10 @@ body {
|
|
|
4129
4149
|
color: var(--accent2-dark);
|
|
4130
4150
|
}
|
|
4131
4151
|
|
|
4152
|
+
.Icon--accent2Darker {
|
|
4153
|
+
color: var(--accent2-darker);
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4132
4156
|
.Icon--accent3 {
|
|
4133
4157
|
color: var(--accent3);
|
|
4134
4158
|
}
|
|
@@ -4141,6 +4165,10 @@ body {
|
|
|
4141
4165
|
color: var(--accent3-dark);
|
|
4142
4166
|
}
|
|
4143
4167
|
|
|
4168
|
+
.Icon--accent3Darker {
|
|
4169
|
+
color: var(--accent3-darker);
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4144
4172
|
.Icon--accent4 {
|
|
4145
4173
|
color: var(--accent4);
|
|
4146
4174
|
}
|
|
@@ -4153,6 +4181,10 @@ body {
|
|
|
4153
4181
|
color: var(--accent4-dark);
|
|
4154
4182
|
}
|
|
4155
4183
|
|
|
4184
|
+
.Icon--accent4Darker {
|
|
4185
|
+
color: var(--accent4-darker);
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4156
4188
|
.Icon--inverse {
|
|
4157
4189
|
color: var(--inverse);
|
|
4158
4190
|
}
|