@absolutejs/absolute 0.20.0-beta.2 → 0.20.0-beta.21
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/browser.js +15 -1
- package/dist/angular/browser.js.map +3 -3
- 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 +1268 -598
- package/dist/build.js.map +17 -14
- package/dist/cli/index.js +5005 -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 +1644 -863
- package/dist/index.js.map +26 -23
- package/dist/mobile/browser.js +123 -1
- package/dist/mobile/browser.js.map +6 -4
- package/dist/mobile/index.js +3369 -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/imageProcessing.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 +30 -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.3.0",
|
|
12
|
+
"@absolutejs/devices-capacitor": "0.4.0",
|
|
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.1",
|
|
22
31
|
"@angular/animations": "21.2.6",
|
|
23
32
|
"@angular/cdk": "21.2.6",
|
|
24
33
|
"@angular/common": "21.2.6",
|
|
@@ -32,11 +41,17 @@
|
|
|
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/geolocation": "8.2.2",
|
|
52
|
+
"@capacitor/haptics": "8.0.2",
|
|
39
53
|
"@capacitor/ios": "8.5.0",
|
|
54
|
+
"@capacitor/share": "8.0.1",
|
|
40
55
|
"@embroider/macros": "^1.20.2",
|
|
41
56
|
"@eslint/js": "^10.0.1",
|
|
42
57
|
"@glimmer/component": "^2.1.1",
|
|
@@ -265,12 +280,12 @@
|
|
|
265
280
|
"main": "./dist/index.js",
|
|
266
281
|
"name": "@absolutejs/absolute",
|
|
267
282
|
"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.
|
|
283
|
+
"@absolutejs/native-darwin-arm64": "0.20.0-beta.21",
|
|
284
|
+
"@absolutejs/native-darwin-x64": "0.20.0-beta.21",
|
|
285
|
+
"@absolutejs/native-linux-arm64": "0.20.0-beta.21",
|
|
286
|
+
"@absolutejs/native-linux-x64": "0.20.0-beta.21",
|
|
287
|
+
"@absolutejs/native-windows-arm64": "0.20.0-beta.21",
|
|
288
|
+
"@absolutejs/native-windows-x64": "0.20.0-beta.21"
|
|
274
289
|
},
|
|
275
290
|
"overrides": {
|
|
276
291
|
"@sinclair/typebox": "0.34.52",
|
|
@@ -280,6 +295,7 @@
|
|
|
280
295
|
"typebox": "1.3.16"
|
|
281
296
|
},
|
|
282
297
|
"peerDependencies": {
|
|
298
|
+
"@absolutejs/sync": ">=2.29.0 <3",
|
|
283
299
|
"@angular/animations": "^21.0.0",
|
|
284
300
|
"@angular/common": "^21.0.0",
|
|
285
301
|
"@angular/compiler": "^21.0.0",
|
|
@@ -312,6 +328,9 @@
|
|
|
312
328
|
"vue-router": "^4.5.1"
|
|
313
329
|
},
|
|
314
330
|
"peerDependenciesMeta": {
|
|
331
|
+
"@absolutejs/sync": {
|
|
332
|
+
"optional": true
|
|
333
|
+
},
|
|
315
334
|
"@angular/animations": {
|
|
316
335
|
"optional": true
|
|
317
336
|
},
|
|
@@ -424,9 +443,11 @@
|
|
|
424
443
|
"test": "bun run test:unit && bun run test:integration",
|
|
425
444
|
"test:hmr": "bun run scripts/shardedTests.ts tests/integration/hmr",
|
|
426
445
|
"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",
|
|
446
|
+
"test:native:android": "bun run test:native:android:lifecycle && bun run test:native:android:hmr && bun run test:native:android:bundle",
|
|
447
|
+
"test:native:android:bundle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-embedded-bundle-conformance.test.ts",
|
|
428
448
|
"test:native:android:hmr": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-hmr-conformance.test.ts",
|
|
429
449
|
"test:native:android:lifecycle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-lifecycle-conformance.test.ts",
|
|
450
|
+
"test:native:ios": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-lifecycle-conformance.test.ts",
|
|
430
451
|
"test:unit": "bun test tests/unit",
|
|
431
452
|
"typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts",
|
|
432
453
|
"verify:release-versions": "bun run scripts/verifyReleaseVersions.ts"
|
|
@@ -475,7 +496,7 @@
|
|
|
475
496
|
]
|
|
476
497
|
}
|
|
477
498
|
},
|
|
478
|
-
"version": "0.20.0-beta.
|
|
499
|
+
"version": "0.20.0-beta.21",
|
|
479
500
|
"workspaces": [
|
|
480
501
|
"tests/fixtures/*",
|
|
481
502
|
"tests/fixtures/_packages/*"
|