diff --git a/CHANGELOG.md b/CHANGELOG.md index d9d93e8d9d0..93f3af95779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## [3.3.7](https://github.com/varletjs/varlet/compare/v3.3.6...v3.3.7) (2024-07-19) + + +### Bug Fixes + +* fix dialog unmount instance error ([#1711](https://github.com/varletjs/varlet/issues/1711)) ([a19c6e7](https://github.com/varletjs/varlet/commit/a19c6e743fc64ba0d79c4f23a6c87fb7d8870c6e)) +* **preset-tailwindcss:** fix issue where tailwindcss default styles were overridden by varlet tailwindcss preset ([#1716](https://github.com/varletjs/varlet/issues/1716)) ([aaf1cbf](https://github.com/varletjs/varlet/commit/aaf1cbfe4deb08292ef7c30d9821e911fcd2589b)) + + +### Features + +* **card:** support default slot ([#1709](https://github.com/varletjs/varlet/issues/1709)) ([faed196](https://github.com/varletjs/varlet/commit/faed196b96cad7214822cf433bdd2e923a6a80b1)) +* **menu-select:** supports options, labelKey and valueKey ([#1695](https://github.com/varletjs/varlet/issues/1695)) ([6b4bc49](https://github.com/varletjs/varlet/commit/6b4bc494b229e2bfdb7305de97da530b6cd74e07)) +* support hsl css var ([#1710](https://github.com/varletjs/varlet/issues/1710)) ([f85eea5](https://github.com/varletjs/varlet/commit/f85eea5f2d41a80245bf8110d70a4cece6f50ba3)) + + + ## [3.3.6](https://github.com/varletjs/varlet/compare/v3.3.5...v3.3.6) (2024-07-10) diff --git a/package.json b/package.json index c61e328da5a..9432a29631a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "3.3.6", + "version": "3.3.7", "scripts": { "preinstall": "npx only-allow pnpm", "postinstall": "simple-git-hooks", diff --git a/packages/varlet-cli/package.json b/packages/varlet-cli/package.json index 9c7ab17910b..a0fdd7934a7 100644 --- a/packages/varlet-cli/package.json +++ b/packages/varlet-cli/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/cli", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "description": "cli of varlet", "bin": { diff --git a/packages/varlet-eslint-config/package.json b/packages/varlet-eslint-config/package.json index 54687015211..e37f427c8ee 100644 --- a/packages/varlet-eslint-config/package.json +++ b/packages/varlet-eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/eslint-config", - "version": "3.3.6", + "version": "3.3.7", "description": "eslint config of varlet", "keywords": [ "eslint", diff --git a/packages/varlet-icons/package.json b/packages/varlet-icons/package.json index b068997bb4d..f4e3fd0bd62 100644 --- a/packages/varlet-icons/package.json +++ b/packages/varlet-icons/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/icons", - "version": "3.3.6", + "version": "3.3.7", "description": "Icons of varlet", "type": "module", "main": "dist/index.js", diff --git a/packages/varlet-import-resolver/package.json b/packages/varlet-import-resolver/package.json index bc1eb6f3c23..add896b15c7 100644 --- a/packages/varlet-import-resolver/package.json +++ b/packages/varlet-import-resolver/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/import-resolver", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "main": "lib/index.cjs", "module": "lib/index.js", diff --git a/packages/varlet-preset-tailwindcss/package.json b/packages/varlet-preset-tailwindcss/package.json index fc8697f5a61..33f697bf59d 100644 --- a/packages/varlet-preset-tailwindcss/package.json +++ b/packages/varlet-preset-tailwindcss/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/preset-tailwindcss", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "main": "lib/index.cjs", "module": "lib/index.js", diff --git a/packages/varlet-preset-unocss/package.json b/packages/varlet-preset-unocss/package.json index 41fb691e4af..afdbebad902 100644 --- a/packages/varlet-preset-unocss/package.json +++ b/packages/varlet-preset-unocss/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/preset-unocss", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "main": "lib/index.cjs", "module": "lib/index.js", diff --git a/packages/varlet-shared/package.json b/packages/varlet-shared/package.json index 0c7e42f565f..77e1233c082 100644 --- a/packages/varlet-shared/package.json +++ b/packages/varlet-shared/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/shared", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "main": "lib/index.cjs", "module": "lib/index.js", diff --git a/packages/varlet-touch-emulator/package.json b/packages/varlet-touch-emulator/package.json index 6993fa401bf..6ae78c8eca4 100644 --- a/packages/varlet-touch-emulator/package.json +++ b/packages/varlet-touch-emulator/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/touch-emulator", - "version": "3.3.6", + "version": "3.3.7", "description": "touch-emulator", "keywords": [ "emulator", diff --git a/packages/varlet-ui-playground/package.json b/packages/varlet-ui-playground/package.json index 791996ae040..e5de93f8f2d 100644 --- a/packages/varlet-ui-playground/package.json +++ b/packages/varlet-ui-playground/package.json @@ -1,7 +1,7 @@ { "name": "@varlet/ui-playground", "private": true, - "version": "3.3.6", + "version": "3.3.7", "description": "varlet ui playground", "type": "module", "keywords": [ diff --git a/packages/varlet-ui/package.json b/packages/varlet-ui/package.json index 6470ba8a199..8ed9576dc43 100644 --- a/packages/varlet-ui/package.json +++ b/packages/varlet-ui/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/ui", - "version": "3.3.6", + "version": "3.3.7", "description": "A material like components library", "main": "lib/varlet.cjs.js", "module": "es/index.mjs", diff --git a/packages/varlet-use/package.json b/packages/varlet-use/package.json index d1d732c7ef0..d732445c20f 100644 --- a/packages/varlet-use/package.json +++ b/packages/varlet-use/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/use", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "main": "lib/index.cjs", "module": "lib/index.js", diff --git a/packages/varlet-vite-plugins/package.json b/packages/varlet-vite-plugins/package.json index 8a71495443a..2a1c94fe6b1 100644 --- a/packages/varlet-vite-plugins/package.json +++ b/packages/varlet-vite-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@varlet/vite-plugins", - "version": "3.3.6", + "version": "3.3.7", "type": "module", "description": "vite plugins of varlet", "main": "lib/index.js", diff --git a/packages/varlet-vscode-extension/package.json b/packages/varlet-vscode-extension/package.json index e24ab241c7d..5c70d2f0127 100644 --- a/packages/varlet-vscode-extension/package.json +++ b/packages/varlet-vscode-extension/package.json @@ -6,7 +6,7 @@ "displayName": "varlet-vscode-extension", "description": "varlet extension for vscode", "publisher": "haoziqaq", - "version": "3.3.6", + "version": "3.3.7", "engines": { "vscode": "^1.56.0" },