fix: type check

fix: ci

fix: ci

fix: ci
This commit is contained in:
vben
2024-06-16 21:17:39 +08:00
parent 0085429ef4
commit 54b35deeab
135 changed files with 393 additions and 318 deletions

View File

@@ -22,9 +22,6 @@
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"imports": {
"#*": "./src/*"
},
"exports": {
".": {
"types": "./src/index.ts",

View File

@@ -32,13 +32,13 @@ const bindProps = computed(() => {
return type === 'normal'
? {
variant: 'heavy',
variant: 'heavy' as const,
}
: {
class: 'rounded-full',
size: 'icon',
size: 'icon' as const,
style: { padding: '6px' },
variant: 'icon',
variant: 'icon' as const,
};
});

View File

@@ -22,9 +22,6 @@
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"imports": {
"#*": "./src/*"
},
"exports": {
".": {
"types": "./src/index.ts",