@feasibleone/blong 1.18.2 → 1.18.3
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 +7 -0
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.18.3](https://github.com/feasibleone/blong/compare/blong-v1.18.2...blong-v1.18.3) (2026-05-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* editor lifecycle ([017ab13](https://github.com/feasibleone/blong/commit/017ab13339d4bd9c66a3622ccc0f319bc3ee2195))
|
|
9
|
+
|
|
3
10
|
## [1.18.2](https://github.com/feasibleone/blong/compare/blong-v1.18.1...blong-v1.18.2) (2026-05-10)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
|
@@ -17765,8 +17765,6 @@ export interface IWidgetProps {
|
|
|
17765
17765
|
readOnly?: boolean;
|
|
17766
17766
|
loading?: boolean;
|
|
17767
17767
|
disabled?: boolean;
|
|
17768
|
-
/** All current form values — enables inter-widget reactivity (cascaded dropdowns etc.) */
|
|
17769
|
-
formValues?: Record<string, unknown>;
|
|
17770
17768
|
/**
|
|
17771
17769
|
* Called by table widgets when a row is selected (selectionMode: 'single').
|
|
17772
17770
|
* Passes null when the selection is cleared.
|
|
@@ -17843,6 +17841,8 @@ export interface IActionRef {
|
|
|
17843
17841
|
export interface IToolbarButton {
|
|
17844
17842
|
label?: string;
|
|
17845
17843
|
icon?: string;
|
|
17844
|
+
/** Tooltip / aria title for icon-only buttons */
|
|
17845
|
+
title?: string;
|
|
17846
17846
|
/** Action name (string) or extended ref */
|
|
17847
17847
|
action?: string | IActionRef;
|
|
17848
17848
|
/** Direct RPC method name (bypass action registry) */
|