embeddedaichatux 1.4.1 → 1.5.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/EmbeddedChat.js +58 -6
- package/obj/AIChat.npm.csproj.nuget.dgspec.json +72 -0
- package/obj/AIChat.npm.csproj.nuget.g.props +15 -0
- package/obj/AIChat.npm.csproj.nuget.g.targets +2 -0
- package/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +4 -0
- package/obj/Debug/net7.0/AIChat.npm.AssemblyInfo.cs +23 -0
- package/obj/Debug/net7.0/AIChat.npm.AssemblyInfoInputs.cache +1 -0
- package/obj/Debug/net7.0/AIChat.npm.GeneratedMSBuildEditorConfig.editorconfig +19 -0
- package/obj/Debug/net7.0/AIChat.npm.GlobalUsings.g.cs +17 -0
- package/obj/Debug/net7.0/AIChat.npm.assets.cache +0 -0
- package/obj/Debug/net7.0/project.razor.vs.bin +0 -0
- package/obj/project.assets.json +77 -0
- package/obj/project.nuget.cache +8 -0
- package/package.json +1 -1
package/EmbeddedChat.js
CHANGED
|
@@ -11,17 +11,18 @@
|
|
|
11
11
|
this.previewParam = this.isPreview ? "?isPreview=true" : "";
|
|
12
12
|
this.serverUrl = this.options.serverUrl || 'https://embedgpt.chat/';
|
|
13
13
|
this.height = options.height || 600; // Default height
|
|
14
|
-
this.width = options.width ||
|
|
14
|
+
this.width = options.width || 320; // Default width
|
|
15
15
|
this.enableAnimation = options.enableAnimation !== false; // Default to true if not provided
|
|
16
16
|
this.minimizedHeight = `${this.height * 0.3}px`; // 30% of the full height
|
|
17
17
|
this.mouseInsideChat = false;
|
|
18
|
+
this.hasRefreshed = false; // Flag to prevent endless loop
|
|
18
19
|
|
|
19
20
|
// Determine transition styles
|
|
20
21
|
const transitionStyle = this.enableAnimation ? 'transition: height 0.3s ease, opacity 0.3s ease;' : '';
|
|
21
22
|
|
|
22
23
|
this.positionStyle = this.containerDiv.dataset.position === 'in-place' ?
|
|
23
24
|
`width:100%; height:${this.height}px; ${transitionStyle}` :
|
|
24
|
-
`position: fixed; right: 0; bottom: 0; width: ${this.width}px; height: ${this.height}px; z-index: 100000; ${transitionStyle}`;
|
|
25
|
+
`position: fixed; right: 0; bottom: 0; width: ${this.width}px; height: ${this.height}px; z-index: 100000; max-height:80%; ${transitionStyle}`;
|
|
25
26
|
this.mode = options.mode || 'Chat'; // default to 'chat' if mode isn't provided
|
|
26
27
|
this.minimizeOnScroll = false; // Default to false
|
|
27
28
|
if (this.mode === 'ContactForm') {
|
|
@@ -29,24 +30,56 @@
|
|
|
29
30
|
this.positionStyle = `width:100%; height:${this.height}px; ${transitionStyle}`;
|
|
30
31
|
this.containerDiv.style.height = `${this.height}px`;
|
|
31
32
|
}
|
|
33
|
+
|
|
34
|
+
this.conversationId = this.getStoredConversationId();
|
|
35
|
+
|
|
32
36
|
this.sessionInfo = options.sessionInfo || null;
|
|
33
37
|
this.init();
|
|
34
38
|
}
|
|
35
39
|
|
|
40
|
+
isSafari() {
|
|
41
|
+
var ua = navigator.userAgent.toLowerCase();
|
|
42
|
+
return ua.indexOf('safari') != -1 && ua.indexOf('chrome') == -1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
getStoredConversationId() {
|
|
46
|
+
try {
|
|
47
|
+
return localStorage.getItem(`conversationId_${this.chatId}`);
|
|
48
|
+
} catch (error) {
|
|
49
|
+
console.error('Error accessing localStorage:', error);
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
setStoredConversationId(conversationId) {
|
|
55
|
+
try {
|
|
56
|
+
localStorage.setItem(`conversationId_${this.chatId}`, conversationId);
|
|
57
|
+
} catch (error) {
|
|
58
|
+
console.error('Error accessing localStorage:', error);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
36
62
|
init() {
|
|
63
|
+
this.updateIframes();
|
|
64
|
+
this.addEventListeners();
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
updateIframes() {
|
|
37
68
|
const cleanedServerUrl = this.serverUrl.endsWith('/') ? this.serverUrl.slice(0, -1) : this.serverUrl;
|
|
38
69
|
const baseIframeUrl = `${cleanedServerUrl}/ChatUX/${this.chatId}`;
|
|
39
70
|
const minimizedPositionStyle = `position: fixed; right: 0; bottom: 0; width: ${this.width}px; height: ${this.minimizedHeight}; z-index: 100000; ${this.enableAnimation ? 'transition: height 0.3s ease, opacity 0.3s ease;' : ''}`;
|
|
40
71
|
|
|
41
72
|
const iframeHtml = `
|
|
42
|
-
<iframe id="embedded-chat" style="${this.positionStyle}; display: none; border:none; overflow:hidden;" frameborder="0" sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="${this.buildIframeUrl(baseIframeUrl, { isPreview: this.isPreview, mode: this.mode, locale: this.locale })}"></iframe>
|
|
43
|
-
<iframe id="embedded-chat-minimized" style="${minimizedPositionStyle}; display: none; border:none; overflow:hidden;" frameborder="0" sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="${this.buildIframeUrl(baseIframeUrl, { isPreview: this.isPreview, isMinimized: true, locale: this.locale })}"></iframe>
|
|
73
|
+
<iframe id="embedded-chat" style="${this.positionStyle}; display: none; border:none; overflow:hidden;" frameborder="0" sandbox="allow-same-origin allow-scripts allow-popups allow-forms allow-top-navigation-by-user-activation" src="${this.buildIframeUrl(baseIframeUrl, { isPreview: this.isPreview, mode: this.mode, locale: this.locale, conversationId: this.conversationId })}"></iframe>
|
|
74
|
+
<iframe id="embedded-chat-minimized" style="${minimizedPositionStyle}; display: none; border:none; overflow:hidden;" frameborder="0" sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="${this.buildIframeUrl(baseIframeUrl, { isPreview: this.isPreview, isMinimized: true, locale: this.locale, conversationId: this.conversationId })}"></iframe>
|
|
44
75
|
`;
|
|
45
76
|
|
|
46
77
|
this.containerDiv.innerHTML = iframeHtml;
|
|
47
78
|
this.iframe = this.containerDiv.querySelector("#embedded-chat");
|
|
48
79
|
this.minimizedIframe = this.containerDiv.querySelector("#embedded-chat-minimized");
|
|
80
|
+
}
|
|
49
81
|
|
|
82
|
+
addEventListeners() {
|
|
50
83
|
// Add event listeners to track mouse position
|
|
51
84
|
this.iframe.addEventListener("mouseenter", () => { this.mouseInsideChat = true; });
|
|
52
85
|
this.iframe.addEventListener("mouseleave", () => { this.mouseInsideChat = false; });
|
|
@@ -83,6 +116,10 @@
|
|
|
83
116
|
if (this.sessionInfo !== null) {
|
|
84
117
|
this.setSessionInfo(this.sessionInfo);
|
|
85
118
|
}
|
|
119
|
+
if (e.data.message === "show" && e.data.conversationId) {
|
|
120
|
+
this.conversationId = e.data.conversationId;
|
|
121
|
+
this.setStoredConversationId(this.conversationId);
|
|
122
|
+
}
|
|
86
123
|
}
|
|
87
124
|
} else if (typeof e.data === "string") {
|
|
88
125
|
if (e.data === "minimize") {
|
|
@@ -109,9 +146,20 @@
|
|
|
109
146
|
|
|
110
147
|
showMaximized() {
|
|
111
148
|
this.minimizedIframe.style.display = "none";
|
|
149
|
+
|
|
112
150
|
this.minimizedIframe.style.height = `${this.height}px`;
|
|
113
151
|
this.minimizedIframe.style.opacity = ''; // Reset opacity to unset
|
|
152
|
+
|
|
114
153
|
this.iframe.style.display = "block";
|
|
154
|
+
|
|
155
|
+
if (this.isSafari() && !this.hasRefreshed) {
|
|
156
|
+
// Force refresh by resetting the iframe's src
|
|
157
|
+
const currentSrc = this.iframe.src;
|
|
158
|
+
this.iframe.src = ''; // Temporarily clear the src
|
|
159
|
+
this.iframe.src = currentSrc; // Reset to the original src to trigger a reload
|
|
160
|
+
this.hasRefreshed = true; // Prevent endless loop
|
|
161
|
+
}
|
|
162
|
+
|
|
115
163
|
this.iframe.style.height = `${this.height}px`;
|
|
116
164
|
this.iframe.style.opacity = '1';
|
|
117
165
|
}
|
|
@@ -157,7 +205,7 @@
|
|
|
157
205
|
}
|
|
158
206
|
|
|
159
207
|
buildIframeUrl(baseIframeUrl, params = {}) {
|
|
160
|
-
const urlParams = new URLSearchParams(
|
|
208
|
+
const urlParams = new URLSearchParams();
|
|
161
209
|
|
|
162
210
|
if (params.isPreview) {
|
|
163
211
|
urlParams.set('isPreview', 'true');
|
|
@@ -171,8 +219,12 @@
|
|
|
171
219
|
urlParams.set('locale', params.locale);
|
|
172
220
|
}
|
|
173
221
|
|
|
222
|
+
if (params.conversationId) {
|
|
223
|
+
urlParams.set('conversationId', params.conversationId);
|
|
224
|
+
}
|
|
225
|
+
|
|
174
226
|
for (const [key, value] of Object.entries(params)) {
|
|
175
|
-
if (key !== 'mode' && key !== 'isPreview') {
|
|
227
|
+
if (key !== 'mode' && key !== 'isPreview' && key !== 'conversationId' && value !== null && value !== undefined) {
|
|
176
228
|
urlParams.set(key, value);
|
|
177
229
|
}
|
|
178
230
|
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"format": 1,
|
|
3
|
+
"restore": {
|
|
4
|
+
"C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj": {}
|
|
5
|
+
},
|
|
6
|
+
"projects": {
|
|
7
|
+
"C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj": {
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"restore": {
|
|
10
|
+
"projectUniqueName": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
|
|
11
|
+
"projectName": "AIChat.npm",
|
|
12
|
+
"projectPath": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
|
|
13
|
+
"packagesPath": "C:\\Users\\esipo\\.nuget\\packages\\",
|
|
14
|
+
"outputPath": "C:\\Git\\AIChat\\AIChat.npm\\obj\\",
|
|
15
|
+
"projectStyle": "PackageReference",
|
|
16
|
+
"configFilePaths": [
|
|
17
|
+
"C:\\Users\\esipo\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
18
|
+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
19
|
+
],
|
|
20
|
+
"originalTargetFrameworks": [
|
|
21
|
+
"net7.0"
|
|
22
|
+
],
|
|
23
|
+
"sources": {
|
|
24
|
+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
25
|
+
"C:\\Program Files\\dotnet\\library-packs": {},
|
|
26
|
+
"https://api.nuget.org/v3/index.json": {}
|
|
27
|
+
},
|
|
28
|
+
"frameworks": {
|
|
29
|
+
"net7.0": {
|
|
30
|
+
"targetAlias": "net7.0",
|
|
31
|
+
"projectReferences": {}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"warningProperties": {
|
|
35
|
+
"warnAsError": [
|
|
36
|
+
"NU1605"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"restoreAuditProperties": {
|
|
40
|
+
"enableAudit": "true",
|
|
41
|
+
"auditLevel": "low",
|
|
42
|
+
"auditMode": "direct"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"frameworks": {
|
|
46
|
+
"net7.0": {
|
|
47
|
+
"targetAlias": "net7.0",
|
|
48
|
+
"imports": [
|
|
49
|
+
"net461",
|
|
50
|
+
"net462",
|
|
51
|
+
"net47",
|
|
52
|
+
"net471",
|
|
53
|
+
"net472",
|
|
54
|
+
"net48",
|
|
55
|
+
"net481"
|
|
56
|
+
],
|
|
57
|
+
"assetTargetFallback": true,
|
|
58
|
+
"warn": true,
|
|
59
|
+
"frameworkReferences": {
|
|
60
|
+
"Microsoft.AspNetCore.App": {
|
|
61
|
+
"privateAssets": "none"
|
|
62
|
+
},
|
|
63
|
+
"Microsoft.NETCore.App": {
|
|
64
|
+
"privateAssets": "all"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.302\\RuntimeIdentifierGraph.json"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
2
|
+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
4
|
+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
|
5
|
+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
|
6
|
+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
|
7
|
+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
|
8
|
+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\esipo\.nuget\packages\</NuGetPackageFolders>
|
|
9
|
+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
10
|
+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
|
|
11
|
+
</PropertyGroup>
|
|
12
|
+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
13
|
+
<SourceRoot Include="C:\Users\esipo\.nuget\packages\" />
|
|
14
|
+
</ItemGroup>
|
|
15
|
+
</Project>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
//------------------------------------------------------------------------------
|
|
2
|
+
// <auto-generated>
|
|
3
|
+
// This code was generated by a tool.
|
|
4
|
+
// Runtime Version:4.0.30319.42000
|
|
5
|
+
//
|
|
6
|
+
// Changes to this file may cause incorrect behavior and will be lost if
|
|
7
|
+
// the code is regenerated.
|
|
8
|
+
// </auto-generated>
|
|
9
|
+
//------------------------------------------------------------------------------
|
|
10
|
+
|
|
11
|
+
using System;
|
|
12
|
+
using System.Reflection;
|
|
13
|
+
|
|
14
|
+
[assembly: System.Reflection.AssemblyCompanyAttribute("AIChat.npm")]
|
|
15
|
+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
16
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
17
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ed2e2b2718adc480daaa0babfd2447befc969197")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyProductAttribute("AIChat.npm")]
|
|
19
|
+
[assembly: System.Reflection.AssemblyTitleAttribute("AIChat.npm")]
|
|
20
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
21
|
+
|
|
22
|
+
// Generated by the MSBuild WriteCodeFragment class.
|
|
23
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
f06fa2a1072fc32fb1c791674c951c64759966ce991b3d6dc890b7fc56801ae1
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
is_global = true
|
|
2
|
+
build_property.TargetFramework = net7.0
|
|
3
|
+
build_property.TargetPlatformMinVersion =
|
|
4
|
+
build_property.UsingMicrosoftNETSdkWeb = true
|
|
5
|
+
build_property.ProjectTypeGuids =
|
|
6
|
+
build_property.InvariantGlobalization =
|
|
7
|
+
build_property.PlatformNeutralAssembly =
|
|
8
|
+
build_property.EnforceExtendedAnalyzerRules =
|
|
9
|
+
build_property._SupportedPlatformList = Linux,macOS,Windows
|
|
10
|
+
build_property.RootNamespace = AIChat.npm
|
|
11
|
+
build_property.RootNamespace = AIChat.npm
|
|
12
|
+
build_property.ProjectDir = C:\Git\AIChat\AIChat.npm\
|
|
13
|
+
build_property.EnableComHosting =
|
|
14
|
+
build_property.EnableGeneratedComInterfaceComImportInterop =
|
|
15
|
+
build_property.RazorLangVersion = 7.0
|
|
16
|
+
build_property.SupportLocalizedComponentNames =
|
|
17
|
+
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
|
18
|
+
build_property.MSBuildProjectDirectory = C:\Git\AIChat\AIChat.npm
|
|
19
|
+
build_property._RazorSourceGeneratorDebug =
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// <auto-generated/>
|
|
2
|
+
global using global::Microsoft.AspNetCore.Builder;
|
|
3
|
+
global using global::Microsoft.AspNetCore.Hosting;
|
|
4
|
+
global using global::Microsoft.AspNetCore.Http;
|
|
5
|
+
global using global::Microsoft.AspNetCore.Routing;
|
|
6
|
+
global using global::Microsoft.Extensions.Configuration;
|
|
7
|
+
global using global::Microsoft.Extensions.DependencyInjection;
|
|
8
|
+
global using global::Microsoft.Extensions.Hosting;
|
|
9
|
+
global using global::Microsoft.Extensions.Logging;
|
|
10
|
+
global using global::System;
|
|
11
|
+
global using global::System.Collections.Generic;
|
|
12
|
+
global using global::System.IO;
|
|
13
|
+
global using global::System.Linq;
|
|
14
|
+
global using global::System.Net.Http;
|
|
15
|
+
global using global::System.Net.Http.Json;
|
|
16
|
+
global using global::System.Threading;
|
|
17
|
+
global using global::System.Threading.Tasks;
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"targets": {
|
|
4
|
+
"net7.0": {}
|
|
5
|
+
},
|
|
6
|
+
"libraries": {},
|
|
7
|
+
"projectFileDependencyGroups": {
|
|
8
|
+
"net7.0": []
|
|
9
|
+
},
|
|
10
|
+
"packageFolders": {
|
|
11
|
+
"C:\\Users\\esipo\\.nuget\\packages\\": {}
|
|
12
|
+
},
|
|
13
|
+
"project": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"restore": {
|
|
16
|
+
"projectUniqueName": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
|
|
17
|
+
"projectName": "AIChat.npm",
|
|
18
|
+
"projectPath": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
|
|
19
|
+
"packagesPath": "C:\\Users\\esipo\\.nuget\\packages\\",
|
|
20
|
+
"outputPath": "C:\\Git\\AIChat\\AIChat.npm\\obj\\",
|
|
21
|
+
"projectStyle": "PackageReference",
|
|
22
|
+
"configFilePaths": [
|
|
23
|
+
"C:\\Users\\esipo\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
24
|
+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
25
|
+
],
|
|
26
|
+
"originalTargetFrameworks": [
|
|
27
|
+
"net7.0"
|
|
28
|
+
],
|
|
29
|
+
"sources": {
|
|
30
|
+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
31
|
+
"C:\\Program Files\\dotnet\\library-packs": {},
|
|
32
|
+
"https://api.nuget.org/v3/index.json": {}
|
|
33
|
+
},
|
|
34
|
+
"frameworks": {
|
|
35
|
+
"net7.0": {
|
|
36
|
+
"targetAlias": "net7.0",
|
|
37
|
+
"projectReferences": {}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"warningProperties": {
|
|
41
|
+
"warnAsError": [
|
|
42
|
+
"NU1605"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"restoreAuditProperties": {
|
|
46
|
+
"enableAudit": "true",
|
|
47
|
+
"auditLevel": "low",
|
|
48
|
+
"auditMode": "direct"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"frameworks": {
|
|
52
|
+
"net7.0": {
|
|
53
|
+
"targetAlias": "net7.0",
|
|
54
|
+
"imports": [
|
|
55
|
+
"net461",
|
|
56
|
+
"net462",
|
|
57
|
+
"net47",
|
|
58
|
+
"net471",
|
|
59
|
+
"net472",
|
|
60
|
+
"net48",
|
|
61
|
+
"net481"
|
|
62
|
+
],
|
|
63
|
+
"assetTargetFallback": true,
|
|
64
|
+
"warn": true,
|
|
65
|
+
"frameworkReferences": {
|
|
66
|
+
"Microsoft.AspNetCore.App": {
|
|
67
|
+
"privateAssets": "none"
|
|
68
|
+
},
|
|
69
|
+
"Microsoft.NETCore.App": {
|
|
70
|
+
"privateAssets": "all"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.302\\RuntimeIdentifierGraph.json"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "embeddedaichatux",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "A lightweight and customizable embedded AI chat UI component that seamlessly integrates into web applications, offering minimized and expanded views, with iframe-based content rendering.",
|
|
5
5
|
"main": "EmbeddedChat.js",
|
|
6
6
|
"scripts": {
|