@absolutejs/absolute 0.19.0-beta.1094 → 0.19.0-beta.1096
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/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +355 -306
- package/dist/angular/index.js.map +6 -5
- package/dist/angular/server.js +355 -306
- package/dist/angular/server.js.map +6 -5
- package/dist/build.js +528 -117
- package/dist/build.js.map +11 -9
- package/dist/cli/config/server.js +188 -3
- package/dist/index.js +540 -421
- package/dist/index.js.map +12 -11
- package/dist/react/index.js +345 -298
- package/dist/react/index.js.map +6 -5
- package/dist/react/server.js +343 -296
- package/dist/react/server.js.map +7 -6
- package/dist/src/utils/spaRouteManifest.d.ts +8 -0
- package/dist/svelte/index.js +343 -296
- package/dist/svelte/index.js.map +6 -5
- package/dist/svelte/server.js +343 -296
- package/dist/svelte/server.js.map +7 -6
- package/dist/types/vue.d.ts +3 -0
- package/dist/vue/index.js +371 -312
- package/dist/vue/index.js.map +7 -6
- package/dist/vue/server.js +365 -306
- package/dist/vue/server.js.map +7 -6
- package/package.json +1 -1
package/dist/types/vue.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ export type VueSetupAppContext = {
|
|
|
19
19
|
* instead. Pass the destination location and an optional status
|
|
20
20
|
* (defaults to `302`). */
|
|
21
21
|
setRedirect: (location: string, status?: number) => void;
|
|
22
|
+
/** Server-only. Mark the current SPA route as unmatched so the page
|
|
23
|
+
* handler returns the project's not-found convention with HTTP 404. */
|
|
24
|
+
setNotFound: () => void;
|
|
22
25
|
};
|
|
23
26
|
export type VueSetupApp = (app: App, ctx: VueSetupAppContext) => void | Promise<void>;
|
|
24
27
|
/** Structural shape of a single vue-router route record. Kept loose
|