Skip to content

Commit

Permalink
release: v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cloydlau committed Aug 16, 2024
1 parent 5df553e commit 2a65f1a
Show file tree
Hide file tree
Showing 6 changed files with 775 additions and 790 deletions.
32 changes: 17 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
// Enable the ESlint flat config support
// (remove this if your ESLint extension above v3.0.5)
"eslint.experimental.useFlatConfig": true,

// Disable the default formatter, use eslint instead
"prettier.enable": false,
"editor.formatOnSave": false,
Expand All @@ -15,16 +11,16 @@

// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
{ "rule": "style/*", "severity": "off", "fixable": true },
{ "rule": "format/*", "severity": "off", "fixable": true },
{ "rule": "*-indent", "severity": "off", "fixable": true },
{ "rule": "*-spacing", "severity": "off", "fixable": true },
{ "rule": "*-spaces", "severity": "off", "fixable": true },
{ "rule": "*-order", "severity": "off", "fixable": true },
{ "rule": "*-dangle", "severity": "off", "fixable": true },
{ "rule": "*-newline", "severity": "off", "fixable": true },
{ "rule": "*quotes", "severity": "off", "fixable": true },
{ "rule": "*semi", "severity": "off", "fixable": true }
],

// Enable eslint for all supported languages
Expand All @@ -43,6 +39,12 @@
"xml",
"gql",
"graphql",
"astro"
"astro",
"svelte",
"css",
"less",
"scss",
"pcss",
"postcss"
]
}
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1530,10 +1530,7 @@ Ant Design 也是使用 `value` 与 `label` 命名
### 仅在初始化时执行一次 search

```html
<FaSelect
:search="query => $POST('...', { query }).then(res => res.data)"
:filterable="false"
/>
<FaSelect :search="query => $POST('...', { query }).then(res => res.data)" :filterable="false" />
```

<br>
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "faim",
"PascalCasedName": "Faim",
"version": "0.9.1",
"version": "0.9.2",
"private": false,
"description": "Element Plus & Element UI isomorphic UI component library, more than Element.",
"author": {
Expand Down Expand Up @@ -69,19 +69,19 @@
}
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"@vueuse/core": "^11.0.0",
"await-to-js": "^3.0.0",
"cropperjs": "^1.6.2",
"cross-spawn": "^7.0.3",
"del": "^7.1.0",
"filepond": "^4.31.1",
"filepond": "^4.31.2",
"filepond-plugin-file-validate-size": "^2.2.8",
"filepond-plugin-file-validate-type": "^1.2.9",
"filepond-plugin-image-validate-size": "^1.2.7",
"kolorist": "^1.8.0",
"lodash-es": "^4.17.21",
"mime": "^4.0.4",
"qrcode": "^1.5.3",
"qrcode": "^1.5.4",
"sass": "^1.77.8",
"sortablejs": "^1.15.2",
"sweetalert2": "^11.12.4",
Expand All @@ -95,28 +95,28 @@
"vue-global-config": "^0.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.24.1",
"@commitlint/cli": "^19.3.0",
"@antfu/eslint-config": "^2.25.2",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@element-plus/icons-vue": "latest",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.1.0",
"@types/node": "^22.3.0",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.0",
"@vitejs/plugin-vue": "latest",
"@vue/compiler-sfc": "latest",
"@vue/test-utils": "latest",
"axios": "^1.7.3",
"axios": "^1.7.4",
"axios-shortcut": "^0.1.3",
"case-police": "^0.6.1",
"element-plus": "latest",
"eslint-plugin-format": "^0.1.2",
"eslint-ts-patch": "9.8.0-1",
"esno": "^4.7.0",
"faim": "workspace:*",
"json-editor-vue": "^0.15.1",
"json-editor-vue": "^0.15.2",
"license-checker": "^25.0.1",
"lint-staged": "^15.2.7",
"lint-staged": "^15.2.9",
"magicast": "^0.3.4",
"mammoth": "^1.8.0",
"only-allow": "^1.2.1",
Expand All @@ -126,7 +126,7 @@
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "^5.3.5",
"vite": "^5.4.1",
"vue": "latest",
"vue-tsc": "^2.0.29",
"zhlint": "^0.8.1"
Expand Down
Loading

0 comments on commit 2a65f1a

Please sign in to comment.