Skip to content

Commit a0ceb68

Browse files
committed
feat(feedback): Implement highlighting and hiding controls for screenshots
1 parent aa92e85 commit a0ceb68

14 files changed

+428
-742
lines changed

packages/core/src/types-hoist/feedback/config.ts

-9
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,6 @@ export interface FeedbackGeneralConfiguration {
5757
name: string;
5858
};
5959

60-
/**
61-
* _experiments allows users to enable experimental or internal features.
62-
* We don't consider such features as part of the public API and hence we don't guarantee semver for them.
63-
* Experimental features can be added, changed or removed at any time.
64-
*
65-
* Default: undefined
66-
*/
67-
_experiments: Partial<{ annotations: boolean }>;
68-
6960
/**
7061
* Set an object that will be merged sent as tags data with the event.
7162
*/

packages/feedback/src/core/integration.ts

-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ export const buildFeedbackIntegration = ({
8484
email: 'email',
8585
name: 'username',
8686
},
87-
_experiments = {},
8887
tags,
8988
styleNonce,
9089
scriptNonce,
@@ -159,8 +158,6 @@ export const buildFeedbackIntegration = ({
159158
onSubmitError,
160159
onSubmitSuccess,
161160
onFormSubmitted,
162-
163-
_experiments,
164161
};
165162

166163
let _shadow: ShadowRoot | null = null;

packages/feedback/src/screenshot/components/Annotations.tsx

-91
This file was deleted.

0 commit comments

Comments
 (0)