acf-composer
acf-composer copied to clipboard
Compose ACF Fields, Blocks, Widgets, and Option Pages with ACF Builder on Sage 10.
Is it possible to change the default values within $supports when generating a new block?
 ## Change log ### Enhancements - β¨ Add interactive block creation (Fixes #253) - β¨ Allow customizing the default block supports options (Fixes #251) - β» Simplify the localized...
  
When I generated a new block called Hero and I tried to overwrite the prefix from `acf/` to `custom/` for example. Problem was that it still rendered with `acf/` prefix...
Explicitly setting `align: ""` β such as when a user sets alignment to βnoneβ β does not persist. Itβs stripped during editor load, before saving, causing the block to fall...
I am using ACF Composer v3.4.3 I added a block and I am not able to validate the required fields. Saving the current post, without inserting none of the required...
Don't move `supports['align_text']` to `supports['typography']['textAlign']` and re-add `align-text-*` class to legacy blocks. New blocks now have text alignment in `supports['typography']['textAlign']`.
Hi, how about adding support for the Icon Picker field? I don't know if the following code would be sufficient. ```php # src/FieldsBuilder.php /** * @param string $name * @param...
In the following example, the `foo` group is not rendered: ``` ->addGroup('base') ->addPartial(Links::class) ->modifyField('items', ['min' => 0]) ->getField('items') ->addText('eyebrow') ->endGroup() ->addGroup('foo') ->endGroup(); ```