@absolutejs/absolute 0.20.0-beta.26 → 0.20.0-beta.27

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.
@@ -8,6 +8,7 @@ export type AbsoluteDeviceCapabilityProvider = {
8
8
  ios?: {
9
9
  privacyAccessedApis?: Partial<Record<AbsoluteIosPrivacyAccessedApi, string[]>>;
10
10
  pushNotifications?: true;
11
+ systemBars?: true;
11
12
  usageDescriptions?: AbsoluteIosUsageDescription[];
12
13
  };
13
14
  };
@@ -27,6 +28,7 @@ export declare const absoluteDeviceNativeRequirements: (plan: AbsoluteDeviceCapa
27
28
  reasons: string[];
28
29
  }[];
29
30
  iosPushNotifications: boolean;
31
+ iosSystemBars: boolean;
30
32
  iosUsageDescriptions: AbsoluteIosUsageDescription[];
31
33
  };
32
34
  export declare const loadAbsoluteDeviceCapabilityProviders: (projectRoot: string) => {
package/package.json CHANGED
@@ -8,10 +8,11 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@absolutejs/auth": "0.75.0",
11
- "@absolutejs/devices": "0.6.0",
12
- "@absolutejs/devices-capacitor": "0.7.1",
11
+ "@absolutejs/devices": "0.7.0",
12
+ "@absolutejs/devices-capacitor": "0.8.0",
13
13
  "@absolutejs/pwa": "0.14.0",
14
14
  "@capacitor/browser": "8.0.4",
15
+ "@capacitor/keyboard": "8.0.5",
15
16
  "@capacitor/network": "8.0.1",
16
17
  "@capacitor/preferences": "8.0.1",
17
18
  "@elysia/openapi": "2.0.0-beta.1",
@@ -453,7 +454,7 @@
453
454
  "test:native:android:hmr": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-hmr-conformance.test.ts",
454
455
  "test:native:android:lifecycle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-lifecycle-conformance.test.ts",
455
456
  "test:native:ios": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-lifecycle-conformance.test.ts",
456
- "test:unit": "bun test tests/unit",
457
+ "test:unit": "bun test --max-concurrency 1 tests/unit",
457
458
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts",
458
459
  "verify:release-versions": "bun run scripts/verifyReleaseVersions.ts"
459
460
  },
@@ -501,7 +502,7 @@
501
502
  ]
502
503
  }
503
504
  },
504
- "version": "0.20.0-beta.26",
505
+ "version": "0.20.0-beta.27",
505
506
  "workspaces": [
506
507
  "tests/fixtures/*",
507
508
  "tests/fixtures/_packages/*"