@bbearai/react-native 0.5.2 → 0.5.4

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/README.md CHANGED
@@ -145,16 +145,18 @@ function App() {
145
145
 
146
146
  ## Widget Architecture
147
147
 
148
- The widget uses a navigation stack pattern with 10 screens:
148
+ The widget uses a navigation stack pattern with 12 screens:
149
149
 
150
150
  | Screen | Purpose |
151
151
  |--------|---------|
152
- | **Home** | Smart hero banner + 2x2 action grid + progress bar + web dashboard link |
152
+ | **Home** | Smart hero banner + 2x2 action grid + issue tracking cards (Open, Done, Reopened) + progress bar |
153
+ | **Test List** | All assignments with filter tabs (All, To Do, Done, Re Opened) and colored status badges |
153
154
  | **Test Detail** | One-test-at-a-time execution with pass/fail/skip actions |
154
- | **Test List** | All assignments grouped by folder with filter bar |
155
155
  | **Test Feedback** | Star rating + quality flags after pass/fail |
156
156
  | **Report** | Bug/feedback submission with type, severity, description, affected screen |
157
157
  | **Report Success** | Confirmation with auto-return to home |
158
+ | **Issue List** | Issues filtered by category (open/done/reopened) with severity indicators |
159
+ | **Issue Detail** | Full issue details with verification proof and original bug context |
158
160
  | **Message List** | Thread list with unread badges + compose button |
159
161
  | **Thread Detail** | Chat bubbles + reply composer |
160
162
  | **Compose Message** | New thread form with subject + message |
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import React, { ReactNode, Component, ErrorInfo } from 'react';
2
2
  import * as _bbearai_core from '@bbearai/core';
3
- import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, AppContext, captureError } from '@bbearai/core';
3
+ import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, IssueCounts, AppContext, captureError } from '@bbearai/core';
4
4
  export { AppContext, BugBearConfig, BugBearReport, DeviceInfo, MessageSenderType, ReportType, Severity, TestAssignment, TesterInfo, TesterMessage, TesterThread, ThreadPriority, ThreadType } from '@bbearai/core';
5
5
 
6
6
  interface BugBearContextValue {
@@ -73,6 +73,8 @@ interface BugBearContextValue {
73
73
  }>;
74
74
  /** Refresh tester info from server */
75
75
  refreshTesterInfo: () => Promise<void>;
76
+ issueCounts: IssueCounts;
77
+ refreshIssueCounts: () => Promise<void>;
76
78
  /** URL to the BugBear web dashboard (for linking testers to the full web experience) */
77
79
  dashboardUrl?: string;
78
80
  /** Error handler from config — wire to your error reporting service */
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import React, { ReactNode, Component, ErrorInfo } from 'react';
2
2
  import * as _bbearai_core from '@bbearai/core';
3
- import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, AppContext, captureError } from '@bbearai/core';
3
+ import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, IssueCounts, AppContext, captureError } from '@bbearai/core';
4
4
  export { AppContext, BugBearConfig, BugBearReport, DeviceInfo, MessageSenderType, ReportType, Severity, TestAssignment, TesterInfo, TesterMessage, TesterThread, ThreadPriority, ThreadType } from '@bbearai/core';
5
5
 
6
6
  interface BugBearContextValue {
@@ -73,6 +73,8 @@ interface BugBearContextValue {
73
73
  }>;
74
74
  /** Refresh tester info from server */
75
75
  refreshTesterInfo: () => Promise<void>;
76
+ issueCounts: IssueCounts;
77
+ refreshIssueCounts: () => Promise<void>;
76
78
  /** URL to the BugBear web dashboard (for linking testers to the full web experience) */
77
79
  dashboardUrl?: string;
78
80
  /** Error handler from config — wire to your error reporting service */