Skip to content

Commit

Permalink
release: v0.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
cloydlau committed Jan 31, 2024
1 parent c5f937a commit 28b578d
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 42 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,9 @@ new Vue({
> [!CAUTION]
>
> Element UI 的 `<el-image>` 在图片加载完毕后才会渲染 `<img>`,因此 Viewer.js 和 Swiper 必须在全部图片加载完毕后再进行初始化
>
> Element Plus 不存在这个问题
>
> 可以这样解决:
```vue
Expand Down
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "faim",
"PascalCasedName": "Faim",
"version": "0.6.9",
"version": "0.6.10",
"private": false,
"description": "Element Plus (Vue 3) & Element UI (Vue 2.7/2.6) isomorphic UI component library. ❄️ More than Element.",
"author": {
Expand Down Expand Up @@ -95,40 +95,40 @@
"vue-global-config": "^0.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@element-plus/icons-vue": "latest",
"@types/lodash-es": "latest",
"@types/node": "latest",
"@types/uuid": "latest",
"@types/validator": "latest",
"@vitejs/plugin-vue": "latest",
"@vue/compiler-sfc": "latest",
"@vue/test-utils": "latest",
"axios": "latest",
"axios-shortcut": "latest",
"case-police": "latest",
"element-plus": "latest",
"@antfu/eslint-config": "^2.6.3",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@element-plus/icons-vue": "^2.3.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.13",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.8",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/compiler-sfc": "^3.4.15",
"@vue/test-utils": "^2.4.4",
"axios": "^1.6.7",
"axios-shortcut": "^0.1.3",
"case-police": "^0.6.1",
"element-plus": "^2.5.3",
"eslint": "npm:eslint-ts-patch@8.56.0-0",
"eslint-plugin-format": "latest",
"eslint-plugin-format": "^0.1.0",
"eslint-ts-patch": "8.56.0-0",
"esno": "latest",
"esno": "^4.0.0",
"faim": "workspace:*",
"json-editor-vue": "latest",
"lint-staged": "latest",
"magicast": "latest",
"mammoth": "latest",
"only-allow": "latest",
"open": "latest",
"prompts": "latest",
"semver": "latest",
"simple-git-hooks": "latest",
"typescript": "latest",
"unbuild": "latest",
"vite": "latest",
"vue": "latest",
"zhlint": "latest"
"json-editor-vue": "^0.12.0",
"lint-staged": "^15.2.1",
"magicast": "^0.3.3",
"mammoth": "^1.6.0",
"only-allow": "^1.2.1",
"open": "^10.0.3",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.12",
"vue": "^3.4.15",
"zhlint": "^0.7.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
Expand Down
14 changes: 7 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/FormDialog/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default {
return conclude([
Object.fromEntries(
Array.from(boolAttrs, boolAttr => [boolAttr, conclude([this[boolAttr], globalProps[boolAttr]])]).filter(
([, v]) => v !== undefined,
([, item]) => item !== undefined,
),
),
this.$attrs,
Expand Down
2 changes: 1 addition & 1 deletion src/components/ImageUpload/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export default {
return conclude([
Object.fromEntries(
Array.from(boolAttrs, boolAttr => [boolAttr, conclude([this[boolAttr], globalProps[boolAttr]])]).filter(
([, v]) => v !== undefined,
([, item]) => item !== undefined,
),
),
this.$attrs,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Select/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default {
return conclude([
Object.fromEntries(
Array.from(boolAttrs, boolAttr => [boolAttr, conclude([this[boolAttr], globalProps[boolAttr]])]).filter(
([, v]) => v !== undefined,
([, item]) => item !== undefined,
),
),
this.$attrs,
Expand Down

0 comments on commit 28b578d

Please sign in to comment.