@bbearai/react-native 0.7.1 → 0.8.0

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/dist/index.d.mts CHANGED
@@ -8,6 +8,10 @@ interface BugBearContextValue {
8
8
  isTester: boolean;
9
9
  isQAEnabled: boolean;
10
10
  shouldShowWidget: boolean;
11
+ /** Resolved widget mode: 'qa' for full QA, 'feedback' for feedback-only */
12
+ widgetMode: 'qa' | 'feedback';
13
+ /** Resolved color scheme: always 'dark' or 'light' (auto is resolved to a concrete value) */
14
+ widgetColorScheme: 'dark' | 'light';
11
15
  testerInfo: TesterInfo | null;
12
16
  assignments: TestAssignment[];
13
17
  currentAssignment: TestAssignment | null;
package/dist/index.d.ts CHANGED
@@ -8,6 +8,10 @@ interface BugBearContextValue {
8
8
  isTester: boolean;
9
9
  isQAEnabled: boolean;
10
10
  shouldShowWidget: boolean;
11
+ /** Resolved widget mode: 'qa' for full QA, 'feedback' for feedback-only */
12
+ widgetMode: 'qa' | 'feedback';
13
+ /** Resolved color scheme: always 'dark' or 'light' (auto is resolved to a concrete value) */
14
+ widgetColorScheme: 'dark' | 'light';
11
15
  testerInfo: TesterInfo | null;
12
16
  assignments: TestAssignment[];
13
17
  currentAssignment: TestAssignment | null;