* docs: migrate ui docs to docs universe * created yarn workspace * added eslint and tsconfig configurations * fix eslint configurations * fixed eslint configurations * shared tailwind configurations * added shared ui package * added more shared components * migrating more components * made details components shared * move InlineCode component * moved InputText * moved Loading component * Moved Modal component * moved Select components * Moved Tooltip component * moved Search components * moved ColorMode provider * Moved Notification components and providers * used icons package * use UI colors in api-reference * moved Navbar component * used Navbar and Search in UI docs * added Feedback to UI docs * general enhancements * fix color mode * added copy colors file from ui-preset * added features and enhancements to UI docs * move Sidebar component and provider * general fixes and preparations for deployment * update docusaurus version * adjusted versions * fix output directory * remove rootDirectory property * fix yarn.lock * moved code component * added vale for all docs MD and MDX * fix tests * fix vale error * fix deployment errors * change ignore commands * add output directory * fix docs test * general fixes * content fixes * fix announcement script * added changeset * fix vale checks * added nofilter option * fix vale error
116 lines
2.6 KiB
Plaintext
116 lines
2.6 KiB
Plaintext
---
|
|
description: 'Check out available official plugins in Medusa.'
|
|
---
|
|
|
|
import DocCardList from '@theme/DocCardList';
|
|
import Icons from '@theme/Icon';
|
|
|
|
# Plugins
|
|
|
|
This section includes documentation for official Medusa plugins.
|
|
|
|
You can learn more about plugins and how they work in the [Plugins Overview documentation](../development/plugins/overview.mdx).
|
|
|
|
:::tip
|
|
|
|
Interested in creating a plugin? Learn more in the [Create Plugin documentation](../development/plugins/create).
|
|
|
|
:::
|
|
|
|
<!-- vale docs.Acronyms = NO -->
|
|
|
|
<DocCardList colSize={6} items={[
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/analytics',
|
|
label: 'Analytics',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Analytics plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/cms',
|
|
label: 'CMS',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official CMS plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/notifications',
|
|
label: 'Notifications',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Notifications plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/payment',
|
|
label: 'Payment',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Payment plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/fulfillment',
|
|
label: 'Fulfillment',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Fulfillment plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/search',
|
|
label: 'Search',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Search plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/file-service',
|
|
label: 'File Service',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official File Service plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/erp',
|
|
label: 'ERP',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official ERP plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/source',
|
|
label: 'Source',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Source plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/other',
|
|
label: 'Other Plugins',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out other official plugins.'
|
|
}
|
|
},
|
|
]} />
|
|
|
|
<!-- vale docs.Acronyms = YES -->
|