@syook/react-tabulous 2.7.7 → 2.8.3
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 +25 -0
- package/README.md +16 -13
- package/lib/react-tabulous.min.js +2 -2
- package/package.json +9 -15
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# react-tabulous change log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
Project versioning adheres to [Semantic Versioning](http://semver.org/).
|
|
6
|
+
|
|
7
|
+
Commit convention is based on [Conventional Commits](http://conventionalcommits.org).
|
|
8
|
+
|
|
9
|
+
Change log format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
10
|
+
|
|
11
|
+
## [Unreleased]
|
|
12
|
+
-
|
|
13
|
+
## [Released]
|
|
14
|
+
|
|
15
|
+
## [2.7.7](https://github.com/syook/react-tabulous/releases/tag/2.7.7) - 2021-07-08
|
|
16
|
+
|
|
17
|
+
### Fixes
|
|
18
|
+
|
|
19
|
+
- fix pagination not working on changing the rows per page option (#74)
|
|
20
|
+
|
|
21
|
+
## 2.7.6 - 2021-05-17
|
|
22
|
+
|
|
23
|
+
### Fixes
|
|
24
|
+
|
|
25
|
+
- Fix selected rows in bulk actions updating to object type (#79)
|
package/README.md
CHANGED
|
@@ -61,19 +61,22 @@ The files will be under `./lib` folder.
|
|
|
61
61
|
|
|
62
62
|
### d. Component Props
|
|
63
63
|
|
|
64
|
-
| Prop | Description | Default | Required | Type
|
|
65
|
-
| ---------------------- | --------------------------------------------------------------- | ------- | -------- |
|
|
66
|
-
| `mandatoryFields` | '' | | true |
|
|
67
|
-
| `data` | data for the table | | true |
|
|
68
|
-
| `columnDefs` | is, is not, is empty, is not empty, | | true |
|
|
69
|
-
| `actionDefs` | contains, does not contains, is, is not, is empty, is not empty | | false |
|
|
70
|
-
| `bulkActionDefs` | is, is not, is after, is before, is empty, is not empty | | false |
|
|
71
|
-
| `name` | name of the table | | false | string
|
|
72
|
-
| `includeAction` | to show actions column | false | false | boolean
|
|
73
|
-
| `isShowSerialNumber` | to show serial number column | false | false | boolean
|
|
74
|
-
| `
|
|
75
|
-
| `
|
|
76
|
-
| `
|
|
64
|
+
| Prop | Description | Default | Required | Type |
|
|
65
|
+
| ---------------------- | --------------------------------------------------------------- | ------- | -------- | -------- |
|
|
66
|
+
| `mandatoryFields` | '' | | true | |
|
|
67
|
+
| `data` | data for the table | | true | |
|
|
68
|
+
| `columnDefs` | is, is not, is empty, is not empty, | | true | |
|
|
69
|
+
| `actionDefs` | contains, does not contains, is, is not, is empty, is not empty | | false | |
|
|
70
|
+
| `bulkActionDefs` | is, is not, is after, is before, is empty, is not empty | | false | |
|
|
71
|
+
| `name` | name of the table | | false | string |
|
|
72
|
+
| `includeAction` | to show actions column | false | false | boolean |
|
|
73
|
+
| `isShowSerialNumber` | to show serial number column | false | false | boolean |
|
|
74
|
+
| `enableIcon` | to show icon in serial number column | false | false | boolean |
|
|
75
|
+
| `showIcon` | function which returns JSX element(Icon) to render | | false | function |
|
|
76
|
+
| `isAllowDeepSearch` | allow a deep search in the data for the searched keyword | false | false | boolean |
|
|
77
|
+
| `emptyCellPlaceHolder` | placeholder for empty cells | | false | string |
|
|
78
|
+
| `accentColor` | colors for top bar buttons | | false | string |
|
|
79
|
+
| `hideBulkCount` | hide bulk select count for bulk actions | false | false | boolean |
|
|
77
80
|
|
|
78
81
|
## Example
|
|
79
82
|
|