Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules/
.parcel-cache/
.env
dist/
docs/
.vscode/settings.json
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
preview/
docs/
.*
4 changes: 4 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ A **Pagination Table** & **Scroll List** component suite for [CRUD operation][1]

[![NPM](https://nodei.co/npm/mobx-restful-table.png?downloads=true&downloadRank=true&stars=true)][7]

- API document: https://idea2app.github.io/MobX-RESTful-table/
- Preview site: https://idea2app.github.io/MobX-RESTful-table/preview/

## Versions

| SemVer | status | ES decorator | MobX |
Expand All @@ -29,6 +32,7 @@ A **Pagination Table** & **Scroll List** component suite for [CRUD operation][1]
10. [REST Table](https://idea2app.github.io/MobX-RESTful-table/classes/RestTable.html)
11. [Scroll Boundary](https://idea2app.github.io/MobX-RESTful-table/functions/ScrollBoundary-1.html)
12. [Scroll List](https://idea2app.github.io/MobX-RESTful-table/classes/ScrollList.html)
13. [Searchable Input](https://idea2app.github.io/MobX-RESTful-table/classes/SearchableInput.html)

## Installation

Expand Down
52 changes: 37 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx-restful-table",
"version": "2.0.2",
"version": "2.1.0",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "A Pagination Table & Scroll List component suite for CRUD operation, which is based on MobX RESTful & React.",
Expand All @@ -25,13 +25,13 @@
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"@swc/helpers": "^0.5.15",
"@swc/helpers": "^0.5.17",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"mobx": "^6.13.6",
"mobx": "^6.13.7",
"mobx-i18n": "^0.6.0",
"mobx-react": "^9.2.0",
"mobx-react-helper": "^0.3.1",
"mobx-react-helper": "^0.3.4",
"mobx-restful": "^2.1.0",
"react-bootstrap": "^2.10.9",
"regenerator-runtime": "^0.14.1",
Expand All @@ -41,20 +41,40 @@
"react": ">=16.8"
},
"devDependencies": {
"@parcel/config-default": "~2.13.3",
"@parcel/packager-ts": "~2.13.3",
"@parcel/transformer-typescript-tsc": "~2.13.3",
"@parcel/transformer-typescript-types": "~2.13.3",
"@octokit/openapi-types": "^25.0.0",
"@parcel/config-default": "~2.14.4",
"@parcel/packager-ts": "~2.14.4",
"@parcel/transformer-typescript-tsc": "~2.14.4",
"@parcel/transformer-typescript-types": "~2.14.4",
"@types/lodash": "^4.17.16",
"@types/react": "^18.3.18",
"@types/node": "^22.14.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"parcel": "~2.13.3",
"idea-react": "^2.0.0-rc.10",
"koajax": "^3.1.2",
"lint-staged": "^15.5.1",
"mobx-github": "^0.3.5",
"parcel": "~2.14.4",
"prettier": "^3.5.3",
"react": "^18.3.1",
"typedoc": "^0.27.9",
"prismjs": "^1.30.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"typedoc": "^0.28.2",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "~5.8.2"
"typescript": "~5.8.3"
},
"resolutions": {
"@octokit/openapi-types": "$@octokit/openapi-types"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"lmdb",
"msgpackr-extract"
]
},
"prettier": {
"singleQuote": true,
Expand All @@ -73,8 +93,10 @@
},
"scripts": {
"prepare": "husky",
"preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel --open",
"test": "lint-staged",
"build": "rm -rf dist/ docs/ && parcel build && typedoc source/",
"pack-preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel build --public-url=. --dist-dir=../docs/preview/",
"build": "rm -rf dist/ docs/ && parcel build && typedoc source/ && npm run pack-preview",
"prepublishOnly": "npm test && npm run build"
}
}
Loading