Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasjesse committed May 16, 2023
1 parent 0ae12f8 commit e583809
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
.settings
.gitignore
.npmignore
.prettierignore
.prettierrc
.eslintignore
.eslintrc.js
index.html
src
test/*
README.md
*.config.js
mochawesome-report
coverage
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ Create an instance of the data grid by providing the DOM element and the **_opti
The DataGrid is invoked within the template, with the options being passed as properties.

```javascript
function Component() {
import Datagrid from '@lemonadejs/datagrid'
import lemonade from 'lemonadejs'

lemonade.setComponents({ Datagrid })

export default function Component() {
let self = this

self.data = [
Expand Down Expand Up @@ -156,3 +161,8 @@ $ npm run format
## License

DataGridLM is released under the MIT.

## Other Tools

[jSuites](https://jsuites.net/v4/)
[Jspreadsheet](https://jspreadsheet.com)
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<script>
Datagrid(root, {
data: [
{ id: 1, person: 'Maria Dasdores', age: 28 },
{ id: 1, person: 'Maria Dasdores ASDPOIJASD ASIJD OASIJD OAISJD OAISJ ', age: 28 },
{ id: 2, person: 'Carlos Silva', age: 33 },
{ id: 3, person: 'Antonio Souza', age: 25 },
{ id: 4, person: 'Ana Luiza', age: 19 }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@lemonadejs/datagrid",
"title": "JavaScript data grid component using LemonadeJS",
"description": "The JavaScript data grid component using LemonadeJS is a lightweight and flexible tool that allows developers to create dynamic and interactive tables on web pages. The component supports dynamic data loading, sorting, filtering, and pagination, making it easy for users to find the information they need quickly. It is highly customizable, allowing developers to configure the appearance and behavior of the table to suit their needs. LemonadeJS data grid component is easy to integrate into existing web applications and is compatible with all major web browsers.",
"version": "1.0.3",
"version": "1.0.4",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": {
Expand Down

0 comments on commit e583809

Please sign in to comment.