@feasibleone/blong 1.20.0 → 1.20.1
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 +7 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.20.1](https://github.com/feasibleone/blong/compare/blong-v1.20.0...blong-v1.20.1) (2026-05-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* refresh after delete ([d59d71d](https://github.com/feasibleone/blong/commit/d59d71d32eff795cd8a53fd72b2d58e80f994bc1))
|
|
9
|
+
|
|
3
10
|
## [1.20.0](https://github.com/feasibleone/blong/compare/blong-v1.19.0...blong-v1.20.0) (2026-05-19)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
|
@@ -17864,6 +17864,13 @@ export interface IToolbarButton {
|
|
|
17864
17864
|
params?: Record<string, unknown> | string;
|
|
17865
17865
|
/** Success hint text shown in an overlay near the button after the action completes */
|
|
17866
17866
|
successHint?: string;
|
|
17867
|
+
/**
|
|
17868
|
+
* When true, invalidates the list/detail queries for the method's namespace after a
|
|
17869
|
+
* successful call. Derives the namespace from the `method` name by dropping the last
|
|
17870
|
+
* segment (e.g. `marine.coral.remove` → invalidates `marine.coral.find` and
|
|
17871
|
+
* `marine.coral.get`). Useful for delete/remove toolbar actions on browse pages.
|
|
17872
|
+
*/
|
|
17873
|
+
refresh?: boolean;
|
|
17867
17874
|
}
|
|
17868
17875
|
export type LayoutRow = string | (string | string[])[];
|
|
17869
17876
|
export type FlatLayoutConfig = LayoutRow[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feasibleone/blong",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"description": "API and DRY focused RAD framework https://feasibleone.github.io/blong-docs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blong",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"openapi-types": "^12.1.3",
|
|
47
47
|
"react": "^19.1.0",
|
|
48
48
|
"tarn": "^3.0.2",
|
|
49
|
-
"typescript": "^
|
|
49
|
+
"typescript": "^6.0.3",
|
|
50
50
|
"@feasibleone/blong-dev": "1.0.0"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|