Skip to content

Commit 52a0818

Browse files
committed
refactor: rename project
1 parent 45fd0fa commit 52a0818

8 files changed

+20
-20
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Please help us process issues more efficiently by filing an
22
issue using one of the following templates:
33

4-
<https://github.com/codetrial/element-form-builder/issues/new/choose>
4+
<https://github.com/openfext/vue-form-builder/issues/new/choose>
55

66
Thank you!

.github/ISSUE_TEMPLATE/1-bug-report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: 'Bug Report'
3-
about: Report a bug in the Element Form Builder
3+
about: Report a bug in the Vue Form Builder
44
---
55

66
## Bug Report

.github/ISSUE_TEMPLATE/2-feature-request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: 'Feature Request'
3-
about: Suggest a feature for Element Form Builder
3+
about: Suggest a feature for Vue Form Builder
44
---
55

66
## Feature Request

.github/ISSUE_TEMPLATE/3-docs-bug.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: 'Docs Issue Report'
3-
about: Report an issue in Element Form Builder's documentation
3+
about: Report an issue in Vue Form Builder's documentation
44
---
55

66
## Docs Issue

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Please check if your PR fulfills the following requirements:
44

5-
- [ ] The commit message follows our guidelines: <https://github.com/codetrial/element-form-builder/blob/master/CONTRIBUTING.md#commit>
5+
- [ ] The commit message follows our guidelines: <https://github.com/openfext/vue-form-builder/blob/master/CONTRIBUTING.md#commit>
66
- [ ] Tests for the changes have been added (for bug fixes / features)
77
- [ ] Docs have been added / updated (for bug fixes / features)
88

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Looking forward to your contribution to this project, but here are the guideline
99

1010
To keep this project open and inclusive. Please read and follow our [Code of Conduct][coc].
1111

12-
[coc]: https://github.com/codetrial/element-form-builder/blob/master/CODE_OF_CONDUCT.md
12+
[coc]: https://github.com/openfext/vue-form-builder/blob/master/CODE_OF_CONDUCT.md

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# element-form-builder
1+
# Vue Form Builder
22

33
[![CircleCI](https://circleci.com/gh/openfext/vue-use.svg?style=svg)](https://circleci.com/gh/openfext/vue-use)
4-
[![codecov](https://codecov.io/gh/codetrial/element-form-builder/branch/develop/graph/badge.svg)](https://codecov.io/gh/codetrial/element-form-builder)
5-
[![License](https://img.shields.io/npm/l/element-form-builder.svg)](https://www.npmjs.com/package/element-form-builder)
6-
[![Version](https://img.shields.io/npm/v/element-form-builder.svg)](https://www.npmjs.com/package/element-form-builder)
4+
[![codecov](https://codecov.io/gh/openfext/vue-form-builder/branch/develop/graph/badge.svg)](https://codecov.io/gh/openfext/vue-form-builder)
5+
[![License](https://img.shields.io/npm/l/@fext/vue-form-builder.svg)](https://www.npmjs.com/package/@fext/vue-form-builder)
6+
[![Version](https://img.shields.io/npm/v/@fext/vue-form-builder.svg)](https://www.npmjs.com/package/@fext/vue-form-builder)
77

88
Build powerful vue form with JSON schema and composition api. Any custom input components and popular ui frameworks such as Element UI are supported.
99

1010
## Example
1111

12-
[:zap: Live Preview](https://openfext.github.io/vue-admin-next/#/form/form-builder) | [:book: Storybook](https://codetrial.github.io/element-form-builder)
12+
[:zap: Live Preview](https://openfext.github.io/vue-admin-next/#/form/form-builder) | [:book: Storybook](https://openfext.github.io/vue-form-builder)
1313

14-
![Screen Capture](https://github.com/codetrial/element-form-builder/raw/develop/.github/preview.gif)
14+
![Screen Capture](https://github.com/openfext/vue-form-builder/raw/develop/.github/preview.gif)
1515

1616
## Core Features
1717

@@ -27,16 +27,16 @@ First you need a vue application like [Vue Admin Next](https://github.com/openfe
2727
### Install
2828

2929
```bash
30-
npm i element-form-builder
30+
npm i @fext/vue-form-builder
3131
```
3232

3333
### Registration
3434

3535
#### Global Registration
3636

3737
```javascript
38-
import FormBuilder from 'element-form-builder';
39-
import ElFormAdaptor from 'element-form-builder/lib/adaptor/element';
38+
import FormBuilder from '@fext/vue-form-builder';
39+
import ElFormAdaptor from '@fext/vue-form-builder/lib/adaptor/element';
4040

4141
Vue.use(FormBuilder); // form-builder
4242
Vue.use(ElFormAdaptor); // el-form-adaptor
@@ -47,8 +47,8 @@ Vue.use(ElFormAdaptor); // el-form-adaptor
4747
Use the factory method based on the specified component:
4848

4949
```javascript
50-
import { createFormBuilder } from 'element-form-builder';
51-
import { ElFormAdaptor } from 'element-form-builder/lib/adaptor/element';
50+
import { createFormBuilder } from '@fext/vue-form-builder';
51+
import { ElFormAdaptor } from '@fext/vue-form-builder/lib/adaptor/element';
5252
import AwesomeFormComponents from 'path/to/awesome/components';
5353

5454
export default {

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "element-form-builder",
3-
"version": "2.0.2",
4-
"description": "Build powerful element-ui form with JSON schema.",
2+
"name": "@fext/vue-form-builder",
3+
"version": "1.0.0",
4+
"description": "Build powerful vue form with JSON schema and composition api.",
55
"main": "lib/index.js",
66
"module": "lib/index.esm.js",
77
"files": [

0 commit comments

Comments
 (0)