@indigina/ui-kit 1.1.15 → 1.1.16

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.
@@ -24,7 +24,7 @@ export declare class KitButtonComponent {
24
24
  */
25
25
  kind: KitButtonKind;
26
26
  /**
27
- * A place where the icon will be displayed. By default is "right"
27
+ * A place where the icon will be displayed
28
28
  */
29
29
  iconPosition: KitButtonIconPosition;
30
30
  /**
@@ -1,12 +1,16 @@
1
1
  export declare enum KitButtonType {
2
- FILLED = "filled",
3
- OUTLINED = "outlined"
2
+ PRIMARY = "primary",
3
+ GHOST = "ghost",
4
+ TEXT = "text",
5
+ LINK = "link",
6
+ DASHED = "dashed"
4
7
  }
5
8
  export declare enum KitButtonKind {
6
9
  LARGE = "large",
10
+ MEDIUM = "medium",
7
11
  SMALL = "small"
8
12
  }
9
13
  export declare enum KitButtonIconPosition {
10
- LEFT = "icon-left",
11
- RIGHT = "icon-right"
14
+ LEADING = "leading",
15
+ TRAILING = "trailing"
12
16
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.15",
10
+ "version": "1.1.16",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^17.0.7",
13
13
  "@angular/core": "^17.0.7"
@@ -8,7 +8,8 @@
8
8
 
9
9
  /* custom palette */
10
10
  --ui-kit-color-main: #56a2f7;
11
- --ui-kit-color-main-20: #ddecfd;
11
+ --ui-kit-color-hover: #002a3a;
12
+ --ui-kit-color-selected: #3678c3;
12
13
 
13
14
  --ui-kit-color-grey-0: #252b30;
14
15
  --ui-kit-color-grey-2: #a7b2c3;
@@ -19,6 +20,11 @@
19
20
  --ui-kit-color-grey-7: #a9a8a8;
20
21
  --ui-kit-color-grey-8: #efefef;
21
22
  --ui-kit-color-grey-9: #969696;
23
+ --ui-kit-color-grey-10: #2a2b32;
24
+ --ui-kit-color-grey-11: #e3e4e5;
25
+ --ui-kit-color-grey-12: #a9aec3;
26
+ --ui-kit-color-grey-13: #f7f7f8;
27
+ --ui-kit-color-grey-14: #565963;
22
28
 
23
29
  --ui-kit-color-green: #00b0ad;
24
30