@linzjs/step-ag-grid 7.11.5 → 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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "7.11.5",
5
+ "version": "7.11.6",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -64,3 +64,4 @@ _Please note that React-Menu v3 requires React 16.14.0 or higher. If you are not
64
64
  ## License
65
65
 
66
66
  [MIT](https://github.com/szhsin/react-menu/blob/master/LICENSE) Licensed.
67
+
@@ -32,7 +32,7 @@ export const bearingStringValidator = (
32
32
  value = value.trim();
33
33
  if (value === "") return null;
34
34
  const match = value.match(validMaskForDmsBearing);
35
- if (!match) return "Bearing must be a positive number in D.MMSSS format";
35
+ if (!match) return "Bearing must be a number in D.MMSSS format";
36
36
  const decimalPart = match[4];
37
37
  if (decimalPart != null && decimalPart.length > 5) {
38
38
  return "Bearing has a maximum of 5 decimal places";