File tree Expand file tree Collapse file tree
src/custom/CatalogDesignTable Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { ViewSwitch } from './ViewSwitch';
55
66type TypeView = 'grid' | 'table' ;
77
8- interface CatalogTableVisibilityControlProps {
8+ interface TableVisibilityControlProps {
99 viewType : TypeView ;
1010 setViewType : ( view : TypeView ) => void ;
1111 filteredColumns : CustomColumn [ ] ;
@@ -14,7 +14,7 @@ interface CatalogTableVisibilityControlProps {
1414 viewSwitchDisabled ?: boolean ;
1515}
1616
17- export const CatalogTableVisibilityControl : React . FC < CatalogTableVisibilityControlProps > = ( {
17+ export const TableVisibilityControl : React . FC < TableVisibilityControlProps > = ( {
1818 viewType,
1919 setViewType,
2020 filteredColumns,
Original file line number Diff line number Diff line change 11import CatalogDesignsTable from './CatalogDesignTable' ;
22import { colViews , createDesignColumns } from './columnConfig' ;
3- export { CatalogTableVisibilityControl } from './CatalogTableVisibilityControl ' ;
3+ export { TableVisibilityControl } from './TableVisibilityControl ' ;
44export { ViewSwitch } from './ViewSwitch' ;
55export { CatalogDesignsTable , colViews , createDesignColumns } ;
You can’t perform that action at this time.
0 commit comments