@chatsystem/client 1.1.12 → 1.1.14
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.js +692 -673
- package/package.json +1 -1
- package/tailwind.config.ts +8 -15
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
package/tailwind.config.ts
CHANGED
|
@@ -5,21 +5,14 @@ const config: Config = {
|
|
|
5
5
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
6
6
|
theme: {
|
|
7
7
|
extend: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
// 500: "#5511ef50",
|
|
17
|
-
// 600: "#5511ef60",
|
|
18
|
-
// 700: "#5511ef70",
|
|
19
|
-
// 800: "#5511ef80",
|
|
20
|
-
// 900: "#5511ef90",
|
|
21
|
-
// 1000: "#5511ef100",
|
|
22
|
-
// },
|
|
8
|
+
animation: {
|
|
9
|
+
"fade-in": "fadeIn 0.3s ease-in-out",
|
|
10
|
+
},
|
|
11
|
+
keyframes: {
|
|
12
|
+
fadeIn: {
|
|
13
|
+
"0%": { opacity: "0", transform: "translateY(4px)" },
|
|
14
|
+
"100%": { opacity: "1", transform: "translateY(0)" },
|
|
15
|
+
},
|
|
23
16
|
},
|
|
24
17
|
},
|
|
25
18
|
},
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/App.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/components/BaseComponents/Button/Button.tsx","./src/components/BaseComponents/Chatbox/Chatbox.consts.ts","./src/components/BaseComponents/Chatbox/Chatbox.func.ts","./src/components/BaseComponents/Chatbox/Chatbox.tsx","./src/components/BaseComponents/Chatbox/Chatline.tsx","./src/components/BaseComponents/Chatbox/chatbot.hooks.ts","./src/components/BaseComponents/Chatbox/types.chatbox.ts","./src/components/BaseComponents/Chatbox/Console/console.const.ts","./src/components/BaseComponents/Chatbox/Console/console.func.ts","./src/components/BaseComponents/Chatbox/LoadingPart/LoadingPart.hooks.ts","./src/components/BaseComponents/Chatbox/LoadingPart/LoadingPart.tsx","./src/components/BaseComponents/Loaders/CircleLoader/CircleLoader.tsx","./src/components/BaseComponents/Textarea/ArrowButton.tsx","./src/components/BaseComponents/Textarea/StopButton.tsx","./src/components/BaseComponents/Textarea/Textarea.tsx","./src/components/ChatDisplay/types.ts","./src/components/ChatDisplay/Bubble/Bubble.tsx","./src/components/ChatDisplay/Widget/Widget.tsx","./src/components/ChatDisplay/Widget/WidgetContainer.tsx","./src/components/Context/ContextWrapper/ContextWrapper.tsx","./src/config/env.ts","./src/contexts/appCurrentLang.context.ts","./src/modules/common/api.service.ts","./src/modules/common/stream/StreamHandler.ts","./src/modules/common/stream/types.ts","./src/modules/i18n/i18n.consts.ts","./src/modules/i18n/i18n.func.ts","./src/modules/i18n/i18n.hooks.ts","./src/modules/i18n/i18n.service.ts","./src/modules/i18n/components/IntlLangWrapper.tsx","./src/modules/i18n/translations/en-US.ts","./src/modules/i18n/translations/fr-FR.ts","./src/modules/i18n/types/i18n.types.ts","./tailwind.config.ts","./vite.config.ts"],"version":"5.6.3"}
|
|
1
|
+
{"root":["./src/App.tsx","./src/app.hooks.ts","./src/main.tsx","./src/vite-env.d.ts","./src/components/BaseComponents/Button/Button.tsx","./src/components/BaseComponents/Chatbox/Chatbox.consts.ts","./src/components/BaseComponents/Chatbox/Chatbox.func.ts","./src/components/BaseComponents/Chatbox/Chatbox.tsx","./src/components/BaseComponents/Chatbox/Chatline.tsx","./src/components/BaseComponents/Chatbox/chatbot.hooks.ts","./src/components/BaseComponents/Chatbox/types.chatbox.ts","./src/components/BaseComponents/Chatbox/Console/console.const.ts","./src/components/BaseComponents/Chatbox/Console/console.func.ts","./src/components/BaseComponents/Chatbox/LoadingPart/LoadingPart.hooks.ts","./src/components/BaseComponents/Chatbox/LoadingPart/LoadingPart.tsx","./src/components/BaseComponents/Loaders/CircleLoader/CircleLoader.tsx","./src/components/BaseComponents/Textarea/ArrowButton.tsx","./src/components/BaseComponents/Textarea/StopButton.tsx","./src/components/BaseComponents/Textarea/Textarea.tsx","./src/components/ChatDisplay/types.ts","./src/components/ChatDisplay/Bubble/Bubble.tsx","./src/components/ChatDisplay/Widget/Widget.tsx","./src/components/ChatDisplay/Widget/WidgetContainer.tsx","./src/components/Context/ContextWrapper/ContextWrapper.tsx","./src/config/env.ts","./src/contexts/appCurrentLang.context.ts","./src/contexts/chatbotInitialConversation.context.ts","./src/modules/common/api.service.ts","./src/modules/common/stream/StreamHandler.ts","./src/modules/common/stream/types.ts","./src/modules/i18n/i18n.consts.ts","./src/modules/i18n/i18n.func.ts","./src/modules/i18n/i18n.hooks.ts","./src/modules/i18n/i18n.service.ts","./src/modules/i18n/components/IntlLangWrapper.tsx","./src/modules/i18n/translations/en-US.ts","./src/modules/i18n/translations/fr-FR.ts","./src/modules/i18n/types/i18n.types.ts","./tailwind.config.ts","./vite.config.ts"],"version":"5.6.3"}
|