@arbocollab/arbo-plugin-item-table 0.0.150 → 0.0.151

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,125 @@
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.151] - 2026-02-05
6
+
7
+ ### 🔧 API Services Package
8
+
9
+ **ItemService.ts - Added filterParams support across all bulk operations:**
10
+
11
+ **Updated Methods:**
12
+
13
+ - **bulkDateUpdate**
14
+ - Added `filterParams?: Record<string, any>` parameter
15
+ - Passes filter params via `params: filterParams` in request
16
+
17
+ - **updateAssignee**
18
+ - Added `filterParams` to payload type
19
+ - Includes filter params in bulk assign update request
20
+
21
+ - **removeAssignee**
22
+ - Passes `filterParams` through to API call
23
+
24
+ - **replaceAssignee**
25
+ - Merges `filterParams` with `replace: 1` flag
26
+ - Supports filtered replacement operations
27
+
28
+ - **addAssignee**
29
+ - Added `filterParams` parameter
30
+ - Includes in bulk assign update request
31
+
32
+ - **unAssignAll**
33
+ - Extracts and passes `filterParams` from payload
34
+
35
+ - **bulkStatusUpdate**
36
+ - Added `filterParams` to payload type
37
+ - Passes filter params in status update request
38
+
39
+ - **bulkMetricUpdate**
40
+ - Added `filterParams` parameter
41
+ - Includes in metric update request
42
+
43
+ - **getAssignableStatus**
44
+ - Added flexible params with `[key: string]: any` for extensibility
45
+
46
+ ### 🎨 UI Package
47
+
48
+ **BulkUpdate.vue**
49
+
50
+ - Injected `filterParams` from parent context
51
+ - Added `filterParams` to `additionalUpdateParams` computed property
52
+ - Conditionally includes filter params in all bulk operations
53
+
54
+ **DateUpdateButton.vue**
55
+
56
+ - Injected `filterParams` from context
57
+ - Added `filterParams` to update payload
58
+ - Supports entity-level date range updates with filtering
59
+
60
+ **StatusEditor.vue**
61
+
62
+ - Injected `filterParams` for status fetching and updates
63
+ - Spreads filter params in `getAssignableStatus` call
64
+ - Includes filter params in `handleUpdateStatus` payload
65
+ - Added console.log for debugging status update payload
66
+
67
+ **TableCustomization.vue**
68
+
69
+ - Removed debug template output: `{{ isDisableDrag }}`
70
+
71
+ ### 🔨 Composables
72
+
73
+ **useAssignees.ts**
74
+
75
+ - Injected `filterParams` from parent context
76
+ - Added filter params to:
77
+ - `unAssignAll` operation
78
+ - `removeAssignee` operation
79
+ - All assignee update payloads
80
+
81
+ **useMetricUpdate.ts**
82
+
83
+ - Injected `filterParams` from context
84
+ - Added filter params to metric update payload
85
+ - Supports entity-level metric updates with filtering
86
+
87
+ ### 📊 Item Table Package
88
+
89
+ **item-table.vue**
90
+
91
+ - Provided `filterParams` (`basicFilter`) to child components via `provide('filterParams', basicFilter)`
92
+ - Enables all descendant components to access current filter state
93
+
94
+ ### 🐛 Core Table Package
95
+
96
+ **CellFactory.ts**
97
+
98
+ - Added commented-out debug logging for `canEditField` method
99
+ - Prepared for future debugging without active console noise
100
+
101
+ **CellPermission.ts**
102
+
103
+ - Added console.log for debugging permission checks
104
+ - Fixed metric permission check to use `cellParam.colDef?.context`
105
+ - Improved conditional flow with else if chains
106
+ - Enhanced readability and maintainability
107
+
108
+ ### 🎯 Impact
109
+
110
+ **Benefits:**
111
+
112
+ - ✅ Entity-level bulk operations now respect active filters
113
+ - ✅ Improved accuracy for "select all" scenarios with filters applied
114
+ - ✅ Consistent filter parameter passing across all update types
115
+ - ✅ Better debugging capabilities with strategic logging
116
+
117
+ **Technical Debt:**
118
+
119
+ - Console logs added for debugging (should be removed in production)
120
+ - Filter params injection pattern used throughout (consider formalization)
121
+
122
+ ---
123
+
5
124
  ## [0.0.138] - 2026-02-05
6
125
 
7
126
  ### 🔧 Core Table Package