@contember/react-multipass-rendering
Advanced tools
Comparing version 1.2.0-alpha.3 to 1.2.0-alpha.4
@@ -7,3 +7,3 @@ var __defProp = Object.defineProperty; | ||
}; | ||
import { assertNever } from "./assertNever.js"; | ||
import { assertNever } from "@contember/utilities"; | ||
import { ChildrenAnalyzerError } from "./ChildrenAnalyzerError.js"; | ||
@@ -121,3 +121,3 @@ import { wrapError } from "./helpers/wrapError.js"; | ||
default: | ||
return assertNever(); | ||
return assertNever(specification); | ||
} | ||
@@ -151,3 +151,3 @@ } | ||
default: | ||
return assertNever(); | ||
return assertNever(specification); | ||
} | ||
@@ -154,0 +154,0 @@ } |
@@ -7,3 +7,3 @@ var __defProp = Object.defineProperty; | ||
}; | ||
import { assertNever } from "./assertNever.js"; | ||
import { assertNever } from "@contember/utilities"; | ||
import { ChildrenAnalyzerError } from "./ChildrenAnalyzerError.js"; | ||
@@ -121,3 +121,3 @@ import { wrapError } from "./helpers/wrapError.js"; | ||
default: | ||
return assertNever(); | ||
return assertNever(specification); | ||
} | ||
@@ -151,3 +151,3 @@ } | ||
default: | ||
return assertNever(); | ||
return assertNever(specification); | ||
} | ||
@@ -154,0 +154,0 @@ } |
{ | ||
"name": "@contember/react-multipass-rendering", | ||
"license": "Apache-2.0", | ||
"version": "1.2.0-alpha.3", | ||
"version": "1.2.0-alpha.4", | ||
"type": "module", | ||
@@ -30,2 +30,5 @@ "sideEffects": false, | ||
}, | ||
"dependencies": { | ||
"@contember/utilities": "1.2.0-alpha.4" | ||
}, | ||
"peerDependencies": { | ||
@@ -32,0 +35,0 @@ "react": "^17 || ^18" |
@@ -0,8 +1,9 @@ | ||
import { assertNever } from '@contember/utilities' | ||
import type { ElementType, ReactElement, ReactNode } from 'react' | ||
import { assertNever } from './assertNever' | ||
import type { BranchNodeList } from './BranchNodeList' | ||
import { ChildrenAnalyzerError } from './ChildrenAnalyzerError' | ||
import type { ChildrenAnalyzerOptions } from './ChildrenAnalyzerOptions' | ||
import type { LeafList } from './LeafList' | ||
import { getErrorMessage } from './helpers' | ||
import type { LeafList } from './LeafList' | ||
import { wrapError } from './helpers/wrapError' | ||
import type { | ||
@@ -16,3 +17,2 @@ DeclarationSiteNodeRepresentationFactory, | ||
} from './nodeSpecs' | ||
import { wrapError } from './helpers/wrapError' | ||
@@ -157,6 +157,6 @@ export class ChildrenAnalyzer< | ||
[staticMethod in ValidFactoryName]: | ||
| StaticContextFactory<any, StaticContext> | ||
| SyntheticChildrenFactory<any, StaticContext> | ||
| UnconstrainedLeafRepresentationFactory<any, AllLeavesRepresentation, StaticContext> | ||
| DeclarationSiteNodeRepresentationFactory<any, unknown, AllBranchNodesRepresentation, StaticContext> | ||
| StaticContextFactory<any, StaticContext> | ||
| SyntheticChildrenFactory<any, StaticContext> | ||
| UnconstrainedLeafRepresentationFactory<any, AllLeavesRepresentation, StaticContext> | ||
| DeclarationSiteNodeRepresentationFactory<any, unknown, AllBranchNodesRepresentation, StaticContext> | ||
} | ||
@@ -163,0 +163,0 @@ |
@@ -5,3 +5,6 @@ { | ||
"outDir": "../dist/types" | ||
} | ||
}, | ||
"references": [ | ||
{ "path": "../../utilities/src" } | ||
] | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
133152
2
106
1321
+ Added@contember/utilities@1.2.0-alpha.4(transitive)