@smart-cloud/ai-kit-ui 1.1.32 → 1.1.34
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/dist/index.cjs +4 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
- package/src/ai-feature/AiFeature.tsx +1 -1
- package/src/i18n/hu.ts +1 -0
- package/src/i18n/nb.ts +1 -0
package/package.json
CHANGED
|
@@ -473,7 +473,7 @@ const AiFeatureBase: FC<AiFeatureProps & AiKitShellInjectedProps> = (props) => {
|
|
|
473
473
|
default:
|
|
474
474
|
return false;
|
|
475
475
|
}
|
|
476
|
-
}, [inputText, mode, image, inputLanguage, outputLanguage]);
|
|
476
|
+
}, [inputText, mode, image, inputLanguage, outputLanguage, featureOpen]);
|
|
477
477
|
|
|
478
478
|
const ai = useAiRun();
|
|
479
479
|
const statusText =
|
package/src/i18n/hu.ts
CHANGED
|
@@ -13,6 +13,7 @@ export const huDict: Record<string, string> = {
|
|
|
13
13
|
"Ask anything…": "Kérdezz bármit…",
|
|
14
14
|
"Ask me": "Kérdezz tőlem",
|
|
15
15
|
Assistant: "Asszisztens",
|
|
16
|
+
"Assistant is thinking...": "Az asszisztens gondolkodik...",
|
|
16
17
|
"Auto-detect": "Automatikus felismerés",
|
|
17
18
|
Cancel: "Mégse",
|
|
18
19
|
Caption: "Felirat",
|
package/src/i18n/nb.ts
CHANGED
|
@@ -13,6 +13,7 @@ export const nbDict: Record<string, string> = {
|
|
|
13
13
|
"Ask anything…": "Spør om hva som helst…",
|
|
14
14
|
"Ask me": "Spør meg",
|
|
15
15
|
Assistant: "Assistent",
|
|
16
|
+
"Assistant is thinking...": "Assistenten tenker...",
|
|
16
17
|
"Auto-detect": "Automatisk oppdaging",
|
|
17
18
|
Cancel: "Kansellere",
|
|
18
19
|
Caption: "Tekst",
|