Move `Textarea` to components package (https://github.com/woocommerce/woocommerce-blocks/pull/11384)
This commit is contained in:
parent
d71e0274f3
commit
e6272d0aee
|
@ -30,5 +30,4 @@ export * from './sort-select';
|
||||||
export * from './state-input';
|
export * from './state-input';
|
||||||
export * from './summary';
|
export * from './summary';
|
||||||
export * from './tabs';
|
export * from './tabs';
|
||||||
export * from './textarea';
|
|
||||||
export * from './title';
|
export * from './title';
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
import { __ } from '@wordpress/i18n';
|
import { __ } from '@wordpress/i18n';
|
||||||
import { useState } from '@wordpress/element';
|
import { useState } from '@wordpress/element';
|
||||||
import { CheckboxControl } from '@woocommerce/blocks-checkout';
|
import { CheckboxControl } from '@woocommerce/blocks-checkout';
|
||||||
import { Textarea } from '@woocommerce/base-components/textarea';
|
import { Textarea } from '@woocommerce/blocks-components';
|
||||||
|
|
||||||
interface CheckoutOrderNotesProps {
|
interface CheckoutOrderNotesProps {
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
|
|
|
@ -11,3 +11,4 @@ export {
|
||||||
export type { RadioControlOption as RadioControlOptionType } from './radio-control/types';
|
export type { RadioControlOption as RadioControlOptionType } from './radio-control/types';
|
||||||
export { default as RadioControlAccordion } from './radio-control-accordion';
|
export { default as RadioControlAccordion } from './radio-control-accordion';
|
||||||
export { default as Spinner } from './spinner';
|
export { default as Spinner } from './spinner';
|
||||||
|
export { default as Textarea } from './textarea';
|
||||||
|
|
|
@ -34,3 +34,5 @@ export const Textarea = ( {
|
||||||
value={ value }
|
value={ value }
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export default Textarea;
|
Loading…
Reference in New Issue