react-bootstrap-table-ng-example 4.19.1 → 5.19.0-beta2
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/.storybook/preview.ts +1 -0
- package/package.json +18 -17
- package/public/style/bootstrap.5.3.8.min.css +6 -0
- package/public/style/bootstrap.5.3.8.min.css.map +6 -0
- package/src/components/common/code-block.tsx +2 -4
- package/src/stories/Bootstrap5.stories.tsx +271 -0
- package/src/stories/Bootstrap5.tsx +132 -0
- package/src/stories/CellEditing.stories.tsx +10 -10
- package/src/stories/ColumnFilter.stories.tsx +18 -22
- package/src/stories/Remote.tsx +58 -49
- package/src/stories/TableOverlay.tsx +28 -26
- package/src/stories/bootstrap-style.tsx +3 -5
- package/tsconfig.json +1 -1
package/.storybook/preview.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-bootstrap-table-ng-example",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.19.0-beta2",
|
|
4
4
|
"description": "Storybook for react-bootstrap-table-ng",
|
|
5
5
|
"homepage": "http://jeff-k-zhou.github.io/react-bootstrap-table-ng",
|
|
6
6
|
"main": "index.js",
|
|
@@ -42,22 +42,24 @@
|
|
|
42
42
|
}
|
|
43
43
|
],
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"prop-types": ">=15.8.1",
|
|
46
45
|
"react": "^18.0 || ^18.0.0 || ^19.0 || ^19.0.0",
|
|
47
46
|
"react-dom": "^18.0 || ^18.0.0 || ^19.0 || ^19.0.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@babel/
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@storybook/addon-
|
|
54
|
-
"@storybook/
|
|
55
|
-
"@storybook/
|
|
49
|
+
"@babel/core": "^7.26.8",
|
|
50
|
+
"@babel/plugin-transform-class-properties": "^7.28.6",
|
|
51
|
+
"@babel/plugin-transform-private-property-in-object": "^7.28.6",
|
|
52
|
+
"@storybook/addon-docs": "^10.2.8",
|
|
53
|
+
"@storybook/addon-links": "^10.2.8",
|
|
54
|
+
"@storybook/addon-onboarding": "^10.2.8",
|
|
55
|
+
"@storybook/preset-create-react-app": "^10.2.8",
|
|
56
|
+
"@storybook/react-webpack5": "^10.2.8",
|
|
57
|
+
"@testing-library/dom": "^10.4.1",
|
|
56
58
|
"@types/file-saver": "^2.0.7",
|
|
57
59
|
"babel-plugin-named-exports-order": "^0.0.2",
|
|
58
|
-
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
59
60
|
"babel-preset-env": "^1.7.0",
|
|
60
|
-
"eslint
|
|
61
|
+
"eslint": "^9.20.1",
|
|
62
|
+
"eslint-plugin-storybook": "^10.2.8",
|
|
61
63
|
"file-saver": "^2.0.5",
|
|
62
64
|
"gh-pages": "^6.3.0",
|
|
63
65
|
"react-redux": "^9.2.0",
|
|
@@ -65,25 +67,24 @@
|
|
|
65
67
|
"redux-thunk": "^3.1.0",
|
|
66
68
|
"rimraf": "^6.1.2",
|
|
67
69
|
"sass": "^1.97.3",
|
|
68
|
-
"storybook": "^10.2.
|
|
70
|
+
"storybook": "^10.2.8",
|
|
69
71
|
"typed.js": "^3.0.0",
|
|
70
|
-
"webpack": "^5.
|
|
72
|
+
"webpack": "^5.105.2"
|
|
71
73
|
},
|
|
72
74
|
"dependencies": {
|
|
73
75
|
"@testing-library/jest-dom": "^6.9.1",
|
|
74
76
|
"@testing-library/react": "^16.3.2",
|
|
75
77
|
"@testing-library/user-event": "^14.6.1",
|
|
76
|
-
"@types/jest": "^
|
|
78
|
+
"@types/jest": "^30.0.0",
|
|
77
79
|
"@types/node": "^22.10.5",
|
|
78
|
-
"@types/react": "^19.2.
|
|
80
|
+
"@types/react": "^19.2.14",
|
|
79
81
|
"@types/react-dom": "^19.2.3",
|
|
80
|
-
"prop-types": "^15.8.1",
|
|
81
82
|
"react": "^19.2.4",
|
|
82
|
-
"react-bootstrap-table-ng": "^
|
|
83
|
+
"react-bootstrap-table-ng": "^5.19.0-beta2",
|
|
83
84
|
"react-dom": "^19.2.4",
|
|
84
85
|
"react-scripts": "^5.0.1",
|
|
85
86
|
"typescript": "^5.9.3",
|
|
86
87
|
"web-vitals": "^5.1.0"
|
|
87
88
|
},
|
|
88
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "52389e653524be4f9fae547ce6b6f20e099d9b28"
|
|
89
90
|
}
|