tidy-table 4.0.7 → 4.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +4 -18
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -43,3 +43,16 @@ NPM dependency security updates.
43
43
  ## [4.0.7] - 2024-02-08
44
44
 
45
45
  - Added third-party (got) audit override
46
+
47
+ ## [4.0.8] - 2024-02-21
48
+
49
+ - Removed Unsupported releases section
50
+ - Deleted legacy branch
51
+
52
+ ## [4.0.9] - 2024-02-29
53
+
54
+ NPM security update ([CVE-2023-42282](https://github.com/advisories/GHSA-78xj-cgh5-2h22))
55
+
56
+ ## Updated
57
+
58
+ - Replaced Travis-CI with Github workflow
package/README.md CHANGED
@@ -1,22 +1,22 @@
1
1
  # Tidy Table
2
2
 
3
- [![npm version](https://badge.fury.io/js/tidy-table.svg)](https://badge.fury.io/js/tidy-table) [![](https://img.shields.io/npm/dm/tidy-table)](https://www.npmjs.com/package/tidy-table) [![Build Status](https://api.travis-ci.com/nuxy/tidy-table.svg?branch=master)](https://app.travis-ci.com/github/nuxy/tidy-table) [![Install size](https://packagephobia.com/badge?p=tidy-table)](https://packagephobia.com/result?p=tidy-table) [![](https://img.shields.io/github/v/release/nuxy/tidy-table)](https://github.com/nuxy/tidy-table/releases)
3
+ [![npm version](https://badge.fury.io/js/tidy-table.svg)](https://badge.fury.io/js/tidy-table) [![](https://img.shields.io/npm/dm/tidy-table)](https://www.npmjs.com/package/tidy-table) [![Build Status](https://img.shields.io/github/actions/workflow/status/nuxy/tidy-table/.github%2Fworkflows%2Fci.yml)](https://github.com/nuxy/tidy-table/actions) [![Install size](https://packagephobia.com/badge?p=tidy-table)](https://packagephobia.com/result?p=tidy-table) [![](https://img.shields.io/github/v/release/nuxy/tidy-table)](https://github.com/nuxy/tidy-table/releases)
4
4
 
5
5
  Create a HTML table that can be sorted, selected, and post-processed.
6
6
 
7
7
  ![Preview](https://raw.githubusercontent.com/nuxy/tidy-table/master/package.gif)
8
8
 
9
- Checkout the [demo](https://nuxy.github.io/tidy-table) for examples of use.
10
-
11
9
  ## Features
12
10
 
13
11
  - Extensible HTML/CSS interface.
14
12
  - Compatible with all modern desktop and mobile web browsers.
15
13
  - Fully responsive layout with touch event support.
16
- - Easy to set-up and customize.
14
+ - Easy to set-up and customize. **No dependencies**.
17
15
  - Customizable callback functions for post-processing selected results.
18
16
  - Post-process options for manipulating table/column/menu elements.
19
17
 
18
+ Checkout the [demo](https://nuxy.github.io/tidy-table) for examples of use.
19
+
20
20
  ## Dependencies
21
21
 
22
22
  - [Node.js](https://nodejs.org)
@@ -206,20 +206,6 @@ Run [WebdriverIO](https://webdriver.io) E2E tests:
206
206
 
207
207
  $ npm run test
208
208
 
209
- ## Unsupported releases
210
-
211
- To install deprecated versions use [Bower](http://bower.io) or download the package [by tag](https://github.com/nuxy/tidy-table/tags).
212
-
213
- ### v3 (no dependencies)
214
-
215
- $ bower install tidy-table#3
216
-
217
- ### v2 (requires [jQuery 1.8.3](http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js))
218
-
219
- Compatible with Firefox 3.6, Chrome, Safari 5, Opera, and Internet Explorer 7+ web browsers.
220
-
221
- $ bower install tidy-table#2
222
-
223
209
  ## Contributions
224
210
 
225
211
  If you fix a bug, or have a code you want to contribute, please send a pull-request with your changes. (Note: Before committing your code please ensure that you are following the [Node.js style guide](https://github.com/felixge/node-style-guide))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tidy-table",
3
- "version": "4.0.7",
3
+ "version": "4.0.9",
4
4
  "description": "Create a HTML table that can be sorted, selected, and post-processed.",
5
5
  "main": "src/tidy-table.js",
6
6
  "scripts": {