@wix/editor-react-components 1.2387.0 → 1.2389.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 { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useState
|
|
2
|
+
import { useState } from "react";
|
|
3
3
|
import { c as clsx } from "../chunks/clsx.js";
|
|
4
4
|
import { a as Fieldset, T as Tooltip, R as RadioGroup_RadioGroup_RadioGroup, b as Radio } from "../chunks/index10.js";
|
|
5
5
|
import { useService } from "@wix/services-manager-react";
|
|
@@ -89,7 +89,7 @@ function RadioButtonsComponent(props) {
|
|
|
89
89
|
onValidityChange
|
|
90
90
|
});
|
|
91
91
|
const isInvalid = showIndication && !validity.valid;
|
|
92
|
-
const errorId =
|
|
92
|
+
const errorId = `${id}-error`;
|
|
93
93
|
const handleValueChange = (next) => {
|
|
94
94
|
if (!isControlled) {
|
|
95
95
|
setUncontrolledValue(next);
|
|
@@ -506,7 +506,6 @@ const PauseButton = ({
|
|
|
506
506
|
className: clsx(className, styles.pauseButton),
|
|
507
507
|
type: "button",
|
|
508
508
|
"aria-label": isPaused ? resumeAriaLabel : pauseAriaLabel,
|
|
509
|
-
"aria-pressed": isPaused,
|
|
510
509
|
"aria-controls": ariaControls,
|
|
511
510
|
onClick: handleStateChange,
|
|
512
511
|
children: isPaused ? /* @__PURE__ */ jsx(PlayIcon, {}) : /* @__PURE__ */ jsx(PauseIcon, {})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2389.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -195,5 +195,5 @@
|
|
|
195
195
|
"registry": "https://registry.npmjs.org/",
|
|
196
196
|
"access": "public"
|
|
197
197
|
},
|
|
198
|
-
"falconPackageHash": "
|
|
198
|
+
"falconPackageHash": "d5270cb005195ababff1af3012d230f4d0724f004d198bad4696aa3f"
|
|
199
199
|
}
|