74f8d5f17a
* Add GitHub action and pre-push hook for syncpack for react and react-dom * Fix typo in pre-push script * Don't execute suggested command to fix mismatches automatically. * Update react and react-dom to 17.0.2 * Move changelog check to last, so that pre-push still fails if check isn't successful * Add changelog files * Correct issue with syncpack.yml referencing an internal action * Add command to top-level package.json for fixing mismatches * Update syncpack action to only run when package.json files are affected * Update workflow to just run syncpack list-mismatches * Add version pinning to syncpackrc |
||
---|---|---|
.. | ||
changelog | ||
src | ||
typings | ||
.eslintrc.js | ||
.gitignore | ||
.npmrc | ||
CHANGELOG.md | ||
PREVIOUS_CHANGELOG.md | ||
README.md | ||
composer.json | ||
composer.lock | ||
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
pnpm 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>
);
}