@absolutejs/absolute 0.20.0-beta.96 → 0.20.0-beta.98
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/CHANGELOG.md +14 -0
- package/changelog.json +28 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/{compile-qg75ewma.js → compile-9y36k8z1.js} +2 -2
- package/dist/cli/{dev-sm9px53g.js → dev-r8dztrp8.js} +1 -1
- package/dist/cli/{expoProject-h38entbj.js → expoProject-ceey4cfg.js} +1 -1
- package/dist/cli/{index-d8va9b7v.js → index-0bcf7pdw.js} +1 -1
- package/dist/cli/{index-51yyq29s.js → index-fdycyj4v.js} +1 -1
- package/dist/cli/{index-0t1cxstr.js → index-qd6mqgsc.js} +68 -3
- package/dist/cli/index.js +5 -5
- package/dist/cli/{mobile-dev4mjsa.js → mobile-31ypggwx.js} +3 -3
- package/dist/cli/{start-0ddnh0y4.js → start-10dfrjvd.js} +3 -3
- package/dist/mobile/index.js +168 -4
- package/dist/mobile/index.js.map +7 -6
- package/dist/mobile/remoteMacAgentEntry.js +148 -83
- package/dist/src/mobile/expoAndroidQuality.d.ts +75 -0
- package/dist/src/mobile/index.d.ts +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export type AbsoluteExpoAndroidLaunchTiming = {
|
|
2
|
+
launchState?: string;
|
|
3
|
+
thisTimeMs?: number;
|
|
4
|
+
totalTimeMs: number;
|
|
5
|
+
waitTimeMs: number;
|
|
6
|
+
};
|
|
7
|
+
export type AbsoluteExpoAndroidMemory = {
|
|
8
|
+
totalPssKiB: number;
|
|
9
|
+
};
|
|
10
|
+
export type AbsoluteAndroidAccessibilityNode = {
|
|
11
|
+
bounds: {
|
|
12
|
+
bottom: number;
|
|
13
|
+
left: number;
|
|
14
|
+
right: number;
|
|
15
|
+
top: number;
|
|
16
|
+
};
|
|
17
|
+
className: string;
|
|
18
|
+
clickable: boolean;
|
|
19
|
+
contentDescription: string;
|
|
20
|
+
enabled: boolean;
|
|
21
|
+
packageName: string;
|
|
22
|
+
resourceId: string;
|
|
23
|
+
text: string;
|
|
24
|
+
visible: boolean;
|
|
25
|
+
};
|
|
26
|
+
export type AbsoluteExpoAndroidQualityBudgets = {
|
|
27
|
+
bridgeP95Ms: number;
|
|
28
|
+
coldLaunchMs: number;
|
|
29
|
+
hmrP95Ms: number;
|
|
30
|
+
maxMemoryGrowthMiB: number;
|
|
31
|
+
maxTotalPssMiB: number;
|
|
32
|
+
minTouchTargetDp: number;
|
|
33
|
+
warmLaunchMs: number;
|
|
34
|
+
};
|
|
35
|
+
export declare const DEFAULT_ABSOLUTE_EXPO_ANDROID_QUALITY_BUDGETS: {
|
|
36
|
+
bridgeP95Ms: number;
|
|
37
|
+
coldLaunchMs: number;
|
|
38
|
+
hmrP95Ms: number;
|
|
39
|
+
maxMemoryGrowthMiB: number;
|
|
40
|
+
maxTotalPssMiB: number;
|
|
41
|
+
minTouchTargetDp: number;
|
|
42
|
+
warmLaunchMs: number;
|
|
43
|
+
};
|
|
44
|
+
export declare const parseAbsoluteExpoAndroidLaunchTiming: (source: string) => {
|
|
45
|
+
launchState: string | undefined;
|
|
46
|
+
thisTimeMs: number | undefined;
|
|
47
|
+
totalTimeMs: number;
|
|
48
|
+
waitTimeMs: number;
|
|
49
|
+
};
|
|
50
|
+
export declare const parseAbsoluteExpoAndroidMemory: (source: string) => {
|
|
51
|
+
totalPssKiB: number;
|
|
52
|
+
};
|
|
53
|
+
export declare const absoluteAndroidNodeLabel: (node: AbsoluteAndroidAccessibilityNode) => string;
|
|
54
|
+
export declare const absoluteAndroidTouchTargetDp: (node: AbsoluteAndroidAccessibilityNode, density: number) => {
|
|
55
|
+
height: number;
|
|
56
|
+
width: number;
|
|
57
|
+
};
|
|
58
|
+
export declare const absolutePercentile: (values: readonly number[], ratio: number) => number;
|
|
59
|
+
export declare const absolutePssMiB: (memory: AbsoluteExpoAndroidMemory) => number;
|
|
60
|
+
export declare const parseAbsoluteAndroidAccessibilityHierarchy: (source: string) => {
|
|
61
|
+
bounds: {
|
|
62
|
+
bottom: number;
|
|
63
|
+
left: number;
|
|
64
|
+
right: number;
|
|
65
|
+
top: number;
|
|
66
|
+
};
|
|
67
|
+
className: string;
|
|
68
|
+
clickable: boolean;
|
|
69
|
+
contentDescription: string;
|
|
70
|
+
enabled: boolean;
|
|
71
|
+
packageName: string;
|
|
72
|
+
resourceId: string;
|
|
73
|
+
text: string;
|
|
74
|
+
visible: boolean;
|
|
75
|
+
}[];
|
|
@@ -21,6 +21,7 @@ export * from './deviceCapabilities';
|
|
|
21
21
|
export * from './expoBridge';
|
|
22
22
|
export * from './expoCodeSigning';
|
|
23
23
|
export * from './expoDevController';
|
|
24
|
+
export * from './expoAndroidQuality';
|
|
24
25
|
export * from './expoNativeWatcher';
|
|
25
26
|
export * from './expoProject';
|
|
26
27
|
export * from './expoNativeObservability';
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@absolutejs/deploy": "0.25.14",
|
|
13
13
|
"@absolutejs/devices": "0.7.0",
|
|
14
14
|
"@absolutejs/devices-capacitor": "0.8.0",
|
|
15
|
-
"@absolutejs/devices-expo": "0.0.
|
|
15
|
+
"@absolutejs/devices-expo": "0.0.11",
|
|
16
16
|
"@absolutejs/http": "0.0.1",
|
|
17
17
|
"@absolutejs/pwa": "0.14.0",
|
|
18
18
|
"@capacitor/browser": "8.0.4",
|
|
@@ -475,6 +475,7 @@
|
|
|
475
475
|
"test:native:expo:android:hmr": "ABSOLUTE_TEST_NATIVE_EXPO_HMR_PLATFORM=android bun test tests/native/expo-hmr-conformance.test.ts",
|
|
476
476
|
"test:native:expo:android:observability": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID=1 bun test tests/native/expo-android-observability-conformance.test.ts",
|
|
477
477
|
"test:native:expo:android:picker": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_PICKER=1 bun test tests/native/expo-android-picker-conformance.test.ts",
|
|
478
|
+
"test:native:expo:android:quality": "ABSOLUTE_TEST_NATIVE_EXPO_HMR_PLATFORM=android ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_QUALITY=1 bun test tests/native/expo-hmr-conformance.test.ts",
|
|
478
479
|
"test:native:expo:android:updates": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_UPDATES=1 bun test tests/native/expo-android-update-conformance.test.ts",
|
|
479
480
|
"test:native:expo:android:upgrade": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_UPGRADE=1 bun test tests/native/expo-android-upgrade-conformance.test.ts",
|
|
480
481
|
"test:native:expo:ios:hmr": "ABSOLUTE_TEST_NATIVE_EXPO_HMR_PLATFORM=ios bun test tests/native/expo-hmr-conformance.test.ts",
|
|
@@ -534,7 +535,7 @@
|
|
|
534
535
|
]
|
|
535
536
|
}
|
|
536
537
|
},
|
|
537
|
-
"version": "0.20.0-beta.
|
|
538
|
+
"version": "0.20.0-beta.98",
|
|
538
539
|
"workspaces": [
|
|
539
540
|
"tests/fixtures/*",
|
|
540
541
|
"tests/fixtures/_packages/*"
|