Skip to content

Commit 2771a61

Browse files
committed
2 parents dcd9d84 + adbc868 commit 2771a61

30 files changed

Lines changed: 726 additions & 897 deletions

File tree

.github/workflows/no-response.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Configuration for GitHub Action no-response - https://github.com/lee-dohm/no-response
2+
name: No Response
3+
4+
# Both `issue_comment` and `scheduled` event types are required for this Action
5+
# to work properly.
6+
on:
7+
issue_comment:
8+
types: [created]
9+
schedule:
10+
# Schedule every day to run once at 03:05am
11+
- cron: '5 3 * * *'
12+
13+
jobs:
14+
noResponse:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb
18+
# This commit hash targets release v0.5.0 of lee-dohm/no-response.
19+
# Targeting a commit hash instead of a tag has been done for security reasons.
20+
# Please be aware that the commit hash specifically targets the "Automatic compilation"
21+
# done by `github-actions[bot]` as the `no-response` Action needs to be compiled.
22+
with:
23+
token: ${{ github.token }}
24+
daysUntilClose: 14
25+
responseRequiredLabel: 'need repro'
26+
closeComment: >
27+
This issue has been automatically closed because there has been no response
28+
to our request for more information from the original author. With only the
29+
information that is currently in the issue, we don't have the means
30+
to take action. Please reach out if you have or find the answers we need so
31+
that we can investigate further.

demos/aurelia/package.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,16 @@
22
"name": "aurelia-slickgrid-demo",
33
"private": true,
44
"version": "9.1.0",
5-
"description": "Slickgrid components made available in Aurelia",
5+
"description": "Aurelia-Slickgrid demos",
66
"keywords": [
77
"aurelia",
88
"datagrid",
99
"datatable",
1010
"plugin",
1111
"slickgrid"
1212
],
13-
"homepage": "https://github.com/ghiscoding/aurelia-slickgrid",
14-
"bugs": {
15-
"url": "https://github.com/ghiscoding/aurelia-slickgrid/issues"
16-
},
1713
"license": "MIT",
1814
"author": "Ghislain B.",
19-
"repository": {
20-
"type": "git",
21-
"url": "git+ssh://git@github.com/ghiscoding/aurelia-slickgrid.git"
22-
},
2315
"browserslist": [
2416
"last 2 version",
2517
"> 1%",

demos/aurelia/src/examples/slickgrid/example22.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2>
1717
<div class="subtitle">
1818
This example demonstrate the creation of multiple grids in Bootstrap Tabs
1919
<ol>
20-
<li>Regular mocked data with javascript</li>
20+
<li>Regular mocked data with JavaScript</li>
2121
<li>Load dataset through Fetch-Client. Also note we need to call a "resizeGrid()" after focusing on this tab</li>
2222
</ol>
2323
</div>

demos/aurelia/src/home-page.html

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
1-
<div class="container page-host homepage-container">
2-
<h1>Aurelia-Slickgrid</h1>
3-
<iframe
4-
allowtransparency="true"
5-
scrolling="no"
6-
frameborder="0"
7-
src="https://buttons.github.io/buttons.html#href=https%3A%2F%2Fgithub.com%2Fghiscoding%2Faurelia-slickgrid&amp;aria-label=Star%20ghiscoding%2Faurelia-slickgrid%20on%20GitHub&amp;data-icon=octicon-star&amp;data-text=Star&amp;data-show-count=true"
8-
style="width: 90px; height: 20px; border: none"
9-
></iframe>
10-
<h3>Introduction</h3>
1+
<div class="container">
2+
<h2>Aurelia-Slickgrid - Demo Site</h2>
3+
<div class="subtitle">This site is to demo multiple usage of Aurelia-Slickgrid, choose an example from the left side menu</div>
4+
5+
<hr />
6+
7+
<h4>Quick intro</h4>
118
<p>
12-
One of the best javascript datagrid
13-
<a href="https://github.com/mleibman/SlickGrid" target="_blank">SlickGrid</a> which was originally developed by @mleibman is now
14-
available to Aurelia. I have tried and used a few datagrids and SlickGrid beats most of them in terms of functionalities and performance
15-
(it can easily deal with even a million row).
9+
One of the best JavaScript datagrid
10+
<a href="https://github.com/mleibman/SlickGrid" target="_blank">SlickGrid</a> which was originally developed by &#64;mleibman is now
11+
available to Aurelia. I have tried, and used, a few datagrids and SlickGrid beats most of them in terms of functionalities and
12+
performance (it can easily handle a million row).
13+
</p>
14+
<h4>Documentation</h4>
15+
<p>
16+
The documentation is powered by GitBook and can be found at this link
17+
<a href="https://ghiscoding.gitbook.io/aurelia-slickgrid" target="_blank">Aurelia-Slickgrid - Documentation</a>, so be sure to consult
18+
it before opening any new issue.
19+
<br />
20+
The
21+
<a href="https://ghiscoding.gitbook.io/aurelia-slickgrid/getting-started/quick-start" target="_blank">HOWTO - Quick Start</a>
22+
is the best starting point to get going with this library.
1623
</p>
17-
<p></p>
18-
<h3>Wiki / Documentation</h3>
19-
The Wiki is where all the documentation and instructions will go, so please consult the
20-
<a href="https://ghiscoding.gitbook.io/aurelia-slickgrid/getting-started/quick-start" target="_blank">Aurelia-Slickgrid - Wiki</a>
21-
before opening any issues. The
22-
<a href="https://ghiscoding.gitbook.io/aurelia-slickgrid/getting-started/quick-start" target="_blank">Wiki - HOWTO</a>
23-
is a great place to start with.
2424

2525
<hr />
2626
Like my work? You can support me with caffeine :)
27-
<br />
27+
28+
<br /><br />
29+
2830
<a href="https://ko-fi.com/ghiscoding" target="_blank">
2931
<img
3032
height="36"

