@ikonai/sdk-react-ui 0.0.23 → 0.0.27
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/ikon-ui.d.ts +1 -1
- package/package.json +1 -1
- package/renderer/types.d.ts +1 -1
- package/renderer/ui-renderer.d.ts +1 -1
- package/surface.d.ts +1 -1
package/ikon-ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IkonClient } from '../../sdk
|
|
1
|
+
import { IkonClient } from '../../sdk/src/index.ts';
|
|
2
2
|
import { IkonUICore, IkonUiStreamListener, UiStyleListener, UiStylePayload } from '../../sdk-ui/src/index.ts';
|
|
3
3
|
import { IkonUiStoreEntry } from './surface';
|
|
4
4
|
export interface IkonUIConfig {
|
package/package.json
CHANGED
package/renderer/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UIPayload } from '../../../../shared/generated/src/index.ts';
|
|
2
2
|
import { UiNode } from '../../../sdk-ui/src/index.ts';
|
|
3
|
-
import { IkonClient, IkonVideoPlayback } from '../../../sdk
|
|
3
|
+
import { IkonClient, IkonVideoPlayback } from '../../../sdk/src/index.ts';
|
|
4
4
|
import { ComponentType, ReactNode } from 'react';
|
|
5
5
|
export { type UiUpdateType, type UiNodeProps, type UiNode, type UiNodeDiff, type UiSnapshot, type UiFullSnapshot, type UiDiffSnapshot, type UiSnapshotMetadata, type UiOptimisticPatchMetadata, type UiOptimisticReconcileMetadata, type TextDelta, type ParsedUiUpdate, type UiStoreSnapshot, type UiOptimisticPatchState, } from '../../../sdk-ui/src/index.ts';
|
|
6
6
|
export interface UiRenderContext {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IkonClient, IkonVideoPlayback } from '../../../sdk
|
|
1
|
+
import { IkonClient, IkonVideoPlayback } from '../../../sdk/src/index.ts';
|
|
2
2
|
import { UiStreamStore } from '../../../sdk-ui/src/index.ts';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
4
|
import { UiComponentLibrary } from './types';
|
package/surface.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UIStreamCategories } from '../../../shared/generated/src/index.ts';
|
|
2
2
|
import { UiStreamStore } from '../../sdk-ui/src/index.ts';
|
|
3
3
|
import { UiComponentLibrary } from './renderer';
|
|
4
|
-
import { IkonClient, IkonVideoPlayback } from '../../sdk
|
|
4
|
+
import { IkonClient, IkonVideoPlayback } from '../../sdk/src/index.ts';
|
|
5
5
|
export declare const IKON_UI_STREAM_CATEGORY: "ikon-ui";
|
|
6
6
|
export type IkonUiCategory = UIStreamCategories | typeof IKON_UI_STREAM_CATEGORY | (string & {});
|
|
7
7
|
export interface IkonUiStoreEntry {
|