@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 +12 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/css-classes/css-class-item.tsx +1 -0
- package/src/components/css-classes/css-class-selector.tsx +1 -1
package/dist/index.mjs
CHANGED
|
@@ -489,6 +489,7 @@ function CssClassItem({
|
|
|
489
489
|
},
|
|
490
490
|
"aria-pressed": isActive,
|
|
491
491
|
sx: (theme) => ({
|
|
492
|
+
lineHeight: 1,
|
|
492
493
|
cursor: isActive && allowRename && !isShowingState ? "text" : "pointer",
|
|
493
494
|
borderRadius: `${theme.shape.borderRadius * 0.75}px`,
|
|
494
495
|
"&.Mui-focusVisible": {
|
|
@@ -561,7 +562,7 @@ function CssClassSelector() {
|
|
|
561
562
|
{
|
|
562
563
|
id: ID,
|
|
563
564
|
size: "tiny",
|
|
564
|
-
placeholder: showPlaceholder ? __3("Type
|
|
565
|
+
placeholder: showPlaceholder ? __3("Type class name", "elementor") : void 0,
|
|
565
566
|
options: options13,
|
|
566
567
|
selected: applied,
|
|
567
568
|
onSelect: handleApply,
|