Skip to content

Commit ad0dc86

Browse files
committed
rename engine
1 parent bc84541 commit ad0dc86

50 files changed

Lines changed: 41 additions & 41 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 3 additions & 3 deletions

apps/app-mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "rsbuild preview"
1010
},
1111
"dependencies": {
12-
"@coding-form/form-view": "workspace:*",
12+
"@coding-form/form-engine": "workspace:*",
1313
"antd-mobile": "^5.42.3",
1414
"react": "^18.3.1",
1515
"react-dom": "^18.3.1"

apps/app-mobile/src/components/string/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Form, Input} from "antd-mobile";
22
import React from "react";
3-
import {type FormItemProps} from "@coding-form/form-view";
3+
import {type FormItemProps} from "@coding-form/form-engine";
44

55
export const FormString: React.FC<FormItemProps> = (props) => {
66

apps/app-mobile/src/config/form-register.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {registerFormItems} from "@coding-form/form-view";
1+
import {registerFormItems} from "@coding-form/form-engine";
22
import {FormString} from "@/components/string";
33
import {Form} from "antd-mobile";
44

apps/app-mobile/src/pages/home.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import {createFormInstance, FormView} from "@coding-form/form-view";
2-
import type {FormMeta} from "@coding-form/form-view";
1+
import {createFormInstance, FormView} from "@coding-form/form-engine";
2+
import type {FormMeta} from "@coding-form/form-engine";
33
import {Button, Space} from "antd-mobile";
4-
import {FormInstance} from "@coding-form/form-view";
4+
import {FormInstance} from "@coding-form/form-engine";
55

66
const HomePage = () => {
77

apps/app-pc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "rsbuild preview"
1010
},
1111
"dependencies": {
12-
"@coding-form/form-view": "workspace:*",
12+
"@coding-form/form-engine": "workspace:*",
1313
"antd": "^6.2.1",
1414
"react": "^18.3.1",
1515
"react-dom": "^18.3.1"

apps/app-pc/src/components/string/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Form, Input} from "antd";
22
import React from "react";
3-
import {type FormItemProps} from "@coding-form/form-view";
3+
import {type FormItemProps} from "@coding-form/form-engine";
44

55
export const FormString: React.FC<FormItemProps> = (props) => {
66

apps/app-pc/src/config/form-register.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import {registerFormItems} from "@coding-form/form-view";
1+
import {registerFormItems} from "@coding-form/form-engine";
22
import {FormString} from "@/components/string";
33
import {Form} from "antd";
4-
import {LayoutRegister} from "@coding-form/form-view";
4+
import {LayoutRegister} from "@coding-form/form-engine";
55
import {CardFormLayout} from "@/layout/card-form-layout.tsx";
66

77
export const registerForms = () => {

apps/app-pc/src/layout/card-form-layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
2-
import {type FormLayoutProps,type FormLayout} from "@coding-form/form-view";
3-
import {FormItemFactory} from "@coding-form/form-view";
2+
import {type FormLayoutProps,type FormLayout} from "@coding-form/form-engine";
3+
import {FormItemFactory} from "@coding-form/form-engine";
44
import {Col, Row} from "antd";
55

66

apps/app-pc/src/pages/home.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import {createFormInstance, FormView} from "@coding-form/form-view";
2-
import type {FormMeta} from "@coding-form/form-view";
1+
import {createFormInstance, FormView} from "@coding-form/form-engine";
2+
import type {FormMeta} from "@coding-form/form-engine";
33
import {Button, Space} from "antd";
4-
import {FormInstance} from "@coding-form/form-view";
4+
import {FormInstance} from "@coding-form/form-engine";
55
import type {CardLayout} from "@/layout/card-form-layout.tsx";
66

77
const HomePage = () => {

0 commit comments

Comments
 (0)