@arbocollab/arbo-plugin-item-table 1.1.72 โ 1.1.103
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 +40 -3
- package/lib/es/index.es.js +30276 -29679
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +87 -84
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,49 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.103] - 2026-06-18
|
|
4
|
+
|
|
5
|
+
### ๐ Features & Enhancements
|
|
6
|
+
|
|
7
|
+
- **Component migration:** Migrated multiple consumers from `Button` to `TessButton` across Storybook stories and workspace packages (calendar, core-table, item-table) to align with the current UI API.
|
|
8
|
+
- Updated Storybook stories for `Button`, `DisplayWrapper`, and `InputText` usage to standardize imports and rendering with `TessButton`.
|
|
9
|
+
- Added/expanded button props exposure in stories (including `href` and `actived`) to match the newer component contract.
|
|
10
|
+
- **Metrics editing flow:** Updated metric value mapping to use `input_value` where required and refined default metric scene configuration.
|
|
11
|
+
- Refined metrics grid keyboard/edit handling by removing temporary edit request hooks and noisy dev logs.
|
|
12
|
+
- Cleaned metric editor update flow to keep payload handling focused on update logic.
|
|
13
|
+
- **Table behavior updates:** Added locked-row visual handling and delayed overlay toggling in item-table to improve grid state transitions.
|
|
14
|
+
- Added `row-locked` class assignment for locked rows so state is visible in the grid layer.
|
|
15
|
+
- Gated overlay visibility updates with delayed `nextTick` handling to reduce race conditions during async reloads.
|
|
16
|
+
- **Typing updates:** Extended shared types with additional fields (`ButtonProps.href`, `AvatarProps.borderRadius`, `DataTableItemType.isLocked`) to support updated component behavior.
|
|
17
|
+
- Expanded user status typing to include `undefined` for safer downstream handling.
|
|
18
|
+
|
|
19
|
+
### ๐ง Bug Fixes
|
|
20
|
+
|
|
21
|
+
- **Calendar interactions:** Enabled click-toggle behavior for month/date picker popovers to stabilize open/close UX.
|
|
22
|
+
- Applied `toggleOnClick: true` to tippy-composable usages in both month and date-range calendar flows.
|
|
23
|
+
- Added null-safe access for year boundary calculation in month picker (`yearsList.value?.at(-1)`) to prevent edge-case failures.
|
|
24
|
+
- **Permissions:** Improved core-table cell permission checks by enforcing read-only behavior for locked/deleted data rows and mapping more fields to restrictive defaults.
|
|
25
|
+
- Added explicit permission mapping for `isLocked` and `disabled` flags to prevent unintended edits.
|
|
26
|
+
- Strengthened editable-condition checks by requiring non-locked/non-deleted row state.
|
|
27
|
+
- **Build output consistency:** Standardized core-table build output to `lib` and aligned package export injection behavior for generated artifacts.
|
|
28
|
+
- Updated library naming and output filenames (`index.js`, `index.umd.cjs`) for consistent package consumption.
|
|
29
|
+
- Removed redundant `main/module/types` fields during export injection and regenerated `exports` in a canonical format.
|
|
30
|
+
|
|
31
|
+
### ๐งน Chores & Refactoring
|
|
32
|
+
|
|
33
|
+
- **Debug cleanup:** Removed multiple temporary `console.log` traces from metrics and item-table interactions.
|
|
34
|
+
- Retained only service-level diagnostics that were intentionally introduced in `ItemService` assignable API helpers.
|
|
35
|
+
- **Package cleanup:** Normalized package export injection formatting and removed redundant top-level package fields during build post-processing.
|
|
36
|
+
- Updated dependency alignment for `@arbocollab/arbo-common-utils` in shared packages to keep versions in sync.
|
|
37
|
+
- **Version updates:** Updated package versions including dashboard (`1.1.72` โ `0.1.103`) and related workspace packages.
|
|
38
|
+
- Bumped metrics (`0.0.22` โ `0.0.24`) and core-table (`0.0.1-alpha.7` โ `0.0.4`) as part of this release batch.
|
|
39
|
+
|
|
3
40
|
## [1.1.72] - 2026-04-28
|
|
4
41
|
|
|
5
42
|
### ๐ Features & Enhancements
|
|
6
43
|
|
|
7
44
|
- **Calendar & Dates:** Replaced `DateCalendar` with `DateRangeCalendar` in `index.ts`. Enhanced `DateCalendar` and `DateInput` components with timezone support, event logging, and placeholder support. Added `auto-confirmation` and refactored conditional logic in `useDatePicker` for clear maintainability.
|
|
8
|
-
- **UI & Components:**
|
|
9
|
-
- Implemented `maxDecimalChar` prop in the `InputText` component, and supported it inside `MetricEditor` and `MetricEditorInput`.
|
|
45
|
+
- **UI & Components:**
|
|
46
|
+
- Implemented `maxDecimalChar` prop in the `InputText` component, and supported it inside `MetricEditor` and `MetricEditorInput`.
|
|
10
47
|
- Enhanced `DropdownWrapper`, `BulkUpdate`, and `ClearButton` components with toggle functionalities, new directives, and improved focus handling.
|
|
11
48
|
- Added `sceneId` to cell renderers and rating components for enhanced data handling.
|
|
12
49
|
- **Internal APIs & Data handling:** Extended `App.vue` with an event emission system for API call success and error handling. Later optimized grid cache management by adding and removing `refreshGrid` functionality.
|
|
@@ -20,7 +57,7 @@
|
|
|
20
57
|
|
|
21
58
|
- **Calendar:** Updated `tsconfig.json` mappings to properly include `MonthPicker.vue`.
|
|
22
59
|
- **Vite Config:** Directed the Vite configuration to safely build and distribute types via the new paths and `dts` plugins.
|
|
23
|
-
- **UI Integration:** Adjusted `MetricRenderer` to handle "formula" states correctly.
|
|
60
|
+
- **UI Integration:** Adjusted `MetricRenderer` to handle "formula" states correctly.
|
|
24
61
|
|
|
25
62
|
### ๐งน Chores & Refactoring
|
|
26
63
|
|