@arbocollab/arbo-plugin-item-table 0.1.108 โ†’ 0.1.110

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 CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.109] - 2026-07-10
4
+
5
+ - **Fix issue with new scene name length**: fix issue with checking submit error: allow up to 255 chars input
6
+ ## [1.1.109] - 2026-07-10
7
+
8
+ - **Fix issue with tooltip** Fix an issue for update /completed date label, tooltip was not displayed by hover interaction because of bypassOverflowCheck is off
9
+
10
+ ## [1.1.108] - 2026-07-10
11
+
12
+ ### ๐Ÿš€ Features & Enhancements
13
+
14
+ - **Dynamic error message fetching:** Replaced static bundled error messages with a runtime-fetched approach in `setupErrorHelper.ts`.
15
+ - 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.
16
+ - Added `getCookie` / `waitForCookie` helpers with retry logic (10 retries, 300ms delay) to handle cookie availability timing on page load.
17
+ - Added `fetchEnErrorMessages` and `buildMessages` async helpers to compose the i18n message tree at runtime.
18
+ - Enabled `formatFallbackMessages: true` on the i18n instance for better fallback handling.
19
+ - Exported a `dummyError` constant (`E-0-GEN-2 / data_locked`) for use in testing and dev tooling.
20
+
21
+ - **Lock UX improvements in `SceneNameEditor`:** Enhanced the locked-row indicator to reflect edit permissions.
22
+ - Added `canEdit` computed property based on `data.permissions.has_edit_permission`.
23
+ - Lock icon color now changes to `#a6a6a6` (lighter) when the user has edit rights, vs `#232323` when fully locked.
24
+ - 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.
25
+
26
+ - **`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.
27
+
28
+ - **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.
29
+
30
+ ### ๐Ÿ”ง Bug Fixes & Refinements
31
+
32
+ - **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.
33
+
34
+ ### ๐Ÿงน Chores & Refactoring
35
+
36
+ - **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.
37
+ - **Version updates:** Bumped dashboard (`0.1.103` โ†’ `1.1.108`), UI package, base-components, and helpers.
38
+
3
39
  ## [0.1.103] - 2026-06-18
4
40
 
5
41
  ### ๐Ÿš€ Features & Enhancements