33
44import {
55 dataGridCellTemplate as cellTemplate ,
6- DataGrid ,
7- DataGridCell ,
8- DataGridRow ,
6+ DataGrid as FoundationDataGrid ,
7+ DataGridCell as FoundationDataGridCell ,
8+ DataGridRow as FoundationDataGridRow ,
99 dataGridTemplate as gridTemplate ,
1010 dataGridRowTemplate as rowTemplate ,
1111} from '@microsoft/fast-foundation' ;
@@ -18,7 +18,7 @@ import {DataGridCellStyles as cellStyles} from './data-grid-cell.styles';
1818 *
1919 * @public
2020 */
21- export class VSCodeDataGrid extends DataGrid {
21+ export class DataGrid extends FoundationDataGrid {
2222 /**
2323 * Component lifecycle method that runs when the component is inserted
2424 * into the DOM.
@@ -45,7 +45,7 @@ export class VSCodeDataGrid extends DataGrid {
4545 *
4646 * @public
4747 */
48- export const vsCodeDataGrid = VSCodeDataGrid . compose ( {
48+ export const vsCodeDataGrid = DataGrid . compose ( {
4949 baseName : 'data-grid' ,
5050 template : gridTemplate ,
5151 styles : gridStyles ,
@@ -56,7 +56,7 @@ export const vsCodeDataGrid = VSCodeDataGrid.compose({
5656 *
5757 * @public
5858 */
59- export class VSCodeDataGridRow extends DataGridRow { }
59+ export class DataGridRow extends FoundationDataGridRow { }
6060
6161/**
6262 * The Visual Studio Code data grid row component registration.
@@ -66,7 +66,7 @@ export class VSCodeDataGridRow extends DataGridRow {}
6666 *
6767 * @public
6868 */
69- export const vsCodeDataGridRow = VSCodeDataGridRow . compose ( {
69+ export const vsCodeDataGridRow = DataGridRow . compose ( {
7070 baseName : 'data-grid-row' ,
7171 template : rowTemplate ,
7272 styles : rowStyles ,
@@ -77,7 +77,7 @@ export const vsCodeDataGridRow = VSCodeDataGridRow.compose({
7777 *
7878 * @public
7979 */
80- export class VSCodeDataGridCell extends DataGridCell { }
80+ export class DataGridCell extends FoundationDataGridCell { }
8181
8282/**
8383 * The Visual Studio Code data grid cell component registration.
@@ -87,7 +87,7 @@ export class VSCodeDataGridCell extends DataGridCell {}
8787 *
8888 * @public
8989 */
90- export const vsCodeDataGridCell = VSCodeDataGridCell . compose ( {
90+ export const vsCodeDataGridCell = DataGridCell . compose ( {
9191 baseName : 'data-grid-cell' ,
9292 template : cellTemplate ,
9393 styles : cellStyles ,
0 commit comments