@namiruai/angular 1.11.0 → 1.13.0
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.d.ts +0 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/namiru-chat.component.d.ts +10 -6
- package/package.json +2 -3
package/dist/index.d.ts
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var c=Object.defineProperty;var
|
|
1
|
+
var c=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var e=(s,i,r,n)=>{for(var d=n>1?void 0:n?g(i,r):i,a=s.length-1,h;a>=0;a--)(h=s[a])&&(d=(n?h(i,r,d):h(d))||d);return n&&d&&c(i,r,d),d};import{Component as w,Input as o,ViewChild as u}from"@angular/core";var l="https://namiru.ai/widget.js";function m(){return new Promise((s,i)=>{if(window.NamiruChat){s();return}let r=document.querySelector(`script[src="${l}"]`);if(r){r.addEventListener("load",()=>s()),r.addEventListener("error",()=>i(new Error("Failed to load Namiru widget script")));return}let n=document.createElement("script");n.src=l,n.async=!0,n.onload=()=>s(),n.onerror=()=>i(new Error("Failed to load Namiru widget script")),document.head.appendChild(n)})}var t=class{constructor(){this.instance=null}async ngOnInit(){await m(),window.NamiruChat&&(this.instance=window.NamiruChat.init({agentId:this.agentId,...this.mode&&{mode:this.mode},...this.position&&{position:this.position},...this.width&&{width:this.width},...this.height&&{height:this.height}}))}ngOnChanges(i){this.instance&&i.agentId&&!i.agentId.firstChange&&(this.instance.destroy(),this.ngOnInit())}ngOnDestroy(){this.instance?.destroy(),this.instance=null}};e([o()],t.prototype,"agentId",2),e([o()],t.prototype,"mode",2),e([o()],t.prototype,"position",2),e([o()],t.prototype,"width",2),e([o()],t.prototype,"height",2),e([u("container",{static:!0})],t.prototype,"containerRef",2),t=e([w({selector:"namiru-chat",standalone:!0,template:`<div #container [style.width]="mode === 'inline' ? width : null" [style.height]="mode === 'inline' ? height : null"></div>`})],t);export{t as NamiruChatComponent};
|
|
2
2
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/namiru-chat.component.ts"],
|
|
4
|
-
"sourcesContent": ["import {\n Component,\n ElementRef,\n
|
|
5
|
-
"mappings": "wMAAA,OACE,aAAAA,EAEA,
|
|
6
|
-
"names": ["Component", "
|
|
4
|
+
"sourcesContent": ["import {\n Component,\n ElementRef,\n Input,\n OnChanges,\n OnDestroy,\n OnInit,\n SimpleChanges,\n ViewChild,\n} from \"@angular/core\";\n\ndeclare global {\n interface Window {\n NamiruChat?: {\n init: (config: Record<string, unknown>) => { destroy: () => void };\n };\n }\n}\n\nconst WIDGET_SCRIPT_URL = \"https://namiru.ai/widget.js\";\n\nfunction loadWidgetScript(): Promise<void> {\n return new Promise((resolve, reject) => {\n if (window.NamiruChat) { resolve(); return; }\n const existing = document.querySelector(`script[src=\"${WIDGET_SCRIPT_URL}\"]`);\n if (existing) {\n existing.addEventListener(\"load\", () => resolve());\n existing.addEventListener(\"error\", () => reject(new Error(\"Failed to load Namiru widget script\")));\n return;\n }\n const script = document.createElement(\"script\");\n script.src = WIDGET_SCRIPT_URL;\n script.async = true;\n script.onload = () => resolve();\n script.onerror = () => reject(new Error(\"Failed to load Namiru widget script\"));\n document.head.appendChild(script);\n });\n}\n\n@Component({\n selector: \"namiru-chat\",\n standalone: true,\n template: `<div #container [style.width]=\"mode === 'inline' ? width : null\" [style.height]=\"mode === 'inline' ? height : null\"></div>`,\n})\nexport class NamiruChatComponent implements OnInit, OnDestroy, OnChanges {\n @Input() agentId!: string;\n @Input() mode?: \"button\" | \"inline\";\n @Input() position?: \"bottom-right\" | \"bottom-left\";\n @Input() width?: string;\n @Input() height?: string;\n\n @ViewChild(\"container\", { static: true }) containerRef!: ElementRef;\n\n private instance: { destroy: () => void } | null = null;\n\n async ngOnInit(): Promise<void> {\n await loadWidgetScript();\n if (!window.NamiruChat) return;\n\n this.instance = window.NamiruChat.init({\n agentId: this.agentId,\n ...(this.mode && { mode: this.mode }),\n ...(this.position && { position: this.position }),\n ...(this.width && { width: this.width }),\n ...(this.height && { height: this.height }),\n });\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n if (!this.instance) return;\n if (changes[\"agentId\"] && !changes[\"agentId\"].firstChange) {\n this.instance.destroy();\n this.ngOnInit();\n }\n }\n\n ngOnDestroy(): void {\n this.instance?.destroy();\n this.instance = null;\n }\n}\n"],
|
|
5
|
+
"mappings": "wMAAA,OACE,aAAAA,EAEA,SAAAC,EAKA,aAAAC,MACK,gBAUP,IAAMC,EAAoB,8BAE1B,SAASC,GAAkC,CACzC,OAAO,IAAI,QAAQ,CAACC,EAASC,IAAW,CACtC,GAAI,OAAO,WAAY,CAAED,EAAQ,EAAG,MAAQ,CAC5C,IAAME,EAAW,SAAS,cAAc,eAAeJ,CAAiB,IAAI,EAC5E,GAAII,EAAU,CACZA,EAAS,iBAAiB,OAAQ,IAAMF,EAAQ,CAAC,EACjDE,EAAS,iBAAiB,QAAS,IAAMD,EAAO,IAAI,MAAM,qCAAqC,CAAC,CAAC,EACjG,MACF,CACA,IAAME,EAAS,SAAS,cAAc,QAAQ,EAC9CA,EAAO,IAAML,EACbK,EAAO,MAAQ,GACfA,EAAO,OAAS,IAAMH,EAAQ,EAC9BG,EAAO,QAAU,IAAMF,EAAO,IAAI,MAAM,qCAAqC,CAAC,EAC9E,SAAS,KAAK,YAAYE,CAAM,CAClC,CAAC,CACH,CAOO,IAAMC,EAAN,KAAkE,CAAlE,cASL,KAAQ,SAA2C,KAEnD,MAAM,UAA0B,CAC9B,MAAML,EAAiB,EAClB,OAAO,aAEZ,KAAK,SAAW,OAAO,WAAW,KAAK,CACrC,QAAS,KAAK,QACd,GAAI,KAAK,MAAQ,CAAE,KAAM,KAAK,IAAK,EACnC,GAAI,KAAK,UAAY,CAAE,SAAU,KAAK,QAAS,EAC/C,GAAI,KAAK,OAAS,CAAE,MAAO,KAAK,KAAM,EACtC,GAAI,KAAK,QAAU,CAAE,OAAQ,KAAK,MAAO,CAC3C,CAAC,EACH,CAEA,YAAYM,EAA8B,CACnC,KAAK,UACNA,EAAQ,SAAc,CAACA,EAAQ,QAAW,cAC5C,KAAK,SAAS,QAAQ,EACtB,KAAK,SAAS,EAElB,CAEA,aAAoB,CAClB,KAAK,UAAU,QAAQ,EACvB,KAAK,SAAW,IAClB,CACF,EAnCWC,EAAA,CAARC,EAAM,GADIH,EACF,uBACAE,EAAA,CAARC,EAAM,GAFIH,EAEF,oBACAE,EAAA,CAARC,EAAM,GAHIH,EAGF,wBACAE,EAAA,CAARC,EAAM,GAJIH,EAIF,qBACAE,EAAA,CAARC,EAAM,GALIH,EAKF,sBAEiCE,EAAA,CAAzCE,EAAU,YAAa,CAAE,OAAQ,EAAK,CAAC,GAP7BJ,EAO+B,4BAP/BA,EAANE,EAAA,CALNG,EAAU,CACT,SAAU,cACV,WAAY,GACZ,SAAU,4HACZ,CAAC,GACYL",
|
|
6
|
+
"names": ["Component", "Input", "ViewChild", "WIDGET_SCRIPT_URL", "loadWidgetScript", "resolve", "reject", "existing", "script", "NamiruChatComponent", "changes", "__decorateClass", "Input", "ViewChild", "Component"]
|
|
7
7
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var a=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var u=Object.prototype.hasOwnProperty;var m=(i,t)=>{for(var s in t)a(i,s,{get:t[s],enumerable:!0})},f=(i,t,s,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of w(t))!u.call(i,e)&&e!==s&&a(i,e,{get:()=>t[e],enumerable:!(n=c(t,e))||n.enumerable});return i};var p=i=>f(a({},"__esModule",{value:!0}),i),o=(i,t,s,n)=>{for(var e=n>1?void 0:n?c(t,s):t,h=i.length-1,l;h>=0;h--)(l=i[h])&&(e=(n?l(t,s,e):l(e))||e);return n&&e&&a(t,s,e),e};var I={};m(I,{NamiruChatComponent:()=>r});module.exports=p(I);var d=require("@angular/core");var g="https://namiru.ai/widget.js";function y(){return new Promise((i,t)=>{if(window.NamiruChat){i();return}let s=document.querySelector(`script[src="${g}"]`);if(s){s.addEventListener("load",()=>i()),s.addEventListener("error",()=>t(new Error("Failed to load Namiru widget script")));return}let n=document.createElement("script");n.src=g,n.async=!0,n.onload=()=>i(),n.onerror=()=>t(new Error("Failed to load Namiru widget script")),document.head.appendChild(n)})}var r=class{constructor(){this.instance=null}async ngOnInit(){await y(),window.NamiruChat&&(this.instance=window.NamiruChat.init({agentId:this.agentId,...this.mode&&{mode:this.mode},...this.position&&{position:this.position},...this.width&&{width:this.width},...this.height&&{height:this.height}}))}ngOnChanges(t){this.instance&&t.agentId&&!t.agentId.firstChange&&(this.instance.destroy(),this.ngOnInit())}ngOnDestroy(){this.instance?.destroy(),this.instance=null}};o([(0,d.Input)()],r.prototype,"agentId",2),o([(0,d.Input)()],r.prototype,"mode",2),o([(0,d.Input)()],r.prototype,"position",2),o([(0,d.Input)()],r.prototype,"width",2),o([(0,d.Input)()],r.prototype,"height",2),o([(0,d.ViewChild)("container",{static:!0})],r.prototype,"containerRef",2),r=o([(0,d.Component)({selector:"namiru-chat",standalone:!0,template:`<div #container [style.width]="mode === 'inline' ? width : null" [style.height]="mode === 'inline' ? height : null"></div>`})],r);
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts", "../src/namiru-chat.component.ts"],
|
|
4
|
-
"sourcesContent": ["export { NamiruChatComponent } from \"./namiru-chat.component\";\
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": ["src_exports", "__export", "NamiruChatComponent", "__toCommonJS", "import_core", "
|
|
4
|
+
"sourcesContent": ["export { NamiruChatComponent } from \"./namiru-chat.component\";\n", "import {\n Component,\n ElementRef,\n Input,\n OnChanges,\n OnDestroy,\n OnInit,\n SimpleChanges,\n ViewChild,\n} from \"@angular/core\";\n\ndeclare global {\n interface Window {\n NamiruChat?: {\n init: (config: Record<string, unknown>) => { destroy: () => void };\n };\n }\n}\n\nconst WIDGET_SCRIPT_URL = \"https://namiru.ai/widget.js\";\n\nfunction loadWidgetScript(): Promise<void> {\n return new Promise((resolve, reject) => {\n if (window.NamiruChat) { resolve(); return; }\n const existing = document.querySelector(`script[src=\"${WIDGET_SCRIPT_URL}\"]`);\n if (existing) {\n existing.addEventListener(\"load\", () => resolve());\n existing.addEventListener(\"error\", () => reject(new Error(\"Failed to load Namiru widget script\")));\n return;\n }\n const script = document.createElement(\"script\");\n script.src = WIDGET_SCRIPT_URL;\n script.async = true;\n script.onload = () => resolve();\n script.onerror = () => reject(new Error(\"Failed to load Namiru widget script\"));\n document.head.appendChild(script);\n });\n}\n\n@Component({\n selector: \"namiru-chat\",\n standalone: true,\n template: `<div #container [style.width]=\"mode === 'inline' ? width : null\" [style.height]=\"mode === 'inline' ? height : null\"></div>`,\n})\nexport class NamiruChatComponent implements OnInit, OnDestroy, OnChanges {\n @Input() agentId!: string;\n @Input() mode?: \"button\" | \"inline\";\n @Input() position?: \"bottom-right\" | \"bottom-left\";\n @Input() width?: string;\n @Input() height?: string;\n\n @ViewChild(\"container\", { static: true }) containerRef!: ElementRef;\n\n private instance: { destroy: () => void } | null = null;\n\n async ngOnInit(): Promise<void> {\n await loadWidgetScript();\n if (!window.NamiruChat) return;\n\n this.instance = window.NamiruChat.init({\n agentId: this.agentId,\n ...(this.mode && { mode: this.mode }),\n ...(this.position && { position: this.position }),\n ...(this.width && { width: this.width }),\n ...(this.height && { height: this.height }),\n });\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n if (!this.instance) return;\n if (changes[\"agentId\"] && !changes[\"agentId\"].firstChange) {\n this.instance.destroy();\n this.ngOnInit();\n }\n }\n\n ngOnDestroy(): void {\n this.instance?.destroy();\n this.instance = null;\n }\n}\n"],
|
|
5
|
+
"mappings": "2iBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,IAAA,eAAAC,EAAAH,GCAA,IAAAI,EASO,yBAUP,IAAMC,EAAoB,8BAE1B,SAASC,GAAkC,CACzC,OAAO,IAAI,QAAQ,CAACC,EAASC,IAAW,CACtC,GAAI,OAAO,WAAY,CAAED,EAAQ,EAAG,MAAQ,CAC5C,IAAME,EAAW,SAAS,cAAc,eAAeJ,CAAiB,IAAI,EAC5E,GAAII,EAAU,CACZA,EAAS,iBAAiB,OAAQ,IAAMF,EAAQ,CAAC,EACjDE,EAAS,iBAAiB,QAAS,IAAMD,EAAO,IAAI,MAAM,qCAAqC,CAAC,CAAC,EACjG,MACF,CACA,IAAME,EAAS,SAAS,cAAc,QAAQ,EAC9CA,EAAO,IAAML,EACbK,EAAO,MAAQ,GACfA,EAAO,OAAS,IAAMH,EAAQ,EAC9BG,EAAO,QAAU,IAAMF,EAAO,IAAI,MAAM,qCAAqC,CAAC,EAC9E,SAAS,KAAK,YAAYE,CAAM,CAClC,CAAC,CACH,CAOO,IAAMC,EAAN,KAAkE,CAAlE,cASL,KAAQ,SAA2C,KAEnD,MAAM,UAA0B,CAC9B,MAAML,EAAiB,EAClB,OAAO,aAEZ,KAAK,SAAW,OAAO,WAAW,KAAK,CACrC,QAAS,KAAK,QACd,GAAI,KAAK,MAAQ,CAAE,KAAM,KAAK,IAAK,EACnC,GAAI,KAAK,UAAY,CAAE,SAAU,KAAK,QAAS,EAC/C,GAAI,KAAK,OAAS,CAAE,MAAO,KAAK,KAAM,EACtC,GAAI,KAAK,QAAU,CAAE,OAAQ,KAAK,MAAO,CAC3C,CAAC,EACH,CAEA,YAAYM,EAA8B,CACnC,KAAK,UACNA,EAAQ,SAAc,CAACA,EAAQ,QAAW,cAC5C,KAAK,SAAS,QAAQ,EACtB,KAAK,SAAS,EAElB,CAEA,aAAoB,CAClB,KAAK,UAAU,QAAQ,EACvB,KAAK,SAAW,IAClB,CACF,EAnCWC,EAAA,IAAR,SAAM,GADIF,EACF,uBACAE,EAAA,IAAR,SAAM,GAFIF,EAEF,oBACAE,EAAA,IAAR,SAAM,GAHIF,EAGF,wBACAE,EAAA,IAAR,SAAM,GAJIF,EAIF,qBACAE,EAAA,IAAR,SAAM,GALIF,EAKF,sBAEiCE,EAAA,IAAzC,aAAU,YAAa,CAAE,OAAQ,EAAK,CAAC,GAP7BF,EAO+B,4BAP/BA,EAANE,EAAA,IALN,aAAU,CACT,SAAU,cACV,WAAY,GACZ,SAAU,4HACZ,CAAC,GACYF",
|
|
6
|
+
"names": ["src_exports", "__export", "NamiruChatComponent", "__toCommonJS", "import_core", "WIDGET_SCRIPT_URL", "loadWidgetScript", "resolve", "reject", "existing", "script", "NamiruChatComponent", "changes", "__decorateClass"]
|
|
7
7
|
}
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
import { ElementRef,
|
|
2
|
-
|
|
1
|
+
import { ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
|
|
2
|
+
declare global {
|
|
3
|
+
interface Window {
|
|
4
|
+
NamiruChat?: {
|
|
5
|
+
init: (config: Record<string, unknown>) => {
|
|
6
|
+
destroy: () => void;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
}
|
|
3
11
|
export declare class NamiruChatComponent implements OnInit, OnDestroy, OnChanges {
|
|
4
12
|
agentId: string;
|
|
5
13
|
mode?: "button" | "inline";
|
|
6
14
|
position?: "bottom-right" | "bottom-left";
|
|
7
15
|
width?: string;
|
|
8
16
|
height?: string;
|
|
9
|
-
leadCapture: EventEmitter<LeadCaptureData>;
|
|
10
|
-
feedback: EventEmitter<"up" | "down">;
|
|
11
|
-
sessionStart: EventEmitter<string>;
|
|
12
|
-
sessionEnd: EventEmitter<string>;
|
|
13
17
|
containerRef: ElementRef;
|
|
14
18
|
private instance;
|
|
15
19
|
ngOnInit(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@namiruai/angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Angular wrapper for Namiru AI chat widget",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@angular/core": ">=15.0.0",
|
|
39
|
-
"@angular/common": ">=15.0.0"
|
|
40
|
-
"@namiruai/chat": "^1.0.0"
|
|
39
|
+
"@angular/common": ">=15.0.0"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
42
|
"@angular/core": "^17.0.0",
|