@arbocollab/arbo-plugin-item-table 1.1.103 โ 1.1.106
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 +28 -0
- package/lib/es/index.es.js +13817 -13874
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +72 -72
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.106] - 2026-07-09
|
|
4
|
+
|
|
5
|
+
### ๐ Features & Enhancements
|
|
6
|
+
|
|
7
|
+
- **Permission-aware lock state in `SceneNameEditor`:** Added `canEdit` computed property derived from `permissions.has_edit_permission` on row data.
|
|
8
|
+
- Lock icon 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.
|
|
9
|
+
- Lock icon color is visually differentiated: lighter (`#a6a6a6`) for users with edit access, darker (`#232323`) for read-only users.
|
|
10
|
+
- **Improved `isLocked` data mapping:** Updated `dataConverter.ts` to derive the locked state from `template_flow_status.is_lock_item` instead of `property.is_locked`, aligning with the correct API field.
|
|
11
|
+
- **Permission filter in `ItemService`:** Added `permission: '1,2'` query parameter to the assignable items fetch to filter results by edit/view permissions.
|
|
12
|
+
|
|
13
|
+
### ๐ง Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **`LabelEditor` โ removed unintended input sanitization:** The `sanitizeInput` call was removed from the save handler so raw input values are saved as entered, preventing unwanted transformations of label text.
|
|
16
|
+
- **`EmptyData` โ stabilized empty-state icon:** Hardcoded the icon source to `'NoDataGeneral'` to ensure a consistent visual regardless of the dynamic `icon` prop value.
|
|
17
|
+
|
|
18
|
+
### ๐งน Chores & Refactoring
|
|
19
|
+
|
|
20
|
+
- **`Icon` component style refactor:** Migrated from CSS Modules to scoped SCSS.
|
|
21
|
+
- Replaced `v-bind` CSS size binding with a CSS custom property (`--icon-size`) set via inline style.
|
|
22
|
+
- Used `:deep(svg)` selector inside scoped styles for proper SVG targeting.
|
|
23
|
+
- Color inheritance now driven by `props.color` inline style binding instead of a computed style object.
|
|
24
|
+
- **`packages/ui` export configuration:** Restored proper `exports` field in `package.json` with `types`, `import`, and `require` conditions plus `./style.css` export, replacing the interim `main`/`module`/`types` pointing to source files.
|
|
25
|
+
|
|
26
|
+
### ๐ฆ Version Updates
|
|
27
|
+
|
|
28
|
+
- **`@arbocollab/arbo-plugin-item-table`:** `0.1.103` โ `0.1.106`
|
|
29
|
+
- **`@arbocollab/ag-grid-ui-components`:** `0.0.43` โ `0.0.44`
|
|
30
|
+
|
|
3
31
|
## [0.1.103] - 2026-06-18
|
|
4
32
|
|
|
5
33
|
### ๐ Features & Enhancements
|