1dee94362f
* Get default attributes on front end * Remove console log * Show notice about 0 registered fields in editor * Do not show block in editor if no fields are registered * Wrapper block * Styling/spacing * Update webpack config * Register heading pattern * Wrapper block type definition * get_fields_for_location return fields in array format * Use wrapper in default content * Separate fields from the hook block * Hide when no custom fields exist * Address and contact fields * Shared form fields in settings * remove info block from wrapper * Revert render_content to original * rename block * Add changefile(s) from automation for the following project(s): woocommerce-blocks, woocommerce * Update styling * Create shared get_order_additional_fields_with_values to format values * Update block names and descriptions * Show address placeholders * Add changefile(s) from automation for the following project(s): woocommerce-blocks, woocommerce * Unused import --------- Co-authored-by: Thomas Roberts <thomas.roberts@automattic.com> Co-authored-by: github-actions <github-actions@github.com> |
||
---|---|---|
.. | ||
components | ||
context | ||
hocs | ||
hooks | ||
utils | ||
README.MD |
README.MD
Base Components/Context/Hooks
Base components are designed to be used on the frontend of a store. Due to this, we need to avoid using heavy WordPress externals as dependencies (wp-components, wp-block-editor, etc). To get around this, import from a local package instead.
e.g. Instead of importing from @wordpress/components
, use:
import { Component } from 'wordpress-components';
Check the built *.assets.php
files to ensure extra dependencies aren't being added to the build.