blob: e23c5f5a5381d5d6785ec5fc3729fcbe70141a1c [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { IconCellRendererComponent } from '@shared/components/cell-renderer/icon-cell-renderer/icon-cell-renderer.component';
export const PERSON_TYPES_COLDEF = [
{
field: 'type',
headerName: 'PersonTypes.Type',
sortable: true,
filter: 'setFilterComponent'
},
{
field: 'description',
headerName: 'PersonTypes.Description',
sortable: true,
filter: 'setFilterComponent'
},
{
field: 'tools',
headerName: ' ',
pinned: 'right',
maxWidth: 110,
minWidth: 110,
lockPosition: true,
sortable: false,
filter: false,
suppressMenu: true,
suppressSizeToFit: true,
cellRendererFramework: IconCellRendererComponent
}
];