@viewberapp/chat 0.0.67 → 0.0.69
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 +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/react/index.d.ts +3 -0
- package/dist/react/index.js +15 -0
- package/dist/react/index.js.map +1 -0
- package/package.json +4 -5
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -29,4 +29,5 @@ Object.defineProperty(exports, "ConsoleLogger", { enumerable: true, get: functio
|
|
|
29
29
|
Object.defineProperty(exports, "RollbarLogger", { enumerable: true, get: function () { return logger_1.RollbarLogger; } });
|
|
30
30
|
Object.defineProperty(exports, "NullLogger", { enumerable: true, get: function () { return logger_1.NullLogger; } });
|
|
31
31
|
__exportStar(require("./util"), exports);
|
|
32
|
+
__exportStar(require("./react"), exports);
|
|
32
33
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;AACb,kDAA0B;AAWtB,eAXG,cAAI,CAWH;AAVR,8DAAsC;AAWlC,kBAXG,iBAAO,CAWH;AAVX,oFAA4D;AAWxD,6BAXG,4BAAkB,CAWH;AATtB,mCAIkB;AAHd,uGAAA,aAAa,OAAA;AACb,uGAAA,aAAa,OAAA;AACb,oGAAA,UAAU,OAAA;AASd,yCAAuB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;AACb,kDAA0B;AAWtB,eAXG,cAAI,CAWH;AAVR,8DAAsC;AAWlC,kBAXG,iBAAO,CAWH;AAVX,oFAA4D;AAWxD,6BAXG,4BAAkB,CAWH;AATtB,mCAIkB;AAHd,uGAAA,aAAa,OAAA;AACb,uGAAA,aAAa,OAAA;AACb,oGAAA,UAAU,OAAA;AASd,yCAAuB;AACvB,0CAAwB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ConnectionAndChannelStatusLabel = exports.AdminMessage = exports.Message = exports.useAppointmentChat = exports.useChat = void 0;
|
|
7
|
+
var useChat_1 = require("./useChat");
|
|
8
|
+
Object.defineProperty(exports, "useChat", { enumerable: true, get: function () { return __importDefault(useChat_1).default; } });
|
|
9
|
+
var useAppointmentChat_1 = require("./useAppointmentChat");
|
|
10
|
+
Object.defineProperty(exports, "useAppointmentChat", { enumerable: true, get: function () { return __importDefault(useAppointmentChat_1).default; } });
|
|
11
|
+
var components_1 = require("./components");
|
|
12
|
+
Object.defineProperty(exports, "Message", { enumerable: true, get: function () { return components_1.Message; } });
|
|
13
|
+
Object.defineProperty(exports, "AdminMessage", { enumerable: true, get: function () { return components_1.AdminMessage; } });
|
|
14
|
+
Object.defineProperty(exports, "ConnectionAndChannelStatusLabel", { enumerable: true, get: function () { return components_1.ConnectionAndChannelStatusLabel; } });
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/react/index.ts"],"names":[],"mappings":";;;;;;AAAA,qCAA+C;AAAtC,mHAAA,OAAO,OAAW;AAC3B,2DAAqE;AAA5D,yIAAA,OAAO,OAAsB;AAEtC,2CAIsB;AAHlB,qGAAA,OAAO,OAAA;AACP,0GAAA,YAAY,OAAA;AACZ,6HAAA,+BAA+B,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viewberapp/chat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.69",
|
|
4
4
|
"description": "Viewber chat",
|
|
5
5
|
"author": "Jacob <jacob.chen@viewber.co.uk>",
|
|
6
6
|
"homepage": "https://bitbucket.org/ezadr/viewberjs#readme",
|
|
7
7
|
"license": "ISC",
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"typings": "dist/index.d.ts",
|
|
10
8
|
"exports": {
|
|
9
|
+
".": "./dist/index.js",
|
|
11
10
|
"./util": "./dist/util/index.js",
|
|
12
|
-
"./react
|
|
11
|
+
"./react": "./dist/react/index.js"
|
|
13
12
|
},
|
|
14
13
|
"directories": {
|
|
15
14
|
"dist": "dist",
|
|
@@ -45,5 +44,5 @@
|
|
|
45
44
|
"react": "^16.14.0",
|
|
46
45
|
"rollbar": "^2.25.0"
|
|
47
46
|
},
|
|
48
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "8f17326c68a7d9601bc906f945020c530fb2ac9e"
|
|
49
48
|
}
|