@cosmicdrift/kumiko-types 0.261.0 → 0.262.0
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/package.json +1 -1
- package/src/screen.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.262.0",
|
|
4
4
|
"description": "Framework-Type-Definitions für Kumiko — FeatureDefinition, BootCheck-Types und die reinen Engine-Types. Erlaubt Downstream-Konsumenten, gegen die Type-Contracts zu bauen, ohne das ganze Framework-Package zu importieren. Enthaelt keine identitaets-sensitiven Runtime-Werte mehr (Error-Klassen leben seit #1629 in kumiko-framework, Brand-Symbole nutzen Symbol.for) und ist deshalb eine plain dependency, keine peerDependency.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
package/src/screen.ts
CHANGED
|
@@ -1035,7 +1035,9 @@ export type EntityEditScreenDefinition = {
|
|
|
1035
1035
|
* The object form additionally names the success-payload field the
|
|
1036
1036
|
* navigation id comes from (`ActionFormRedirect.idFrom`) — needed when
|
|
1037
1037
|
* the edited record is a child and the target screen is the parent's
|
|
1038
|
-
* detail screen.
|
|
1038
|
+
* detail screen. Update falls back to the loaded record when the
|
|
1039
|
+
* success payload doesn't carry that field flatly; create falls back
|
|
1040
|
+
* to the submitted form values. */
|
|
1039
1041
|
readonly redirect?: string | ActionFormRedirect;
|
|
1040
1042
|
/** Parent list screen (short id) for breadcrumb + nav highlighting when
|
|
1041
1043
|
* this screen has no nav entry of its own. Same field/semantics as on
|