@ikonai/sdk-react-ui 1.0.41 → 1.0.42
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/app/use-ikon-app.d.ts +1 -1
- package/index.d.ts +1 -1
- package/index.js +1424 -1334
- package/package.json +1 -1
- package/renderer/index.d.ts +1 -1
- package/renderer/types.d.ts +1 -1
package/package.json
CHANGED
package/renderer/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export { UiComponentRegistry, createComponentLibrary, } from './component-librar
|
|
|
3
3
|
export { useUiStore } from './use-ui-store';
|
|
4
4
|
export { useUiNode } from './use-ui-node';
|
|
5
5
|
export { useRootView } from './use-root-view';
|
|
6
|
-
export type { UiComponentRenderer, UiComponentLibrary, UiNode, UiRenderContext, UiComponentRendererProps, ParsedUiUpdate, UiSnapshot, UiFullSnapshot, UiDiffSnapshot, UiNodeDiff, TextDelta, UiNodeProps, UiUpdateType, UiStoreSnapshot,
|
|
6
|
+
export type { UiComponentRenderer, UiComponentLibrary, UiNode, UiRenderContext, UiComponentRendererProps, ParsedUiUpdate, UiSnapshot, UiFullSnapshot, UiDiffSnapshot, UiNodeDiff, TextDelta, UiNodeProps, UiUpdateType, UiStoreSnapshot, } from './types';
|
package/renderer/types.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { UIPayload } from '../../../../shared/protocol/src/index.ts';
|
|
|
2
2
|
import { HandlerCache, UiNode, UiStreamStore } from '../../../sdk-ui/src/index.ts';
|
|
3
3
|
import { IkonClient, IkonVideoPlayback } from '../../../sdk/src/index.ts';
|
|
4
4
|
import { ComponentType, ReactNode } from 'react';
|
|
5
|
-
export { type UiUpdateType, type UiNodeProps, type UiNode, type UiNodeDiff, type UiSnapshot, type UiFullSnapshot, type UiDiffSnapshot, type UiSnapshotMetadata, type
|
|
5
|
+
export { type UiUpdateType, type UiNodeProps, type UiNode, type UiNodeDiff, type UiSnapshot, type UiFullSnapshot, type UiDiffSnapshot, type UiSnapshotMetadata, type TextDelta, type ParsedUiUpdate, type UiStoreSnapshot, } from '../../../sdk-ui/src/index.ts';
|
|
6
6
|
/**
|
|
7
7
|
* Context for rendering UI nodes.
|
|
8
8
|
* Provides access to payloads, action dispatch, and rendering utilities.
|