@rimori/client 1.0.1 → 1.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.
|
@@ -11,7 +11,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
11
11
|
import { useState, useEffect } from 'react';
|
|
12
12
|
import { FaPlayCircle, FaStopCircle } from "react-icons/fa";
|
|
13
13
|
import { usePlugin } from "../../providers/PluginProvider";
|
|
14
|
-
import Spinner from '../Spinner';
|
|
14
|
+
import { Spinner } from '../Spinner';
|
|
15
15
|
import { EmitterSingleton } from '../../providers/EventEmitter';
|
|
16
16
|
export const AudioPlayOptions = [0.8, 0.9, 1.0, 1.1, 1.2, 1.5];
|
|
17
17
|
let isFetchingAudio = false;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
export * from "./components/MarkdownEditor";
|
|
2
2
|
export * from "./components/CRUDModal";
|
|
3
|
-
export * from "./plugin/ThemeSetter";
|
|
4
|
-
export * from "./components/audio/Playbutton";
|
|
5
|
-
export * from "./providers/EventEmitterContext";
|
|
6
|
-
export * from "./providers/PluginProvider";
|
|
7
|
-
export * from "./providers/EventEmitter";
|
|
8
3
|
export * from "./components/Spinner";
|
|
9
|
-
export * from "./
|
|
10
|
-
export * from "./utils/PluginUtils";
|
|
11
|
-
export * from "./plugin/RimoriClient";
|
|
4
|
+
export * from "./components/audio/Playbutton";
|
|
12
5
|
export * from "./controller/AIController";
|
|
13
6
|
export * from "./controller/SharedContentController";
|
|
14
7
|
export * from "./controller/SettingsController";
|
|
8
|
+
export * from "./hooks/UseChatHook";
|
|
9
|
+
export * from "./plugin/RimoriClient";
|
|
10
|
+
export * from "./plugin/ThemeSetter";
|
|
11
|
+
export * from "./providers/EventEmitter";
|
|
12
|
+
export * from "./providers/EventEmitterContext";
|
|
13
|
+
export * from "./providers/PluginProvider";
|
|
14
|
+
export * from "./utils/difficultyConverter";
|
|
15
|
+
export * from "./utils/PluginUtils";
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
export * from "./components/MarkdownEditor";
|
|
2
2
|
export * from "./components/CRUDModal";
|
|
3
|
-
export * from "./plugin/ThemeSetter";
|
|
4
|
-
export * from "./components/audio/Playbutton";
|
|
5
|
-
export * from "./providers/EventEmitterContext";
|
|
6
|
-
export * from "./providers/PluginProvider";
|
|
7
|
-
export * from "./providers/EventEmitter";
|
|
8
3
|
export * from "./components/Spinner";
|
|
9
|
-
export * from "./
|
|
10
|
-
export * from "./utils/PluginUtils";
|
|
11
|
-
export * from "./plugin/RimoriClient";
|
|
4
|
+
export * from "./components/audio/Playbutton";
|
|
12
5
|
export * from "./controller/AIController";
|
|
13
6
|
export * from "./controller/SharedContentController";
|
|
14
7
|
export * from "./controller/SettingsController";
|
|
8
|
+
export * from "./hooks/UseChatHook";
|
|
9
|
+
export * from "./plugin/RimoriClient";
|
|
10
|
+
export * from "./plugin/ThemeSetter";
|
|
11
|
+
export * from "./providers/EventEmitter";
|
|
12
|
+
export * from "./providers/EventEmitterContext";
|
|
13
|
+
export * from "./providers/PluginProvider";
|
|
14
|
+
export * from "./utils/difficultyConverter";
|
|
15
|
+
export * from "./utils/PluginUtils";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react';
|
|
2
2
|
import { FaPlayCircle, FaStopCircle } from "react-icons/fa";
|
|
3
3
|
import { usePlugin } from "../../providers/PluginProvider";
|
|
4
|
-
import Spinner from '../Spinner';
|
|
4
|
+
import { Spinner } from '../Spinner';
|
|
5
5
|
import { EmitterSingleton } from '../../providers/EventEmitter';
|
|
6
6
|
|
|
7
7
|
type AudioPlayerProps = {
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
export * from "./components/MarkdownEditor";
|
|
2
2
|
export * from "./components/CRUDModal";
|
|
3
|
-
export * from "./plugin/ThemeSetter";
|
|
4
|
-
export * from "./components/audio/Playbutton";
|
|
5
|
-
export * from "./providers/EventEmitterContext";
|
|
6
|
-
export * from "./providers/PluginProvider";
|
|
7
|
-
export * from "./providers/EventEmitter";
|
|
8
3
|
export * from "./components/Spinner";
|
|
9
|
-
export * from "./
|
|
10
|
-
export * from "./utils/PluginUtils";
|
|
11
|
-
export * from "./plugin/RimoriClient";
|
|
4
|
+
export * from "./components/audio/Playbutton";
|
|
12
5
|
export * from "./controller/AIController";
|
|
13
6
|
export * from "./controller/SharedContentController";
|
|
14
7
|
export * from "./controller/SettingsController";
|
|
8
|
+
export * from "./hooks/UseChatHook";
|
|
9
|
+
export * from "./plugin/RimoriClient";
|
|
10
|
+
export * from "./plugin/ThemeSetter";
|
|
11
|
+
export * from "./providers/EventEmitter";
|
|
12
|
+
export * from "./providers/EventEmitterContext";
|
|
13
|
+
export * from "./providers/PluginProvider";
|
|
14
|
+
export * from "./utils/difficultyConverter";
|
|
15
|
+
export * from "./utils/PluginUtils";
|