Skip to content

Commit 0b794f1

Browse files
committed
feat(project): rename fullfill=>fulfill
1 parent 1a955dd commit 0b794f1

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

packages/json-schema/src/__tests__/__snapshots__/schema.spec.ts.snap

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Object {
8282
"x-decorator": "FormItem",
8383
"x-reactions": Array [
8484
Object {
85-
"fullfill": Object {
85+
"fulfill": Object {
8686
"schema": Object {},
8787
},
8888
"target": "xxx",
@@ -179,7 +179,7 @@ Object {
179179
"x-decorator": "FormItem",
180180
"x-reactions": Array [
181181
Object {
182-
"fullfill": Object {
182+
"fulfill": Object {
183183
"schema": Object {},
184184
},
185185
"target": "xxx",
@@ -251,7 +251,7 @@ Object {
251251
"x-decorator": "FormItem",
252252
"x-reactions": Array [
253253
Object {
254-
"fullfill": Object {
254+
"fulfill": Object {
255255
"schema": Object {},
256256
},
257257
"target": "xxx",

packages/json-schema/src/__tests__/patches.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ test('v1 polyfill', () => {
3838
expect(schema3['x-reactions']).toEqual([
3939
{
4040
when: '{{$self.value == 123}}',
41-
fullfill: {
41+
fulfill: {
4242
state: {
4343
visible: true,
4444
},
@@ -70,7 +70,7 @@ test('v1 polyfill', () => {
7070
{
7171
when: '{{$self.value == 123}}',
7272
target: 'xxx',
73-
fullfill: {
73+
fulfill: {
7474
schema: {
7575
version: '1.0',
7676
title: 'xxx',
@@ -106,7 +106,7 @@ test('v1 polyfill', () => {
106106
{
107107
when: '{{$self.value == 123}}',
108108
target: 'xxx',
109-
fullfill: {
109+
fulfill: {
110110
state: {
111111
title: 'xxx',
112112
},

packages/json-schema/src/__tests__/schema.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ test('all methods', () => {
177177
{
178178
target: 'xxx',
179179
when: true,
180-
fullfill: {
180+
fulfill: {
181181
schema: {},
182182
},
183183
},

packages/react/src/__tests__/schema.markup.spec.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ test('schema reactions', async () => {
430430
x-reactions={[
431431
{
432432
when: '{{$form.values.aaa === "123"}}',
433-
fullfill: {
433+
fulfill: {
434434
state: {
435435
visible: true,
436436
},
@@ -444,7 +444,7 @@ test('schema reactions', async () => {
444444
{
445445
when: '{{$self.value === "123"}}',
446446
target: 'ccc',
447-
fullfill: {
447+
fulfill: {
448448
schema: {
449449
'x-visible': true,
450450
},

packages/vue/src/__tests__/schema.markup.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ describe('recursion field', () => {
567567
// reactions: [
568568
// {
569569
// when: '{{$form.values.aaa === "123"}}',
570-
// fullfill: {
570+
// fulfill: {
571571
// state: {
572572
// visible: true,
573573
// },
@@ -581,7 +581,7 @@ describe('recursion field', () => {
581581
// {
582582
// when: '{{$self.value === "123"}}',
583583
// target: 'ccc',
584-
// fullfill: {
584+
// fulfill: {
585585
// schema: {
586586
// 'x-visible': true,
587587
// },

0 commit comments

Comments
 (0)