Completed
Last Updated: 25 Jan 2023 15:36 by ADMIN
Release R2 2023 - Increment 1 (01.03.2023)
n/a
Created on: 25 Jan 2023 15:29
Category: Kendo UI® for Vue
Type: Bug Report
0
Incorrect exports in the Signature component

Describe the bug
There is an incorrect export inside the @progress/kendo-vue-inputs package on line 39 in the @progress/kendo-vue-inputs/dist/esm/main.js file

image
This import fails because this file does not exist. When we change the above line to:
export * from './signature/interfaces/index.js'; everything works as expected.

A similar issue is found in the following file: @progress/kendo-vue-inputs/dist/esm/signature/Signature.js on line 145
image
The above should be changed to:
import { hasParent } from './utils/index.js';

Expected behavior
The described above exports should point to existing files

0 comments