tidy-table 4.0.3 → 4.0.4

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 +14 -1
  2. package/README.md +12 -0
  3. 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-03-04
7
+ ## [4.0.0] - 2023-05-04
8
8
 
9
9
  ### Changed
10
10
 
@@ -16,3 +16,16 @@ 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
+ ### Documentation
30
+
31
+ - Added [React](https://github.com/nuxy/react-tidy-table)/[Vue](https://github.com/nuxy/vue-tidy-table) install examples.
package/README.md CHANGED
@@ -26,6 +26,18 @@ Install the package into your project using [NPM](https://npmjs.com), or downloa
26
26
 
27
27
  $ npm install tidy-table
28
28
 
29
+ ### Alternative
30
+
31
+ 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).
32
+
33
+ #### React
34
+
35
+ $ yarn add react-tidy-table
36
+
37
+ #### Vue
38
+
39
+ $ yarn add vue-tidy-table
40
+
29
41
  ## Usage
30
42
 
31
43
  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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tidy-table",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "Create a HTML table that can be sorted, selected, and post-processed using a simple callback.",
5
5
  "main": "src/tidy-table.js",
6
6
  "scripts": {