├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── actions │ └── build-to-release-branch │ │ └── action.yml └── workflows │ ├── js-tests.yml │ ├── php-standards.yml │ ├── release-develop.yml │ └── release.yml ├── .gitignore ├── .nvmrc ├── .vscode └── settings.json ├── .webpack ├── config.dev.js └── config.prod.js ├── README.md ├── babel.config.js ├── composer.json ├── composer.lock ├── docs ├── editorial-comment-filled-in.png ├── editorial-comment.png ├── group-block.png ├── insert-editorial-comment.png ├── revert-to-group.png ├── select-blocks.png ├── sidebar.png └── transform-to-hidden-group.png ├── inc ├── assets.php └── blocks.php ├── license.txt ├── package.json ├── phpcs.xml ├── plugin.php └── src ├── blocks ├── editorial-comment │ ├── EditEditorialComment.js │ ├── block.json │ ├── editorial-comment.scss │ └── index.js └── hidden-group │ ├── block.json │ ├── hidden-group.scss │ └── index.js ├── index.js ├── plugins └── editorial-comment-list-sidebar │ └── index.js └── types.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/actions/build-to-release-branch/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.github/actions/build-to-release-branch/action.yml -------------------------------------------------------------------------------- /.github/workflows/js-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.github/workflows/js-tests.yml -------------------------------------------------------------------------------- /.github/workflows/php-standards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.github/workflows/php-standards.yml -------------------------------------------------------------------------------- /.github/workflows/release-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.github/workflows/release-develop.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.webpack/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.webpack/config.dev.js -------------------------------------------------------------------------------- /.webpack/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/.webpack/config.prod.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require( '@humanmade/webpack-helpers/babel-preset' ); 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/editorial-comment-filled-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/editorial-comment-filled-in.png -------------------------------------------------------------------------------- /docs/editorial-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/editorial-comment.png -------------------------------------------------------------------------------- /docs/group-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/group-block.png -------------------------------------------------------------------------------- /docs/insert-editorial-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/insert-editorial-comment.png -------------------------------------------------------------------------------- /docs/revert-to-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/revert-to-group.png -------------------------------------------------------------------------------- /docs/select-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/select-blocks.png -------------------------------------------------------------------------------- /docs/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/sidebar.png -------------------------------------------------------------------------------- /docs/transform-to-hidden-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/docs/transform-to-hidden-group.png -------------------------------------------------------------------------------- /inc/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/inc/assets.php -------------------------------------------------------------------------------- /inc/blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/inc/blocks.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/phpcs.xml -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/plugin.php -------------------------------------------------------------------------------- /src/blocks/editorial-comment/EditEditorialComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/editorial-comment/EditEditorialComment.js -------------------------------------------------------------------------------- /src/blocks/editorial-comment/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/editorial-comment/block.json -------------------------------------------------------------------------------- /src/blocks/editorial-comment/editorial-comment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/editorial-comment/editorial-comment.scss -------------------------------------------------------------------------------- /src/blocks/editorial-comment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/editorial-comment/index.js -------------------------------------------------------------------------------- /src/blocks/hidden-group/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/hidden-group/block.json -------------------------------------------------------------------------------- /src/blocks/hidden-group/hidden-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/hidden-group/hidden-group.scss -------------------------------------------------------------------------------- /src/blocks/hidden-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/blocks/hidden-group/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/index.js -------------------------------------------------------------------------------- /src/plugins/editorial-comment-list-sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/plugins/editorial-comment-list-sidebar/index.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/simple-editorial-comments/HEAD/src/types.js --------------------------------------------------------------------------------