@arbocollab/arbo-plugin-item-table 0.0.120 → 0.0.122
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 +159 -0
- package/README.md +1 -1
- package/lib/es/index.es.js +11972 -11971
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +58 -58
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,165 @@
|
|
|
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.122] - 2026-02-04
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
**Filter System Enhancements**
|
|
10
|
+
|
|
11
|
+
- **FilterBox Improvements:**
|
|
12
|
+
- Added default filter state: status_eq: '1' (active items only)
|
|
13
|
+
- Improved "Clear All" behavior: now resets to default active status instead of clearing completely
|
|
14
|
+
- Enhanced filter count logic: excludes default archive status from active filter count
|
|
15
|
+
- Better state management with DEFAULT_STATE constant
|
|
16
|
+
- Improved revert behavior: falls back to default state when no cache exists
|
|
17
|
+
|
|
18
|
+
- **FilterArchiveStatus Component:**
|
|
19
|
+
- Added reset() method to restore default state ('active')
|
|
20
|
+
- Changed default selected value from empty to ['active']
|
|
21
|
+
- Better distinction between clear() (removes all) and reset() (restores default)
|
|
22
|
+
- Improved initial state handling
|
|
23
|
+
|
|
24
|
+
- **Item Table Integration:**
|
|
25
|
+
- Set default basic filter to show active items only: { status_eq: '1' }
|
|
26
|
+
- Better alignment with filter system defaults
|
|
27
|
+
- Improved initial data loading with sensible defaults
|
|
28
|
+
|
|
29
|
+
### 🔧 Technical Improvements
|
|
30
|
+
|
|
31
|
+
**Filter State Management**
|
|
32
|
+
|
|
33
|
+
- Consistent default state across all filter components
|
|
34
|
+
- Better handling of archive status in filter count calculations
|
|
35
|
+
- Improved cache and state synchronization
|
|
36
|
+
- Clearer separation between clearing and resetting filters
|
|
37
|
+
|
|
38
|
+
**Code Quality**
|
|
39
|
+
|
|
40
|
+
- Removed unused template code in Item Table component
|
|
41
|
+
- Added DEFAULT_STATE constant for better maintainability
|
|
42
|
+
- Improved method naming with reset() vs clear() distinction
|
|
43
|
+
|
|
44
|
+
**User Experience**
|
|
45
|
+
|
|
46
|
+
- Users now see active (non-archived) items by default
|
|
47
|
+
- "Clear All" maintains sensible defaults instead of showing all items
|
|
48
|
+
- More predictable filter behavior across the application
|
|
49
|
+
|
|
50
|
+
### 📦 Version Updates
|
|
51
|
+
|
|
52
|
+
- **@arbocollab/arbo-plugin-item-table:** Updated from `0.0.121` to `0.0.122`
|
|
53
|
+
|
|
54
|
+
### Key Highlights
|
|
55
|
+
|
|
56
|
+
- 🎯 **Smart Default Filters:** Active items shown by default with proper state management
|
|
57
|
+
- 🔄 **Better Reset Behavior:** Clear All now resets to sensible defaults instead of removing all filters
|
|
58
|
+
- 📊 **Improved Filter Counting:** Default archive status no longer counted as an active filter
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## [0.0.121] - 2026-02-04
|
|
63
|
+
|
|
64
|
+
### 🚀 Features
|
|
65
|
+
|
|
66
|
+
**User Profile Components**
|
|
67
|
+
|
|
68
|
+
- **AvatarProfile Enhancements:**
|
|
69
|
+
- Added `apiUpdateFunction` prop for dynamic user data fetching
|
|
70
|
+
- Simplified component by removing internal API service logic
|
|
71
|
+
- Better prop passing for user profile updates
|
|
72
|
+
- Improved integration with MiniPeopleCard and filter components
|
|
73
|
+
|
|
74
|
+
**Tooltip System**
|
|
75
|
+
|
|
76
|
+
- **Enhanced Tooltip Directive:**
|
|
77
|
+
- Added lifecycle hooks: `onCreate` and `onMount` with debug logging
|
|
78
|
+
- Improved tooltip content styling with word-break and max-width (500px)
|
|
79
|
+
- Better handling of `extra-padding` class
|
|
80
|
+
- Cleaned up event listener logic for better performance
|
|
81
|
+
- Simplified update logic with consolidated destroy conditions
|
|
82
|
+
|
|
83
|
+
**Metric Editor Improvements**
|
|
84
|
+
|
|
85
|
+
- **MetricEditorInput:**
|
|
86
|
+
- Changed to auto-emit mode by default (`autoEmit: true`)
|
|
87
|
+
- Added cancel event emission
|
|
88
|
+
- Enhanced keyboard handling (Escape now triggers cancel)
|
|
89
|
+
- Better blur and cancel event separation
|
|
90
|
+
- Improved logging for debugging
|
|
91
|
+
|
|
92
|
+
- **MetricEditorWrapper:**
|
|
93
|
+
- Added error recovery: reverts to original value on update failure
|
|
94
|
+
- Improved cancel handling with proper event propagation
|
|
95
|
+
|
|
96
|
+
- **MetricEditor:**
|
|
97
|
+
- Added Escape key support to close editor
|
|
98
|
+
- Enhanced keyboard navigation
|
|
99
|
+
|
|
100
|
+
**Metric Update Button**
|
|
101
|
+
|
|
102
|
+
- **MetricBulkItem:**
|
|
103
|
+
- Added tooltip support for metric names
|
|
104
|
+
- Conditional morpheme display (only shows when open)
|
|
105
|
+
- Improved label styling
|
|
106
|
+
- Better console logging
|
|
107
|
+
|
|
108
|
+
- **MetricUpdateButton:**
|
|
109
|
+
- Changed initialization: now loads metrics on mount instead of on visibility
|
|
110
|
+
- Added close event handling
|
|
111
|
+
- Cleaned up template code
|
|
112
|
+
- Improved metric title display without overflow constraints
|
|
113
|
+
|
|
114
|
+
**Filter Components**
|
|
115
|
+
|
|
116
|
+
- **FilterAssignee:**
|
|
117
|
+
- Integrated `getUserInformation` helper for consistent API calls
|
|
118
|
+
- Added `apiUpdateFunction` to all AvatarProfile instances
|
|
119
|
+
- Better workspace ID handling via SessionStorageHelper
|
|
120
|
+
- Improved user profile popups across Me, selected, and search results
|
|
121
|
+
|
|
122
|
+
**Assignee Components**
|
|
123
|
+
|
|
124
|
+
- **AssigneeGroupEditor & AssigneeGroupRenderer:**
|
|
125
|
+
- Added `getUserInformation` helper for API integration
|
|
126
|
+
- Passed `apiUpdateFunction` to AvatarProfile components
|
|
127
|
+
- Consistent user information fetching across all avatar instances
|
|
128
|
+
- Better separation of API logic
|
|
129
|
+
|
|
130
|
+
### 🔧 Technical Improvements
|
|
131
|
+
|
|
132
|
+
**Type Safety**
|
|
133
|
+
|
|
134
|
+
- Updated `MiniProfileProps` type: `apiUpdateFunction` now returns `Promise<ApiUserBasicInforResponse | null>` (was `undefined`)
|
|
135
|
+
- Better type consistency across user profile components
|
|
136
|
+
- Improved null handling
|
|
137
|
+
|
|
138
|
+
**Code Quality**
|
|
139
|
+
|
|
140
|
+
- Removed unused template code in MetricUpdateButton
|
|
141
|
+
- Cleaned up inline style constraints
|
|
142
|
+
- Better event handler naming and organization
|
|
143
|
+
- Consistent use of SessionStorageHelper for workspace context
|
|
144
|
+
|
|
145
|
+
**Developer Experience**
|
|
146
|
+
|
|
147
|
+
- Enhanced logging for tooltip lifecycle
|
|
148
|
+
- Better debugging capabilities in metric components
|
|
149
|
+
- Clearer event flow in editor components
|
|
150
|
+
|
|
151
|
+
### 📦 Version Updates
|
|
152
|
+
|
|
153
|
+
- **@arbocollab/arbo-plugin-item-table:** Updated from `0.0.120` to `0.0.121`
|
|
154
|
+
|
|
155
|
+
### Key Highlights
|
|
156
|
+
|
|
157
|
+
- ✨ **Unified User Profile Data Fetching:** All avatar components now use a consistent API update function pattern
|
|
158
|
+
- 🎯 **Better Keyboard Support:** Enhanced Escape key handling across metric editors
|
|
159
|
+
- 🔍 **Improved Tooltips:** Better lifecycle management and styling for tooltip content
|
|
160
|
+
- ⚡ **Auto-emit Metrics:** Metric inputs now automatically emit changes for smoother UX
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
5
164
|
## [0.0.120] - 2026-02-03
|
|
6
165
|
|
|
7
166
|
### 🚀 Features
|
package/README.md
CHANGED
|
@@ -180,7 +180,7 @@ import { ItemTable } from '@arbocollab/arbo-plugin-item-table';
|
|
|
180
180
|
|
|
181
181
|
## 📝 Changelog
|
|
182
182
|
|
|
183
|
-
See [CHANGELOG.md](https://cdn.jsdelivr.net/npm/@arbocollab/arbo-plugin-item-table@
|
|
183
|
+
See [CHANGELOG.md](https://cdn.jsdelivr.net/npm/@arbocollab/arbo-plugin-item-table@beta/CHANGELOG.md) for a detailed list of changes in each release.
|
|
184
184
|
|
|
185
185
|
### Latest Release: v0.0.100 (2026-01-28)
|
|
186
186
|
|