@elyracode/stack-silt 0.9.24 → 0.9.26
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/skills/silt-stack/SKILL.md +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.26] - 2026-08-07
|
|
4
|
+
|
|
5
|
+
## [0.9.25] - 2026-08-03
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Skill updated for the mid-2026 Inertia release: `<Link>` supports `target`, the `<Form>` component's `async` option works, async `onSuccess` callbacks are awaited before `processing` clears, and `titleCallback` receives the full page object
|
|
9
|
+
|
|
3
10
|
## [0.9.24] - 2026-07-24
|
|
4
11
|
|
|
5
12
|
## [0.9.23] - 2026-07-23
|
package/package.json
CHANGED
|
@@ -314,7 +314,9 @@ import { Link, inertia } from '@inertiajs/svelte'
|
|
|
314
314
|
|
|
315
315
|
<Link href={route('users.index')}>Users</Link>
|
|
316
316
|
<a use:inertia href={route('users.create')}>New User</a>
|
|
317
|
+
<Link href="https://docs.example.com" target="_blank">Docs</Link>
|
|
317
318
|
```
|
|
319
|
+
`<Link>` accepts `target` (mid-2026 Inertia update) — no need to fall back to a plain `<a>` for new-tab links. Other recent Inertia fixes worth knowing: the `<Form>` component's `async` visit option now works, an async `onSuccess` callback is awaited before `processing` clears (so `disableWhileProcessing` is reliable), and `titleCallback` receives the full `page` object as its second argument.
|
|
318
320
|
|
|
319
321
|
## File Structure Conventions
|
|
320
322
|
|