@cosmicdrift/kumiko-bundled-features 0.52.0 → 0.55.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-bundled-features",
3
- "version": "0.52.0",
3
+ "version": "0.55.0",
4
4
  "description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -352,7 +352,7 @@ describe("CustomFieldsFormSection — boolean/date-Pfade", () => {
352
352
  });
353
353
  });
354
354
 
355
- test("date: Bestand erreicht den DateInput-Trigger (lokalisierte Anzeige)", () => {
355
+ test("date: Bestand erreicht das DateInput-Textfeld (locale-numerisch)", () => {
356
356
  mockedQueryRows = [
357
357
  {
358
358
  id: "f1",
@@ -375,12 +375,12 @@ describe("CustomFieldsFormSection — boolean/date-Pfade", () => {
375
375
  </Wrapper>,
376
376
  );
377
377
 
378
- // DateInput ist ein Kalender-Trigger-Button (kein <input value>) mit
379
- // lokalisierter Anzeige der Kalender-Flow selbst ist jsdom-untauglich
380
- // (Popover), hier zählt: der Bestand kommt im Trigger an, nicht "—".
381
- const trigger = document.getElementById("custom-field-launchedAt") as HTMLButtonElement;
382
- expect(trigger.textContent).toContain("2026");
383
- expect(trigger.textContent).not.toContain("");
378
+ // DateInput ist seit #369 ein tippbares Text-Input (locale-numerische
379
+ // Anzeige); der Kalender-Popover selbst ist jsdom-untauglich, hier zählt:
380
+ // der Bestand kommt als value an, nicht leer.
381
+ const input = document.getElementById("custom-field-launchedAt") as HTMLInputElement;
382
+ expect(input.value).toContain("2026");
383
+ expect(input.value).not.toBe("");
384
384
  });
385
385
  });
386
386