@object-ui/components 4.0.10 → 4.0.11

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,15 @@
1
1
  # @object-ui/components
2
2
 
3
+ ## 4.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [1909bc3]
8
+ - @object-ui/i18n@4.0.11
9
+ - @object-ui/react@4.0.11
10
+ - @object-ui/types@4.0.11
11
+ - @object-ui/core@4.0.11
12
+
3
13
  ## 4.0.10
4
14
 
5
15
  ### Patch Changes
package/dist/index.css CHANGED
@@ -848,6 +848,9 @@
848
848
  .min-h-\[44px\] {
849
849
  min-height: 44px;
850
850
  }
851
+ .min-h-\[60px\] {
852
+ min-height: 60px;
853
+ }
851
854
  .min-h-\[80px\] {
852
855
  min-height: 80px;
853
856
  }
package/dist/index.js CHANGED
@@ -4572,6 +4572,21 @@ function gs({ field: e, value: t, onChange: n, draft: r, objectDef: i }) {
4572
4572
  })
4573
4573
  });
4574
4574
  break;
4575
+ case "textarea":
4576
+ s = /* @__PURE__ */ S(es, {
4577
+ label: e.label,
4578
+ className: "flex-col items-stretch gap-1",
4579
+ children: /* @__PURE__ */ S(yo, {
4580
+ "data-testid": `config-field-${e.key}`,
4581
+ className: "min-h-[60px] w-full text-xs",
4582
+ value: o ?? "",
4583
+ placeholder: e.placeholder,
4584
+ disabled: a,
4585
+ rows: 3,
4586
+ onChange: (e) => n(e.target.value)
4587
+ })
4588
+ });
4589
+ break;
4575
4590
  case "switch":
4576
4591
  s = /* @__PURE__ */ S(es, {
4577
4592
  label: e.label,