@bbearai/react-native 0.5.3 → 0.5.5
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 +5 -3
- package/dist/index.js +374 -198
- package/dist/index.mjs +354 -178
- package/package.json +1 -1
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
|
|
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 +
|
|
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 |
|