@absolutejs/absolute 0.20.0-beta.35 → 0.20.0-beta.37
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 +7 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +347 -63
- package/dist/dev/serverBootstrap.js +28 -0
- package/dist/mobile/index.js +13 -10
- package/dist/mobile/index.js.map +4 -4
- package/dist/mobile/remoteMacAgentEntry.js +11 -11
- package/dist/src/dev/serverEntryCopies.d.ts +3 -0
- package/dist/src/mobile/iosRelease.d.ts +3 -1
- package/dist/src/mobile/iosSimulatorController.d.ts +6 -1
- package/dist/src/mobile/mobileInspect.d.ts +110 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -254,6 +254,13 @@ edit Swift/Kotlin, or maintain native bootstrap code. Type-only imports and test
|
|
|
254
254
|
sources do not provision plugins. `absolute mobile doctor release` rejects a
|
|
255
255
|
missing or mismatched plugin before release.
|
|
256
256
|
|
|
257
|
+
Run `absolute mobile inspect` from an application root for a read-only summary
|
|
258
|
+
of the effective mobile config, runtime package versions, discovered
|
|
259
|
+
capabilities/plugins, native-project state, embedded routes/frameworks, bundle
|
|
260
|
+
validation, and release projection. Add `--json` for a redacted CI or support
|
|
261
|
+
artifact; it omits credentials, device/account identifiers, absolute paths, and
|
|
262
|
+
detailed doctor messages. See [mobile project inspection](docs/MOBILE_INSPECT.md).
|
|
263
|
+
|
|
257
264
|
`keyboard` provides portable visibility, CSS-pixel height, dismissal, and
|
|
258
265
|
cleanup-safe change events. `systemBars` controls modern edge-to-edge status and
|
|
259
266
|
navigation bar foreground appearance/visibility through Capacitor 8 core. Its
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-6Q6jJy/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-6Q6jJy/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
|
|
|
48
48
|
getWarningController()?.maybeWarn(primitiveName);
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// .angular-partial-tmp-
|
|
51
|
+
// .angular-partial-tmp-6Q6jJy/src/core/streamingSlotRegistry.ts
|
|
52
52
|
var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
|
|
53
53
|
var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
|
|
54
54
|
var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
|