dfc428e176 | ||
---|---|---|
.. | ||
README.md | ||
advanced-filters.md | ||
animation-slider.md | ||
autocomplete.md | ||
calendar.md | ||
card.md | ||
chart.md | ||
compare-filter.md | ||
count.md | ||
date-range-filter-picker.md | ||
date.md | ||
dropdown-button.md | ||
ellipsis-menu.md | ||
empty-content.md | ||
filter-picker.md | ||
filters.md | ||
flag.md | ||
form.md | ||
gravatar.md | ||
image-asset.md | ||
link.md | ||
list.md | ||
order-status.md | ||
pagination.md | ||
product-image.md | ||
rating.md | ||
search-list-control.md | ||
search.md | ||
section-header.md | ||
section.md | ||
segmented-selection.md | ||
simple-select-control.md | ||
spinner.md | ||
split-button.md | ||
stepper.md | ||
summary.md | ||
table.md | ||
tag.md | ||
text-control-with-affixes.md | ||
view-more-list.md | ||
web-preview.md |
README.md
Package Components
This folder contains the WooCommerce-created components. These are exported onto a global, wc.components
, for general use.
How to use:
For any files not imported into components/index.js
(analytics/*
, layout/*
, dashboard/*
, etc), we can use import { Card, etc … } from @woocommerce/components
.
For any component/*
files, we should import from component-specific paths, not from component/index.js
, to prevent circular dependencies. See components/card/index.js
for an example.
import { Card, Link } from '@woocommerce/components';
render: function() {
return (
<Card title="Card demo">
Card content with an <Link href="/">example link.</Link>
</Card>
);
}
For external development
External developers will need to enqueue the components library, wc-components
, and then can access them from the global.
const { Card, Link } = wc.components;
render: function() {
return (
<Card title="Card demo">
Card content with an <Link href="/">example link.</Link>
</Card>
);
}