@arbocollab/arbo-plugin-item-table 0.0.135 → 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 +98 -0
- package/lib/es/index.es.js +12134 -12086
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +64 -64
- package/package.json +1 -1
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.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
|
+
|
|
67
|
+
## [0.0.136] - 2026-02-05
|
|
68
|
+
|
|
69
|
+
### 🚀 Features
|
|
70
|
+
|
|
71
|
+
**RatingComponent - Enhanced Hover & State Handling**
|
|
72
|
+
|
|
73
|
+
- **Improved Hover Behavior:**
|
|
74
|
+
- Added `isHoverOnIcon` ref to track hover state
|
|
75
|
+
- Implemented `handleMouseEnter()` and `handleMouseLeave()` methods
|
|
76
|
+
- Enhanced `isFilled()` logic to respect hover state
|
|
77
|
+
- Prevents filled stars from showing during hover interaction
|
|
78
|
+
|
|
79
|
+
- **Better Visual Feedback:**
|
|
80
|
+
- Hover effect now correctly overrides filled state
|
|
81
|
+
- Improved hover color handling with CSS specificity
|
|
82
|
+
- Added separate hover state for filled items
|
|
83
|
+
|
|
84
|
+
- **CSS Enhancements:**
|
|
85
|
+
- Changed display from `flex` to `grid` for better alignment
|
|
86
|
+
- Removed unused `temporary-fill` class
|
|
87
|
+
- Enhanced color transitions for smoother visual feedback
|
|
88
|
+
- Fixed hover state priority with proper CSS selectors
|
|
89
|
+
|
|
90
|
+
- **State Management:**
|
|
91
|
+
- Cleaner separation between filled and hover states
|
|
92
|
+
- More predictable behavior when interacting with rating stars
|
|
93
|
+
- Better disabled/readOnly state handling in hover scenarios
|
|
94
|
+
|
|
95
|
+
### 🔧 Code Quality
|
|
96
|
+
|
|
97
|
+
- Removed commented-out focus styles
|
|
98
|
+
- Improved CSS specificity for state combinations
|
|
99
|
+
- Added `!important` flags where needed for disabled state consistency
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
5
103
|
## [0.0.135] - 2026-02-05
|
|
6
104
|
|
|
7
105
|
### 🚀 Features
|