Skip to content

Commit 0b9110f

Browse files
authored
[refactor] rewrite Pagination components to WebCell v3 (#26)
1 parent 1d6e51b commit 0b9110f

File tree

9 files changed

+1252
-1446
lines changed

9 files changed

+1252
-1446
lines changed

.github/pr-badge.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
- icon: visualstudio
2+
label: 'GitHub.dev'
3+
message: 'PR-$prNumber'
4+
color: 'blue'
5+
url: 'https://github.dev/$owner/$repo/pull/$prNumber'
6+
7+
- icon: github
8+
label: 'GitHub codespaces'
9+
message: 'PR-$prNumber'
10+
color: 'black'
11+
url: 'https://codespaces.new/$owner/$repo/pull/$prNumber'
12+
13+
- icon: git
14+
label: 'GitPod.io'
15+
message: 'PR-$prNumber'
16+
color: 'orange'
17+
url: 'https://gitpod.io/?autostart=true#https://github.com/$owner/$repo/pull/$prNumber'

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: 9
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 20
20+
node-version: 22
2121
registry-url: https://registry.npmjs.org
2222
cache: pnpm
2323
- name: Install Dependencies

.vscode/extensions.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"recommendations": [
3+
"yzhang.markdown-all-in-one",
4+
"redhat.vscode-yaml",
5+
"clinyong.vscode-css-modules",
6+
"akamud.vscode-caniuse",
7+
"visualstudioexptteam.intellicode-api-usage-examples",
8+
"pflannery.vscode-versionlens",
9+
"christian-kohler.npm-intellisense",
10+
"esbenp.prettier-vscode",
11+
"eamodio.gitlens",
12+
"github.vscode-pull-request-github",
13+
"github.vscode-github-actions",
14+
"github.copilot"
15+
]
16+
}

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "boot-cell",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"license": "LGPL-3.0",
55
"author": "shiy2008@gmail.com",
66
"description": "Web Components UI library based on WebCell v3, BootStrap v5, BootStrap Icon v1 & FontAwesome v6",
@@ -28,7 +28,7 @@
2828
"classnames": "^2.5.1",
2929
"dom-renderer": "^2.6.1",
3030
"iterable-observer": "^1.1.0",
31-
"mobx": "^6.13.5",
31+
"mobx": "^6.13.6",
3232
"regenerator-runtime": "^0.14.1",
3333
"web-cell": "^3.0.3",
3434
"web-utility": "^4.4.2"
@@ -43,32 +43,32 @@
4343
},
4444
"devDependencies": {
4545
"@jest/types": "^29.6.3",
46-
"@parcel/config-default": "^2.13.1",
47-
"@parcel/packager-ts": "~2.13.1",
48-
"@parcel/transformer-less": "~2.13.1",
49-
"@parcel/transformer-typescript-tsc": "^2.13.1",
50-
"@parcel/transformer-typescript-types": "~2.13.1",
46+
"@parcel/config-default": "~2.13.3",
47+
"@parcel/packager-ts": "~2.13.3",
48+
"@parcel/transformer-less": "~2.13.3",
49+
"@parcel/transformer-typescript-tsc": "~2.13.3",
50+
"@parcel/transformer-typescript-types": "~2.13.3",
5151
"@peculiar/webcrypto": "^1.5.0",
5252
"@tech_query/snabbdom-looks-like": "^2.0.1",
5353
"@types/jest": "^29.5.14",
5454
"@types/resize-observer-browser": "^0.1.11",
5555
"@types/turndown": "^5.0.5",
5656
"cross-env": "^7.0.3",
57-
"element-internals-polyfill": "^1.3.12",
57+
"element-internals-polyfill": "^1.3.13",
5858
"husky": "^9.1.7",
5959
"identity-obj-proxy": "^3.0.0",
6060
"jest": "^29.7.0",
61-
"less": "^4.2.0",
62-
"lint-staged": "^15.2.10",
61+
"less": "^4.2.2",
62+
"lint-staged": "^15.4.3",
6363
"markdown-area-element": "^0.2.3",
6464
"open-cli": "^8.0.0",
65-
"parcel": "~2.13.1",
66-
"prettier": "^3.3.3",
65+
"parcel": "~2.13.3",
66+
"prettier": "^3.5.1",
6767
"ts-jest": "^29.2.5",
6868
"ts-node": "^10.9.2",
69-
"typedoc": "^0.26.11",
70-
"typedoc-plugin-mdn-links": "^4.0.1",
71-
"typescript": "~5.7.2"
69+
"typedoc": "^0.27.7",
70+
"typedoc-plugin-mdn-links": "^4.0.13",
71+
"typescript": "~5.7.3"
7272
},
7373
"scripts": {
7474
"prepare": "husky",

0 commit comments

Comments
 (0)