Closed AndresCarvalloABM closed 1 year ago
Experiencing the same Issue. Commenting to help visibility.
same issue here.
So I was able to get my application running locally by adding this to file-exporter.d.ts
import { Options } from '../../options';
and then editing the class declaration to say:
export declare abstract class FileExporter<T extends Options> implements Exporter<T> {
But this is changing the node_modules and not sure how viable that is.
So I was able to get my application running locally by adding this to file-exporter.d.ts
import { Options } from '../../options';
and then editing the class declaration to say:
export declare abstract class FileExporter<T extends Options> implements Exporter<T> {
But this is changing the node_modules and not sure how viable that is.
Can you fork it with the code changes?
In this way it will be possible for everybody to install that version via npm i
EDIT: Seeing old in comments the author saying "pull requests" are kindly welcome
Yes, I should have some time this afternoon to do it.
So I was able to get my application running locally by adding this to file-exporter.d.ts
import { Options } from '../../options';
and then editing the class declaration to say:export declare abstract class FileExporter<T extends Options> implements Exporter<T> {
But this is changing the node_modules and not sure how viable that is.Can you fork it with the code changes? In this way it will be possible for everybody to install that version via
npm i
EDIT: Seeing old in comments the author saying "pull requests" are kindly welcome
seems like someone has already made a pull request here. https://github.com/HalitTalha/ng-material-extensions/pull/158/commits
We run into the same problems using Angular 15. Is there any update/progress on this issue?
We are also facing the same issue... is there any solution?
Hi there, Since this would require a full rebuild of the Angular workspace with newer versions, it's taking time. But I hope I'll be able to handle it soon. If anyone could have done it before (upgraded the workspace and projects into v15) that would be great to have this as a PR.
Hello
Today, I have finished updating the project from Angular v14 to v15, along with Angular Material to v15. Once I try to run the application, I get the following error for
cdk-table-exporter
I managed to compile the project using
"skipLibCheck": true
intotsconfig.json
but once I'm about to export as a CSV file, I run into this error