@elementor/editor-editing-panel 3.35.0-451 → 3.35.0-453

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/dist/index.js CHANGED
@@ -2997,27 +2997,35 @@ var StartEndIcon = (0, import_ui22.withDirection)(import_icons3.RadiusTopRightIc
2997
2997
  var EndStartIcon = (0, import_ui22.withDirection)(import_icons3.RadiusBottomLeftIcon);
2998
2998
  var EndEndIcon = (0, import_ui22.withDirection)(import_icons3.RadiusBottomRightIcon);
2999
2999
  var getStartStartLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Top right", "elementor") : (0, import_i18n11.__)("Top left", "elementor");
3000
+ var getStartStartAriaLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Border top right radius", "elementor") : (0, import_i18n11.__)("Border top left radius", "elementor");
3000
3001
  var getStartEndLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Top left", "elementor") : (0, import_i18n11.__)("Top right", "elementor");
3002
+ var getStartEndAriaLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Border top left radius", "elementor") : (0, import_i18n11.__)("Border top right radius", "elementor");
3001
3003
  var getEndStartLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Bottom right", "elementor") : (0, import_i18n11.__)("Bottom left", "elementor");
3004
+ var getEndStartAriaLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Border bottom right radius", "elementor") : (0, import_i18n11.__)("Border bottom left radius", "elementor");
3002
3005
  var getEndEndLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Bottom left", "elementor") : (0, import_i18n11.__)("Bottom right", "elementor");
3006
+ var getEndEndAriaLabel = (isSiteRtl) => isSiteRtl ? (0, import_i18n11.__)("Border bottom left radius", "elementor") : (0, import_i18n11.__)("Border bottom right radius", "elementor");
3003
3007
  var getCorners = (isSiteRtl) => [
3004
3008
  {
3005
3009
  label: getStartStartLabel(isSiteRtl),
3010
+ ariaLabel: getStartStartAriaLabel(isSiteRtl),
3006
3011
  icon: /* @__PURE__ */ React33.createElement(StartStartIcon, { fontSize: "tiny" }),
3007
3012
  bind: "start-start"
3008
3013
  },
3009
3014
  {
3010
3015
  label: getStartEndLabel(isSiteRtl),
3016
+ ariaLabel: getStartEndAriaLabel(isSiteRtl),
3011
3017
  icon: /* @__PURE__ */ React33.createElement(StartEndIcon, { fontSize: "tiny" }),
3012
3018
  bind: "start-end"
3013
3019
  },
3014
3020
  {
3015
3021
  label: getEndStartLabel(isSiteRtl),
3022
+ ariaLabel: getEndStartAriaLabel(isSiteRtl),
3016
3023
  icon: /* @__PURE__ */ React33.createElement(EndStartIcon, { fontSize: "tiny" }),
3017
3024
  bind: "end-start"
3018
3025
  },
3019
3026
  {
3020
3027
  label: getEndEndLabel(isSiteRtl),
3028
+ ariaLabel: getEndEndAriaLabel(isSiteRtl),
3021
3029
  icon: /* @__PURE__ */ React33.createElement(EndEndIcon, { fontSize: "tiny" }),
3022
3030
  bind: "end-end"
3023
3031
  }
@@ -3067,21 +3075,25 @@ var InlineEndIcon = (0, import_ui23.withDirection)(import_icons4.SideLeftIcon);
3067
3075
  var getEdges = (isSiteRtl) => [
3068
3076
  {
3069
3077
  label: (0, import_i18n13.__)("Top", "elementor"),
3078
+ ariaLabel: (0, import_i18n13.__)("Border top width", "elementor"),
3070
3079
  icon: /* @__PURE__ */ React35.createElement(import_icons4.SideTopIcon, { fontSize: "tiny" }),
3071
3080
  bind: "block-start"
3072
3081
  },
3073
3082
  {
3074
3083
  label: isSiteRtl ? (0, import_i18n13.__)("Left", "elementor") : (0, import_i18n13.__)("Right", "elementor"),
3084
+ ariaLabel: isSiteRtl ? (0, import_i18n13.__)("Border left width", "elementor") : (0, import_i18n13.__)("Border right width", "elementor"),
3075
3085
  icon: /* @__PURE__ */ React35.createElement(InlineStartIcon, { fontSize: "tiny" }),
3076
3086
  bind: "inline-end"
3077
3087
  },
3078
3088
  {
3079
3089
  label: (0, import_i18n13.__)("Bottom", "elementor"),
3090
+ ariaLabel: (0, import_i18n13.__)("Border bottom width", "elementor"),
3080
3091
  icon: /* @__PURE__ */ React35.createElement(import_icons4.SideBottomIcon, { fontSize: "tiny" }),
3081
3092
  bind: "block-end"
3082
3093
  },
3083
3094
  {
3084
3095
  label: isSiteRtl ? (0, import_i18n13.__)("Right", "elementor") : (0, import_i18n13.__)("Left", "elementor"),
3096
+ ariaLabel: isSiteRtl ? (0, import_i18n13.__)("Border right width", "elementor") : (0, import_i18n13.__)("Border left width", "elementor"),
3085
3097
  icon: /* @__PURE__ */ React35.createElement(InlineEndIcon, { fontSize: "tiny" }),
3086
3098
  bind: "inline-start"
3087
3099
  }