Skip to content

Commit 8cc73cf

Browse files
feat: add reize components & demo (vbenjs#4862)
* feat: resize component * chore: change positon of resize components * feat: add resize demo * chore: resize demo completed * chore: fix display number * chore: add infer comment * fix: move reszie demo to examples * fix: fix icon & removed scss
1 parent a897116 commit 8cc73cf

File tree

8 files changed

+1210
-27
lines changed

8 files changed

+1210
-27
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,5 +222,6 @@
222222
"commentTranslate.hover.enabled": false,
223223
"commentTranslate.multiLineMerge": true,
224224
"vue.server.hybridMode": true,
225-
"typescript.tsdk": "node_modules/typescript/lib"
225+
"typescript.tsdk": "node_modules/typescript/lib",
226+
"oxc.enable": false
226227
}

cspell.json

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,53 +4,55 @@
44
"language": "en,en-US",
55
"allowCompoundWords": true,
66
"words": [
7-
"clsx",
8-
"esno",
9-
"demi",
10-
"unref",
11-
"taze",
127
"acmr",
138
"antd",
14-
"lucide",
9+
"antdv",
10+
"astro",
1511
"brotli",
12+
"clsx",
1613
"defu",
14+
"demi",
15+
"echarts",
16+
"ependencies",
17+
"esno",
18+
"etag",
1719
"execa",
1820
"iconify",
21+
"iconoir",
1922
"intlify",
23+
"lockb",
24+
"lucide",
25+
"minh",
26+
"minw",
2027
"mkdist",
2128
"mockjs",
22-
"vitejs",
29+
"naiveui",
30+
"nocheck",
2331
"noopener",
2432
"noreferrer",
2533
"nprogress",
34+
"nuxt",
2635
"pinia",
36+
"prefixs",
2737
"publint",
2838
"qrcode",
2939
"shadcn",
3040
"sonner",
41+
"sortablejs",
42+
"styl",
43+
"taze",
44+
"ui-kit",
45+
"uicons",
3146
"unplugin",
47+
"unref",
3248
"vben",
3349
"vbenjs",
34-
"vueuse",
35-
"yxxx",
36-
"nuxt",
37-
"lockb",
38-
"astro",
39-
"ui-kit",
40-
"styl",
41-
"vnode",
42-
"nocheck",
43-
"prefixs",
44-
"vitepress",
45-
"antdv",
46-
"ependencies",
4750
"vite",
48-
"echarts",
49-
"sortablejs",
50-
"etag",
51-
"naiveui",
52-
"uicons",
53-
"iconoir"
51+
"vitejs",
52+
"vitepress",
53+
"vnode",
54+
"vueuse",
55+
"yxxx"
5456
],
5557
"ignorePaths": [
5658
"**/node_modules/**",

packages/effects/common-ui/src/components/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export * from './captcha';
22
export * from './ellipsis-text';
33
export * from './icon-picker';
44
export * from './page';
5+
export * from './resize';
56
export * from '@vben-core/form-ui';
67
export * from '@vben-core/popup-ui';
78

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as VResize } from './resize.vue';

0 commit comments

Comments
 (0)