@bluepic/embed 0.4.0-next.113 → 0.4.0-next.114

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.
@@ -27,7 +27,13 @@ type __VLS_Props = {
27
27
  noStyleLabel: Localized<string>;
28
28
  mixedStyleLabel: Localized<string>;
29
29
  };
30
+ /**
31
+ * Explicit CSS max-height for the (textarea/richtext) input. When omitted, a
32
+ * textarea auto-grows up to `maxRows` lines.
33
+ */
30
34
  maxHeight?: string;
35
+ /** Maximum number of visible lines a `textarea` grows to before it scrolls. */
36
+ maxRows?: number;
31
37
  minHeight?: string;
32
38
  readonly?: boolean;
33
39
  readonlyMessage?: string;
@@ -77,7 +83,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
77
83
  ring: boolean;
78
84
  clearable: boolean;
79
85
  resizeable: boolean;
80
- maxHeight: string;
86
+ maxRows: number;
81
87
  readonly: boolean;
82
88
  readonlyMessage: string;
83
89
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;