@absolutejs/absolute 0.20.0-beta.2 → 0.20.0-beta.20
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/README.md +135 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +341 -22
- package/dist/angular/index.js.map +8 -5
- package/dist/angular/server.js +341 -22
- package/dist/angular/server.js.map +8 -5
- package/dist/build.js +1254 -598
- package/dist/build.js.map +16 -13
- package/dist/cli/index.js +4995 -1614
- package/dist/dev/client/cssUtils.ts +16 -2
- package/dist/dev/client/handlers/rebuild.ts +11 -1
- package/dist/dev/client/hmrClient.ts +9 -3
- package/dist/dev/client/hmrTiming.ts +14 -7
- package/dist/dev/client/syncDevtools.ts +237 -0
- package/dist/index.js +1628 -862
- package/dist/index.js.map +24 -21
- package/dist/mobile/browser.js +123 -1
- package/dist/mobile/browser.js.map +6 -4
- package/dist/mobile/index.js +3361 -298
- package/dist/mobile/index.js.map +27 -13
- package/dist/mobile/remoteMacAgentEntry.js +29 -0
- package/dist/mobile/shellAuth.js +35 -0
- package/dist/mobile/shellBootstrap.js +585 -0
- package/dist/mobile/shellSync.js +123 -0
- package/dist/src/angular/pageHandler.d.ts +3 -0
- package/dist/src/build/pwa.d.ts +16 -0
- package/dist/src/cli/config/server.d.ts +1 -1
- package/dist/src/core/pageHandlers.d.ts +11 -2
- package/dist/src/core/prepare.d.ts +6 -0
- package/dist/src/dev/clientManager.d.ts +2 -0
- package/dist/src/mobile/androidEmulatorController.d.ts +6 -1
- package/dist/src/mobile/browser.d.ts +1 -0
- package/dist/src/mobile/buildPipeline.d.ts +1 -0
- package/dist/src/mobile/capacitorBundle.d.ts +22 -1
- package/dist/src/mobile/client.d.ts +4 -0
- package/dist/src/mobile/deviceCapabilities.d.ts +33 -0
- package/dist/src/mobile/index.d.ts +9 -0
- package/dist/src/mobile/iosConformance.d.ts +15 -0
- package/dist/src/mobile/iosNativeWatcher.d.ts +19 -0
- package/dist/src/mobile/iosRelease.d.ts +2 -2
- package/dist/src/mobile/iosSimulatorController.d.ts +89 -0
- package/dist/src/mobile/nativeAuth.d.ts +17 -0
- package/dist/src/mobile/nativeBackgroundSync.d.ts +4 -0
- package/dist/src/mobile/nativeDeviceCapabilities.d.ts +6 -0
- package/dist/src/mobile/releaseArtifact.d.ts +2 -0
- package/dist/src/mobile/remoteMacAgent.d.ts +2 -0
- package/dist/src/mobile/remoteMacAgentEntry.d.ts +1 -0
- package/dist/src/mobile/remoteMacProtocol.d.ts +114 -0
- package/dist/src/mobile/remoteMacWire.d.ts +2 -0
- package/dist/src/mobile/shellAuth.d.ts +13 -0
- package/dist/src/mobile/shellBootstrap.d.ts +18 -1
- package/dist/src/mobile/shellSync.d.ts +19 -0
- package/dist/src/mobile/staticDocument.d.ts +5 -0
- package/dist/src/mobile/syncRemediation.d.ts +10 -0
- package/dist/src/mobile/syncSchema.d.ts +9 -0
- package/dist/src/mobile/transport.d.ts +16 -1
- package/dist/src/plugins/hmr.d.ts +3 -0
- package/dist/src/plugins/imageOptimizer.d.ts +1 -1
- package/dist/src/svelte/pageHandler.d.ts +3 -0
- package/dist/src/utils/loadConfig.d.ts +1 -0
- package/dist/src/vue/pageHandler.d.ts +3 -0
- package/dist/svelte/index.js +312 -23
- package/dist/svelte/index.js.map +7 -4
- package/dist/svelte/server.js +307 -18
- package/dist/svelte/server.js.map +7 -4
- package/dist/types/build.d.ts +14 -0
- package/dist/vue/index.js +312 -23
- package/dist/vue/index.js.map +7 -4
- package/dist/vue/server.js +307 -18
- package/dist/vue/server.js.map +7 -4
- package/package.json +29 -9
package/package.json
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
"url": "https://github.com/absolutejs/absolutejs/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@absolutejs/auth": "0.72.0",
|
|
11
|
+
"@absolutejs/devices": "0.2.0",
|
|
12
|
+
"@absolutejs/devices-capacitor": "0.3.1",
|
|
13
|
+
"@absolutejs/pwa": "0.13.0",
|
|
14
|
+
"@capacitor/browser": "8.0.4",
|
|
15
|
+
"@capacitor/network": "8.0.1",
|
|
16
|
+
"@capacitor/preferences": "8.0.1",
|
|
10
17
|
"@elysia/openapi": "2.0.0-beta.1",
|
|
11
18
|
"@elysia/server-timing": "2.0.0-beta.1",
|
|
12
19
|
"@elysia/static": "2.0.0-beta.2",
|
|
@@ -18,7 +25,9 @@
|
|
|
18
25
|
"description": "A fullstack meta-framework for building web applications with TypeScript",
|
|
19
26
|
"devDependencies": {
|
|
20
27
|
"@absolutejs/manifest": "0.9.0",
|
|
21
|
-
"@absolutejs/scoped-state": "0.2.
|
|
28
|
+
"@absolutejs/scoped-state": "0.2.2",
|
|
29
|
+
"@absolutejs/sync": "2.29.0",
|
|
30
|
+
"@absolutejs/sync-capacitor": "0.9.0",
|
|
22
31
|
"@angular/animations": "21.2.6",
|
|
23
32
|
"@angular/cdk": "21.2.6",
|
|
24
33
|
"@angular/common": "21.2.6",
|
|
@@ -32,11 +41,16 @@
|
|
|
32
41
|
"@angular/router": "21.2.6",
|
|
33
42
|
"@angular/ssr": "21.2.5",
|
|
34
43
|
"@babel/preset-typescript": "^7.28.5",
|
|
44
|
+
"@capacitor-community/sqlite": "8.1.1",
|
|
35
45
|
"@capacitor/android": "8.5.0",
|
|
36
46
|
"@capacitor/app": "8.1.1",
|
|
47
|
+
"@capacitor/camera": "8.2.3",
|
|
37
48
|
"@capacitor/cli": "8.5.0",
|
|
49
|
+
"@capacitor/clipboard": "8.0.1",
|
|
38
50
|
"@capacitor/core": "8.5.0",
|
|
51
|
+
"@capacitor/haptics": "8.0.2",
|
|
39
52
|
"@capacitor/ios": "8.5.0",
|
|
53
|
+
"@capacitor/share": "8.0.1",
|
|
40
54
|
"@embroider/macros": "^1.20.2",
|
|
41
55
|
"@eslint/js": "^10.0.1",
|
|
42
56
|
"@glimmer/component": "^2.1.1",
|
|
@@ -265,12 +279,12 @@
|
|
|
265
279
|
"main": "./dist/index.js",
|
|
266
280
|
"name": "@absolutejs/absolute",
|
|
267
281
|
"optionalDependencies": {
|
|
268
|
-
"@absolutejs/native-darwin-arm64": "0.20.0-beta.
|
|
269
|
-
"@absolutejs/native-darwin-x64": "0.20.0-beta.
|
|
270
|
-
"@absolutejs/native-linux-arm64": "0.20.0-beta.
|
|
271
|
-
"@absolutejs/native-linux-x64": "0.20.0-beta.
|
|
272
|
-
"@absolutejs/native-windows-arm64": "0.20.0-beta.
|
|
273
|
-
"@absolutejs/native-windows-x64": "0.20.0-beta.
|
|
282
|
+
"@absolutejs/native-darwin-arm64": "0.20.0-beta.20",
|
|
283
|
+
"@absolutejs/native-darwin-x64": "0.20.0-beta.20",
|
|
284
|
+
"@absolutejs/native-linux-arm64": "0.20.0-beta.20",
|
|
285
|
+
"@absolutejs/native-linux-x64": "0.20.0-beta.20",
|
|
286
|
+
"@absolutejs/native-windows-arm64": "0.20.0-beta.20",
|
|
287
|
+
"@absolutejs/native-windows-x64": "0.20.0-beta.20"
|
|
274
288
|
},
|
|
275
289
|
"overrides": {
|
|
276
290
|
"@sinclair/typebox": "0.34.52",
|
|
@@ -280,6 +294,7 @@
|
|
|
280
294
|
"typebox": "1.3.16"
|
|
281
295
|
},
|
|
282
296
|
"peerDependencies": {
|
|
297
|
+
"@absolutejs/sync": ">=2.29.0 <3",
|
|
283
298
|
"@angular/animations": "^21.0.0",
|
|
284
299
|
"@angular/common": "^21.0.0",
|
|
285
300
|
"@angular/compiler": "^21.0.0",
|
|
@@ -312,6 +327,9 @@
|
|
|
312
327
|
"vue-router": "^4.5.1"
|
|
313
328
|
},
|
|
314
329
|
"peerDependenciesMeta": {
|
|
330
|
+
"@absolutejs/sync": {
|
|
331
|
+
"optional": true
|
|
332
|
+
},
|
|
315
333
|
"@angular/animations": {
|
|
316
334
|
"optional": true
|
|
317
335
|
},
|
|
@@ -424,9 +442,11 @@
|
|
|
424
442
|
"test": "bun run test:unit && bun run test:integration",
|
|
425
443
|
"test:hmr": "bun run scripts/shardedTests.ts tests/integration/hmr",
|
|
426
444
|
"test:integration": "bun run scripts/shardedTests.ts tests/integration",
|
|
427
|
-
"test:native:android": "bun run test:native:android:lifecycle && bun run test:native:android:hmr",
|
|
445
|
+
"test:native:android": "bun run test:native:android:lifecycle && bun run test:native:android:hmr && bun run test:native:android:bundle",
|
|
446
|
+
"test:native:android:bundle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-embedded-bundle-conformance.test.ts",
|
|
428
447
|
"test:native:android:hmr": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-hmr-conformance.test.ts",
|
|
429
448
|
"test:native:android:lifecycle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-lifecycle-conformance.test.ts",
|
|
449
|
+
"test:native:ios": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-lifecycle-conformance.test.ts",
|
|
430
450
|
"test:unit": "bun test tests/unit",
|
|
431
451
|
"typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts",
|
|
432
452
|
"verify:release-versions": "bun run scripts/verifyReleaseVersions.ts"
|
|
@@ -475,7 +495,7 @@
|
|
|
475
495
|
]
|
|
476
496
|
}
|
|
477
497
|
},
|
|
478
|
-
"version": "0.20.0-beta.
|
|
498
|
+
"version": "0.20.0-beta.20",
|
|
479
499
|
"workspaces": [
|
|
480
500
|
"tests/fixtures/*",
|
|
481
501
|
"tests/fixtures/_packages/*"
|