tidy-table 4.0.3 → 4.0.5
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.
- package/CHANGELOG.md +18 -1
- package/README.md +13 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [4.0.0] - 2023-
|
|
7
|
+
## [4.0.0] - 2023-05-04
|
|
8
8
|
|
|
9
9
|
### Changed
|
|
10
10
|
|
|
@@ -16,3 +16,20 @@ The following items are **breaking changes** and not supported in prior releases
|
|
|
16
16
|
- Replaced GIF images with SVG equivalent (renamed) `arrow-up.svg`, `arrow-down.svg`
|
|
17
17
|
- Replaced [QUnit](https://qunitjs.com) testing with [WebdriverIO](https://webdriver.io) framework.
|
|
18
18
|
- Integrated [Babel](https://babeljs.io) transpilation build process.
|
|
19
|
+
|
|
20
|
+
## [4.0.4] - 2023-05-12
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
### Demo
|
|
25
|
+
|
|
26
|
+
- Fixed menu alignment in Chrome.
|
|
27
|
+
- Expand table to 100% width.
|
|
28
|
+
|
|
29
|
+
## [4.0.5] - 2023-08-07
|
|
30
|
+
|
|
31
|
+
NPM dependency security updates.
|
|
32
|
+
|
|
33
|
+
### Documentation
|
|
34
|
+
|
|
35
|
+
- Added [React](https://github.com/nuxy/react-tidy-table)/[Vue](https://github.com/nuxy/vue-tidy-table) install examples.
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Tidy Table [](https://badge.fury.io/js/tidy-table) [](https://app.travis-ci.com/github/nuxy/tidy-table) [](https://www.npmjs.com/package/tidy-table) [](https://packagephobia.com/result?p=tidy-table)
|
|
2
2
|
|
|
3
3
|
Create a HTML table that can be sorted, selected, and post-processed using a simple callback.
|
|
4
4
|
|
|
@@ -14,7 +14,6 @@ Checkout the [demo](https://nuxy.github.io/tidy-table) for examples of use.
|
|
|
14
14
|
- Easy to set-up and customize.
|
|
15
15
|
- Customizable callback functions for post-processing selected results.
|
|
16
16
|
- Post-process options for manipulating table/column/menu elements.
|
|
17
|
-
- Fast and lightweight (JavaScript plug-in *only 4 kB)
|
|
18
17
|
|
|
19
18
|
## Dependencies
|
|
20
19
|
|
|
@@ -26,6 +25,18 @@ Install the package into your project using [NPM](https://npmjs.com), or downloa
|
|
|
26
25
|
|
|
27
26
|
$ npm install tidy-table
|
|
28
27
|
|
|
28
|
+
### Alternative
|
|
29
|
+
|
|
30
|
+
To add to an existing [React](https://reactjs.org) or [Vue](https://vuejs.org) project you can install this package using [YARN](https://yarnpkg.com).
|
|
31
|
+
|
|
32
|
+
#### React
|
|
33
|
+
|
|
34
|
+
$ yarn add react-tidy-table
|
|
35
|
+
|
|
36
|
+
#### Vue
|
|
37
|
+
|
|
38
|
+
$ yarn add vue-tidy-table
|
|
39
|
+
|
|
29
40
|
## Usage
|
|
30
41
|
|
|
31
42
|
There are two ways you can use this package. One is by including the JavaScript/CSS sources directly. The other is by importing the module into your component.
|