@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.
@@ -3,7 +3,8 @@ export declare enum KitButtonType {
3
3
  GHOST = "ghost",
4
4
  TEXT = "text",
5
5
  LINK = "link",
6
- DASHED = "dashed"
6
+ DASHED = "dashed",
7
+ SUCCESS = "success"
7
8
  }
8
9
  export declare enum KitButtonKind {
9
10
  LARGE = "large",
@@ -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
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.110",
10
+ "version": "1.1.111",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^19.1.4",
13
13
  "@angular/core": "^19.1.4"
@@ -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;