@absolutejs/absolute 0.19.0-beta.1108 → 0.19.0-beta.1109
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 +27 -1
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +370 -142
- package/dist/index.js +3 -3
- package/dist/index.js.map +14 -14
- package/dist/src/cli/typeGraphCoherence.d.ts +32 -0
- package/dist/src/core/prepare.d.ts +3 -3
- package/dist/src/plugins/hmr.d.ts +3 -3
- package/package.json +7 -5
package/dist/index.js
CHANGED
|
@@ -43323,12 +43323,12 @@ function Iterator3(items, options) {
|
|
|
43323
43323
|
function RequiredArray(properties) {
|
|
43324
43324
|
return globalThis.Object.keys(properties).filter((key) => !IsOptional4(properties[key]));
|
|
43325
43325
|
}
|
|
43326
|
-
function
|
|
43326
|
+
function _Object_(properties, options) {
|
|
43327
43327
|
const required2 = RequiredArray(properties);
|
|
43328
43328
|
const schema = required2.length > 0 ? { [Kind2]: "Object", type: "object", required: required2, properties } : { [Kind2]: "Object", type: "object", properties };
|
|
43329
43329
|
return CreateType2(schema, options);
|
|
43330
43330
|
}
|
|
43331
|
-
var Object3 =
|
|
43331
|
+
var Object3 = _Object_;
|
|
43332
43332
|
|
|
43333
43333
|
// node_modules/@sinclair/typebox/build/esm/type/promise/promise.mjs
|
|
43334
43334
|
function Promise4(item, options) {
|
|
@@ -48428,5 +48428,5 @@ export {
|
|
|
48428
48428
|
ANGULAR_INIT_TIMEOUT_MS
|
|
48429
48429
|
};
|
|
48430
48430
|
|
|
48431
|
-
//# debugId=
|
|
48431
|
+
//# debugId=44A1C7CC46571ACA64756E2164756E21
|
|
48432
48432
|
//# sourceMappingURL=index.js.map
|