@arbocollab/arbo-plugin-item-table 0.0.121 → 0.0.124

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,104 @@
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.124] - 2026-02-04
6
+
7
+ ### 🚀 Features
8
+
9
+ **Filter Box Enhancements**
10
+
11
+ - Improved visual design with dynamic padding, borders, and hover effects for active filters
12
+ - Updated archive status handling: default to empty array, simplified counting, and better parameter logic for single/both/none selections
13
+ - Enhanced "Clear All" behavior: truly clears filters while maintaining active items view (status_eq: '1')
14
+
15
+ **Filter Archive Status Component**
16
+
17
+ - Changed default state to empty array, updated reset() to clear selection
18
+ - Added animated chevron icons and improved display labels
19
+
20
+ **Filter Status & Assignee Components**
21
+
22
+ - Added animated chevron icons for consistent dropdown interactions
23
+ - Refined layouts and removed unnecessary options for streamlined UX
24
+
25
+ **Global Style Improvements**
26
+
27
+ - Introduced .icon-up class with 180-degree rotation animation for dropdown chevrons
28
+
29
+ ### 🔧 Technical Improvements
30
+
31
+ - Removed DEFAULT_STATE constant for cleaner state management
32
+ - Unified dropdown animations and improved clear vs. reset distinctions
33
+
34
+ ### 📦 Version Updates
35
+
36
+ - **@arbocollab/arbo-plugin-item-table:** Updated from `0.0.123` to `0.0.124`
37
+
38
+ ### Key Highlights
39
+
40
+ - 🎨 **Enhanced Filter UI:** Better visuals, animations, and predictable behavior
41
+ - 🔄 **Improved Archive Handling:** Flexible status filtering with sensible defaults
42
+ - ⚡ **Cleaner Code:** Removed constants and unified interactions
43
+
44
+ ---
45
+
46
+ ## [0.0.122] - 2026-02-04
47
+
48
+ ### 🚀 Features
49
+
50
+ **Filter System Enhancements**
51
+
52
+ - **FilterBox Improvements:**
53
+ - Added default filter state: status_eq: '1' (active items only)
54
+ - Improved "Clear All" behavior: now resets to default active status instead of clearing completely
55
+ - Enhanced filter count logic: excludes default archive status from active filter count
56
+ - Better state management with DEFAULT_STATE constant
57
+ - Improved revert behavior: falls back to default state when no cache exists
58
+
59
+ - **FilterArchiveStatus Component:**
60
+ - Added reset() method to restore default state ('active')
61
+ - Changed default selected value from empty to ['active']
62
+ - Better distinction between clear() (removes all) and reset() (restores default)
63
+ - Improved initial state handling
64
+
65
+ - **Item Table Integration:**
66
+ - Set default basic filter to show active items only: { status_eq: '1' }
67
+ - Better alignment with filter system defaults
68
+ - Improved initial data loading with sensible defaults
69
+
70
+ ### 🔧 Technical Improvements
71
+
72
+ **Filter State Management**
73
+
74
+ - Consistent default state across all filter components
75
+ - Better handling of archive status in filter count calculations
76
+ - Improved cache and state synchronization
77
+ - Clearer separation between clearing and resetting filters
78
+
79
+ **Code Quality**
80
+
81
+ - Removed unused template code in Item Table component
82
+ - Added DEFAULT_STATE constant for better maintainability
83
+ - Improved method naming with reset() vs clear() distinction
84
+
85
+ **User Experience**
86
+
87
+ - Users now see active (non-archived) items by default
88
+ - "Clear All" maintains sensible defaults instead of showing all items
89
+ - More predictable filter behavior across the application
90
+
91
+ ### 📦 Version Updates
92
+
93
+ - **@arbocollab/arbo-plugin-item-table:** Updated from `0.0.121` to `0.0.122`
94
+
95
+ ### Key Highlights
96
+
97
+ - 🎯 **Smart Default Filters:** Active items shown by default with proper state management
98
+ - 🔄 **Better Reset Behavior:** Clear All now resets to sensible defaults instead of removing all filters
99
+ - 📊 **Improved Filter Counting:** Default archive status no longer counted as an active filter
100
+
101
+ ---
102
+
5
103
  ## [0.0.121] - 2026-02-04
6
104
 
7
105
  ### 🚀 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@0.0.110/CHANGELOG.md) for a detailed list of changes in each release.
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