Agenda Editor
This plugin tweaks the editor to support Bootstrap grid and adds a "Grid Block".
Source files
Source files for blocks and editor scss can be found at
src
folder in our public
Gitlab repository.
WordPress hooks and built-in functionality are called in
src/init.php
. Initialization of block-related JavaScript/TypeScript is initialized in
src/blocks.tsx
. SCSS-source for front-end and editor are initialized at
src/style.scss
and
src/editor.scss
respectively.
To compile a version of your own, you need
nodejs
,
npm
installed on your operating system.
yarn
is also recommended. To start the compilation, run the following in a terminal:
```
yarn
yarn start
```
or with npm:
```
npm
npm start
```
Brought to you by
Agenda Helsinki.
0.4.2
- Load jQuery externally as per WordPress specification
0.4.1
- Added bugfixes regarding Slick slider and block categories made for 0.4
0.4.0
- Added Tailwind Grid Block to support Tailwind CSS framework
- Added support for WP 5.7
- Editor always runs previously known "plain mode". It supports recent WP versions very well.
0.3.0
- Editor runs lighter plain mode by default. Improvements to editor component and performance.
0.2.1
- Added settings page, making extra editor css optional
0.1.8
0.1.7.1
0.1.7
- Disable too new wp hook (5.5)
0.1.6
- Reduce editor hooks, improve compability with sites (scss)
0.1.5
0.1.4
- Fixed CPU Spiking of Grid Block preview
0.1.3
- Grid blocks now automatically resolve validation errors (same as "Attempt Block Recovery") to avoid end-users having to deal with invalid Grid blocks caused by minor className changes.
- Asset size reduced.
0.1.2
Fixed selected block border preventing text selection in editor
0.1.1
Fixed function prefixes
0.1
Initial Release