@ikonai/sdk-react-ui 1.0.40 → 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.
@@ -49,7 +49,7 @@ export interface UseIkonAppOptions {
49
49
  */
50
50
  backgroundAudio?: boolean;
51
51
  /**
52
- * Enable WebRTC for audio and video transport. Default: false
52
+ * Enable WebRTC for audio and video transport. Default: true
53
53
  */
54
54
  webRtc?: boolean;
55
55
  /**
package/index.d.ts CHANGED
@@ -8,10 +8,11 @@ export { IKON_UI_BASE_MODULE, createBaseResolvers, loadBaseModule, registerBaseM
8
8
  export { IKON_UI_MEDIA_MODULE, IKON_UI_VIDEO_CANVAS_TYPE, IKON_UI_VIDEO_URL_PLAYER_TYPE, createMediaResolvers, loadMediaModule, registerMediaModule } from './media/media-module';
9
9
  export { IKON_UI_SHADERTOY_MODULE, IKON_UI_SHADERTOY_TYPE, createShadertoyRendererResolver, loadShadertoyModule, registerShadertoyModule } from './shadertoy/shadertoy-module';
10
10
  export { UiRenderer, type UiRendererProps, UiComponentRegistry, createComponentLibrary, useUiStore, useUiNode, renderChildren } from './renderer';
11
- export type { UiComponentRenderer, UiComponentLibrary, UiNode, UiRenderContext, UiComponentRendererProps, ParsedUiUpdate, UiSnapshot, UiFullSnapshot, UiDiffSnapshot, UiNodeDiff, TextDelta, UiNodeProps, UiUpdateType, UiStoreSnapshot, UiOptimisticPatchState } from './renderer';
11
+ export type { UiComponentRenderer, UiComponentLibrary, UiNode, UiRenderContext, UiComponentRendererProps, ParsedUiUpdate, UiSnapshot, UiFullSnapshot, UiDiffSnapshot, UiNodeDiff, TextDelta, UiNodeProps, UiUpdateType, UiStoreSnapshot } from './renderer';
12
12
  export { UiStreamStore, type UiStylePayload } from '../../sdk-ui/src/index.ts';
13
13
  export { renderMotionLetters } from './shared/render-motion-letters';
14
14
  export { type AuthConfig, type AuthContextValue, type AuthSession, type AuthState, type AuthUser, type LoginMethod, clearAuthSession, loadAuthSession, saveAuthSession, sessionToUser, authenticateAnonymous, buildOAuthRedirectUrl, clearOAuthParams, parseOAuthCallback, parseOAuthError, sendMagicLink, type OAuthCallbackResult, type SendMagicLinkOptions, AuthProvider, useAuth, useAuthOptional, type AuthProviderProps, useAuthGuard, type UseAuthGuardOptions, type UseAuthGuardResult, } from './auth';
15
15
  export { ConnectionStateRenderer, type ConnectedRenderProps, type ConnectionStateRendererProps, useIkonApp, type IkonUiModuleRegistration, type UseIkonAppOptions, type UseIkonAppResult, } from './app';
16
16
  export { useLazyFont, useToasts, type Toast } from './hooks';
17
17
  export { I18nProvider, useI18n, type I18nContextValue, type I18nProviderProps } from './i18n';
18
+ export { InspectOverlay, type InspectElementPayload } from './inspect/inspect-overlay';