@arbocollab/arbo-plugin-item-table 1.1.44 → 1.1.51

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
@@ -1,58 +1,4 @@
1
1
  # Changelog
2
- ## [1.1.44] - 2026-03-16
3
-
4
- ### 🐛 Bug Fixes
5
-
6
- - **Null safety in terminology retrieval:** Fixed a crash when `ws.terminology` is missing from session storage. Both `getTerminology` in `item-table.vue` and `helpert.ts` now use optional chaining (`data?.find(...)`) before calling `.find()`, preventing a runtime error when data is null.
7
-
8
- ### 🔧 Improvements
9
-
10
- - **handleOpen logic fix in useSceneAction:** Refactored the `handleOpen` function in `useSceneAction.ts` to correctly handle the `scene_hub` link type:
11
- - Added early return statements after each branch to prevent fall-through that previously caused double navigation or double `window.open` calls.
12
- - Removed the redundant `swicther` alias variable.
13
- - Removed the unnecessary `e instanceof MouseEvent` check (always true given the typed parameter).
14
- ## [1.1.43] - 2026-03-13
15
-
16
- ### 🚀 Features & Enhancements
17
-
18
- - **Workspace terminology support:** Added `ws.terminology` session storage support and a shared `getTerminology` helper so scene-related labels and notifications can adapt to workspace-specific naming.
19
- - **Filter status API support:** Added a dedicated `getFilterStatuses` endpoint across API config, service layer, notification constants, and shared types to support status loading specifically for filtering.
20
- - **Keyboard navigation foundation:** Added a new `focusableDirective`, `mappingStructure` helper, and `useKeyboardNavigation` composable to support structured focus movement across filters, dropdowns, table actions, and popup menus.
21
- - **AG Grid editor focus handling:** Added editor focus hooks and `focusUi()` support so Vue cell editors can receive focus more reliably when editing starts.
22
- - **Open-in actions refinement:** Updated the “Open in” menu to use list-style menu items and improved action labeling for Review, Update, Woohoo Details, and Full view flows.
23
-
24
- ### 🎨 UI/UX Improvements
25
-
26
- - **Input and search experience:** Refined `InputText` and `SearchBox` styling, click-to-focus behavior, clear actions, placeholder text, and prefix icon handling for a cleaner and more consistent search/input experience.
27
- - **Filter panel usability:** Reworked filter popup interactions, clear/apply actions, icon behavior, popup layout, and focus order for assignee, status, archive status, and date range filters.
28
- - **Button and dropdown polish:** Updated `Button`, `ButtonDropdown`, `ListItem`, and related popup components for cleaner menu presentation, better sizing, more consistent radii, and improved action semantics.
29
- - **Table customization improvements:** Improved column customization search, drag/drop interaction, checkbox focus handling, and disabled-state messaging when reordering is unavailable.
30
- - **Notification polish:** Updated snackbar icon colors, spacing, action click handling, and button visuals for more consistent interactive notifications.
31
- - **Visual consistency:** Standardized many components to use shared radius and spacing tokens across avatars, calendars, popups, wrappers, list items, badges, skeletons, upload areas, and metric/status UI.
32
-
33
- ### 🐛 Bug Fixes
34
-
35
- - **Filter status loading:** Filter status requests now use the correct API path and parameter structure instead of reusing assignable-status behavior.
36
- - **People insight links:** Fixed people insight links to pass the actual selected user id instead of an empty value.
37
- - **Scene creation feedback:** Updated create-scene notifications to use dynamic terminology and clearer follow-up actions such as “Find in table” and “Full view”.
38
- - **Popup close handling:** Prevented popups and tippy-based overlays from closing incorrectly when users interact with snackbar notifications or people insight overlays.
39
- - **AG Grid editing flow:** Fixed date-range editing so closing the calendar also stops AG Grid edit mode correctly.
40
- - **Row state handling:** Added disabled-row support based on bulk process state and improved bulk-process rendering so error/processing states are represented more accurately.
41
- - **Metric icon fallback:** Added a safer fallback icon when metric symbols are missing.
42
- - **Sort mapping:** Corrected the `completedOn` sort mapping to use `actual_due_date`.
43
- - **Item mapping resilience:** Hardened several item/permission/metric mapping paths to tolerate incomplete API items by using optional access for item ids and related data.
44
-
45
- ### 🔧 Technical Improvements
46
-
47
- - **Shared types expanded:** Added shared tooltip parameter types, focus index props, disabled row support, and richer bulk-process typing.
48
- - **Switch handling updates:** Improved `switchStore` so switch actions can use either injected or stored switch instances more reliably.
49
- - **Click-outside focus reset:** Added outside-click handling to clear focused grid cells when users click away from the table.
50
- - **Dependency updates:** Added `@vueuse/core` to `core-table` and upgraded `@arbocollab/arbo-common-utils` to `0.0.9-alpha.0`.
51
- - **Cleanup and refactoring:** Removed outdated comments and several debug leftovers while restructuring wrappers, popups, and editor integrations.
52
-
53
- ### 📦 Version Updates
54
-
55
- - **Version:** `1.0.203` → `1.1.43`
56
2
 
57
3
  ## [0.1.15] - 2026-03-04
58
4