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. */ 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. */ diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index e54501b57..bdeae9275 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -188,7 +188,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); } @@ -199,7 +199,7 @@ export default { }, computed: { inputMode() { - return this.integerOnly ? 'number' : 'text'; + return this.integerOnly ? 'numeric' : 'text'; }, inputType() { return this.mask ? 'password' : 'text'; 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 @@