@cosmicdrift/kumiko-types 0.187.0 → 0.188.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 +3 -3
- package/src/screen.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.188.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>",
|
|
@@ -224,12 +224,12 @@
|
|
|
224
224
|
}
|
|
225
225
|
},
|
|
226
226
|
"devDependencies": {
|
|
227
|
-
"hono": "^4.
|
|
227
|
+
"hono": "^4.13.1",
|
|
228
228
|
"postgres": "^3.4.9",
|
|
229
229
|
"temporal-polyfill": "^0.3.2"
|
|
230
230
|
},
|
|
231
231
|
"peerDependencies": {
|
|
232
|
-
"hono": "^4.
|
|
232
|
+
"hono": "^4.13.1",
|
|
233
233
|
"postgres": "^3.4.9",
|
|
234
234
|
"temporal-polyfill": "^0.3.2"
|
|
235
235
|
},
|
package/src/screen.ts
CHANGED
|
@@ -564,6 +564,13 @@ export type EditLayout = {
|
|
|
564
564
|
* three-column fields) that would leave dead space on both sides in a
|
|
565
565
|
* 3xl column — see #1676. */
|
|
566
566
|
readonly width?: FormWidth;
|
|
567
|
+
/** Default "single". "wizard" renders one section per step (with
|
|
568
|
+
* progress + per-step validation) instead of all sections at once —
|
|
569
|
+
* boot-validator requires >= 2 sections, each with a title, when set. */
|
|
570
|
+
readonly mode?: "single" | "wizard";
|
|
571
|
+
/** Persists in-progress wizard state as a resumable draft instead of
|
|
572
|
+
* discarding it on navigation away. */
|
|
573
|
+
readonly draft?: boolean;
|
|
567
574
|
};
|
|
568
575
|
|
|
569
576
|
export type EntityEditScreenDefinition = {
|