@fogpipe/forma-react 0.19.0 → 0.19.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fogpipe/forma-react",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.1",
|
|
4
4
|
"description": "Headless React form renderer for Forma specifications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"test:coverage": "vitest run --coverage"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@fogpipe/forma-core": "^0.19.
|
|
51
|
+
"@fogpipe/forma-core": "^0.19.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^18.0.0 || ^19.0.0"
|
|
@@ -739,7 +739,7 @@ describe("ComputedDisplay", () => {
|
|
|
739
739
|
spec={mockSpec}
|
|
740
740
|
/>,
|
|
741
741
|
);
|
|
742
|
-
expect(screen.getByText("$0
|
|
742
|
+
expect(screen.getByText("$0")).toBeInTheDocument();
|
|
743
743
|
});
|
|
744
744
|
|
|
745
745
|
it("formats boolean without format as string", () => {
|
|
@@ -927,7 +927,7 @@ describe("DisplayField", () => {
|
|
|
927
927
|
spec={mockSpec}
|
|
928
928
|
/>,
|
|
929
929
|
);
|
|
930
|
-
expect(screen.getByText("$0
|
|
930
|
+
expect(screen.getByText("$0")).toBeInTheDocument();
|
|
931
931
|
});
|
|
932
932
|
|
|
933
933
|
it("formats currency with locale/currency from formatOptions", () => {
|