c23d02bcc0
* Add action button to TaskItem. * Pass through click event. * Add separate action and label to onClick. * Add initial copy for task expansion. * Expand one task at a time. * Add descriptive text to the payments step. * Set the first incomplete task current by default. * Revert expansion behavior. * Fix margins. * Curate purchase products task content based on selections. * Fix appearance task copy. * Fix payment task copy. * Add conditional tax step title. * Indicated if task is expanded to click handlers. * Automatically enable WC Tax from the expanded CTA. * Restore additional text property. * Fix task title xpath selector in E2E test. * Fix automatic tax setup query param logic. * Add changelog entries. |
||
---|---|---|
.. | ||
src | ||
.npmrc | ||
CHANGELOG.md | ||
README.md | ||
package.json |
README.md
Experimental
This is a private package not meant for use by third parties.
A collection of component imports and exports that are aliases for components transitioning from experimental to non-experimental. This package prevents the component from being undefined when the @wordpress/components
library version is unclear.
It also contains several in-development components that are slated for inclusion in later releases of @woocommerce/components
.
Installation
Install the module
npm install @woocommerce/experimental --save
Usage
Simply import the component name with the __experimental
prefix. If found, the non-experimental version will be imported and if not, this will fallback to the experimental version.
import { Text } from '@woocommerce/experimental';
render() {
return (
<Text variant="title.small">
…
</Text>
);
}