blocks-v3
2 weeks ago
_acf-blocks-v3.js
2 months ago
_acf-blocks.js
2 months ago
_acf-field-flexible-content.js
2 weeks ago
_acf-field-gallery.js
1 month ago
_acf-field-repeater.js
2 months ago
_acf-jsx-names.js
1 year ago
_acf-setting-clone.js
1 year ago
_acf-setting-flexible-content.js
10 months ago
_acf-setting-repeater.js
1 year ago
_acf-ui-options-page.js
7 months ago
acf-datastore.js
1 month ago
acf-field-bindings.js
1 month ago
acf-pro-blocks.js
7 months ago
acf-pro-field-group.js
1 year ago
acf-pro-input.js
1 year ago
acf-pro-ui-options-page.js
1 year ago
_acf-blocks-v3.js
14 lines
| 1 | /** |
| 2 | * ACF Blocks Version 3 - Entry Point |
| 3 | * Imports all modules and initializes the block system |
| 4 | */ |
| 5 | |
| 6 | // Import utilities. |
| 7 | import './blocks-v3/utils/post-locking'; |
| 8 | |
| 9 | // Import JSX parser and expose on acf global. |
| 10 | import './blocks-v3/components/jsx-parser'; |
| 11 | |
| 12 | // Import block registration (initializes automatically via acf.addAction). |
| 13 | import './blocks-v3/register-block-type-v3'; |
| 14 |