@elementor/editor-controls 0.12.0 → 0.12.1

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,11 @@
1
1
  # @elementor/editor-controls
2
2
 
3
+ ## 0.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 164759c: Allow text to auto grows w/o scrollbar
8
+
3
9
  ## 0.12.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -423,7 +423,7 @@ var TextAreaControl = createControl(({ placeholder }) => {
423
423
  size: "tiny",
424
424
  multiline: true,
425
425
  fullWidth: true,
426
- rows: 5,
426
+ minRows: 5,
427
427
  value: value ?? "",
428
428
  onChange: handleChange,
429
429
  placeholder