cmcts-c-agent-embedding 1.0.36-cagent → 1.0.37-cagent
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/queries/sendMessageQuery.d.ts +5 -1
- package/dist/queries/sendMessageQuery.d.ts.map +1 -1
- package/dist/web.js +1 -1
- package/package.json +2 -2
- package/.idea/flowise-chatbox.iml +0 -12
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/auggie_shell_conversation.txt +0 -31
- package/auggie_shell_user_request.txt +0 -5
- package/dist/BubbleChat.d.ts +0 -10
- package/dist/BubbleChat.d.ts.map +0 -1
- package/dist/FullPageChat.d.ts +0 -18
- package/dist/FullPageChat.d.ts.map +0 -1
- package/dist/components/bubbles/ChartPortalContainer.d.ts +0 -12
- package/dist/components/bubbles/ChartPortalContainer.d.ts.map +0 -1
- package/dist/components/icons/CmcIcon.d.ts +0 -3
- package/dist/components/icons/CmcIcon.d.ts.map +0 -1
- package/dist/components/icons/ResetBtn.d.ts +0 -3
- package/dist/components/icons/ResetBtn.d.ts.map +0 -1
- package/dist/components/icons/SendIconOff.d.ts +0 -3
- package/dist/components/icons/SendIconOff.d.ts.map +0 -1
- package/dist/components/icons/SendIconOn.d.ts +0 -3
- package/dist/components/icons/SendIconOn.d.ts.map +0 -1
- package/dist/index.js +0 -1
- package/dist/utils/chartConfigManager.d.ts +0 -54
- package/dist/utils/chartConfigManager.d.ts.map +0 -1
- package/dist/utils/chartPopupManager.d.ts +0 -43
- package/dist/utils/chartPopupManager.d.ts.map +0 -1
- package/dist/utils/chartPortalManager.d.ts +0 -76
- package/dist/utils/chartPortalManager.d.ts.map +0 -1
- package/dist/utils/security.d.ts +0 -50
- package/dist/utils/security.d.ts.map +0 -1
- package/dist/utils/textStreamSmoother.d.ts +0 -40
- package/dist/utils/textStreamSmoother.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmcts-c-agent-embedding",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37-cagent",
|
|
4
4
|
"description": "Javascript library to display flowise chatbot on your website",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -83,4 +83,4 @@
|
|
|
83
83
|
"uuid": "^9.0.1"
|
|
84
84
|
},
|
|
85
85
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
86
|
-
}
|
|
86
|
+
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
-
</content>
|
|
9
|
-
<orderEntry type="inheritedJdk" />
|
|
10
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
-
</component>
|
|
12
|
-
</module>
|
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/flowise-chatbox.iml" filepath="$PROJECT_DIR$/.idea/flowise-chatbox.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|
package/.idea/vcs.xml
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
================================================================================
|
|
2
|
-
[2025-12-08T08:00:11.010Z]
|
|
3
|
-
Modify the bubble icon button in the flowise-chatbox project with these requirements:
|
|
4
|
-
|
|
5
|
-
**Problem:** The bubble button icon needs to be larger (60x60) and more prominent with enhanced box shadow.
|
|
6
|
-
|
|
7
|
-
**Definition of Done:**
|
|
8
|
-
1. The bubble button size should be 60x60 pixels by default (update the `getBubbleButtonSize` function default return and 'medium' size to 60)
|
|
9
|
-
2. The bubble button should have a more prominent box shadow to stand out from the background - enhance the current `shadow-md` class to something more visible like `shadow-lg` or add a custom box-shadow style
|
|
10
|
-
3. The icon inside the button should scale proportionally with the new size
|
|
11
|
-
|
|
12
|
-
Files to investigate:
|
|
13
|
-
- `src/features/bubble/components/BubbleButton.tsx` - bubble button component
|
|
14
|
-
- `src/utils/index.ts` - `getBubbleButtonSize` function
|
|
15
|
-
|
|
16
|
-
Do not create or modify any markdown document files or code examples.
|
|
17
|
-
|
|
18
|
-
================================================================================
|
|
19
|
-
[2025-12-08T08:04:07.951Z]
|
|
20
|
-
Run `bun run dev` command and fix any errors that occur. Investigate the root cause and resolve the issue.
|
|
21
|
-
|
|
22
|
-
Do not create or modify any markdown document files or code examples.
|
|
23
|
-
|
|
24
|
-
================================================================================
|
|
25
|
-
[2025-12-08T08:12:29.577Z]
|
|
26
|
-
Change the bubble button default position from right: 20px, bottom: 20px to right: 50px, bottom: 50px.
|
|
27
|
-
|
|
28
|
-
The position values are in `src/features/bubble/components/BubbleButton.tsx` - update the inline style values for `right` and `bottom` from `20px` to `50px`.
|
|
29
|
-
|
|
30
|
-
Do not create or modify any markdown document files or code examples.
|
|
31
|
-
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
Change the bubble button default position from right: 20px, bottom: 20px to right: 50px, bottom: 50px.
|
|
2
|
-
|
|
3
|
-
The position values are in `src/features/bubble/components/BubbleButton.tsx` - update the inline style values for `right` and `bottom` from `20px` to `50px`.
|
|
4
|
-
|
|
5
|
-
Do not create or modify any markdown document files or code examples.
|
package/dist/BubbleChat.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare global {
|
|
3
|
-
namespace JSX {
|
|
4
|
-
interface IntrinsicElements {
|
|
5
|
-
'flowise-chatbot': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
export declare const BubbleChat: (props: BubbleProps) => null;
|
|
10
|
-
//# sourceMappingURL=BubbleChat.d.ts.map
|
package/dist/BubbleChat.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BubbleChat.d.ts","sourceRoot":"","sources":["../src/BubbleChat.tsx"],"names":[],"mappings":";AAKA,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YACzB,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CACxC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EACjC,WAAW,CACZ,CAAA;SACF;KACF;CACF;AAID,eAAO,MAAM,UAAU,8BAkCtB,CAAA"}
|
package/dist/FullPageChat.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { BotProps } from 'cmcts-c-agent-embedding';
|
|
3
|
-
type Props = BotProps & {
|
|
4
|
-
style?: React.CSSProperties;
|
|
5
|
-
className?: string;
|
|
6
|
-
};
|
|
7
|
-
declare global {
|
|
8
|
-
namespace JSX {
|
|
9
|
-
interface IntrinsicElements {
|
|
10
|
-
'flowise-fullchatbot': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & {
|
|
11
|
-
class?: string;
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export declare const FullPageChat: ({ style, className, ...assignableProps }: Props) => JSX.Element;
|
|
17
|
-
export {};
|
|
18
|
-
//# sourceMappingURL=FullPageChat.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FullPageChat.d.ts","sourceRoot":"","sources":["../src/FullPageChat.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AAGvD,KAAK,KAAK,GAAG,QAAQ,GAAG;IACtB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YACzB,qBAAqB,EAAE,KAAK,CAAC,iBAAiB,CAC5C,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EACjC,WAAW,CACZ,GAAG;gBAAE,KAAK,CAAC,EAAE,MAAM,CAAA;aAAE,CAAA;SACvB;KACF;CACF;AAID,eAAO,MAAM,YAAY,6CAA8C,KAAK,gBAe3E,CAAA"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export interface ChartPortalContainerProps {
|
|
2
|
-
backgroundColor?: string;
|
|
3
|
-
textColor?: string;
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* Portal container that renders all charts outside the reactive streaming flow.
|
|
7
|
-
* Charts are positioned absolutely to overlay their corresponding placeholders.
|
|
8
|
-
* This prevents chart re-renders during message streaming.
|
|
9
|
-
*/
|
|
10
|
-
export declare const ChartPortalContainer: (props: ChartPortalContainerProps) => import("solid-js").JSX.Element;
|
|
11
|
-
export default ChartPortalContainer;
|
|
12
|
-
//# sourceMappingURL=ChartPortalContainer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ChartPortalContainer.d.ts","sourceRoot":"","sources":["../../../src/components/bubbles/ChartPortalContainer.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,yBAAyB;IACxC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,UAAW,yBAAyB,mCA+DpE,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CmcIcon.d.ts","sourceRoot":"","sources":["../../../src/components/icons/CmcIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,eAAO,MAAM,OAAO,UAAW,IAAI,gBAAgB,CAAC,aAAa,CAAC,gBAgBjE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetBtn.d.ts","sourceRoot":"","sources":["../../../src/components/icons/ResetBtn.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,eAAO,MAAM,QAAQ,UAAW,IAAI,gBAAgB,CAAC,aAAa,CAAC,gBAYlE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SendIconOff.d.ts","sourceRoot":"","sources":["../../../src/components/icons/SendIconOff.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,eAAO,MAAM,WAAW,UAAW,IAAI,gBAAgB,CAAC,aAAa,CAAC,gBAOrE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SendIconOn.d.ts","sourceRoot":"","sources":["../../../src/components/icons/SendIconOn.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,eAAO,MAAM,UAAU,UAAW,IAAI,gBAAgB,CAAC,aAAa,CAAC,gBAOpE,CAAC"}
|