Skip to content

Commit 0f981a1

Browse files
authored
Merge pull request #1 from SyncfusionExamples/EJ2-66944-mendix-sample
Added the mendix custom widget grid sample.
2 parents 328fd4c + 0520ecc commit 0f981a1

20 files changed

+17638
-1
lines changed

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const base = require("@mendix/pluggable-widgets-tools/configs/eslint.ts.base.json");
2+
3+
module.exports = {
4+
...base
5+
};

.gitattributes

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.ts text eol=lf
7+
*.tsx text eol=lf
8+
*.js text eol=lf
9+
*.jsx text eol=lf
10+
*.css text eol=lf
11+
*.scss text eol=lf
12+
*.json text eol=lf
13+
*.xml text eol=lf
14+
*.md text eol=lf
15+
*.gitattributes eol=lf
16+
*.gitignore eol=lf
17+
18+
# Denote all files that are truly binary and should not be modified.
19+
*.png binary
20+
*.jpg binary
21+
*.gif binary

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
../
2+
.DS_Store
3+
.idea
4+
.vscode
5+
dist
6+
node_modules
7+
.env
8+
*.log
9+
*.bak
10+
*.launch
11+
mxproject
12+
coverage
13+
14+
**/results
15+
mendixProject
16+
**/e2e/diffs
17+
**/screenshot
18+
**/screenshot-results
19+
**/tests/testProject
20+
**/artifacts

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../

LICENSE

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The Apache License v2.0
2+
3+
Copyright © Mendix Technology BV 2022. All rights reserved.
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Creating-a-Mendix-application-with-Syncfusion-components-in-React
2-
This repository contains the Mendix application example with Syncfusion React Components
2+
This repository contains the Syncfusion React Grid Component that has been used as a custom widget in the Mendix application.

0 commit comments

Comments
 (0)