@socotra/ec-react-utils 2.25.0-next.2 → 2.25.0-next.4
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/index.d.ts +3 -1
- package/dist/index.es.js +3891 -3786
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,8 @@ import { QuoteRequest } from '@socotra/ec-react-schemas';
|
|
|
29
29
|
import { QuoteResponse } from '@socotra/ec-react-schemas';
|
|
30
30
|
import { SegmentResponse } from '@socotra/ec-react-schemas';
|
|
31
31
|
import { TransactionSnapshotResponse } from '@socotra/ec-react-schemas';
|
|
32
|
+
import { Translator } from '@jsonforms/core';
|
|
33
|
+
import { UISchemaElement } from '@jsonforms/core';
|
|
32
34
|
import { z } from 'zod/v4';
|
|
33
35
|
|
|
34
36
|
/**
|
|
@@ -769,6 +771,6 @@ declare interface TransactionFormData_3 {
|
|
|
769
771
|
timezone: string;
|
|
770
772
|
}
|
|
771
773
|
|
|
772
|
-
export declare function translateError(error: ErrorObject): string;
|
|
774
|
+
export declare function translateError(error: ErrorObject, _translator: Translator, uischema?: UISchemaElement): string;
|
|
773
775
|
|
|
774
776
|
export { }
|