react-bootstrap-table-ng-editor 4.19.0 → 4.19.1
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/README.md +3 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
`react-bootstrap-table-ng` separate the cell edit code base to [`react-bootstrap-table-ng-editor`](https://github.com/jeff-k-zhou/react-bootstrap-table-ng/tree/main/packages/react-bootstrap-table-ng-editor), so there's a little bit different when you use cell edit than `react-bootstrap-table`. In the following, we are going to show you how to enable the cell edit
|
|
4
4
|
|
|
5
|
-
**[Live Demo For Cell Edit](https://
|
|
5
|
+
**[Live Demo For Cell Edit](https://jeff-k-zhou.github.io/react-bootstrap-table-ng/storybook/index.html?selectedKind=Cell%20Editing)**
|
|
6
6
|
|
|
7
|
-
**[API&Props Definitation](https://
|
|
7
|
+
**[API&Props Definitation](https://jeff-k-zhou.github.io/react-bootstrap-table-ng/docs/cell-edit-props.html)**
|
|
8
8
|
|
|
9
9
|
-----
|
|
10
10
|
|
|
@@ -160,7 +160,7 @@ const columns = [
|
|
|
160
160
|
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
-
[here](https://
|
|
163
|
+
[here](https://jeff-k-zhou.github.io/react-bootstrap-table-ng/storybook/index.html?selectedKind=Cell%20Editing&selectedStory=Dropdown%20Editor%20with%20Dynamic%20Options) is an online example.
|
|
164
164
|
|
|
165
165
|
### Date Editor
|
|
166
166
|
Date editor is use `<input type="date">`, the configuration is very simple:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-bootstrap-table-ng-editor",
|
|
3
|
-
"version": "4.19.
|
|
3
|
+
"version": "4.19.1",
|
|
4
4
|
"description": "It's the editor addon for react-bootstrap-table-ng",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
}
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"react-bootstrap-table-ng": "^4.19.
|
|
48
|
+
"react-bootstrap-table-ng": "^4.19.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"prop-types": "
|
|
51
|
+
"prop-types": ">=15.8.1",
|
|
52
52
|
"react": "^18.0 || ^18.0.0 || ^19.0 || ^19.0.0",
|
|
53
53
|
"react-dom": "^18.0 || ^18.0.0 || ^19.0 || ^19.0.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "24022dc8281117b928db32c4a90bcc9edc402edf"
|
|
56
56
|
}
|