@stream-io/video-filters-web 0.6.0 → 0.7.0

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.7.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-filters-web-0.6.0...@stream-io/video-filters-web-0.7.0) (2025-12-23)
6
+
7
+ ### Features
8
+
9
+ - **react:** Implement progress bar when video-filters are being loaded ([#2063](https://github.com/GetStream/stream-video-js/issues/2063)) ([3a6b92e](https://github.com/GetStream/stream-video-js/commit/3a6b92e092805160cbf0e289d70fcccafcb20199))
10
+
5
11
  ## [0.6.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-filters-web-0.5.1...@stream-io/video-filters-web-0.6.0) (2025-12-08)
6
12
 
7
13
  ### Features
package/dist/index.cjs.js CHANGED
@@ -1561,7 +1561,7 @@ const createTFLiteSIMDModule = (__Module) => {
1561
1561
  return __Module.ready;
1562
1562
  };
1563
1563
 
1564
- const version = "0.6.0";
1564
+ const version = "0.7.0";
1565
1565
  const packageName = "@stream-io/video-filters-web";
1566
1566
 
1567
1567
  // @ts-expect-error - module is not declared
@@ -1604,16 +1604,16 @@ const loadMediaPipe = async (options = {}) => {
1604
1604
 
1605
1605
  const BACKGROUND_BLUR_MAP = {
1606
1606
  low: {
1607
- bgBlur: 15,
1608
- bgBlurRadius: 5,
1607
+ bgBlur: 5,
1608
+ bgBlurRadius: 3,
1609
1609
  },
1610
1610
  medium: {
1611
- bgBlur: 20,
1612
- bgBlurRadius: 7,
1611
+ bgBlur: 15,
1612
+ bgBlurRadius: 4,
1613
1613
  },
1614
1614
  high: {
1615
- bgBlur: 25,
1616
- bgBlurRadius: 10,
1615
+ bgBlur: 30,
1616
+ bgBlurRadius: 5,
1617
1617
  },
1618
1618
  };
1619
1619