@linzjs/step-ag-grid 1.4.8 → 1.4.9

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/dist/index.d.ts CHANGED
@@ -31,6 +31,7 @@ export { GridFormTextArea } from "./src/components/gridForm/GridFormTextArea";
31
31
  export { GridFormTextInput } from "./src/components/gridForm/GridFormTextInput";
32
32
  export { TextAreaInput } from "./src/lui/TextAreaInput";
33
33
  export { TextInputFormatted } from "./src/lui/TextInputFormatted";
34
+ export { GridSubComponentTextArea } from "./src/components/GridSubComponentTextArea";
34
35
  export * from "./src/utils/bearing";
35
36
  export * from "./src/utils/util";
36
37
  export * from "./src/react-menu3/index";
package/dist/index.js CHANGED
@@ -3214,6 +3214,14 @@ var GridPopoverTextInput = function (colDef) {
3214
3214
  })));
3215
3215
  };
3216
3216
 
3217
+ var GridSubComponentTextArea = function (props) {
3218
+ var _a = react.useState(""), value = _a[0], setValue = _a[1];
3219
+ react.useEffect(function () {
3220
+ props.setValue(value);
3221
+ }, [props, value]);
3222
+ return (jsxRuntime.jsx("div", __assign({ className: "FreeTextInput LuiDeprecatedForms" }, { children: jsxRuntime.jsx("textarea", { autoFocus: true, maxLength: 10000, spellCheck: true, className: "free-text-input", onChange: function (e) { return setValue(e.target.value); }, defaultValue: value }) })));
3223
+ };
3224
+
3217
3225
  exports.ComponentLoadingWrapper = ComponentLoadingWrapper;
3218
3226
  exports.ControlledMenu = ControlledMenu;
3219
3227
  exports.FocusableItem = FocusableItem;
@@ -3242,6 +3250,7 @@ exports.GridPopoverTextArea = GridPopoverTextArea;
3242
3250
  exports.GridPopoverTextInput = GridPopoverTextInput;
3243
3251
  exports.GridRenderPopoutMenuCell = GridRenderPopoutMenuCell;
3244
3252
  exports.GridRendererGenericCell = GridRendererGenericCell;
3253
+ exports.GridSubComponentTextArea = GridSubComponentTextArea;
3245
3254
  exports.Menu = Menu;
3246
3255
  exports.MenuButton = MenuButton;
3247
3256
  exports.MenuDivider = MenuDivider;