ripple 0.3.58 → 0.3.60
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 +29 -0
- package/package.json +5 -5
- package/src/jsx-runtime.d.ts +731 -514
- package/tests/server/basic.components.test.tsrx +1 -1
|
@@ -33,8 +33,8 @@ describe('basic server > components & composition', () => {
|
|
|
33
33
|
|
|
34
34
|
it('does not render a falsy component call', async () => {
|
|
35
35
|
component Card(props: PropsWithChildrenOptional<{ test: Component }>) {
|
|
36
|
+
// @ts-expect-error - ripple automatically handles falsy children
|
|
36
37
|
<div class="card">
|
|
37
|
-
// @ts-expect-error - ripple automatically handles falsy children
|
|
38
38
|
{props.children}
|
|
39
39
|
</div>
|
|
40
40
|
}
|