Skip to content

Commit

Permalink
[website] Update pricing table (mui#37290)
Browse files Browse the repository at this point in the history
  • Loading branch information
cherniavskii committed May 17, 2023
1 parent 0728bdb commit 725e6d5
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions docs/src/components/pricing/PricingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,15 @@ const rowHeaders: Record<string, React.ReactNode> = {
'data-grid/file-print': (
<ColumnHead label="Print" nested href="/x/react-data-grid/export/#print-export" />
),
'data-grid/file-clipboard': (
<ColumnHead label="Clipboard" nested href="/x/react-data-grid/export/#clipboard" />
'data-grid/file-clipboard-copy': (
<ColumnHead label="Clipboard copy" nested href="/x/react-data-grid/clipboard/#clipboard-copy" />
),
'data-grid/file-clipboard-paste': (
<ColumnHead
label="Clipboard paste"
nested
href="/x/react-data-grid/clipboard/#clipboard-paste"
/>
),
'data-grid/file-excel': (
<ColumnHead label="Excel export" nested href="/x/react-data-grid/export/#excel-export" />
Expand Down Expand Up @@ -644,7 +651,8 @@ const communityData: Record<string, React.ReactNode> = {
'data-grid/edit-cell': yes,
'data-grid/file-csv': yes,
'data-grid/file-print': yes,
'data-grid/file-clipboard': no,
'data-grid/file-clipboard-copy': yes,
'data-grid/file-clipboard-paste': no,
'data-grid/file-excel': no,
'data-grid/customizable-components': yes,
'data-grid/virtualize-column': yes,
Expand Down Expand Up @@ -703,7 +711,8 @@ const proData: Record<string, React.ReactNode> = {
'data-grid/edit-cell': yes,
'data-grid/file-csv': yes,
'data-grid/file-print': yes,
'data-grid/file-clipboard': pending,
'data-grid/file-clipboard-copy': yes,
'data-grid/file-clipboard-paste': no,
'data-grid/file-excel': no,
'data-grid/customizable-components': yes,
'data-grid/virtualize-column': yes,
Expand Down Expand Up @@ -750,7 +759,7 @@ const premiumData: Record<string, React.ReactNode> = {
'data-grid/row-pinning': yes,
'data-grid/row-selection': yes,
'data-grid/row-multiselection': yes,
'data-grid/row-rangeselection': pending,
'data-grid/row-rangeselection': yes,
'data-grid/filter-quick': yes,
'data-grid/filter-column': yes,
'data-grid/filter-multicolumn': yes,
Expand All @@ -762,7 +771,8 @@ const premiumData: Record<string, React.ReactNode> = {
'data-grid/edit-cell': yes,
'data-grid/file-csv': yes,
'data-grid/file-print': yes,
'data-grid/file-clipboard': pending,
'data-grid/file-clipboard-copy': yes,
'data-grid/file-clipboard-paste': yes,
'data-grid/file-excel': yes,
'data-grid/customizable-components': yes,
'data-grid/virtualize-column': yes,
Expand Down Expand Up @@ -1182,7 +1192,8 @@ export default function PricingTable({
{nestedDivider}
{renderRow('data-grid/file-excel')}
{nestedDivider}
{renderRow('data-grid/file-clipboard')}
{renderRow('data-grid/file-clipboard-copy')}
{renderRow('data-grid/file-clipboard-paste')}
{nestedDivider}
<RowCategory>Rendering features</RowCategory>
{renderRow('data-grid/customizable-components')}
Expand Down

0 comments on commit 725e6d5

Please sign in to comment.