diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 36f3fd88fc..6a28a5ca9f 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -1,5 +1,24 @@ ## Changelog +### 1.0.2-beta.46 + +#### Features +- Feat website: demo Composition API (#2099) +- Feat Input: add input-style prop (#2117) + +#### Bugfixes +- Fix Col: should hidden when span is zero (#1769) +- Fix Table: hot reload (#2077) (#2097) +- Fix Popper: in dialog isn't enough space to position problem (#2102) +- Fix ImageViewer: isLast attribute calculation error issue (#1902) (#2125) +- Fix Popper: tabindex prop type (#2130) +- Fix Locale: week translations for hr locale (#2134) +- Fix Cascader: size issue when filterable and multiple are enabled (#2123) + +#### Chore +- Chore Website: update radio VCA doc (#2111) +- Chore Project: esbuild for single component build (#2112) +- Chore Website: use built-in throwError function. (#2131) ### 1.0.2-beta.45 diff --git a/CHANGELOG.es.md b/CHANGELOG.es.md index 486be2b466..fb7fa58273 100644 --- a/CHANGELOG.es.md +++ b/CHANGELOG.es.md @@ -1,5 +1,24 @@ ## Changelog +### 1.0.2-beta.46 + +#### Features +- Feat website: demo Composition API (#2099) +- Feat Input: add input-style prop (#2117) + +#### Bugfixes +- Fix Col: should hidden when span is zero (#1769) +- Fix Table: hot reload (#2077) (#2097) +- Fix Popper: in dialog isn't enough space to position problem (#2102) +- Fix ImageViewer: isLast attribute calculation error issue (#1902) (#2125) +- Fix Popper: tabindex prop type (#2130) +- Fix Locale: week translations for hr locale (#2134) +- Fix Cascader: size issue when filterable and multiple are enabled (#2123) + +#### Chore +- Chore Website: update radio VCA doc (#2111) +- Chore Project: esbuild for single component build (#2112) +- Chore Website: use built-in throwError function. (#2131) ### 1.0.2-beta.45 diff --git a/CHANGELOG.fr-FR.md b/CHANGELOG.fr-FR.md index 486be2b466..968a6df5ff 100644 --- a/CHANGELOG.fr-FR.md +++ b/CHANGELOG.fr-FR.md @@ -1,6 +1,26 @@ ## Changelog +### 1.0.2-beta.46 + +#### Features +- Feat website: demo Composition API (#2099) +- Feat Input: add input-style prop (#2117) + +#### Bugfixes +- Fix Col: should hidden when span is zero (#1769) +- Fix Table: hot reload (#2077) (#2097) +- Fix Popper: in dialog isn't enough space to position problem (#2102) +- Fix ImageViewer: isLast attribute calculation error issue (#1902) (#2125) +- Fix Popper: tabindex prop type (#2130) +- Fix Locale: week translations for hr locale (#2134) +- Fix Cascader: size issue when filterable and multiple are enabled (#2123) + +#### Chore +- Chore Website: update radio VCA doc (#2111) +- Chore Project: esbuild for single component build (#2112) +- Chore Website: use built-in throwError function. (#2131) + ### 1.0.2-beta.45 *2021-05-28* diff --git a/CHANGELOG.jp.md b/CHANGELOG.jp.md index 486be2b466..fb7fa58273 100644 --- a/CHANGELOG.jp.md +++ b/CHANGELOG.jp.md @@ -1,5 +1,24 @@ ## Changelog +### 1.0.2-beta.46 + +#### Features +- Feat website: demo Composition API (#2099) +- Feat Input: add input-style prop (#2117) + +#### Bugfixes +- Fix Col: should hidden when span is zero (#1769) +- Fix Table: hot reload (#2077) (#2097) +- Fix Popper: in dialog isn't enough space to position problem (#2102) +- Fix ImageViewer: isLast attribute calculation error issue (#1902) (#2125) +- Fix Popper: tabindex prop type (#2130) +- Fix Locale: week translations for hr locale (#2134) +- Fix Cascader: size issue when filterable and multiple are enabled (#2123) + +#### Chore +- Chore Website: update radio VCA doc (#2111) +- Chore Project: esbuild for single component build (#2112) +- Chore Website: use built-in throwError function. (#2131) ### 1.0.2-beta.45 diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 1a8c4e4c71..a29365657c 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -1,6 +1,26 @@ ## Changelog +### 1.0.2-beta.46 + +#### Features +- Feat website: demo Composition API (#2099) +- Feat Input: add input-style prop (#2117) + +#### Bugfixes +- Fix Col: should hidden when span is zero (#1769) +- Fix Table: hot reload (#2077) (#2097) +- Fix Popper: in dialog isn't enough space to position problem (#2102) +- Fix ImageViewer: isLast attribute calculation error issue (#1902) (#2125) +- Fix Popper: tabindex prop type (#2130) +- Fix Locale: week translations for hr locale (#2134) +- Fix Cascader: size issue when filterable and multiple are enabled (#2123) + +#### Chore +- Chore Website: update radio VCA doc (#2111) +- Chore Project: esbuild for single component build (#2112) +- Chore Website: use built-in throwError function. (#2131) + ### 1.0.2-beta.45 *2021-05-28* diff --git a/build/rollup.config.js b/build/rollup.config.js index 0e9bdd8427..ede36781d4 100644 --- a/build/rollup.config.js +++ b/build/rollup.config.js @@ -20,7 +20,6 @@ const inputs = getPackagesSync() .map(pkg => pkg.name) .filter(name => name.includes('@element-plus') && - !name.includes('transition') && !name.includes('utils'), ) @@ -38,6 +37,7 @@ export default inputs.map(name => ({ },{ format: 'cjs', file: getOutFile(name, 'lib'), + exports: 'named', paths(id) { if (/^@element-plus/.test(id)) { if (noElPrefixFile.test(id)) return id.replace('@element-plus', '..') diff --git a/scripts/build.sh b/scripts/build.sh index 9c89217df7..86b4639a67 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -16,7 +16,9 @@ yarn build:lib-full # -P2 stands for 2 maximum parallel, with # node .build/build.js command -find './packages' -type d -maxdepth 1 ! -name '*util*' ! -name '__mocks__' ! -name 'locale' ! -name 'theme*' -print0 | xargs -I {} -P2 -0 node ./build/build.comps.js {} +# find './packages' -type d -maxdepth 1 ! -name '*util*' ! -name '__mocks__' ! -name 'locale' ! -name 'theme*' -print0 | xargs -I {} -P2 -0 node ./build/build.comps.js {} + +yarn build:components find ./packages/utils -type f ! -name '*.test.ts' ! -name 'package.json' -print0 \ | xargs -P2 -0 -I {} node ./build/build-util.js {}