@arbocollab/arbo-plugin-item-table 0.1.2 → 0.1.4
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 +56 -1
- package/lib/es/index.es.js +12167 -12121
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +67 -67
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,61 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## [0.1.4] - 2026-03-03
|
|
4
|
+
|
|
5
|
+
### 🚀 Features & Enhancements
|
|
6
|
+
|
|
7
|
+
**HeaderSorting Component**
|
|
8
|
+
|
|
9
|
+
- **Metric Type Handling:** Enhanced `HeaderSorting` component with improved metric type detection and display
|
|
10
|
+
- Added proper metric type checking for accurate icon and label display
|
|
11
|
+
- Improved visual indicators for different metric types (Woohoo, Point, etc.)
|
|
12
|
+
- Better integration with metric metadata in column definitions
|
|
13
|
+
- Fixed metric type detection logic in header rendering
|
|
14
|
+
|
|
15
|
+
### 📦 Version Updates
|
|
16
|
+
|
|
17
|
+
- **Version:** `0.1.3` → `0.1.4`
|
|
18
|
+
- Updated package.json with new version
|
|
19
|
+
|
|
20
|
+
### 🚀 Features & Enhancements
|
|
21
|
+
|
|
22
|
+
- **Keyboard Navigation:**
|
|
23
|
+
- Introduced `useKeyboardNavigation` composable for improved keyboard accessibility in dropdowns.
|
|
24
|
+
- Enhanced `ButtonDropdown` with full keyboard support (Arrows, Enter, Escape).
|
|
25
|
+
- **Focus Management:**
|
|
26
|
+
- Implemented global focus tracking in the main item table to manage element focus states.
|
|
27
|
+
- Added `data-tab-index` attributes to primary UI controls (`New` button, `Filter`, `Search`, `Refresh`, `Columns`) for a logical tab order.
|
|
28
|
+
- **Styling & UI Refinements:**
|
|
29
|
+
- Standardized checkbox styles across `Checkbox.vue` and `HeaderCheckbox.vue` to match the design spec (default, hover, disabled, checked states).
|
|
30
|
+
- Improved `DisplayWrapper` grid calculation for more robust prefix/suffix element handling.
|
|
31
|
+
- Refined `InputText` and `SearchBox` component styles for better alignment and icon presentation.
|
|
32
|
+
- Enhanced `FilterBox` and `FilterAssignee` UI for better visibility and interaction on hover/focus.
|
|
33
|
+
|
|
34
|
+
### 🔧 Technical Improvements
|
|
35
|
+
|
|
36
|
+
- **Code Quality:** Removed unused styles and console logs from `AgTable.vue` and `CellFactory.ts`.
|
|
37
|
+
- **Component Refactoring:** Refactored multiple components to improve styling, add accessibility attributes, and enhance keyboard interaction.
|
|
38
|
+
|
|
39
|
+
## [0.1.2] - 2026-03-02
|
|
40
|
+
|
|
41
|
+
### ⚡ Performance & UX
|
|
42
|
+
|
|
43
|
+
- **Tooltip Responsiveness:**
|
|
44
|
+
- Reduced the default tooltip delay from `1000ms` to `300ms` across the application.
|
|
45
|
+
- This change affects the main `tooltipDirective`, `userProfileDirective`, `ListItem`, and `TippySingleton` helper.
|
|
46
|
+
- Provides faster and more responsive feedback on hover.
|
|
47
|
+
|
|
48
|
+
## [0.1.1] - 2026-02-27
|
|
49
|
+
|
|
50
|
+
### 🔧 Code Quality
|
|
51
|
+
|
|
52
|
+
- **Cleanup:** Removed various `console.log` statements from several components to clean up the console output. Components cleaned include:
|
|
53
|
+
- `CellFactory.ts`
|
|
54
|
+
- `CreateNewScene.vue`
|
|
55
|
+
- `AssigneeGroupRenderer.vue`
|
|
56
|
+
- `AddNewAssignee.vue`
|
|
57
|
+
- `AddNewStatus.vue`
|
|
58
|
+
- `HeaderWrapper.vue`
|
|
4
59
|
|
|
5
60
|
## [1.0.203] - 2026-02-27 (Live)
|
|
6
61
|
|