@praxisui/ai 8.0.0-beta.93 → 8.0.0-beta.95
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/fesm2022/praxisui-ai.mjs
CHANGED
|
@@ -7075,8 +7075,10 @@ class PraxisAiAssistantShellComponent {
|
|
|
7075
7075
|
enableFileAttachments = false;
|
|
7076
7076
|
attachmentAccept = '';
|
|
7077
7077
|
attachmentMultiple = true;
|
|
7078
|
-
|
|
7079
|
-
|
|
7078
|
+
defaultVoiceInputMode = inject(PRAXIS_ASSISTANT_VOICE_INPUT_MODE);
|
|
7079
|
+
defaultVoiceLanguage = inject(PRAXIS_ASSISTANT_VOICE_LANGUAGE);
|
|
7080
|
+
voiceInputMode = this.defaultVoiceInputMode;
|
|
7081
|
+
voiceLanguage = this.defaultVoiceLanguage;
|
|
7080
7082
|
draggable = true;
|
|
7081
7083
|
resizable = true;
|
|
7082
7084
|
minWidth = 360;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/ai",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.95",
|
|
4
4
|
"description": "AI building blocks and assistant integration for Praxis UI applications.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^8.0.0-beta.95",
|
|
9
9
|
"@angular/cdk": "^21.0.0",
|
|
10
10
|
"@angular/forms": "^21.0.0",
|
|
11
11
|
"@angular/material": "^21.0.0",
|
package/types/praxisui-ai.d.ts
CHANGED
|
@@ -2303,6 +2303,8 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2303
2303
|
enableFileAttachments: boolean;
|
|
2304
2304
|
attachmentAccept: string;
|
|
2305
2305
|
attachmentMultiple: boolean;
|
|
2306
|
+
private readonly defaultVoiceInputMode;
|
|
2307
|
+
private readonly defaultVoiceLanguage;
|
|
2306
2308
|
voiceInputMode: PraxisAssistantVoiceInputMode;
|
|
2307
2309
|
voiceLanguage: string;
|
|
2308
2310
|
draggable: boolean;
|