videomail-client 8.3.0 → 8.3.2
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/package.json +1 -2
- package/prototype/js/videomail-client.js +12 -15
- package/prototype/js/videomail-client.min.js +1 -1
- package/prototype/js/videomail-client.min.js.map +1 -1
- package/videomail-client.code-workspace +25 -0
- package/.eslintignore +0 -1
- package/.eslintrc.js +0 -46
- package/.nvmrc +0 -1
- package/.prettierignore +0 -1
- package/.travis.yml +0 -14
- package/audit-ci.json +0 -12
- package/babel.config.js +0 -38
- package/browserstack.png +0 -0
- package/env/dev/cert.pem +0 -26
- package/env/dev/key.pem +0 -28
- package/env/dev/release.sh +0 -96
- package/gulpfile.js +0 -241
- package/prettier.config.js +0 -8
- package/src/js/client.js +0 -210
- package/src/js/constants.js +0 -11
- package/src/js/events.js +0 -46
- package/src/js/index.js +0 -15
- package/src/js/options.js +0 -180
- package/src/js/resource.js +0 -206
- package/src/js/util/audioRecorder.js +0 -152
- package/src/js/util/browser.js +0 -319
- package/src/js/util/collectLogger.js +0 -72
- package/src/js/util/eventEmitter.js +0 -72
- package/src/js/util/humanize.js +0 -16
- package/src/js/util/mediaEvents.js +0 -148
- package/src/js/util/pretty.js +0 -70
- package/src/js/util/standardize.js +0 -71
- package/src/js/util/videomailError.js +0 -431
- package/src/js/wrappers/buttons.js +0 -670
- package/src/js/wrappers/container.js +0 -797
- package/src/js/wrappers/dimension.js +0 -149
- package/src/js/wrappers/form.js +0 -319
- package/src/js/wrappers/optionsWrapper.js +0 -81
- package/src/js/wrappers/visuals/inside/recorder/countdown.js +0 -83
- package/src/js/wrappers/visuals/inside/recorder/facingMode.js +0 -53
- package/src/js/wrappers/visuals/inside/recorder/pausedNote.js +0 -59
- package/src/js/wrappers/visuals/inside/recorder/recordNote.js +0 -42
- package/src/js/wrappers/visuals/inside/recorder/recordTimer.js +0 -149
- package/src/js/wrappers/visuals/inside/recorderInsides.js +0 -144
- package/src/js/wrappers/visuals/notifier.js +0 -341
- package/src/js/wrappers/visuals/recorder.js +0 -1492
- package/src/js/wrappers/visuals/replay.js +0 -355
- package/src/js/wrappers/visuals/userMedia.js +0 -541
- package/src/js/wrappers/visuals.js +0 -410
- package/src/styles/css/main.min.css.js +0 -1
- package/src/styles/styl/keyframes/blink.styl +0 -16
- package/src/styles/styl/main.styl +0 -126
- package/test/core/client.test.js +0 -64
- package/test/core/resource.test.js +0 -12
- package/test/util/audioRecorder.test.js +0 -13
- package/test/util/browser.test.js +0 -157
- package/test/util/collectLogger.test.js +0 -13
- package/test/util/eventEmitter.test.js +0 -13
- package/test/util/humanize.test.js +0 -21
- package/test/util/pretty.test.js +0 -116
- package/test/util/videomailError.test.js +0 -323
- package/test/wrappers/buttons.test.js +0 -15
- package/test/wrappers/container.test.js +0 -18
- package/test/wrappers/form.test.js +0 -13
- package/test/wrappers/notifier.test.js +0 -13
- package/test/wrappers/recorder.test.js +0 -18
- package/test/wrappers/replay.test.js +0 -15
- package/test/wrappers/userMedia.test.js +0 -13
- package/test/wrappers/visuals.test.js +0 -18
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import test from "tape-catch";
|
|
2
|
-
|
|
3
|
-
import Recorder from "./../../src/js/wrappers/visuals/recorder";
|
|
4
|
-
|
|
5
|
-
test("Recorder:", function (t) {
|
|
6
|
-
t.test("can be instantiated", function (tt) {
|
|
7
|
-
tt.plan(1);
|
|
8
|
-
|
|
9
|
-
tt.doesNotThrow(function () {
|
|
10
|
-
return new Recorder(null, null, {
|
|
11
|
-
video: {
|
|
12
|
-
fps: 15,
|
|
13
|
-
},
|
|
14
|
-
image: {},
|
|
15
|
-
});
|
|
16
|
-
});
|
|
17
|
-
});
|
|
18
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import test from "tape-catch";
|
|
2
|
-
|
|
3
|
-
import Replay from "./../../src/js/wrappers/visuals/replay";
|
|
4
|
-
|
|
5
|
-
test("Replay:", function (t) {
|
|
6
|
-
t.test("can be instantiated", function (tt) {
|
|
7
|
-
tt.plan(1);
|
|
8
|
-
|
|
9
|
-
tt.doesNotThrow(function () {
|
|
10
|
-
return new Replay(null, {
|
|
11
|
-
debug() {},
|
|
12
|
-
});
|
|
13
|
-
});
|
|
14
|
-
});
|
|
15
|
-
});
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import test from "tape-catch";
|
|
2
|
-
|
|
3
|
-
import UserMedia from "./../../src/js/wrappers/visuals/userMedia";
|
|
4
|
-
|
|
5
|
-
test("UserMedia:", function (t) {
|
|
6
|
-
t.test("can be instantiated", function (tt) {
|
|
7
|
-
tt.plan(1);
|
|
8
|
-
|
|
9
|
-
tt.doesNotThrow(function () {
|
|
10
|
-
return new UserMedia();
|
|
11
|
-
});
|
|
12
|
-
});
|
|
13
|
-
});
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import test from "tape-catch";
|
|
2
|
-
|
|
3
|
-
import Visuals from "./../../src/js/wrappers/visuals";
|
|
4
|
-
|
|
5
|
-
test("Visuals:", function (t) {
|
|
6
|
-
t.test("can be instantiated", function (tt) {
|
|
7
|
-
tt.plan(1);
|
|
8
|
-
|
|
9
|
-
tt.doesNotThrow(function () {
|
|
10
|
-
return new Visuals(null, {
|
|
11
|
-
video: {
|
|
12
|
-
fps: 15,
|
|
13
|
-
},
|
|
14
|
-
image: {},
|
|
15
|
-
});
|
|
16
|
-
});
|
|
17
|
-
});
|
|
18
|
-
});
|