Skip to content

Commit 27c19db

Browse files
committed
release: v0.8.80
1 parent 361aedb commit 27c19db

File tree

3 files changed

+177
-168
lines changed

3 files changed

+177
-168
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.8.80](https://github.com/WeBankFinTech/fes-design/compare/v0.8.79...v0.8.80) (2025-04-01)
2+
3+
4+
### Features
5+
6+
* table改为使用virtualList ([#942](https://github.com/WeBankFinTech/fes-design/issues/942)) ([361aedb](https://github.com/WeBankFinTech/fes-design/commit/361aedb572afb10805a840034ac2b74b4e6392b0))
7+
8+
9+
110
## [0.8.79](https://github.com/WeBankFinTech/fes-design/compare/v0.8.78...v0.8.79) (2025-03-28)
211

312

components/version/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const version = '0.8.79';
1+
const version = '0.8.80';
22

33
export default version;

package.json

Lines changed: 167 additions & 167 deletions
Original file line numberDiff line numberDiff line change
@@ -1,171 +1,171 @@
11
{
2-
"name": "@fesjs/fes-design",
3-
"type": "module",
4-
"version": "0.8.79",
5-
"packageManager": "[email protected]",
6-
"description": "fes-design for PC",
7-
"author": "winixt",
8-
"license": "MIT",
9-
"homepage": "https://github.com/WeBankFinTech/fes-design#readme",
10-
"repository": {
11-
"type": "git",
12-
"url": "git+https://github.com/WeBankFinTech/fes-design.git"
13-
},
14-
"bugs": {
15-
"url": "https://github.com/WeBankFinTech/fes-design/issues"
16-
},
17-
"keywords": [
18-
"fes",
19-
"fes-ui",
20-
"fes-design"
2+
"name": "@fesjs/fes-design",
3+
"type": "module",
4+
"version": "0.8.80",
5+
"packageManager": "[email protected]",
6+
"description": "fes-design for PC",
7+
"author": "winixt",
8+
"license": "MIT",
9+
"homepage": "https://github.com/WeBankFinTech/fes-design#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/WeBankFinTech/fes-design.git"
13+
},
14+
"bugs": {
15+
"url": "https://github.com/WeBankFinTech/fes-design/issues"
16+
},
17+
"keywords": [
18+
"fes",
19+
"fes-ui",
20+
"fes-design"
21+
],
22+
"sideEffects": [
23+
"./dist/*",
24+
"**/style/*"
25+
],
26+
"exports": {
27+
".": "./es/index.js",
28+
"./es/*": "./es/*",
29+
"./dist/*": "./dist/*",
30+
"./icon": "./es/icon/index.js"
31+
},
32+
"main": "dist/fes-design.js",
33+
"module": "es/index.js",
34+
"types": "./es/index.d.ts",
35+
"files": [
36+
"dist",
37+
"es",
38+
"icon",
39+
"scripts",
40+
"types"
41+
],
42+
"scripts": {
43+
"prepare": "husky install",
44+
"docs:dev": "node scripts/genComponentDoc.js && vitepress dev docs",
45+
"docs:build": "NODE_ENV=production node scripts/genComponentDoc.js && vitepress build docs",
46+
"docs:preview": "vitepress preview docs --port 8999",
47+
"test": "jest",
48+
"test:watch": "jest --watch",
49+
"gen:component": "node scripts/createComponent.js",
50+
"gen:icon": "node scripts/genIcons.js",
51+
"build:version": "node scripts/genVersion.js",
52+
"build:esm": "node scripts/build-esm.js",
53+
"build:esm-browser": "node scripts/build-browser.js",
54+
"build:umd": "node scripts/build-umd.js",
55+
"build:style": "node scripts/build-style.js",
56+
"build:type": "node scripts/build-types.js",
57+
"build:icon": "node scripts/build-icon.js",
58+
"build": "npm run build:version && npm run build:esm && npm run build:type && cp -rf es/icon . && npm run build:esm-browser && npm run build:umd && npm run build:style && npm run build:icon",
59+
"release": "node scripts/release.js",
60+
"lint-staged": "lint-staged --allow-empty",
61+
"commitlint": "commitlint --config commitlint.config.cjs -e -V",
62+
"lint:script": "eslint ./components --fix",
63+
"lint:style": "stylelint 'components/**/*.less' --fix",
64+
"lint:docs-script": "eslint ./docs/.vitepress/components --fix",
65+
"commit": "git cz",
66+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
67+
},
68+
"peerDependencies": {
69+
"vue": "^3.2.24"
70+
},
71+
"dependencies": {
72+
"@babel/runtime": "^7.16.3",
73+
"@floating-ui/dom": "^1.2.9",
74+
"@juggle/resize-observer": "^3.3.1",
75+
"@types/lodash-es": "^4.17.5",
76+
"@vue/shared": "^3.2.24",
77+
"@vueuse/core": "^9.6.0",
78+
"async-validator": "^4.2.5",
79+
"csstype": "^3.0.10",
80+
"date-fns": "^2.28.0",
81+
"lodash-es": "^4.17.21",
82+
"stickybits": "^3.7.9",
83+
"virtua": "^0.40.3"
84+
},
85+
"devDependencies": {
86+
"@antfu/eslint-config": "^2.15.0",
87+
"@babel/core": "^7.16.0",
88+
"@babel/plugin-syntax-jsx": "^7.16.0",
89+
"@babel/plugin-transform-runtime": "^7.16.4",
90+
"@babel/preset-env": "^7.16.4",
91+
"@babel/preset-typescript": "^7.16.7",
92+
"@betit/rollup-plugin-rename-extensions": "^0.1.0",
93+
"@commitlint/cli": "^13.2.1",
94+
"@commitlint/config-conventional": "^13.2.0",
95+
"@docsearch/css": "^3.0.0",
96+
"@docsearch/js": "^3.0.0",
97+
"@rollup/plugin-babel": "^5.3.0",
98+
"@rollup/plugin-commonjs": "^21.0.1",
99+
"@rollup/plugin-json": "^4.1.0",
100+
"@rollup/plugin-node-resolve": "^13.0.6",
101+
"@rollup/plugin-replace": "^5.0.1",
102+
"@types/jest": "^27.4.1",
103+
"@vite-pwa/vitepress": "^0.3.0",
104+
"@vitejs/plugin-vue-jsx": "^1.3.0",
105+
"@vue/babel-plugin-jsx": "^1.1.1",
106+
"@vue/repl": "^3.4.0",
107+
"@vue/test-utils": "2.0.0-rc.17",
108+
"@vue/vue3-jest": "27.0.0-alpha.4",
109+
"@webank/eslint-config-ts": "^1.2.0",
110+
"autoprefixer": "^10.4.0",
111+
"babel-jest": "^27.5.1",
112+
"body-scroll-lock": "4.0.0-beta.0",
113+
"browserslist": "^4.18.1",
114+
"chalk": "^4.1.2",
115+
"cheap-watch": "^1.0.4",
116+
"commitizen": "^4.2.4",
117+
"conventional-changelog-cli": "^2.1.1",
118+
"csso": "^4.2.0",
119+
"cz-conventional-changelog": "^3.3.0",
120+
"enquirer": "^2.3.6",
121+
"eslint": "^9.1.1",
122+
"eslint-import-resolver-custom-alias": "^1.3.2",
123+
"execa": "^4.1.0",
124+
"fast-glob": "^3.2.7",
125+
"fs-extra": "^10.0.0",
126+
"husky": "^7.0.4",
127+
"jest": "^27.5.1",
128+
"jest-canvas-mock": "^2.3.1",
129+
"jest-transform-stub": "^2.0.0",
130+
"less": "^4.1.2",
131+
"less-loader": "^10.2.0",
132+
"lint-staged": "^11.2.6",
133+
"minimist": "^1.2.5",
134+
"postcss": "^8.4.35",
135+
"prettier": "^2.5.1",
136+
"rollup": "^2.60.2",
137+
"rollup-plugin-postcss": "^4.0.2",
138+
"rollup-plugin-vue": "^6.0.0",
139+
"semver": "^7.3.5",
140+
"shiki": "^1.1.0",
141+
"stylelint": "^14.1.0",
142+
"stylelint-config-prettier": "^9.0.3",
143+
"stylelint-config-rational-order": "^0.1.2",
144+
"stylelint-config-standard": "^24.0.0",
145+
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
146+
"stylelint-order": "^5.0.0",
147+
"svgo": "^2.8.0",
148+
"terser": "^5.10.0",
149+
"ts-jest": "^27.1.3",
150+
"ts-morph": "^17.0.1",
151+
"typescript": "^4.9.5",
152+
"vitepress": "^1.3.4",
153+
"vue": "^3.3.4"
154+
},
155+
"lint-staged": {
156+
"components/**/*.{js,ts,vue,jsx}": [
157+
"eslint --fix"
21158
],
22-
"sideEffects": [
23-
"./dist/*",
24-
"**/style/*"
25-
],
26-
"exports": {
27-
".": "./es/index.js",
28-
"./es/*": "./es/*",
29-
"./dist/*": "./dist/*",
30-
"./icon": "./es/icon/index.js"
31-
},
32-
"main": "dist/fes-design.js",
33-
"module": "es/index.js",
34-
"types": "./es/index.d.ts",
35-
"files": [
36-
"dist",
37-
"es",
38-
"icon",
39-
"scripts",
40-
"types"
41-
],
42-
"scripts": {
43-
"prepare": "husky install",
44-
"docs:dev": "node scripts/genComponentDoc.js && vitepress dev docs",
45-
"docs:build": "NODE_ENV=production node scripts/genComponentDoc.js && vitepress build docs",
46-
"docs:preview": "vitepress preview docs --port 8999",
47-
"test": "jest",
48-
"test:watch": "jest --watch",
49-
"gen:component": "node scripts/createComponent.js",
50-
"gen:icon": "node scripts/genIcons.js",
51-
"build:version": "node scripts/genVersion.js",
52-
"build:esm": "node scripts/build-esm.js",
53-
"build:esm-browser": "node scripts/build-browser.js",
54-
"build:umd": "node scripts/build-umd.js",
55-
"build:style": "node scripts/build-style.js",
56-
"build:type": "node scripts/build-types.js",
57-
"build:icon": "node scripts/build-icon.js",
58-
"build": "npm run build:version && npm run build:esm && npm run build:type && cp -rf es/icon . && npm run build:esm-browser && npm run build:umd && npm run build:style && npm run build:icon",
59-
"release": "node scripts/release.js",
60-
"lint-staged": "lint-staged --allow-empty",
61-
"commitlint": "commitlint --config commitlint.config.cjs -e -V",
62-
"lint:script": "eslint ./components --fix",
63-
"lint:style": "stylelint 'components/**/*.less' --fix",
64-
"lint:docs-script": "eslint ./docs/.vitepress/components --fix",
65-
"commit": "git cz",
66-
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
67-
},
68-
"peerDependencies": {
69-
"vue": "^3.2.24"
70-
},
71-
"dependencies": {
72-
"@babel/runtime": "^7.16.3",
73-
"@floating-ui/dom": "^1.2.9",
74-
"@juggle/resize-observer": "^3.3.1",
75-
"@types/lodash-es": "^4.17.5",
76-
"@vue/shared": "^3.2.24",
77-
"@vueuse/core": "^9.6.0",
78-
"async-validator": "^4.2.5",
79-
"csstype": "^3.0.10",
80-
"date-fns": "^2.28.0",
81-
"lodash-es": "^4.17.21",
82-
"stickybits": "^3.7.9",
83-
"virtua": "^0.40.3"
84-
},
85-
"devDependencies": {
86-
"@antfu/eslint-config": "^2.15.0",
87-
"@babel/core": "^7.16.0",
88-
"@babel/plugin-syntax-jsx": "^7.16.0",
89-
"@babel/plugin-transform-runtime": "^7.16.4",
90-
"@babel/preset-env": "^7.16.4",
91-
"@babel/preset-typescript": "^7.16.7",
92-
"@betit/rollup-plugin-rename-extensions": "^0.1.0",
93-
"@commitlint/cli": "^13.2.1",
94-
"@commitlint/config-conventional": "^13.2.0",
95-
"@docsearch/css": "^3.0.0",
96-
"@docsearch/js": "^3.0.0",
97-
"@rollup/plugin-babel": "^5.3.0",
98-
"@rollup/plugin-commonjs": "^21.0.1",
99-
"@rollup/plugin-json": "^4.1.0",
100-
"@rollup/plugin-node-resolve": "^13.0.6",
101-
"@rollup/plugin-replace": "^5.0.1",
102-
"@types/jest": "^27.4.1",
103-
"@vite-pwa/vitepress": "^0.3.0",
104-
"@vitejs/plugin-vue-jsx": "^1.3.0",
105-
"@vue/babel-plugin-jsx": "^1.1.1",
106-
"@vue/repl": "^3.4.0",
107-
"@vue/test-utils": "2.0.0-rc.17",
108-
"@vue/vue3-jest": "27.0.0-alpha.4",
109-
"@webank/eslint-config-ts": "^1.2.0",
110-
"autoprefixer": "^10.4.0",
111-
"babel-jest": "^27.5.1",
112-
"body-scroll-lock": "4.0.0-beta.0",
113-
"browserslist": "^4.18.1",
114-
"chalk": "^4.1.2",
115-
"cheap-watch": "^1.0.4",
116-
"commitizen": "^4.2.4",
117-
"conventional-changelog-cli": "^2.1.1",
118-
"csso": "^4.2.0",
119-
"cz-conventional-changelog": "^3.3.0",
120-
"enquirer": "^2.3.6",
121-
"eslint": "^9.1.1",
122-
"eslint-import-resolver-custom-alias": "^1.3.2",
123-
"execa": "^4.1.0",
124-
"fast-glob": "^3.2.7",
125-
"fs-extra": "^10.0.0",
126-
"husky": "^7.0.4",
127-
"jest": "^27.5.1",
128-
"jest-canvas-mock": "^2.3.1",
129-
"jest-transform-stub": "^2.0.0",
130-
"less": "^4.1.2",
131-
"less-loader": "^10.2.0",
132-
"lint-staged": "^11.2.6",
133-
"minimist": "^1.2.5",
134-
"postcss": "^8.4.35",
135-
"prettier": "^2.5.1",
136-
"rollup": "^2.60.2",
137-
"rollup-plugin-postcss": "^4.0.2",
138-
"rollup-plugin-vue": "^6.0.0",
139-
"semver": "^7.3.5",
140-
"shiki": "^1.1.0",
141-
"stylelint": "^14.1.0",
142-
"stylelint-config-prettier": "^9.0.3",
143-
"stylelint-config-rational-order": "^0.1.2",
144-
"stylelint-config-standard": "^24.0.0",
145-
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
146-
"stylelint-order": "^5.0.0",
147-
"svgo": "^2.8.0",
148-
"terser": "^5.10.0",
149-
"ts-jest": "^27.1.3",
150-
"ts-morph": "^17.0.1",
151-
"typescript": "^4.9.5",
152-
"vitepress": "^1.3.4",
153-
"vue": "^3.3.4"
154-
},
155-
"lint-staged": {
156-
"components/**/*.{js,ts,vue,jsx}": [
157-
"eslint --fix"
158-
],
159-
"components/**/*.{less,css}": [
160-
"stylelint --fix"
161-
]
162-
},
163-
"config": {
164-
"commitizen": {
165-
"path": "./node_modules/cz-conventional-changelog"
166-
}
167-
},
168-
"publishConfig": {
169-
"access": "public"
159+
"components/**/*.{less,css}": [
160+
"stylelint --fix"
161+
]
162+
},
163+
"config": {
164+
"commitizen": {
165+
"path": "./node_modules/cz-conventional-changelog"
170166
}
167+
},
168+
"publishConfig": {
169+
"access": "public"
170+
}
171171
}

0 commit comments

Comments
 (0)