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.
Files changed (69) hide show
  1. package/package.json +1 -2
  2. package/prototype/js/videomail-client.js +12 -15
  3. package/prototype/js/videomail-client.min.js +1 -1
  4. package/prototype/js/videomail-client.min.js.map +1 -1
  5. package/videomail-client.code-workspace +25 -0
  6. package/.eslintignore +0 -1
  7. package/.eslintrc.js +0 -46
  8. package/.nvmrc +0 -1
  9. package/.prettierignore +0 -1
  10. package/.travis.yml +0 -14
  11. package/audit-ci.json +0 -12
  12. package/babel.config.js +0 -38
  13. package/browserstack.png +0 -0
  14. package/env/dev/cert.pem +0 -26
  15. package/env/dev/key.pem +0 -28
  16. package/env/dev/release.sh +0 -96
  17. package/gulpfile.js +0 -241
  18. package/prettier.config.js +0 -8
  19. package/src/js/client.js +0 -210
  20. package/src/js/constants.js +0 -11
  21. package/src/js/events.js +0 -46
  22. package/src/js/index.js +0 -15
  23. package/src/js/options.js +0 -180
  24. package/src/js/resource.js +0 -206
  25. package/src/js/util/audioRecorder.js +0 -152
  26. package/src/js/util/browser.js +0 -319
  27. package/src/js/util/collectLogger.js +0 -72
  28. package/src/js/util/eventEmitter.js +0 -72
  29. package/src/js/util/humanize.js +0 -16
  30. package/src/js/util/mediaEvents.js +0 -148
  31. package/src/js/util/pretty.js +0 -70
  32. package/src/js/util/standardize.js +0 -71
  33. package/src/js/util/videomailError.js +0 -431
  34. package/src/js/wrappers/buttons.js +0 -670
  35. package/src/js/wrappers/container.js +0 -797
  36. package/src/js/wrappers/dimension.js +0 -149
  37. package/src/js/wrappers/form.js +0 -319
  38. package/src/js/wrappers/optionsWrapper.js +0 -81
  39. package/src/js/wrappers/visuals/inside/recorder/countdown.js +0 -83
  40. package/src/js/wrappers/visuals/inside/recorder/facingMode.js +0 -53
  41. package/src/js/wrappers/visuals/inside/recorder/pausedNote.js +0 -59
  42. package/src/js/wrappers/visuals/inside/recorder/recordNote.js +0 -42
  43. package/src/js/wrappers/visuals/inside/recorder/recordTimer.js +0 -149
  44. package/src/js/wrappers/visuals/inside/recorderInsides.js +0 -144
  45. package/src/js/wrappers/visuals/notifier.js +0 -341
  46. package/src/js/wrappers/visuals/recorder.js +0 -1492
  47. package/src/js/wrappers/visuals/replay.js +0 -355
  48. package/src/js/wrappers/visuals/userMedia.js +0 -541
  49. package/src/js/wrappers/visuals.js +0 -410
  50. package/src/styles/css/main.min.css.js +0 -1
  51. package/src/styles/styl/keyframes/blink.styl +0 -16
  52. package/src/styles/styl/main.styl +0 -126
  53. package/test/core/client.test.js +0 -64
  54. package/test/core/resource.test.js +0 -12
  55. package/test/util/audioRecorder.test.js +0 -13
  56. package/test/util/browser.test.js +0 -157
  57. package/test/util/collectLogger.test.js +0 -13
  58. package/test/util/eventEmitter.test.js +0 -13
  59. package/test/util/humanize.test.js +0 -21
  60. package/test/util/pretty.test.js +0 -116
  61. package/test/util/videomailError.test.js +0 -323
  62. package/test/wrappers/buttons.test.js +0 -15
  63. package/test/wrappers/container.test.js +0 -18
  64. package/test/wrappers/form.test.js +0 -13
  65. package/test/wrappers/notifier.test.js +0 -13
  66. package/test/wrappers/recorder.test.js +0 -18
  67. package/test/wrappers/replay.test.js +0 -15
  68. package/test/wrappers/userMedia.test.js +0 -13
  69. 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
- });