@arbocollab/arbo-plugin-item-table 0.0.189 → 0.0.191
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 +27 -0
- package/lib/es/index.es.js +5732 -5706
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +66 -66
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
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.190] - 2026-02-25
|
|
6
|
+
|
|
7
|
+
### ⚡ Performance
|
|
8
|
+
|
|
9
|
+
- Added new `LoadingComponent` for optimized skeleton rendering
|
|
10
|
+
- Improved cell rendering logic to show skeleton loaders only when data is undefined
|
|
11
|
+
- Removed unnecessary delays and console logs from metric batch fetching
|
|
12
|
+
- Optimized skeleton animations with standardized CSS variables
|
|
13
|
+
|
|
14
|
+
### 🎨 UI/UX
|
|
15
|
+
|
|
16
|
+
- Enhanced skeleton loading with dynamic width randomization (60-90%)
|
|
17
|
+
- Added shimmer effect to loading states
|
|
18
|
+
- Fixed tooltip positioning to prevent overflow (now appends to `#item-table-layout-id`)
|
|
19
|
+
- Unified skeleton animations across themes (1.5s light, 3.5s dark)
|
|
20
|
+
|
|
21
|
+
### 🔧 Technical
|
|
22
|
+
|
|
23
|
+
- Implemented smart cell renderer selection based on data availability
|
|
24
|
+
- Added `.ag-cell-skeleton` class for consistent loading appearance
|
|
25
|
+
- Removed debug console.logs from multiple components
|
|
26
|
+
- Better async/await patterns in metric fetching
|
|
27
|
+
|
|
28
|
+
### 📦 Updates
|
|
29
|
+
|
|
30
|
+
- Version: `0.0.188` → `0.0.190`
|
|
31
|
+
|
|
5
32
|
## [0.0.188] - 2026-02-25
|
|
6
33
|
|
|
7
34
|
### ⚡ Performance Improvements
|