You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -255,7 +255,7 @@ node into `orderByAscIcon` and `orderByDescIcon`.
255
255
/>
256
256
```
257
257
258
-
You can optionally specify an icon to appear when a sortable field is *not* the
258
+
You can optionally specify an icon to appear when a sortable field is *not* the
259
259
currently sorted field using the `orderByIcon` prop:
260
260
261
261
```JSX
@@ -511,7 +511,7 @@ For more complex interactions, such as supporting the ability to Middle-click, y
511
511
#### Context Menus
512
512
513
513
The ability to right click rows can be enabled by using `onContextMenu` and `rowRenderer`.
514
-
In the example we will use our own [`@langleyfoxall/react-dynamic-context-menu`](https://github.com/langleyfoxall/react-dynamic-context-menu):
514
+
In the example we will use our own [`@code-based/react-dynamic-context-menu`](https://github.com/langleyfoxall/react-dynamic-context-menu):
515
515
516
516
```JSX
517
517
<DynamicDataTable
@@ -986,3 +986,16 @@ matching the predicate is given the CSS class `table-active`:
986
986
<DynamicDataTable
987
987
rowIsActive={(row) =>row.id===3}
988
988
/>
989
+
```
990
+
991
+
## Development
992
+
993
+
### Linting
994
+
995
+
This package uses [ESLint](https://eslint.org/) for linting of JS/X. You can run ESLint at any time by executing `npm run-script lint-fix`. Install the [ESLint extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) to get real-time linting in Visual Studio Code.
996
+
997
+
These linters additionally run in continuous integration as a GitHub Action.
998
+
999
+
### Releases
1000
+
1001
+
To release a new version of this package, simply [create a new release](https://github.com/langleyfoxall/react-dynamic-data-table/releases/new).
0 commit comments