Skip to content

Commit d41f2d7

Browse files
committed
Version 5.0.0 (autocommit)
1 parent 9b4012e commit d41f2d7

File tree

367 files changed

+42040
-26893
lines changed

Some content is hidden

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

367 files changed

+42040
-26893
lines changed

.editorconfig

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
max_line_length = 140
10+
tab_width = 2
11+
12+
[package.json]
13+
indent_style = space
14+
indent_size = 2
15+
insert_final_newline = true
16+
17+
[package-lock.json]
18+
end_of_line = unset
19+
indent_size = unset
20+
indent_style = unset
21+
insert_final_newline = unset
22+
max_line_length = unset
23+
tab_width = unset
24+
25+
[*.{ts,tsx}]
26+
ij_typescript_force_quote_style = true
27+
ij_typescript_use_double_quotes = false
28+
29+
ij_typescript_force_semicolon_style = true
30+
ij_typescript_use_semicolon_after_statement = false
31+
32+
ij_typescript_import_sort_module_name = true
33+
ij_typescript_import_sort_members = true
34+
ij_typescript_spaces_within_imports = false
35+
36+
ij_typescript_do_while_brace_force = if_multiline
37+
ij_typescript_for_brace_force = if_multiline
38+
ij_typescript_if_brace_force = if_multiline
39+
ij_typescript_while_brace_force = if_multiline

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,28 @@ Important: Some features and modules (e.g., Form Designer) are only available un
124124
The package contains visual components based on <a href="https://www.npmjs.com/package/fast_qr">Fast QR</a>.
125125
</td>
126126
</tr>
127+
<tr>
128+
<td>
129+
<a href="https://www.npmjs.com/package/@react-form-builder/components-signature">@react-form-builder/components-signature</a>
130+
</td>
131+
<td>
132+
<a href="https://www.npmjs.com/package/@react-form-builder/components-signature">
133+
<img alt="npm @react-form-builder/components-signature" src="https://img.shields.io/npm/v/@react-form-builder/components-fast-qr"></a>
134+
<img alt="license @react-form-builder/components-signature" src="https://img.shields.io/npm/l/@react-form-builder/components-fast-qr">
135+
</td>
136+
<td>
137+
The package contains visual components based on <a href="https://www.npmjs.com/package/signature_pad">SignaturePad</a>.
138+
</td>
139+
</tr>
127140
</tbody>
128141
</table>
129142

130143
## How to start
131144

132145
```bash
146+
cd formengine
133147
npm install
134-
npm run dev
148+
npm run start
135149
```
136150

137151
## Key Features

examples/file-upload-server/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/file-upload-server/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "file-uploader-server",
3-
"version": "1.0.0",
43
"description": "This project is a simple Node.js server built with `express`, `multer`, and `cors` to handle file uploads and serve static files.",
4+
"version": "1.0.0",
5+
"license": "MIT",
6+
"private": false,
7+
"author": "Optimajet",
8+
"homepage": "https://github.com/optimajet/formengine",
59
"main": "server.js",
610
"scripts": {
711
"start": "node server.js"
812
},
913
"keywords": [],
10-
"author": "Optimajet",
11-
"homepage": "https://formengine.io/",
12-
"license": "ISC",
1314
"dependencies": {
1415
"cors": "^2.8.5",
1516
"express": "^4.21.2",

examples/with-formik/.gitignore

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,2 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
7-
8-
# testing
9-
/coverage
10-
11-
# production
12-
/build
13-
14-
# misc
15-
.DS_Store
16-
.env.local
17-
.env.development.local
18-
.env.test.local
19-
.env.production.local
20-
21-
npm-debug.log*
22-
yarn-debug.log*
23-
yarn-error.log*
24-
25-
.env
1+
dist
2+
node_modules

examples/with-formik/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ This code corresponds to Formik [integration example](https://formengine.io/docu
88
git clone git@github.com:optimajet/formengine.git
99
cd examples/with-formik
1010
npm install
11-
npm run start
11+
npm run dev
1212
```
File renamed without changes.

0 commit comments

Comments
 (0)