@arbocollab/arbo-plugin-item-table 0.0.171 → 0.0.173

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/CHANGELOG.md CHANGED
@@ -2,6 +2,59 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.0.173] - 2026-02-23
6
+
7
+ ### 🐛 Bug Fixes
8
+
9
+ **Date Picker Components**
10
+
11
+ - **Calendar & DateInput:**
12
+ - Fixed an issue where pressing the `Tab` key within the date input fields would not correctly move focus to the next element outside the calendar popup.
13
+ - Improved keyboard navigation by trapping focus within the calendar popup and providing a clear exit path via the `Tab` key on the last input.
14
+ - Pressing `Escape` within a date input now correctly blurs the input and returns focus to the main calendar component.
15
+
16
+ **Item Creation (`CreateNewScene.vue`)**
17
+
18
+ - **Focus Management Improvements:**
19
+ - Removed `@blur` event handlers from action buttons ("Cancel", "Create & Keep", "Create") to prevent the `activeField` from being incorrectly set to `null` during keyboard navigation.
20
+ - Ensures more stable focus management and predictable keyboard navigation behavior.
21
+ - Added extensive console.trace and logging to better debug focus and active field changes.
22
+
23
+ ## [0.0.172] - 2026-02-23
24
+
25
+ ### 🚀 Features & Enhancements
26
+
27
+ **Error Handling**
28
+
29
+ - **Offline Detection:** Implemented robust offline error handling across the application.
30
+ - The system now detects when the user is offline and prevents data-modifying requests (POST, PUT, DELETE).
31
+ - A single, clear notification ("You are currently offline. Please check your network connection.") is displayed to inform the user of the connection issue, avoiding multiple redundant error messages.
32
+
33
+ **Item Creation (`CreateNewScene.vue`)**
34
+
35
+ - **Improved Focus Management:** Refined keyboard navigation (`Tab`) to correctly cycle through all fields and buttons, including "Cancel", "Create & Keep", and "Create".
36
+ - **Enhanced User Feedback:** Error notifications are now shown if scene creation fails.
37
+ - **UI Polish:** Adjusted the layout and styling of action buttons for better alignment and a cleaner look. The validation rule requiring a status to be selected has been removed.
38
+
39
+ **Snackbar/Notifications**
40
+
41
+ - **UI Improvements:**
42
+ - The success icon color for interactive notifications now uses the correct theme variable for better consistency.
43
+ - Long messages now wrap correctly within the notification.
44
+ - Added a default success icon for interactive notifications that don't have one specified.
45
+
46
+ ### 🐛 Bug Fixes
47
+
48
+ - **Item Table (`item-table.vue`):**
49
+ - The "View" button in the "Scene Created" notification now correctly focuses on the newly created item in the table.
50
+ - Removed obsolete code related to the old inline item creation logic.
51
+ - **Date Picker:** Fixed an issue where pressing the `Tab` key within the date input fields would not correctly move focus to the next element outside the calendar popup.
52
+
53
+ ### 🔧 Code Quality
54
+
55
+ - **API Services:** Centralized offline error detection in the `ItemService` request handler to provide consistent error codes and messages.
56
+ - **State Management:** The notification store now specifically handles the `offline` error code to display a standardized message.
57
+
5
58
  ## [0.0.171] - 2026-02-05
6
59
 
7
60
  ### 🚀 Features