@cloudflare/realtimekit-react-ui 0.0.0 → 1.0.0-staging.10

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.
Files changed (46) hide show
  1. package/README.md +85 -0
  2. package/dist/components/index.d.ts +1 -0
  3. package/dist/components/index.js +17 -0
  4. package/dist/components/stencil-generated/index.d.ts +139 -0
  5. package/dist/components/stencil-generated/index.js +149 -0
  6. package/dist/components/stencil-generated/react-component-lib/createComponent.d.ts +10 -0
  7. package/dist/components/stencil-generated/react-component-lib/createComponent.js +111 -0
  8. package/dist/components/stencil-generated/react-component-lib/createOverlayComponent.d.ts +21 -0
  9. package/dist/components/stencil-generated/react-component-lib/createOverlayComponent.js +115 -0
  10. package/dist/components/stencil-generated/react-component-lib/index.d.ts +2 -0
  11. package/dist/components/stencil-generated/react-component-lib/index.js +7 -0
  12. package/dist/components/stencil-generated/react-component-lib/interfaces.d.ts +29 -0
  13. package/dist/components/stencil-generated/react-component-lib/interfaces.js +2 -0
  14. package/dist/components/stencil-generated/react-component-lib/utils/attachProps.d.ts +16 -0
  15. package/dist/components/stencil-generated/react-component-lib/utils/attachProps.js +115 -0
  16. package/dist/components/stencil-generated/react-component-lib/utils/case.d.ts +2 -0
  17. package/dist/components/stencil-generated/react-component-lib/utils/case.js +11 -0
  18. package/dist/components/stencil-generated/react-component-lib/utils/dev.d.ts +2 -0
  19. package/dist/components/stencil-generated/react-component-lib/utils/dev.js +17 -0
  20. package/dist/components/stencil-generated/react-component-lib/utils/index.d.ts +10 -0
  21. package/dist/components/stencil-generated/react-component-lib/utils/index.js +55 -0
  22. package/dist/es/components/index.d.ts +1 -0
  23. package/dist/es/components/index.js +1 -0
  24. package/dist/es/components/stencil-generated/index.d.ts +139 -0
  25. package/dist/es/components/stencil-generated/index.js +144 -0
  26. package/dist/es/components/stencil-generated/react-component-lib/createComponent.d.ts +10 -0
  27. package/dist/es/components/stencil-generated/react-component-lib/createComponent.js +74 -0
  28. package/dist/es/components/stencil-generated/react-component-lib/createOverlayComponent.d.ts +21 -0
  29. package/dist/es/components/stencil-generated/react-component-lib/createOverlayComponent.js +108 -0
  30. package/dist/es/components/stencil-generated/react-component-lib/index.d.ts +2 -0
  31. package/dist/es/components/stencil-generated/react-component-lib/index.js +2 -0
  32. package/dist/es/components/stencil-generated/react-component-lib/interfaces.d.ts +29 -0
  33. package/dist/es/components/stencil-generated/react-component-lib/interfaces.js +1 -0
  34. package/dist/es/components/stencil-generated/react-component-lib/utils/attachProps.d.ts +16 -0
  35. package/dist/es/components/stencil-generated/react-component-lib/utils/attachProps.js +107 -0
  36. package/dist/es/components/stencil-generated/react-component-lib/utils/case.d.ts +2 -0
  37. package/dist/es/components/stencil-generated/react-component-lib/utils/case.js +6 -0
  38. package/dist/es/components/stencil-generated/react-component-lib/utils/dev.d.ts +2 -0
  39. package/dist/es/components/stencil-generated/react-component-lib/utils/dev.js +12 -0
  40. package/dist/es/components/stencil-generated/react-component-lib/utils/index.d.ts +10 -0
  41. package/dist/es/components/stencil-generated/react-component-lib/utils/index.js +31 -0
  42. package/dist/es/index.d.ts +2 -0
  43. package/dist/es/index.js +2 -0
  44. package/dist/index.d.ts +2 -0
  45. package/dist/index.js +18 -0
  46. package/package.json +37 -3
