Skip to content

Commit d79c69a

Browse files
committed
chore(publish): rename package to @glebcha/material-react-table
- packages/material-react-table/package.json: name → @glebcha/material-react-table - apps/material-react-table-docs/package.json: workspace ref updated - All import statements in docs app (146 files) updated via sed - pnpm-lock.yaml regenerated
1 parent e1cf9b7 commit d79c69a

143 files changed

Lines changed: 160 additions & 160 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/material-react-table-docs/components/mdx/ComparisonTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
MRT_TableContainer,
44
type MRT_ColumnDef,
55
useMaterialReactTable,
6-
} from 'material-react-table';
6+
} from '@glebcha/material-react-table';
77

88
const columns: MRT_ColumnDef<(typeof data)[0]>[] = [
99
{

apps/material-react-table-docs/components/mdx/CompatibilityTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
MRT_ColumnDef,
44
MRT_TableContainer,
55
useMaterialReactTable,
6-
} from 'material-react-table';
6+
} from '@glebcha/material-react-table';
77

88
const columns: MRT_ColumnDef<any>[] = [
99
{

apps/material-react-table-docs/components/mdx/FeatureTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MaterialReactTable, type MRT_ColumnDef } from 'material-react-table';
1+
import { MaterialReactTable, type MRT_ColumnDef } from '@glebcha/material-react-table';
22

33
const columns: MRT_ColumnDef<(typeof data)[0]>[] = [
44
{

apps/material-react-table-docs/components/prop-tables/CellInstanceAPIsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
MaterialReactTable,
55
type MRT_ColumnDef,
66
type MRT_Cell,
7-
} from 'material-react-table';
7+
} from '@glebcha/material-react-table';
88
import { Link as MuiLink, Typography, useMediaQuery } from '@mui/material';
99
import { SampleCodeSnippet } from '../mdx/SampleCodeSnippet';
1010
import { type CellInstanceAPI, cellInstanceAPIs } from './cellInstanceAPIs';

apps/material-react-table-docs/components/prop-tables/ColumnInstanceAPIsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
MaterialReactTable,
55
type MRT_ColumnDef,
66
type MRT_Column,
7-
} from 'material-react-table';
7+
} from '@glebcha/material-react-table';
88
import { Link as MuiLink, Typography, useMediaQuery } from '@mui/material';
99
import { SampleCodeSnippet } from '../mdx/SampleCodeSnippet';
1010
import {

apps/material-react-table-docs/components/prop-tables/ColumnOptionsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useEffect, useMemo, useState } from 'react';
22
import Link from 'next/link';
3-
import { MaterialReactTable, type MRT_ColumnDef } from 'material-react-table';
3+
import { MaterialReactTable, type MRT_ColumnDef } from '@glebcha/material-react-table';
44
import {
55
Link as MuiLink,
66
Typography,

apps/material-react-table-docs/components/prop-tables/RowInstanceAPIsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
MaterialReactTable,
55
type MRT_ColumnDef,
66
type MRT_Row,
7-
} from 'material-react-table';
7+
} from '@glebcha/material-react-table';
88
import { Link as MuiLink, Typography, useMediaQuery } from '@mui/material';
99
import { SampleCodeSnippet } from '../mdx/SampleCodeSnippet';
1010
import { type RowInstanceAPI, rowInstanceAPIs } from './rowInstanceAPIs';

apps/material-react-table-docs/components/prop-tables/StateOptionsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
MaterialReactTable,
55
type MRT_ColumnDef,
66
type MRT_TableState,
7-
} from 'material-react-table';
7+
} from '@glebcha/material-react-table';
88
import { Link as MuiLink, Typography, useMediaQuery } from '@mui/material';
99
import { SampleCodeSnippet } from '../mdx/SampleCodeSnippet';
1010
import { type StateOption, stateOptions } from './stateOptions';

apps/material-react-table-docs/components/prop-tables/TableInstanceAPIsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
MaterialReactTable,
55
type MRT_ColumnDef,
66
type MRT_TableInstance,
7-
} from 'material-react-table';
7+
} from '@glebcha/material-react-table';
88
import { Link as MuiLink, Typography, useMediaQuery } from '@mui/material';
99
import { SampleCodeSnippet } from '../mdx/SampleCodeSnippet';
1010
import { type TableInstanceAPI, tableInstanceAPIs } from './tableInstanceAPIs';

apps/material-react-table-docs/components/prop-tables/TableOptionsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
MaterialReactTable,
55
type MRT_TableOptions,
66
type MRT_ColumnDef,
7-
} from 'material-react-table';
7+
} from '@glebcha/material-react-table';
88
import {
99
Link as MuiLink,
1010
Typography,

0 commit comments

Comments
 (0)