a70d331cdf
* Wrap notes with Card component -- Added header, badge, and cllipsis menu * CSS changes to adjust padding and margin * Change buttons to link style * Render image only when the layout is thumbnail * Add hover state * Update text and classname * Dismiss note immediately without prompting a confirmation (https://github.com/woocommerce/woocommerce-admin/pull/7868) * use woocommerce-admin-dismiss-notification class to target the dissmiss btn * Add changelog * Specify CSS styles so tha they dont get overridden by other plugins * Update changelog * Remove message gap * Remove unwanted changes from package-lock.json * Update changelog |
||
---|---|---|
.. | ||
src | ||
typings | ||
.npmrc | ||
CHANGELOG.md | ||
README.md | ||
jest.config.json | ||
package.json | ||
tsconfig-cjs.json | ||
tsconfig.json | ||
webpack.config.js |
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>
…
</Text>
);
}