@wix/editor-react-components 1.2449.0 → 1.2450.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.
@@ -1,5 +1,5 @@
1
1
  import { p as parseDocument } from "./index10.js";
2
- import { l as libExports } from "./index5.js";
2
+ import { l as libExports } from "./index4.js";
3
3
  import { s as sanitizeHTML } from "./sanitizeHTML.js";
4
4
  function parseHtml(html, options) {
5
5
  const sanitized = sanitizeHTML(html);
@@ -1,5 +1,5 @@
1
1
  import { p as parseDocument } from "./index10.js";
2
- import { l as libExports } from "./index5.js";
2
+ import { l as libExports } from "./index4.js";
3
3
  function parseSvg(svg) {
4
4
  const doc = parseDocument(svg, {
5
5
  xmlMode: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/editor-react-components",
3
- "version": "1.2449.0",
3
+ "version": "1.2450.0",
4
4
  "description": "React components for the Wix Editor",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -197,5 +197,5 @@
197
197
  "registry": "https://registry.npmjs.org/",
198
198
  "access": "public"
199
199
  },
200
- "falconPackageHash": "c2c560804b08a14c1ed0caba9014056c45883716d0bef03e4841601e"
200
+ "falconPackageHash": "b254db3c717762794613fe9e47dc0045c6c5a1c34f8ca168675d9758"
201
201
  }
@@ -1,9 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface TransparentVideoPosterProps {
3
- posterFilterId: string;
4
- posterUrl: string;
5
- containerId: string;
6
- ariaLabel?: string;
7
- filterEffectSvgString?: string;
8
- }
9
- export declare const TransparentVideoPoster: React.MemoExoticComponent<(props: TransparentVideoPosterProps) => React.JSX.Element>;