@dorsk/tsumikit 0.18.1 → 0.18.2

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.
@@ -1,4 +1,4 @@
1
- import { type Schema } from './schema.ts';
1
+ import { type Schema } from './schema';
2
2
  export type SuggestKind = 'field' | 'operator' | 'value';
3
3
  export interface Suggestion {
4
4
  /** What to show on the row. */
@@ -6,7 +6,7 @@
6
6
  //
7
7
  // This is pure logic, deliberately UI-free so the Svelte organism stays dumb.
8
8
  // ─────────────────────────────────────────────────────────────────────────
9
- import { findField, operatorsFor, resolveValues, } from './schema.ts';
9
+ import { findField, operatorsFor, resolveValues, } from './schema';
10
10
  // Longest first so `>=`/`!:` win over `>`/`:`.
11
11
  const OP_CODES = ['!:', '!=', '>=', '<=', ':', '=', '>', '<'];
12
12
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dorsk/tsumikit",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "description": "Minimal, dependency-free Svelte 5 + pure-CSS UI kit. Token-driven atoms, molecules & layouts with theming out of the box.",
5
5
  "type": "module",
6
6
  "license": "MIT",