@cosmicdrift/kumiko-types 0.173.1 → 0.174.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-types",
3
- "version": "0.173.1",
3
+ "version": "0.174.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/fields.ts CHANGED
@@ -359,7 +359,7 @@ export type ReferenceFieldDef = {
359
359
  * statt single UUID. Storage als jsonb-Array<uuid>. UI rendert
360
360
  * Multi-Select-Combobox mit Tag-Anzeige der gewählten Items. */
361
361
  readonly multiple?: boolean;
362
- };
362
+ } & PiiAnnotations;
363
363
 
364
364
  // --- Currency ---
365
365
 
package/src/screen.ts CHANGED
@@ -518,9 +518,10 @@ export type EditFieldSpec =
518
518
  /** Prefix icon on the input — symbolic key into the FIELD_ICONS
519
519
  * registry (renderer-web), analogous to `ScreenNavSugar.icon`.
520
520
  * Unknown key → no icon (clean fallback, no boot-fail). Only takes
521
- * effect for `type: "text"` and `"number"` — other input kinds
522
- * (select, combobox, date, …) have no icon slot and silently
523
- * ignore the key. */
521
+ * effect for single-line `type: "text"` and `"number"` — a `text`
522
+ * field with `multiline` routes to a textarea (no icon slot), and
523
+ * other input kinds (select, combobox, date, …) silently ignore
524
+ * the key. */
524
525
  readonly icon?: string;
525
526
  };
526
527