Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Remove Adobe XD chips, links, and mentions #44909

Merged
merged 7 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Design Kits

Material UI component designs are available for Figma, Sketch, and Adobe XD, providing accurate representations using shared terminology for all states, variants, and permutations of each component.
Material UI component designs are available for Figma and Sketch, providing accurate representations using shared terminology for all states, variants, and permutations of each component.

The design kits are composed of over 1,500 unique elements built to speed up the development process and ease communication for teams of designers and developers using the library.

Expand Down
5 changes: 0 additions & 5 deletions docs/src/components/productDesignKit/DesignKitDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,6 @@ export function MaterialDesignKitInfo() {
alt="Sketch logo."
loading="lazy"
/>
<img
src="/static/branding/design-kits/adobexd-logo.svg"
samuelsycamore marked this conversation as resolved.
Show resolved Hide resolved
alt="Adobe XD logo."
loading="lazy"
/>
</Box>
</Box>
<Typography variant="body2" sx={{ color: 'text.secondary', mb: 2 }}>
Expand Down
6 changes: 3 additions & 3 deletions docs/src/components/productDesignKit/DesignKitFAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ const faqData = [
),
},
{
summary: 'Figma or Sketch or Adobe XD?',
summary: 'Figma or Sketch?',
detail: (
<React.Fragment>
We aim to keep feature parity between the Figma, Sketch, and Adobe XD kits where possible.
We have a 50% off coupon for past customers who want to switch between them.
We aim to keep feature parity between the Figma and Sketch kits where possible. We have a
50% off coupon for past customers who want to switch between them.
</React.Fragment>
),
},
Expand Down
15 changes: 1 addition & 14 deletions docs/src/modules/components/MaterialUIDesignResources.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,13 @@ const content = [
/>
),
},
{
title: 'Material UI for Adobe XD',
link: 'https://mui.com/store/items/adobe-xd-react/?utm_source=docs&utm_medium=referral&utm_campaign=installation-adobe-xd',
svg: (
<img
src={`/static/branding/design-kits/adobexd-logo.svg`}
alt="Adobe XD logo"
loading="lazy"
width="36"
height="36"
/>
),
},
];

export default function MaterialUIDesignResources() {
return (
<Grid container spacing={2}>
{content.map(({ svg, title, link }) => (
<Grid key={title} size={{ xs: 12, sm: 4 }}>
<Grid key={title} size={{ xs: 12, sm: 6 }}>
<InfoCard classNameTitle="algolia-lvl3" link={link} title={title} svg={svg} />
</Grid>
))}
Expand Down
54 changes: 17 additions & 37 deletions packages/mui-docs/src/ComponentLinkHeader/ComponentLinkHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { styled } from '@mui/material/styles';
import { MarkdownHeaders } from '@mui/internal-markdown';
import SketchIcon from '../svgIcons/SketchIcon';
import FigmaIcon from '../svgIcons/FigmaIcon';
import AdobeXDIcon from '../svgIcons/AdobeXDIcon';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we delete this file now?

import BundleSizeIcon from '../svgIcons/BundleSizeIcon';
import W3CIcon from '../svgIcons/W3CIcon';
import MaterialDesignIcon from '../svgIcons/MaterialDesignIcon';
Expand Down Expand Up @@ -176,42 +175,23 @@ export function ComponentLinkHeader(props: ComponentLinkHeaderProps) {
/>
</li>
{packageName === '@mui/joy' ? null : (
<React.Fragment>
<li>
<Chip
clickable
role={undefined}
component="a"
size="small"
variant="outlined"
rel="nofollow"
href="https://mui.com/store/items/adobe-xd-react/?utm_source=docs&utm_medium=referral&utm_campaign=component-link-header"
icon={<AdobeXDIcon />}
data-ga-event-category="ComponentLinkHeader"
data-ga-event-action="click"
data-ga-event-label="Adobe XD"
data-ga-event-split="0.1"
label="Adobe"
/>
</li>
<li>
<Chip
clickable
role={undefined}
component="a"
size="small"
variant="outlined"
rel="nofollow"
href="https://mui.com/store/items/sketch-react/?utm_source=docs&utm_medium=referral&utm_campaign=component-link-header"
icon={<SketchIcon />}
data-ga-event-category="ComponentLinkHeader"
data-ga-event-action="click"
data-ga-event-label="Sketch"
data-ga-event-split="0.1"
label="Sketch"
/>
</li>
</React.Fragment>
<li>
<Chip
clickable
role={undefined}
component="a"
size="small"
variant="outlined"
rel="nofollow"
href="https://mui.com/store/items/sketch-react/?utm_source=docs&utm_medium=referral&utm_campaign=component-link-header"
icon={<SketchIcon />}
data-ga-event-category="ComponentLinkHeader"
data-ga-event-action="click"
data-ga-event-label="Sketch"
data-ga-event-split="0.1"
label="Sketch"
/>
</li>
)}
</React.Fragment>
)}
Expand Down
Loading