@kuckit/sdk-react 2.0.7 → 3.0.2
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/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -360,7 +360,7 @@ interface NavTreeItem extends NavItem {
|
|
|
360
360
|
*/
|
|
361
361
|
interface KuckitNavProviderProps {
|
|
362
362
|
registry: NavRegistry;
|
|
363
|
-
children
|
|
363
|
+
children?: ReactNode;
|
|
364
364
|
}
|
|
365
365
|
declare function KuckitNavProvider({
|
|
366
366
|
registry,
|
|
@@ -576,7 +576,7 @@ declare const createClientModuleUnloadHandler: (modules: LoadedClientModule[]) =
|
|
|
576
576
|
*/
|
|
577
577
|
interface KuckitSlotProviderProps {
|
|
578
578
|
registry: SlotRegistry;
|
|
579
|
-
children
|
|
579
|
+
children?: ReactNode;
|
|
580
580
|
}
|
|
581
581
|
declare function KuckitSlotProvider({
|
|
582
582
|
registry,
|
|
@@ -639,7 +639,7 @@ declare function KuckitSlot({
|
|
|
639
639
|
interface KuckitRpcProviderProps {
|
|
640
640
|
/** The oRPC client instance */
|
|
641
641
|
client: unknown;
|
|
642
|
-
children
|
|
642
|
+
children?: ReactNode;
|
|
643
643
|
}
|
|
644
644
|
declare function KuckitRpcProvider({
|
|
645
645
|
client,
|