react-bootstrap-table-ng 4.18.0 → 4.19.0
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 +10 -1
- package/dist/react-bootstrap-table-ng.js +2 -2
- package/dist/react-bootstrap-table-ng.min.js +2 -2
- package/lib/index.d.ts +43 -43
- package/lib/src/body.d.ts +1 -1
- package/lib/src/bootstrap-table.d.ts +1 -6
- package/lib/src/contexts/index.d.ts +1 -3
- package/lib/src/contexts/index.js +7 -7
- package/lib/src/contexts/index.js.map +1 -1
- package/lib/src/contexts/sort-context.d.ts +1 -3
- package/lib/src/filters.js.map +1 -1
- package/lib/src/props-resolver/column-resolver.d.ts +1 -6
- package/lib/src/props-resolver/index.d.ts +1 -6
- package/lib/src/props-resolver/remote-resolver.d.ts +1 -3
- package/lib/src/row/aggregate-row.d.ts +1 -0
- package/lib/src/row/simple-row.d.ts +1 -0
- package/lib/src/types.d.ts +22 -22
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# react-bootstrap-table-ng
|
|
2
2
|
Maintance fork of [`react-bootstrap-table2`] (https://github.com/react-bootstrap-table/react-bootstrap-table2) created by Allen Fang
|
|
3
3
|
|
|
4
|
+
Changelog:
|
|
5
|
+
- Support React 18 and React 19
|
|
6
|
+
- Support Bootstrap 3.4.1 and Bootstrap 4.6.2
|
|
7
|
+
- Upgraded Storybook to 10.2.1
|
|
8
|
+
- Upgraded Yarn to 4.12.0
|
|
9
|
+
- Converted all test cases from Enzyme to React Testing Library (RTL), Removed Enzyme related dependencies
|
|
10
|
+
- Updated most ependencies
|
|
11
|
+
|
|
12
|
+
|
|
4
13
|
**[Live Demo](https://react-bootstrap-table.github.io/react-bootstrap-table2/storybook/index.html)**
|
|
5
14
|
|
|
6
15
|
## Usage
|
|
@@ -13,7 +22,7 @@ npm install react-bootstrap-table-ng --save
|
|
|
13
22
|
|
|
14
23
|
### Include CSS
|
|
15
24
|
|
|
16
|
-
> react-bootstrap-table-ng
|
|
25
|
+
> react-bootstrap-table-ng needs you to add bootstrap css in your application firstly.
|
|
17
26
|
|
|
18
27
|
```js
|
|
19
28
|
// es5
|