@linzjs/step-ag-grid 22.2.5 → 22.3.0

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/README.md CHANGED
@@ -221,7 +221,6 @@ To exclude a column from CSV download add ```export: false``` to the GridCell de
221
221
 
222
222
  ## Writing tests
223
223
 
224
-
225
224
  The following testing calls can be imported from step-ag-grid:
226
225
 
227
226
  - findRow
@@ -3350,11 +3350,11 @@ function styleInject(css, ref) {
3350
3350
  }
3351
3351
  }
3352
3352
 
3353
- var css_248z$2 = ".FormError-helpText{color:#6b6966;font-size:.75rem;font-weight:400}";
3353
+ var css_248z$2 = ".FormError{display:flex}.FormError-helpText{color:#6b6966;font-size:.75rem;font-weight:400}.FormError-text-icon{margin-right:4px;margin-top:4px}.FormError-error{align-items:center;color:#2a292c;font-size:14px;font-weight:600;padding-left:0}";
3354
3354
  styleInject(css_248z$2);
3355
3355
 
3356
3356
  const FormError = (props) => {
3357
- return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [props.error && (jsxRuntime.jsx("span", { className: "LuiTextInput-error", style: { paddingLeft: 0 }, children: props.error })), props.helpText && !props.error && jsxRuntime.jsx("span", { className: "FormError-helpText", children: props.helpText })] }));
3357
+ return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [props.error && (jsxRuntime.jsxs("div", { className: "FormError", children: [jsxRuntime.jsx(lui.LuiIcon, { alt: "error", name: "ic_error", className: "FormError-text-icon", size: "sm", status: "error" }), jsxRuntime.jsx("span", { className: "FormError-error", children: props.error })] })), props.helpText && !props.error && jsxRuntime.jsx("span", { className: "FormError-helpText", children: props.helpText })] }));
3358
3358
  };
3359
3359
 
3360
3360
  function escapeStringRegexp(string) {
@@ -3735,7 +3735,7 @@ const GridFormDropDown = (props) => {
3735
3735
  })] }) })] }));
3736
3736
  };
3737
3737
 
3738
- var css_248z$1 = ".LuiTextInput.GridLuiTextInput{margin-bottom:0}.LuiTextInput-formatted{color:#beb9b4;line-height:48px;position:absolute;right:14px;top:0}";
3738
+ var css_248z$1 = ".LuiTextInput.GridLuiTextInput{margin-bottom:0}.LuiTextInput-formatted{color:#6b6966;line-height:48px;position:absolute;right:14px;top:0}";
3739
3739
  styleInject(css_248z$1);
3740
3740
 
3741
3741
  const TextInputFormatted = (props) => {