vue-wiguet-chatweb 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/Chat.vue.d.ts +28 -6
- package/dist/components/Loader.vue.d.ts +2 -0
- package/dist/components/MessageList.vue.d.ts +28 -0
- package/dist/components/Widget.vue.d.ts +21 -9
- package/dist/dto/app.dto.d.ts +81 -0
- package/dist/resources/functions.helpers.d.ts +1 -2
- package/dist/store/index.d.ts +13 -3
- package/dist/style.css +1 -1
- package/dist/vue-wiguet-chatweb.js +7771 -4841
- package/dist/vue-wiguet-chatweb.umd.cjs +5 -14
- package/package.json +8 -6
- package/dist/components/ChatMessage.vue.d.ts +0 -12
- /package/dist/components/{IconUser.vue.d.ts → DangerIcon.vue.d.ts} +0 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vue-wiguet-chatweb",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.11",
|
4
4
|
"type": "module",
|
5
5
|
"files": [
|
6
6
|
"dist",
|
@@ -29,14 +29,16 @@
|
|
29
29
|
"build": "vue-tsc && vite build",
|
30
30
|
"preview": "vite preview"
|
31
31
|
},
|
32
|
-
"
|
33
|
-
"@vueuse/core": "^10.
|
32
|
+
"peerDependencies": {
|
33
|
+
"@vueuse/core": "^10.0.0",
|
34
34
|
"axios": "^1.4.0",
|
35
|
-
"luxon": "^3.
|
36
|
-
"socket.io-client": "^4.7.2",
|
35
|
+
"luxon": "^3.0.0",
|
37
36
|
"uuid": "^9.0.1",
|
37
|
+
"vue": "^3.2.0"
|
38
|
+
},
|
39
|
+
"dependencies": {
|
40
|
+
"socket.io-client": "^4.7.2",
|
38
41
|
"vite-plugin-dts": "^3.4.0",
|
39
|
-
"vue": "^3.3.4",
|
40
42
|
"vue-rabbit-frontend": "^0.0.15"
|
41
43
|
},
|
42
44
|
"devDependencies": {
|
@@ -1,12 +0,0 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
2
|
-
message: {
|
3
|
-
type: ObjectConstructor;
|
4
|
-
required: true;
|
5
|
-
};
|
6
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
message: {
|
8
|
-
type: ObjectConstructor;
|
9
|
-
required: true;
|
10
|
-
};
|
11
|
-
}>>, {}, {}>;
|
12
|
-
export default _default;
|
File without changes
|