@livetiles/reach-plugin-types 0.5.0-preview.544 → 0.5.0-preview.548
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.
- package/lib/index.d.ts +2 -4
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4399,11 +4399,10 @@ declare module "libs/reach/ui/common/src/common/UiUtils" {
|
|
|
4399
4399
|
export function isElementIntoView(element: HTMLElement): boolean;
|
|
4400
4400
|
}
|
|
4401
4401
|
declare module "libs/reach/ui/common/src/common/useFileAccessTokenApi" {
|
|
4402
|
-
import { ItemResourceTypes } from "libs/reach/util/common/src/index";
|
|
4403
4402
|
export function useFileAccessTokenApi(): {
|
|
4404
4403
|
exchangeShortLivedToken: (fileAccessToken: string) => Promise<string>;
|
|
4405
4404
|
getPublishableItemShortLivedToken: (basePath: string, itemId: string) => Promise<string>;
|
|
4406
|
-
createDownloadClickHandler: (target: string, getUrl: () => Promise<string>, fileId?: string,
|
|
4405
|
+
createDownloadClickHandler: (target: string, getUrl: () => Promise<string>, fileId?: string, parentId?: string) => () => Promise<void>;
|
|
4407
4406
|
};
|
|
4408
4407
|
}
|
|
4409
4408
|
declare module "libs/reach/ui/common/src/common/FileAttachmentList" {
|
|
@@ -9150,10 +9149,9 @@ declare module "libs/reach/feature/content/src/feedback/ConfirmationStatistics"
|
|
|
9150
9149
|
}
|
|
9151
9150
|
declare module "libs/reach/feature/content/src/feedback/ConfirmationStatisticsExport" {
|
|
9152
9151
|
import { FC } from 'react';
|
|
9153
|
-
import {
|
|
9152
|
+
import { PublishableItem } from "libs/reach/util/common/src/index";
|
|
9154
9153
|
export const ConfirmationStatisticsExport: FC<{
|
|
9155
9154
|
item: PublishableItem;
|
|
9156
|
-
resourceType: ItemResourceTypes;
|
|
9157
9155
|
isReadOnly?: boolean;
|
|
9158
9156
|
}>;
|
|
9159
9157
|
}
|