beeple-toolkit 1.0.49 → 1.0.50

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.
@@ -15,7 +15,7 @@ declare const __VLS_base: import("vue").DefineComponent<TextareaProps, {}, {}, {
15
15
  }>, {
16
16
  isError: boolean;
17
17
  minRows: number;
18
- maxRows: number;
18
+ maxRows: number | null;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
20
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
21
  declare const _default: typeof __VLS_export;
@@ -271,7 +271,8 @@ export interface TextareaProps {
271
271
  isError?: boolean;
272
272
  errorMessage?: string;
273
273
  minRows?: number;
274
- maxRows?: number;
274
+ /** Max rows before the field caps and scrolls. `null` or `0` = unlimited (grows to fit, no scrollbar). */
275
+ maxRows?: number | null;
275
276
  }
276
277
  export interface TimeInputProps {
277
278
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beeple-toolkit",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "Vue 3 component library beeple-toolkit",
5
5
  "keywords": [
6
6
  "vue",