We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a951dc9 commit 2ccb1abCopy full SHA for 2ccb1ab
libs/components/src/render/render.tsx
@@ -3,9 +3,9 @@ import {
3
type Component,
4
component$,
5
type JSXOutput,
6
- type QwikIntrinsicElements,
7
type Signal,
8
- Slot
+ Slot,
+ type PropsOf
9
} from "@qwik.dev/core";
10
11
// keyof slows the type server a bunch, instead we use the most common fallbacks
@@ -29,8 +29,8 @@ type RenderInternalProps<T extends AllowedFallbacks> = {
29
30
jsxType?: unknown;
31
movedProps?: Record<string, unknown>;
32
-} & QwikIntrinsicElements[T] &
33
- Record<`${string}$`, unknown>;
+} & PropsOf<T> &
+ Record<string, unknown>;
34
35
/**
36
* Creates an object that overrides bind:* props with undefined to prevent them from rendering in the DOM.
0 commit comments