From d99bc2bfda74debe6cb0644a217ccd71fcfd6b14 Mon Sep 17 00:00:00 2001 From: Florentina Petcu <36894034+florentinap@users.noreply.github.com> Date: Sat, 26 Feb 2022 05:22:05 +0200 Subject: [PATCH 0001/1123] Update onBeforeUnmount type (#1580) There is a typo. The method name in Type section is onBeforeUnmounted (the correct name is onBeforeUnmount). --- src/api/composition-api-lifecycle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/composition-api-lifecycle.md b/src/api/composition-api-lifecycle.md index c4a4dd88b4..4f048a6aa1 100644 --- a/src/api/composition-api-lifecycle.md +++ b/src/api/composition-api-lifecycle.md @@ -167,7 +167,7 @@ Registers a hook to be called right before a component instance is to be unmount - **Type** ```ts - function onBeforeUnmounted(callback: () => void): void + function onBeforeUnmount(callback: () => void): void ``` - **Details** From 4fe51f8e065771df2c5704866ee698b0839cd64a Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 26 Feb 2022 04:24:22 +0100 Subject: [PATCH 0002/1123] Change Vuex to Pinia and link it (#1577) --- src/style-guide/rules-strongly-recommended.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style-guide/rules-strongly-recommended.md b/src/style-guide/rules-strongly-recommended.md index c2e54732ad..e4985ae86b 100644 --- a/src/style-guide/rules-strongly-recommended.md +++ b/src/style-guide/rules-strongly-recommended.md @@ -87,7 +87,7 @@ These components lay the foundation for consistent styling and behavior in your - other base components, and - 3rd-party UI components. -But they'll **never** contain global state (e.g. from a Vuex store). +But they'll **never** contain global state (e.g. from a [Pinia](https://pinia.vuejs.org/) store). Their names often include the name of an element they wrap (e.g. `BaseButton`, `BaseTable`), unless no element exists for their specific purpose (e.g. `BaseIcon`). If you build similar components for a more specific context, they will almost always consume these components (e.g. `BaseButton` may be used in `ButtonSubmit`). From 8ab89bee570432c875eeec4ac01f43ef36a52b3c Mon Sep 17 00:00:00 2001 From: Jairo Blatt Date: Sat, 26 Feb 2022 00:59:28 -0300 Subject: [PATCH 0003/1123] chore: update performance mark api ref (#1578) --- src/api/application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/application.md b/src/api/application.md index 7cd780ff83..03c69c1c91 100644 --- a/src/api/application.md +++ b/src/api/application.md @@ -387,7 +387,7 @@ Assign a custom handler for runtime warnings from Vue. ## app.config.performance -Set this to `true` to enable component init, compile, render and patch performance tracing in the browser devtool performance/timeline panel. Only works in development mode and in browsers that support the [performance.mark](/) API. +Set this to `true` to enable component init, compile, render and patch performance tracing in the browser devtool performance/timeline panel. Only works in development mode and in browsers that support the [performance.mark](https://developer.mozilla.org/en-US/docs/Web/API/Performance/mark) API. - **Type**: `boolean` From 144d10d4d40aaeb9decd1bde444cfe950916bc47 Mon Sep 17 00:00:00 2001 From: alaarihan-temco <65740463+alaarihan-temco@users.noreply.github.com> Date: Sat, 26 Feb 2022 06:14:06 +0200 Subject: [PATCH 0004/1123] Fix onBeforeUnmounted to onBeforeUnmount (#1581) From 22d80c17b89490be755732bf66b0cdc89c2bc4a0 Mon Sep 17 00:00:00 2001 From: Milos Dimitrijevic <46306967+milos018@users.noreply.github.com> Date: Mon, 28 Feb 2022 02:48:49 +0100 Subject: [PATCH 0005/1123] add