Skip to content

Commit

Permalink
Fixed exports and data provider
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Apr 1, 2023
1 parent 3edae0b commit 769f41d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions sources/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export * from "./table/cell-types/number";
export * from "./table/cell-types/progress";

export * from "./widgets/editor";
export * from "./widgets/property";
export * from "./widgets/form";

export * from "./table/editor";
export * from "./table/editor-inplace";
Expand Down
6 changes: 5 additions & 1 deletion sources/utils/array-data-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ export class ArrayDataProvider implements IDataProvider {
keys.forEach(k => this._data.find(r => this._data.splice(this._data.indexOf(this._data.find(r => r[keyName] == k)),1)))
console.log(this._data);
callback(true);
}
}

get data(): Array<any> {
return this._data;
}

filter: IFilterItem[] = [];
}

0 comments on commit 769f41d

Please sign in to comment.