From 2015617c89b63e7ba8faa3ad340506c0b94ace6e Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 24 Jan 2024 11:23:53 +0000 Subject: [PATCH 1/3] Update error.vue --- error.vue | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/error.vue b/error.vue index 410058f6b..77ff64319 100644 --- a/error.vue +++ b/error.vue @@ -14,3 +14,61 @@ + From 321a3e87e121004cfaf2c8f6fb88765cb5143e87 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 24 Jan 2024 11:26:29 +0000 Subject: [PATCH 2/3] Refactor #5141 --- components/lib/dropdown/BaseDropdown.vue | 4 ++-- components/lib/dropdown/Dropdown.d.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/lib/dropdown/BaseDropdown.vue b/components/lib/dropdown/BaseDropdown.vue index 7099cd648..3d3681f39 100644 --- a/components/lib/dropdown/BaseDropdown.vue +++ b/components/lib/dropdown/BaseDropdown.vue @@ -132,11 +132,11 @@ export default { }, highlightOnSelect: { type: Boolean, - default: false + default: true }, showTick: { type: Boolean, - default: true + default: false }, filterMessage: { type: String, diff --git a/components/lib/dropdown/Dropdown.d.ts b/components/lib/dropdown/Dropdown.d.ts index f99debf03..19140bb16 100755 --- a/components/lib/dropdown/Dropdown.d.ts +++ b/components/lib/dropdown/Dropdown.d.ts @@ -436,12 +436,12 @@ export interface DropdownProps { focusOnHover?: boolean | undefined; /** * Whether the selected option will be add highlight class. - * @defaultValue false + * @defaultValue true */ highlightOnSelect?: boolean | undefined; /** * Whether the selected option will be shown with a tick. - * @defaultValue true + * @defaultValue false */ showTick?: boolean | undefined; /** From 5f463c1b79debaeaacc83d59a9b2e9ca03cd171f Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 24 Jan 2024 11:27:45 +0000 Subject: [PATCH 3/3] Update API doc --- doc/common/apidoc/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index e7139bfb3..eae033521 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -24267,7 +24267,7 @@ "optional": true, "readonly": false, "type": "boolean", - "default": "false", + "default": "true", "description": "Whether the selected option will be add highlight class." }, { @@ -24275,7 +24275,7 @@ "optional": true, "readonly": false, "type": "boolean", - "default": "true", + "default": "false", "description": "Whether the selected option will be shown with a tick." }, {