@clikvn/agent-widget-embedded 1.1.7-hotfix-02 → 1.1.8-dev-01
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/.idea/clik-ai-chatbot-embedded.iml +9 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +36 -0
- package/.idea/jsLinters/eslint.xml +7 -0
- package/.idea/misc.xml +9 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/dist/components/Chat/AudioPlayerSimple.d.ts +9 -0
- package/dist/components/Chat/AudioPlayerSimple.d.ts.map +1 -0
- package/dist/components/Chat/BookMeetingForm.d.ts +1 -0
- package/dist/components/Chat/BookMeetingForm.d.ts.map +1 -1
- package/dist/components/Chat/Message.d.ts.map +1 -1
- package/dist/components/Chat/MultimodalInput.d.ts.map +1 -1
- package/dist/components/Chat/MultimodalInputSimple.d.ts +22 -0
- package/dist/components/Chat/MultimodalInputSimple.d.ts.map +1 -0
- package/dist/components/Chat/Sidebar.d.ts +8 -0
- package/dist/components/Chat/Sidebar.d.ts.map +1 -0
- package/dist/components/Chat/Simplified/MultimodalInputSimplified.d.ts.map +1 -1
- package/dist/components/Chat/UserContactForm.d.ts.map +1 -1
- package/dist/features/AgentWidget/index.d.ts +1 -0
- package/dist/features/AgentWidget/index.d.ts.map +1 -1
- package/dist/index.html +49 -40
- package/dist/models.d.ts +1 -1
- package/dist/models.d.ts.map +1 -1
- package/dist/register.d.ts +1 -0
- package/dist/register.d.ts.map +1 -1
- package/dist/serve.json +11 -0
- package/dist/web.css +3680 -0
- package/dist/web.js +1 -1
- package/package.json +101 -101
- package/dist/components/Chat/ui/DatePicker.d.ts +0 -4
- package/dist/components/Chat/ui/DatePicker.d.ts.map +0 -1
- package/dist/components/Chat/ui/Popover.d.ts +0 -7
- package/dist/components/Chat/ui/Popover.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@clikvn/agent-widget-embedded",
|
|
3
|
-
"description": "This is agent widget",
|
|
4
|
-
"version": "1.1.
|
|
5
|
-
"author": "Clik JSC",
|
|
6
|
-
"license": "ISC",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"types": "dist/index.d.ts",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"dev": "rollup --watch --config rollup.config.js",
|
|
12
|
-
"build": "rollup --config rollup.config.js",
|
|
13
|
-
"lint": "eslint src",
|
|
14
|
-
"lint:fix": "eslint --fix src",
|
|
15
|
-
"prettier": "prettier --write .",
|
|
16
|
-
"pub": "publish --access public",
|
|
17
|
-
"deploy": "yarn build && yarn publish --access public"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@clikvn/agent-voice-embedded": "^0.0.10-dev",
|
|
21
|
-
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
22
|
-
"@fortawesome/free-brands-svg-icons": "^6.6.0",
|
|
23
|
-
"@fortawesome/free-regular-svg-icons": "^6.6.0",
|
|
24
|
-
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
25
|
-
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
26
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
27
|
-
"@radix-ui/react-slot": "^1.1.1",
|
|
28
|
-
"@ts-stack/markdown": "1.4.0",
|
|
29
|
-
"class-variance-authority": "^0.7.1",
|
|
30
|
-
"classnames": "^2.5.1",
|
|
31
|
-
"clsx": "^2.1.1",
|
|
32
|
-
"date-fns": "^4.1.0",
|
|
33
|
-
"device-detector-js": "^3.0.3",
|
|
34
|
-
"framer-motion": "^11.18.0",
|
|
35
|
-
"lucide-react": "^0.546.0",
|
|
36
|
-
"react": "^18.3.1",
|
|
37
|
-
"react-datepicker": "^8.8.0",
|
|
38
|
-
"react-dom": "^18.3.1",
|
|
39
|
-
"react-markdown": "^9.0.3",
|
|
40
|
-
"react-phone-number-input": "^3.4.12",
|
|
41
|
-
"remark-gfm": "^4.0.0",
|
|
42
|
-
"swr": "^2.3.0",
|
|
43
|
-
"usehooks-ts": "^3.1.0",
|
|
44
|
-
"web-vitals": "^2.1.0"
|
|
45
|
-
},
|
|
46
|
-
"eslintConfig": {
|
|
47
|
-
"extends": [
|
|
48
|
-
"react-app",
|
|
49
|
-
"react-app/jest"
|
|
50
|
-
]
|
|
51
|
-
},
|
|
52
|
-
"browserslist": {
|
|
53
|
-
"production": [
|
|
54
|
-
">0.2%",
|
|
55
|
-
"not dead",
|
|
56
|
-
"not op_mini all"
|
|
57
|
-
],
|
|
58
|
-
"development": [
|
|
59
|
-
"last 1 chrome version",
|
|
60
|
-
"last 1 firefox version",
|
|
61
|
-
"last 1 safari version"
|
|
62
|
-
]
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
66
|
-
"@rollup/plugin-commonjs": "^28.0.1",
|
|
67
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
68
|
-
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
69
|
-
"@rollup/plugin-typescript": "^12.1.1",
|
|
70
|
-
"@tailwindcss/typography": "^0.5.15",
|
|
71
|
-
"@testing-library/jest-dom": "^5.14.1",
|
|
72
|
-
"@testing-library/react": "^13.0.0",
|
|
73
|
-
"@testing-library/user-event": "^13.2.1",
|
|
74
|
-
"@types/jest": "^29.5.14",
|
|
75
|
-
"@types/node": "^22.9.0",
|
|
76
|
-
"@types/react": "^18.3.12",
|
|
77
|
-
"@types/react-dom": "^18.3.1",
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
79
|
-
"@typescript-eslint/parser": "^8.20.0",
|
|
80
|
-
"autoprefixer": "^10.4.20",
|
|
81
|
-
"eslint": "^8.57.0",
|
|
82
|
-
"eslint-config-prettier": "^10.0.1",
|
|
83
|
-
"eslint-plugin-prettier": "^5.2.2",
|
|
84
|
-
"prettier": "^3.4.2",
|
|
85
|
-
"react-scripts": "5.0.1",
|
|
86
|
-
"rollup": "^4.26.0",
|
|
87
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
88
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
89
|
-
"rollup-plugin-replace": "^2.2.0",
|
|
90
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
91
|
-
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
92
|
-
"rollup-plugin-uglify": "^6.0.4",
|
|
93
|
-
"tailwind-merge": "^2.6.0",
|
|
94
|
-
"tailwindcss": "^3.4.15",
|
|
95
|
-
"tailwindcss-animate": "^1.0.7",
|
|
96
|
-
"typescript": "^5.6.3"
|
|
97
|
-
},
|
|
98
|
-
"engines": {
|
|
99
|
-
"node": ">=18.18.0"
|
|
100
|
-
}
|
|
101
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@clikvn/agent-widget-embedded",
|
|
3
|
+
"description": "This is agent widget",
|
|
4
|
+
"version": "1.1.8-dev-01",
|
|
5
|
+
"author": "Clik JSC",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "rollup --watch --config rollup.config.js",
|
|
12
|
+
"build": "rollup --config rollup.config.js",
|
|
13
|
+
"lint": "eslint src",
|
|
14
|
+
"lint:fix": "eslint --fix src",
|
|
15
|
+
"prettier": "prettier --write .",
|
|
16
|
+
"pub": "publish --access public",
|
|
17
|
+
"deploy": "yarn build && yarn publish --access public"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@clikvn/agent-voice-embedded": "^0.0.10-dev",
|
|
21
|
+
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
22
|
+
"@fortawesome/free-brands-svg-icons": "^6.6.0",
|
|
23
|
+
"@fortawesome/free-regular-svg-icons": "^6.6.0",
|
|
24
|
+
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
25
|
+
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
26
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
27
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
28
|
+
"@ts-stack/markdown": "1.4.0",
|
|
29
|
+
"class-variance-authority": "^0.7.1",
|
|
30
|
+
"classnames": "^2.5.1",
|
|
31
|
+
"clsx": "^2.1.1",
|
|
32
|
+
"date-fns": "^4.1.0",
|
|
33
|
+
"device-detector-js": "^3.0.3",
|
|
34
|
+
"framer-motion": "^11.18.0",
|
|
35
|
+
"lucide-react": "^0.546.0",
|
|
36
|
+
"react": "^18.3.1",
|
|
37
|
+
"react-datepicker": "^8.8.0",
|
|
38
|
+
"react-dom": "^18.3.1",
|
|
39
|
+
"react-markdown": "^9.0.3",
|
|
40
|
+
"react-phone-number-input": "^3.4.12",
|
|
41
|
+
"remark-gfm": "^4.0.0",
|
|
42
|
+
"swr": "^2.3.0",
|
|
43
|
+
"usehooks-ts": "^3.1.0",
|
|
44
|
+
"web-vitals": "^2.1.0"
|
|
45
|
+
},
|
|
46
|
+
"eslintConfig": {
|
|
47
|
+
"extends": [
|
|
48
|
+
"react-app",
|
|
49
|
+
"react-app/jest"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"browserslist": {
|
|
53
|
+
"production": [
|
|
54
|
+
">0.2%",
|
|
55
|
+
"not dead",
|
|
56
|
+
"not op_mini all"
|
|
57
|
+
],
|
|
58
|
+
"development": [
|
|
59
|
+
"last 1 chrome version",
|
|
60
|
+
"last 1 firefox version",
|
|
61
|
+
"last 1 safari version"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
66
|
+
"@rollup/plugin-commonjs": "^28.0.1",
|
|
67
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
68
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
69
|
+
"@rollup/plugin-typescript": "^12.1.1",
|
|
70
|
+
"@tailwindcss/typography": "^0.5.15",
|
|
71
|
+
"@testing-library/jest-dom": "^5.14.1",
|
|
72
|
+
"@testing-library/react": "^13.0.0",
|
|
73
|
+
"@testing-library/user-event": "^13.2.1",
|
|
74
|
+
"@types/jest": "^29.5.14",
|
|
75
|
+
"@types/node": "^22.9.0",
|
|
76
|
+
"@types/react": "^18.3.12",
|
|
77
|
+
"@types/react-dom": "^18.3.1",
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
79
|
+
"@typescript-eslint/parser": "^8.20.0",
|
|
80
|
+
"autoprefixer": "^10.4.20",
|
|
81
|
+
"eslint": "^8.57.0",
|
|
82
|
+
"eslint-config-prettier": "^10.0.1",
|
|
83
|
+
"eslint-plugin-prettier": "^5.2.2",
|
|
84
|
+
"prettier": "^3.4.2",
|
|
85
|
+
"react-scripts": "5.0.1",
|
|
86
|
+
"rollup": "^4.26.0",
|
|
87
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
88
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
89
|
+
"rollup-plugin-replace": "^2.2.0",
|
|
90
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
91
|
+
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
92
|
+
"rollup-plugin-uglify": "^6.0.4",
|
|
93
|
+
"tailwind-merge": "^2.6.0",
|
|
94
|
+
"tailwindcss": "^3.4.15",
|
|
95
|
+
"tailwindcss-animate": "^1.0.7",
|
|
96
|
+
"typescript": "^5.6.3"
|
|
97
|
+
},
|
|
98
|
+
"engines": {
|
|
99
|
+
"node": ">=18.18.0"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../../src/components/Chat/ui/DatePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAQ3B,QAAA,MAAM,UAAU,EAAE,EA8BjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
|
|
4
|
-
declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
-
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
-
export { Popover, PopoverTrigger, PopoverContent };
|
|
7
|
-
//# sourceMappingURL=Popover.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../../src/components/Chat/ui/Popover.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,QAAA,MAAM,OAAO,yCAAwB,CAAC;AAEtC,QAAA,MAAM,cAAc,gHAA2B,CAAC;AAEhD,QAAA,MAAM,cAAc,gKAgBlB,CAAC;AAEH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC"}
|