@lobehub/ui 1.114.1 → 1.114.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.
- package/es/index.d.ts +0 -1
- package/es/index.js +0 -1
- package/package.json +3 -5
- package/es/useTTS/data/azureVoiceListFull.json +0 -2156
- package/es/useTTS/data/azureVoiceListLite.json +0 -358
- package/es/useTTS/data/edgeVoiceList.json +0 -165
- package/es/useTTS/data/speechSynthesVoiceList.json +0 -182
- package/es/useTTS/hooks/useAzureSpeech.d.ts +0 -10
- package/es/useTTS/hooks/useAzureSpeech.js +0 -63
- package/es/useTTS/hooks/useEdgeSpeech.d.ts +0 -10
- package/es/useTTS/hooks/useEdgeSpeech.js +0 -63
- package/es/useTTS/hooks/useMicrosoftSpeech.d.ts +0 -10
- package/es/useTTS/hooks/useMicrosoftSpeech.js +0 -63
- package/es/useTTS/hooks/usePersistedSpeechRecognition.d.ts +0 -6
- package/es/useTTS/hooks/usePersistedSpeechRecognition.js +0 -38
- package/es/useTTS/hooks/useSpeechRecognition.d.ts +0 -6
- package/es/useTTS/hooks/useSpeechRecognition.js +0 -74
- package/es/useTTS/hooks/useSpeechSynthes.d.ts +0 -8
- package/es/useTTS/hooks/useSpeechSynthes.js +0 -45
- package/es/useTTS/index.d.ts +0 -7
- package/es/useTTS/index.js +0 -7
- package/es/useTTS/services/postAzureSpeech.d.ts +0 -8
- package/es/useTTS/services/postAzureSpeech.js +0 -73
- package/es/useTTS/services/postEdgeSpeech.d.ts +0 -2
- package/es/useTTS/services/postEdgeSpeech.js +0 -133
- package/es/useTTS/services/postMicrosoftSpeech.d.ts +0 -5
- package/es/useTTS/services/postMicrosoftSpeech.js +0 -46
- package/es/useTTS/utils/genSSML.d.ts +0 -8
- package/es/useTTS/utils/genSSML.js +0 -15
- package/es/useTTS/utils/genSendContent.d.ts +0 -3
- package/es/useTTS/utils/genSendContent.js +0 -12
- package/es/useTTS/utils/getHeadersAndData.d.ts +0 -6
- package/es/useTTS/utils/getHeadersAndData.js +0 -27
- package/es/useTTS/utils/getVoiceList.d.ts +0 -18
- package/es/useTTS/utils/getVoiceList.js +0 -51
package/es/index.d.ts
CHANGED
|
@@ -85,6 +85,5 @@ export { default as Toc, type TocProps } from './Toc';
|
|
|
85
85
|
export { default as TokenTag, type TokenTagProps } from './TokenTag';
|
|
86
86
|
export { default as Tooltip, type TooltipProps } from './Tooltip';
|
|
87
87
|
export type * from './types';
|
|
88
|
-
export * from './useTTS';
|
|
89
88
|
export { type CDN, genCdnUrl } from './utils/genCdnUrl';
|
|
90
89
|
export { getEmoji, getEmojiNameByCharacter } from './utils/getEmojiByCharacter';
|
package/es/index.js
CHANGED
|
@@ -82,6 +82,5 @@ export { default as ThemeSwitch } from "./ThemeSwitch";
|
|
|
82
82
|
export { default as Toc } from "./Toc";
|
|
83
83
|
export { default as TokenTag } from "./TokenTag";
|
|
84
84
|
export { default as Tooltip } from "./Tooltip";
|
|
85
|
-
export * from "./useTTS";
|
|
86
85
|
export { genCdnUrl } from "./utils/genCdnUrl";
|
|
87
86
|
export { getEmoji, getEmojiNameByCharacter } from "./utils/getEmojiByCharacter";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/ui",
|
|
3
|
-
"version": "1.114.
|
|
3
|
+
"version": "1.114.2",
|
|
4
4
|
"description": "Lobe UI is an open-source UI component library for building AIGC web apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lobehub",
|
|
@@ -83,19 +83,17 @@
|
|
|
83
83
|
"@react-spring/web": "^9",
|
|
84
84
|
"@react-three/drei": "^9",
|
|
85
85
|
"@react-three/fiber": "^8",
|
|
86
|
-
"@types/uuid": "^9",
|
|
87
86
|
"ahooks": "^3",
|
|
88
87
|
"chroma-js": "^2",
|
|
89
88
|
"copy-to-clipboard": "^3",
|
|
90
89
|
"dayjs": "^1",
|
|
90
|
+
"emoji-mart": "^5",
|
|
91
91
|
"emoji-regex": "^10",
|
|
92
92
|
"fast-deep-equal": "^3",
|
|
93
93
|
"immer": "^10",
|
|
94
94
|
"leva": "^0",
|
|
95
95
|
"lodash-es": "^4",
|
|
96
96
|
"lucide-react": "latest",
|
|
97
|
-
"microsoft-cognitiveservices-speech-sdk": "^1",
|
|
98
|
-
"msedge-tts": "^1",
|
|
99
97
|
"polished": "^4",
|
|
100
98
|
"prism-react-renderer": "^2",
|
|
101
99
|
"query-string": "^8",
|
|
@@ -110,7 +108,6 @@
|
|
|
110
108
|
"remark-gfm": "^3",
|
|
111
109
|
"remark-math": "^5",
|
|
112
110
|
"shikiji": "^0",
|
|
113
|
-
"ssml-document": "^1",
|
|
114
111
|
"swr": "^2",
|
|
115
112
|
"three": "^0.157",
|
|
116
113
|
"ts-md5": "^1",
|
|
@@ -131,6 +128,7 @@
|
|
|
131
128
|
"@types/react": "^18",
|
|
132
129
|
"@types/react-dom": "^18",
|
|
133
130
|
"@types/three": "^0.157",
|
|
131
|
+
"@types/uuid": "^9",
|
|
134
132
|
"@vitest/coverage-v8": "latest",
|
|
135
133
|
"antd-style": "^3",
|
|
136
134
|
"babel-plugin-antd-style": "latest",
|