gitextract_54f2y3op/ ├── .eslintignore ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config/ │ ├── block-vars.js │ ├── env.js │ ├── gutenberg/ │ │ ├── README.md │ │ ├── assets-queue.js │ │ ├── index.js │ │ ├── scripts.json │ │ ├── styles.json │ │ ├── update.sh │ │ └── vendor.json │ ├── jest/ │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── paths.js │ ├── webpack.config.dev.js │ ├── webpack.config.prod.js │ └── webpackDevServer.config.js ├── g-scripts.txt ├── g-styles.txt ├── package.json ├── public/ │ ├── index.html │ ├── manifest.json │ └── vendor/ │ ├── g-data.js │ ├── gutenberg/ │ │ ├── styles/ │ │ │ ├── wp-block-directory/ │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ ├── wp-block-editor/ │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ ├── wp-block-library/ │ │ │ │ ├── editor-rtl.css │ │ │ │ ├── editor.css │ │ │ │ ├── style-rtl.css │ │ │ │ ├── style.css │ │ │ │ ├── theme-rtl.css │ │ │ │ └── theme.css │ │ │ ├── wp-components/ │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ ├── wp-edit-post/ │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ ├── wp-editor/ │ │ │ │ ├── editor-styles-rtl.css │ │ │ │ ├── editor-styles.css │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ ├── wp-format-library/ │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ ├── wp-list-reusable-blocks/ │ │ │ │ ├── style-rtl.css │ │ │ │ └── style.css │ │ │ └── wp-nux/ │ │ │ ├── style-rtl.css │ │ │ └── style.css │ │ ├── vendor/ │ │ │ ├── lodash.js │ │ │ ├── moment.js │ │ │ ├── react-dom.js │ │ │ ├── react.js │ │ │ ├── wp-polyfill-dom-rect.js │ │ │ ├── wp-polyfill-element-closest.js │ │ │ ├── wp-polyfill-fetch.js │ │ │ ├── wp-polyfill-formdata.js │ │ │ ├── wp-polyfill-node-contains.js │ │ │ ├── wp-polyfill-url.js │ │ │ └── wp-polyfill.js │ │ ├── wp-a11y.js │ │ ├── wp-annotations.js │ │ ├── wp-api-fetch.js │ │ ├── wp-autop.js │ │ ├── wp-blob.js │ │ ├── wp-block-directory.js │ │ ├── wp-block-editor.js │ │ ├── wp-block-library.js │ │ ├── wp-block-serialization-default-parser.js │ │ ├── wp-blocks.js │ │ ├── wp-components.js │ │ ├── wp-compose.js │ │ ├── wp-core-data.js │ │ ├── wp-data-controls.js │ │ ├── wp-data.js │ │ ├── wp-date.js │ │ ├── wp-deprecated.js │ │ ├── wp-dom-ready.js │ │ ├── wp-dom.js │ │ ├── wp-edit-post.js │ │ ├── wp-editor.js │ │ ├── wp-element.js │ │ ├── wp-escape-html.js │ │ ├── wp-format-library.js │ │ ├── wp-hooks.js │ │ ├── wp-html-entities.js │ │ ├── wp-i18n.js │ │ ├── wp-is-shallow-equal.js │ │ ├── wp-keyboard-shortcuts.js │ │ ├── wp-keycodes.js │ │ ├── wp-list-reusable-blocks.js │ │ ├── wp-media-utils.js │ │ ├── wp-notices.js │ │ ├── wp-nux.js │ │ ├── wp-plugins.js │ │ ├── wp-primitives.js │ │ ├── wp-priority-queue.js │ │ ├── wp-redux-routine.js │ │ ├── wp-rich-text.js │ │ ├── wp-server-side-render.js │ │ ├── wp-shortcode.js │ │ ├── wp-token-list.js │ │ ├── wp-url.js │ │ ├── wp-viewport.js │ │ ├── wp-warning.js │ │ └── wp-wordcount.js │ └── no-conflict.js ├── scripts/ │ ├── build.js │ ├── g-scripts.js │ ├── g-update.js │ ├── start.js │ └── test.js └── src/ ├── core/ │ ├── api-fetch.js │ ├── index.js │ ├── media-library.scss │ ├── media-upload.js │ ├── settings.js │ └── style.scss ├── data/ │ ├── categories.json │ ├── taxonomies.json │ ├── themes.json │ ├── types.json │ └── users.json ├── globals/ │ ├── api-fetch.js │ ├── api-routes.js │ ├── embeds.js │ ├── fake-data.js │ └── fake-media.js ├── index.js ├── pages/ │ ├── editor.js │ ├── editor.scss │ └── preview.js └── serviceWorker.js