├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── run-test-and-deploy.yml │ └── run-test.yml ├── .gitignore ├── .husky └── pre-commit ├── .markdownlint.json ├── .npmrc ├── .nvmrc ├── .prettierrc.js ├── .stylelintignore ├── .stylelintrc.js ├── .wordpress-org ├── banner-1544x500.png ├── banner-772x250.png ├── blueprints │ └── blueprint.json ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png └── screenshot-2.gif ├── .wp-env.json ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── enable-responsive-image.php ├── package.json ├── phpcs.ruleset.xml ├── playwright.config.ts ├── readme.txt ├── src ├── block-edit-preview.tsx ├── constants.ts ├── editor.scss ├── icon.tsx ├── index.tsx ├── source-editor.tsx ├── source-list.tsx ├── store.ts └── types.ts ├── test └── e2e │ ├── assets │ ├── 1000x750.png │ ├── 400x300.png │ └── 600x450.png │ └── test.spec.ts └── tsconfig.json /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | vendor/ 3 | build/ 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/run-test-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.github/workflows/run-test-and-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/run-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.github/workflows/run-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | lint-staged 2 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/banner-1544x500.png -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/banner-772x250.png -------------------------------------------------------------------------------- /.wordpress-org/blueprints/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/blueprints/blueprint.json -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wordpress-org/screenshot-2.gif -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/.wp-env.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/composer.lock -------------------------------------------------------------------------------- /enable-responsive-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/enable-responsive-image.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/readme.txt -------------------------------------------------------------------------------- /src/block-edit-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/block-edit-preview.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/editor.scss -------------------------------------------------------------------------------- /src/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/icon.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/source-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/source-editor.tsx -------------------------------------------------------------------------------- /src/source-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/source-list.tsx -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/e2e/assets/1000x750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/test/e2e/assets/1000x750.png -------------------------------------------------------------------------------- /test/e2e/assets/400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/test/e2e/assets/400x300.png -------------------------------------------------------------------------------- /test/e2e/assets/600x450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/test/e2e/assets/600x450.png -------------------------------------------------------------------------------- /test/e2e/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/test/e2e/test.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-hamano/enable-responsive-image/HEAD/tsconfig.json --------------------------------------------------------------------------------