demos/aurelia/test/cypress/e2e/home.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ describe('Home Page', () => {
22
it('should display Home Page', () => {
33
cy.visit(`${Cypress.config('baseUrl')}/home`);
44

5-
cy.get('h1').should('have.text', 'Aurelia-Slickgrid');
5+
cy.get('h2').should('have.text', 'Aurelia-Slickgrid - Demo Site');
66
});
77
});

demos/react/package.json

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,14 @@
22
"name": "slickgrid-react-demo",
33
"private": true,
44
"version": "9.1.0",
5-
"description": "Slickgrid components made available in React",
5+
"description": "Slickgrid-React demo",
66
"keywords": [
77
"react",
88
"datagrid",
99
"datatable",
1010
"plugin",
1111
"slickgrid"
1212
],
13-
"module": "./dist/esm/index.js",
14-
"types": "./dist/types/index.d.ts",
15-
"exports": {
16-
".": {
17-
"types": "./dist/types/index.d.ts",
18-
"import": "./dist/esm/index.js"
19-
},
20-
"./package.json": "./package.json"
21-
},
22-
"homepage": "https://github.com/ghiscoding/slickgrid-react",
23-
"bugs": {
24-
"url": "https://github.com/ghiscoding/slickgrid-react/issues"
25-
},
26-
"repository": {
27-
"type": "git",
28-
"url": "git+https://github.com/ghiscoding/slickgrid-react.git"
29-
},
3013
"license": "MIT",
3114
"author": "Ghislain B.",
3215
"scripts": {
@@ -41,10 +24,6 @@
4124
"> 1%",
4225
"not dead"
4326
],
44-
"files": [
45-
"/dist",
46-
"/src/slickgrid-react"
47-
],
4827
"dependencies": {
4928
"@slickgrid-universal/common": "workspace:*",
5029
"@slickgrid-universal/composite-editor-component": "workspace:*",
@@ -65,6 +44,7 @@
6544
"react": "^19.1.0",
6645
"react-dom": "^19.1.0",
6746
"react-i18next": "^15.5.2",
47+
"react-router-dom": "^7.6.2",
6848
"slickgrid-react": "workspace:*"
6949
},
7050
"peerDependencies": {
@@ -81,17 +61,14 @@
8161
"@types/react": "^19.1.6",
8262
"@types/react-dom": "^19.1.5",
8363
"@types/sortablejs": "catalog:",
84-
"@types/text-encoding-utf-8": "^1.0.5",
85-
"@vitejs/plugin-react": "^4.5.0",
64+
"@vitejs/plugin-react": "^4.5.1",
8665
"cross-env": "catalog:",
8766
"globals": "catalog:",
88-
"react-router-dom": "^7.6.1",
8967
"regenerator-runtime": "^0.14.1",
9068
"rxjs": "catalog:",
9169
"sass": "catalog:",
9270
"typescript": "catalog:",
9371
"vite": "catalog:",
94-
"vite-plugin-svgr": "^4.3.0",
95-
"vite-tsconfig-paths": "^5.1.4"
72+
"vite-tsconfig-paths": "catalog:"
9673
}
9774
}

