@arbocollab/arbo-plugin-item-table 1.1.44 β†’ 1.1.63

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,111 @@
1
1
  # Changelog
2
- ## [1.1.44] - 2026-03-16
3
2
 
4
- ### πŸ› Bug Fixes
3
+ ## [0.1.63] - 2026-03-30
4
+
5
+ ### πŸš€ Features & Enhancements
6
+
7
+ - **Month selection components added:** Introduced `MonthPicker` and `MonthCalendar`, exported them from the calendar package, and added Storybook stories for both components.
8
+ - **Helpers package introduced:** Added a new `@arbocollab/helpers` workspace package with DOM helpers, date/time utilities, color helpers, link generation, mapping helpers, session storage helpers, tooltip helpers, and Vue mounting helpers.
5
9
 
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.
10
+ ### 🧱 Architecture & Maintainability
7
11
 
8
- ### πŸ”§ Improvements
12
+ - **Shared types expanded:** Added `MonthPickerProps` and calendar-related types to the shared types package and re-exported them from the main type entrypoints.
13
+ - **Import paths standardized:** Refactored packages to use `@arbocollab/types` instead of the older `types` alias.
14
+ - **Code structure cleanup:** Applied follow-up readability refactors across UI, calendar, api-services, core-table, and item-table packages.
15
+ - **Keyboard navigation cleanup:** Removed the older `useKeyboardNavigation` composable from the UI package as part of the refactor path.
9
16
 
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
17
+ ### πŸ§ͺ Tooling & Dependencies
18
+
19
+ - **Workspace tooling updated:** Added test and build support for the new helpers and calendar-related workspace changes.
20
+ - **Lockfile refreshed:** Updated `pnpm-lock.yaml` to reflect the new packages and supporting dependencies.
21
+
22
+ ### πŸ“¦ Version Updates
23
+
24
+ - **Version:** `0.1.62` β†’ `0.1.63`
25
+
26
+ ## [0.1.62] - 2026-03-25
15
27
 
16
28
  ### πŸš€ Features & Enhancements
17
29
 
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.
30
+ - **Calendar package introduced:** Added a standalone `@arbocollab/calendar` package with `Calendar`, `CalendarNavigationControl`, `DateInput`, `MainCalendar`, date-picker composables, date utilities, and package exports.
31
+ - **Storybook coverage added:** Added a Storybook story for the calendar package.
32
+
33
+ ### πŸ§ͺ Tooling & Dependencies
34
+
35
+ - **Calendar package tooling:** Added package-level Vite, ESLint, Cypress, and TypeScript configuration for the new calendar workspace package.
36
+
37
+ ### πŸ“¦ Version Updates
38
+
39
+ - **Version:** `0.1.61` β†’ `0.1.62`
40
+
41
+ ## [0.1.61] - 2026-03-25
23
42
 
24
43
  ### 🎨 UI/UX Improvements
25
44
 
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.
45
+ - **More-option interactions refined:** Improved focus, blur, rename, and refocus flows around more-options editors and scene name editing.
46
+ - **Table interaction cleanup:** Removed noisy logs in several metric and item-table interaction paths while tightening focus handling.
32
47
 
33
- ### πŸ› Bug Fixes
48
+ ### 🧱 Architecture & Maintainability
34
49
 
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.
50
+ - **Action handling improved:** Refined scene action behavior and supporting editor integration for more consistent interaction flow.
44
51
 
45
- ### πŸ”§ Technical Improvements
52
+ ### πŸ“¦ Version Updates
53
+
54
+ - **Version:** `0.1.59` β†’ `0.1.61`
55
+
56
+ ## [0.1.59] - 2026-03-24
57
+
58
+ ### πŸš€ Features & Enhancements
59
+
60
+ - **Metric presentation improved:** Added `MetricCellRenderer` to improve metric label display and type indicators.
61
+
62
+ ### 🎨 UI/UX Improvements
63
+
64
+ - **Display wrapper styling refined:** Updated `DisplayWrapper` styling to use configurable background color behavior.
65
+
66
+ ### πŸ“¦ Version Updates
67
+
68
+ - **Version:** `0.1.58` β†’ `0.1.59`
69
+
70
+ ## [0.1.58] - 2026-03-24
71
+
72
+ ### πŸš€ Features & Enhancements
73
+
74
+ - **Metrics functionality expanded:** Enhanced the metrics app with AG Grid integration, infinite loading behavior, metric editing flows, and a dedicated `MetricService`.
75
+ - **Renderer and editor support improved:** Expanded wrapper and renderer behavior across core-table and UI components to support the metrics workflow.
76
+
77
+ ### 🎨 UI/UX Improvements
78
+
79
+ - **Metric rendering refined:** Improved metric and rating presentation in table cells and related dropdown flows.
80
+
81
+ ### πŸ“¦ Version Updates
82
+
83
+ - **Version:** `0.1.53` β†’ `0.1.58`
84
+
85
+ ## [0.1.53] - 2026-03-20
86
+
87
+ ### πŸš€ Features & Enhancements
88
+
89
+ - **Metrics app added:** Introduced the `apps/metrics` Vue 3 application with its own Vite, TypeScript, and build configuration.
90
+ - **Grid demo scaffolding added:** Added initial metric table integration, app bootstrap files, and development configuration.
91
+
92
+ ### πŸ“¦ Version Updates
93
+
94
+ - **Version:** `0.1.52` β†’ `0.1.53`
95
+
96
+ ## [0.1.52] - 2026-03-19
97
+
98
+ ### πŸš€ Features & Enhancements
99
+
100
+ - **Event handling improved:** Refined button, list item, and dropdown event contracts for better click, escape, and select behavior.
101
+
102
+ ### 🎨 UI/UX Improvements
46
103
 
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.
104
+ - **Component styling refined:** Adjusted styling across buttons, filters, list items, and drag-and-drop related components for more consistent interaction feedback.
52
105
 
53
106
  ### πŸ“¦ Version Updates
54
107
 
55
- - **Version:** `1.0.203` β†’ `1.1.43`
108
+ - **Version:** `0.1.51-alpha.0` β†’ `0.1.52`
56
109
 
57
110
  ## [0.1.15] - 2026-03-04
58
111