@arbocollab/arbo-plugin-item-table 0.0.187 → 0.0.188
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 +80 -0
- package/lib/es/index.es.js +9500 -9477
- 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,86 @@
|
|
|
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.188] - 2026-02-25
|
|
6
|
+
|
|
7
|
+
### ⚡ Performance Improvements
|
|
8
|
+
|
|
9
|
+
**API Optimization**
|
|
10
|
+
|
|
11
|
+
- **Increased Pagination Limit**: Changed default `per_page` from 20 to 100 in metric list fetching
|
|
12
|
+
- Reduces number of API calls for large datasets
|
|
13
|
+
- Improves initial data loading performance
|
|
14
|
+
- Better user experience with fewer loading states
|
|
15
|
+
|
|
16
|
+
**UI Rendering**
|
|
17
|
+
|
|
18
|
+
- **Dynamic Table Height Calculation**:
|
|
19
|
+
- Table now calculates its height based on parent container dimensions
|
|
20
|
+
- Uses `clientHeight` - 42px for accurate layout
|
|
21
|
+
- Implemented in `onMounted` lifecycle for proper DOM measurement
|
|
22
|
+
- Improves responsive behavior across different screen sizes
|
|
23
|
+
|
|
24
|
+
### 🎨 UI/UX Enhancements
|
|
25
|
+
|
|
26
|
+
**Table Customization Component**
|
|
27
|
+
|
|
28
|
+
- **Responsive Column Manager**:
|
|
29
|
+
- Max-height now uses CSS variable `--max-height` with dynamic value
|
|
30
|
+
- Defaults to `max(500px, 60vh)` but respects `tableHeight` prop
|
|
31
|
+
- Better adaptation to available screen space
|
|
32
|
+
- Prevents content overflow on smaller screens
|
|
33
|
+
|
|
34
|
+
- **Improved Search Experience**:
|
|
35
|
+
- Restructured template logic for better performance
|
|
36
|
+
- Added `hasSearch` computed property for cleaner conditional rendering
|
|
37
|
+
- New `filterQuery` computed property for efficient column filtering
|
|
38
|
+
- Separated search results from normal column list display
|
|
39
|
+
- "No results" message only shows when search is active
|
|
40
|
+
|
|
41
|
+
- **Cleaner Template Structure**:
|
|
42
|
+
- Removed nested v-if conditions
|
|
43
|
+
- Better separation between pinned and unpinned columns
|
|
44
|
+
- Improved readability and maintainability
|
|
45
|
+
|
|
46
|
+
**Visual Feedback**
|
|
47
|
+
|
|
48
|
+
- **Skeleton Loading**: Re-enabled skeleton loading animation (1.5s ease-in-out)
|
|
49
|
+
- Provides better visual feedback during data loading
|
|
50
|
+
- Smooth infinite animation for loading states
|
|
51
|
+
|
|
52
|
+
### 🔧 Technical Improvements
|
|
53
|
+
|
|
54
|
+
**Code Quality**
|
|
55
|
+
|
|
56
|
+
- Removed unused imports (`Item`, `createCommonLink`, `inject`)
|
|
57
|
+
- Added `nextTick` import for proper DOM timing
|
|
58
|
+
- Better use of reactive computed properties
|
|
59
|
+
- Improved type safety with explicit return types
|
|
60
|
+
|
|
61
|
+
**Component Props**
|
|
62
|
+
|
|
63
|
+
- Added `tableHeight?: string` prop to `TableCustomization` component
|
|
64
|
+
- Passed down from parent `item-table.vue` for dynamic sizing
|
|
65
|
+
- Better prop naming and documentation
|
|
66
|
+
|
|
67
|
+
**Conditional Logic**
|
|
68
|
+
|
|
69
|
+
- Replaced complex nested conditions with cleaner computed properties
|
|
70
|
+
- `hasSearch` for search state detection
|
|
71
|
+
- `filterQuery` for filtered column list
|
|
72
|
+
- Better separation of concerns
|
|
73
|
+
|
|
74
|
+
### 📦 Version Updates
|
|
75
|
+
|
|
76
|
+
- **@arbocollab/arbo-plugin-item-table**: Updated from `0.0.187` to `0.0.188`
|
|
77
|
+
|
|
78
|
+
### Key Highlights
|
|
79
|
+
|
|
80
|
+
- 🚀 **5x Faster Initial Load**: Pagination limit increased from 20 to 100 items
|
|
81
|
+
- 📐 **Better Responsiveness**: Dynamic height calculation adapts to screen size
|
|
82
|
+
- 🔍 **Smarter Search**: Improved column filtering with better performance
|
|
83
|
+
- ✨ **Visual Polish**: Re-enabled smooth skeleton loading animations
|
|
84
|
+
|
|
5
85
|
## 0.0.184 - 2026-02-25
|
|
6
86
|
|
|
7
87
|
### ✨ Features
|