@cosmicdrift/kumiko-types 0.219.0 → 0.220.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/package.json +1 -1
- package/src/screen.ts +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.220.1",
|
|
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
|
@@ -679,13 +679,12 @@ export type EditRelatedListSection = {
|
|
|
679
679
|
};
|
|
680
680
|
|
|
681
681
|
// Max width of the form container (see FormScreenShell in renderer-web).
|
|
682
|
-
export type FormWidth = "
|
|
682
|
+
export type FormWidth = "3xl" | "4xl" | "full";
|
|
683
683
|
|
|
684
684
|
export type EditLayout = {
|
|
685
685
|
readonly sections: readonly EditSectionSpec[];
|
|
686
|
-
/** Default "
|
|
687
|
-
*
|
|
688
|
-
* 3xl column — see #1676. */
|
|
686
|
+
/** Default "full" (same content width as lists). Override to "sm" /
|
|
687
|
+
* "3xl" / "4xl" only when a screen needs a narrower centered column. */
|
|
689
688
|
readonly width?: FormWidth;
|
|
690
689
|
/** Default "single". "wizard" renders one section per step (with
|
|
691
690
|
* progress + per-step validation) instead of all sections at once —
|