@arbocollab/arbo-plugin-item-table 0.0.134 → 0.0.136
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 +97 -0
- package/lib/es/index.es.js +2178 -2171
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +30 -30
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,103 @@
|
|
|
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.136] - 2026-02-05
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
**RatingComponent - Enhanced Hover & State Handling**
|
|
10
|
+
|
|
11
|
+
- **Improved Hover Behavior:**
|
|
12
|
+
- Added `isHoverOnIcon` ref to track hover state
|
|
13
|
+
- Implemented `handleMouseEnter()` and `handleMouseLeave()` methods
|
|
14
|
+
- Enhanced `isFilled()` logic to respect hover state
|
|
15
|
+
- Prevents filled stars from showing during hover interaction
|
|
16
|
+
|
|
17
|
+
- **Better Visual Feedback:**
|
|
18
|
+
- Hover effect now correctly overrides filled state
|
|
19
|
+
- Improved hover color handling with CSS specificity
|
|
20
|
+
- Added separate hover state for filled items
|
|
21
|
+
|
|
22
|
+
- **CSS Enhancements:**
|
|
23
|
+
- Changed display from `flex` to `grid` for better alignment
|
|
24
|
+
- Removed unused `temporary-fill` class
|
|
25
|
+
- Enhanced color transitions for smoother visual feedback
|
|
26
|
+
- Fixed hover state priority with proper CSS selectors
|
|
27
|
+
|
|
28
|
+
- **State Management:**
|
|
29
|
+
- Cleaner separation between filled and hover states
|
|
30
|
+
- More predictable behavior when interacting with rating stars
|
|
31
|
+
- Better disabled/readOnly state handling in hover scenarios
|
|
32
|
+
|
|
33
|
+
### 🔧 Code Quality
|
|
34
|
+
|
|
35
|
+
- Removed commented-out focus styles
|
|
36
|
+
- Improved CSS specificity for state combinations
|
|
37
|
+
- Added `!important` flags where needed for disabled state consistency
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## [0.0.135] - 2026-02-05
|
|
42
|
+
|
|
43
|
+
### 🚀 Features
|
|
44
|
+
|
|
45
|
+
**Filter System Enhancement**
|
|
46
|
+
|
|
47
|
+
- **New Parameter: `preflight_status`**
|
|
48
|
+
- Added `preflight_status` parameter to ItemService and filter logic
|
|
49
|
+
- Replaces `status_eq` as the default filter parameter
|
|
50
|
+
- Default value: `'1'` (active items only)
|
|
51
|
+
|
|
52
|
+
**FilterBox Component**
|
|
53
|
+
|
|
54
|
+
- **Improved Archive Status Logic:**
|
|
55
|
+
- No selection: Uses `preflight_status: '1'` (active items only)
|
|
56
|
+
- Single selection (archived): `status_eq: '0'`
|
|
57
|
+
- Single selection (active): `status_eq: '1'`
|
|
58
|
+
- Both selected: `status_eq: '0,1'` (all items)
|
|
59
|
+
- Updated clear filter action to use `preflight_status: '1'` instead of `status_eq`
|
|
60
|
+
|
|
61
|
+
**ItemTable Component**
|
|
62
|
+
|
|
63
|
+
- Changed default filter from `status_eq: '1'` to `preflight_status: '1'`
|
|
64
|
+
- Better alignment with new filtering system
|
|
65
|
+
|
|
66
|
+
**ItemService API**
|
|
67
|
+
|
|
68
|
+
- Added `preflight_status` parameter support in `getItemList()` method
|
|
69
|
+
- Maintains backward compatibility with existing `status_eq` parameter
|
|
70
|
+
|
|
71
|
+
### 🔧 Code Quality
|
|
72
|
+
|
|
73
|
+
- Removed unused `node:console` import from item-table.vue
|
|
74
|
+
- Improved filter parameter naming consistency
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## [0.0.134] - 2026-02-05
|
|
79
|
+
|
|
80
|
+
### 🚀 Features
|
|
81
|
+
|
|
82
|
+
**Tooltip Directive - Style Injection**
|
|
83
|
+
|
|
84
|
+
- **Automatic Style Injection:**
|
|
85
|
+
- Styles are now automatically injected into `<head>` on directive initialization
|
|
86
|
+
- Uses unique ID `'arbo-tooltip-styles'` to prevent duplicate injections
|
|
87
|
+
- Checks for existing styles before injecting
|
|
88
|
+
- Injected once globally, not per tooltip instance
|
|
89
|
+
|
|
90
|
+
**Tooltip Themes:**
|
|
91
|
+
|
|
92
|
+
- All themes use CSS custom properties for dynamic theming
|
|
93
|
+
- Themes included: `arbo`, `warning`, `error`, `light`
|
|
94
|
+
- Arrow colors automatically match tooltip background for all placements
|
|
95
|
+
|
|
96
|
+
**Implementation Details:**
|
|
97
|
+
|
|
98
|
+
- `injectTooltipStyles()` function runs in `beforeMount` directive hook
|
|
99
|
+
- Pure CSS converted from SCSS
|
|
100
|
+
- Global application of styles ensures consistent tooltip appearance
|
|
101
|
+
|
|
5
102
|
## [0.0.133] - 2026-02-05
|
|
6
103
|
|
|
7
104
|
### 🐛 Bug Fixes
|