@indigina/ui-kit 1.1.47 → 1.1.48

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.
@@ -1,4 +1,4 @@
1
- import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
1
+ import { KitSvgIcon, KitSvgIconType } from '../kit-svg-icon/kit-svg-icon.const';
2
2
  import { EventEmitter } from '@angular/core';
3
3
  import { KitButtonIconPosition, KitButtonKind, KitButtonType } from './kit-button.const';
4
4
  import * as i0 from "@angular/core";
@@ -19,6 +19,10 @@ export declare class KitButtonComponent {
19
19
  * An icon which will be used in a button with icon
20
20
  */
21
21
  icon?: KitSvgIcon;
22
+ /**
23
+ * Defines the icon type of the button
24
+ */
25
+ iconType?: KitSvgIconType;
22
26
  /**
23
27
  * Defines a kind of button (regular, mini, etc.)
24
28
  */
@@ -35,6 +39,7 @@ export declare class KitButtonComponent {
35
39
  * An action which is emitted as soon as user clicked the button
36
40
  */
37
41
  clicked: EventEmitter<void>;
42
+ readonly KitSvgIconType: typeof KitSvgIconType;
38
43
  static ɵfac: i0.ɵɵFactoryDeclaration<KitButtonComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<KitButtonComponent, "kit-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitButtonComponent, "kit-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
40
45
  }
@@ -88,7 +88,11 @@ export declare enum KitSvgIcon {
88
88
  QUESTION_CIRCLE = "question-circle",
89
89
  STAR = "star",
90
90
  SORT_ASCENDING = "sort-ascending",
91
- SORT_DESCENDING = "sort-descending"
91
+ SORT_DESCENDING = "sort-descending",
92
+ PAYMENTS = "payments",
93
+ SUPPLY_CHAIN = "supply-chain",
94
+ ANALYTICS = "analytics",
95
+ CONTROL_PANEL = "control-panel"
92
96
  }
93
97
  export declare enum KitSvgIconType {
94
98
  FILL = "fill",
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.47",
10
+ "version": "1.1.48",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^17.0.7",
13
13
  "@angular/core": "^17.0.7"