@livetiles/reach-plugin-types 0.5.0-preview.366 → 0.5.0-preview.368
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 +3 -6
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -9995,12 +9995,8 @@ declare module "libs/reach/feature/content/src/comments/PublishableItemComments"
|
|
|
9995
9995
|
}>;
|
|
9996
9996
|
}
|
|
9997
9997
|
declare module "libs/reach/feature/content/src/feedback/buttons/FeedbackButtons" {
|
|
9998
|
-
import { FC } from 'react';
|
|
9999
|
-
import { ItemStatistics } from "libs/reach/util/common/src/index";
|
|
10000
|
-
import { ItemResourceTypes } from "libs/reach/util/common/src/index";
|
|
10001
|
-
import { PublishableItem } from "libs/reach/util/common/src/index";
|
|
10002
|
-
import { Feedback } from "libs/reach/util/common/src/index";
|
|
10003
|
-
import { ReactNode } from 'hoist-non-react-statics/node_modules/@types/react';
|
|
9998
|
+
import { FC, ReactNode } from 'react';
|
|
9999
|
+
import { Feedback, ItemResourceTypes, ItemStatistics, PublishableItem } from "libs/reach/util/common/src/index";
|
|
10004
10000
|
export const FeedbackButtonContext: import("react").Context<{
|
|
10005
10001
|
statistics: ItemStatistics;
|
|
10006
10002
|
item: PublishableItem;
|
|
@@ -10014,6 +10010,7 @@ declare module "libs/reach/feature/content/src/feedback/buttons/FeedbackButtons"
|
|
|
10014
10010
|
hasFeedbackEnabled: (feedbackType: Feedback) => boolean;
|
|
10015
10011
|
language: string;
|
|
10016
10012
|
warningMessage?: ReactNode;
|
|
10013
|
+
buttons: ReactNode[];
|
|
10017
10014
|
className?: string;
|
|
10018
10015
|
}>;
|
|
10019
10016
|
}
|