@urbicon-ui/sveltekit-utils 6.50.0 → 6.51.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/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export * from './cron';
2
- export * from './sse';
3
- export * from './table-query';
4
- export * from './url.svelte';
1
+ export * from './cron.js';
2
+ export * from './sse.js';
3
+ export * from './table-query.js';
4
+ export * from './url.svelte.js';
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export * from './cron';
2
- export * from './sse';
3
- export * from './table-query';
4
- export * from './url.svelte';
1
+ export * from './cron.js';
2
+ export * from './sse.js';
3
+ export * from './table-query.js';
4
+ export * from './url.svelte.js';
@@ -1,4 +1,4 @@
1
- import { type TableQueryParams, type TableQueryUrlOptions } from './table-query';
1
+ import { type TableQueryParams, type TableQueryUrlOptions } from './table-query.js';
2
2
  /**
3
3
  * How {@link useUrlArrayParam} maps an array onto the URL:
4
4
  * - `repeat` — one entry per key: `?tag=a&tag=b`
@@ -1,7 +1,7 @@
1
1
  import { building } from '$app/environment';
2
2
  import { goto } from '$app/navigation';
3
3
  import { page } from '$app/state';
4
- import { applyTableQueryToSearchParams, searchParamsToTableQuery } from './table-query';
4
+ import { applyTableQueryToSearchParams, searchParamsToTableQuery } from './table-query.js';
5
5
  /**
6
6
  * Low-level escape hatch to update several params at once via `goto` (without a
7
7
  * full navigation). Starts from the current URL, applies `next`, and keeps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urbicon-ui/sveltekit-utils",
3
- "version": "6.50.0",
3
+ "version": "6.51.0",
4
4
  "description": "SvelteKit helper utilities — createCronRunner, streamSse, and URL-state runes",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -61,10 +61,10 @@
61
61
  ],
62
62
  "scripts": {
63
63
  "dev": "svelte-package --watch",
64
- "build": "svelte-kit sync && svelte-package",
64
+ "build": "svelte-kit sync && svelte-package && bun ../../scripts/complete-esm-specifiers.ts dist",
65
65
  "clean": "rm -rf dist .svelte-kit",
66
66
  "clean-all": "bun --bun run clean && rm -rf node_modules",
67
- "package": "svelte-kit sync && svelte-package",
67
+ "package": "svelte-kit sync && svelte-package && bun ../../scripts/complete-esm-specifiers.ts dist",
68
68
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
69
69
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
70
70
  "format": "biome format --write . && prettier --write \"**/*.svelte\"",