@wix/editor-react-components 1.2545.0 → 1.2546.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.
|
@@ -4,7 +4,6 @@ import React__default, { useRef, useCallback, useMemo, useEffect, useState, forw
|
|
|
4
4
|
import { c as clsx } from "../chunks/clsx.js";
|
|
5
5
|
import { useService } from "@wix/services-manager-react";
|
|
6
6
|
import { E as EnvironmentDefinition } from "../chunks/index2.js";
|
|
7
|
-
import { f as convertA11yKeysToHtmlFormat } from "../chunks/a11y.js";
|
|
8
7
|
import { d as directionStyles } from "../chunks/direction.module.js";
|
|
9
8
|
import Image3 from "../Image3/component.js";
|
|
10
9
|
import { A as ARIA_LABELS, s as selectors, d as dataDefaults } from "../chunks/constants39.js";
|
|
@@ -3564,7 +3563,6 @@ const AudioPlayer = (props) => {
|
|
|
3564
3563
|
id,
|
|
3565
3564
|
className,
|
|
3566
3565
|
direction,
|
|
3567
|
-
a11y,
|
|
3568
3566
|
audio,
|
|
3569
3567
|
coverImage,
|
|
3570
3568
|
displayMode,
|
|
@@ -3613,7 +3611,6 @@ const AudioPlayer = (props) => {
|
|
|
3613
3611
|
{
|
|
3614
3612
|
id,
|
|
3615
3613
|
...direction && { dir: direction },
|
|
3616
|
-
...a11y && convertA11yKeysToHtmlFormat(a11y),
|
|
3617
3614
|
onMouseEnter: onMouseIn,
|
|
3618
3615
|
onMouseLeave: onMouseOut,
|
|
3619
3616
|
className: clsx(
|
|
@@ -238,6 +238,12 @@ const manifest = {
|
|
|
238
238
|
...manifestMediaProgress(),
|
|
239
239
|
...manifestMouseHover()
|
|
240
240
|
},
|
|
241
|
+
displayFilters: {
|
|
242
|
+
data: {
|
|
243
|
+
// a11y is hidden because of ECL-17824. If you need to add a11y in the future, add another dataType.a11y under a different key
|
|
244
|
+
hide: ["a11y"]
|
|
245
|
+
}
|
|
246
|
+
},
|
|
241
247
|
displayGroups: {
|
|
242
248
|
coverArtGroup: {
|
|
243
249
|
displayName: DisplayNames.elements.coverMedia,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Audio, Direction, Image } from '@wix/editor-react-types';
|
|
2
2
|
import { Image3Props } from '../Image3/Image3.types';
|
|
3
3
|
import { SdkFunctionMouseHoverProps } from '../../../utils/functions/sdkFunctionCallbackProps';
|
|
4
4
|
export interface AudioPlayerElementProps {
|
|
@@ -28,7 +28,6 @@ export interface AudioPlayerProps extends SdkFunctionMouseHoverProps {
|
|
|
28
28
|
id?: string;
|
|
29
29
|
className?: string;
|
|
30
30
|
direction?: Direction;
|
|
31
|
-
a11y?: A11y;
|
|
32
31
|
audio?: Audio;
|
|
33
32
|
coverImage?: Image;
|
|
34
33
|
displayMode?: Image3Props['displayMode'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2546.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -199,5 +199,5 @@
|
|
|
199
199
|
"registry": "https://registry.npmjs.org/",
|
|
200
200
|
"access": "public"
|
|
201
201
|
},
|
|
202
|
-
"falconPackageHash": "
|
|
202
|
+
"falconPackageHash": "6832479dbb355187b2c0df1c8c54e23813710645d19f71fbc0dd9b98"
|
|
203
203
|
}
|