ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

nativescript-ui-listview and nativescript-ui-sidedrawer references.d.ts files have incorrect reference path #1463

Open lonerzzz opened 3 years ago

lonerzzz commented 3 years ago

Tell us about the problem

Both the nativescript-ui-listview and nativescript-ui-sidedrawer references.d.ts files have incorrect reference paths causing a failure during compilation. The path needs to be corrected to allow compilation.

Which platform(s) does your issue occur on?

Both

Please provide the following version numbers that your issue occurs with:

Please tell us how to recreate the issue in as much detail as possible.

I upgraded an existing project from a 6.x version and encountered issues with the library that I traced down to incorrect paths in the references.d.ts files for the two components.

Is there code involved? If so, please share the minimal amount of code needed to recreate the problem.

The contents of the nativescript-ui-listview/references.d.ts should be as follows:

/// <reference path="../@nativescript/types/index.d.ts" />
/// <reference path="../nativescript-ui-core/ios.d.ts" />
/// <reference path="../nativescript-ui-core/android.d.ts" />
/// <reference path="./android.d.ts" />
/// <reference path="./ios.d.ts" />

The contents of the nativescript-ui-sidedrawer/references.d.ts should be as follows:

/// <reference path="../@nativescript/types/index.d.ts" />
/// <reference path="../nativescript-ui-core/ios.d.ts" />
/// <reference path="../nativescript-ui-core/android.d.ts" />
/// <reference path="./android.d.ts" />
/// <reference path="./ios.d.ts" />