@arbocollab/arbo-plugin-item-table 0.0.121 → 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 CHANGED
@@ -2,6 +2,63 @@
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
+
5
62
  ## [0.0.121] - 2026-02-04
6
63
 
7
64
  ### 🚀 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