@livetiles/reach-plugin-types 0.5.0-preview.78 → 0.5.0-preview.80

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +3 -1
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -6646,6 +6646,7 @@ declare module "apps/reach-app/src/app/admin/users/invite-users-csv/useUserCsvIn
6646
6646
  export type CsvValidation = {
6647
6647
  Status?: ValidationStatus;
6648
6648
  Message?: string;
6649
+ InvalidItems?: string[];
6649
6650
  };
6650
6651
  export function useUserCsvInviter(): {
6651
6652
  invitedUsers: UserImport[];
@@ -6653,7 +6654,7 @@ declare module "apps/reach-app/src/app/admin/users/invite-users-csv/useUserCsvIn
6653
6654
  isCsvValid: boolean;
6654
6655
  parseCsvFile: (csvFile: File) => void;
6655
6656
  csvValidation: CsvValidation;
6656
- setCsvValidation: (status: ValidationStatus, message: string) => void;
6657
+ setCsvValidation: (status: ValidationStatus, message: string, invalidItems?: string[]) => void;
6657
6658
  inviteUsers: (onSuccess?: () => void) => Promise<void>;
6658
6659
  isParserReady: boolean;
6659
6660
  isInviting: boolean;
@@ -8136,6 +8137,7 @@ declare module "libs/reach/feature/content/src/common/item-tile/Title" {
8136
8137
  enableModalRouting?: boolean;
8137
8138
  itemId?: string;
8138
8139
  isOverrideLink: boolean;
8140
+ icon?: string;
8139
8141
  }>;
8140
8142
  }
8141
8143
  declare module "libs/reach/feature/content/src/common/breadcrumb/utils" {
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.78",
7
+ "version": "0.5.0-preview.80",
8
8
  "dependencies": {}
9
9
  }