Skip to content

Commit e40d7cd

Browse files
committed
Version 7.8.0 (autocommit)
1 parent 3abd987 commit e40d7cd

File tree

100 files changed

+2478
-902
lines changed

Some content is hidden

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

100 files changed

+2478
-902
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"homepage": "https://formengine.io/",
99
"repository": {
1010
"type": "git",
11-
"url": "[email protected]:optimajet/formengine.git"
11+
"url": "git+ssh://git@github.com/optimajet/formengine.git"
1212
},
1313
"main": "server.js",
1414
"scripts": {

community/examples/file-upload-server/server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const storage = multer.diskStorage({
2525
},
2626
filename: (req, file, cb) => {
2727
// Create a unique filename using the current timestamp
28-
cb(null, `${Date.now()}-${file.originalname}`);
28+
const originalName = Buffer.from(file.originalname, 'latin1').toString('utf8');
29+
cb(null, `${Date.now()}-${originalName}`);
2930
}
3031
});
3132
const upload = multer({storage});

community/examples/formdata/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"homepage": "https://formengine.io/",
99
"repository": {
1010
"type": "git",
11-
"url": "[email protected]:optimajet/formengine.git"
11+
"url": "git+ssh://git@github.com/optimajet/formengine.git"
1212
},
1313
"type": "module",
1414
"scripts": {
@@ -18,8 +18,8 @@
1818
},
1919
"dependencies": {
2020
"@faker-js/faker": "^10.0.0",
21-
"@react-form-builder/components-rsuite": "^7.7.0",
22-
"@react-form-builder/core": "^7.7.0",
21+
"@react-form-builder/components-rsuite": "^7.8.0",
22+
"@react-form-builder/core": "^7.8.0",
2323
"@vitejs/plugin-react-swc": "^3.7.2",
2424
"react": "^19.0.0",
2525
"react-dom": "^19.0.0",

community/src/.eslintrc.cjs

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-env node */
2-
const projects = [
2+
const project = [
33
'./packages/core/tsconfig.json',
44
'./packages/designer/tsconfig.json',
55
'./packages/designer-bundle/tsconfig.json',
@@ -10,7 +10,9 @@ const projects = [
1010
'./packages/views/google-map/tsconfig.json',
1111
'./packages/views/fast-qr/tsconfig.json',
1212
'./packages/views/rsuite/tsconfig.json',
13+
'./packages/views/rsuite/config/tsconfig.json',
1314
'./packages/views/signature/tsconfig.json',
15+
'./packages/views/uploader/tsconfig.json',
1416
'./tests/component/tsconfig.json'
1517
]
1618

@@ -123,8 +125,21 @@ module.exports = {
123125
},
124126
parser: '@typescript-eslint/parser',
125127
parserOptions: {
126-
project: projects,
128+
project,
127129
tsconfigRootDir: __dirname,
128130
},
129131
root: true,
132+
overrides: [
133+
{
134+
files: ['**/config/*.ts'],
135+
rules: {
136+
'import/no-nodejs-modules': 'off',
137+
'no-console': 'off',
138+
'jsdoc/require-jsdoc': 'off',
139+
'import/no-extraneous-dependencies': 'off',
140+
'@typescript-eslint/ban-ts-comment': 'off',
141+
'no-inner-declarations': 'off',
142+
},
143+
},
144+
],
130145
};

community/src/lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useNx": true,
44
"useWorkspaces": true,
5-
"version": "7.7.0"
5+
"version": "7.8.0"
66
}

community/src/nx.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"^start"
2222
]
2323
},
24-
"bundle": {
24+
"pack": {
2525
"dependsOn": [
26-
"^bundle"
26+
"^pack"
2727
]
2828
}
2929
}

0 commit comments

Comments
 (0)