@axium/client 0.23.2 → 0.23.3
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/lib/attachments.ts +0 -1
- package/package.json +1 -1
package/lib/attachments.ts
CHANGED
|
@@ -102,7 +102,6 @@ export function contextMenu(...menuItems: (ContextMenuItem | false | null | unde
|
|
|
102
102
|
export function dynamicRows(max: number = 40, min: number = 3): Attachment<HTMLTextAreaElement> {
|
|
103
103
|
return function _attachDynamicRows(element: HTMLTextAreaElement) {
|
|
104
104
|
element.style.resize = 'none';
|
|
105
|
-
// @ts-expect-error field-sizing is not yet in the types
|
|
106
105
|
element.style.fieldSizing = 'content';
|
|
107
106
|
element.style.height = 'max-content';
|
|
108
107
|
element.style.overflowY = 'scroll';
|