@pexip/media-control 17.0.0 → 17.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 17.1.1
4
+
5
+ ## 17.1.0
6
+
7
+ ### Minor Changes
8
+
9
+ - 4298b039: Add `resizeMode` type as it is not supported cross-browser
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [9fa7884d]
14
+ - @pexip/utils@16.7.0
15
+
3
16
  ## 17.0.0
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -6,6 +6,10 @@ A library that will handle media by wrapping
6
6
  [`enumerateDevices`][enumeratedevices] and [`getUserMedia`][getusermedia]
7
7
  extending both functions with additional logic.
8
8
 
9
+ ## Install
10
+
11
+ `npm install @pexip/media-control`
12
+
9
13
  ## Table of Contents
10
14
 
11
15
  - [Introduction](#introduction)
package/dist/index.d.ts CHANGED
@@ -68,6 +68,10 @@ interface InputConstraintSet extends MediaTrackConstraints {
68
68
  * Image Url that is being used for video overlay effects
69
69
  */
70
70
  bgImageUrl?: ConstrainDOMString;
71
+ /**
72
+ * Image Url that is being used for video overlay effects
73
+ */
74
+ resizeMode?: ConstrainDOMString;
71
75
  }
72
76
  type InputDeviceConstraint = DeviceConstraint | InputConstraintSet | boolean;
73
77
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip/media-control",
3
- "version": "17.0.0",
3
+ "version": "17.1.1",
4
4
  "homepage": "https://gitlab.com/pexip/zoo",
5
5
  "bugs": "https://gitlab.com/pexip/zoo/issues",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "typecheck": "yarn tsc --noEmit -p tsconfig.build.json"
27
27
  },
28
28
  "dependencies": {
29
- "@pexip/utils": "16.6.0"
29
+ "@pexip/utils": "16.7.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@jest/globals": "^29.5.0",