woocommerce/plugins/woocommerce-admin/packages/experimental
Fernando 9ecea4a638 Bump experimental version (https://github.com/woocommerce/woocommerce-admin/pull/7928)
Co-authored-by: Fernando Marichal <contacto@fernandomarichal.com>
2021-11-11 14:25:02 -03:00
..
src Present Inbox notes in a panel with header (https://github.com/woocommerce/woocommerce-admin/pull/7864) 2021-11-04 20:51:30 -07:00
typings Allow packages to be built in isolation. (https://github.com/woocommerce/woocommerce-admin/pull/7286) 2021-07-14 16:38:57 -04:00
.npmrc Future proof experimental components (https://github.com/woocommerce/woocommerce-admin/pull/5961) 2021-01-07 18:57:09 -05:00
CHANGELOG.md Bump experimental version (https://github.com/woocommerce/woocommerce-admin/pull/7928) 2021-11-11 14:25:02 -03:00
README.md WordPress 5.8 compatibility UI fixes (https://github.com/woocommerce/woocommerce-admin/pull/7255) 2021-06-28 09:14:59 +08:00
jest.config.json Allow packages to be built in isolation. (https://github.com/woocommerce/woocommerce-admin/pull/7286) 2021-07-14 16:38:57 -04:00
package.json Bump experimental version (https://github.com/woocommerce/woocommerce-admin/pull/7928) 2021-11-11 14:25:02 -03:00
tsconfig-cjs.json Allow packages to be built in isolation. (https://github.com/woocommerce/woocommerce-admin/pull/7286) 2021-07-14 16:38:57 -04:00
tsconfig.json Bump experimental version to 2.0.3 (https://github.com/woocommerce/woocommerce-admin/pull/7656) 2021-09-13 15:02:57 -03:00
webpack.config.js Refactor package style builds (https://github.com/woocommerce/woocommerce-admin/pull/7531) 2021-08-19 10:15:59 -04:00

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>
	);
}