@indigina/ui-kit 1.1.180 → 1.1.182

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.
@@ -9,6 +9,7 @@ export interface KitCard {
9
9
  link?: KitCardLink;
10
10
  items?: KitCardItem[];
11
11
  titleIconType?: KitSvgIconType;
12
+ buttonDisabled?: boolean;
12
13
  }
13
14
  export interface KitCardItem {
14
15
  label: string;
@@ -17,4 +18,5 @@ export interface KitCardItem {
17
18
  icon?: KitSvgIcon;
18
19
  iconType?: KitSvgIconType;
19
20
  tooltip?: string;
21
+ disabled?: boolean;
20
22
  }
@@ -15,4 +15,6 @@ export interface CurrentUser {
15
15
  companyName: string;
16
16
  timeZoneInfoId: string;
17
17
  namedTimeZone: string;
18
+ companyType?: UserCompanyType;
18
19
  }
20
+ export type UserCompanyType = 'DC' | 'Client' | 'OriginAgent' | 'DestinationAgent' | 'Vendor' | 'Integration' | 'SystemAdmin' | 'ReportAdmin' | 'SS_SysAdmin' | 'SS_ReportAdmin';
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.180",
10
+ "version": "1.1.182",
11
11
  "peerDependencies": {
12
12
  "@angular/common": ">=19.1.4 <20.0.0",
13
13
  "@angular/core": ">=19.1.4 <20.0.0"