@arbocollab/arbo-plugin-item-table 1.1.51 โ 1.1.72
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 +135 -0
- package/README.md +0 -0
- package/lib/csv.svg +0 -0
- package/lib/es/index.es.js +65717 -64964
- package/lib/favicon.ico +0 -0
- package/lib/style.css +1 -1
- package/lib/sw.js +0 -0
- package/lib/umd/index.umd.js +80 -80
- package/lib/xlsx.svg +0 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,140 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.72] - 2026-04-28
|
|
4
|
+
|
|
5
|
+
### ๐ Features & Enhancements
|
|
6
|
+
|
|
7
|
+
- **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`.
|
|
10
|
+
- Enhanced `DropdownWrapper`, `BulkUpdate`, and `ClearButton` components with toggle functionalities, new directives, and improved focus handling.
|
|
11
|
+
- Added `sceneId` to cell renderers and rating components for enhanced data handling.
|
|
12
|
+
- **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.
|
|
13
|
+
- **Build & Configuration:**
|
|
14
|
+
- Introduced a new `vite-config-custom` package with initial configuration.
|
|
15
|
+
- Added a `shared-scripts` module containing a `build-injector.sh` and reset scripts for safer `package.json` manipulations during CI/CD.
|
|
16
|
+
- Extensively configured `exports` fields across multiple `package.json` files for improved module resolution distribution.
|
|
17
|
+
- Renamed internal packages safely (e.g., `api-services` to `@arbocollab/api-services`).
|
|
18
|
+
|
|
19
|
+
### ๐ง Bug Fixes
|
|
20
|
+
|
|
21
|
+
- **Calendar:** Updated `tsconfig.json` mappings to properly include `MonthPicker.vue`.
|
|
22
|
+
- **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.
|
|
24
|
+
|
|
25
|
+
### ๐งน Chores & Refactoring
|
|
26
|
+
|
|
27
|
+
- **Metric Services:** Repeatedly refactored `MetricService`, `MetricRating.vue`, `RatingRenderer.vue`, and `MetricRenderer` layout mapping for improved readability and functionality.
|
|
28
|
+
- **Dependencies:** Cleaned up unused local resources (like Tippy.js CSS imports inside `Calendar.vue` and numerous `console.log` artifacts). Integrated `lodash-es` types and synced all monorepo version increments inside the `pnpm-lock.yaml`.
|
|
29
|
+
- **Versioning:** Bumped versions repeatedly across standard workspaces and the component library.
|
|
30
|
+
|
|
31
|
+
## [0.1.63] - 2026-03-30
|
|
32
|
+
|
|
33
|
+
### ๐ Features & Enhancements
|
|
34
|
+
|
|
35
|
+
- **Month selection components added:** Introduced `MonthPicker` and `MonthCalendar`, exported them from the calendar package, and added Storybook stories for both components.
|
|
36
|
+
- **Helpers package introduced:** Added a new `@arbocollab/helpers` workspace package with DOM helpers, date/time utilities, color helpers, link generation, mapping helpers, session storage helpers, tooltip helpers, and Vue mounting helpers.
|
|
37
|
+
|
|
38
|
+
### ๐งฑ Architecture & Maintainability
|
|
39
|
+
|
|
40
|
+
- **Shared types expanded:** Added `MonthPickerProps` and calendar-related types to the shared types package and re-exported them from the main type entrypoints.
|
|
41
|
+
- **Import paths standardized:** Refactored packages to use `@arbocollab/types` instead of the older `types` alias.
|
|
42
|
+
- **Code structure cleanup:** Applied follow-up readability refactors across UI, calendar, api-services, core-table, and item-table packages.
|
|
43
|
+
- **Keyboard navigation cleanup:** Removed the older `useKeyboardNavigation` composable from the UI package as part of the refactor path.
|
|
44
|
+
|
|
45
|
+
### ๐งช Tooling & Dependencies
|
|
46
|
+
|
|
47
|
+
- **Workspace tooling updated:** Added test and build support for the new helpers and calendar-related workspace changes.
|
|
48
|
+
- **Lockfile refreshed:** Updated `pnpm-lock.yaml` to reflect the new packages and supporting dependencies.
|
|
49
|
+
|
|
50
|
+
### ๐ฆ Version Updates
|
|
51
|
+
|
|
52
|
+
- **Version:** `0.1.62` โ `0.1.63`
|
|
53
|
+
|
|
54
|
+
## [0.1.62] - 2026-03-25
|
|
55
|
+
|
|
56
|
+
### ๐ Features & Enhancements
|
|
57
|
+
|
|
58
|
+
- **Calendar package introduced:** Added a standalone `@arbocollab/calendar` package with `Calendar`, `CalendarNavigationControl`, `DateInput`, `MainCalendar`, date-picker composables, date utilities, and package exports.
|
|
59
|
+
- **Storybook coverage added:** Added a Storybook story for the calendar package.
|
|
60
|
+
|
|
61
|
+
### ๐งช Tooling & Dependencies
|
|
62
|
+
|
|
63
|
+
- **Calendar package tooling:** Added package-level Vite, ESLint, Cypress, and TypeScript configuration for the new calendar workspace package.
|
|
64
|
+
|
|
65
|
+
### ๐ฆ Version Updates
|
|
66
|
+
|
|
67
|
+
- **Version:** `0.1.61` โ `0.1.62`
|
|
68
|
+
|
|
69
|
+
## [0.1.61] - 2026-03-25
|
|
70
|
+
|
|
71
|
+
### ๐จ UI/UX Improvements
|
|
72
|
+
|
|
73
|
+
- **More-option interactions refined:** Improved focus, blur, rename, and refocus flows around more-options editors and scene name editing.
|
|
74
|
+
- **Table interaction cleanup:** Removed noisy logs in several metric and item-table interaction paths while tightening focus handling.
|
|
75
|
+
|
|
76
|
+
### ๐งฑ Architecture & Maintainability
|
|
77
|
+
|
|
78
|
+
- **Action handling improved:** Refined scene action behavior and supporting editor integration for more consistent interaction flow.
|
|
79
|
+
|
|
80
|
+
### ๐ฆ Version Updates
|
|
81
|
+
|
|
82
|
+
- **Version:** `0.1.59` โ `0.1.61`
|
|
83
|
+
|
|
84
|
+
## [0.1.59] - 2026-03-24
|
|
85
|
+
|
|
86
|
+
### ๐ Features & Enhancements
|
|
87
|
+
|
|
88
|
+
- **Metric presentation improved:** Added `MetricCellRenderer` to improve metric label display and type indicators.
|
|
89
|
+
|
|
90
|
+
### ๐จ UI/UX Improvements
|
|
91
|
+
|
|
92
|
+
- **Display wrapper styling refined:** Updated `DisplayWrapper` styling to use configurable background color behavior.
|
|
93
|
+
|
|
94
|
+
### ๐ฆ Version Updates
|
|
95
|
+
|
|
96
|
+
- **Version:** `0.1.58` โ `0.1.59`
|
|
97
|
+
|
|
98
|
+
## [0.1.58] - 2026-03-24
|
|
99
|
+
|
|
100
|
+
### ๐ Features & Enhancements
|
|
101
|
+
|
|
102
|
+
- **Metrics functionality expanded:** Enhanced the metrics app with AG Grid integration, infinite loading behavior, metric editing flows, and a dedicated `MetricService`.
|
|
103
|
+
- **Renderer and editor support improved:** Expanded wrapper and renderer behavior across core-table and UI components to support the metrics workflow.
|
|
104
|
+
|
|
105
|
+
### ๐จ UI/UX Improvements
|
|
106
|
+
|
|
107
|
+
- **Metric rendering refined:** Improved metric and rating presentation in table cells and related dropdown flows.
|
|
108
|
+
|
|
109
|
+
### ๐ฆ Version Updates
|
|
110
|
+
|
|
111
|
+
- **Version:** `0.1.53` โ `0.1.58`
|
|
112
|
+
|
|
113
|
+
## [0.1.53] - 2026-03-20
|
|
114
|
+
|
|
115
|
+
### ๐ Features & Enhancements
|
|
116
|
+
|
|
117
|
+
- **Metrics app added:** Introduced the `apps/metrics` Vue 3 application with its own Vite, TypeScript, and build configuration.
|
|
118
|
+
- **Grid demo scaffolding added:** Added initial metric table integration, app bootstrap files, and development configuration.
|
|
119
|
+
|
|
120
|
+
### ๐ฆ Version Updates
|
|
121
|
+
|
|
122
|
+
- **Version:** `0.1.52` โ `0.1.53`
|
|
123
|
+
|
|
124
|
+
## [0.1.52] - 2026-03-19
|
|
125
|
+
|
|
126
|
+
### ๐ Features & Enhancements
|
|
127
|
+
|
|
128
|
+
- **Event handling improved:** Refined button, list item, and dropdown event contracts for better click, escape, and select behavior.
|
|
129
|
+
|
|
130
|
+
### ๐จ UI/UX Improvements
|
|
131
|
+
|
|
132
|
+
- **Component styling refined:** Adjusted styling across buttons, filters, list items, and drag-and-drop related components for more consistent interaction feedback.
|
|
133
|
+
|
|
134
|
+
### ๐ฆ Version Updates
|
|
135
|
+
|
|
136
|
+
- **Version:** `0.1.51-alpha.0` โ `0.1.52`
|
|
137
|
+
|
|
3
138
|
## [0.1.15] - 2026-03-04
|
|
4
139
|
|
|
5
140
|
### ๐ Features & Enhancements
|
package/README.md
CHANGED
|
File without changes
|
package/lib/csv.svg
CHANGED
|
File without changes
|