@wix/editor-react-components 1.2388.0 → 1.2390.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.
@@ -2215,7 +2215,7 @@ const HamburgerMenu = ({
2215
2215
  /* @__PURE__ */ jsx(
2216
2216
  NavbarMenu,
2217
2217
  {
2218
- id,
2218
+ id: `${id}-hamburger-modal`,
2219
2219
  className: classes.navbar,
2220
2220
  ...navbarProps,
2221
2221
  onItemClick: (event, item2) => {
@@ -1,5 +1,5 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
- import { useState, useId } from "react";
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 = useId();
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.2388.0",
3
+ "version": "1.2390.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": "db341cdc0468fe85e586069795c54e7ebcd521fe260ac5f5dff79300"
198
+ "falconPackageHash": "d5270cb005195ababff1af3012d230f4d0724f004d198bad4696aa3f"
199
199
  }