@elementor/editor-editing-panel 1.29.0 → 1.29.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.29.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 212075b: Fix class selector chip line height.
8
+
9
+ ## 1.29.1
10
+
11
+ ### Patch Changes
12
+
13
+ - ee3cb2b: Rename css selector placeholder
14
+
3
15
  ## 1.29.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.js CHANGED
@@ -515,6 +515,7 @@ function CssClassItem({
515
515
  },
516
516
  "aria-pressed": isActive,
517
517
  sx: (theme) => ({
518
+ lineHeight: 1,
518
519
  cursor: isActive && allowRename && !isShowingState ? "text" : "pointer",
519
520
  borderRadius: `${theme.shape.borderRadius * 0.75}px`,
520
521
  "&.Mui-focusVisible": {
@@ -587,7 +588,7 @@ function CssClassSelector() {
587
588
  {
588
589
  id: ID,
589
590
  size: "tiny",
590
- placeholder: showPlaceholder ? (0, import_i18n3.__)("Type to search/add global classes", "elementor") : void 0,
591
+ placeholder: showPlaceholder ? (0, import_i18n3.__)("Type class name", "elementor") : void 0,
591
592
  options: options13,
592
593
  selected: applied,
593
594
  onSelect: handleApply,