@linzjs/step-ag-grid 7.11.4 → 7.11.6

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.
@@ -25,7 +25,7 @@
25
25
  secondary-border-color: lui.$lily,
26
26
  cell-horizontal-border: solid ag-derived(secondary-border-color),
27
27
  cell-horizontal-padding: 12,
28
- row-hover-color: lui.$lily,
28
+ row-hover-color: lui.$hint,
29
29
  font-family: (
30
30
  "Open Sans",
31
31
  system-ui,
package/dist/index.js CHANGED
@@ -4010,7 +4010,7 @@ var bearingStringValidator = function (value, customInvalid) {
4010
4010
  return null;
4011
4011
  var match = value.match(validMaskForDmsBearing);
4012
4012
  if (!match)
4013
- return "Bearing must be a positive number in D.MMSSS format";
4013
+ return "Bearing must be a number in D.MMSSS format";
4014
4014
  var decimalPart = match[4];
4015
4015
  if (decimalPart != null && decimalPart.length > 5) {
4016
4016
  return "Bearing has a maximum of 5 decimal places";