@arbocollab/arbo-plugin-item-table 0.0.136 → 0.0.137
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 +62 -0
- package/lib/es/index.es.js +10636 -10593
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +63 -63
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,68 @@
|
|
|
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.137] - 2026-02-05
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
**Select All Functionality - Complete Implementation**
|
|
10
|
+
|
|
11
|
+
- **BulkUpdate Component:**
|
|
12
|
+
- Added "Select All" button when partial selection meets criteria
|
|
13
|
+
- Button appears when:
|
|
14
|
+
- Selection is indeterminate (some items selected)
|
|
15
|
+
- Total rows exceed selected count
|
|
16
|
+
- All visible rows are selected
|
|
17
|
+
- Enhanced UI layout with fixed width (350px) for better alignment
|
|
18
|
+
- Improved entity name display with tooltip support
|
|
19
|
+
- Truncated long entity names with ellipsis (max-width: 225px for "All in", 100px for "Select all")
|
|
20
|
+
- Added `totalRows` and `visibleRows` props for selection logic
|
|
21
|
+
- Emits `selectAll` event to trigger full selection
|
|
22
|
+
|
|
23
|
+
- **State Management:**
|
|
24
|
+
- Moved `selectionStatus` from local component state to `bulkUpdateStore`
|
|
25
|
+
- Centralized selection state management across components
|
|
26
|
+
- Added `handelSelectAll()` action to bulk update store
|
|
27
|
+
- Improved state consistency between HeaderCheckbox and BulkUpdate components
|
|
28
|
+
|
|
29
|
+
- **HeaderCheckbox Component:**
|
|
30
|
+
- Refactored to use shared `selectionStatus` from store
|
|
31
|
+
- Removed local `currentState` ref in favor of global state
|
|
32
|
+
- Better synchronization with bulk update operations
|
|
33
|
+
- Consistent selection state across all components
|
|
34
|
+
|
|
35
|
+
- **ItemTable Integration:**
|
|
36
|
+
- Added `handleSelectAll()` method to useItemTable composable
|
|
37
|
+
- Exposed `isSelectAll` ref for tracking select all state
|
|
38
|
+
- Wired up `@select-all` event handler
|
|
39
|
+
- Passed `totalRows` and `visibleRows` to BulkUpdate component
|
|
40
|
+
|
|
41
|
+
### 🎨 UI/UX Improvements
|
|
42
|
+
|
|
43
|
+
- **BulkUpdate Component:**
|
|
44
|
+
- Better text wrapping with `line-height: 14px`
|
|
45
|
+
- Flexbox alignment for selected count display
|
|
46
|
+
- Improved spacing and visual hierarchy
|
|
47
|
+
- Entity name tooltip for long names
|
|
48
|
+
|
|
49
|
+
- **MetricBulkItem:**
|
|
50
|
+
- Moved padding from `.metric-item` to `.metric-label` for better spacing
|
|
51
|
+
- Improved click target area for metric items
|
|
52
|
+
|
|
53
|
+
### 🔧 Code Quality
|
|
54
|
+
|
|
55
|
+
- Removed commented test code for entity name
|
|
56
|
+
- Better type safety with `UseItemTableReturn` interface
|
|
57
|
+
- Improved component organization and state management
|
|
58
|
+
- Consistent event naming conventions
|
|
59
|
+
|
|
60
|
+
### 📝 Type Updates
|
|
61
|
+
|
|
62
|
+
- Added `isSelectAll` and `handleSelectAll` to `UseItemTableReturn` interface
|
|
63
|
+
- Enhanced `BulkProps` with `totalRows` and `visibleRows` properties
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
5
67
|
## [0.0.136] - 2026-02-05
|
|
6
68
|
|
|
7
69
|
### 🚀 Features
|