import {WebFramework} from './rowData';
import {
Adaptable,
AdaptableOptions,
AdaptablePercentageEditor,
} from '@adaptabletools/adaptable';
export const adaptableOptions: AdaptableOptions<WebFramework> = {
primaryKey: 'id',
adaptableId: 'Adaptable Demo',
initialState: {
Layout: {
CurrentLayout: 'Standard Layout',
Layouts: [
{
Name: 'Standard Layout',
TableColumns: [
'name',
'language',
'github_stars',
'license',
'created_at',
'has_wiki',
'updated_at',
'pushed_at',
'github_watchers',
'open_issues_count',
'closed_issues_count',
'open_pr_count',
'closed_pr_count',
'description',
'has_projects',
'has_pages',
'week_issue_change',
],
},
],
},
},
};