@cosmicdrift/kumiko-types 0.226.0 → 0.227.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 +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.227.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
|
@@ -689,6 +689,12 @@ export type EditExtensionSection = {
|
|
|
689
689
|
* writes (e.g. notes-history NotesSection) — otherwise a read-only form
|
|
690
690
|
* shows a Save button that does nothing (fw#2359). */
|
|
691
691
|
readonly contributesToFormSubmit?: boolean;
|
|
692
|
+
/** Overrides the host-derived entity name passed to the mounted component.
|
|
693
|
+
* Required on `projectionDetail` (which has no real entity — the host
|
|
694
|
+
* value there is an internal placeholder) so a self-persisting extension
|
|
695
|
+
* like NotesSection filters/writes against the right domain entity. Takes
|
|
696
|
+
* precedence over the host value on every screen type. */
|
|
697
|
+
readonly entityName?: string;
|
|
692
698
|
};
|
|
693
699
|
|
|
694
700
|
// Read-only list of related records, driven by its own query — for a
|