@devopness/ui-react 2.150.0 → 2.150.1

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.
@@ -21,9 +21,12 @@ type ErrorMessageProps = {
21
21
  *
22
22
  * 3. { errors: { message: string } } [1]
23
23
  *
24
+ * 4. Record<string, any> [2]
25
+ *
24
26
  * [1] API Error response
27
+ * [2] Custom error objects
25
28
  */
26
- error?: ErrorWithType | ErrorWithMessage | APIError | null;
29
+ error?: ErrorWithType | ErrorWithMessage | APIError | Record<string, any> | null;
27
30
  /** Additional CSS classes to apply to the error message container */
28
31
  className?: string;
29
32
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "type": "module",
4
4
  "name": "@devopness/ui-react",
5
- "version": "2.150.0",
5
+ "version": "2.150.1",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
@@ -95,7 +95,7 @@
95
95
  "globals": "^15.14.0",
96
96
  "jsdom": "^25.0.1",
97
97
  "prettier": "^3.4.2",
98
- "prettier-plugin-multiline-arrays": "^4.0.1",
98
+ "prettier-plugin-multiline-arrays": "^4.0.2",
99
99
  "react": "^18.3.1",
100
100
  "react-dom": "^18.3.1",
101
101
  "storybook": "^8.4.7",