demos/react/src/examples/slickgrid/Example22.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ const Example22: React.FC = () => {
158158
<div className="subtitle">
159159
This example demonstrate the creation of multiple grids in Bootstrap Tabs
160160
<ol>
161-
<li>Regular mocked data with javascript</li>
161+
<li>Regular mocked data with JavaScript</li>
162162
<li>Load dataset through Fetch. Also note we need to call a "resizeGrid()" after focusing on this tab</li>
163163
</ol>
164164
</div>

demos/vue/src/Home.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
<h4>Quick intro</h4>
99
<p>
10-
One of the best JavaScript data grid
10+
One of the best JavaScript datagrid
1111
<a href="https://github.com/mleibman/SlickGrid" target="_blank">SlickGrid</a> which was originally developed by &#64;mleibman is now
12-
available to Vue. I have tried, and used, a few data grids and SlickGrid beats most of them in terms of functionalities and performance
13-
(it can even handle a million rows).
12+
available to Aurelia. I have tried, and used, a few datagrids and SlickGrid beats most of them in terms of functionalities and
13+
performance (it can easily handle a million row).
1414
</p>
1515
<h4>Documentation</h4>
1616
<p>

frameworks/angular-slickgrid/docs/column-functionalities/editors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Editors won't work without these 2 flags `enableCellNavigation: true` and `editable: true` enabled in your Grid Options, so make sure to always to always defined them. Also note that you can toggle the grid to read only (not editable) via the `editable` grid option flag.
2525

2626
### Demo
27-
##### with plain javascript/jQuery
27+
##### with plain JavaScript/jQuery
2828
[Demo Page](https://ghiscoding.github.io/Angular-Slickgrid/#/editor) / [Demo Component](https://github.com/ghiscoding/slickgrid-universal/blob/master/frameworks/angular-slickgrid/src/demos/examples/grid-editor.component.ts)
2929

3030
##### with Angular Component

frameworks/angular-slickgrid/docs/column-functionalities/filters/custom-filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- [Custom Filter with Angular Components](#custom-filter-with-angular-components)
55

66
### Demo
7-
##### with plain javascript/jQuery
7+
##### with plain JavaScript/jQuery
88
[Demo Page](https://ghiscoding.github.io/Angular-Slickgrid/#/clientside) / [Demo Client Component](https://github.com/ghiscoding/slickgrid-universal/blob/master/frameworks/angular-slickgrid/src/demos/examples/grid-clientside.component.ts) / [Custom InputFilter.ts](https://github.com/ghiscoding/slickgrid-universal/blob/master/frameworks/angular-slickgrid/src/demos/examples/custom-inputFilter.ts)
99

1010
##### with Angular Component

0 commit comments

Comments
 (0)