@indigina/ui-kit 1.1.110 → 1.1.111
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/assets/icons/to-approve.svg +6 -0
- package/fesm2022/indigina-ui-kit.mjs +10 -8
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-button/kit-button.const.d.ts +2 -1
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +2 -1
- package/package.json +1 -1
- package/styles/components/button-variants.scss +22 -0
|
@@ -140,7 +140,8 @@ export declare enum KitSvgIcon {
|
|
|
140
140
|
NOTIFICATION_WARNING = "notification-warning",
|
|
141
141
|
EYE_OPEN = "eye-open",
|
|
142
142
|
EYE_CLOSE = "eye-close",
|
|
143
|
-
GLOBAL = "global"
|
|
143
|
+
GLOBAL = "global",
|
|
144
|
+
TO_APPROVE = "to-approve"
|
|
144
145
|
}
|
|
145
146
|
export declare enum KitSvgIconType {
|
|
146
147
|
FILL = "fill",
|
package/package.json
CHANGED
|
@@ -191,6 +191,28 @@
|
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
+
.success {
|
|
195
|
+
color: var(--ui-kit-color-white);
|
|
196
|
+
background: var(--ui-kit-color-green-1);
|
|
197
|
+
|
|
198
|
+
.kit-button-icon {
|
|
199
|
+
@include setIconColor(var(--ui-kit-color-white));
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&:hover {
|
|
203
|
+
background: var(--ui-kit-color-green-6);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&:disabled {
|
|
207
|
+
border: 1px solid var(--ui-kit-color-grey-11);
|
|
208
|
+
background: var(--ui-kit-color-grey-13);
|
|
209
|
+
|
|
210
|
+
.kit-button-icon {
|
|
211
|
+
@include setIconColor(var(--ui-kit-color-grey-12));
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
194
216
|
.large {
|
|
195
217
|
padding: 0 16px;
|
|
196
218
|
height: 40px;
|