@domql/report 2.3.117 → 2.3.119

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/cjs/index.js CHANGED
@@ -67,6 +67,10 @@ const ERRORS_REGISTRY = {
67
67
  HTMLInvalidText: {
68
68
  title: "Text string is invalid",
69
69
  description: "Please pass a valid string to apply text to DOM node"
70
+ },
71
+ ElementOnStateIsNotDefined: {
72
+ title: "Element on state is not defined",
73
+ description: "Please check the element object"
70
74
  }
71
75
  }
72
76
  };
package/index.js CHANGED
@@ -45,6 +45,10 @@ export const ERRORS_REGISTRY = {
45
45
  HTMLInvalidText: {
46
46
  title: 'Text string is invalid',
47
47
  description: 'Please pass a valid string to apply text to DOM node'
48
+ },
49
+ ElementOnStateIsNotDefined: {
50
+ title: 'Element on state is not defined',
51
+ description: 'Please check the element object'
48
52
  }
49
53
  }
50
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/report",
3
- "version": "2.3.117",
3
+ "version": "2.3.119",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "dist/esm/index.js",
@@ -21,5 +21,5 @@
21
21
  "build": "yarn build:cjs",
22
22
  "prepublish": "rimraf -I dist && yarn build && yarn copy:package:cjs"
23
23
  },
24
- "gitHead": "a6da9bf1846e4a1e26017978cf52112b9d61d484"
24
+ "gitHead": "b5b409c827c8b21896d84918f4fe9d133b057916"
25
25
  }