@arbocollab/arbo-plugin-item-table 1.1.103 โ 1.1.108
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 +29 -0
- package/lib/es/index.es.js +13860 -13989
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +69 -69
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.108] - 2026-07-10
|
|
4
|
+
|
|
5
|
+
### ๐ Features & Enhancements
|
|
6
|
+
|
|
7
|
+
- **Dynamic error message fetching:** Replaced static bundled error messages with a runtime-fetched approach in `setupErrorHelper.ts`.
|
|
8
|
+
- Error messages are now fetched from a remote URL stored in the `account.tessr_i18n_file_version_url` cookie, enabling live updates without a rebuild.
|
|
9
|
+
- Added `getCookie` / `waitForCookie` helpers with retry logic (10 retries, 300ms delay) to handle cookie availability timing on page load.
|
|
10
|
+
- Added `fetchEnErrorMessages` and `buildMessages` async helpers to compose the i18n message tree at runtime.
|
|
11
|
+
- Enabled `formatFallbackMessages: true` on the i18n instance for better fallback handling.
|
|
12
|
+
- Exported a `dummyError` constant (`E-0-GEN-2 / data_locked`) for use in testing and dev tooling.
|
|
13
|
+
|
|
14
|
+
- **Lock UX improvements in `SceneNameEditor`:** Enhanced the locked-row indicator to reflect edit permissions.
|
|
15
|
+
- Added `canEdit` computed property based on `data.permissions.has_edit_permission`.
|
|
16
|
+
- Lock icon color now changes to `#a6a6a6` (lighter) when the user has edit rights, vs `#232323` when fully locked.
|
|
17
|
+
- Lock tooltip now shows a contextual message โ _"Locked โ You can still edit, or unlock by changing the status from completed"_ โ when the user has edit permission, and plain _"Locked"_ otherwise.
|
|
18
|
+
|
|
19
|
+
- **`isLocked` data source corrected in `dataConverter.ts`:** The `isLocked` field now reads from `template_flow_status.is_lock_item` instead of `property.is_locked` for accurate lock state mapping.
|
|
20
|
+
|
|
21
|
+
- **Permission filter added to `ItemService`:** The assignable-status API call now includes `permission: '1,2'` to restrict results to items the user has relevant permissions for.
|
|
22
|
+
|
|
23
|
+
### ๐ง Bug Fixes & Refinements
|
|
24
|
+
|
|
25
|
+
- **UI package exports standardized:** Refactored `packages/ui/package.json` exports to include explicit `types` and `module` paths for better compatibility with various bundler resolution strategies.
|
|
26
|
+
|
|
27
|
+
### ๐งน Chores & Refactoring
|
|
28
|
+
|
|
29
|
+
- **Icon component styles refactored:** Cleaned up `Icon.vue` styles for consistency; updated `EmptyData.vue` to use a static icon source instead of a dynamic reference.
|
|
30
|
+
- **Version updates:** Bumped dashboard (`0.1.103` โ `1.1.108`), UI package, base-components, and helpers.
|
|
31
|
+
|
|
3
32
|
## [0.1.103] - 2026-06-18
|
|
4
33
|
|
|
5
34
|
### ๐ Features & Enhancements
|