From 159106539a28252c8515baa9f2ed921d246df0a6 Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:31:21 +0530 Subject: [PATCH 1/8] fix incorrect inputmode --- components/lib/inputotp/InputOtp.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index 7a390d6df..f2f851bf0 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -188,7 +188,7 @@ export default { }, computed: { inputMode() { - return this.integerOnly ? 'number' : 'text'; + return this.integerOnly ? 'numeric' : 'text'; }, inputType() { return this.mask ? 'password' : 'text'; From 5ae1c7051c73b082c612dfe5af027a7ab772b0cb Mon Sep 17 00:00:00 2001 From: Patrick Spiegel <35311793+Popeye4242@users.noreply.github.com> Date: Thu, 7 Mar 2024 20:02:39 +0100 Subject: [PATCH 2/8] Update Image.d.ts Made typescript interface indicator slot match the docs and implementation --- components/lib/image/Image.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lib/image/Image.d.ts b/components/lib/image/Image.d.ts index d7d86740e..7565272e9 100644 --- a/components/lib/image/Image.d.ts +++ b/components/lib/image/Image.d.ts @@ -186,7 +186,7 @@ export interface ImageProps { imageClass?: any; /** * Custom indicator icon. - * @deprecated since v3.27.0. Use 'indicator' slot. + * @deprecated since v3.27.0. Use 'indicatoricon' slot. */ indicatorIcon?: string; /** @@ -223,7 +223,7 @@ export interface ImageSlots { /** * Custom indicator template. */ - indicator(): VNode[]; + indicatoricon(): VNode[]; /** * Custom refresh template. */ From 20d069cff27ad73b0e164710987e6af64c15c3bd Mon Sep 17 00:00:00 2001 From: Kenyi Watanabe <45218102+kehwar@users.noreply.github.com> Date: Fri, 8 Mar 2024 00:44:46 -0500 Subject: [PATCH 3/8] fix: use KeyboardEvent `key` instead of `code` --- components/lib/terminal/Terminal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/terminal/Terminal.vue b/components/lib/terminal/Terminal.vue index f1ad448f4..d9a3e1855 100755 --- a/components/lib/terminal/Terminal.vue +++ b/components/lib/terminal/Terminal.vue @@ -44,7 +44,7 @@ export default { this.$refs.input.focus(); }, onKeydown(event) { - if ((event.code === 'Enter' || event.code === 'NumpadEnter') && this.commandText) { + if (event.key === 'Enter' && this.commandText) { this.commands.push({ text: this.commandText }); TerminalService.emit('command', this.commandText); this.commandText = ''; From f136b80b8af062c1ca7bdd8c4a00d19468434af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Fri, 8 Mar 2024 13:19:36 +0300 Subject: [PATCH 4/8] fixed #5394 | replace isIntegerOnly with integerOnly --- components/lib/inputotp/InputOtp.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index 7a390d6df..62bcc0e07 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -177,7 +177,7 @@ export default { if (paste.length) { let pastedCode = paste.substring(0, this.length + 1); - if (!this.isIntegerOnly || !isNaN(pastedCode)) { + if (!this.integerOnly || !isNaN(pastedCode)) { this.tokens = pastedCode.split(''); this.updateModel(event); } From 688430587ae0e49b86f4579734e478e4f17ec1be Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 13 Mar 2024 11:56:02 +0300 Subject: [PATCH 5/8] Fixed #5410 - Type 'string' is not assignable to type 'object'. --- components/lib/datatable/DataTable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/datatable/DataTable.d.ts b/components/lib/datatable/DataTable.d.ts index ccf77b718..d1229018a 100755 --- a/components/lib/datatable/DataTable.d.ts +++ b/components/lib/datatable/DataTable.d.ts @@ -1117,7 +1117,7 @@ export interface DataTableProps { /** * Inline style of the table element. */ - tableStyle?: object | undefined; + tableStyle?: string | object | undefined; /** * Style class of the table element. */ From 8f0b32b7c73716215a3342cab697fb306c951473 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 13 Mar 2024 08:57:17 +0000 Subject: [PATCH 6/8] Update API doc --- doc/common/apidoc/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 2bff82f9c..e119422d8 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -20407,7 +20407,7 @@ "name": "tableStyle", "optional": true, "readonly": false, - "type": "object", + "type": "string | object", "default": "", "description": "Inline style of the table element." }, From 139250ece2d5d5cbb91e99130afd2a7c7eeea7ad Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 13 Mar 2024 09:50:41 +0000 Subject: [PATCH 7/8] 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 e119422d8..585b028df 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -29376,7 +29376,7 @@ "type": "string", "default": "", "description": "Custom indicator icon.", - "deprecated": "since v3.27.0. Use 'indicator' slot." + "deprecated": "since v3.27.0. Use 'indicatoricon' slot." }, { "name": "zoomInDisabled", @@ -29427,7 +29427,7 @@ "props": [], "methods": [ { - "name": "indicator", + "name": "indicatoricon", "parameters": [], "returnType": "VNode[]", "description": "Custom indicator template." From 8696e672bb81954b6ce41f6728a635661c579bcb Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 13 Mar 2024 14:18:31 +0300 Subject: [PATCH 8/8] Fixed #5411 - Multiselect: Wrong position of the panel with appendTo="self" --- components/lib/multiselect/MultiSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/multiselect/MultiSelect.vue b/components/lib/multiselect/MultiSelect.vue index b0fde821e..3037866cb 100755 --- a/components/lib/multiselect/MultiSelect.vue +++ b/components/lib/multiselect/MultiSelect.vue @@ -1,5 +1,5 @@