@kanda-libs/ks-component-ts 0.2.268 → 0.2.269

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanda-libs/ks-component-ts",
3
- "version": "0.2.268",
3
+ "version": "0.2.269",
4
4
  "description": "Kanda form component library",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -48,7 +48,7 @@ const AutoSizeTextAreaUncontrolled: FunctionComponent<
48
48
  </div>
49
49
  </div>
50
50
  ) : (
51
- <div className="flex flex-row relative w-full overflow-hidden">
51
+ <div className="relative flex flex-row w-full overflow-hidden">
52
52
  {showPlaceholder && (
53
53
  <span className={placeholderClassName}>{value}</span>
54
54
  )}
@@ -50,4 +50,8 @@ export interface AutoSizeTextAreaUncontrolledProps {
50
50
  * Collapses to one line when is defocused
51
51
  */
52
52
  collapsible?: boolean;
53
+ /**
54
+ * Minimum rows
55
+ */
56
+ minRows?: number;
53
57
  }