diff --git a/.distignore b/.distignore new file mode 100644 index 0000000000..3c7c6e9951 --- /dev/null +++ b/.distignore @@ -0,0 +1,41 @@ +/.git +/.github +/.wordpress-org +/bin +/config +/docs +/gulp-tasks +/lang +/tests +/vendor/ +/node_modules + +/.babelrc +/.browserslistrc +/.editorconfig +/.eslintignore +/.eslintrc.js +/.distignore +/.gitignore +/.travis.yml +/.stylelintrc +/CHANGELOG.md +/CODE_OF_CONDUCT.md +/composer.json +/composer.lock +/CONTRIBUTING.md +/CREDITS.md +/gulpfile.babel.js +/hookdoc-conf.json +/LICENSE.md +/package.json +/package-lock.json +/phpcs.xml +/phpunit.xml.dist +/postcss.config.js +/README.md +/SECURITY.md +/run-wpacceptance.sh +/single-site.xml.dist +/webpack.config.js +/wpacceptance.json diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 7d8e235ac3..0000000000 --- a/.gitattributes +++ /dev/null @@ -1,38 +0,0 @@ -/.wordpress-org export-ignore -/.github export-ignore -/bin export-ignore -/config export-ignore -/docs export-ignore -/gulp-tasks export-ignore -/lang export-ignore -/tests export-ignore - -/.babelrc export-ignore -/.browserslistrc export-ignore -/.editorconfig export-ignore -/.eslintignore export-ignore -/.eslintrc.js export-ignore -/.gitattributes export-ignore -/.gitignore export-ignore -/.travis.yml export-ignore -/.stylelintrc export-ignore -/CHANGELOG.md export-ignore -/CODE_OF_CONDUCT.md export-ignore -/composer.json export-ignore -/composer.lock export-ignore -/CONTRIBUTING.md export-ignore -/CREDITS.md export-ignore -/gulpfile.babel.js export-ignore -/hookdoc-conf.json export-ignore -/LICENSE.md export-ignore -/package.json export-ignore -/package-lock.json export-ignore -/phpcs.xml export-ignore -/phpunit.xml.dist export-ignore -/postcss.config.js export-ignore -/README.md export-ignore -/SECURITY.md export-ignore -/run-wpacceptance.sh export-ignore -/single-site.xml.dist export-ignore -/webpack.config.js export-ignore -/wpacceptance.json export-ignore diff --git a/.github/workflows/push-deploy.yml b/.github/workflows/push-deploy.yml index 406c65f96d..1c2101690d 100644 --- a/.github/workflows/push-deploy.yml +++ b/.github/workflows/push-deploy.yml @@ -1,17 +1,51 @@ -name: Deploy to WordPress.org +name: Publish New Release + +env: + SLUG: "elasticpress" + on: - push: - tags: - - "*" + release: + types: [published] + jobs: tag: - name: New tag + name: New release runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - name: Checkout code + uses: actions/checkout@v2 + + - name: install node v10 + uses: actions/setup-node@v1 + with: + node-version: 10 + + - name: Build + run: | + npm install + npm run build + - name: WordPress Plugin Deploy + if: "! github.event.release.prerelease" + id: deploy uses: 10up/action-wordpress-plugin-deploy@stable env: - SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} SVN_USERNAME: ${{ secrets.SVN_USERNAME }} - SLUG: elasticpress + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SLUG: ${{ env.SLUG }} + + - name: Create ZIP + run: | + TMP_DIR="${HOME}/archive/${{ env.SLUG }}" + mkdir -p $TMP_DIR + rsync -rc --exclude-from="${{ github.workspace }}/.distignore" "${{ github.workspace }}/" "$TMP_DIR/" && cd $TMP_DIR/.. && zip -r "${{ github.workspace }}/${{ env.SLUG }}.zip" . + + - name: Upload release asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ${{ github.workspace }}/${{ env.SLUG }}.zip + asset_name: elasticpress-${{ github.ref_name }}.zip + asset_content_type: application/zip \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3b281cc903..3649138eed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /vendor/ node_modules +/dist .idea .history docs-built diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 638283ff09..f76647fc82 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,11 +39,30 @@ The `develop` branch is the development branch which means it contains the next 1. Test: While still on the `master` branch, test for functionality locally. 1. Push: Push your `master` branch to GitHub (e.g. `git push origin master`). 1. Release: Create a [new release](https://github.com/10up/elasticpress/releases/new), naming the tag and the release with the new version number, and targeting the `master` branch. Paste the release changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [milestone](https://github.com/10up/elasticpress/milestone/#?closed=1). +1. [Check the _Publish New Release_ action](https://github.com/10up/ElasticPress/actions/workflows/push-deploy.yml): After the release, GitHub should trigger an action to generate a zip with the plugin and attach it to the GitHub Release page. 1. SVN: Wait for the [GitHub Action](https://github.com/10up/ElasticPress/actions?query=workflow%3A%22Deploy+to+WordPress.org%22) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes. 1. Check WordPress.org: Ensure that the changes are live on https://wordpress.org/plugins/elasticpress/. This may take a few minutes. 1. Close milestone: Edit the [milestone](https://github.com/10up/elasticpress/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description` field), then close the milestone. 1. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`. +## Pre-release instructions (betas, release candidates, etc) + +Pre-releases are different from normal versions because (1) they are not published on WordPress.org and (2) they are usually created from a branch different from `develop`. + +1. If the new version requires a reindex, add its number to the `$reindex_versions` array in the `ElasticPress\Upgrades::check_reindex_needed()` method. If it is the case, remember to add that information to the Changelog listings in `readme.txt` and `CHANGELOG.md`. +1. Branch: Starting from the next version branch, for example, `4.x.x`, cut a release branch named `release/X.Y.Z` for your changes. +1. Version bump: Bump the version number in `elasticpress.php`, `package.json`, `package-lock.json`, `readme.txt`, and any other relevant files if it does not already reflect the version being released. In `elasticpress.php` update both the plugin "Version:" property and the plugin `EP_VERSION` constant. The version should follow the `X.Y.Z-beta.A` pattern. +1. Changelog: Add/update the changelog in `CHANGELOG.md` and `readme.txt`, ensuring to link the [X.Y.Z] release reference in the footer of `CHANGELOG.md` (e.g., https://github.com/10up/ElasticPress/compare/X.Y.Z-1...X.Y.Z). +1. Props: Update `CREDITS.md` file with any new contributors, confirm maintainers are accurate. +1. Readme updates: Make any other readme changes as necessary. `README.md` is geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different. +1. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.gitattributes`. +1. Merge: Merge the release branch/PR into the next version branch (`4.x.x`, for example). +1. Test: Checkout the next version branch locally and build assets like the GitHub Action will do (see `.github/workflows/push-deploy.yml`) +1. Release: Create a [new pre-release](https://github.com/10up/elasticpress/releases/new), naming the tag and the release with the new version number, and targeting the next version branch branch. Paste the release changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [milestone](https://github.com/10up/elasticpress/milestone/#?closed=1). **ATTENTION**: Make sure to check the `This is a pre-release` checkbox, so the release is not published on WordPress.org. +1. [Check the _Publish New Release_ action](https://github.com/10up/ElasticPress/actions/workflows/push-deploy.yml): After the release, GitHub should trigger an action to generate a zip with the plugin and attach it to the GitHub Release page. +1. Close milestone: Edit the [milestone](https://github.com/10up/elasticpress/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description` field), then close the milestone. +1. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`. + ## Hotfix release instructions There may be cases where we have an urgent/important fix that ideally gets into a release quickly without any other changes (e.g., a "hotfix") so as to reduce (1) the amount or testing before being confident in the release and (2) to reduce the chance of unintended side effects from the extraneous non-urgent/important changes. In cases where code has previously been merged into `develop` but that ideally is not part of a hotfix, the normal release instructions above will not suffice as they would release all code merged to `develop` alongside the intended urgent/important "hotfix" change(s). In case of needing to release a "hotfix" the following are the recommended steps to take. diff --git a/dist/css/autosuggest-styles.min.asset.php b/dist/css/autosuggest-styles.min.asset.php deleted file mode 100644 index 8715299f0d..0000000000 --- a/dist/css/autosuggest-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '73e372e29a839749702d1458418c1f9b'); \ No newline at end of file diff --git a/dist/css/autosuggest-styles.min.css b/dist/css/autosuggest-styles.min.css deleted file mode 100644 index 4453af2f30..0000000000 --- a/dist/css/autosuggest-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.ep-autosuggest-container{position:relative}.ep-autosuggest-container .ep-autosuggest{background:#fff;border:1px solid #ccc;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);display:none;position:absolute;width:100%;z-index:200}.ep-autosuggest-container .ep-autosuggest>ul{list-style:none;margin:0!important}.ep-autosuggest-container .ep-autosuggest>ul>li{font-family:sans-serif}.ep-autosuggest-container .ep-autosuggest>ul>li>a.autosuggest-link{color:#000;cursor:pointer;display:block;padding:2px 10px}.ep-autosuggest-container .ep-autosuggest>ul>li>a.autosuggest-link:active,.ep-autosuggest-container .ep-autosuggest>ul>li>a.autosuggest-link:hover{background-color:#eee;text-decoration:none}.ep-autosuggest-container .selected{background-color:#eee;text-decoration:none} diff --git a/dist/css/comments-styles.min.asset.php b/dist/css/comments-styles.min.asset.php deleted file mode 100644 index 118b83fef3..0000000000 --- a/dist/css/comments-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => 'db2d0dc74c9edb3b118473615470b5eb'); \ No newline at end of file diff --git a/dist/css/comments-styles.min.css b/dist/css/comments-styles.min.css deleted file mode 100644 index 421ce00372..0000000000 --- a/dist/css/comments-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.ep-widget-search-comments-results{list-style-type:none;margin-left:0}.ep-widget-search-comments-result-item,.ep-widget-search-comments-result-item-not-found{margin-left:0}.ep-widget-search-comments-result-item.selected a{border:2px dotted #171923} diff --git a/dist/css/dashboard-styles.min.asset.php b/dist/css/dashboard-styles.min.asset.php deleted file mode 100644 index b06ae31ba5..0000000000 --- a/dist/css/dashboard-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => 'd259ac91756d2ea329cf4ad55bab484e'); \ No newline at end of file diff --git a/dist/css/dashboard-styles.min.css b/dist/css/dashboard-styles.min.css deleted file mode 100644 index f2d8a0d29e..0000000000 --- a/dist/css/dashboard-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -:root{--statusOk:#6aa000;--statusWarning:#e3e600;--statusError:red}.wrap .notice,.wrap>h2{position:relative;z-index:2}.wrap h1{font-size:23px;font-weight:400;line-height:29px;margin:0;padding:9px 0 4px}.wrap h2{color:#888;line-height:1.75;margin:.5em 0 .75em}#wpbody #update-nag,#wpbody .update-nag{margin-bottom:20px;margin-left:-20px;margin-top:0;width:100%}h2.ep-list-features{display:none}.ep-header-menu{background-color:#fff;border-bottom:2px solid #ddd;margin-left:-20px;padding-bottom:5px;padding-left:20px;padding-right:20px;padding-top:5px;position:relative;z-index:2}.ep-header-menu:after{clear:both;content:" ";display:block}.ep-header-menu img{float:left}.ep-header-menu .icons{display:inline-block;float:right;height:39px;line-height:39px;padding-right:3px}.ep-header-menu .icons a{color:inherit;cursor:pointer;font-size:27px;margin-left:8px;position:relative;top:-3px;vertical-align:middle}.ep-header-menu .icons .dashicons-admin-generic,.ep-header-menu .icons .dashicons-controls-pause,.ep-header-menu .icons .dashicons-controls-play,.ep-header-menu .icons .dashicons-no,.ep-header-menu .icons .dashicons-update{font-size:30px;top:1px}.ep-header-menu .cancel-sync,.ep-header-menu .pause-sync,.ep-header-menu .resume-sync{display:none}.ep-header-menu .sync-status{bottom:-1px;color:#666;display:none;font-style:italic;margin-right:8px;position:relative;vertical-align:middle}.ep-header-menu .progress-bar{background-color:#d84440;bottom:0;height:5px;left:0;margin-bottom:-5px;position:absolute}.ep-header-menu .icons .dashicons-admin-generic,.ep-header-menu .icons .dashicons-update{display:inline}.ep-features{overflow:auto}.error-overlay.cant-connect,.error-overlay.syncing{background-color:#fff;bottom:0;content:" ";display:block;left:0;opacity:.6;position:fixed;right:0;top:46px;z-index:1}@media (min-width:880px){.error-overlay,.error-overlay.cant-connect,.error-overlay.syncing{left:10pc;top:2pc}}.ep-feature .postbox{margin-bottom:0}.ep-feature .postbox .hndle{cursor:inherit}.ep-feature .postbox .hndle .settings-button{background-color:#efefef;border-radius:4px;color:inherit;cursor:pointer;display:inline-block;float:right;font-size:13px;margin-top:-4px;padding:4px 7px;padding-left:23px;position:relative}.ep-feature .settings-button:before{color:#72777c;content:"\f140";display:inline-block;font:400 19px/1 dashicons;left:1px;padding:0 5px 0 0;position:absolute;top:4px;vertical-align:middle}.ep-feature .settings-button:after{border-radius:50%;content:" ";display:inline-block;height:8px;margin-left:10px;margin-top:-2px;vertical-align:middle;width:8px}.feature-requirements-status-2.ep-feature .postbox .hndle .settings-button:after{background-color:transparent;border:1px solid #f00;border:1px solid var(--statusError)}.feature-requirements-status-2.ep-feature .settings .requirements-status-notice{border-color:#f00;border-color:var(--statusError)}.feature-requirements-status-1.ep-feature .postbox .hndle .settings-button:after{background-color:transparent;border:1px solid #e3e600;border:1px solid var(--statusWarning)}.feature-requirements-status-1.ep-feature.feature-active .postbox .hndle .settings-button:after{background-color:#e3e600;background-color:var(--statusWarning)}.feature-requirements-status-1.ep-feature .settings .requirements-status-notice{border-color:#e3e600;border-color:var(--statusWarning)}.feature-requirements-status-0.ep-feature .postbox .hndle .settings-button:after{background-color:transparent;border:1px solid #6aa000;border:1px solid var(--statusOk)}.feature-requirements-status-0.ep-feature.feature-active .postbox .hndle .settings-button:after{background-color:#6aa000;background-color:var(--statusOk)}.feature-requirements-status-0.ep-feature .settings .requirements-status-notice{border-color:#6aa000;border-color:var(--statusOk)}.ep-feature{margin-bottom:20px;position:relative;vertical-align:top}.ep-feature.saving .action-wrap:before{-webkit-animation:load8 1.1s linear infinite;animation:load8 1.1s linear infinite;border-bottom:5px solid #ccc;border-left:5px solid #999;border-radius:50%;border-right:5px solid #ccc;border-top:5px solid #ccc;content:" ";display:inline-block;font-size:7px;height:8px;margin-right:1.4em;position:relative;text-indent:-9999em;top:4px;-webkit-transform:translateZ(0);transform:translateZ(0);vertical-align:middle;width:8px}.ep-feature .description,.ep-feature .settings{margin-bottom:0;text-align:left}.ep-feature .settings{display:none;overflow:auto}.ep-feature .settings h3{font-size:inherit;font-weight:700;margin-top:0}.ep-feature.show-settings .settings{display:block}.ep-feature.show-settings .description{display:none}.ep-feature.show-settings .settings-button:before{content:"\f142"}.ep-feature .settings .requirements-status-notice{background-color:#efefef;border-left:4px solid #6aa000;border-left:4px solid var(--statusOk);margin-bottom:10px;padding:8px 9pt}.ep-feature .settings .requirements-status-notice.requirements-status-notice--reindex{border-color:#e3e600;border-color:var(--statusWarning);display:none}.ep-feature .settings .action-wrap{clear:both;padding-top:15px;text-align:right;vertical-align:middle}.ep-feature .settings .action-wrap a{cursor:pointer;display:inline-block}.ep-feature .settings .action-wrap .no-dash-sync{color:#aaa;display:none;line-height:27px;padding-right:8px}.ep-feature .settings .action-wrap a.disabled{cursor:default}.ep-feature .settings .action-wrap .cancel{margin-right:6px;margin-top:4px}.ep-feature.dash-sync-disabled .settings .action-wrap .no-dash-sync{display:inline}.ep-feature .settings .field{clear:both;overflow:visible;overflow:initial;padding-top:15px}.ep-feature .settings .field:first-child{padding-top:0}.ep-feature .settings .field label{display:inline-block;margin:.25em 0 .5em}.ep-feature .settings .field div{padding-top:5px}.ep-feature .settings .field .field-name,.ep-feature .settings .field>label{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:left;padding-right:1.5em;width:25%}.ep-feature .settings .field .input-wrap{display:block;float:right;width:75%}.ep-feature .settings .field .field-description{color:#666;font-style:italic;margin-bottom:0;margin-top:4px}.ep-feature .settings .field .disabled{color:#bbb}.ep-feature .settings .field .disabled input{cursor:default}.ep-feature .long{display:none}.ep-feature .long p:last-child{margin-bottom:0}.ep-feature.show-full .long{display:block}.ep-feature .collapse,.ep-feature .learn-more{cursor:pointer}.ep-feature.show-full .learn-more{display:none}.ep-feature .learn-more:after{content:"\f140";font-family:dashicons;font-size:1.5em;position:relative;top:-.07em;vertical-align:middle}.ep-feature .collapse:after{content:"\f142";font-family:dashicons;font-size:1.5em;position:relative;top:-.07em;vertical-align:middle}.intro h2{line-height:1.2;padding:9px 0 4px 0}.intro h1{color:#626262;font-weight:600;margin:.5em 0 2em;text-align:center}.intro-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:10%;padding-right:10%;text-align:center}.intro-box{width:33%}.intro-container a{font-weight:700}.intro-container h2{color:#626262;height:8%}.intro-container p{max-width:300px}.intro-container-success{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.intro-container-success p{margin-top:23px;padding:0 35% 0 35%}@media (max-width:880px){.intro-container-success p{margin-top:23px;padding:0 26%}}.ep-config-success span{font-size:6em;padding-right:75px}.setup-complete{font-size:2em;margin-top:0;padding-top:0;width:100%}.setup-complete h2{margin-top:0;padding-top:0}.ep-copy-text{padding:0 15% 0 15%}@media (max-width:880px){.intro-box{width:auto}.ep-copy-text{padding:0 9% 0 9%}}.ep-circle{border-radius:50%;color:#fff;display:inline-block;font-size:1pc;font-weight:400;height:6em;line-height:2.8em;margin:0 1em;position:relative;text-align:center;width:6em}.ep-circle p{border:0;font-size:50px;font-weight:700;line-height:.5em;margin:0}.red-ep-circle{background-color:#d73c38;color:#fff}.ep-middle-circle:after{background:#d4d4d4;content:"";height:.2em;left:-14em;position:absolute;top:2.9em;width:34em;z-index:-1}@media (max-width:1270px){.ep-middle-circle:after{left:-8em;width:21.9em}}@media (min-width:880px){.wrap h1{line-height:1.75}}.white-ep-circle{background:#fff;color:#626262}.wrap.intro{margin-bottom:30px;margin-top:30px;overflow:auto}.wrap.intro .error,.wrap.intro .is-dismissible,.wrap.intro .notice,.wrap.intro .updated{display:none!important}.features-screenshot{display:none}.setup-message{clear:both;padding:2em 0;text-align:center}.setup-message .setup-button{background-color:#e63e3b;border-radius:10px;-webkit-box-shadow:1px 1px 3px 1px rgba(0,0,0,.25);box-shadow:1px 1px 3px 1px rgba(0,0,0,.25);color:#fff;display:inline-block;margin:0 .75em;padding:1em 1.5em;text-decoration:none}.setup-message .setup-button:hover{background-color:#b93431;color:#ffe8ed}.setup-message .setup-button-primary{background-color:#fff;color:#d84440}.weighting-settings .postbox{-webkit-box-sizing:border-box;box-sizing:border-box;max-width:650px}.weighting-settings .postbox *{-webkit-box-sizing:border-box;box-sizing:border-box}.weighting-settings .postbox h2.hndle{color:#444;cursor:inherit}.weighting-settings fieldset{padding:10px}.weighting-settings fieldset legend{float:left;position:relative;top:5px;width:75pt}.weighting-settings fieldset p{display:inline-block;float:left;margin:0}.weighting-settings .field-group{margin:10px 0 0}.weighting-settings .field-group h3{font-size:1em;margin:10px}.weighting-settings .fields>fieldset:nth-of-type(odd){background:#f9f9f9}.weighting-settings .searchable{display:inline-block;width:90pt}.weighting-settings .weighting{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.weighting-settings .weighting label{margin-right:10px;min-width:5pc}.weighting-settings input[type=range]{-webkit-appearance:none;background:transparent;display:inline-block;height:1em;margin:0;vertical-align:middle;width:200px}.weighting-settings input[type=range]:focus{outline:none}.weighting-settings input[type=range]:disabled{opacity:.5;pointer-events:none}.weighting-settings input[type=range]::-webkit-slider-runnable-track{background:#ddd;border:0 solid #000;border-radius:1px;-webkit-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000;cursor:pointer;height:3px;width:100%}.weighting-settings input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background:#1e8cbe;border:1px solid #1e8cbe;border-radius:25px;-webkit-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000;cursor:pointer;height:14px;margin-top:-6px;width:14px}.weighting-settings input[type=range]:focus::-webkit-slider-runnable-track{background:#ddd}.weighting-settings input[type=range]:focus::-webkit-slider-thumb{background:#fff!important}.weighting-settings input[type=range]::-moz-range-track{background:#1e8cbe;border:0 solid #000;border-radius:1px;box-shadow:0 0 0 #000;cursor:pointer;height:3px;width:100%}.weighting-settings input[type=range]::-moz-range-thumb{background:#1e8cbe;border:1px solid #1e8cbe;border-radius:25px;box-shadow:0 0 0 #000;cursor:pointer;height:14px;width:14px}.weighting-settings input[type=range]::-ms-track{background:transparent;border-color:transparent;color:transparent;cursor:pointer;height:3px;width:100%}.weighting-settings input[type=range]::-ms-fill-lower{background:#1e8cbe;border:0 solid #000;border-radius:2px;box-shadow:0 0 0 #000}.weighting-settings input[type=range]::-ms-fill-upper{background:#1e8cbe;border:0 solid #000;border-radius:2px;box-shadow:0 0 0 #000}.weighting-settings input[type=range]::-ms-thumb{background:#a1d0ff;border:1px solid #1e8cbe;border-radius:25px;box-shadow:0 0 0 #000;cursor:pointer;height:14px;margin-top:1px;width:14px}.weighting-settings input[type=range]:focus::-ms-fill-lower{background:#1e8cbe}.weighting-settings input[type=range]:focus::-ms-fill-upper{background:#1e8cbe}.ep-feature-search .wp-color-result.button{margin-bottom:10px}.ep-feature.ep-feature-search .settings .wp-picker-input-wrap>label{margin-right:10px;margin-top:0}.ep-feature.ep-feature-search .settings.wp-picker-input-wrap label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.ep-feature.ep-feature-search .settings .wp-picker-open+.wp-picker-input-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media (min-width:880px){.intro .left{float:left;width:30%}.features-screenshot{display:block;float:right;height:auto;margin:0 auto;max-width:750pt;width:70%}.ep-features .left{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:left;padding-right:10px;width:50%}.ep-features .right{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:right;padding-left:10px;width:50%}.ep-feature .feature-message{display:inline-block;float:left;padding:0;padding-top:.5em;vertical-align:middle}}.wrap h2.nav-tab-wrapper.ep-credentials-tabs{border-bottom:1px solid #ccc}.ep-credentials input[type=text]{min-width:250px}h2 .nav-tab.ep-credentials-tab{cursor:pointer;margin-bottom:-1px}.ep-credentials-tab.nav-tab-active{border-bottom-color:#f1f1f1}.ep-credentials-tab img,.ep-credentials-tab span{display:inline-block;vertical-align:middle}.ep-credentials fieldset{border-bottom:1px solid #ccc;border-left:1px solid #ccc;border-right:1px solid #ccc;margin:0;padding:0 1rem}.ep-credentials fieldset.predefined{border-top:1px solid #ccc}.ep-settings .description{font-size:.75rem;font-style:italic}@media (min-width:880px){.ep-credentials{display:inline-block}.ep-credentials .form-table{width:auto}.ep-credentials .form-table td{padding-left:0}}.ep-flex-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}.ep-flex-container-nowrap{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.stats-list{margin-right:0;width:100%}@media (min-width:1270px){.stats-list{background-color:#fff;margin-right:28px;width:37%}}.stats-queries{background-color:#fff;width:100%}@media (min-width:1270px){.stats-queries{width:60%}}.stats-list-th span:last-of-type{border-radius:4px;color:inherit;cursor:pointer;display:inline-block;float:right;font-size:13px;margin-top:-4px;padding:4px 7px;padding-left:23px;position:relative}.status-circle{float:right;text-transform:capitalize}.status-circle:after{border-radius:50%;content:" ";display:inline-block;height:8px;margin-left:10px;margin-top:-2px;vertical-align:middle;width:8px}.green-status{color:#6aa000;color:var(--statusOk)}.yellow-status{color:#e3e600;color:var(--statusWarning)}.red-status{color:#f00;color:var(--statusError)}.green-status:after{background-color:#6aa000;background-color:var(--statusOk)}.yellow-status:after{background-color:#e3e600;background-color:var(--statusWarning)}.red-status:after{background-color:#f00;background-color:var(--statusError)}.doc-chart{margin-right:0;width:100%}@media (min-width:880px){.doc-chart{margin-right:24px;width:48%}}@media (min-width:1270px){.doc-chart{margin-right:28px;width:50%}}.ep-qchart-container{margin:0 auto;width:90%}@media (min-width:880px){.ep-qchart-container{width:48%}}@media (min-width:1270px){.ep-qchart-container{margin:0 auto;width:50%}}.inside-totals{padding:0 9pt 9pt}.ep-totals{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}@media (min-width:880px){.ep-totals{width:48%}}@media (min-width:1270px){.ep-totals{width:47%}}.ep-totals .ep-flex-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:auto;margin-top:auto}@media (min-width:1270px){.ep-totals .ep-flex-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.ep-totals-column{-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;width:100%}@media (min-width:1270px){.ep-totals-column{width:50%}}p.ep-totals-title{font-weight:bolder;margin-top:28px}p.ep-totals-data{font-size:3em;margin-top:22px} diff --git a/dist/css/facets-admin-styles.min.asset.php b/dist/css/facets-admin-styles.min.asset.php deleted file mode 100644 index 20d8091eba..0000000000 --- a/dist/css/facets-admin-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '62b4efb5a1eb12c5c0913abc1339cb6d'); \ No newline at end of file diff --git a/dist/css/facets-admin-styles.min.css b/dist/css/facets-admin-styles.min.css deleted file mode 100644 index c816d52d69..0000000000 --- a/dist/css/facets-admin-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.widget-ep-facet label{margin-right:5px} diff --git a/dist/css/facets-styles.min.asset.php b/dist/css/facets-styles.min.asset.php deleted file mode 100644 index 36fb5c1f45..0000000000 --- a/dist/css/facets-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '673f67e087d92e2427870d8f576671b4'); \ No newline at end of file diff --git a/dist/css/facets-styles.min.css b/dist/css/facets-styles.min.css deleted file mode 100644 index a344dbae9b..0000000000 --- a/dist/css/facets-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.widget_ep-facet input[type=search]{margin-bottom:1rem}.widget_ep-facet .searchable .inner{max-height:20em;overflow:scroll}.widget_ep-facet .term.hide{display:none}.widget_ep-facet .empty-term{opacity:.5;position:relative}.widget_ep-facet .empty-term:after{bottom:0;content:" ";display:block;left:0;position:absolute;right:0;top:0;width:100%;z-index:2}.widget_ep-facet .level-1{padding-left:20px}.widget_ep-facet .level-2{padding-left:40px}.widget_ep-facet .level-3{padding-left:60px}.widget_ep-facet .level-4{padding-left:5pc}.widget_ep-facet .level-5{padding-left:75pt}.widget_ep-facet input[disabled]{cursor:pointer;opacity:1}.widget_ep-facet .term a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.ep-checkbox{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;height:1em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:.25em;width:1em}.ep-checkbox:after{border:solid #fff;border-width:0 .125em .125em 0;content:"";display:none;height:.5em;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:.25em}.ep-checkbox.checked{background-color:#5e5e5e}.ep-checkbox.checked:after{display:block}.widget_ep-facet .term a:hover .ep-checkbox{background-color:#ccc} diff --git a/dist/css/highlighting-styles.min.asset.php b/dist/css/highlighting-styles.min.asset.php deleted file mode 100644 index fd90c77303..0000000000 --- a/dist/css/highlighting-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '60d6246eadb2aaaf679e2a0632fa6f9c'); \ No newline at end of file diff --git a/dist/css/highlighting-styles.min.css b/dist/css/highlighting-styles.min.css deleted file mode 100644 index 9a18e84516..0000000000 --- a/dist/css/highlighting-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.ep-highlight{background-color:transparent;font-style:italic;font-weight:700} diff --git a/dist/css/instant-results-styles.min.asset.php b/dist/css/instant-results-styles.min.asset.php deleted file mode 100644 index c2d81158e2..0000000000 --- a/dist/css/instant-results-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '33115981671556b65a81c3a4ec06ab07'); \ No newline at end of file diff --git a/dist/css/instant-results-styles.min.css b/dist/css/instant-results-styles.min.css deleted file mode 100644 index d22dcdba14..0000000000 --- a/dist/css/instant-results-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.ep-search-reset-button{font:inherit!important;height:auto!important;letter-spacing:inherit!important;line-height:1!important;margin:0!important;padding:0!important;text-align:inherit!important;text-transform:inherit!important;width:auto!important}.ep-search-reset-button,.ep-search-reset-button:focus,.ep-search-reset-button:hover{background:transparent!important;border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:inherit!important;cursor:default!important}.ep-search-reset-button:focus{outline:medium auto Highlight!important;outline:medium auto -webkit-focus-ring-color!important;outline-offset:0!important}.ep-search-small-button{font-size:.875em!important;height:auto!important;line-height:1!important;padding:.5em!important}.ep-search-icon-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ep-search-icon-button svg{fill:currentColor;-ms-flex-negative:0;flex-shrink:0;height:1em;width:1em}.ep-search-input{font-size:1.25em;margin:0!important;width:100%}.has-ep-search-modal{overflow:hidden}.ep-search-modal{--ep-search-modal-focus-within:0;background-color:rgba(43,46,56,.9);bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;left:0;position:fixed;right:0;top:0;z-index:9999}.rtl .ep-search-modal{direction:rtl;text-align:right}.admin-bar .ep-search-modal{top:2pc}@media (max-width:782px){.admin-bar .ep-search-modal{top:46px}}.ep-search-modal[aria-hidden=true]{display:none}.ep-search-modal[focus-within]{--ep-search-modal-focus-within:1}.ep-search-modal:focus-within{--ep-search-modal-focus-within:1}.ep-search-modal__content{background-color:#fff;background-color:var(--ep-search-background-color);bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;left:0;position:absolute;right:0;top:0}@media (min-width:768px){.ep-search-modal__content{bottom:1em;margin:0 auto;max-width:calc(100% - 2em);top:1em;width:80em}}.ep-search-modal__close{-ms-flex-item-align:end;align-self:flex-end;padding:1em!important}.ep-search-options-list{list-style:none;margin:0;padding:0}.ep-search-options-list__item{margin:.5em 0}.ep-search-options-list__item:before{content:none}.ep-search-options-list__sub-menu{padding-left:1em}.ep-search-page{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2;margin:0;overflow-y:auto;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out;width:100%}@media (min-width:768px){.ep-search-page{overflow:hidden}}.ep-search-page *,.ep-search-page :after,.ep-search-page :before{-webkit-box-sizing:border-box;box-sizing:border-box}.ep-search-page.is-loading{opacity:.5}.ep-search-page__body,.ep-search-page__header,.ep-search-page__tools{padding:0 1em}@media (min-width:768px){.ep-search-page__body{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2;overflow:hidden}}.ep-search-panel{border:1px solid #dfdfdf;border:1px solid var(--ep-search-border-color);margin:0;padding:0}.ep-search-panel + .ep-search-panel{border-top-width:0}.ep-search-panel__heading{font-size:inherit;margin:0}.ep-search-panel__button{padding:1em!important;width:100%!important}.ep-search-panel__content{padding:0 1em 1em 1em}.ep-search-panel__content[aria-hidden=true]{display:none}.ep-search-pagination{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;margin-top:auto;text-align:center}.rtl .ep-search-pagination{direction:rtl}.ep-search-pagination__next{-ms-grid-column-align:end;justify-self:end}.ep-search-pagination__previous{-ms-grid-column-align:start;justify-self:start}.ep-search-range-slider{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin:.5em 0;min-height:1.625em;min-height:var(--ep-search-range-thumb-size)}.ep-search-range-slider__track{background:#efefef;background:var(--ep-search-alternate-background-color);border-radius:calc(0.75em/2);border-radius:calc(var(--ep-search-range-track-size)/2);height:0.75em;height:var(--ep-search-range-track-size)}.ep-search-range-slider__track-1{background-color:currentColor}.ep-search-range-slider__thumb{background-color:currentColor;border-radius:calc(1.625em/2);border-radius:calc(var(--ep-search-range-thumb-size)/2);-webkit-box-shadow:inset 0 0 0 calc(1.625em/10) currentColor,inset 0 0 0 calc(1.625em/2 - 0.75em/2) #fff;box-shadow:inset 0 0 0 calc(1.625em/10) currentColor,inset 0 0 0 calc(1.625em/2 - 0.75em/2) #fff;-webkit-box-shadow:inset 0 0 0 calc(var(--ep-search-range-thumb-size)/10) currentColor,inset 0 0 0 calc(var(--ep-search-range-thumb-size)/2 - var(--ep-search-range-track-size)/2) var(--ep-search-background-color);box-shadow:inset 0 0 0 calc(var(--ep-search-range-thumb-size)/10) currentColor,inset 0 0 0 calc(var(--ep-search-range-thumb-size)/2 - var(--ep-search-range-track-size)/2) var(--ep-search-background-color);height:1.625em;height:var(--ep-search-range-thumb-size);width:1.625em;width:var(--ep-search-range-thumb-size)}.ep-search-result{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-ms-grid;display:grid;grid-gap:.5em;grid-template-areas:"header" "footer";-ms-grid-rows:auto .5em 1fr;grid-template-rows:auto 1fr}@media (min-width:768px){.ep-search-result{grid-gap:1em;grid-template-areas:"header" "description" "footer";-ms-grid-rows:auto 1em auto 1em 1fr;grid-template-rows:auto auto 1fr}}.ep-search-result--has-thumbnail{grid-template-areas:"thumbnail header" "thumbnail footer";-ms-grid-columns:min(300px,34%) auto;grid-template-columns:min(300px,34%) auto}@media (min-width:768px){.ep-search-result--has-thumbnail{grid-template-areas:"thumbnail header" "thumbnail description" "thumbnail footer"}}.ep-search-result__thumbnail{-ms-grid-row:1;-ms-grid-row-span:2;-ms-grid-column:1;display:block;grid-area:thumbnail}.ep-search-result__thumbnail img{display:block;margin:0;width:100%}.ep-search-result__header{-ms-grid-row:1;-ms-grid-column:1;display:-ms-grid;display:grid;grid-area:header;grid-gap:.5em;-ms-grid-columns:auto;grid-template-columns:auto;justify-items:start}.ep-search-result--has-thumbnail > .ep-search-result__header{-ms-grid-row:1;-ms-grid-column:2}.ep-search-result__title{font-size:1em;margin:0}@media (min-width:768px){.ep-search-result__title{font-size:1.25em}}.ep-search-result__type{background-color:#efefef;background-color:var(--ep-search-alternate-background-color);border-radius:.25em;display:inline-block;font-size:.875em;line-height:1.5;padding:0 .25em;vertical-align:text-bottom}.ep-search-result__description{display:none;font-size:.875em;grid-area:description;margin:0}@media (min-width:768px){.ep-search-result__description{display:block;font-size:1em}}.ep-search-result__footer{-ms-grid-row:3;-ms-grid-column:1;display:-ms-grid;display:grid;grid-area:footer;grid-gap:.5em;justify-items:start}.ep-search-result--has-thumbnail > .ep-search-result__footer{-ms-grid-row:2;-ms-grid-column:2}@media (min-width:768px){.ep-search-result__thumbnail{-ms-grid-row:1;-ms-grid-row-span:3;-ms-grid-column:1}.ep-search-result__header{-ms-grid-row:1;-ms-grid-column:1}.ep-search-result--has-thumbnail > .ep-search-result__header{-ms-grid-row:1;-ms-grid-column:2}.ep-search-result__description{-ms-grid-row:3;-ms-grid-column:1}.ep-search-result__description{-ms-grid-row:2;-ms-grid-column:2}.ep-search-result__footer{-ms-grid-row:5;-ms-grid-column:1}.ep-search-result--has-thumbnail > .ep-search-result__footer{-ms-grid-row:3;-ms-grid-column:2}}.ep-search-results{display:-ms-grid;display:grid;grid-gap:2em;-ms-grid-columns:100%;grid-template-columns:100%;-ms-grid-rows:-webkit-max-content;-ms-grid-rows:max-content;grid-template-rows:-webkit-max-content;grid-template-rows:max-content;padding:0 0 1em 0;width:100%}@media (min-width:768px){.ep-search-results{height:100%;overflow-y:auto;padding:0 1em 1em 1em}}.ep-search-results__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;gap:1em;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ep-search-results__title{font-size:1.25em;margin:0!important}@media (min-width:768px){.ep-search-results__title{font-size:1.5em}}.ep-search-sidebar{display:none;margin-bottom:2em}.ep-search-sidebar.is-open{display:block}@media (min-width:768px){.ep-search-sidebar{display:block;max-height:calc(100% - 1em);min-width:25%;overflow-y:auto}}.ep-search-sidebar-toggle{width:100%}@media (min-width:768px){.ep-search-sidebar-toggle{display:none}}.ep-search-sort{-ms-flex-negative:0;flex-shrink:0;gap:.5em;margin:0}.ep-search-results .ep-search-sort{display:none}@media (min-width:768px){.ep-search-results .ep-search-sort{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}}.ep-search-sidebar .ep-search-sort{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:1em}@media (min-width:768px){.ep-search-sidebar .ep-search-sort{display:none}}.ep-search-toolbar{-webkit-box-align:start;-ms-flex-align:start;align-items:start;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.25em;margin:1em 0}@media (min-width:768px){.ep-search-toolbar{-webkit-box-align:center;-ms-flex-align:center;align-items:center}}:root{--ep-search-background-color:#fff;--ep-search-alternate-background-color:#efefef;--ep-search-border-color:#dfdfdf;--ep-search-range-thumb-size:1.625em;--ep-search-range-track-size:0.75em}@media (min-width:768px){:root{--ep-search-range-thumb-size:1.25em;--ep-search-range-track-size:0.5em}} diff --git a/dist/css/ordering-styles.min.asset.php b/dist/css/ordering-styles.min.asset.php deleted file mode 100644 index 115faa2a8e..0000000000 --- a/dist/css/ordering-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '23718efa0dc239df4fb35aca3d9b5015'); \ No newline at end of file diff --git a/dist/css/ordering-styles.min.css b/dist/css/ordering-styles.min.css deleted file mode 100644 index 5ba9a2ca0d..0000000000 --- a/dist/css/ordering-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -#ep-ordering{border-left-width:0;border-right-width:0}#ep-ordering .inside{background-color:#f1f1f1;margin:0;padding:0}#ep-ordering .loading,#ep-ordering .pointer-search,#ep-ordering .pointers{background-color:#fff;border-left:1px solid #eee;border-right:1px solid #eee}#ep-ordering .new-post{background:#fff;padding:0 1em}#ep-ordering .loading{padding:1em}#ep-ordering .loading .spinner{float:left;margin-left:0;margin-top:0}#ep-ordering .pointer-type{border:2px solid #0073aa;border-radius:2px;color:#0073aa;display:inline-block;font-size:.75em;font-weight:700;margin-right:8px;padding:1px 2px}#ep-ordering .pointers .pointer,#ep-ordering .pointers .post{padding:1em}:is(#ep-ordering .pointers .pointer,#ep-ordering .pointers .post):nth-child(odd){background-color:#f9f9f9}#ep-ordering .pointers .title{color:#0073aa}#ep-ordering .pointers .pointer-actions{float:right}#ep-ordering .pointers .pointer-actions .handle{cursor:move}#ep-ordering .pointers .pointer-actions .delete-pointer{margin-left:10px}#ep-ordering .pointers .next-page-notice{background-color:#fdeeca;padding:1em 0;text-align:center}#ep-ordering .legend{background:#fff;border-bottom:1px solid #eee;padding:1em 0;text-align:center}#ep-ordering .legend-item{display:inline-block;font-size:.875em;font-style:italic;margin:0 .5em}#ep-ordering .pointer-search{margin-top:2em}#ep-ordering .pointer-search .no-results{padding:1em}#ep-ordering .pointer-search .section-title{border-bottom:1px solid #eee;border-top:1px solid #eee;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);font-weight:700}#ep-ordering .pointer-search .search-wrapper{padding:1em 0}#ep-ordering .pointer-search .input-wrap{padding:0 1em}#ep-ordering .pointer-search .search-pointers{font-size:18px;height:1.7em;line-height:100%;padding:3px 8px}#ep-ordering .pointer-search .pointer-results{padding:1em 0 0}#ep-ordering .pointer-search .pointer-result{padding:10px 2em}#ep-ordering .pointer-search .pointer-result .dashicons{float:right}#ep-ordering .pointer-search .pointer-result:hover{background-color:#f9f9f9}#ep-ordering .add-pointer,#ep-ordering .delete-pointer{cursor:pointer} diff --git a/dist/css/related-posts-block-styles.min.asset.php b/dist/css/related-posts-block-styles.min.asset.php deleted file mode 100644 index 17d52b084d..0000000000 --- a/dist/css/related-posts-block-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => '74d31a9a3be6b9a141a51036c6921e11'); \ No newline at end of file diff --git a/dist/css/related-posts-block-styles.min.css b/dist/css/related-posts-block-styles.min.css deleted file mode 100644 index 7addbc46ae..0000000000 --- a/dist/css/related-posts-block-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.editor-styles-wrapper .wp-block-elasticpress-related-posts ul,.wp-block-elasticpress-related-posts ul{list-style-type:none;padding:0}.editor-styles-wrapper .wp-block-elasticpress-related-posts ul li a>div{display:inline} diff --git a/dist/css/sites-admin-styles.min.asset.php b/dist/css/sites-admin-styles.min.asset.php deleted file mode 100644 index 1121c6418e..0000000000 --- a/dist/css/sites-admin-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => 'b2e47e66474a3b20e3524480ba479c1e'); \ No newline at end of file diff --git a/dist/css/sites-admin-styles.min.css b/dist/css/sites-admin-styles.min.css deleted file mode 100644 index e497315b46..0000000000 --- a/dist/css/sites-admin-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.switch{display:inline-block;height:34px;position:relative;width:60px}.switch input{height:0;opacity:0;width:0}.slider{background-color:#ccc;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;-webkit-transition:.4s;transition:.4s}.slider:before{background-color:#fff;bottom:4px;content:"";height:26px;left:4px;position:absolute;-webkit-transition:.4s;transition:.4s;width:26px}input:checked+.slider{background-color:#2196f3}input:focus+.slider{-webkit-box-shadow:0 0 1px #2196f3;box-shadow:0 0 1px #2196f3}input:checked+.slider:before{-webkit-transform:translateX(26px);transform:translateX(26px)}.slider.round{border-radius:34px}.slider.round:before{border-radius:50%}.switch-label{padding-left:20px;padding-top:20px} diff --git a/dist/css/sync-styles.min.asset.php b/dist/css/sync-styles.min.asset.php deleted file mode 100644 index 7038a5e2ae..0000000000 --- a/dist/css/sync-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => 'a8e686d31cee10fff438081cc49ed675'); \ No newline at end of file diff --git a/dist/css/sync-styles.min.css b/dist/css/sync-styles.min.css deleted file mode 100644 index 374bfead75..0000000000 --- a/dist/css/sync-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -.elasticpress_page_elasticpress-sync .button:disabled{cursor:not-allowed}.ep-sync-box__progress-wrapper{display:none}.ep-sync-box__output{background-color:#1a1e24;display:none;margin-bottom:20px;max-height:200px;overflow-y:scroll;position:relative}.ep-sync-box__output_active{display:block}.ep-sync-box__output-wrapper{color:#fff;margin-left:30px;min-height:200px}.ep-sync-box__output-line{position:relative}.ep-sync-box__output-line-number{background-color:#303030;color:#999;left:-30px;min-width:20px;padding:0 3px 0 5px;position:absolute;text-align:right;white-space:nowrap}.ep-sync-box__output-line-text{font-size:9pt;padding-left:14px}.ep-sync-box__output-tabs{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.ep-sync-box__output-tabs_hide{display:none}.ep-sync-box__output-tab{color:#1e1e1e;padding:1pc}.ep-sync-box__output-tab:hover{cursor:pointer}.ep-sync-box__output-tab_active{border-bottom:4px solid #00a0d2;padding-bottom:9pt}.ep-sync-box__output-tab_active:hover{cursor:default}.ep-sync-box__button-text{height:21px}.elasticpress_page_elasticpress-sync .card{max-width:75pc}.elasticpress_page_elasticpress-sync .card .ep-sync-box__description-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.elasticpress_page_elasticpress-sync .card .ep-sync-box__description-actions{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media (min-width:768px){.elasticpress_page_elasticpress-sync .card .ep-sync-box__description{width:69%}}.elasticpress_page_elasticpress-sync .card .ep-sync-box__action{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:40px}@media (min-width:768px){.elasticpress_page_elasticpress-sync .card .ep-sync-box__action{width:30%}}.elasticpress_page_elasticpress-sync .card .ep-sync-box__action .ep-sync-box__button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:24px;font-weight:700;height:68px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:20px 40px;width:228px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__action .ep-sync-box__icon-button{font-size:28px;height:28px;width:28px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__action .ep-sync-box__learn-more-link{margin-top:19px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__description_text{font-size:18px}.elasticpress_page_elasticpress-sync .card .ep-last-sync{margin-bottom:9pt}.elasticpress_page_elasticpress-sync .card .ep-last-sync__title{font-size:20px;font-weight:700;margin-bottom:.5em}.elasticpress_page_elasticpress-sync .card .ep-last-sync__date{background-color:#f1f1f1;padding:6px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__buttons{display:-webkit-box;display:-ms-flexbox;display:flex}.elasticpress_page_elasticpress-sync .card .ep-sync-box__button-pause,.elasticpress_page_elasticpress-sync .card .ep-sync-box__button-resume,.elasticpress_page_elasticpress-sync .card .ep-sync-box__button-stop{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:68px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:75pt}.elasticpress_page_elasticpress-sync .card .ep-sync-box__button-stop{background-color:#00a0d2;border-color:#00a0d2;margin-left:24px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__progress{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:5px;margin-top:19px}@media (min-width:768px){.elasticpress_page_elasticpress-sync .card .ep-sync-box__progress{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.elasticpress_page_elasticpress-sync .card .ep-sync-box__sync-in-progress{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}@media (min-width:768px){.elasticpress_page_elasticpress-sync .card .ep-sync-box__sync-in-progress{width:30%}}.elasticpress_page_elasticpress-sync .card .ep-sync-box__progressbar{background-color:#f1f1f1;border-radius:24px;height:20px;margin:15px 0;position:relative;width:100%}@media (min-width:768px){.elasticpress_page_elasticpress-sync .card .ep-sync-box__progressbar{margin:0;width:65%}}.elasticpress_page_elasticpress-sync .card .ep-sync-box__progressbar_animated{background-color:rgba(0,160,210,.3);color:#333;display:block;height:100%;margin:0;text-align:center;-webkit-transition:width .5s ease-in-out;transition:width .5s ease-in-out;width:0}.elasticpress_page_elasticpress-sync .card .ep-sync-box__progressbar_complete{background-color:#46b450;color:#fff}.elasticpress_page_elasticpress-sync .card .ep-sync-box__sync-in-progress-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-left:9pt}.elasticpress_page_elasticpress-sync .card .ep-sync-box__progress-info{font-size:14px;font-weight:500;margin-bottom:5px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__start-time{color:#00a0d2;font-size:14px}.elasticpress_page_elasticpress-sync .card .ep-sync-box__start-time-date{color:#333}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync{margin-top:40px}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .card{margin-top:17px}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-delete-data-and-sync__title{color:#1d2327;font-size:18px;font-weight:400}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-delete-data-and-sync__warning{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex}@media (min-width:768px){.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-delete-data-and-sync__warning{width:69%}}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-delete-data-and-sync__warning-icon{margin-right:9px;margin-top:17px}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-delete-data-and-sync__button{background-color:rgba(181,39,39,.03);border:1px solid #b52727;color:#b52727;margin:5px 0 9pt}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-delete-data-and-sync__button-cancel{display:none}.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-sync-box__action{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:0;width:100%}@media (min-width:768px){.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-sync-box__action{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:68px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media (min-width:768px){.elasticpress_page_elasticpress-sync .ep-delete-data-and-sync .ep-sync-box__buttons{margin-right:5%}} diff --git a/dist/css/synonyms-styles.min.asset.php b/dist/css/synonyms-styles.min.asset.php deleted file mode 100644 index 3fee7937b9..0000000000 --- a/dist/css/synonyms-styles.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array(), 'version' => 'd6ec0a74dda1170df5ae372c70a7d786'); \ No newline at end of file diff --git a/dist/css/synonyms-styles.min.css b/dist/css/synonyms-styles.min.css deleted file mode 100644 index faa122429c..0000000000 --- a/dist/css/synonyms-styles.min.css +++ /dev/null @@ -1 +0,0 @@ -#synonym-root .page-title-action{margin-left:10px}#synonym-root .postbox .hndle{cursor:default}#synonym-root h2{color:#23282d}.synonym-alternatives-editor,.synonym-set-editor{display:-webkit-box;display:-ms-flexbox;display:flex}:is(.synonym-alternatives-editor,.synonym-set-editor)>.postbox{width:100%}:is(.synonym-alternatives-editor,.synonym-set-editor)>.postbox>.hndle{display:-webkit-box;display:-ms-flexbox;display:flex}:is(.synonym-alternatives-editor,.synonym-set-editor) .synonym-alternative-editor{display:-webkit-box;display:-ms-flexbox;display:flex}:is(.synonym-alternatives-editor,.synonym-set-editor) .ep-synonyms__linked-multi-input{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-bottom:.5em}:is(.synonym-alternatives-editor,.synonym-set-editor) .ep-synonyms__input{border:1px solid #ccc;margin-bottom:.5em;margin-right:1em;width:10em}:is(.synonym-alternatives-editor,.synonym-set-editor) .synonym-alternatives__primary-heading{width:11em}:is(.synonym-alternatives-editor,.synonym-set-editor) .synonym-alternatives__input-heading{-webkit-box-flex:1;-ms-flex:1;flex:1}:is(.synonym-alternatives-editor,.synonym-set-editor) .ep-synonyms__linked-multi-input input:focus{-webkit-box-shadow:none;box-shadow:none}:is(.synonym-alternatives-editor,.synonym-set-editor).invalid input{border-color:#a00}.synonym-alternative-editor,.synonym-set-editor{margin-top:.625em}button.synonym__remove{background-color:transparent;border:none;color:#a00;cursor:pointer;margin:-8px 0 0 10px;padding:0}button.synonym__remove .dashicons-dismiss{margin:-2px 2px 0 0}.synonym__validation:before{content:"";-ms-flex-preferred-size:100%;flex-basis:100%;height:0}.synonym-solr-editor__validation p,.synonym__validation{color:#a00;font-style:italic}.synonym__validation{margin:0 0 .625em .5em}.synonym-btn-group button.button{margin-right:.625em} diff --git a/dist/js/autosuggest-script.min.asset.php b/dist/js/autosuggest-script.min.asset.php deleted file mode 100644 index ff95831e43..0000000000 --- a/dist/js/autosuggest-script.min.asset.php +++ /dev/null @@ -1 +0,0 @@ - array('wp-polyfill'), 'version' => '457c836b9c89e0c1b7a117c190465da1'); \ No newline at end of file diff --git a/dist/js/autosuggest-script.min.js b/dist/js/autosuggest-script.min.js deleted file mode 100644 index 444a732a64..0000000000 --- a/dist/js/autosuggest-script.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(){var t={9662:function(t,e,r){var n=r(7854),o=r(614),i=r(6330),a=n.TypeError;t.exports=function(t){if(o(t))return t;throw a(i(t)+" is not a function")}},9483:function(t,e,r){var n=r(7854),o=r(4411),i=r(6330),a=n.TypeError;t.exports=function(t){if(o(t))return t;throw a(i(t)+" is not a constructor")}},6077:function(t,e,r){var n=r(7854),o=r(614),i=n.String,a=n.TypeError;t.exports=function(t){if("object"==typeof t||o(t))return t;throw a("Can't set "+i(t)+" as a prototype")}},1223:function(t,e,r){var n=r(5112),o=r(30),i=r(3070),a=n("unscopables"),u=Array.prototype;void 0==u[a]&&i.f(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},1530:function(t,e,r){"use strict";var n=r(8710).charAt;t.exports=function(t,e,r){return e+(r?n(t,e).length:1)}},5787:function(t,e,r){var n=r(7854),o=r(7976),i=n.TypeError;t.exports=function(t,e){if(o(e,t))return t;throw i("Incorrect invocation")}},9670:function(t,e,r){var n=r(7854),o=r(111),i=n.String,a=n.TypeError;t.exports=function(t){if(o(t))return t;throw a(i(t)+" is not an object")}},8533:function(t,e,r){"use strict";var n=r(2092).forEach,o=r(9341)("forEach");t.exports=o?[].forEach:function(t){return n(this,t,arguments.length>1?arguments[1]:void 0)}},8457:function(t,e,r){"use strict";var n=r(7854),o=r(9974),i=r(6916),a=r(7908),u=r(3411),c=r(7659),s=r(4411),f=r(6244),l=r(6135),p=r(8554),h=r(1246),d=n.Array;t.exports=function(t){var e=a(t),r=s(this),n=arguments.length,v=n>1?arguments[1]:void 0,y=void 0!==v;y&&(v=o(v,n>2?arguments[2]:void 0));var g,m,b,x,w,E,S=h(e),O=0;if(!S||this==d&&c(S))for(g=f(e),m=r?new this(g):d(g);g>O;O++)E=y?v(e[O],O):e[O],l(m,O,E);else for(w=(x=p(e,S)).next,m=r?new this:[];!(b=i(w,x)).done;O++)E=y?u(x,v,[b.value,O],!0):b.value,l(m,O,E);return m.length=O,m}},1318:function(t,e,r){var n=r(5656),o=r(1400),i=r(6244),a=function(t){return function(e,r,a){var u,c=n(e),s=i(c),f=o(a,s);if(t&&r!=r){for(;s>f;)if((u=c[f++])!=u)return!0}else for(;s>f;f++)if((t||f in c)&&c[f]===r)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},2092:function(t,e,r){var n=r(9974),o=r(1702),i=r(8361),a=r(7908),u=r(6244),c=r(5417),s=o([].push),f=function(t){var e=1==t,r=2==t,o=3==t,f=4==t,l=6==t,p=7==t,h=5==t||l;return function(d,v,y,g){for(var m,b,x=a(d),w=i(x),E=n(v,y),S=u(w),O=0,_=g||c,T=e?_(d,S):r||p?_(d,0):void 0;S>O;O++)if((h||O in w)&&(b=E(m=w[O],O,x),t))if(e)T[O]=b;else if(b)switch(t){case 3:return!0;case 5:return m;case 6:return O;case 2:s(T,m)}else switch(t){case 4:return!1;case 7:s(T,m)}return l?-1:o||f?f:T}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},1194:function(t,e,r){var n=r(7293),o=r(5112),i=r(7392),a=o("species");t.exports=function(t){return i>=51||!n((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},9341:function(t,e,r){"use strict";var n=r(7293);t.exports=function(t,e){var r=[][t];return!!r&&n((function(){r.call(null,e||function(){throw 1},1)}))}},206:function(t,e,r){var n=r(1702);t.exports=n([].slice)},4362:function(t,e,r){var n=r(206),o=Math.floor,i=function(t,e){var r=t.length,c=o(r/2);return r<8?a(t,e):u(t,i(n(t,0,c),e),i(n(t,c),e),e)},a=function(t,e){for(var r,n,o=t.length,i=1;i0;)t[n]=t[--n];n!==i++&&(t[n]=r)}return t},u=function(t,e,r,n){for(var o=e.length,i=r.length,a=0,u=0;a0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},8008:function(t,e,r){var n=r(8113).match(/AppleWebKit\/(\d+)\./);t.exports=!!n&&+n[1]},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(t,e,r){var n=r(7854),o=r(1236).f,i=r(8880),a=r(1320),u=r(3505),c=r(9920),s=r(4705);t.exports=function(t,e){var r,f,l,p,h,d=t.target,v=t.global,y=t.stat;if(r=v?n:y?n[d]||u(d,{}):(n[d]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(h=o(r,f))&&h.value:r[f],!s(v?f:d+(y?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;c(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(r,f,p,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},7007:function(t,e,r){"use strict";r(4916);var n=r(1702),o=r(1320),i=r(2261),a=r(7293),u=r(5112),c=r(8880),s=u("species"),f=RegExp.prototype;t.exports=function(t,e,r,l){var p=u(t),h=!a((function(){var e={};return e[p]=function(){return 7},7!=""[t](e)})),d=h&&!a((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[s]=function(){return r},r.flags="",r[p]=/./[p]),r.exec=function(){return e=!0,null},r[p](""),!e}));if(!h||!d||r){var v=n(/./[p]),y=e(p,""[t],(function(t,e,r,o,a){var u=n(t),c=e.exec;return c===i||c===f.exec?h&&!a?{done:!0,value:v(e,r,o)}:{done:!0,value:u(r,e,o)}:{done:!1}}));o(String.prototype,t,y[0]),o(f,p,y[1])}l&&c(f[p],"sham",!0)}},2104:function(t){var e=Function.prototype,r=e.apply,n=e.bind,o=e.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?o.bind(r):function(){return o.apply(r,arguments)})},9974:function(t,e,r){var n=r(1702),o=r(9662),i=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?i(t,e):function(){return t.apply(e,arguments)}}},6916:function(t){var e=Function.prototype.call;t.exports=e.bind?e.bind(e):function(){return e.apply(e,arguments)}},6530:function(t,e,r){var n=r(9781),o=r(2597),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,u=o(i,"name"),c=u&&"something"===function(){}.name,s=u&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:c,CONFIGURABLE:s}},1702:function(t){var e=Function.prototype,r=e.bind,n=e.call,o=r&&r.bind(n);t.exports=r?function(t){return t&&o(n,t)}:function(t){return t&&function(){return n.apply(t,arguments)}}},5005:function(t,e,r){var n=r(7854),o=r(614),i=function(t){return o(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?i(n[t]):n[t]&&n[t][e]}},1246:function(t,e,r){var n=r(648),o=r(8173),i=r(7497),a=r(5112)("iterator");t.exports=function(t){if(void 0!=t)return o(t,a)||o(t,"@@iterator")||i[n(t)]}},8554:function(t,e,r){var n=r(7854),o=r(6916),i=r(9662),a=r(9670),u=r(6330),c=r(1246),s=n.TypeError;t.exports=function(t,e){var r=arguments.length<2?c(t):e;if(i(r))return a(o(r,t));throw s(u(t)+" is not iterable")}},8173:function(t,e,r){var n=r(9662);t.exports=function(t,e){var r=t[e];return null==r?void 0:n(r)}},647:function(t,e,r){var n=r(1702),o=r(7908),i=Math.floor,a=n("".charAt),u=n("".replace),c=n("".slice),s=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,f=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,r,n,l,p){var h=r+t.length,d=n.length,v=f;return void 0!==l&&(l=o(l),v=s),u(p,v,(function(o,u){var s;switch(a(u,0)){case"$":return"$";case"&":return t;case"`":return c(e,0,r);case"'":return c(e,h);case"<":s=l[c(u,1,-1)];break;default:var f=+u;if(0===f)return o;if(f>d){var p=i(f/10);return 0===p?o:p<=d?void 0===n[p-1]?a(u,1):n[p-1]+a(u,1):o}s=n[f-1]}return void 0===s?"":s}))}},7854:function(t,e,r){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||function(){return this}()||Function("return this")()},2597:function(t,e,r){var n=r(1702),o=r(7908),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},3501:function(t){t.exports={}},842:function(t,e,r){var n=r(7854);t.exports=function(t,e){var r=n.console;r&&r.error&&(1==arguments.length?r.error(t):r.error(t,e))}},490:function(t,e,r){var n=r(5005);t.exports=n("document","documentElement")},4664:function(t,e,r){var n=r(9781),o=r(7293),i=r(317);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,e,r){var n=r(7854),o=r(1702),i=r(7293),a=r(4326),u=n.Object,c=o("".split);t.exports=i((function(){return!u("z").propertyIsEnumerable(0)}))?function(t){return"String"==a(t)?c(t,""):u(t)}:u},9587:function(t,e,r){var n=r(614),o=r(111),i=r(7674);t.exports=function(t,e,r){var a,u;return i&&n(a=e.constructor)&&a!==r&&o(u=a.prototype)&&u!==r.prototype&&i(t,u),t}},2788:function(t,e,r){var n=r(1702),o=r(614),i=r(5465),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},9909:function(t,e,r){var n,o,i,a=r(8536),u=r(7854),c=r(1702),s=r(111),f=r(8880),l=r(2597),p=r(5465),h=r(6200),d=r(3501),v="Object already initialized",y=u.TypeError,g=u.WeakMap;if(a||p.state){var m=p.state||(p.state=new g),b=c(m.get),x=c(m.has),w=c(m.set);n=function(t,e){if(x(m,t))throw new y(v);return e.facade=t,w(m,t,e),e},o=function(t){return b(m,t)||{}},i=function(t){return x(m,t)}}else{var E=h("state");d[E]=!0,n=function(t,e){if(l(t,E))throw new y(v);return e.facade=t,f(t,E,e),e},o=function(t){return l(t,E)?t[E]:{}},i=function(t){return l(t,E)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!s(e)||(r=o(e)).type!==t)throw y("Incompatible receiver, "+t+" required");return r}}}},7659:function(t,e,r){var n=r(5112),o=r(7497),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},3157:function(t,e,r){var n=r(4326);t.exports=Array.isArray||function(t){return"Array"==n(t)}},614:function(t){t.exports=function(t){return"function"==typeof t}},4411:function(t,e,r){var n=r(1702),o=r(7293),i=r(614),a=r(648),u=r(5005),c=r(2788),s=function(){},f=[],l=u("Reflect","construct"),p=/^\s*(?:class|function)\b/,h=n(p.exec),d=!p.exec(s),v=function(t){if(!i(t))return!1;try{return l(s,f,t),!0}catch(t){return!1}};t.exports=!l||o((function(){var t;return v(v.call)||!v(Object)||!v((function(){t=!0}))||t}))?function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return d||!!h(p,c(t))}:v},4705:function(t,e,r){var n=r(7293),o=r(614),i=/#|\.prototype\./,a=function(t,e){var r=c[u(t)];return r==f||r!=s&&(o(e)?n(e):!!e)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=a.data={},s=a.NATIVE="N",f=a.POLYFILL="P";t.exports=a},111:function(t,e,r){var n=r(614);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},1913:function(t){t.exports=!1},7850:function(t,e,r){var n=r(111),o=r(4326),i=r(5112)("match");t.exports=function(t){var e;return n(t)&&(void 0!==(e=t[i])?!!e:"RegExp"==o(t))}},2190:function(t,e,r){var n=r(7854),o=r(5005),i=r(614),a=r(7976),u=r(3307),c=n.Object;t.exports=u?function(t){return"symbol"==typeof t}:function(t){var e=o("Symbol");return i(e)&&a(e.prototype,c(t))}},408:function(t,e,r){var n=r(7854),o=r(9974),i=r(6916),a=r(9670),u=r(6330),c=r(7659),s=r(6244),f=r(7976),l=r(8554),p=r(1246),h=r(9212),d=n.TypeError,v=function(t,e){this.stopped=t,this.result=e},y=v.prototype;t.exports=function(t,e,r){var n,g,m,b,x,w,E,S=r&&r.that,O=!(!r||!r.AS_ENTRIES),_=!(!r||!r.IS_ITERATOR),T=!(!r||!r.INTERRUPTED),A=o(e,S),j=function(t){return n&&h(n,"normal",t),new v(!0,t)},P=function(t){return O?(a(t),T?A(t[0],t[1],j):A(t[0],t[1])):T?A(t,j):A(t)};if(_)n=t;else{if(!(g=p(t)))throw d(u(t)+" is not iterable");if(c(g)){for(m=0,b=s(t);b>m;m++)if((x=P(t[m]))&&f(y,x))return x;return new v(!1)}n=l(t,g)}for(w=n.next;!(E=i(w,n)).done;){try{x=P(E.value)}catch(t){h(n,"throw",t)}if("object"==typeof x&&x&&f(y,x))return x}return new v(!1)}},9212:function(t,e,r){var n=r(6916),o=r(9670),i=r(8173);t.exports=function(t,e,r){var a,u;o(t);try{if(!(a=i(t,"return"))){if("throw"===e)throw r;return r}a=n(a,t)}catch(t){u=!0,a=t}if("throw"===e)throw r;if(u)throw a;return o(a),r}},3383:function(t,e,r){"use strict";var n,o,i,a=r(7293),u=r(614),c=r(30),s=r(9518),f=r(1320),l=r(5112),p=r(1913),h=l("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(n=o):d=!0),void 0==n||a((function(){var t={};return n[h].call(t)!==t}))?n={}:p&&(n=c(n)),u(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},7497:function(t){t.exports={}},6244:function(t,e,r){var n=r(7466);t.exports=function(t){return n(t.length)}},5948:function(t,e,r){var n,o,i,a,u,c,s,f,l=r(7854),p=r(9974),h=r(1236).f,d=r(261).set,v=r(6833),y=r(1528),g=r(1036),m=r(5268),b=l.MutationObserver||l.WebKitMutationObserver,x=l.document,w=l.process,E=l.Promise,S=h(l,"queueMicrotask"),O=S&&S.value;O||(n=function(){var t,e;for(m&&(t=w.domain)&&t.exit();o;){e=o.fn,o=o.next;try{e()}catch(t){throw o?a():i=void 0,t}}i=void 0,t&&t.enter()},v||m||g||!b||!x?!y&&E&&E.resolve?((s=E.resolve(void 0)).constructor=E,f=p(s.then,s),a=function(){f(n)}):m?a=function(){w.nextTick(n)}:(d=p(d,l),a=function(){d(n)}):(u=!0,c=x.createTextNode(""),new b(n).observe(c,{characterData:!0}),a=function(){c.data=u=!u})),t.exports=O||function(t){var e={fn:t,next:void 0};i&&(i.next=e),o||(o=e,a()),i=e}},3366:function(t,e,r){var n=r(7854);t.exports=n.Promise},133:function(t,e,r){var n=r(7392),o=r(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},8536:function(t,e,r){var n=r(7854),o=r(614),i=r(2788),a=n.WeakMap;t.exports=o(a)&&/native code/.test(i(a))},8523:function(t,e,r){"use strict";var n=r(9662),o=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw TypeError("Bad Promise constructor");e=t,r=n})),this.resolve=n(e),this.reject=n(r)};t.exports.f=function(t){return new o(t)}},3929:function(t,e,r){var n=r(7854),o=r(7850),i=n.TypeError;t.exports=function(t){if(o(t))throw i("The method doesn't accept regular expressions");return t}},30:function(t,e,r){var n,o=r(9670),i=r(6048),a=r(748),u=r(3501),c=r(490),s=r(317),f=r(6200),l=f("IE_PROTO"),p=function(){},h=function(t){return"