@absolutejs/absolute 0.19.0-beta.1086 → 0.19.0-beta.1088
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/build.js +691 -104
- package/dist/build.js.map +5 -4
- package/dist/index.js +698 -111
- package/dist/index.js.map +5 -4
- package/dist/src/build/tailwindCompiler.d.ts +0 -1
- package/dist/src/core/build.d.ts +1 -1
- package/dist/tailwindcss-oxide.linux-x64-gnu-vcb5zrt4.node +0 -0
- package/dist/tailwindcss-oxide.linux-x64-musl-vr6z8t87.node +0 -0
- package/dist/types/vue.d.ts +10 -15
- package/package.json +8 -2
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { StylePreprocessorConfig, TailwindConfig } from '../../types/build';
|
|
2
|
-
export declare const extractCandidates: (source: string) => Set<string>;
|
|
3
2
|
export declare const disposeTailwindCompiler: (cssPath?: string) => void;
|
|
4
3
|
export declare const incrementalTailwindBuild: (tailwind: TailwindConfig, buildPath: string, changedFiles: string[], styleTransformConfig?: StylePreprocessorConfig, extraSources?: string[]) => Promise<{
|
|
5
4
|
cssChanged: boolean;
|
package/dist/src/core/build.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { build as bunBuild } from 'bun';
|
|
|
2
2
|
import type { ConventionsMap } from '../../types/conventions';
|
|
3
3
|
import type { BuildConfig, BunBuildConfigOverride, BunBuildPassKey } from '../../types/build';
|
|
4
4
|
type BunBuildOptions = Parameters<typeof bunBuild>[0];
|
|
5
|
-
export declare const resolveBunBuildOverride: (config: BuildConfig["bunBuild"], pass: BunBuildPassKey) => Partial<Omit<Bun.BuildConfig, "
|
|
5
|
+
export declare const resolveBunBuildOverride: (config: BuildConfig["bunBuild"], pass: BunBuildPassKey) => Partial<Omit<Bun.BuildConfig, "entrypoints" | "outdir" | "root" | "target" | "format" | "throw" | "compile">>;
|
|
6
6
|
/** Resolve the Bun `sourcemap` mode for CLIENT bundles from the `sourcemaps`
|
|
7
7
|
* config. Dev always uses inline maps (HMR / devtools); production emits
|
|
8
8
|
* external maps only when explicitly enabled — they're then chained back to
|
|
Binary file
|
|
Binary file
|
package/dist/types/vue.d.ts
CHANGED
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import type { AllowedComponentProps, App, ComponentCustomProps, VNodeProps } from 'vue';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
12
|
-
push: (to: string) => Promise<unknown>;
|
|
13
|
-
isReady: () => Promise<void>;
|
|
14
|
-
beforeEach: (guard: (to: unknown, from: unknown) => unknown) => () => void;
|
|
15
|
-
};
|
|
2
|
+
import type { Router } from 'vue-router';
|
|
3
|
+
/** The vue-router instance AbsoluteJS auto-creates from a page's `routes`
|
|
4
|
+
* export. Aliased to vue-router's own `Router` so consumers get the full,
|
|
5
|
+
* always-current API (`onError`, `afterEach`, `resolve`, …) rather than a
|
|
6
|
+
* hand-mirrored subset that silently drifts out of date — the missing
|
|
7
|
+
* `onError` is exactly the kind of gap a duplicated type hides. `vue-router`
|
|
8
|
+
* is an optional peer dependency: only pages that export `routes` reference
|
|
9
|
+
* this type, and those pages already depend on vue-router. */
|
|
10
|
+
export type VueAutoRouter = Router;
|
|
16
11
|
export type VueSetupAppContext = {
|
|
17
12
|
url: string;
|
|
18
13
|
isServer: boolean;
|
|
19
14
|
/** The vue-router instance AbsoluteJS auto-created from the page's
|
|
20
15
|
* `routes` export, already installed on the app and navigated to
|
|
21
16
|
* the request URL. `null` when the page didn't export `routes`. */
|
|
22
|
-
router:
|
|
17
|
+
router: Router | null;
|
|
23
18
|
/** Server-only. Call to short-circuit SSR and emit an HTTP redirect
|
|
24
19
|
* instead. Pass the destination location and an optional status
|
|
25
20
|
* (defaults to `302`). */
|
package/package.json
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"@elysia/static": "^1.4.11",
|
|
8
8
|
"@elysiajs/openapi": "^1.4.15",
|
|
9
9
|
"@elysiajs/server-timing": "^1.4.0",
|
|
10
|
+
"@tailwindcss/oxide": "^4.1.0",
|
|
10
11
|
"zustand": "^5.0.12"
|
|
11
12
|
},
|
|
12
13
|
"description": "A fullstack meta-framework for building web applications with TypeScript",
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
"typescript": "^5.9.3",
|
|
69
70
|
"typescript-eslint": "8.56.1",
|
|
70
71
|
"vue": "3.5.27",
|
|
72
|
+
"vue-router": "^4.5.1",
|
|
71
73
|
"vue-tsc": "^3.2.5"
|
|
72
74
|
},
|
|
73
75
|
"engines": {
|
|
@@ -278,7 +280,8 @@
|
|
|
278
280
|
"svelte": "^5.35.2",
|
|
279
281
|
"tailwindcss": "^4.1.0",
|
|
280
282
|
"typescript": "^5.9.3",
|
|
281
|
-
"vue": "^3.5.27"
|
|
283
|
+
"vue": "^3.5.27",
|
|
284
|
+
"vue-router": "^4.5.1"
|
|
282
285
|
},
|
|
283
286
|
"peerDependenciesMeta": {
|
|
284
287
|
"@angular/animations": {
|
|
@@ -349,6 +352,9 @@
|
|
|
349
352
|
},
|
|
350
353
|
"vue": {
|
|
351
354
|
"optional": true
|
|
355
|
+
},
|
|
356
|
+
"vue-router": {
|
|
357
|
+
"optional": true
|
|
352
358
|
}
|
|
353
359
|
},
|
|
354
360
|
"repository": {
|
|
@@ -418,7 +424,7 @@
|
|
|
418
424
|
]
|
|
419
425
|
}
|
|
420
426
|
},
|
|
421
|
-
"version": "0.19.0-beta.
|
|
427
|
+
"version": "0.19.0-beta.1088",
|
|
422
428
|
"workspaces": [
|
|
423
429
|
"tests/fixtures/*",
|
|
424
430
|
"tests/fixtures/_packages/*"
|