package/README.md ADDED
@@ -0,0 +1,85 @@
1
+ # RealtimeKit React UI
2
+
3
+ **RealtimeKit React UI** provides pre-built, ready-to-use UI components for React for integrating with [Cloudflare RealtimeKit](https://npmjs.com/package/@cloudflare/realtimekit).
4
+
5
+ If you're using a different framework or no framework (see HTML), we also offer dedicated packages:
6
+
7
+ - [Angular](https://npmjs.com/package/@cloudflare/realtimekit-angular-ui)
8
+ - [HTML (Web Components)](https://npmjs.com/package/@cloudflare/realtimekit-ui)
9
+
10
+ ## Usage
11
+
12
+ First, install RealtimeKit UI along with [RealtimeKit](https://npmjs.com/package/@cloudflare/realtimekit):
13
+
14
+ > `@cloudflare/realtimekit` is the core package that offers APIs to handle meetings in the client side.
15
+ > You use it to access and perform actions in a meeting.
16
+
17
+ ```sh
18
+ npm i @cloudflare/realtimekit-react-ui @cloudflare/realtimekit
19
+ ```
20
+
21
+ ### Simple Usage
22
+
23
+ This is the simplest way to use RealtimeKit UI, where you don't have to manage the entire meeting UI on your own. Everything will be taken care of by the `RtkMeeting` component.
24
+
25
+ Use the `useRealtimeKitClient()` hook to access the `meeting` instance state, as well as the `meeting` instance initializer method.
26
+
27
+ Then pass the `authToken` of a participant that you receive from your API.
28
+
29
+ > You call the RealtimeKit Add Participant API from your own backend API to get this `authToken`
30
+ > to use with RealtimeKit.
31
+
32
+ ```jsx
33
+ import { useRealtimeKitClient } from '@cloudflare/realtimekit/react';
34
+
35
+ function App() {
36
+ const [meeting, initMeeting] = useRealtimeKitClient();
37
+
38
+ useEffect(() => {
39
+ initMeeting({
40
+ authToken: '<auth-token>',
41
+ roomName: '<room-name>',
42
+ defaults: {
43
+ audio: true,
44
+ video: true,
45
+ },
46
+ });
47
+ }, []);
48
+
49
+ return <RtkMeeting meeting={meeting} />;
50
+ }
51
+ ```
52
+
53
+ ### Using `<RtkUiProvider>`
54
+
55
+ If you wish to use individual UI components to build your desired UI, you can use the `RtkUiProvider` component to provide the meeting instance to all child components to make development easier:
56
+
57
+ ```jsx
58
+ import { useRealtimeKitClient } from '@cloudflare/realtimekit/react';
59
+ import {
60
+ RtkUiProvider,
61
+ RtkMeeting,
62
+ RtkSimpleGrid,
63
+ } from '@cloudflare/realtimekit-react-ui';
64
+
65
+ function App() {
66
+ const [meeting, initMeeting] = useRealtimeKitClient();
67
+
68
+ useEffect(() => {
69
+ initMeeting({
70
+ authToken: '<auth-token>',
71
+ roomName: '<room-name>',
72
+ defaults: {
73
+ audio: true,
74
+ video: true,
75
+ },
76
+ });
77
+ }, []);
78
+
79
+ return (
80
+ <RtkUiProvider meeting={meeting}>
81
+ <RtkSimpleGrid />
82
+ </RtkUiProvider>
83
+ );
84
+ }
85
+ ```
@@ -0,0 +1 @@
1
+ export * from './stencil-generated/index';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./stencil-generated/index"), exports);
@@ -0,0 +1,139 @@
1
+ import type { JSX } from '@cloudflare/realtimekit-ui';
2
+ export declare const RtkAi: import("react").ForwardRefExoticComponent<JSX.RtkAi & Omit<import("react").HTMLAttributes<HTMLRtkAiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAiElement>>;
3
+ export declare const RtkAiToggle: import("react").ForwardRefExoticComponent<JSX.RtkAiToggle & Omit<import("react").HTMLAttributes<HTMLRtkAiToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAiToggleElement>>;
4
+ export declare const RtkAiTranscriptions: import("react").ForwardRefExoticComponent<JSX.RtkAiTranscriptions & Omit<import("react").HTMLAttributes<HTMLRtkAiTranscriptionsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAiTranscriptionsElement>>;
5
+ export declare const RtkAudioGrid: import("react").ForwardRefExoticComponent<JSX.RtkAudioGrid & Omit<import("react").HTMLAttributes<HTMLRtkAudioGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAudioGridElement>>;
6
+ export declare const RtkAudioTile: import("react").ForwardRefExoticComponent<JSX.RtkAudioTile & Omit<import("react").HTMLAttributes<HTMLRtkAudioTileElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAudioTileElement>>;
7
+ export declare const RtkAudioVisualizer: import("react").ForwardRefExoticComponent<JSX.RtkAudioVisualizer & Omit<import("react").HTMLAttributes<HTMLRtkAudioVisualizerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAudioVisualizerElement>>;
8
+ export declare const RtkAvatar: import("react").ForwardRefExoticComponent<JSX.RtkAvatar & Omit<import("react").HTMLAttributes<HTMLRtkAvatarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkAvatarElement>>;
9
+ export declare const RtkBreakoutRoomManager: import("react").ForwardRefExoticComponent<JSX.RtkBreakoutRoomManager & Omit<import("react").HTMLAttributes<HTMLRtkBreakoutRoomManagerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkBreakoutRoomManagerElement>>;
10
+ export declare const RtkBreakoutRoomParticipants: import("react").ForwardRefExoticComponent<JSX.RtkBreakoutRoomParticipants & Omit<import("react").HTMLAttributes<HTMLRtkBreakoutRoomParticipantsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkBreakoutRoomParticipantsElement>>;
11
+ export declare const RtkBreakoutRoomsManager: import("react").ForwardRefExoticComponent<JSX.RtkBreakoutRoomsManager & Omit<import("react").HTMLAttributes<HTMLRtkBreakoutRoomsManagerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkBreakoutRoomsManagerElement>>;
12
+ export declare const RtkBreakoutRoomsToggle: import("react").ForwardRefExoticComponent<JSX.RtkBreakoutRoomsToggle & Omit<import("react").HTMLAttributes<HTMLRtkBreakoutRoomsToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkBreakoutRoomsToggleElement>>;
13
+ export declare const RtkBroadcastMessageModal: import("react").ForwardRefExoticComponent<JSX.RtkBroadcastMessageModal & Omit<import("react").HTMLAttributes<HTMLRtkBroadcastMessageModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkBroadcastMessageModalElement>>;
14
+ export declare const RtkButton: import("react").ForwardRefExoticComponent<JSX.RtkButton & Omit<import("react").HTMLAttributes<HTMLRtkButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkButtonElement>>;
15
+ export declare const RtkCameraSelector: import("react").ForwardRefExoticComponent<JSX.RtkCameraSelector & Omit<import("react").HTMLAttributes<HTMLRtkCameraSelectorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkCameraSelectorElement>>;
16
+ export declare const RtkCameraToggle: import("react").ForwardRefExoticComponent<JSX.RtkCameraToggle & Omit<import("react").HTMLAttributes<HTMLRtkCameraToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkCameraToggleElement>>;
17
+ export declare const RtkCaptionToggle: import("react").ForwardRefExoticComponent<JSX.RtkCaptionToggle & Omit<import("react").HTMLAttributes<HTMLRtkCaptionToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkCaptionToggleElement>>;
18
+ export declare const RtkChannelCreator: import("react").ForwardRefExoticComponent<JSX.RtkChannelCreator & Omit<import("react").HTMLAttributes<HTMLRtkChannelCreatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChannelCreatorElement>>;
19
+ export declare const RtkChannelDetails: import("react").ForwardRefExoticComponent<JSX.RtkChannelDetails & Omit<import("react").HTMLAttributes<HTMLRtkChannelDetailsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChannelDetailsElement>>;
20
+ export declare const RtkChannelHeader: import("react").ForwardRefExoticComponent<JSX.RtkChannelHeader & Omit<import("react").HTMLAttributes<HTMLRtkChannelHeaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChannelHeaderElement>>;
21
+ export declare const RtkChannelSelectorUi: import("react").ForwardRefExoticComponent<JSX.RtkChannelSelectorUi & Omit<import("react").HTMLAttributes<HTMLRtkChannelSelectorUiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChannelSelectorUiElement>>;
22
+ export declare const RtkChannelSelectorView: import("react").ForwardRefExoticComponent<JSX.RtkChannelSelectorView & Omit<import("react").HTMLAttributes<HTMLRtkChannelSelectorViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChannelSelectorViewElement>>;
23
+ export declare const RtkChat: import("react").ForwardRefExoticComponent<JSX.RtkChat & Omit<import("react").HTMLAttributes<HTMLRtkChatElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatElement>>;
24
+ export declare const RtkChatComposerUi: import("react").ForwardRefExoticComponent<JSX.RtkChatComposerUi & Omit<import("react").HTMLAttributes<HTMLRtkChatComposerUiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatComposerUiElement>>;
25
+ export declare const RtkChatComposerView: import("react").ForwardRefExoticComponent<JSX.RtkChatComposerView & Omit<import("react").HTMLAttributes<HTMLRtkChatComposerViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatComposerViewElement>>;
26
+ export declare const RtkChatMessage: import("react").ForwardRefExoticComponent<JSX.RtkChatMessage & Omit<import("react").HTMLAttributes<HTMLRtkChatMessageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatMessageElement>>;
27
+ export declare const RtkChatMessagesUi: import("react").ForwardRefExoticComponent<JSX.RtkChatMessagesUi & Omit<import("react").HTMLAttributes<HTMLRtkChatMessagesUiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatMessagesUiElement>>;
28
+ export declare const RtkChatMessagesUiPaginated: import("react").ForwardRefExoticComponent<JSX.RtkChatMessagesUiPaginated & Omit<import("react").HTMLAttributes<HTMLRtkChatMessagesUiPaginatedElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatMessagesUiPaginatedElement>>;
29
+ export declare const RtkChatSearchResults: import("react").ForwardRefExoticComponent<JSX.RtkChatSearchResults & Omit<import("react").HTMLAttributes<HTMLRtkChatSearchResultsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatSearchResultsElement>>;
30
+ export declare const RtkChatSelectorUi: import("react").ForwardRefExoticComponent<JSX.RtkChatSelectorUi & Omit<import("react").HTMLAttributes<HTMLRtkChatSelectorUiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatSelectorUiElement>>;
31
+ export declare const RtkChatToggle: import("react").ForwardRefExoticComponent<JSX.RtkChatToggle & Omit<import("react").HTMLAttributes<HTMLRtkChatToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkChatToggleElement>>;
32
+ export declare const RtkClock: import("react").ForwardRefExoticComponent<JSX.RtkClock & Omit<import("react").HTMLAttributes<HTMLRtkClockElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkClockElement>>;
33
+ export declare const RtkConfirmationModal: import("react").ForwardRefExoticComponent<JSX.RtkConfirmationModal & Omit<import("react").HTMLAttributes<HTMLRtkConfirmationModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkConfirmationModalElement>>;
34
+ export declare const RtkControlbar: import("react").ForwardRefExoticComponent<JSX.RtkControlbar & Omit<import("react").HTMLAttributes<HTMLRtkControlbarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkControlbarElement>>;
35
+ export declare const RtkControlbarButton: import("react").ForwardRefExoticComponent<JSX.RtkControlbarButton & Omit<import("react").HTMLAttributes<HTMLRtkControlbarButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkControlbarButtonElement>>;
36
+ export declare const RtkCounter: import("react").ForwardRefExoticComponent<JSX.RtkCounter & Omit<import("react").HTMLAttributes<HTMLRtkCounterElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkCounterElement>>;
37
+ export declare const RtkDebugger: import("react").ForwardRefExoticComponent<JSX.RtkDebugger & Omit<import("react").HTMLAttributes<HTMLRtkDebuggerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDebuggerElement>>;
38
+ export declare const RtkDebuggerAudio: import("react").ForwardRefExoticComponent<JSX.RtkDebuggerAudio & Omit<import("react").HTMLAttributes<HTMLRtkDebuggerAudioElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDebuggerAudioElement>>;
39
+ export declare const RtkDebuggerScreenshare: import("react").ForwardRefExoticComponent<JSX.RtkDebuggerScreenshare & Omit<import("react").HTMLAttributes<HTMLRtkDebuggerScreenshareElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDebuggerScreenshareElement>>;
40
+ export declare const RtkDebuggerSystem: import("react").ForwardRefExoticComponent<JSX.RtkDebuggerSystem & Omit<import("react").HTMLAttributes<HTMLRtkDebuggerSystemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDebuggerSystemElement>>;
41
+ export declare const RtkDebuggerToggle: import("react").ForwardRefExoticComponent<JSX.RtkDebuggerToggle & Omit<import("react").HTMLAttributes<HTMLRtkDebuggerToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDebuggerToggleElement>>;
42
+ export declare const RtkDebuggerVideo: import("react").ForwardRefExoticComponent<JSX.RtkDebuggerVideo & Omit<import("react").HTMLAttributes<HTMLRtkDebuggerVideoElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDebuggerVideoElement>>;
43
+ export declare const RtkDialog: import("react").ForwardRefExoticComponent<JSX.RtkDialog & Omit<import("react").HTMLAttributes<HTMLRtkDialogElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDialogElement>>;
44
+ export declare const RtkDialogManager: import("react").ForwardRefExoticComponent<JSX.RtkDialogManager & Omit<import("react").HTMLAttributes<HTMLRtkDialogManagerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDialogManagerElement>>;
45
+ export declare const RtkDraftAttachmentView: import("react").ForwardRefExoticComponent<JSX.RtkDraftAttachmentView & Omit<import("react").HTMLAttributes<HTMLRtkDraftAttachmentViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkDraftAttachmentViewElement>>;
46
+ export declare const RtkEmojiPicker: import("react").ForwardRefExoticComponent<JSX.RtkEmojiPicker & Omit<import("react").HTMLAttributes<HTMLRtkEmojiPickerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkEmojiPickerElement>>;
47
+ export declare const RtkEmojiPickerButton: import("react").ForwardRefExoticComponent<JSX.RtkEmojiPickerButton & Omit<import("react").HTMLAttributes<HTMLRtkEmojiPickerButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkEmojiPickerButtonElement>>;
48
+ export declare const RtkEndedScreen: import("react").ForwardRefExoticComponent<JSX.RtkEndedScreen & Omit<import("react").HTMLAttributes<HTMLRtkEndedScreenElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkEndedScreenElement>>;
49
+ export declare const RtkFileDropzone: import("react").ForwardRefExoticComponent<JSX.RtkFileDropzone & Omit<import("react").HTMLAttributes<HTMLRtkFileDropzoneElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkFileDropzoneElement>>;
50
+ export declare const RtkFileMessage: import("react").ForwardRefExoticComponent<JSX.RtkFileMessage & Omit<import("react").HTMLAttributes<HTMLRtkFileMessageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkFileMessageElement>>;
51
+ export declare const RtkFileMessageView: import("react").ForwardRefExoticComponent<JSX.RtkFileMessageView & Omit<import("react").HTMLAttributes<HTMLRtkFileMessageViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkFileMessageViewElement>>;
52
+ export declare const RtkFilePickerButton: import("react").ForwardRefExoticComponent<JSX.RtkFilePickerButton & Omit<import("react").HTMLAttributes<HTMLRtkFilePickerButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkFilePickerButtonElement>>;
53
+ export declare const RtkFullscreenToggle: import("react").ForwardRefExoticComponent<JSX.RtkFullscreenToggle & Omit<import("react").HTMLAttributes<HTMLRtkFullscreenToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkFullscreenToggleElement>>;
54
+ export declare const RtkGrid: import("react").ForwardRefExoticComponent<JSX.RtkGrid & Omit<import("react").HTMLAttributes<HTMLRtkGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkGridElement>>;
55
+ export declare const RtkGridPagination: import("react").ForwardRefExoticComponent<JSX.RtkGridPagination & Omit<import("react").HTMLAttributes<HTMLRtkGridPaginationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkGridPaginationElement>>;
56
+ export declare const RtkHeader: import("react").ForwardRefExoticComponent<JSX.RtkHeader & Omit<import("react").HTMLAttributes<HTMLRtkHeaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkHeaderElement>>;
57
+ export declare const RtkIcon: import("react").ForwardRefExoticComponent<JSX.RtkIcon & Omit<import("react").HTMLAttributes<HTMLRtkIconElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkIconElement>>;
58
+ export declare const RtkIdleScreen: import("react").ForwardRefExoticComponent<JSX.RtkIdleScreen & Omit<import("react").HTMLAttributes<HTMLRtkIdleScreenElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkIdleScreenElement>>;
59
+ export declare const RtkImageMessage: import("react").ForwardRefExoticComponent<JSX.RtkImageMessage & Omit<import("react").HTMLAttributes<HTMLRtkImageMessageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkImageMessageElement>>;
60
+ export declare const RtkImageMessageView: import("react").ForwardRefExoticComponent<JSX.RtkImageMessageView & Omit<import("react").HTMLAttributes<HTMLRtkImageMessageViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkImageMessageViewElement>>;
61
+ export declare const RtkImageViewer: import("react").ForwardRefExoticComponent<JSX.RtkImageViewer & Omit<import("react").HTMLAttributes<HTMLRtkImageViewerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkImageViewerElement>>;
62
+ export declare const RtkInformationTooltip: import("react").ForwardRefExoticComponent<JSX.RtkInformationTooltip & Omit<import("react").HTMLAttributes<HTMLRtkInformationTooltipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkInformationTooltipElement>>;
63
+ export declare const RtkJoinStage: import("react").ForwardRefExoticComponent<JSX.RtkJoinStage & Omit<import("react").HTMLAttributes<HTMLRtkJoinStageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkJoinStageElement>>;
64
+ export declare const RtkLeaveButton: import("react").ForwardRefExoticComponent<JSX.RtkLeaveButton & Omit<import("react").HTMLAttributes<HTMLRtkLeaveButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkLeaveButtonElement>>;
65
+ export declare const RtkLeaveMeeting: import("react").ForwardRefExoticComponent<JSX.RtkLeaveMeeting & Omit<import("react").HTMLAttributes<HTMLRtkLeaveMeetingElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkLeaveMeetingElement>>;
66
+ export declare const RtkLivestreamIndicator: import("react").ForwardRefExoticComponent<JSX.RtkLivestreamIndicator & Omit<import("react").HTMLAttributes<HTMLRtkLivestreamIndicatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkLivestreamIndicatorElement>>;
67
+ export declare const RtkLivestreamPlayer: import("react").ForwardRefExoticComponent<JSX.RtkLivestreamPlayer & Omit<import("react").HTMLAttributes<HTMLRtkLivestreamPlayerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkLivestreamPlayerElement>>;
68
+ export declare const RtkLivestreamToggle: import("react").ForwardRefExoticComponent<JSX.RtkLivestreamToggle & Omit<import("react").HTMLAttributes<HTMLRtkLivestreamToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkLivestreamToggleElement>>;
69
+ export declare const RtkLogo: import("react").ForwardRefExoticComponent<JSX.RtkLogo & Omit<import("react").HTMLAttributes<HTMLRtkLogoElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkLogoElement>>;
70
+ export declare const RtkMarkdownView: import("react").ForwardRefExoticComponent<JSX.RtkMarkdownView & Omit<import("react").HTMLAttributes<HTMLRtkMarkdownViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMarkdownViewElement>>;
71
+ export declare const RtkMeeting: import("react").ForwardRefExoticComponent<JSX.RtkMeeting & Omit<import("react").HTMLAttributes<HTMLRtkMeetingElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMeetingElement>>;
72
+ export declare const RtkMeetingTitle: import("react").ForwardRefExoticComponent<JSX.RtkMeetingTitle & Omit<import("react").HTMLAttributes<HTMLRtkMeetingTitleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMeetingTitleElement>>;
73
+ export declare const RtkMenu: import("react").ForwardRefExoticComponent<JSX.RtkMenu & Omit<import("react").HTMLAttributes<HTMLRtkMenuElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMenuElement>>;
74
+ export declare const RtkMenuItem: import("react").ForwardRefExoticComponent<JSX.RtkMenuItem & Omit<import("react").HTMLAttributes<HTMLRtkMenuItemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMenuItemElement>>;
75
+ export declare const RtkMenuList: import("react").ForwardRefExoticComponent<JSX.RtkMenuList & Omit<import("react").HTMLAttributes<HTMLRtkMenuListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMenuListElement>>;
76
+ export declare const RtkMessageListView: import("react").ForwardRefExoticComponent<JSX.RtkMessageListView & Omit<import("react").HTMLAttributes<HTMLRtkMessageListViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMessageListViewElement>>;
77
+ export declare const RtkMessageView: import("react").ForwardRefExoticComponent<JSX.RtkMessageView & Omit<import("react").HTMLAttributes<HTMLRtkMessageViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMessageViewElement>>;
78
+ export declare const RtkMicToggle: import("react").ForwardRefExoticComponent<JSX.RtkMicToggle & Omit<import("react").HTMLAttributes<HTMLRtkMicToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMicToggleElement>>;
79
+ export declare const RtkMicrophoneSelector: import("react").ForwardRefExoticComponent<JSX.RtkMicrophoneSelector & Omit<import("react").HTMLAttributes<HTMLRtkMicrophoneSelectorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMicrophoneSelectorElement>>;
80
+ export declare const RtkMixedGrid: import("react").ForwardRefExoticComponent<JSX.RtkMixedGrid & Omit<import("react").HTMLAttributes<HTMLRtkMixedGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMixedGridElement>>;
81
+ export declare const RtkMoreToggle: import("react").ForwardRefExoticComponent<JSX.RtkMoreToggle & Omit<import("react").HTMLAttributes<HTMLRtkMoreToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMoreToggleElement>>;
82
+ export declare const RtkMuteAllButton: import("react").ForwardRefExoticComponent<JSX.RtkMuteAllButton & Omit<import("react").HTMLAttributes<HTMLRtkMuteAllButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMuteAllButtonElement>>;
83
+ export declare const RtkMuteAllConfirmation: import("react").ForwardRefExoticComponent<JSX.RtkMuteAllConfirmation & Omit<import("react").HTMLAttributes<HTMLRtkMuteAllConfirmationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkMuteAllConfirmationElement>>;
84
+ export declare const RtkNameTag: import("react").ForwardRefExoticComponent<JSX.RtkNameTag & Omit<import("react").HTMLAttributes<HTMLRtkNameTagElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkNameTagElement>>;
85
+ export declare const RtkNetworkIndicator: import("react").ForwardRefExoticComponent<JSX.RtkNetworkIndicator & Omit<import("react").HTMLAttributes<HTMLRtkNetworkIndicatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkNetworkIndicatorElement>>;
86
+ export declare const RtkNotification: import("react").ForwardRefExoticComponent<JSX.RtkNotification & Omit<import("react").HTMLAttributes<HTMLRtkNotificationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkNotificationElement>>;
87
+ export declare const RtkNotifications: import("react").ForwardRefExoticComponent<JSX.RtkNotifications & Omit<import("react").HTMLAttributes<HTMLRtkNotificationsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkNotificationsElement>>;
88
+ export declare const RtkOverlayModal: import("react").ForwardRefExoticComponent<JSX.RtkOverlayModal & Omit<import("react").HTMLAttributes<HTMLRtkOverlayModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkOverlayModalElement>>;
89
+ export declare const RtkPaginatedList: import("react").ForwardRefExoticComponent<JSX.RtkPaginatedList & Omit<import("react").HTMLAttributes<HTMLRtkPaginatedListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPaginatedListElement>>;
90
+ export declare const RtkParticipant: import("react").ForwardRefExoticComponent<JSX.RtkParticipant & Omit<import("react").HTMLAttributes<HTMLRtkParticipantElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantElement>>;
91
+ export declare const RtkParticipantCount: import("react").ForwardRefExoticComponent<JSX.RtkParticipantCount & Omit<import("react").HTMLAttributes<HTMLRtkParticipantCountElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantCountElement>>;
92
+ export declare const RtkParticipantSetup: import("react").ForwardRefExoticComponent<JSX.RtkParticipantSetup & Omit<import("react").HTMLAttributes<HTMLRtkParticipantSetupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantSetupElement>>;
93
+ export declare const RtkParticipantTile: import("react").ForwardRefExoticComponent<JSX.RtkParticipantTile & Omit<import("react").HTMLAttributes<HTMLRtkParticipantTileElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantTileElement>>;
94
+ export declare const RtkParticipants: import("react").ForwardRefExoticComponent<JSX.RtkParticipants & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsElement>>;
95
+ export declare const RtkParticipantsAudio: import("react").ForwardRefExoticComponent<JSX.RtkParticipantsAudio & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsAudioElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsAudioElement>>;
96
+ export declare const RtkParticipantsStageList: import("react").ForwardRefExoticComponent<JSX.RtkParticipantsStageList & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsStageListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsStageListElement>>;
97
+ export declare const RtkParticipantsStageQueue: import("react").ForwardRefExoticComponent<JSX.RtkParticipantsStageQueue & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsStageQueueElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsStageQueueElement>>;
98
+ export declare const RtkParticipantsToggle: import("react").ForwardRefExoticComponent<JSX.RtkParticipantsToggle & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsToggleElement>>;
99
+ export declare const RtkParticipantsViewerList: import("react").ForwardRefExoticComponent<JSX.RtkParticipantsViewerList & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsViewerListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsViewerListElement>>;
100
+ export declare const RtkParticipantsWaitingList: import("react").ForwardRefExoticComponent<JSX.RtkParticipantsWaitingList & Omit<import("react").HTMLAttributes<HTMLRtkParticipantsWaitingListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkParticipantsWaitingListElement>>;
101
+ export declare const RtkPermissionsMessage: import("react").ForwardRefExoticComponent<JSX.RtkPermissionsMessage & Omit<import("react").HTMLAttributes<HTMLRtkPermissionsMessageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPermissionsMessageElement>>;
102
+ export declare const RtkPipToggle: import("react").ForwardRefExoticComponent<JSX.RtkPipToggle & Omit<import("react").HTMLAttributes<HTMLRtkPipToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPipToggleElement>>;
103
+ export declare const RtkPluginMain: import("react").ForwardRefExoticComponent<JSX.RtkPluginMain & Omit<import("react").HTMLAttributes<HTMLRtkPluginMainElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPluginMainElement>>;
104
+ export declare const RtkPlugins: import("react").ForwardRefExoticComponent<JSX.RtkPlugins & Omit<import("react").HTMLAttributes<HTMLRtkPluginsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPluginsElement>>;
105
+ export declare const RtkPluginsToggle: import("react").ForwardRefExoticComponent<JSX.RtkPluginsToggle & Omit<import("react").HTMLAttributes<HTMLRtkPluginsToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPluginsToggleElement>>;
106
+ export declare const RtkPoll: import("react").ForwardRefExoticComponent<JSX.RtkPoll & Omit<import("react").HTMLAttributes<HTMLRtkPollElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPollElement>>;
107
+ export declare const RtkPollForm: import("react").ForwardRefExoticComponent<JSX.RtkPollForm & Omit<import("react").HTMLAttributes<HTMLRtkPollFormElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPollFormElement>>;
108
+ export declare const RtkPolls: import("react").ForwardRefExoticComponent<JSX.RtkPolls & Omit<import("react").HTMLAttributes<HTMLRtkPollsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPollsElement>>;
109
+ export declare const RtkPollsToggle: import("react").ForwardRefExoticComponent<JSX.RtkPollsToggle & Omit<import("react").HTMLAttributes<HTMLRtkPollsToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkPollsToggleElement>>;
110
+ export declare const RtkRecordingIndicator: import("react").ForwardRefExoticComponent<JSX.RtkRecordingIndicator & Omit<import("react").HTMLAttributes<HTMLRtkRecordingIndicatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkRecordingIndicatorElement>>;
111
+ export declare const RtkRecordingToggle: import("react").ForwardRefExoticComponent<JSX.RtkRecordingToggle & Omit<import("react").HTMLAttributes<HTMLRtkRecordingToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkRecordingToggleElement>>;
112
+ export declare const RtkScreenShareToggle: import("react").ForwardRefExoticComponent<JSX.RtkScreenShareToggle & Omit<import("react").HTMLAttributes<HTMLRtkScreenShareToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkScreenShareToggleElement>>;
113
+ export declare const RtkScreenshareView: import("react").ForwardRefExoticComponent<JSX.RtkScreenshareView & Omit<import("react").HTMLAttributes<HTMLRtkScreenshareViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkScreenshareViewElement>>;
114
+ export declare const RtkSettings: import("react").ForwardRefExoticComponent<JSX.RtkSettings & Omit<import("react").HTMLAttributes<HTMLRtkSettingsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSettingsElement>>;
115
+ export declare const RtkSettingsAudio: import("react").ForwardRefExoticComponent<JSX.RtkSettingsAudio & Omit<import("react").HTMLAttributes<HTMLRtkSettingsAudioElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSettingsAudioElement>>;
116
+ export declare const RtkSettingsToggle: import("react").ForwardRefExoticComponent<JSX.RtkSettingsToggle & Omit<import("react").HTMLAttributes<HTMLRtkSettingsToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSettingsToggleElement>>;
117
+ export declare const RtkSettingsVideo: import("react").ForwardRefExoticComponent<JSX.RtkSettingsVideo & Omit<import("react").HTMLAttributes<HTMLRtkSettingsVideoElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSettingsVideoElement>>;
118
+ export declare const RtkSetupScreen: import("react").ForwardRefExoticComponent<JSX.RtkSetupScreen & Omit<import("react").HTMLAttributes<HTMLRtkSetupScreenElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSetupScreenElement>>;
119
+ export declare const RtkSidebar: import("react").ForwardRefExoticComponent<JSX.RtkSidebar & Omit<import("react").HTMLAttributes<HTMLRtkSidebarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSidebarElement>>;
120
+ export declare const RtkSidebarUi: import("react").ForwardRefExoticComponent<JSX.RtkSidebarUi & Omit<import("react").HTMLAttributes<HTMLRtkSidebarUiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSidebarUiElement>>;
121
+ export declare const RtkSimpleGrid: import("react").ForwardRefExoticComponent<JSX.RtkSimpleGrid & Omit<import("react").HTMLAttributes<HTMLRtkSimpleGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSimpleGridElement>>;
122
+ export declare const RtkSpeakerSelector: import("react").ForwardRefExoticComponent<JSX.RtkSpeakerSelector & Omit<import("react").HTMLAttributes<HTMLRtkSpeakerSelectorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSpeakerSelectorElement>>;
123
+ export declare const RtkSpinner: import("react").ForwardRefExoticComponent<JSX.RtkSpinner & Omit<import("react").HTMLAttributes<HTMLRtkSpinnerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSpinnerElement>>;
124
+ export declare const RtkSpotlightGrid: import("react").ForwardRefExoticComponent<JSX.RtkSpotlightGrid & Omit<import("react").HTMLAttributes<HTMLRtkSpotlightGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSpotlightGridElement>>;
125
+ export declare const RtkSpotlightIndicator: import("react").ForwardRefExoticComponent<JSX.RtkSpotlightIndicator & Omit<import("react").HTMLAttributes<HTMLRtkSpotlightIndicatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSpotlightIndicatorElement>>;
126
+ export declare const RtkStage: import("react").ForwardRefExoticComponent<JSX.RtkStage & Omit<import("react").HTMLAttributes<HTMLRtkStageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkStageElement>>;
127
+ export declare const RtkStageToggle: import("react").ForwardRefExoticComponent<JSX.RtkStageToggle & Omit<import("react").HTMLAttributes<HTMLRtkStageToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkStageToggleElement>>;
128
+ export declare const RtkSwitch: import("react").ForwardRefExoticComponent<JSX.RtkSwitch & Omit<import("react").HTMLAttributes<HTMLRtkSwitchElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkSwitchElement>>;
129
+ export declare const RtkTabBar: import("react").ForwardRefExoticComponent<JSX.RtkTabBar & Omit<import("react").HTMLAttributes<HTMLRtkTabBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTabBarElement>>;
130
+ export declare const RtkTextComposerView: import("react").ForwardRefExoticComponent<JSX.RtkTextComposerView & Omit<import("react").HTMLAttributes<HTMLRtkTextComposerViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTextComposerViewElement>>;
131
+ export declare const RtkTextMessage: import("react").ForwardRefExoticComponent<JSX.RtkTextMessage & Omit<import("react").HTMLAttributes<HTMLRtkTextMessageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTextMessageElement>>;
132
+ export declare const RtkTextMessageView: import("react").ForwardRefExoticComponent<JSX.RtkTextMessageView & Omit<import("react").HTMLAttributes<HTMLRtkTextMessageViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTextMessageViewElement>>;
133
+ export declare const RtkTooltip: import("react").ForwardRefExoticComponent<JSX.RtkTooltip & Omit<import("react").HTMLAttributes<HTMLRtkTooltipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTooltipElement>>;
134
+ export declare const RtkTranscript: import("react").ForwardRefExoticComponent<JSX.RtkTranscript & Omit<import("react").HTMLAttributes<HTMLRtkTranscriptElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTranscriptElement>>;
135
+ export declare const RtkTranscripts: import("react").ForwardRefExoticComponent<JSX.RtkTranscripts & Omit<import("react").HTMLAttributes<HTMLRtkTranscriptsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkTranscriptsElement>>;
136
+ export declare const RtkUiProvider: import("react").ForwardRefExoticComponent<JSX.RtkUiProvider & Omit<import("react").HTMLAttributes<HTMLRtkUiProviderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkUiProviderElement>>;
137
+ export declare const RtkViewerCount: import("react").ForwardRefExoticComponent<JSX.RtkViewerCount & Omit<import("react").HTMLAttributes<HTMLRtkViewerCountElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkViewerCountElement>>;
138
+ export declare const RtkVirtualizedParticipantList: import("react").ForwardRefExoticComponent<JSX.RtkVirtualizedParticipantList & Omit<import("react").HTMLAttributes<HTMLRtkVirtualizedParticipantListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkVirtualizedParticipantListElement>>;
139
+ export declare const RtkWaitingScreen: import("react").ForwardRefExoticComponent<JSX.RtkWaitingScreen & Omit<import("react").HTMLAttributes<HTMLRtkWaitingScreenElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLRtkWaitingScreenElement>>;
@@ -0,0 +1,149 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RtkFileMessageView = exports.RtkFileMessage = exports.RtkFileDropzone = exports.RtkEndedScreen = exports.RtkEmojiPickerButton = exports.RtkEmojiPicker = exports.RtkDraftAttachmentView = exports.RtkDialogManager = exports.RtkDialog = exports.RtkDebuggerVideo = exports.RtkDebuggerToggle = exports.RtkDebuggerSystem = exports.RtkDebuggerScreenshare = exports.RtkDebuggerAudio = exports.RtkDebugger = exports.RtkCounter = exports.RtkControlbarButton = exports.RtkControlbar = exports.RtkConfirmationModal = exports.RtkClock = exports.RtkChatToggle = exports.RtkChatSelectorUi = exports.RtkChatSearchResults = exports.RtkChatMessagesUiPaginated = exports.RtkChatMessagesUi = exports.RtkChatMessage = exports.RtkChatComposerView = exports.RtkChatComposerUi = exports.RtkChat = exports.RtkChannelSelectorView = exports.RtkChannelSelectorUi = exports.RtkChannelHeader = exports.RtkChannelDetails = exports.RtkChannelCreator = exports.RtkCaptionToggle = exports.RtkCameraToggle = exports.RtkCameraSelector = exports.RtkButton = exports.RtkBroadcastMessageModal = exports.RtkBreakoutRoomsToggle = exports.RtkBreakoutRoomsManager = exports.RtkBreakoutRoomParticipants = exports.RtkBreakoutRoomManager = exports.RtkAvatar = exports.RtkAudioVisualizer = exports.RtkAudioTile = exports.RtkAudioGrid = exports.RtkAiTranscriptions = exports.RtkAiToggle = exports.RtkAi = void 0;
4
+ exports.RtkPermissionsMessage = exports.RtkParticipantsWaitingList = exports.RtkParticipantsViewerList = exports.RtkParticipantsToggle = exports.RtkParticipantsStageQueue = exports.RtkParticipantsStageList = exports.RtkParticipantsAudio = exports.RtkParticipants = exports.RtkParticipantTile = exports.RtkParticipantSetup = exports.RtkParticipantCount = exports.RtkParticipant = exports.RtkPaginatedList = exports.RtkOverlayModal = exports.RtkNotifications = exports.RtkNotification = exports.RtkNetworkIndicator = exports.RtkNameTag = exports.RtkMuteAllConfirmation = exports.RtkMuteAllButton = exports.RtkMoreToggle = exports.RtkMixedGrid = exports.RtkMicrophoneSelector = exports.RtkMicToggle = exports.RtkMessageView = exports.RtkMessageListView = exports.RtkMenuList = exports.RtkMenuItem = exports.RtkMenu = exports.RtkMeetingTitle = exports.RtkMeeting = exports.RtkMarkdownView = exports.RtkLogo = exports.RtkLivestreamToggle = exports.RtkLivestreamPlayer = exports.RtkLivestreamIndicator = exports.RtkLeaveMeeting = exports.RtkLeaveButton = exports.RtkJoinStage = exports.RtkInformationTooltip = exports.RtkImageViewer = exports.RtkImageMessageView = exports.RtkImageMessage = exports.RtkIdleScreen = exports.RtkIcon = exports.RtkHeader = exports.RtkGridPagination = exports.RtkGrid = exports.RtkFullscreenToggle = exports.RtkFilePickerButton = void 0;
5
+ exports.RtkWaitingScreen = exports.RtkVirtualizedParticipantList = exports.RtkViewerCount = exports.RtkUiProvider = exports.RtkTranscripts = exports.RtkTranscript = exports.RtkTooltip = exports.RtkTextMessageView = exports.RtkTextMessage = exports.RtkTextComposerView = exports.RtkTabBar = exports.RtkSwitch = exports.RtkStageToggle = exports.RtkStage = exports.RtkSpotlightIndicator = exports.RtkSpotlightGrid = exports.RtkSpinner = exports.RtkSpeakerSelector = exports.RtkSimpleGrid = exports.RtkSidebarUi = exports.RtkSidebar = exports.RtkSetupScreen = exports.RtkSettingsVideo = exports.RtkSettingsToggle = exports.RtkSettingsAudio = exports.RtkSettings = exports.RtkScreenshareView = exports.RtkScreenShareToggle = exports.RtkRecordingToggle = exports.RtkRecordingIndicator = exports.RtkPollsToggle = exports.RtkPolls = exports.RtkPollForm = exports.RtkPoll = exports.RtkPluginsToggle = exports.RtkPlugins = exports.RtkPluginMain = exports.RtkPipToggle = void 0;
6
+ /* eslint-disable */
7
+ /* tslint:disable */
8
+ /* auto-generated react proxies */
9
+ const react_component_lib_1 = require("./react-component-lib");
10
+ const loader_1 = require("@cloudflare/realtimekit-ui/loader");
11
+ (0, loader_1.defineCustomElements)();
12
+ exports.RtkAi = (0, react_component_lib_1.createReactComponent)('rtk-ai');
13
+ exports.RtkAiToggle = (0, react_component_lib_1.createReactComponent)('rtk-ai-toggle');
14
+ exports.RtkAiTranscriptions = (0, react_component_lib_1.createReactComponent)('rtk-ai-transcriptions');
15
+ exports.RtkAudioGrid = (0, react_component_lib_1.createReactComponent)('rtk-audio-grid');
16
+ exports.RtkAudioTile = (0, react_component_lib_1.createReactComponent)('rtk-audio-tile');
17
+ exports.RtkAudioVisualizer = (0, react_component_lib_1.createReactComponent)('rtk-audio-visualizer');
18
+ exports.RtkAvatar = (0, react_component_lib_1.createReactComponent)('rtk-avatar');
19
+ exports.RtkBreakoutRoomManager = (0, react_component_lib_1.createReactComponent)('rtk-breakout-room-manager');
20
+ exports.RtkBreakoutRoomParticipants = (0, react_component_lib_1.createReactComponent)('rtk-breakout-room-participants');
21
+ exports.RtkBreakoutRoomsManager = (0, react_component_lib_1.createReactComponent)('rtk-breakout-rooms-manager');
22
+ exports.RtkBreakoutRoomsToggle = (0, react_component_lib_1.createReactComponent)('rtk-breakout-rooms-toggle');
23
+ exports.RtkBroadcastMessageModal = (0, react_component_lib_1.createReactComponent)('rtk-broadcast-message-modal');
24
+ exports.RtkButton = (0, react_component_lib_1.createReactComponent)('rtk-button');
25
+ exports.RtkCameraSelector = (0, react_component_lib_1.createReactComponent)('rtk-camera-selector');
26
+ exports.RtkCameraToggle = (0, react_component_lib_1.createReactComponent)('rtk-camera-toggle');
27
+ exports.RtkCaptionToggle = (0, react_component_lib_1.createReactComponent)('rtk-caption-toggle');
28
+ exports.RtkChannelCreator = (0, react_component_lib_1.createReactComponent)('rtk-channel-creator');
29
+ exports.RtkChannelDetails = (0, react_component_lib_1.createReactComponent)('rtk-channel-details');
30
+ exports.RtkChannelHeader = (0, react_component_lib_1.createReactComponent)('rtk-channel-header');
31
+ exports.RtkChannelSelectorUi = (0, react_component_lib_1.createReactComponent)('rtk-channel-selector-ui');
32
+ exports.RtkChannelSelectorView = (0, react_component_lib_1.createReactComponent)('rtk-channel-selector-view');
33
+ exports.RtkChat = (0, react_component_lib_1.createReactComponent)('rtk-chat');
34
+ exports.RtkChatComposerUi = (0, react_component_lib_1.createReactComponent)('rtk-chat-composer-ui');
35
+ exports.RtkChatComposerView = (0, react_component_lib_1.createReactComponent)('rtk-chat-composer-view');
36
+ exports.RtkChatMessage = (0, react_component_lib_1.createReactComponent)('rtk-chat-message');
37
+ exports.RtkChatMessagesUi = (0, react_component_lib_1.createReactComponent)('rtk-chat-messages-ui');
38
+ exports.RtkChatMessagesUiPaginated = (0, react_component_lib_1.createReactComponent)('rtk-chat-messages-ui-paginated');
39
+ exports.RtkChatSearchResults = (0, react_component_lib_1.createReactComponent)('rtk-chat-search-results');
40
+ exports.RtkChatSelectorUi = (0, react_component_lib_1.createReactComponent)('rtk-chat-selector-ui');
41
+ exports.RtkChatToggle = (0, react_component_lib_1.createReactComponent)('rtk-chat-toggle');
42
+ exports.RtkClock = (0, react_component_lib_1.createReactComponent)('rtk-clock');
43
+ exports.RtkConfirmationModal = (0, react_component_lib_1.createReactComponent)('rtk-confirmation-modal');
44
+ exports.RtkControlbar = (0, react_component_lib_1.createReactComponent)('rtk-controlbar');
45
+ exports.RtkControlbarButton = (0, react_component_lib_1.createReactComponent)('rtk-controlbar-button');
46
+ exports.RtkCounter = (0, react_component_lib_1.createReactComponent)('rtk-counter');
47
+ exports.RtkDebugger = (0, react_component_lib_1.createReactComponent)('rtk-debugger');
48
+ exports.RtkDebuggerAudio = (0, react_component_lib_1.createReactComponent)('rtk-debugger-audio');
49
+ exports.RtkDebuggerScreenshare = (0, react_component_lib_1.createReactComponent)('rtk-debugger-screenshare');
50
+ exports.RtkDebuggerSystem = (0, react_component_lib_1.createReactComponent)('rtk-debugger-system');
51
+ exports.RtkDebuggerToggle = (0, react_component_lib_1.createReactComponent)('rtk-debugger-toggle');
52
+ exports.RtkDebuggerVideo = (0, react_component_lib_1.createReactComponent)('rtk-debugger-video');
53
+ exports.RtkDialog = (0, react_component_lib_1.createReactComponent)('rtk-dialog');
54
+ exports.RtkDialogManager = (0, react_component_lib_1.createReactComponent)('rtk-dialog-manager');
55
+ exports.RtkDraftAttachmentView = (0, react_component_lib_1.createReactComponent)('rtk-draft-attachment-view');
56
+ exports.RtkEmojiPicker = (0, react_component_lib_1.createReactComponent)('rtk-emoji-picker');
57
+ exports.RtkEmojiPickerButton = (0, react_component_lib_1.createReactComponent)('rtk-emoji-picker-button');
58
+ exports.RtkEndedScreen = (0, react_component_lib_1.createReactComponent)('rtk-ended-screen');
59
+ exports.RtkFileDropzone = (0, react_component_lib_1.createReactComponent)('rtk-file-dropzone');
60
+ exports.RtkFileMessage = (0, react_component_lib_1.createReactComponent)('rtk-file-message');
61
+ exports.RtkFileMessageView = (0, react_component_lib_1.createReactComponent)('rtk-file-message-view');
62
+ exports.RtkFilePickerButton = (0, react_component_lib_1.createReactComponent)('rtk-file-picker-button');
63
+ exports.RtkFullscreenToggle = (0, react_component_lib_1.createReactComponent)('rtk-fullscreen-toggle');
64
+ exports.RtkGrid = (0, react_component_lib_1.createReactComponent)('rtk-grid');
65
+ exports.RtkGridPagination = (0, react_component_lib_1.createReactComponent)('rtk-grid-pagination');
66
+ exports.RtkHeader = (0, react_component_lib_1.createReactComponent)('rtk-header');
67
+ exports.RtkIcon = (0, react_component_lib_1.createReactComponent)('rtk-icon');
68
+ exports.RtkIdleScreen = (0, react_component_lib_1.createReactComponent)('rtk-idle-screen');
69
+ exports.RtkImageMessage = (0, react_component_lib_1.createReactComponent)('rtk-image-message');
70
+ exports.RtkImageMessageView = (0, react_component_lib_1.createReactComponent)('rtk-image-message-view');
71
+ exports.RtkImageViewer = (0, react_component_lib_1.createReactComponent)('rtk-image-viewer');
72
+ exports.RtkInformationTooltip = (0, react_component_lib_1.createReactComponent)('rtk-information-tooltip');
73
+ exports.RtkJoinStage = (0, react_component_lib_1.createReactComponent)('rtk-join-stage');
74
+ exports.RtkLeaveButton = (0, react_component_lib_1.createReactComponent)('rtk-leave-button');
75
+ exports.RtkLeaveMeeting = (0, react_component_lib_1.createReactComponent)('rtk-leave-meeting');
76
+ exports.RtkLivestreamIndicator = (0, react_component_lib_1.createReactComponent)('rtk-livestream-indicator');
77
+ exports.RtkLivestreamPlayer = (0, react_component_lib_1.createReactComponent)('rtk-livestream-player');
78
+ exports.RtkLivestreamToggle = (0, react_component_lib_1.createReactComponent)('rtk-livestream-toggle');
79
+ exports.RtkLogo = (0, react_component_lib_1.createReactComponent)('rtk-logo');
80
+ exports.RtkMarkdownView = (0, react_component_lib_1.createReactComponent)('rtk-markdown-view');
81
+ exports.RtkMeeting = (0, react_component_lib_1.createReactComponent)('rtk-meeting');
82
+ exports.RtkMeetingTitle = (0, react_component_lib_1.createReactComponent)('rtk-meeting-title');
83
+ exports.RtkMenu = (0, react_component_lib_1.createReactComponent)('rtk-menu');
84
+ exports.RtkMenuItem = (0, react_component_lib_1.createReactComponent)('rtk-menu-item');
85
+ exports.RtkMenuList = (0, react_component_lib_1.createReactComponent)('rtk-menu-list');
86
+ exports.RtkMessageListView = (0, react_component_lib_1.createReactComponent)('rtk-message-list-view');
87
+ exports.RtkMessageView = (0, react_component_lib_1.createReactComponent)('rtk-message-view');
88
+ exports.RtkMicToggle = (0, react_component_lib_1.createReactComponent)('rtk-mic-toggle');
89
+ exports.RtkMicrophoneSelector = (0, react_component_lib_1.createReactComponent)('rtk-microphone-selector');
90
+ exports.RtkMixedGrid = (0, react_component_lib_1.createReactComponent)('rtk-mixed-grid');
91
+ exports.RtkMoreToggle = (0, react_component_lib_1.createReactComponent)('rtk-more-toggle');
92
+ exports.RtkMuteAllButton = (0, react_component_lib_1.createReactComponent)('rtk-mute-all-button');
93
+ exports.RtkMuteAllConfirmation = (0, react_component_lib_1.createReactComponent)('rtk-mute-all-confirmation');
94
+ exports.RtkNameTag = (0, react_component_lib_1.createReactComponent)('rtk-name-tag');
95
+ exports.RtkNetworkIndicator = (0, react_component_lib_1.createReactComponent)('rtk-network-indicator');
96
+ exports.RtkNotification = (0, react_component_lib_1.createReactComponent)('rtk-notification');
97
+ exports.RtkNotifications = (0, react_component_lib_1.createReactComponent)('rtk-notifications');
98
+ exports.RtkOverlayModal = (0, react_component_lib_1.createReactComponent)('rtk-overlay-modal');
99
+ exports.RtkPaginatedList = (0, react_component_lib_1.createReactComponent)('rtk-paginated-list');
100
+ exports.RtkParticipant = (0, react_component_lib_1.createReactComponent)('rtk-participant');
101
+ exports.RtkParticipantCount = (0, react_component_lib_1.createReactComponent)('rtk-participant-count');
102
+ exports.RtkParticipantSetup = (0, react_component_lib_1.createReactComponent)('rtk-participant-setup');
103
+ exports.RtkParticipantTile = (0, react_component_lib_1.createReactComponent)('rtk-participant-tile');
104
+ exports.RtkParticipants = (0, react_component_lib_1.createReactComponent)('rtk-participants');
105
+ exports.RtkParticipantsAudio = (0, react_component_lib_1.createReactComponent)('rtk-participants-audio');
106
+ exports.RtkParticipantsStageList = (0, react_component_lib_1.createReactComponent)('rtk-participants-stage-list');
107
+ exports.RtkParticipantsStageQueue = (0, react_component_lib_1.createReactComponent)('rtk-participants-stage-queue');
108
+ exports.RtkParticipantsToggle = (0, react_component_lib_1.createReactComponent)('rtk-participants-toggle');
109
+ exports.RtkParticipantsViewerList = (0, react_component_lib_1.createReactComponent)('rtk-participants-viewer-list');
110
+ exports.RtkParticipantsWaitingList = (0, react_component_lib_1.createReactComponent)('rtk-participants-waiting-list');
111
+ exports.RtkPermissionsMessage = (0, react_component_lib_1.createReactComponent)('rtk-permissions-message');
112
+ exports.RtkPipToggle = (0, react_component_lib_1.createReactComponent)('rtk-pip-toggle');
113
+ exports.RtkPluginMain = (0, react_component_lib_1.createReactComponent)('rtk-plugin-main');
114
+ exports.RtkPlugins = (0, react_component_lib_1.createReactComponent)('rtk-plugins');
115
+ exports.RtkPluginsToggle = (0, react_component_lib_1.createReactComponent)('rtk-plugins-toggle');
116
+ exports.RtkPoll = (0, react_component_lib_1.createReactComponent)('rtk-poll');
117
+ exports.RtkPollForm = (0, react_component_lib_1.createReactComponent)('rtk-poll-form');
118
+ exports.RtkPolls = (0, react_component_lib_1.createReactComponent)('rtk-polls');
119
+ exports.RtkPollsToggle = (0, react_component_lib_1.createReactComponent)('rtk-polls-toggle');
120
+ exports.RtkRecordingIndicator = (0, react_component_lib_1.createReactComponent)('rtk-recording-indicator');
121
+ exports.RtkRecordingToggle = (0, react_component_lib_1.createReactComponent)('rtk-recording-toggle');
122
+ exports.RtkScreenShareToggle = (0, react_component_lib_1.createReactComponent)('rtk-screen-share-toggle');
123
+ exports.RtkScreenshareView = (0, react_component_lib_1.createReactComponent)('rtk-screenshare-view');
124
+ exports.RtkSettings = (0, react_component_lib_1.createReactComponent)('rtk-settings');
125
+ exports.RtkSettingsAudio = (0, react_component_lib_1.createReactComponent)('rtk-settings-audio');
126
+ exports.RtkSettingsToggle = (0, react_component_lib_1.createReactComponent)('rtk-settings-toggle');
127
+ exports.RtkSettingsVideo = (0, react_component_lib_1.createReactComponent)('rtk-settings-video');
128
+ exports.RtkSetupScreen = (0, react_component_lib_1.createReactComponent)('rtk-setup-screen');
129
+ exports.RtkSidebar = (0, react_component_lib_1.createReactComponent)('rtk-sidebar');
130
+ exports.RtkSidebarUi = (0, react_component_lib_1.createReactComponent)('rtk-sidebar-ui');
131
+ exports.RtkSimpleGrid = (0, react_component_lib_1.createReactComponent)('rtk-simple-grid');
132
+ exports.RtkSpeakerSelector = (0, react_component_lib_1.createReactComponent)('rtk-speaker-selector');
133
+ exports.RtkSpinner = (0, react_component_lib_1.createReactComponent)('rtk-spinner');
134
+ exports.RtkSpotlightGrid = (0, react_component_lib_1.createReactComponent)('rtk-spotlight-grid');
135
+ exports.RtkSpotlightIndicator = (0, react_component_lib_1.createReactComponent)('rtk-spotlight-indicator');
136
+ exports.RtkStage = (0, react_component_lib_1.createReactComponent)('rtk-stage');
137
+ exports.RtkStageToggle = (0, react_component_lib_1.createReactComponent)('rtk-stage-toggle');
138
+ exports.RtkSwitch = (0, react_component_lib_1.createReactComponent)('rtk-switch');
139
+ exports.RtkTabBar = (0, react_component_lib_1.createReactComponent)('rtk-tab-bar');
140
+ exports.RtkTextComposerView = (0, react_component_lib_1.createReactComponent)('rtk-text-composer-view');
141
+ exports.RtkTextMessage = (0, react_component_lib_1.createReactComponent)('rtk-text-message');
142
+ exports.RtkTextMessageView = (0, react_component_lib_1.createReactComponent)('rtk-text-message-view');
143
+ exports.RtkTooltip = (0, react_component_lib_1.createReactComponent)('rtk-tooltip');
144
+ exports.RtkTranscript = (0, react_component_lib_1.createReactComponent)('rtk-transcript');
145
+ exports.RtkTranscripts = (0, react_component_lib_1.createReactComponent)('rtk-transcripts');
146
+ exports.RtkUiProvider = (0, react_component_lib_1.createReactComponent)('rtk-ui-provider');
147
+ exports.RtkViewerCount = (0, react_component_lib_1.createReactComponent)('rtk-viewer-count');
148
+ exports.RtkVirtualizedParticipantList = (0, react_component_lib_1.createReactComponent)('rtk-virtualized-participant-list');
149
+ exports.RtkWaitingScreen = (0, react_component_lib_1.createReactComponent)('rtk-waiting-screen');
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface HTMLStencilElement extends HTMLElement {
3
+ componentOnReady(): Promise<this>;
4
+ }
5
+ interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
6
+ forwardedRef: React.RefObject<ElementType>;
7
+ ref?: React.Ref<any>;
8
+ }
9
+ export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & import("./interfaces").StyleReactProps> & React.RefAttributes<ElementType>>;
10
+ export {};
@@ -0,0 +1,111 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ exports.createReactComponent = void 0;
48
+ const react_1 = __importStar(require("react"));
49
+ const utils_1 = require("./utils");
50
+ const createReactComponent = (tagName, ReactComponentContext, manipulatePropsFunction, defineCustomElement) => {
51
+ if (defineCustomElement !== undefined) {
52
+ defineCustomElement();
53
+ }
54
+ const displayName = (0, utils_1.dashToPascalCase)(tagName);
55
+ const ReactComponent = class extends react_1.default.Component {
56
+ constructor(props) {
57
+ super(props);
58
+ this.setComponentElRef = (element) => {
59
+ this.componentEl = element;
60
+ };
61
+ }
62
+ componentDidMount() {
63
+ this.componentDidUpdate(this.props);
64
+ }
65
+ componentDidUpdate(prevProps) {
66
+ (0, utils_1.attachProps)(this.componentEl, this.props, prevProps);
67
+ }
68
+ render() {
69
+ const _a = this.props, { children, forwardedRef, style, className, ref } = _a, cProps = __rest(_a, ["children", "forwardedRef", "style", "className", "ref"]);
70
+ let propsToPass = Object.keys(cProps).reduce((acc, name) => {
71
+ const value = cProps[name];
72
+ if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
73
+ const eventName = name.substring(2).toLowerCase();
74
+ if (typeof document !== 'undefined' && (0, utils_1.isCoveredByReact)(eventName)) {
75
+ acc[name] = value;
76
+ }
77
+ }
78
+ else {
79
+ // we should only render strings, booleans, and numbers as attrs in html.
80
+ // objects, functions, arrays etc get synced via properties on mount.
81
+ const type = typeof value;
82
+ if (type === 'string' || type === 'boolean' || type === 'number') {
83
+ acc[(0, utils_1.camelToDashCase)(name)] = value;
84
+ }
85
+ }
86
+ return acc;
87
+ }, {});
88
+ if (manipulatePropsFunction) {
89
+ propsToPass = manipulatePropsFunction(this.props, propsToPass);
90
+ }
91
+ const newProps = Object.assign(Object.assign({}, propsToPass), { ref: (0, utils_1.mergeRefs)(forwardedRef, this.setComponentElRef), style });
92
+ /**
93
+ * We use createElement here instead of
94
+ * React.createElement to work around a
95
+ * bug in Vite (https://github.com/vitejs/vite/issues/6104).
96
+ * React.createElement causes all elements to be rendered
97
+ * as <tagname> instead of the actual Web Component.
98
+ */
99
+ return (0, react_1.createElement)(tagName, newProps, children);
100
+ }
101
+ static get displayName() {
102
+ return displayName;
103
+ }
104
+ };
105
+ // If context was passed to createReactComponent then conditionally add it to the Component Class
106
+ if (ReactComponentContext) {
107
+ ReactComponent.contextType = ReactComponentContext;
108
+ }
109
+ return (0, utils_1.createForwardRef)(ReactComponent, displayName);
110
+ };
111
+ exports.createReactComponent = createReactComponent;