From a96d506f047518372a8ba97ad56509b1298da522 Mon Sep 17 00:00:00 2001 From: Oliver Davies <339813+opdavies@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:19:03 +0200 Subject: [PATCH 01/27] feat: initial commit --- .dockerignore | 2 + .env.example | 12 + .githooks/pre-push | 7 + .githooks/prepare-commit-msg | 25 + .github/workflows/ci.yml | 25 + .gitignore | 40 + .hadolint.yaml | 2 + Dockerfile | 67 + LICENSE | 339 + README.md | 1 + build.yaml | 51 + composer.json | 169 + composer.lock | 16381 ++++++++++++++++ config/splits/ddev/.gitkeep | 0 config/splits/ddev/.htaccess | 24 + .../splits/ddev/symfony_mailer.settings.yml | 1 + config/sync/.gitkeep | 0 docker-compose.yaml | 77 + drush/Commands/PolicyCommands.php | 38 + drush/README.md | 1 + drush/drush.yml | 6 + drush/sites/self.site.yml | 14 + load.environment.php | 18 + .../3160146-layout-builder.patch | 129 + phpcs.xml.dist | 32 + phpstan.neon.dist | 9 + phpunit.xml.dist | 37 + run | 118 + scripts/composer/ScriptHandler.php | 97 + .../root/usr/local/bin/docker-entrypoint-php | 7 + .../images/php/root/usr/local/etc/php/php.ini | 4 + .../web/root/etc/nginx/conf.d/default.conf | 22 + web/libraries/jquery-ui-touch-punch/README.md | 41 + .../jquery-ui-touch-punch/bower.json | 10 + .../jquery-ui-touch-punch/composer.json | 10 + .../jquery.ui.touch-punch.js | 180 + .../jquery.ui.touch-punch.min.js | 11 + .../select2/dist/css/select2.min.css | 1 + web/libraries/select2/dist/js/select2.min.js | 2 + 39 files changed, 18010 insertions(+) create mode 100644 .dockerignore create mode 100644 .env.example create mode 100755 .githooks/pre-push create mode 100755 .githooks/prepare-commit-msg create mode 100644 .github/workflows/ci.yml create mode 100644 .gitignore create mode 100644 .hadolint.yaml create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 README.md create mode 100644 build.yaml create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/splits/ddev/.gitkeep create mode 100644 config/splits/ddev/.htaccess create mode 100644 config/splits/ddev/symfony_mailer.settings.yml create mode 100644 config/sync/.gitkeep create mode 100644 docker-compose.yaml create mode 100644 drush/Commands/PolicyCommands.php create mode 100644 drush/README.md create mode 100644 drush/drush.yml create mode 100644 drush/sites/self.site.yml create mode 100644 load.environment.php create mode 100644 patches/default_content/3160146-layout-builder.patch create mode 100644 phpcs.xml.dist create mode 100644 phpstan.neon.dist create mode 100644 phpunit.xml.dist create mode 100755 run create mode 100644 scripts/composer/ScriptHandler.php create mode 100755 tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php create mode 100644 tools/docker/images/php/root/usr/local/etc/php/php.ini create mode 100644 tools/docker/images/web/root/etc/nginx/conf.d/default.conf create mode 100644 web/libraries/jquery-ui-touch-punch/README.md create mode 100644 web/libraries/jquery-ui-touch-punch/bower.json create mode 100644 web/libraries/jquery-ui-touch-punch/composer.json create mode 100755 web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js create mode 100644 web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js create mode 100644 web/libraries/select2/dist/css/select2.min.css create mode 100644 web/libraries/select2/dist/js/select2.min.js diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..61d63c0 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +/README.md +/.github/ \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..01404f8 --- /dev/null +++ b/.env.example @@ -0,0 +1,12 @@ +# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. + +export DOCKER_UID=1000 + +export COMPOSE_PROJECT_NAME=docker-example-drupal-commerce-kickstart +export COMPOSE_PROFILES=web,php,database + +export DOCKER_WEB_VOLUME=.:/app + +export MYSQL_DATABASE=app +export MYSQL_PASSWORD=app +export MYSQL_USER=app diff --git a/.githooks/pre-push b/.githooks/pre-push new file mode 100755 index 0000000..2233106 --- /dev/null +++ b/.githooks/pre-push @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. + +set -euo pipefail + +just test-commit diff --git a/.githooks/prepare-commit-msg b/.githooks/prepare-commit-msg new file mode 100755 index 0000000..26059bb --- /dev/null +++ b/.githooks/prepare-commit-msg @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. + +# Load the issue ID from an `.issue-id` file within the project and replace the +# `ISSUE_ID` placeholder within a Git commit message. +# +# For example, running `echo "OD-123" > .issue-id` will add `Refs: OD-123` to +# the commit message. +# +# This also works with multiple issue IDs in the same string, e.g. +# "OD-123 OD-456", or IDs on multiple lines. + +set -euo pipefail + +PROJECT_DIR=$(git rev-parse --show-toplevel) +ISSUE_FILE="$PROJECT_DIR/.issue-id" + +if [ -f "${ISSUE_FILE}" ]; then + ISSUE_IDS=$(cat "${ISSUE_FILE}" | tr '\n' ',' | tr ' ' ',' | sed 's/,$//' | sed 's/,/, /g') + + if [ -n "${ISSUE_IDS}" ]; then + sed -i.bak "s/# Refs:/Refs: $ISSUE_IDS/" "$1" + fi +fi diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..868fe2e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: + pull_request: + push: + workflow_dispatch: + +env: + COMPOSE_DOCKER_CLI_BUILD: 1 + DOCKER_BUILDKIT: 1 + DOCKER_UID: 1001 + +jobs: + build_and_test: + name: Build and test + + runs-on: ubuntu-latest + + steps: + - name: Checkout the code + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 + + - name: Build and test + run: | + ./run ci:test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8f526a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. + +.editorconfig +.env +.gitattributes +vendor/ +web/.csslintrc +web/.eslintignore +web/.eslintrc.json +web/.ht.router.php +web/.htaccess +web/INSTALL.txt +web/README.md +web/autoload.php +web/core/ +web/example.gitignore +web/index.php +web/modules/README.txt +web/modules/contrib/ +web/profiles/README.txt +web/robots.txt +web/sites/*/files/ +web/sites/*/private/ +web/sites/*/services*.yml +web/sites/*/settings*.php +web/sites/README.txt +web/sites/default/default.services.yml +web/sites/default/default.settings.php +web/sites/development.services.yml +web/sites/example.settings.local.php +web/sites/example.sites.php +web/sites/simpletest/ +web/themes/README.txt +web/themes/contrib/ +web/update.php +web/web.config + +# Docker. +.env +docker-compose.override.yaml diff --git a/.hadolint.yaml b/.hadolint.yaml new file mode 100644 index 0000000..d87bf88 --- /dev/null +++ b/.hadolint.yaml @@ -0,0 +1,2 @@ +ignore: + - DL3059 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c83003d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,67 @@ +# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. + +FROM php:8.1-fpm-bullseye AS base + +COPY --from=composer:2 /usr/bin/composer /usr/bin/composer +RUN which composer && composer -V + +ARG DOCKER_UID=1000 +ENV DOCKER_UID="${DOCKER_UID}" + +WORKDIR /app + +RUN adduser --disabled-password --uid "${DOCKER_UID}" app \ + && chown app:app -R /app + +USER app + +ENV PATH="${PATH}:/app/bin:/app/vendor/bin" + +COPY --chown=app:app composer.* ./ + +################################################################################ + +FROM base AS build + +USER root + + +RUN apt-get update -yqq \ + && apt-get install -yqq --no-install-recommends \ + git libpng-dev libjpeg-dev libzip-dev mariadb-client unzip \ + && rm -rf /var/lib/apt/lists/* /usr/share/doc /usr/share/man \ + && apt-get clean + +RUN docker-php-ext-configure gd --with-jpeg + +RUN docker-php-ext-install bcmath gd pdo_mysql zip + +COPY --chown=app:app phpunit.xml* ./ + +COPY --chown=app:app config config +COPY --chown=app:app patches patches +COPY --chown=app:app scripts scripts + + +USER app + +RUN composer validate +RUN composer install + +COPY --chown=app:app tools/docker/images/php/root / + +ENTRYPOINT ["/usr/local/bin/docker-entrypoint-php"] +CMD ["php-fpm"] + + + + +################################################################################ + +FROM nginx:1 as web + +EXPOSE 8080 + +WORKDIR /app + +COPY tools/docker/images/web/root / diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..23cb790 --- /dev/null +++ b/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + {signature of Ty Coon}, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..9d165d5 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# docker-example-drupal-commerce-kickstart \ No newline at end of file diff --git a/build.yaml b/build.yaml new file mode 100644 index 0000000..64610e4 --- /dev/null +++ b/build.yaml @@ -0,0 +1,51 @@ +name: docker-example-drupal-commerce-kickstart +language: php +type: drupal + +web: + type: nginx + +database: + type: mariadb + version: 10 + +php: + version: 8.1-fpm-bullseye + phpcs: + paths: + - web/modules/custom + standards: + - Drupal + - DrupalPractice + phpstan: + level: max + paths: + - web/modules/custom + +drupal: + docroot: web + +docker-compose: + services: + - database + - php + - web + +dockerfile: + stages: + build: + extra_directories: + - config + - patches + - scripts + commands: + - composer validate + - composer install + extensions: + install: + - bcmath + +experimental: + createGitHubActionsConfiguration: true + runGitHooksBeforePush: true + useNewDatabaseCredentials: true diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..5456936 --- /dev/null +++ b/composer.json @@ -0,0 +1,169 @@ +{ + "name": "centarro/commerce-kickstart-project", + "description": "Centarro Commerce Kickstart 3.x project template", + "type": "project", + "license": "GPL-2.0-or-later", + "authors": [ + { + "name": "Centarro", + "role": "info@centarro.io" + } + ], + "repositories": { + "commerce_demo": { + "type": "vcs", + "url": "https://git.drupalcode.org/project/commerce_demo.git" + }, + "jquery-ui-touch-punch": { + "type": "package", + "package": { + "name": "furf/jquery-ui-touch-punch", + "version": "0.2.3", + "type": "drupal-library", + "dist": { + "type": "zip", + "url": "https://github.com/furf/jquery-ui-touch-punch/archive/4bc009145202d9c7483ba85f3a236a8f3470354d.zip" + } + } + }, + "select2": { + "type": "package", + "package": { + "name": "select2/select2", + "version": "4.1.0-rc.0", + "type": "drupal-library", + "dist": { + "type": "zip", + "url": "https://github.com/select2/select2/archive/refs/tags/4.1.0-rc.0.zip" + } + } + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, + "config": { + "bin-dir": "bin", + "sort-packages": true, + "allow-plugins": { + "composer/installers": true, + "dealerdirect/phpcodesniffer-composer-installer": true, + "cweagans/composer-patches": true, + "drupal/core-composer-scaffold": true, + "drupal/core-project-message": true, + "oomphinc/composer-installers-extender": true, + "phpstan/extension-installer": true, + "zaporylie/composer-drupal-optimizations": true + } + }, + "require": { + "php": ">=8.1", + "ext-curl": "*", + "centarro/certified-projects": "^1.0", + "centarro/commerce_kickstart": "^3.0", + "composer/installers": "^2.0", + "cweagans/composer-patches": "^1.7", + "drupal/core-composer-scaffold": "^10", + "drupal/core-project-message": "^10", + "drupal/core-recommended": "^10", + "drupal/default_content": "^2", + "drush/drush": "^11.4", + "vlucas/phpdotenv": "^5.1", + "webflo/drupal-finder": "^1.2", + "webmozart/path-util": "^2.3" + }, + "require-dev": { + "drupal/core-dev": "^10", + "zaporylie/composer-drupal-optimizations": "^1.2" + }, + "conflict": { + "drupal/drupal": "*" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "autoload": { + "classmap": [ + "scripts/composer/ScriptHandler.php" + ], + "files": ["load.environment.php"] + }, + "scripts": { + "drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", + "pre-install-cmd": [ + "DrupalProject\\composer\\ScriptHandler::checkComposerVersion" + ], + "pre-update-cmd": [ + "DrupalProject\\composer\\ScriptHandler::checkComposerVersion" + ], + "post-install-cmd": [ + "DrupalProject\\composer\\ScriptHandler::createRequiredFiles" + ], + "post-update-cmd": [ + "DrupalProject\\composer\\ScriptHandler::createRequiredFiles" + ] + }, + "extra": { + "composer-exit-on-patch-failure": true, + "patches": { + "drupal/default_content": { + "#3160146 Add a Normalizer and Denormalizer to support Layout Builder": "patches/default_content/3160146-layout-builder.patch" + } + }, + "patchLevel": { + "drupal/core": "-p2", + "drupal/default_content": "-p1" + }, + "drupal-scaffold": { + "locations": { + "web-root": "web/" + }, + "overwrite": true, + "file-mapping": { + "[web-root]/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js": "libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js", + "[web-root]/libraries/select2/dist/js/select2.min.js": "libraries/select2/dist/js/select2.min.js", + "[web-root]/libraries/select2/dist/css/select2.min.css": "libraries/select2/dist/css/select2.min.css" + } + }, + "installer-paths": { + "web/core": ["type:drupal-core"], + "libraries/{$name}": [ + "furf/jquery-ui-touch-punch", + "select2/select2" + ], + "web/libraries/{$name}": [ + "type:drupal-library" + ], + "web/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "web/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "web/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "drush/Commands/contrib/{$name}": [ + "type:drupal-drush" + ] + }, + "drupal-core-project-message": { + "include-keys": ["homepage", "support"], + "post-create-project-cmd-message": [ + " ", + " Congratulations, you installed Commerce Kickstart! ", + " ", + "", + "Next steps:", + + " * Install the site: https://www.drupal.org/docs/installing-drupal", + " * Read the Drupal Commerce docs: https://docs.drupalcommerce.org/commerce2", + " * Get support: https://drupal.stackexchange.com/", + " * Get involved with the Drupal community:", + " https://www.drupal.org/getting-involved", + " * Remove the plugin that prints this message:", + " composer remove drupal/core-project-message" + ] + } + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..5a9a975 --- /dev/null +++ b/composer.lock @@ -0,0 +1,16381 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "403679965fc37dcb9658757849173e4e", + "packages": [ + { + "name": "apimatic/jsonmapper", + "version": "3.1.2", + "source": { + "type": "git", + "url": "https://github.com/apimatic/jsonmapper.git", + "reference": "6673a946c21f2ceeec0cb60d17541c11a22bc79d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/apimatic/jsonmapper/zipball/6673a946c21f2ceeec0cb60d17541c11a22bc79d", + "reference": "6673a946c21f2ceeec0cb60d17541c11a22bc79d", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^5.6 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "squizlabs/php_codesniffer": "^3.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "apimatic\\jsonmapper\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "OSL-3.0" + ], + "authors": [ + { + "name": "Christian Weiske", + "email": "christian.weiske@netresearch.de", + "homepage": "http://www.netresearch.de/", + "role": "Developer" + }, + { + "name": "Mehdi Jaffery", + "email": "mehdi.jaffery@apimatic.io", + "homepage": "http://apimatic.io/", + "role": "Developer" + } + ], + "description": "Map nested JSON structures onto PHP classes", + "support": { + "email": "mehdi.jaffery@apimatic.io", + "issues": "https://github.com/apimatic/jsonmapper/issues", + "source": "https://github.com/apimatic/jsonmapper/tree/3.1.2" + }, + "time": "2023-06-08T04:27:10+00:00" + }, + { + "name": "apimatic/unirest-php", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/apimatic/unirest-php.git", + "reference": "52e226fb3b7081dc9ef64aee876142a240a5f0f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/apimatic/unirest-php/zipball/52e226fb3b7081dc9ef64aee876142a240a5f0f9", + "reference": "52e226fb3b7081dc9ef64aee876142a240a5f0f9", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.6.0" + }, + "require-dev": { + "phpunit/phpunit": "^5 || ^6 || ^7 || ^8 || ^9" + }, + "suggest": { + "ext-json": "Allows using JSON Bodies for sending and parsing requests" + }, + "type": "library", + "autoload": { + "psr-0": { + "Unirest\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mashape", + "email": "opensource@mashape.com", + "homepage": "https://www.mashape.com", + "role": "Developer" + }, + { + "name": "APIMATIC", + "email": "opensource@apimatic.io", + "homepage": "https://www.apimatic.io", + "role": "Developer" + } + ], + "description": "Unirest PHP", + "homepage": "https://github.com/apimatic/unirest-php", + "keywords": [ + "client", + "curl", + "http", + "https", + "rest" + ], + "support": { + "email": "opensource@apimatic.io", + "issues": "https://github.com/apimatic/unirest-php/issues", + "source": "https://github.com/apimatic/unirest-php/tree/2.3.0" + }, + "time": "2022-06-15T08:29:49+00:00" + }, + { + "name": "asm89/stack-cors", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/asm89/stack-cors.git", + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "symfony/http-foundation": "^4|^5|^6", + "symfony/http-kernel": "^4|^5|^6" + }, + "require-dev": { + "phpunit/phpunit": "^7|^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "psr-4": { + "Asm89\\Stack\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander", + "email": "iam.asm89@gmail.com" + } + ], + "description": "Cross-origin resource sharing library and stack middleware", + "homepage": "https://github.com/asm89/stack-cors", + "keywords": [ + "cors", + "stack" + ], + "support": { + "issues": "https://github.com/asm89/stack-cors/issues", + "source": "https://github.com/asm89/stack-cors/tree/v2.1.1" + }, + "time": "2022-01-18T09:12:03+00:00" + }, + { + "name": "braintree/braintree_php", + "version": "3.40.0", + "source": { + "type": "git", + "url": "https://github.com/braintree/braintree_php.git", + "reference": "840fc6ebf8d96756fed475cce94565fef178187d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/braintree/braintree_php/zipball/840fc6ebf8d96756fed475cce94565fef178187d", + "reference": "840fc6ebf8d96756fed475cce94565fef178187d", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-dom": "*", + "ext-hash": "*", + "ext-openssl": "*", + "ext-xmlwriter": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "3.7.*" + }, + "type": "library", + "autoload": { + "psr-0": { + "Braintree": "lib/" + }, + "psr-4": { + "Braintree\\": "lib/Braintree" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Braintree", + "homepage": "https://www.braintreepayments.com" + } + ], + "description": "Braintree PHP Client Library", + "support": { + "issues": "https://github.com/braintree/braintree_php/issues", + "source": "https://github.com/braintree/braintree_php/tree/3.40.0" + }, + "time": "2019-03-28T23:16:53+00:00" + }, + { + "name": "centarro/centarro_claro", + "version": "1.x-dev", + "source": { + "type": "git", + "url": "https://github.com/centarro/centarro_claro.git", + "reference": "14a2eb93d386e3fe8535dc927bee25a4b79f3527" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/centarro/centarro_claro/zipball/14a2eb93d386e3fe8535dc927bee25a4b79f3527", + "reference": "14a2eb93d386e3fe8535dc927bee25a4b79f3527", + "shasum": "" + }, + "default-branch": true, + "type": "drupal-theme", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Admin theme based on Claro used for Centarro projects.", + "support": { + "issues": "https://github.com/centarro/centarro_claro/issues", + "source": "https://github.com/centarro/centarro_claro/tree/1.x" + }, + "time": "2023-05-31T16:20:08+00:00" + }, + { + "name": "centarro/certified-projects", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/centarro/certified-projects.git", + "reference": "9ad11350b07b2d13e127da9d21f0a1fc506dc6bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/centarro/certified-projects/zipball/9ad11350b07b2d13e127da9d21f0a1fc506dc6bb", + "reference": "9ad11350b07b2d13e127da9d21f0a1fc506dc6bb", + "shasum": "" + }, + "require": { + "centarro/centarro_claro": "1.x-dev", + "drupal/belgrade": "^2", + "drupal/commerce_authnet": "^1.6", + "drupal/commerce_avatax": "^1.1", + "drupal/commerce_braintree": "^1.3", + "drupal/commerce_email": "^1.1", + "drupal/commerce_file": "^2.0", + "drupal/commerce_license": "^3", + "drupal/commerce_paypal": "^1.0", + "drupal/commerce_pricelist": "^2.4", + "drupal/commerce_product_limits": "^1.0", + "drupal/commerce_product_tax": "^1.0", + "drupal/commerce_shipping": "^2.3", + "drupal/commerce_square": "^1.5", + "drupal/commerce_store_domain": "^1.0" + }, + "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Centarro", + "email": "info@centarro.io" + } + ], + "description": "Drupal Commerce related projects maintained by Centarro to the same standards as Commerce Core.", + "homepage": "https://www.centarro.io", + "support": { + "issues": "https://github.com/centarro/certified-projects/issues", + "source": "https://github.com/centarro/certified-projects/tree/1.0.4" + }, + "time": "2023-05-31T15:07:30+00:00" + }, + { + "name": "centarro/commerce_kickstart", + "version": "3.x-dev", + "source": { + "type": "git", + "url": "https://github.com/centarro/commerce_kickstart.git", + "reference": "1614bc66ec1b1daf1a89b621b131b44af7b2e47e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/centarro/commerce_kickstart/zipball/1614bc66ec1b1daf1a89b621b131b44af7b2e47e", + "reference": "1614bc66ec1b1daf1a89b621b131b44af7b2e47e", + "shasum": "" + }, + "require": { + "drupal/admin_toolbar": "^3.0", + "drupal/better_exposed_filters": "^6", + "drupal/block_visibility_conditions": "^2.1", + "drupal/bootstrap_basic_image_gallery": "^1.5", + "drupal/bootstrap_layout_builder": "^2.0", + "drupal/color": "^1", + "drupal/commerce": "^2.35", + "drupal/config_rewrite": "^1.4", + "drupal/config_split": "^2.0@beta", + "drupal/core_views_facets": "^2.0", + "drupal/facets_pretty_paths": "^1.2", + "drupal/field_group": "^3.2", + "drupal/image_delta_formatter": "^1.1", + "drupal/inline_block_title_automatic": "^1.0", + "drupal/jquery_ui_touch_punch": "^1.0", + "drupal/layout_builder_blocks": "^1.0", + "drupal/layout_builder_lock": "^1.1", + "drupal/layout_builder_modal": "^1.1", + "drupal/layout_builder_operation_link": "^2.1", + "drupal/layout_builder_restrictions": "^2.12", + "drupal/search_api": "^1.23", + "drupal/section_library": "^1.0", + "drupal/select2": "^1.13", + "drupal/symfony_mailer": "^1.2", + "drupal/token": "^1.0", + "furf/jquery-ui-touch-punch": "0.2.3", + "oomphinc/composer-installers-extender": "^2.0", + "select2/select2": "4.1.0-rc.0" + }, + "require-dev": { + "centarro/certified-projects": "^1.1", + "composer/installers": "^1.2", + "cweagans/composer-patches": "^1.6.5", + "dealerdirect/phpcodesniffer-composer-installer": "~0.6 || ~0.7", + "drupal/commerce_demo": "3.0.x-dev", + "drupal/core-composer-scaffold": "^10", + "drupal/core-dev": "^10", + "drupal/devel": "^4.1", + "drupal/features": "^3.12", + "drupal/masquerade": "^2.0", + "drush/drush": "^11.4", + "kporras07/composer-symlinks": "^1.1", + "mglaman/phpstan-drupal": "~0.12.0", + "phpspec/prophecy-phpunit": "^2", + "phpstan/phpstan-deprecation-rules": "~0.12.0" + }, + "default-branch": true, + "type": "drupal-profile", + "extra": { + "symlinks": { + "commerce_kickstart.profile": "web/profiles/commerce_kickstart/commerce_kickstart.profile", + "commerce_kickstart.install": "web/profiles/commerce_kickstart/commerce_kickstart.install", + "commerce_kickstart.info.yml": "web/profiles/commerce_kickstart/commerce_kickstart.info.yml", + "commerce_kickstart.links.menu.yml": "web/profiles/commerce_kickstart/commerce_kickstart.links.menu.yml", + "commerce_kickstart.services.yml": "web/profiles/commerce_kickstart/commerce_kickstart.services.yml", + "src": "web/profiles/commerce_kickstart/src", + "modules": "web/profiles/commerce_kickstart/modules", + "themes": "web/profiles/commerce_kickstart/themes", + "config/install": "web/profiles/commerce_kickstart/config/install", + "config/optional": "web/profiles/commerce_kickstart/config/optional", + "content": "web/profiles/commerce_kickstart/content" + }, + "drupal-scaffold": { + "locations": { + "web-root": "./web" + }, + "overwrite": true, + "file-mapping": { + "[web-root]/sites/default/settings.php": "assets/settings.php", + "[web-root]/sites/default/settings.lando.php": "assets/settings.lando.php", + "[web-root]/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js": "libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js", + "[web-root]/libraries/select2/dist/js/select2.min.js": "libraries/select2/dist/js/select2.min.js", + "[web-root]/libraries/select2/dist/css/select2.min.css": "libraries/select2/dist/css/select2.min.css" + } + }, + "installer-name": "commerce_kickstart", + "installer-paths": { + "web/core": [ + "type:drupal-core" + ], + "web/profiles/{$name}": [ + "type:drupal-profile" + ], + "web/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "web/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "libraries/{$name}": [ + "furf/jquery-ui-touch-punch", + "select2/select2" + ], + "web/libraries/{$name}": [ + "type:drupal-library" + ], + "web/modules/custom/{$name}": [ + "type:drupal-custom-module" + ], + "web/themes/custom/{$name}": [ + "type:drupal-custom-theme" + ], + "drush/contrib/{$name}": [ + "type:drupal-drush" + ] + }, + "enable-patching": true, + "composer-exit-on-patch-failure": true, + "patches": { + "drupal/bootstrap_basic_image_gallery": { + "#3363948 - Fix D10 compatibility issues": "https://www.drupal.org/files/issues/2023-06-01/3363948-3.patch" + } + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Commerce Kickstart installation profile.", + "homepage": "https://www.drupal.org/project/commerce_kickstart", + "support": { + "source": "https://github.com/centarro/commerce_kickstart/tree/3.x" + }, + "time": "2023-08-16T12:42:15+00:00" + }, + { + "name": "chi-teck/drupal-code-generator", + "version": "2.6.2", + "source": { + "type": "git", + "url": "https://github.com/Chi-teck/drupal-code-generator.git", + "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980", + "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": ">=7.4", + "psr/log": "^1.1 || ^2.0 || ^3.0", + "symfony/console": "^4.4.15 || ^5.1 || ^6.0", + "symfony/filesystem": "^4.4 || ^5.1 || ^6", + "symfony/polyfill-php80": "^1.23", + "symfony/string": "^5.1 || ^6", + "twig/twig": "^2.14.11 || ^3.1" + }, + "conflict": { + "squizlabs/php_codesniffer": "<3.6" + }, + "require-dev": { + "chi-teck/drupal-coder-extension": "^1.2", + "drupal/coder": "^8.3.14", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.4", + "squizlabs/php_codesniffer": "^3.5", + "symfony/var-dumper": "^5.2 || ^6.0", + "symfony/yaml": "^5.2 || ^6.0" + }, + "bin": [ + "bin/dcg" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "DrupalCodeGenerator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Drupal code generator", + "support": { + "issues": "https://github.com/Chi-teck/drupal-code-generator/issues", + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2" + }, + "time": "2022-11-11T15:34:04+00:00" + }, + { + "name": "commerceguys/addressing", + "version": "v1.4.2", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/addressing.git", + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "shasum": "" + }, + "require": { + "doctrine/collections": "^1.2 || ^2.0", + "php": ">=7.3" + }, + "require-dev": { + "ext-json": "*", + "mikey179/vfsstream": "^1.6.10", + "phpunit/phpunit": "^9.5", + "squizlabs/php_codesniffer": "^3.6", + "symfony/validator": "^4.4 || ^5.4 || ^6.0" + }, + "suggest": { + "symfony/validator": "to validate addresses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "CommerceGuys\\Addressing\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bojan Zivanovic" + }, + { + "name": "Damien Tournoud" + } + ], + "description": "Addressing library powered by CLDR and Google's address data.", + "keywords": [ + "address", + "internationalization", + "localization", + "postal" + ], + "support": { + "issues": "https://github.com/commerceguys/addressing/issues", + "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" + }, + "time": "2023-02-15T10:11:14+00:00" + }, + { + "name": "commerceguys/authnet", + "version": "v1.1.3", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/authnet.git", + "reference": "c3f5877aa9615884b23f948073c57ee787b2fb4a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/authnet/zipball/c3f5877aa9615884b23f948073c57ee787b2fb4a", + "reference": "c3f5877aa9615884b23f948073c57ee787b2fb4a", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.2 || ^7.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.5.23", + "squizlabs/php_codesniffer": "~2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "CommerceGuys\\AuthNet\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "PHP SDK for Authorize.Net API, using Guzzle.", + "keywords": [ + "authorize.net", + "authorizenet", + "ecommerce", + "payment" + ], + "support": { + "issues": "https://github.com/commerceguys/authnet/issues", + "source": "https://github.com/commerceguys/authnet/tree/v1.1.3" + }, + "time": "2023-03-02T13:27:53+00:00" + }, + { + "name": "commerceguys/intl", + "version": "v2.0.4", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/intl.git", + "reference": "f78fe7f9bdb239d1f4cf441f61c6f950b03720bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/intl/zipball/f78fe7f9bdb239d1f4cf441f61c6f950b03720bb", + "reference": "f78fe7f9bdb239d1f4cf441f61c6f950b03720bb", + "shasum": "" + }, + "require": { + "php": ">=8.0" + }, + "require-dev": { + "mikey179/vfsstream": "1.*", + "phpunit/phpunit": "^10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "CommerceGuys\\Intl\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bojan Zivanovic" + }, + { + "name": "Jonathan Sacksick" + } + ], + "description": "Internationalization library powered by CLDR data.", + "support": { + "issues": "https://github.com/commerceguys/intl/issues", + "source": "https://github.com/commerceguys/intl/tree/v2.0.4" + }, + "time": "2023-04-17T12:17:15+00:00" + }, + { + "name": "composer/installers", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/composer/installers.git", + "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35", + "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "composer/composer": "1.6.* || ^2.0", + "composer/semver": "^1 || ^3", + "phpstan/phpstan": "^0.12.55", + "phpstan/phpstan-phpunit": "^0.12.16", + "symfony/phpunit-bridge": "^5.3", + "symfony/process": "^5" + }, + "type": "composer-plugin", + "extra": { + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-main": "2.x-dev" + }, + "plugin-modifies-install-path": true + }, + "autoload": { + "psr-4": { + "Composer\\Installers\\": "src/Composer/Installers" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" + } + ], + "description": "A multi-framework Composer library installer", + "homepage": "https://composer.github.io/installers/", + "keywords": [ + "Dolibarr", + "Eliasis", + "Hurad", + "ImageCMS", + "Kanboard", + "Lan Management System", + "MODX Evo", + "MantisBT", + "Mautic", + "Maya", + "OXID", + "Plentymarkets", + "Porto", + "RadPHP", + "SMF", + "Starbug", + "Thelia", + "Whmcs", + "WolfCMS", + "agl", + "annotatecms", + "attogram", + "bitrix", + "cakephp", + "chef", + "cockpit", + "codeigniter", + "concrete5", + "croogo", + "dokuwiki", + "drupal", + "eZ Platform", + "elgg", + "expressionengine", + "fuelphp", + "grav", + "installer", + "itop", + "known", + "kohana", + "laravel", + "lavalite", + "lithium", + "magento", + "majima", + "mako", + "matomo", + "mediawiki", + "miaoxing", + "modulework", + "modx", + "moodle", + "osclass", + "pantheon", + "phpbb", + "piwik", + "ppi", + "processwire", + "puppet", + "pxcms", + "reindex", + "roundcube", + "shopware", + "silverstripe", + "sydes", + "sylius", + "tastyigniter", + "wordpress", + "yawik", + "zend", + "zikula" + ], + "support": { + "issues": "https://github.com/composer/installers/issues", + "source": "https://github.com/composer/installers/tree/v2.2.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2022-08-20T06:45:11+00:00" + }, + { + "name": "composer/semver", + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", + "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.3.2" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2022-04-01T19:23:25+00:00" + }, + { + "name": "consolidation/annotated-command", + "version": "4.9.1", + "source": { + "type": "git", + "url": "https://github.com/consolidation/annotated-command.git", + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", + "shasum": "" + }, + "require": { + "consolidation/output-formatters": "^4.3.1", + "php": ">=7.1.3", + "psr/log": "^1 || ^2 || ^3", + "symfony/console": "^4.4.8 || ^5 || ^6", + "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6", + "symfony/finder": "^4.4.8 || ^5 || ^6" + }, + "require-dev": { + "composer-runtime-api": "^2.0", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Consolidation\\AnnotatedCommand\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "Initialize Symfony Console commands from annotated command class methods.", + "support": { + "issues": "https://github.com/consolidation/annotated-command/issues", + "source": "https://github.com/consolidation/annotated-command/tree/4.9.1" + }, + "time": "2023-05-20T04:19:01+00:00" + }, + { + "name": "consolidation/config", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://github.com/consolidation/config.git", + "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae", + "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "grasmash/expander": "^2.0.1 || ^3", + "php": ">=7.1.3", + "symfony/event-dispatcher": "^4 || ^5 || ^6" + }, + "require-dev": { + "ext-json": "*", + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "symfony/console": "^4 || ^5 || ^6", + "symfony/yaml": "^4 || ^5 || ^6", + "yoast/phpunit-polyfills": "^1" + }, + "suggest": { + "symfony/event-dispatcher": "Required to inject configuration into Command options", + "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Consolidation\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "Provide configuration services for a commandline tool.", + "support": { + "issues": "https://github.com/consolidation/config/issues", + "source": "https://github.com/consolidation/config/tree/2.1.2" + }, + "time": "2022-10-06T17:48:03+00:00" + }, + { + "name": "consolidation/filter-via-dot-access-data", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/consolidation/filter-via-dot-access-data.git", + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", + "php": ">=7.1.3" + }, + "require-dev": { + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Consolidation\\Filter\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.", + "support": { + "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2" + }, + "time": "2021-12-30T03:56:08+00:00" + }, + { + "name": "consolidation/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/consolidation/log.git", + "reference": "caaad9d70dae54eb49002666f000e3c607066878" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878", + "reference": "caaad9d70dae54eb49002666f000e3c607066878", + "shasum": "" + }, + "require": { + "php": ">=8.0.0", + "psr/log": "^3", + "symfony/console": "^5 || ^6" + }, + "require-dev": { + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Consolidation\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", + "support": { + "issues": "https://github.com/consolidation/log/issues", + "source": "https://github.com/consolidation/log/tree/3.0.0" + }, + "time": "2022-04-05T16:53:32+00:00" + }, + { + "name": "consolidation/output-formatters", + "version": "4.3.2", + "source": { + "type": "git", + "url": "https://github.com/consolidation/output-formatters.git", + "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58", + "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "php": ">=7.1.3", + "symfony/console": "^4 || ^5 || ^6", + "symfony/finder": "^4 || ^5 || ^6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.4.2", + "phpunit/phpunit": "^7 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "symfony/var-dumper": "^4 || ^5 || ^6", + "symfony/yaml": "^4 || ^5 || ^6", + "yoast/phpunit-polyfills": "^1" + }, + "suggest": { + "symfony/var-dumper": "For using the var_dump formatter" + }, + "type": "library", + "autoload": { + "psr-4": { + "Consolidation\\OutputFormatters\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "Format text by applying transformations provided by plug-in formatters.", + "support": { + "issues": "https://github.com/consolidation/output-formatters/issues", + "source": "https://github.com/consolidation/output-formatters/tree/4.3.2" + }, + "time": "2023-07-06T04:45:41+00:00" + }, + { + "name": "consolidation/robo", + "version": "4.0.6", + "source": { + "type": "git", + "url": "https://github.com/consolidation/robo.git", + "reference": "55a272370940607649e5c46eb173c5c54f7c166d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d", + "reference": "55a272370940607649e5c46eb173c5c54f7c166d", + "shasum": "" + }, + "require": { + "consolidation/annotated-command": "^4.8.1", + "consolidation/config": "^2.0.1", + "consolidation/log": "^2.0.2 || ^3", + "consolidation/output-formatters": "^4.1.2", + "consolidation/self-update": "^2.0", + "league/container": "^3.3.1 || ^4.0", + "php": ">=8.0", + "phpowermove/docblock": "^4.0", + "symfony/console": "^6", + "symfony/event-dispatcher": "^6", + "symfony/filesystem": "^6", + "symfony/finder": "^6", + "symfony/process": "^6", + "symfony/yaml": "^6" + }, + "conflict": { + "codegyre/robo": "*" + }, + "require-dev": { + "natxet/cssmin": "3.0.4", + "patchwork/jsqueeze": "^2", + "pear/archive_tar": "^1.4.4", + "phpunit/phpunit": "^7.5.20 || ^8", + "squizlabs/php_codesniffer": "^3.6", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "suggest": { + "natxet/cssmin": "For minifying CSS files in taskMinify", + "patchwork/jsqueeze": "For minifying JS files in taskMinify", + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" + }, + "bin": [ + "robo" + ], + "type": "library", + "autoload": { + "psr-4": { + "Robo\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Davert", + "email": "davert.php@resend.cc" + } + ], + "description": "Modern task runner", + "support": { + "issues": "https://github.com/consolidation/robo/issues", + "source": "https://github.com/consolidation/robo/tree/4.0.6" + }, + "time": "2023-04-30T21:49:04+00:00" + }, + { + "name": "consolidation/self-update", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/consolidation/self-update.git", + "reference": "972a1016761c9b63314e040836a12795dff6953a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a", + "reference": "972a1016761c9b63314e040836a12795dff6953a", + "shasum": "" + }, + "require": { + "composer/semver": "^3.2", + "php": ">=5.5.0", + "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", + "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" + }, + "bin": [ + "scripts/release" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "SelfUpdate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander Menk", + "email": "menk@mestrona.net" + }, + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "Provides a self:update command for Symfony Console applications.", + "support": { + "issues": "https://github.com/consolidation/self-update/issues", + "source": "https://github.com/consolidation/self-update/tree/2.2.0" + }, + "time": "2023-03-18T01:37:41+00:00" + }, + { + "name": "consolidation/site-alias", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/consolidation/site-alias.git", + "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", + "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", + "shasum": "" + }, + "require": { + "consolidation/config": "^1.2.1 || ^2", + "php": ">=7.4", + "symfony/filesystem": "^5.4 || ^6", + "symfony/finder": "^5 || ^6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.4.2", + "phpunit/phpunit": ">=7", + "squizlabs/php_codesniffer": "^3", + "symfony/var-dumper": "^4", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Consolidation\\SiteAlias\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + }, + { + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" + } + ], + "description": "Manage alias records for local and remote sites.", + "support": { + "issues": "https://github.com/consolidation/site-alias/issues", + "source": "https://github.com/consolidation/site-alias/tree/4.0.1" + }, + "time": "2023-04-29T17:18:10+00:00" + }, + { + "name": "consolidation/site-process", + "version": "5.2.0", + "source": { + "type": "git", + "url": "https://github.com/consolidation/site-process.git", + "reference": "6c44638d7af8a8b4abe12c3180701243f480539d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d", + "reference": "6c44638d7af8a8b4abe12c3180701243f480539d", + "shasum": "" + }, + "require": { + "consolidation/config": "^2", + "consolidation/site-alias": "^3 || ^4", + "php": ">=8.0.14", + "symfony/console": "^5.4 || ^6", + "symfony/process": "^6" + }, + "require-dev": { + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Consolidation\\SiteProcess\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + }, + { + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" + } + ], + "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", + "support": { + "issues": "https://github.com/consolidation/site-process/issues", + "source": "https://github.com/consolidation/site-process/tree/5.2.0" + }, + "time": "2022-12-06T17:57:16+00:00" + }, + { + "name": "cweagans/composer-patches", + "version": "1.7.3", + "source": { + "type": "git", + "url": "https://github.com/cweagans/composer-patches.git", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3.0" + }, + "require-dev": { + "composer/composer": "~1.0 || ~2.0", + "phpunit/phpunit": "~4.6" + }, + "type": "composer-plugin", + "extra": { + "class": "cweagans\\Composer\\Patches" + }, + "autoload": { + "psr-4": { + "cweagans\\Composer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Cameron Eagans", + "email": "me@cweagans.net" + } + ], + "description": "Provides a way to patch Composer packages.", + "support": { + "issues": "https://github.com/cweagans/composer-patches/issues", + "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" + }, + "time": "2022-12-20T22:53:13+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" + }, + "time": "2022-10-27T11:44:00+00:00" + }, + { + "name": "doctrine/annotations", + "version": "1.14.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1 || ^2", + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0", + "psr/cache": "^1 || ^2 || ^3" + }, + "require-dev": { + "doctrine/cache": "^1.11 || ^2.0", + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6", + "vimeo/psalm": "^4.10" + }, + "suggest": { + "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "https://www.doctrine-project.org/projects/annotations.html", + "keywords": [ + "annotations", + "docblock", + "parser" + ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.14.3" + }, + "time": "2023-02-01T09:20:38+00:00" + }, + { + "name": "doctrine/collections", + "version": "2.1.4", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "72328a11443a0de79967104ad36ba7b30bded134" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134", + "reference": "72328a11443a0de79967104ad36ba7b30bded134", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1", + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "ext-json": "*", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.11" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/2.1.4" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections", + "type": "tidelift" + } + ], + "time": "2023-10-03T09:22:33+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.2" + }, + "time": "2023-09-27T20:04:15+00:00" + }, + { + "name": "doctrine/lexer", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.0", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^4.11 || ^5.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/2.1.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2022-12-14T08:49:07+00:00" + }, + { + "name": "drupal/address", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/address.git", + "reference": "8.x-1.12" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" + }, + "require": { + "commerceguys/addressing": "^1.4.2", + "drupal/core": "^9.2 || ^10", + "php": "^7.3 || ^8.0" + }, + "require-dev": { + "drupal/token": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.12", + "datestamp": "1684710176", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "dww", + "homepage": "https://www.drupal.org/user/46549" + }, + { + "name": "googletorp", + "homepage": "https://www.drupal.org/user/386230" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides functionality for storing, validating and displaying international postal addresses.", + "homepage": "http://drupal.org/project/address", + "support": { + "source": "https://git.drupalcode.org/project/address" + } + }, + { + "name": "drupal/admin_toolbar", + "version": "3.4.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/admin_toolbar.git", + "reference": "3.4.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip", + "reference": "3.4.2", + "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854" + }, + "require": { + "drupal/core": "^9.2 || ^10" + }, + "require-dev": { + "drupal/admin_toolbar_tools": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.4.2", + "datestamp": "1696006195", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Wilfrid Roze (eme)", + "homepage": "https://www.drupal.org/u/eme", + "role": "Maintainer" + }, + { + "name": "Romain Jarraud (romainj)", + "homepage": "https://www.drupal.org/u/romainj", + "role": "Maintainer" + }, + { + "name": "Adrian Cid Almaguer (adriancid)", + "homepage": "https://www.drupal.org/u/adriancid", + "email": "adriancid@gmail.com", + "role": "Maintainer" + }, + { + "name": "Mohamed Anis Taktak (matio89)", + "homepage": "https://www.drupal.org/u/matio89", + "role": "Maintainer" + }, + { + "name": "matio89", + "homepage": "https://www.drupal.org/user/2320090" + }, + { + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" + }, + { + "name": "romainj", + "homepage": "https://www.drupal.org/user/370706" + } + ], + "description": "Provides a drop-down menu interface to the core Drupal Toolbar.", + "homepage": "http://drupal.org/project/admin_toolbar", + "keywords": [ + "Drupal", + "Toolbar" + ], + "support": { + "source": "https://git.drupalcode.org/project/admin_toolbar", + "issues": "https://www.drupal.org/project/issues/admin_toolbar" + } + }, + { + "name": "drupal/advancedqueue", + "version": "1.0.0-rc7", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/advancedqueue.git", + "reference": "8.x-1.0-rc7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/advancedqueue-8.x-1.0-rc7.zip", + "reference": "8.x-1.0-rc7", + "shasum": "b446eda22f5f9a9d13f78f2ce329ff1feef69173" + }, + "require": { + "drupal/core": "^9.1 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-rc7", + "datestamp": "1673456946", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + }, + "drush": { + "services": { + "drush.services.yml": "^11" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "amitaibu", + "homepage": "https://www.drupal.org/user/57511" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Damien Tournoud", + "homepage": "https://www.drupal.org/user/22211" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "Kazanir", + "homepage": "https://www.drupal.org/user/2279698" + }, + { + "name": "laurentchardin", + "homepage": "https://www.drupal.org/user/87775" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "pjcdawkins", + "homepage": "https://www.drupal.org/user/1025236" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "skipyT", + "homepage": "https://www.drupal.org/user/350126" + } + ], + "description": "Provides a better Queue API.", + "homepage": "https://www.drupal.org/project/advancedqueue", + "support": { + "source": "https://git.drupalcode.org/project/advancedqueue" + } + }, + { + "name": "drupal/belgrade", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/belgrade.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/belgrade-2.0.0.zip", + "reference": "2.0.0", + "shasum": "94741229b80316182c3baf6f8463a5f6b8674115" + }, + "require": { + "drupal/core": "^9.2 || ^10" + }, + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1685694967", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "majmunbog", + "homepage": "https://www.drupal.org/user/2414528" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Belgrade theme for Drupal Commerce.", + "homepage": "https://drupal.org/project/belgrade", + "support": { + "source": "https://git.drupalcode.org/project/belgrade" + } + }, + { + "name": "drupal/better_exposed_filters", + "version": "6.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/better_exposed_filters.git", + "reference": "6.0.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip", + "reference": "6.0.3", + "shasum": "b5c20207d7679542bb81955771956c18083e6e0b" + }, + "require": { + "drupal/core": "^9 || ^10", + "drupal/jquery_ui": "^1.6", + "drupal/jquery_ui_datepicker": "^2.0", + "drupal/jquery_ui_slider": "^2.0.0", + "drupal/jquery_ui_touch_punch": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "6.0.3", + "datestamp": "1671541877", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Mike Keran", + "homepage": "https://www.drupal.org/u/mikeker" + }, + { + "name": "Martin Keereman", + "homepage": "https://www.drupal.org/u/etroid" + }, + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/u/neslee-canil-pinto" + }, + { + "name": "mikeker", + "homepage": "https://www.drupal.org/user/192273" + }, + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/user/3580850" + }, + { + "name": "podarok", + "homepage": "https://www.drupal.org/user/116002" + }, + { + "name": "rlhawk", + "homepage": "https://www.drupal.org/user/352283" + } + ], + "description": "Replaces the Views default single- or multi-select boxes with more advanced options.", + "homepage": "https://www.drupal.org/project/better_exposed_filters", + "support": { + "source": "https://git.drupalcode.org/project/better_exposed_filters", + "issues": "https://www.drupal.org/project/issues/better_exposed_filters" + } + }, + { + "name": "drupal/block_visibility_conditions", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/block_visibility_conditions.git", + "reference": "2.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/block_visibility_conditions-2.1.0.zip", + "reference": "2.1.0", + "shasum": "de0cd518504bb5924bd7f35a7621c7959ee19a43" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10" + }, + "require-dev": { + "drupal/commerce_product": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.0", + "datestamp": "1675931537", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "matthiasm11", + "homepage": "https://www.drupal.org/user/1208116" + } + ], + "description": "Provides some extra block visibility conditions.", + "homepage": "https://www.drupal.org/project/block_visibility_conditions", + "support": { + "source": "https://git.drupalcode.org/project/block_visibility_conditions" + } + }, + { + "name": "drupal/bootstrap_basic_image_gallery", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/bootstrap_basic_image_gallery.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/bootstrap_basic_image_gallery-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "03dc833b79b924aabdd7d0f244c8bb386d6539fc" + }, + "require": { + "drupal/core": "^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.6", + "datestamp": "1681409167", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Daniel Moberly", + "homepage": "https://www.drupal.org/u/danielmoberly", + "role": "Maintainer" + } + ], + "description": "Bootstrap Basic Image Gallery Module", + "homepage": "https://www.drupal.org/project/bootstrap_basic_image_gallery", + "support": { + "source": "https://git.drupalcode.org/project/bootstrap_basic_image_gallery", + "issues": "https://www.drupal.org/project/issues/bootstrap_basic_image_gallery" + } + }, + { + "name": "drupal/bootstrap_layout_builder", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/bootstrap_layout_builder.git", + "reference": "2.1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/bootstrap_layout_builder-2.1.2.zip", + "reference": "2.1.2", + "shasum": "c0000f57f9b218fd43b893f3311de73911020ced" + }, + "require": { + "drupal/bootstrap_styles": "^1.1", + "drupal/core": "^9.3 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.2", + "datestamp": "1690460409", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Amira Dowidar", + "homepage": "https://www.drupal.org/user/3092603" + }, + { + "name": "mahmoud-zayed", + "homepage": "https://www.drupal.org/user/2947001" + }, + { + "name": "Rajab Natshah", + "homepage": "https://www.drupal.org/user/1414312" + } + ], + "description": "Add Bootstrap Grid support to Layout Builder module.", + "homepage": "https://www.drupal.org/project/bootstrap_layout_builder", + "keywords": [ + "Bootstrap", + "Drupal", + "Grid", + "Layout Builder" + ], + "support": { + "source": "https://git.drupalcode.org/project/bootstrap_layout_builder" + } + }, + { + "name": "drupal/bootstrap_styles", + "version": "1.1.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/bootstrap_styles.git", + "reference": "1.1.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/bootstrap_styles-1.1.5.zip", + "reference": "1.1.5", + "shasum": "30b06da7e84424d404ad8fb5575dda634f80757e" + }, + "require": { + "drupal/core": "^9.3 || ^10", + "drupal/media_library_form_element": "^2.0", + "drupal/media_library_theme_reset": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.5", + "datestamp": "1695835243", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Amira Dowidar", + "homepage": "https://www.drupal.org/user/3092603" + }, + { + "name": "mahmoud-zayed", + "homepage": "https://www.drupal.org/user/2947001" + }, + { + "name": "Rajab Natshah", + "homepage": "https://www.drupal.org/user/1414312" + } + ], + "description": "Add a plugins builder and a collection of reusable plugins to the Layout Builder module.", + "homepage": "https://www.drupal.org/project/bootstrap_styles", + "keywords": [ + "Bootstrap", + "Drupal", + "Grid", + "Layout Builder" + ], + "support": { + "source": "https://git.drupalcode.org/project/bootstrap_styles" + } + }, + { + "name": "drupal/color", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/color.git", + "reference": "1.0.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/color-1.0.3.zip", + "reference": "1.0.3", + "shasum": "b88ab527bed65b67eec555ee4b17e633c19f3194" + }, + "require": { + "drupal/core": "^9.4 || ^10" + }, + "require-dev": { + "drupal/bartik": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.3", + "datestamp": "1663234622", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "andypost", + "homepage": "https://www.drupal.org/user/118908" + }, + { + "name": "kostyashupenko", + "homepage": "https://www.drupal.org/user/3281537" + } + ], + "description": "Allows users to change the color scheme of compatible themes", + "homepage": "https://www.drupal.org/project/color", + "support": { + "source": "https://git.drupalcode.org/project/color" + } + }, + { + "name": "drupal/commerce", + "version": "2.36.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce.git", + "reference": "8.x-2.36" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce-8.x-2.36.zip", + "reference": "8.x-2.36", + "shasum": "4114db573120036d5075c027e3bb9a61d3bdb582" + }, + "require": { + "commerceguys/intl": "^2.0.2", + "drupal/address": "^1.7", + "drupal/core": "^9.3 || ^10", + "drupal/entity": "^1.0", + "drupal/entity_reference_revisions": "~1.0", + "drupal/inline_entity_form": "^1.0@RC", + "drupal/profile": "^1.2", + "drupal/state_machine": "^1.5", + "drupal/token": "^1.7", + "ext-bcmath": "*", + "php": "^8.0" + }, + "conflict": { + "drupal/commerce_shipping": "<2.1", + "drupal/physical": "<1.3" + }, + "require-dev": { + "drupal/commerce_cart": "*", + "drupal/commerce_number_pattern": "*", + "drupal/commerce_order": "*", + "drupal/commerce_payment": "*", + "drupal/commerce_price": "*", + "drupal/commerce_product": "*", + "drupal/commerce_store": "*", + "drupal/entity_print": "^2.2", + "drupal/entity_reference_revisions": "*", + "drupal/mailsystem": "^4.3", + "drupal/profile": "*", + "drupal/state_machine": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Drupal Commerce is a flexible eCommerce solution.", + "homepage": "https://drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_authnet", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_authnet.git", + "reference": "8.x-1.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_authnet-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "9532ae030bcdac868f505fed9fa283c495688c21" + }, + "require": { + "commerceguys/authnet": "^1.1.3", + "drupal/commerce": "^2.33", + "drupal/commerce_payment": "*", + "drupal/core": "^9.2 || ^10", + "lcobucci/jwt": "^4" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.8", + "datestamp": "1677765836", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides Commerce integration for Authorize.net.", + "homepage": "https://drupal.org/project/commerce_authnet", + "support": { + "source": "https://git.drupalcode.org/project/commerce_authnet" + } + }, + { + "name": "drupal/commerce_avatax", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_avatax.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_avatax-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "bcc94b950442716d4db39c9c4bbaeee1edc9c9fb" + }, + "require": { + "drupal/commerce": "^2.16 || ^3", + "drupal/commerce_order": "*", + "drupal/commerce_store": "*", + "drupal/commerce_tax": "*", + "drupal/core": "^9.3 || ^10" + }, + "require-dev": { + "drupal/commerce_shipping": "^2.0@rc" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1674461511", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "TomTech", + "homepage": "https://www.drupal.org/user/254986" + } + ], + "description": "Provides integration between Drupal Commerce and Avalara AvaTax.", + "homepage": "https://www.drupal.org/project/commerce_avatax", + "keywords": [ + "AvaTax", + "Avalara", + "Commerce", + "Drupal" + ], + "support": { + "source": "https://cgit.drupalcode.org/commerce_avatax", + "issues": "https://drupal.org/project/issues/commerce_avatax" + } + }, + { + "name": "drupal/commerce_braintree", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_braintree.git", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_braintree-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "367b606626d03a3b8b31c4b8597764922db8cd56" + }, + "require": { + "braintree/braintree_php": "~3.23", + "drupal/commerce": "~2.25 || ^3", + "drupal/commerce_payment": "*", + "drupal/core": "^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.4", + "datestamp": "1674122525", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "andyg5000", + "homepage": "https://www.drupal.org/user/808668" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Haza", + "homepage": "https://www.drupal.org/user/182721" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "Lukas von Blarer", + "homepage": "https://www.drupal.org/user/598412" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "TomTech", + "homepage": "https://www.drupal.org/user/254986" + } + ], + "description": "Provides Commerce integration for Braintree Payments.", + "homepage": "https://drupal.org/project/commerce_braintree", + "support": { + "source": "https://git.drupalcode.org/project/commerce_braintree" + } + }, + { + "name": "drupal/commerce_cart", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_order": "*", + "drupal/commerce_product": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Implements the shopping cart system and add to cart features.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_checkout", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_cart": "*", + "drupal/commerce_order": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides configurable checkout flows.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_email", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_email.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_email-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "6003b64df9ccdbfb76d36f8b574986373c9379cc" + }, + "require": { + "drupal/commerce": "^2.0", + "drupal/core": "^9.3 || ^10", + "drupal/token": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1685459266", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "paul.linney", + "homepage": "https://www.drupal.org/user/928636" + }, + { + "name": "rinasek", + "homepage": "https://www.drupal.org/user/1245514" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides a UI for defining emails to send in response to various Drupal Commerce events.", + "homepage": "https://www.drupal.org/project/commerce_email", + "support": { + "source": "https://git.drupalcode.org/project/commerce_email" + } + }, + { + "name": "drupal/commerce_file", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_file.git", + "reference": "8.x-2.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_file-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "48cb00b643b0ad939a70569aaf96e5a47722bc8e" + }, + "require": { + "drupal/commerce_license": "^2.0-alpha20 || ^3", + "drupal/core": "^9.3 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.1", + "datestamp": "1685546113", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "Kazanir", + "homepage": "https://www.drupal.org/user/2279698" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "Nathaniel", + "homepage": "https://www.drupal.org/user/443482" + }, + { + "name": "recrit", + "homepage": "https://www.drupal.org/user/452914" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides the ability to sell access to files.", + "homepage": "https://drupal.org/project/commerce_file", + "support": { + "source": "https://cgit.drupalcode.org/commerce_file", + "issues": "https://www.drupal.org/project/issues/commerce_file" + } + }, + { + "name": "drupal/commerce_license", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_license.git", + "reference": "3.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_license-3.0.0.zip", + "reference": "3.0.0", + "shasum": "d851af89f69076f4a5bfc0e3b7c524f9e838721d" + }, + "require": { + "drupal/advancedqueue": "^1.0", + "drupal/commerce": "^2.19 || ^3", + "drupal/commerce_checkout": "*", + "drupal/commerce_product": "*", + "drupal/core": "^8.9 || ^9 || ^10", + "drupal/entity": "*", + "drupal/interval": "^1.11", + "drupal/state_machine": "*" + }, + "conflict": { + "drupal/recurring_period": "1.*" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.3", + "drupal/commerce_recurring": "^1.0@beta" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.0", + "datestamp": "1687180708", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "joachim", + "homepage": "https://www.drupal.org/user/107701" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "TomTech", + "homepage": "https://www.drupal.org/user/254986" + } + ], + "description": "License entities and product behavior", + "homepage": "https://www.drupal.org/project/commerce_license", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://cgit.drupalcode.org/commerce_license", + "issues": "https://www.drupal.org/project/issues/commerce_license" + } + }, + { + "name": "drupal/commerce_number_pattern", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_store": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides configurable patterns for generating sequential numbers.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_order", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_number_pattern": "*", + "drupal/commerce_price": "*", + "drupal/commerce_store": "*", + "drupal/core": "^9.3 || ^10", + "drupal/entity_reference_revisions": "*", + "drupal/profile": "*", + "drupal/state_machine": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Defines the Order entity and associated features.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_payment", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_order": "*", + "drupal/core": "^9.3 || ^10", + "drupal/entity_reference_revisions": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides payment functionality.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_paypal", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_paypal.git", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_paypal-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "32f98379357460e0a120f698a9dff166974694bd" + }, + "require": { + "drupal/commerce": "^2.19 || ^3", + "drupal/commerce_payment": "*", + "drupal/core": "^9.3 || ^10", + "sainsburys/guzzle-oauth2-plugin": "^3.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.4", + "datestamp": "1674044185", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "TomTech", + "homepage": "https://www.drupal.org/user/254986" + } + ], + "description": "Provides Commerce integration for PayPal.", + "homepage": "https://drupal.org/project/commerce_paypal", + "support": { + "source": "https://git.drupalcode.org/project/commerce_paypal" + } + }, + { + "name": "drupal/commerce_price", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Defines the Currency entity.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_pricelist", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_pricelist.git", + "reference": "8.x-2.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_pricelist-8.x-2.8.zip", + "reference": "8.x-2.8", + "shasum": "a7de2fedeca9dcc5739c1628b63968a6702ffb8f" + }, + "require": { + "drupal/commerce": "^2.25 || ^3", + "drupal/commerce_price": "*", + "drupal/commerce_store": "*", + "drupal/core": "^8.9 || ^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.8", + "datestamp": "1674462271", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Andreas Radloff", + "homepage": "https://www.drupal.org/user/531928" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "lawxen", + "homepage": "https://www.drupal.org/user/2936003" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Allows defining prices for specific stores, customers, quantities using price lists", + "homepage": "https://www.drupal.org/project/commerce_pricelist", + "support": { + "source": "https://git.drupalcode.org/project/commerce_pricelist" + } + }, + { + "name": "drupal/commerce_product", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_price": "*", + "drupal/commerce_store": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Defines the Product entity and associated features.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_product_limits", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_product_limits.git", + "reference": "1.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_product_limits-1.0.1.zip", + "reference": "1.0.1", + "shasum": "f66d7dad12238ab5c713b8511db990cd1847873c" + }, + "require": { + "drupal/commerce_cart": "*", + "drupal/commerce_product": "*", + "drupal/core": "^8.8 || ^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.1", + "datestamp": "1685544269", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Adds minimum and maximum quantity purchase limits to product variations.", + "homepage": "https://www.drupal.org/project/commerce_product_limits", + "support": { + "source": "https://git.drupalcode.org/project/commerce_product_limits" + } + }, + { + "name": "drupal/commerce_product_tax", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_product_tax.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_product_tax-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "7589b3421af47290cfff93c5d32b2c987b35775c" + }, + "require": { + "drupal/commerce": "^2.16 || ^3", + "drupal/commerce_tax": "*", + "drupal/core": "^8.9 || ^9.3 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1663769805", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + } + ], + "description": "Provides a user interface for selecting applicable tax rates on the product variation.", + "homepage": "https://drupal.org/project/commerce_product_tax", + "support": { + "source": "https://git.drupalcode.org/project/commerce_product_tax" + } + }, + { + "name": "drupal/commerce_shipping", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_shipping.git", + "reference": "8.x-2.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_shipping-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "29e24ea5133ec1fbb606902bcfcfac504d8bc607" + }, + "require": { + "drupal/commerce": "^2.29", + "drupal/commerce_order": "*", + "drupal/commerce_price": "*", + "drupal/core": "^9.2 || ^10", + "drupal/physical": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.6", + "datestamp": "1678443617", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "googletorp", + "homepage": "https://www.drupal.org/user/386230" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides shipping functionality for Commerce.", + "homepage": "http://drupal.org/project/commerce_shipping", + "support": { + "source": "https://git.drupalcode.org/project/commerce_shipping" + } + }, + { + "name": "drupal/commerce_square", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_square.git", + "reference": "8.x-1.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_square-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "66060c973dc127b40a61287e112aa1c6a9216daa" + }, + "require": { + "drupal/commerce": "~2.25", + "drupal/commerce_payment": "*", + "drupal/core": "^9.2 || ^10", + "php": "^7.3 || ^8.0", + "square/square": "^17.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.7", + "datestamp": "1676041035", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides Commerce integration for Square Connect.", + "homepage": "https://drupal.org/project/commerce_square", + "support": { + "source": "https://git.drupalcode.org/project/commerce_square" + } + }, + { + "name": "drupal/commerce_store", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_price": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Defines the Store entity and associated features.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/commerce_store_domain", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_store_domain.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/commerce_store_domain-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "7d6c4d08867e980e173465084e20aa41771d2f63" + }, + "require": { + "drupal/commerce": "~2", + "drupal/commerce_store": "*", + "drupal/core": "^8.8 || ^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1664375653", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rzsrama", + "homepage": "https://www.drupal.org/user/1793444" + } + ], + "description": "Supports specifying a store's domain", + "homepage": "https://www.drupal.org/project/commerce_store_domain", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/commerce_store_domain" + } + }, + { + "name": "drupal/commerce_tax", + "version": "2.36.0", + "require": { + "drupal/commerce": "*", + "drupal/commerce_order": "*", + "drupal/commerce_price": "*", + "drupal/core": "^9.3 || ^10" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.36", + "datestamp": "1685624434", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides tax functionality.", + "homepage": "https://www.drupal.org/project/commerce", + "support": { + "source": "https://git.drupalcode.org/project/commerce" + } + }, + { + "name": "drupal/config_rewrite", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_rewrite.git", + "reference": "8.x-1.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_rewrite-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "c4740c74fc6e48069cada1fab4c809f1b99d31ac" + }, + "require": { + "drupal/core": "^8.6 || ^9 || ^10", + "php": ">=7.1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.5", + "datestamp": "1659538494", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Brant Wynn (brantwynn)", + "homepage": "https://www.drupal.org/u/brantwynn", + "role": "Maintainer" + }, + { + "name": "saltednut", + "homepage": "https://www.drupal.org/user/252788" + } + ], + "description": "Rewrites existing configuration on module installation via using a 'rewrite' folder in the config directory.", + "homepage": "https://www.drupal.org/project/config_rewrite", + "support": { + "source": "http://cgit.drupalcode.org/config_rewrite", + "issues": "https://www.drupal.org/project/issues/config_rewrite" + } + }, + { + "name": "drupal/config_split", + "version": "2.0.0-rc4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_split.git", + "reference": "2.0.0-rc4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_split-2.0.0-rc4.zip", + "reference": "2.0.0-rc4", + "shasum": "d4c06efbadd34793b0c9b71772162057afa58111" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10" + }, + "conflict": { + "drush/drush": "<10" + }, + "require-dev": { + "drupal/config_filter": "^1||^2" + }, + "suggest": { + "drupal/chosen": "Chosen uses the Chosen jQuery plugin to make the ');this.$searchContainer=n,this.$search=n.find("textarea"),this.$search.prop("autocomplete",this.options.get("autocomplete")),this.$search.attr("aria-label",t());e=e.call(this);return this._transferTabIndex(),e.append(this.$searchContainer),e},e.prototype.bind=function(e,t,n){var s=this,i=t.id+"-results",r=t.id+"-container";e.call(this,t,n),s.$search.attr("aria-describedby",r),t.on("open",function(){s.$search.attr("aria-controls",i),s.$search.trigger("focus")}),t.on("close",function(){s.$search.val(""),s.resizeSearch(),s.$search.removeAttr("aria-controls"),s.$search.removeAttr("aria-activedescendant"),s.$search.trigger("focus")}),t.on("enable",function(){s.$search.prop("disabled",!1),s._transferTabIndex()}),t.on("disable",function(){s.$search.prop("disabled",!0)}),t.on("focus",function(e){s.$search.trigger("focus")}),t.on("results:focus",function(e){e.data._resultId?s.$search.attr("aria-activedescendant",e.data._resultId):s.$search.removeAttr("aria-activedescendant")}),this.$selection.on("focusin",".select2-search--inline",function(e){s.trigger("focus",e)}),this.$selection.on("focusout",".select2-search--inline",function(e){s._handleBlur(e)}),this.$selection.on("keydown",".select2-search--inline",function(e){var t;e.stopPropagation(),s.trigger("keypress",e),s._keyUpPrevented=e.isDefaultPrevented(),e.which!==l.BACKSPACE||""!==s.$search.val()||0<(t=s.$selection.find(".select2-selection__choice").last()).length&&(t=a.GetData(t[0],"data"),s.searchRemoveChoice(t),e.preventDefault())}),this.$selection.on("click",".select2-search--inline",function(e){s.$search.val()&&e.stopPropagation()});var t=document.documentMode,o=t&&t<=11;this.$selection.on("input.searchcheck",".select2-search--inline",function(e){o?s.$selection.off("input.search input.searchcheck"):s.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(e){var t;o&&"input"===e.type?s.$selection.off("input.search input.searchcheck"):(t=e.which)!=l.SHIFT&&t!=l.CTRL&&t!=l.ALT&&t!=l.TAB&&s.handleSearch(e)})},e.prototype._transferTabIndex=function(e){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},e.prototype.createPlaceholder=function(e,t){this.$search.attr("placeholder",t.text)},e.prototype.update=function(e,t){var n=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),e.call(this,t),this.resizeSearch(),n&&this.$search.trigger("focus")},e.prototype.handleSearch=function(){var e;this.resizeSearch(),this._keyUpPrevented||(e=this.$search.val(),this.trigger("query",{term:e})),this._keyUpPrevented=!1},e.prototype.searchRemoveChoice=function(e,t){this.trigger("unselect",{data:t}),this.$search.val(t.text),this.handleSearch()},e.prototype.resizeSearch=function(){this.$search.css("width","25px");var e="100%";""===this.$search.attr("placeholder")&&(e=.75*(this.$search.val().length+1)+"em"),this.$search.css("width",e)},e}),u.define("select2/selection/selectionCss",["../utils"],function(n){function e(){}return e.prototype.render=function(e){var t=e.call(this),e=this.options.get("selectionCssClass")||"";return-1!==e.indexOf(":all:")&&(e=e.replace(":all:",""),n.copyNonInternalCssClasses(t[0],this.$element[0])),t.addClass(e),t},e}),u.define("select2/selection/eventRelay",["jquery"],function(o){function e(){}return e.prototype.bind=function(e,t,n){var s=this,i=["open","opening","close","closing","select","selecting","unselect","unselecting","clear","clearing"],r=["opening","closing","selecting","unselecting","clearing"];e.call(this,t,n),t.on("*",function(e,t){var n;-1!==i.indexOf(e)&&(t=t||{},n=o.Event("select2:"+e,{params:t}),s.$element.trigger(n),-1!==r.indexOf(e)&&(t.prevented=n.isDefaultPrevented()))})},e}),u.define("select2/translation",["jquery","require"],function(t,n){function s(e){this.dict=e||{}}return s.prototype.all=function(){return this.dict},s.prototype.get=function(e){return this.dict[e]},s.prototype.extend=function(e){this.dict=t.extend({},e.all(),this.dict)},s._cache={},s.loadPath=function(e){var t;return e in s._cache||(t=n(e),s._cache[e]=t),new s(s._cache[e])},s}),u.define("select2/diacritics",[],function(){return{"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Œ":"OE","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","œ":"oe","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ώ":"ω","ς":"σ","’":"'"}}),u.define("select2/data/base",["../utils"],function(n){function s(e,t){s.__super__.constructor.call(this)}return n.Extend(s,n.Observable),s.prototype.current=function(e){throw new Error("The `current` method must be defined in child classes.")},s.prototype.query=function(e,t){throw new Error("The `query` method must be defined in child classes.")},s.prototype.bind=function(e,t){},s.prototype.destroy=function(){},s.prototype.generateResultId=function(e,t){e=e.id+"-result-";return e+=n.generateChars(4),null!=t.id?e+="-"+t.id.toString():e+="-"+n.generateChars(4),e},s}),u.define("select2/data/select",["./base","../utils","jquery"],function(e,a,l){function n(e,t){this.$element=e,this.options=t,n.__super__.constructor.call(this)}return a.Extend(n,e),n.prototype.current=function(e){var t=this;e(Array.prototype.map.call(this.$element[0].querySelectorAll(":checked"),function(e){return t.item(l(e))}))},n.prototype.select=function(i){var e,r=this;if(i.selected=!0,null!=i.element&&"option"===i.element.tagName.toLowerCase())return i.element.selected=!0,void this.$element.trigger("input").trigger("change");this.$element.prop("multiple")?this.current(function(e){var t=[];(i=[i]).push.apply(i,e);for(var n=0;nthis.maximumInputLength?this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:t.term,params:t}}):e.call(this,t,n)},e}),u.define("select2/data/maximumSelectionLength",[],function(){function e(e,t,n){this.maximumSelectionLength=n.get("maximumSelectionLength"),e.call(this,t,n)}return e.prototype.bind=function(e,t,n){var s=this;e.call(this,t,n),t.on("select",function(){s._checkIfMaximumSelected()})},e.prototype.query=function(e,t,n){var s=this;this._checkIfMaximumSelected(function(){e.call(s,t,n)})},e.prototype._checkIfMaximumSelected=function(e,t){var n=this;this.current(function(e){e=null!=e?e.length:0;0=n.maximumSelectionLength?n.trigger("results:message",{message:"maximumSelected",args:{maximum:n.maximumSelectionLength}}):t&&t()})},e}),u.define("select2/dropdown",["jquery","./utils"],function(t,e){function n(e,t){this.$element=e,this.options=t,n.__super__.constructor.call(this)}return e.Extend(n,e.Observable),n.prototype.render=function(){var e=t('');return e.attr("dir",this.options.get("dir")),this.$dropdown=e},n.prototype.bind=function(){},n.prototype.position=function(e,t){},n.prototype.destroy=function(){this.$dropdown.remove()},n}),u.define("select2/dropdown/search",["jquery"],function(r){function e(){}return e.prototype.render=function(e){var t=e.call(this),n=this.options.get("translations").get("search"),e=r('');return this.$searchContainer=e,this.$search=e.find("input"),this.$search.prop("autocomplete",this.options.get("autocomplete")),this.$search.attr("aria-label",n()),t.prepend(e),t},e.prototype.bind=function(e,t,n){var s=this,i=t.id+"-results";e.call(this,t,n),this.$search.on("keydown",function(e){s.trigger("keypress",e),s._keyUpPrevented=e.isDefaultPrevented()}),this.$search.on("input",function(e){r(this).off("keyup")}),this.$search.on("keyup input",function(e){s.handleSearch(e)}),t.on("open",function(){s.$search.attr("tabindex",0),s.$search.attr("aria-controls",i),s.$search.trigger("focus"),window.setTimeout(function(){s.$search.trigger("focus")},0)}),t.on("close",function(){s.$search.attr("tabindex",-1),s.$search.removeAttr("aria-controls"),s.$search.removeAttr("aria-activedescendant"),s.$search.val(""),s.$search.trigger("blur")}),t.on("focus",function(){t.isOpen()||s.$search.trigger("focus")}),t.on("results:all",function(e){null!=e.query.term&&""!==e.query.term||(s.showSearch(e)?s.$searchContainer[0].classList.remove("select2-search--hide"):s.$searchContainer[0].classList.add("select2-search--hide"))}),t.on("results:focus",function(e){e.data._resultId?s.$search.attr("aria-activedescendant",e.data._resultId):s.$search.removeAttr("aria-activedescendant")})},e.prototype.handleSearch=function(e){var t;this._keyUpPrevented||(t=this.$search.val(),this.trigger("query",{term:t})),this._keyUpPrevented=!1},e.prototype.showSearch=function(e,t){return!0},e}),u.define("select2/dropdown/hidePlaceholder",[],function(){function e(e,t,n,s){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n,s)}return e.prototype.append=function(e,t){t.results=this.removePlaceholder(t.results),e.call(this,t)},e.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},e.prototype.removePlaceholder=function(e,t){for(var n=t.slice(0),s=t.length-1;0<=s;s--){var i=t[s];this.placeholder.id===i.id&&n.splice(s,1)}return n},e}),u.define("select2/dropdown/infiniteScroll",["jquery"],function(n){function e(e,t,n,s){this.lastParams={},e.call(this,t,n,s),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return e.prototype.append=function(e,t){this.$loadingMore.remove(),this.loading=!1,e.call(this,t),this.showLoadingMore(t)&&(this.$results.append(this.$loadingMore),this.loadMoreIfNeeded())},e.prototype.bind=function(e,t,n){var s=this;e.call(this,t,n),t.on("query",function(e){s.lastParams=e,s.loading=!0}),t.on("query:append",function(e){s.lastParams=e,s.loading=!0}),this.$results.on("scroll",this.loadMoreIfNeeded.bind(this))},e.prototype.loadMoreIfNeeded=function(){var e=n.contains(document.documentElement,this.$loadingMore[0]);!this.loading&&e&&(e=this.$results.offset().top+this.$results.outerHeight(!1),this.$loadingMore.offset().top+this.$loadingMore.outerHeight(!1)<=e+50&&this.loadMore())},e.prototype.loadMore=function(){this.loading=!0;var e=n.extend({},{page:1},this.lastParams);e.page++,this.trigger("query:append",e)},e.prototype.showLoadingMore=function(e,t){return t.pagination&&t.pagination.more},e.prototype.createLoadingMore=function(){var e=n('
  • '),t=this.options.get("translations").get("loadingMore");return e.html(t(this.lastParams)),e},e}),u.define("select2/dropdown/attachBody",["jquery","../utils"],function(u,o){function e(e,t,n){this.$dropdownParent=u(n.get("dropdownParent")||document.body),e.call(this,t,n)}return e.prototype.bind=function(e,t,n){var s=this;e.call(this,t,n),t.on("open",function(){s._showDropdown(),s._attachPositioningHandler(t),s._bindContainerResultHandlers(t)}),t.on("close",function(){s._hideDropdown(),s._detachPositioningHandler(t)}),this.$dropdownContainer.on("mousedown",function(e){e.stopPropagation()})},e.prototype.destroy=function(e){e.call(this),this.$dropdownContainer.remove()},e.prototype.position=function(e,t,n){t.attr("class",n.attr("class")),t[0].classList.remove("select2"),t[0].classList.add("select2-container--open"),t.css({position:"absolute",top:-999999}),this.$container=n},e.prototype.render=function(e){var t=u(""),e=e.call(this);return t.append(e),this.$dropdownContainer=t},e.prototype._hideDropdown=function(e){this.$dropdownContainer.detach()},e.prototype._bindContainerResultHandlers=function(e,t){var n;this._containerResultsHandlersBound||(n=this,t.on("results:all",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("results:append",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("results:message",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("select",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("unselect",function(){n._positionDropdown(),n._resizeDropdown()}),this._containerResultsHandlersBound=!0)},e.prototype._attachPositioningHandler=function(e,t){var n=this,s="scroll.select2."+t.id,i="resize.select2."+t.id,r="orientationchange.select2."+t.id,t=this.$container.parents().filter(o.hasScroll);t.each(function(){o.StoreData(this,"select2-scroll-position",{x:u(this).scrollLeft(),y:u(this).scrollTop()})}),t.on(s,function(e){var t=o.GetData(this,"select2-scroll-position");u(this).scrollTop(t.y)}),u(window).on(s+" "+i+" "+r,function(e){n._positionDropdown(),n._resizeDropdown()})},e.prototype._detachPositioningHandler=function(e,t){var n="scroll.select2."+t.id,s="resize.select2."+t.id,t="orientationchange.select2."+t.id;this.$container.parents().filter(o.hasScroll).off(n),u(window).off(n+" "+s+" "+t)},e.prototype._positionDropdown=function(){var e=u(window),t=this.$dropdown[0].classList.contains("select2-dropdown--above"),n=this.$dropdown[0].classList.contains("select2-dropdown--below"),s=null,i=this.$container.offset();i.bottom=i.top+this.$container.outerHeight(!1);var r={height:this.$container.outerHeight(!1)};r.top=i.top,r.bottom=i.top+r.height;var o=this.$dropdown.outerHeight(!1),a=e.scrollTop(),l=e.scrollTop()+e.height(),c=ai.bottom+o,a={left:i.left,top:r.bottom},l=this.$dropdownParent;"static"===l.css("position")&&(l=l.offsetParent());i={top:0,left:0};(u.contains(document.body,l[0])||l[0].isConnected)&&(i=l.offset()),a.top-=i.top,a.left-=i.left,t||n||(s="below"),e||!c||t?!c&&e&&t&&(s="below"):s="above",("above"==s||t&&"below"!==s)&&(a.top=r.top-i.top-o),null!=s&&(this.$dropdown[0].classList.remove("select2-dropdown--below"),this.$dropdown[0].classList.remove("select2-dropdown--above"),this.$dropdown[0].classList.add("select2-dropdown--"+s),this.$container[0].classList.remove("select2-container--below"),this.$container[0].classList.remove("select2-container--above"),this.$container[0].classList.add("select2-container--"+s)),this.$dropdownContainer.css(a)},e.prototype._resizeDropdown=function(){var e={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(e.minWidth=e.width,e.position="relative",e.width="auto"),this.$dropdown.css(e)},e.prototype._showDropdown=function(e){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},e}),u.define("select2/dropdown/minimumResultsForSearch",[],function(){function e(e,t,n,s){this.minimumResultsForSearch=n.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),e.call(this,t,n,s)}return e.prototype.showSearch=function(e,t){return!(function e(t){for(var n=0,s=0;s');return e.attr("dir",this.options.get("dir")),this.$container=e,this.$container[0].classList.add("select2-container--"+this.options.get("theme")),r.StoreData(e[0],"element",this.$element),e},o}),u.define("jquery-mousewheel",["jquery"],function(e){return e}),u.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults","./select2/utils"],function(i,e,r,t,o){var a;return null==i.fn.select2&&(a=["open","close","destroy"],i.fn.select2=function(t){if("object"==typeof(t=t||{}))return this.each(function(){var e=i.extend(!0,{},t);new r(i(this),e)}),this;if("string"!=typeof t)throw new Error("Invalid arguments for Select2: "+t);var n,s=Array.prototype.slice.call(arguments,1);return this.each(function(){var e=o.GetData(this,"select2");null==e&&window.console&&console.error&&console.error("The select2('"+t+"') method was called on an element that is not using Select2."),n=e[t].apply(e,s)}),-1 Date: Wed, 18 Oct 2023 17:52:36 +0200 Subject: [PATCH 02/27] ci: remove PHPUnit, PHPStan and PHPCS Remove these checks as there are no custom modules. --- build.yaml | 13 +++---------- phpcs.xml.dist | 32 -------------------------------- phpstan.neon.dist | 9 --------- phpunit.xml.dist | 37 ------------------------------------- run | 18 ------------------ 5 files changed, 3 insertions(+), 106 deletions(-) delete mode 100644 phpcs.xml.dist delete mode 100644 phpstan.neon.dist delete mode 100644 phpunit.xml.dist diff --git a/build.yaml b/build.yaml index 64610e4..9b88af5 100644 --- a/build.yaml +++ b/build.yaml @@ -11,16 +11,9 @@ database: php: version: 8.1-fpm-bullseye - phpcs: - paths: - - web/modules/custom - standards: - - Drupal - - DrupalPractice - phpstan: - level: max - paths: - - web/modules/custom + phpcs: false + phpstan: false + phpunit: false drupal: docroot: web diff --git a/phpcs.xml.dist b/phpcs.xml.dist deleted file mode 100644 index 7a22b30..0000000 --- a/phpcs.xml.dist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - PHPCS configuration file for docker-example-drupal-commerce-kickstart. - - web/modules/custom - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/phpstan.neon.dist b/phpstan.neon.dist deleted file mode 100644 index a5a696c..0000000 --- a/phpstan.neon.dist +++ /dev/null @@ -1,9 +0,0 @@ -# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. - -parameters: - level: max - excludePaths: - - *Test.php - - *TestBase.php - paths: - - web/modules/custom diff --git a/phpunit.xml.dist b/phpunit.xml.dist deleted file mode 100644 index 179546d..0000000 --- a/phpunit.xml.dist +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - ./web/modules/custom/**/tests/**/Functional - - - ./web/modules/custom/**/tests/**/Kernel - - - ./web/modules/custom/**/tests/**/Unit - - - diff --git a/run b/run index 642e8a1..14744fe 100755 --- a/run +++ b/run @@ -21,9 +21,7 @@ function ci:test { composer install --quiet --no-progress - test --testdox - quality } # Run a command within the php container. @@ -31,9 +29,6 @@ function cmd { docker compose exec php "${@}" } -function coding-standards { - cmd phpcs "${@}" -} function composer { _exec php composer "${@}" @@ -65,10 +60,6 @@ function lint:dockerfile { hadolint/hadolint hadolint --ignore DL3008 --ignore DL3059 -t style "${@}" - < Dockerfile } -function quality { - coding-standards - static-analysis -} function start { cp -v --no-clobber .env.example .env @@ -76,22 +67,13 @@ function start { docker compose up -d } -function static-analysis { - cmd phpstan --memory-limit=-1 --no-progress "${@}" -} function stop { docker compose down } -function test { - _exec php phpunit --colors=always "${@}" -} function test:commit { - test --testdox --testsuite functional - test --testdox --testsuite kernel - test --testdox --testsuite unit quality } From 77bd4e53bd91c906df6d83ac3ca75da97e4c6938 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 18 Oct 2023 20:58:32 +0200 Subject: [PATCH 03/27] build-configs: update --- .gitignore | 4 ++++ build.yaml | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 8f526a8..1747a4f 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,7 @@ web/web.config # Docker. .env docker-compose.override.yaml + +/bin/ +/libraries/ +/web/profiles/contrib/ diff --git a/build.yaml b/build.yaml index 9b88af5..40e1b9d 100644 --- a/build.yaml +++ b/build.yaml @@ -38,6 +38,12 @@ dockerfile: install: - bcmath +git: + ignore: + - /bin/ + - /libraries/ + - /web/profiles/contrib/ + experimental: createGitHubActionsConfiguration: true runGitHooksBeforePush: true From ff6c90bf25184eef6d3cafbf13af391e622db81e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 14 Nov 2023 13:05:34 +0000 Subject: [PATCH 04/27] build-configs(update) --- .gitignore | 1 + run | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 1747a4f..2f85b08 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ web/web.config .env docker-compose.override.yaml + /bin/ /libraries/ /web/profiles/contrib/ diff --git a/run b/run index 14744fe..fa7009f 100755 --- a/run +++ b/run @@ -94,6 +94,9 @@ function _run { "${service}" "${@}" } +# Include any local tasks. +source run.local || true + TIMEFORMAT=$'\nTask completed in %3lR' time "${@:-help}" From 6cd3f8d4636a684e408dce69dd8e3299cbd2df8f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 22 Nov 2023 22:54:44 +0000 Subject: [PATCH 05/27] build-configs(update) --- run | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run b/run index fa7009f..b209933 100755 --- a/run +++ b/run @@ -2,7 +2,8 @@ # Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. -set -eu +set -o errexit +set -o pipefail # Run automated tests as part of the Continuous Integration (CI) pipeline. function ci:test { @@ -95,7 +96,7 @@ function _run { } # Include any local tasks. -source run.local || true +[[ -e run.local ]] && source run.local TIMEFORMAT=$'\nTask completed in %3lR' time "${@:-help}" From aef9b76379073dedb4b07370b5f25c3e8cd61e8e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 23 Nov 2023 06:45:03 +0000 Subject: [PATCH 06/27] build-configs(update) --- .githooks/pre-push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.githooks/pre-push b/.githooks/pre-push index 2233106..93b31df 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -4,4 +4,4 @@ set -euo pipefail -just test-commit +./run test:commit From 90a35bac5111ca7e3aa57efaf938f152bbf79626 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 23 Nov 2023 07:05:59 +0000 Subject: [PATCH 07/27] build-configs(update) --- .githooks/pre-push | 2 +- .githooks/prepare-commit-msg | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.githooks/pre-push b/.githooks/pre-push index 93b31df..59d641c 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -2,6 +2,6 @@ # Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. -set -euo pipefail +set -o errexit ./run test:commit diff --git a/.githooks/prepare-commit-msg b/.githooks/prepare-commit-msg index 26059bb..6ff8ea0 100755 --- a/.githooks/prepare-commit-msg +++ b/.githooks/prepare-commit-msg @@ -11,7 +11,9 @@ # This also works with multiple issue IDs in the same string, e.g. # "OD-123 OD-456", or IDs on multiple lines. -set -euo pipefail +set -o errexit +set -o nounset +set -o pipefail PROJECT_DIR=$(git rev-parse --show-toplevel) ISSUE_FILE="$PROJECT_DIR/.issue-id" From a17ef15c402bba982b6d51b465a1c4957c114476 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 23 Nov 2023 08:27:59 +0000 Subject: [PATCH 08/27] build-configs(update) --- .githooks/pre-push | 1 + 1 file changed, 1 insertion(+) diff --git a/.githooks/pre-push b/.githooks/pre-push index 59d641c..8063edb 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -4,4 +4,5 @@ set -o errexit + ./run test:commit From 603a1076e463c008da0b946cf07ee62cca363e7b Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 23 Nov 2023 08:35:43 +0000 Subject: [PATCH 09/27] build-configs(update) --- .githooks/pre-push | 1 + 1 file changed, 1 insertion(+) diff --git a/.githooks/pre-push b/.githooks/pre-push index 8063edb..54ac104 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -4,5 +4,6 @@ set -o errexit +export TTY="-T" ./run test:commit From 3f886a5f8bf937af98a8e3892290df68f1fca577 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 13 Dec 2023 00:52:37 +0000 Subject: [PATCH 10/27] Update build configuration files --- phpcs.xml.dist | 31 +++++++++++++++++++++++++++++++ phpstan.neon.dist | 9 +++++++++ phpunit.xml.dist | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 phpcs.xml.dist create mode 100644 phpstan.neon.dist create mode 100644 phpunit.xml.dist diff --git a/phpcs.xml.dist b/phpcs.xml.dist new file mode 100644 index 0000000..5fb9e39 --- /dev/null +++ b/phpcs.xml.dist @@ -0,0 +1,31 @@ + + + + + PHPCS configuration file for docker-example-drupal-commerce-kickstart. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/phpstan.neon.dist b/phpstan.neon.dist new file mode 100644 index 0000000..8a1dc84 --- /dev/null +++ b/phpstan.neon.dist @@ -0,0 +1,9 @@ +# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. + +parameters: + level: + excludePaths: + - *Test.php + - *TestBase.php + paths: + diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..179546d --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + ./web/modules/custom/**/tests/**/Functional + + + ./web/modules/custom/**/tests/**/Kernel + + + ./web/modules/custom/**/tests/**/Unit + + + From 48c78357891cf260be551aa559059ad572be5882 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 13 Dec 2023 00:58:05 +0000 Subject: [PATCH 11/27] Revert "Update build configuration files" This reverts commit 3f886a5f8bf937af98a8e3892290df68f1fca577. --- phpcs.xml.dist | 31 ------------------------------- phpstan.neon.dist | 9 --------- phpunit.xml.dist | 37 ------------------------------------- 3 files changed, 77 deletions(-) delete mode 100644 phpcs.xml.dist delete mode 100644 phpstan.neon.dist delete mode 100644 phpunit.xml.dist diff --git a/phpcs.xml.dist b/phpcs.xml.dist deleted file mode 100644 index 5fb9e39..0000000 --- a/phpcs.xml.dist +++ /dev/null @@ -1,31 +0,0 @@ - - - - - PHPCS configuration file for docker-example-drupal-commerce-kickstart. - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/phpstan.neon.dist b/phpstan.neon.dist deleted file mode 100644 index 8a1dc84..0000000 --- a/phpstan.neon.dist +++ /dev/null @@ -1,9 +0,0 @@ -# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. - -parameters: - level: - excludePaths: - - *Test.php - - *TestBase.php - paths: - diff --git a/phpunit.xml.dist b/phpunit.xml.dist deleted file mode 100644 index 179546d..0000000 --- a/phpunit.xml.dist +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - ./web/modules/custom/**/tests/**/Functional - - - ./web/modules/custom/**/tests/**/Kernel - - - ./web/modules/custom/**/tests/**/Unit - - - From a7d4bdd8d7ecec691b82af4658dd4c4889092fd4 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 16 Dec 2023 09:02:55 +0000 Subject: [PATCH 12/27] Update build configuration files --- run | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/run b/run index b209933..bb43b7e 100755 --- a/run +++ b/run @@ -5,6 +5,13 @@ set -o errexit set -o pipefail +# If we're running in CI we need to disable TTY allocation for docker compose +# commands that enable it by default, such as exec and run. +TTY="${TTY:-}" +if [[ ! -t 1 ]]; then + TTY="-T" +fi + # Run automated tests as part of the Continuous Integration (CI) pipeline. function ci:test { lint:dockerfile @@ -80,7 +87,7 @@ function test:commit { } function _exec { - docker compose exec -T "${@}" + docker compose exec ${TTY} "${@}" } function _run { @@ -91,7 +98,7 @@ function _run { --entrypoint "${command}" \ --no-deps \ --rm \ - -T \ + ${TTY} \ "${service}" "${@}" } From ac568027119f1de33b3fe673dfd6a83dcaf44d5c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 16 Dec 2023 17:08:51 +0000 Subject: [PATCH 13/27] Update build configuration files --- run | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run b/run index bb43b7e..89437e2 100755 --- a/run +++ b/run @@ -63,6 +63,11 @@ function help { printf "\nExtended help:\n Each task has comments for general usage\n" } +# Install Drupal. +function install { + drush site:install -y "${@}" +} + function lint:dockerfile { docker container run --rm -i \ hadolint/hadolint hadolint --ignore DL3008 --ignore DL3059 -t style "${@}" - < Dockerfile From 50cf1903649ad272d258389c84e162afc018c661 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 1 Jan 2024 23:17:08 +0000 Subject: [PATCH 14/27] Update Composer dependencies --- composer.lock | 1369 +++++++++++++++++++++++-------------------------- 1 file changed, 652 insertions(+), 717 deletions(-) diff --git a/composer.lock b/composer.lock index 5a9a975..e00ea20 100644 --- a/composer.lock +++ b/composer.lock @@ -182,16 +182,16 @@ }, { "name": "braintree/braintree_php", - "version": "3.40.0", + "version": "6.15.0", "source": { "type": "git", "url": "https://github.com/braintree/braintree_php.git", - "reference": "840fc6ebf8d96756fed475cce94565fef178187d" + "reference": "16efb08e19cb6c579deba11e119ef6409d28eae3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/braintree/braintree_php/zipball/840fc6ebf8d96756fed475cce94565fef178187d", - "reference": "840fc6ebf8d96756fed475cce94565fef178187d", + "url": "https://api.github.com/repos/braintree/braintree_php/zipball/16efb08e19cb6c579deba11e119ef6409d28eae3", + "reference": "16efb08e19cb6c579deba11e119ef6409d28eae3", "shasum": "" }, "require": { @@ -200,16 +200,14 @@ "ext-hash": "*", "ext-openssl": "*", "ext-xmlwriter": "*", - "php": ">=5.4.0" + "php": ">=7.3.0" }, "require-dev": { - "phpunit/phpunit": "3.7.*" + "phpunit/phpunit": "^9.0", + "squizlabs/php_codesniffer": "^3.0" }, "type": "library", "autoload": { - "psr-0": { - "Braintree": "lib/" - }, "psr-4": { "Braintree\\": "lib/Braintree" } @@ -227,9 +225,9 @@ "description": "Braintree PHP Client Library", "support": { "issues": "https://github.com/braintree/braintree_php/issues", - "source": "https://github.com/braintree/braintree_php/tree/3.40.0" + "source": "https://github.com/braintree/braintree_php/tree/6.15.0" }, - "time": "2019-03-28T23:16:53+00:00" + "time": "2023-11-08T00:15:11+00:00" }, { "name": "centarro/centarro_claro", @@ -237,12 +235,12 @@ "source": { "type": "git", "url": "https://github.com/centarro/centarro_claro.git", - "reference": "14a2eb93d386e3fe8535dc927bee25a4b79f3527" + "reference": "ac0ef45cdf3a6716c8d5719a009103f0a6f80ef0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/centarro/centarro_claro/zipball/14a2eb93d386e3fe8535dc927bee25a4b79f3527", - "reference": "14a2eb93d386e3fe8535dc927bee25a4b79f3527", + "url": "https://api.github.com/repos/centarro/centarro_claro/zipball/ac0ef45cdf3a6716c8d5719a009103f0a6f80ef0", + "reference": "ac0ef45cdf3a6716c8d5719a009103f0a6f80ef0", "shasum": "" }, "default-branch": true, @@ -256,7 +254,7 @@ "issues": "https://github.com/centarro/centarro_claro/issues", "source": "https://github.com/centarro/centarro_claro/tree/1.x" }, - "time": "2023-05-31T16:20:08+00:00" + "time": "2023-12-06T11:08:37+00:00" }, { "name": "centarro/certified-projects", @@ -511,28 +509,28 @@ }, { "name": "commerceguys/addressing", - "version": "v1.4.2", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" + "reference": "d7faef18fc7110b233b81c8d18006e74c6c49a52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/d7faef18fc7110b233b81c8d18006e74c6c49a52", + "reference": "d7faef18fc7110b233b81c8d18006e74c6c49a52", "shasum": "" }, "require": { - "doctrine/collections": "^1.2 || ^2.0", - "php": ">=7.3" + "doctrine/collections": "^1.6 || ^2.0", + "php": ">=8.0" }, "require-dev": { "ext-json": "*", - "mikey179/vfsstream": "^1.6.10", - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "^3.6", - "symfony/validator": "^4.4 || ^5.4 || ^6.0" + "mikey179/vfsstream": "^1.6.11", + "phpunit/phpunit": "^9.6", + "squizlabs/php_codesniffer": "^3.7", + "symfony/validator": "^5.4 || ^6.3 || ^7.0" }, "suggest": { "symfony/validator": "to validate addresses" @@ -540,7 +538,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -569,9 +567,9 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" + "source": "https://github.com/commerceguys/addressing/tree/v2.1.1" }, - "time": "2023-02-15T10:11:14+00:00" + "time": "2023-11-28T18:04:35+00:00" }, { "name": "commerceguys/authnet", @@ -634,16 +632,16 @@ }, { "name": "commerceguys/intl", - "version": "v2.0.4", + "version": "v2.0.5", "source": { "type": "git", "url": "https://github.com/commerceguys/intl.git", - "reference": "f78fe7f9bdb239d1f4cf441f61c6f950b03720bb" + "reference": "ed60b47c0497cc1c0c08acdef7b7a195ab62ba03" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/intl/zipball/f78fe7f9bdb239d1f4cf441f61c6f950b03720bb", - "reference": "f78fe7f9bdb239d1f4cf441f61c6f950b03720bb", + "url": "https://api.github.com/repos/commerceguys/intl/zipball/ed60b47c0497cc1c0c08acdef7b7a195ab62ba03", + "reference": "ed60b47c0497cc1c0c08acdef7b7a195ab62ba03", "shasum": "" }, "require": { @@ -679,9 +677,9 @@ "description": "Internationalization library powered by CLDR data.", "support": { "issues": "https://github.com/commerceguys/intl/issues", - "source": "https://github.com/commerceguys/intl/tree/v2.0.4" + "source": "https://github.com/commerceguys/intl/tree/v2.0.5" }, - "time": "2023-04-17T12:17:15+00:00" + "time": "2023-11-09T09:33:35+00:00" }, { "name": "composer/installers", @@ -911,16 +909,16 @@ }, { "name": "consolidation/annotated-command", - "version": "4.9.1", + "version": "4.9.2", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9" + "reference": "b5255dcbee1de95036185062a103dabc622224de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", - "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de", + "reference": "b5255dcbee1de95036185062a103dabc622224de", "shasum": "" }, "require": { @@ -961,9 +959,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.9.1" + "source": "https://github.com/consolidation/annotated-command/tree/4.9.2" }, - "time": "2023-05-20T04:19:01+00:00" + "time": "2023-12-26T14:30:50+00:00" }, { "name": "consolidation/config", @@ -1837,22 +1835,22 @@ }, { "name": "drupal/address", - "version": "1.12.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.12" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" + "url": "https://ftp.drupal.org/files/projects/address-2.0.0.zip", + "reference": "2.0.0", + "shasum": "4f7936b6bf08188ecbfddafb3d105ee956e6a952" }, "require": { - "commerceguys/addressing": "^1.4.2", - "drupal/core": "^9.2 || ^10", - "php": "^7.3 || ^8.0" + "commerceguys/addressing": "^2.1.1", + "drupal/core": "^9.5 || ^10", + "php": "^8.0" }, "require-dev": { "drupal/token": "^1.0" @@ -1860,8 +1858,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1684710176", + "version": "2.0.0", + "datestamp": "1703692572", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1885,18 +1883,10 @@ "name": "dww", "homepage": "https://www.drupal.org/user/46549" }, - { - "name": "googletorp", - "homepage": "https://www.drupal.org/user/386230" - }, { "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -2480,25 +2470,25 @@ }, { "name": "drupal/commerce", - "version": "2.36.0", + "version": "2.37.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/commerce.git", - "reference": "8.x-2.36" + "reference": "8.x-2.37" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/commerce-8.x-2.36.zip", - "reference": "8.x-2.36", - "shasum": "4114db573120036d5075c027e3bb9a61d3bdb582" + "url": "https://ftp.drupal.org/files/projects/commerce-8.x-2.37.zip", + "reference": "8.x-2.37", + "shasum": "6b855b70e0f41c47b7352db90c983697d03cd84d" }, "require": { "commerceguys/intl": "^2.0.2", - "drupal/address": "^1.7", + "drupal/address": "^2.0", "drupal/core": "^9.3 || ^10", "drupal/entity": "^1.0", "drupal/entity_reference_revisions": "~1.0", - "drupal/inline_entity_form": "^1.0@RC", + "drupal/inline_entity_form": "^1.0@RC || ^3.0@RC", "drupal/profile": "^1.2", "drupal/state_machine": "^1.5", "drupal/token": "^1.7", @@ -2520,14 +2510,16 @@ "drupal/entity_print": "^2.2", "drupal/entity_reference_revisions": "*", "drupal/mailsystem": "^4.3", + "drupal/panelizer": "^5.0", + "drupal/physical": "^1.3", "drupal/profile": "*", "drupal/state_machine": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2539,10 +2531,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -2551,10 +2539,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -2702,20 +2686,20 @@ }, { "name": "drupal/commerce_braintree", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/commerce_braintree.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/commerce_braintree-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "367b606626d03a3b8b31c4b8597764922db8cd56" + "url": "https://ftp.drupal.org/files/projects/commerce_braintree-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "f1682960829b4082fbf867abbcad97d53681c251" }, "require": { - "braintree/braintree_php": "~3.23", + "braintree/braintree_php": "^6.12", "drupal/commerce": "~2.25 || ^3", "drupal/commerce_payment": "*", "drupal/core": "^9 || ^10" @@ -2723,8 +2707,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1674122525", + "version": "8.x-1.5", + "datestamp": "1699443065", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2773,7 +2757,7 @@ }, { "name": "drupal/commerce_cart", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_order": "*", @@ -2783,8 +2767,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2796,10 +2780,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -2808,10 +2788,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -2825,7 +2801,7 @@ }, { "name": "drupal/commerce_checkout", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_cart": "*", @@ -2835,8 +2811,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2848,10 +2824,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -2860,10 +2832,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -2967,26 +2935,10 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "Kazanir", - "homepage": "https://www.drupal.org/user/2279698" - }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, - { - "name": "Nathaniel", - "homepage": "https://www.drupal.org/user/443482" - }, { "name": "recrit", "homepage": "https://www.drupal.org/user/452914" @@ -2994,6 +2946,10 @@ { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "TomTech", + "homepage": "https://www.drupal.org/user/254986" } ], "description": "Provides the ability to sell access to files.", @@ -3083,7 +3039,7 @@ }, { "name": "drupal/commerce_number_pattern", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_store": "*", @@ -3092,8 +3048,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3105,10 +3061,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3117,10 +3069,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3134,7 +3082,7 @@ }, { "name": "drupal/commerce_order", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_number_pattern": "*", @@ -3148,8 +3096,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3161,10 +3109,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3173,10 +3117,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3190,7 +3130,7 @@ }, { "name": "drupal/commerce_payment", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_order": "*", @@ -3200,8 +3140,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3213,10 +3153,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3225,10 +3161,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3301,7 +3233,7 @@ }, { "name": "drupal/commerce_price", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/core": "^9.3 || ^10" @@ -3309,8 +3241,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3322,10 +3254,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3334,10 +3262,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3414,7 +3338,7 @@ }, { "name": "drupal/commerce_product", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_price": "*", @@ -3424,8 +3348,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3437,10 +3361,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3449,10 +3369,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3570,17 +3486,17 @@ }, { "name": "drupal/commerce_shipping", - "version": "2.6.0", + "version": "2.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/commerce_shipping.git", - "reference": "8.x-2.6" + "reference": "8.x-2.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/commerce_shipping-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "29e24ea5133ec1fbb606902bcfcfac504d8bc607" + "url": "https://ftp.drupal.org/files/projects/commerce_shipping-8.x-2.7.zip", + "reference": "8.x-2.7", + "shasum": "95438247d92b57ec668705712e3ed62e0ff56aaf" }, "require": { "drupal/commerce": "^2.29", @@ -3592,8 +3508,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1678443617", + "version": "8.x-2.7", + "datestamp": "1703971126", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3606,8 +3522,8 @@ ], "authors": [ { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" }, { "name": "googletorp", @@ -3617,13 +3533,13 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "TomTech", + "homepage": "https://www.drupal.org/user/254986" } ], "description": "Provides shipping functionality for Commerce.", @@ -3690,7 +3606,7 @@ }, { "name": "drupal/commerce_store", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_price": "*", @@ -3699,8 +3615,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3712,10 +3628,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3724,10 +3636,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3802,7 +3710,7 @@ }, { "name": "drupal/commerce_tax", - "version": "2.36.0", + "version": "2.37.0", "require": { "drupal/commerce": "*", "drupal/commerce_order": "*", @@ -3812,8 +3720,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.36", - "datestamp": "1685624434", + "version": "8.x-2.37", + "datestamp": "1704127692", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3825,10 +3733,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, { "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" @@ -3837,10 +3741,6 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -3905,17 +3805,17 @@ }, { "name": "drupal/config_split", - "version": "2.0.0-rc4", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_split.git", - "reference": "2.0.0-rc4" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_split-2.0.0-rc4.zip", - "reference": "2.0.0-rc4", - "shasum": "d4c06efbadd34793b0c9b71772162057afa58111" + "url": "https://ftp.drupal.org/files/projects/config_split-2.0.0.zip", + "reference": "2.0.0", + "shasum": "be9fd0aba1206e0f19e8448f69d4210e53dae069" }, "require": { "drupal/core": "^8.8 || ^9 || ^10" @@ -3933,11 +3833,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-rc4", - "datestamp": "1662235380", + "version": "2.0.0", + "datestamp": "1699259254", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } }, "drush": { @@ -3983,16 +3883,16 @@ }, { "name": "drupal/core", - "version": "10.1.5", + "version": "10.1.7", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "1272c35d547e844e7ebf3fe5513542291cda8cec" + "reference": "54415049a721ede65318e3980b402af59bc35913" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/1272c35d547e844e7ebf3fe5513542291cda8cec", - "reference": "1272c35d547e844e7ebf3fe5513542291cda8cec", + "url": "https://api.github.com/repos/drupal/core/zipball/54415049a721ede65318e3980b402af59bc35913", + "reference": "54415049a721ede65318e3980b402af59bc35913", "shasum": "" }, "require": { @@ -4137,22 +4037,22 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/10.1.5" + "source": "https://github.com/drupal/core/tree/10.1.7" }, - "time": "2023-10-04T21:37:59+00:00" + "time": "2023-12-06T09:22:56+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.1.5", + "version": "10.2.0", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51" + "reference": "97bd91856535a354e9b1b815f0957893e26b6622" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51", - "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/97bd91856535a354e9b1b815f0957893e26b6622", + "reference": "97bd91856535a354e9b1b815f0957893e26b6622", "shasum": "" }, "require": { @@ -4187,22 +4087,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.5" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.0" }, - "time": "2023-04-30T16:15:32+00:00" + "time": "2023-11-15T23:23:28+00:00" }, { "name": "drupal/core-project-message", - "version": "10.1.5", + "version": "10.2.0", "source": { "type": "git", "url": "https://github.com/drupal/core-project-message.git", - "reference": "59b4475f01debd9a0f173938a06189982c8ebffd" + "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd", - "reference": "59b4475f01debd9a0f173938a06189982c8ebffd", + "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8", + "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8", "shasum": "" }, "require": { @@ -4228,22 +4128,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-project-message/tree/10.1.5" + "source": "https://github.com/drupal/core-project-message/tree/10.2.0" }, - "time": "2022-07-01T08:32:39+00:00" + "time": "2023-07-24T07:55:25+00:00" }, { "name": "drupal/core-recommended", - "version": "10.1.5", + "version": "10.1.7", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "2c5cf420ddb06f3e9b624d168b724ca1c7c326e2" + "reference": "e4726a4a0173a4b9acdac8cab5d4009d6085fd2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/2c5cf420ddb06f3e9b624d168b724ca1c7c326e2", - "reference": "2c5cf420ddb06f3e9b624d168b724ca1c7c326e2", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/e4726a4a0173a4b9acdac8cab5d4009d6085fd2e", + "reference": "e4726a4a0173a4b9acdac8cab5d4009d6085fd2e", "shasum": "" }, "require": { @@ -4252,7 +4152,7 @@ "doctrine/annotations": "~1.14.3", "doctrine/deprecations": "~v1.1.1", "doctrine/lexer": "~2.1.0", - "drupal/core": "10.1.5", + "drupal/core": "10.1.7", "egulias/email-validator": "~4.0.1", "guzzlehttp/guzzle": "~7.7.0", "guzzlehttp/psr7": "~2.5.0", @@ -4309,23 +4209,23 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/10.1.5" + "source": "https://github.com/drupal/core-recommended/tree/10.1.7" }, - "time": "2023-10-04T21:37:59+00:00" + "time": "2023-12-06T09:22:56+00:00" }, { "name": "drupal/core_views_facets", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/core_views_facets.git", - "reference": "2.0.3" + "reference": "2.0.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/core_views_facets-2.0.3.zip", - "reference": "2.0.3", - "shasum": "80269950079d9e012207d1823dff469950f26674" + "url": "https://ftp.drupal.org/files/projects/core_views_facets-2.0.4.zip", + "reference": "2.0.4", + "shasum": "3afecac0567915e338cbe6d9bc340c4f7b0597cf" }, "require": { "drupal/core": "^9.3 || ^10.0", @@ -4334,8 +4234,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1695825987", + "version": "2.0.4", + "datestamp": "1699447494", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4742,21 +4642,21 @@ }, { "name": "drupal/facets_pretty_paths", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets_pretty_paths.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facets_pretty_paths-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "a0ae64ef6c22adb75a4ef0e9b2e23ac58caf6dd3" + "url": "https://ftp.drupal.org/files/projects/facets_pretty_paths-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "0458840e327562b3c9ec946e066079e54739377d" }, "require": { "drupal/core": "^9.1 || ^10", - "drupal/facets": "^1 || ^2", + "drupal/facets": "^1 || ^2 || ^3", "drupal/pathauto": "^1" }, "require-dev": { @@ -4765,8 +4665,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1671178925", + "version": "8.x-1.6", + "datestamp": "1703042576", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4981,17 +4881,17 @@ }, { "name": "drupal/inline_entity_form", - "version": "1.0.0-rc15", + "version": "3.0.0-rc17", "source": { "type": "git", "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "8.x-1.0-rc15" + "reference": "3.0.0-rc17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip", - "reference": "8.x-1.0-rc15", - "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec" + "url": "https://ftp.drupal.org/files/projects/inline_entity_form-3.0.0-rc17.zip", + "reference": "3.0.0-rc17", + "shasum": "7a1d1b50645548673f1903f082beabf7106dd056" }, "require": { "drupal/core": "^8.8 || ^9 || ^10", @@ -5003,8 +4903,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc15", - "datestamp": "1678126675", + "version": "3.0.0-rc17", + "datestamp": "1703019824", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -5044,10 +4944,6 @@ "name": "oknate", "homepage": "https://www.drupal.org/user/471638" }, - { - "name": "podarok", - "homepage": "https://www.drupal.org/user/116002" - }, { "name": "ram4nd", "homepage": "https://www.drupal.org/user/601534" @@ -5403,17 +5299,17 @@ }, { "name": "drupal/layout_builder_blocks", - "version": "1.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/layout_builder_blocks.git", - "reference": "1.1.0" + "reference": "1.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_blocks-1.1.0.zip", - "reference": "1.1.0", - "shasum": "d4f92d169466d9d8bdba8ef9ca67f8723b6ae204" + "url": "https://ftp.drupal.org/files/projects/layout_builder_blocks-1.1.1.zip", + "reference": "1.1.1", + "shasum": "7ff492dd75b25a37b2281de5cedbe75686b8f264" }, "require": { "drupal/bootstrap_styles": "^1.1", @@ -5422,8 +5318,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.0", - "datestamp": "1673700504", + "version": "1.1.1", + "datestamp": "1702397566", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5442,6 +5338,10 @@ { "name": "mahmoud-zayed", "homepage": "https://www.drupal.org/user/2947001" + }, + { + "name": "Rajab Natshah", + "homepage": "https://www.drupal.org/user/1414312" } ], "description": "Add UI styles support to blocks from Layout Builder module.", @@ -5458,17 +5358,17 @@ }, { "name": "drupal/layout_builder_lock", - "version": "1.2.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/layout_builder_lock.git", - "reference": "8.x-1.2" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_lock-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "818a70463a349c55db9ca31d6dd9ab926c427d6c" + "url": "https://ftp.drupal.org/files/projects/layout_builder_lock-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "3286a781237f1b25096dfd98abcf6a1fceec91f8" }, "require": { "drupal/core": "^9.2 || ^10" @@ -5476,8 +5376,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1666207477", + "version": "8.x-1.4", + "datestamp": "1701114775", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5489,6 +5389,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Chesterr", + "homepage": "https://www.drupal.org/user/3715674" + }, { "name": "Panchuk", "homepage": "https://www.drupal.org/user/3604398" @@ -6074,20 +5978,20 @@ }, { "name": "drupal/search_api", - "version": "1.30.0", + "version": "1.31.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.30" + "reference": "8.x-1.31" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip", - "reference": "8.x-1.30", - "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip", + "reference": "8.x-1.31", + "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc" }, "require": { - "drupal/core": "^9.3 || ^10.0" + "drupal/core": "^10.0" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -6105,8 +6009,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.30", - "datestamp": "1697366291", + "version": "8.x-1.31", + "datestamp": "1700926323", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6261,17 +6165,17 @@ }, { "name": "drupal/state_machine", - "version": "1.8.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/state_machine.git", - "reference": "8.x-1.8" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/state_machine-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "dd59939a0f91f413c4f98e3f2966f8ea7a4a74ee" + "url": "https://ftp.drupal.org/files/projects/state_machine-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "b381307066dd5370ba22d4f1b91f4f182882db76" }, "require": { "drupal/core": "^9.2 || ^10", @@ -6280,8 +6184,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1684226801", + "version": "8.x-1.10", + "datestamp": "1701253627", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6358,17 +6262,17 @@ }, { "name": "drupal/symfony_mailer", - "version": "1.3.2", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/symfony_mailer.git", - "reference": "1.3.2" + "reference": "1.4.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/symfony_mailer-1.3.2.zip", - "reference": "1.3.2", - "shasum": "69946a944847aa6ce41d6685b8e78983b4d9dc2b" + "url": "https://ftp.drupal.org/files/projects/symfony_mailer-1.4.0.zip", + "reference": "1.4.0", + "shasum": "05c38312877c9cdda0006492b41ccf8021c008ff" }, "require": { "drupal/core": "^9.4 || ^10", @@ -6379,8 +6283,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.3.2", - "datestamp": "1696515249", + "version": "1.4.0", + "datestamp": "1698076484", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6410,17 +6314,17 @@ }, { "name": "drupal/token", - "version": "1.12.0", + "version": "1.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.12" + "reference": "8.x-1.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "cefe1b203b793682f74ea43e18d0a814cf768763" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip", + "reference": "8.x-1.13", + "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2" }, "require": { "drupal/core": "^9.2 || ^10" @@ -6428,8 +6332,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1688015262", + "version": "8.x-1.13", + "datestamp": "1697885927", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6437,7 +6341,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10" + "drush.services.yml": ">=9" } } }, @@ -6691,26 +6595,26 @@ }, { "name": "enlightn/security-checker", - "version": "v1.10.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/enlightn/security-checker.git", - "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" + "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", - "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2", + "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.3|^7.0", "php": ">=5.6", - "symfony/console": "^3.4|^4|^5|^6", - "symfony/finder": "^3|^4|^5|^6", - "symfony/process": "^3.4|^4|^5|^6", - "symfony/yaml": "^3.4|^4|^5|^6" + "symfony/console": "^3.4|^4|^5|^6|^7", + "symfony/finder": "^3|^4|^5|^6|^7", + "symfony/process": "^3.4|^4|^5|^6|^7", + "symfony/yaml": "^3.4|^4|^5|^6|^7" }, "require-dev": { "ext-zip": "*", @@ -6751,22 +6655,22 @@ ], "support": { "issues": "https://github.com/enlightn/security-checker/issues", - "source": "https://github.com/enlightn/security-checker/tree/v1.10.0" + "source": "https://github.com/enlightn/security-checker/tree/v1.11.0" }, - "time": "2022-02-21T22:40:16+00:00" + "time": "2023-11-17T07:53:29+00:00" }, { "name": "firebase/php-jwt", - "version": "v6.9.0", + "version": "v6.10.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "f03270e63eaccf3019ef0f32849c497385774e11" + "reference": "a49db6f0a5033aef5143295342f1c95521b075ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f03270e63eaccf3019ef0f32849c497385774e11", - "reference": "f03270e63eaccf3019ef0f32849c497385774e11", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff", + "reference": "a49db6f0a5033aef5143295342f1c95521b075ff", "shasum": "" }, "require": { @@ -6814,9 +6718,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.9.0" + "source": "https://github.com/firebase/php-jwt/tree/v6.10.0" }, - "time": "2023-10-05T00:24:42+00:00" + "time": "2023-12-01T16:26:39+00:00" }, { "name": "furf/jquery-ui-touch-punch", @@ -6829,24 +6733,24 @@ }, { "name": "graham-campbell/result-type", - "version": "v1.1.1", + "version": "v1.1.2", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", - "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.1" + "phpoption/phpoption": "^1.9.2" }, "require-dev": { - "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "type": "library", "autoload": { @@ -6875,7 +6779,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" }, "funding": [ { @@ -6887,7 +6791,7 @@ "type": "tidelift" } ], - "time": "2023-02-25T20:23:15+00:00" + "time": "2023-11-12T22:16:48+00:00" }, { "name": "grasmash/expander", @@ -7069,24 +6973,24 @@ }, { "name": "guzzlehttp/promises", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", - "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "type": "library", "extra": { @@ -7132,7 +7036,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.1" + "source": "https://github.com/guzzle/promises/tree/2.0.2" }, "funding": [ { @@ -7148,7 +7052,7 @@ "type": "tidelift" } ], - "time": "2023-08-03T15:11:55+00:00" + "time": "2023-12-03T20:19:20+00:00" }, { "name": "guzzlehttp/psr7", @@ -7645,16 +7549,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.17.1", + "version": "v4.18.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" + "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", "shasum": "" }, "require": { @@ -7695,9 +7599,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" }, - "time": "2023-08-13T19:53:39+00:00" + "time": "2023-12-10T21:03:43+00:00" }, { "name": "oomphinc/composer-installers-extender", @@ -7889,21 +7793,22 @@ }, { "name": "pear/pear-core-minimal", - "version": "v1.10.13", + "version": "v1.10.14", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d" + "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d", - "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32", + "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32", "shasum": "" }, "require": { "pear/console_getopt": "~1.4", - "pear/pear_exception": "~1.0" + "pear/pear_exception": "~1.0", + "php": ">=5.4" }, "replace": { "rsky/pear-core-min": "self.version" @@ -7933,7 +7838,7 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", "source": "https://github.com/pear/pear-core-minimal" }, - "time": "2023-04-19T19:15:47+00:00" + "time": "2023-11-26T16:15:38+00:00" }, { "name": "pear/pear_exception", @@ -8100,16 +8005,16 @@ }, { "name": "phpoption/phpoption", - "version": "1.9.1", + "version": "1.9.2", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", - "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", "shasum": "" }, "require": { @@ -8117,7 +8022,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "type": "library", "extra": { @@ -8159,7 +8064,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" }, "funding": [ { @@ -8171,7 +8076,7 @@ "type": "tidelift" } ], - "time": "2023-02-25T19:38:58+00:00" + "time": "2023-11-12T21:59:55+00:00" }, { "name": "phpowermove/docblock", @@ -8675,25 +8580,25 @@ }, { "name": "psy/psysh", - "version": "v0.11.22", + "version": "v0.12.0", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b" + "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b", - "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d", + "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d", "shasum": "" }, "require": { "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "^4.0 || ^3.1", - "php": "^8.0 || ^7.0.8", - "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", - "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" }, "conflict": { "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" @@ -8704,8 +8609,7 @@ "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pdo-sqlite": "The doc command requires SQLite to work.", - "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", - "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." }, "bin": [ "bin/psysh" @@ -8713,7 +8617,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-0.11": "0.11.x-dev" + "dev-main": "0.12.x-dev" }, "bamarni-bin": { "bin-links": false, @@ -8749,9 +8653,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.11.22" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.0" }, - "time": "2023-10-14T21:56:36+00:00" + "time": "2023-12-20T15:28:09+00:00" }, { "name": "ralouphie/getallheaders", @@ -8984,16 +8888,16 @@ }, { "name": "symfony/console", - "version": "v6.3.4", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6" + "reference": "ca73e92b0ab86d3c5347f58ec6d822cce6ded1b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6", - "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6", + "url": "https://api.github.com/repos/symfony/console/zipball/ca73e92b0ab86d3c5347f58ec6d822cce6ded1b0", + "reference": "ca73e92b0ab86d3c5347f58ec6d822cce6ded1b0", "shasum": "" }, "require": { @@ -9054,7 +8958,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.3.4" + "source": "https://github.com/symfony/console/tree/v6.3.11" }, "funding": [ { @@ -9070,20 +8974,20 @@ "type": "tidelift" } ], - "time": "2023-08-16T10:10:12+00:00" + "time": "2023-12-10T14:03:40+00:00" }, { "name": "symfony/css-selector", - "version": "v6.3.2", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "883d961421ab1709877c10ac99451632a3d6fa57" + "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57", - "reference": "883d961421ab1709877c10ac99451632a3d6fa57", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/d036c6c0d0b09e24a14a35f8292146a658f986e4", + "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4", "shasum": "" }, "require": { @@ -9119,7 +9023,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.3.2" + "source": "https://github.com/symfony/css-selector/tree/v6.4.0" }, "funding": [ { @@ -9135,20 +9039,20 @@ "type": "tidelift" } ], - "time": "2023-07-12T16:00:22+00:00" + "time": "2023-10-31T08:40:20+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "2ed62b3bf98346e1f45529a7b6be2196739bb993" + "reference": "891c195b2aa6beed145adf2c9cf0dcbdb58f71b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed62b3bf98346e1f45529a7b6be2196739bb993", - "reference": "2ed62b3bf98346e1f45529a7b6be2196739bb993", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/891c195b2aa6beed145adf2c9cf0dcbdb58f71b4", + "reference": "891c195b2aa6beed145adf2c9cf0dcbdb58f71b4", "shasum": "" }, "require": { @@ -9200,7 +9104,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v6.3.5" + "source": "https://github.com/symfony/dependency-injection/tree/v6.3.11" }, "funding": [ { @@ -9216,7 +9120,7 @@ "type": "tidelift" } ], - "time": "2023-09-25T16:46:40+00:00" + "time": "2023-12-28T19:16:47+00:00" }, { "name": "symfony/deprecation-contracts", @@ -9361,16 +9265,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v6.3.2", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e" + "reference": "4b4738c49f4dc2f6cf750301c7781dd0d715c0b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e", - "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4b4738c49f4dc2f6cf750301c7781dd0d715c0b8", + "reference": "4b4738c49f4dc2f6cf750301c7781dd0d715c0b8", "shasum": "" }, "require": { @@ -9421,7 +9325,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.11" }, "funding": [ { @@ -9437,7 +9341,7 @@ "type": "tidelift" } ], - "time": "2023-07-06T06:56:43+00:00" + "time": "2023-12-27T22:16:07+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -9517,16 +9421,16 @@ }, { "name": "symfony/filesystem", - "version": "v6.3.1", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae" + "reference": "952a8cb588c3bc6ce76f6023000fb932f16a6e59" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae", - "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/952a8cb588c3bc6ce76f6023000fb932f16a6e59", + "reference": "952a8cb588c3bc6ce76f6023000fb932f16a6e59", "shasum": "" }, "require": { @@ -9560,7 +9464,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.3.1" + "source": "https://github.com/symfony/filesystem/tree/v6.4.0" }, "funding": [ { @@ -9576,27 +9480,27 @@ "type": "tidelift" } ], - "time": "2023-06-01T08:30:39+00:00" + "time": "2023-07-26T17:27:13+00:00" }, { "name": "symfony/finder", - "version": "v6.3.5", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4" + "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4", - "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4", + "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", + "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", "shasum": "" }, "require": { "php": ">=8.1" }, "require-dev": { - "symfony/filesystem": "^6.0" + "symfony/filesystem": "^6.0|^7.0" }, "type": "library", "autoload": { @@ -9624,7 +9528,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.3.5" + "source": "https://github.com/symfony/finder/tree/v6.4.0" }, "funding": [ { @@ -9640,20 +9544,20 @@ "type": "tidelift" } ], - "time": "2023-09-26T12:56:25+00:00" + "time": "2023-10-31T17:30:12+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957" + "reference": "63a2041d055f17cdbd454838e2fbb822e2abc266" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b50f5e281d722cb0f4c296f908bacc3e2b721957", - "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/63a2041d055f17cdbd454838e2fbb822e2abc266", + "reference": "63a2041d055f17cdbd454838e2fbb822e2abc266", "shasum": "" }, "require": { @@ -9663,12 +9567,12 @@ "symfony/polyfill-php83": "^1.27" }, "conflict": { - "symfony/cache": "<6.2" + "symfony/cache": "<6.3" }, "require-dev": { - "doctrine/dbal": "^2.13.1|^3.0", + "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1|^2.0", - "symfony/cache": "^5.4|^6.0", + "symfony/cache": "^6.3", "symfony/dependency-injection": "^5.4|^6.0", "symfony/expression-language": "^5.4|^6.0", "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", @@ -9701,7 +9605,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.3.5" + "source": "https://github.com/symfony/http-foundation/tree/v6.3.11" }, "funding": [ { @@ -9717,20 +9621,20 @@ "type": "tidelift" } ], - "time": "2023-09-04T21:33:54+00:00" + "time": "2023-12-27T22:16:07+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc" + "reference": "9e9966d27dfe612898ffb3c507a1db2f29faefd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f991a964368bee8d883e8d57ced4fe9fff04dfc", - "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9e9966d27dfe612898ffb3c507a1db2f29faefd1", + "reference": "9e9966d27dfe612898ffb3c507a1db2f29faefd1", "shasum": "" }, "require": { @@ -9814,7 +9718,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.3.5" + "source": "https://github.com/symfony/http-kernel/tree/v6.3.11" }, "funding": [ { @@ -9830,20 +9734,20 @@ "type": "tidelift" } ], - "time": "2023-09-30T06:37:04+00:00" + "time": "2023-12-30T13:09:13+00:00" }, { "name": "symfony/mailer", - "version": "v6.3.5", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06" + "reference": "6da89e5c9202f129717a770a03183fb140720168" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/d89611a7830d51b5e118bca38e390dea92f9ea06", - "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06", + "url": "https://api.github.com/repos/symfony/mailer/zipball/6da89e5c9202f129717a770a03183fb140720168", + "reference": "6da89e5c9202f129717a770a03183fb140720168", "shasum": "" }, "require": { @@ -9851,8 +9755,8 @@ "php": ">=8.1", "psr/event-dispatcher": "^1", "psr/log": "^1|^2|^3", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/mime": "^6.2", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -9863,10 +9767,10 @@ "symfony/twig-bridge": "<6.2.1" }, "require-dev": { - "symfony/console": "^5.4|^6.0", - "symfony/http-client": "^5.4|^6.0", - "symfony/messenger": "^6.2", - "symfony/twig-bridge": "^6.2" + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^7.0" }, "type": "library", "autoload": { @@ -9894,7 +9798,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.3.5" + "source": "https://github.com/symfony/mailer/tree/v6.4.2" }, "funding": [ { @@ -9910,7 +9814,7 @@ "type": "tidelift" } ], - "time": "2023-09-06T09:47:15+00:00" + "time": "2023-12-19T09:12:31+00:00" }, { "name": "symfony/mime", @@ -10813,16 +10717,16 @@ }, { "name": "symfony/process", - "version": "v6.3.4", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54" + "reference": "0a4e8fac947b0f1720b0f634a13a2273cc4cc1ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54", - "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54", + "url": "https://api.github.com/repos/symfony/process/zipball/0a4e8fac947b0f1720b0f634a13a2273cc4cc1ad", + "reference": "0a4e8fac947b0f1720b0f634a13a2273cc4cc1ad", "shasum": "" }, "require": { @@ -10854,7 +10758,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.3.4" + "source": "https://github.com/symfony/process/tree/v6.3.11" }, "funding": [ { @@ -10870,7 +10774,7 @@ "type": "tidelift" } ], - "time": "2023-08-07T10:39:22+00:00" + "time": "2023-12-02T12:48:42+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -10962,16 +10866,16 @@ }, { "name": "symfony/routing", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31" + "reference": "5f1b4eb8e7b7d8487389bd774fb76f51dba57452" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31", - "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31", + "url": "https://api.github.com/repos/symfony/routing/zipball/5f1b4eb8e7b7d8487389bd774fb76f51dba57452", + "reference": "5f1b4eb8e7b7d8487389bd774fb76f51dba57452", "shasum": "" }, "require": { @@ -11025,7 +10929,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.3.5" + "source": "https://github.com/symfony/routing/tree/v6.3.11" }, "funding": [ { @@ -11041,20 +10945,20 @@ "type": "tidelift" } ], - "time": "2023-09-20T16:05:51+00:00" + "time": "2023-12-29T15:20:22+00:00" }, { "name": "symfony/serializer", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "855fc058c8bdbb69f53834f2fdb3876c9bc0ab7c" + "reference": "83a2e5ec60dddfb227b28ef9bffb7da073e50cfc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/855fc058c8bdbb69f53834f2fdb3876c9bc0ab7c", - "reference": "855fc058c8bdbb69f53834f2fdb3876c9bc0ab7c", + "url": "https://api.github.com/repos/symfony/serializer/zipball/83a2e5ec60dddfb227b28ef9bffb7da073e50cfc", + "reference": "83a2e5ec60dddfb227b28ef9bffb7da073e50cfc", "shasum": "" }, "require": { @@ -11119,7 +11023,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v6.3.5" + "source": "https://github.com/symfony/serializer/tree/v6.3.11" }, "funding": [ { @@ -11135,7 +11039,7 @@ "type": "tidelift" } ], - "time": "2023-09-29T16:18:53+00:00" + "time": "2023-12-29T15:20:22+00:00" }, { "name": "symfony/service-contracts", @@ -11221,16 +11125,16 @@ }, { "name": "symfony/string", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339" + "reference": "6a4b1e7b315cf420c814c8e29d8af1e96ae4b674" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/13d76d0fb049051ed12a04bef4f9de8715bea339", - "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339", + "url": "https://api.github.com/repos/symfony/string/zipball/6a4b1e7b315cf420c814c8e29d8af1e96ae4b674", + "reference": "6a4b1e7b315cf420c814c8e29d8af1e96ae4b674", "shasum": "" }, "require": { @@ -11287,7 +11191,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.3.5" + "source": "https://github.com/symfony/string/tree/v6.3.11" }, "funding": [ { @@ -11303,7 +11207,7 @@ "type": "tidelift" } ], - "time": "2023-09-18T10:38:32+00:00" + "time": "2023-12-10T14:03:40+00:00" }, { "name": "symfony/translation-contracts", @@ -11385,16 +11289,16 @@ }, { "name": "symfony/validator", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "48e815ba3b5eb72e632588dbf7ea2dc4e608ee47" + "reference": "e35e841744bc8d3c54ffd35f06e22e02b36d6209" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/48e815ba3b5eb72e632588dbf7ea2dc4e608ee47", - "reference": "48e815ba3b5eb72e632588dbf7ea2dc4e608ee47", + "url": "https://api.github.com/repos/symfony/validator/zipball/e35e841744bc8d3c54ffd35f06e22e02b36d6209", + "reference": "e35e841744bc8d3c54ffd35f06e22e02b36d6209", "shasum": "" }, "require": { @@ -11461,7 +11365,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.3.5" + "source": "https://github.com/symfony/validator/tree/v6.3.11" }, "funding": [ { @@ -11477,20 +11381,20 @@ "type": "tidelift" } ], - "time": "2023-09-29T07:41:15+00:00" + "time": "2023-12-29T16:33:47+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.3.5", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5" + "reference": "376d3c652c17c33d88db7a7e2e5288ecf3e327dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3d9999376be5fea8de47752837a3e1d1c5f69ef5", - "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/376d3c652c17c33d88db7a7e2e5288ecf3e327dc", + "reference": "376d3c652c17c33d88db7a7e2e5288ecf3e327dc", "shasum": "" }, "require": { @@ -11545,7 +11449,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.3.5" + "source": "https://github.com/symfony/var-dumper/tree/v6.3.11" }, "funding": [ { @@ -11561,20 +11465,20 @@ "type": "tidelift" } ], - "time": "2023-09-12T10:11:35+00:00" + "time": "2023-12-28T15:37:35+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.3.4", + "version": "v6.3.11", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691" + "reference": "a8a93f02c528066a3ee66ed823dff839b602e1c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df1f8aac5751871b83d30bf3e2c355770f8f0691", - "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8a93f02c528066a3ee66ed823dff839b602e1c1", + "reference": "a8a93f02c528066a3ee66ed823dff839b602e1c1", "shasum": "" }, "require": { @@ -11619,7 +11523,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.3.4" + "source": "https://github.com/symfony/var-exporter/tree/v6.3.11" }, "funding": [ { @@ -11635,20 +11539,20 @@ "type": "tidelift" } ], - "time": "2023-08-16T18:14:47+00:00" + "time": "2023-12-26T12:32:59+00:00" }, { "name": "symfony/yaml", - "version": "v6.3.3", + "version": "v6.3.8", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add" + "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add", - "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add", + "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92", + "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92", "shasum": "" }, "require": { @@ -11691,7 +11595,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.3.3" + "source": "https://github.com/symfony/yaml/tree/v6.3.8" }, "funding": [ { @@ -11707,27 +11611,27 @@ "type": "tidelift" } ], - "time": "2023-07-31T07:08:24+00:00" + "time": "2023-11-06T10:58:05+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "2.2.6", + "version": "v2.2.7", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", - "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "php": "^5.5 || ^7.0 || ^8.0", - "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" @@ -11758,9 +11662,9 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" }, - "time": "2023-01-03T09:29:04+00:00" + "time": "2023-12-08T13:03:43+00:00" }, { "name": "twig/twig", @@ -11835,31 +11739,31 @@ }, { "name": "vlucas/phpdotenv", - "version": "v5.5.0", + "version": "v5.6.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", - "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.0.2", - "php": "^7.1.3 || ^8.0", - "phpoption/phpoption": "^1.8", - "symfony/polyfill-ctype": "^1.23", - "symfony/polyfill-mbstring": "^1.23.1", - "symfony/polyfill-php80": "^1.23.1" + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-filter": "*", - "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "suggest": { "ext-filter": "Required to use the boolean validator." @@ -11871,7 +11775,7 @@ "forward-command": true }, "branch-alias": { - "dev-master": "5.5-dev" + "dev-master": "5.6-dev" } }, "autoload": { @@ -11903,7 +11807,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" }, "funding": [ { @@ -11915,7 +11819,7 @@ "type": "tidelift" } ], - "time": "2022-10-16T01:01:54+00:00" + "time": "2023-11-12T22:43:29+00:00" }, { "name": "webflo/drupal-finder", @@ -12074,26 +11978,28 @@ "packages-dev": [ { "name": "behat/mink", - "version": "v1.10.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/minkphp/Mink.git", - "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5" + "reference": "d8527fdf8785aad38455fb426af457ab9937aece" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/19e58905632e7cfdc5b2bafb9b950a3521af32c5", - "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/d8527fdf8785aad38455fb426af457ab9937aece", + "reference": "d8527fdf8785aad38455fb426af457ab9937aece", "shasum": "" }, "require": { "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0" + "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0", - "symfony/phpunit-bridge": "^5.4 || ^6.0" + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0" }, "suggest": { "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", @@ -12132,37 +12038,40 @@ ], "support": { "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.10.0" + "source": "https://github.com/minkphp/Mink/tree/v1.11.0" }, - "time": "2022-03-28T14:22:43+00:00" + "time": "2023-12-09T11:23:23+00:00" }, { "name": "behat/mink-browserkit-driver", - "version": "v2.1.0", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", - "reference": "d2768e6c17b293d86d8fcff54cbb9e6ad938fee1" + "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/d2768e6c17b293d86d8fcff54cbb9e6ad938fee1", - "reference": "d2768e6c17b293d86d8fcff54cbb9e6ad938fee1", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/16d53476e42827ed3aafbfa4fde17a1743eafd50", + "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50", "shasum": "" }, "require": { - "behat/mink": "^1.9.0@dev", + "behat/mink": "^1.11.0@dev", + "ext-dom": "*", "php": ">=7.2", - "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", - "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0" + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", "phpunit/phpunit": "^8.5 || ^9.5", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0", - "symfony/http-client": "^4.4 || ^5.0 || ^6.0", - "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0", - "symfony/mime": "^4.4 || ^5.0 || ^6.0", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0", "yoast/phpunit-polyfills": "^1.0" }, "type": "mink-driver", @@ -12197,34 +12106,36 @@ ], "support": { "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", - "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.1.0" + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.2.0" }, - "time": "2022-03-28T14:33:51+00:00" + "time": "2023-12-09T11:30:50+00:00" }, { "name": "behat/mink-selenium2-driver", - "version": "v1.6.0", + "version": "v1.7.0", "source": { "type": "git", "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "e5f8421654930da725499fb92983e6948c6f973e" + "reference": "4ca4083f305de7dff4434ac402dc4e3f39c0866a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", - "reference": "e5f8421654930da725499fb92983e6948c6f973e", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/4ca4083f305de7dff4434ac402dc4e3f39c0866a", + "reference": "4ca4083f305de7dff4434ac402dc4e3f39c0866a", "shasum": "" }, "require": { - "behat/mink": "^1.9@dev", + "behat/mink": "^1.11@dev", "ext-json": "*", - "instaclick/php-webdriver": "^1.4", + "instaclick/php-webdriver": "^1.4.14", "php": ">=7.2" }, "require-dev": { "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0" + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0" }, "type": "mink-driver", "extra": { @@ -12265,22 +12176,22 @@ ], "support": { "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" + "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.7.0" }, - "time": "2022-03-28T14:55:17+00:00" + "time": "2023-12-09T11:58:45+00:00" }, { "name": "colinodell/psr-testlogger", - "version": "v1.2.0", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/colinodell/psr-testlogger.git", - "reference": "9246155e688b310fb3d0f201ead2445686b5844e" + "reference": "291f5b70ea0d3139787d18f442365a8e2784a462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinodell/psr-testlogger/zipball/9246155e688b310fb3d0f201ead2445686b5844e", - "reference": "9246155e688b310fb3d0f201ead2445686b5844e", + "url": "https://api.github.com/repos/colinodell/psr-testlogger/zipball/291f5b70ea0d3139787d18f442365a8e2784a462", + "reference": "291f5b70ea0d3139787d18f442365a8e2784a462", "shasum": "" }, "require": { @@ -12346,20 +12257,20 @@ "type": "github" } ], - "time": "2023-03-14T19:12:55+00:00" + "time": "2023-11-29T23:03:34+00:00" }, { "name": "composer/ca-bundle", - "version": "1.3.7", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" + "reference": "b66d11b7479109ab547f9405b97205640b17d385" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385", + "reference": "b66d11b7479109ab547f9405b97205640b17d385", "shasum": "" }, "require": { @@ -12371,7 +12282,7 @@ "phpstan/phpstan": "^0.12.55", "psr/log": "^1.0", "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", "extra": { @@ -12406,7 +12317,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.7" + "source": "https://github.com/composer/ca-bundle/tree/1.4.0" }, "funding": [ { @@ -12422,7 +12333,7 @@ "type": "tidelift" } ], - "time": "2023-08-30T09:31:38+00:00" + "time": "2023-12-18T12:05:55+00:00" }, { "name": "composer/class-map-generator", @@ -12499,16 +12410,16 @@ }, { "name": "composer/composer", - "version": "2.6.5", + "version": "2.6.6", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33" + "reference": "683557bd2466072777309d039534bb1332d0dda5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/4b0fe89db9e65b1e64df633a992e70a7a215ab33", - "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33", + "url": "https://api.github.com/repos/composer/composer/zipball/683557bd2466072777309d039534bb1332d0dda5", + "reference": "683557bd2466072777309d039534bb1332d0dda5", "shasum": "" }, "require": { @@ -12526,7 +12437,7 @@ "seld/jsonlint": "^1.4", "seld/phar-utils": "^1.2", "seld/signal-handler": "^2.0", - "symfony/console": "^5.4.11 || ^6.0.11 || ^7", + "symfony/console": "^5.4.11 || ^6.0.11", "symfony/filesystem": "^5.4 || ^6.0 || ^7", "symfony/finder": "^5.4 || ^6.0 || ^7", "symfony/polyfill-php73": "^1.24", @@ -12593,7 +12504,7 @@ "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.6.5" + "source": "https://github.com/composer/composer/tree/2.6.6" }, "funding": [ { @@ -12609,7 +12520,7 @@ "type": "tidelift" } ], - "time": "2023-10-06T08:11:52+00:00" + "time": "2023-12-08T17:32:26+00:00" }, { "name": "composer/metadata-minifier", @@ -12753,16 +12664,16 @@ }, { "name": "composer/spdx-licenses", - "version": "1.5.7", + "version": "1.5.8", "source": { "type": "git", "url": "https://github.com/composer/spdx-licenses.git", - "reference": "c848241796da2abf65837d51dce1fae55a960149" + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", - "reference": "c848241796da2abf65837d51dce1fae55a960149", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", "shasum": "" }, "require": { @@ -12811,9 +12722,9 @@ "validator" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" + "source": "https://github.com/composer/spdx-licenses/tree/1.5.8" }, "funding": [ { @@ -12829,7 +12740,7 @@ "type": "tidelift" } ], - "time": "2022-05-23T07:37:50+00:00" + "time": "2023-11-20T07:44:33+00:00" }, { "name": "composer/xdebug-handler", @@ -13098,16 +13009,16 @@ }, { "name": "drupal/core-dev", - "version": "10.1.5", + "version": "10.1.7", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", - "reference": "e11a86bc8c037e67c7c5c974fbabe051bbcdcc81" + "reference": "5d02df4f05f5033e7d8bf4098efa55cc0847e2b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/e11a86bc8c037e67c7c5c974fbabe051bbcdcc81", - "reference": "e11a86bc8c037e67c7c5c974fbabe051bbcdcc81", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/5d02df4f05f5033e7d8bf4098efa55cc0847e2b9", + "reference": "5d02df4f05f5033e7d8bf4098efa55cc0847e2b9", "shasum": "" }, "require": { @@ -13115,7 +13026,7 @@ "behat/mink-browserkit-driver": "^2.1", "behat/mink-selenium2-driver": "^1.4", "colinodell/psr-testlogger": "^1.2", - "composer/composer": "^2.4", + "composer/composer": "^2.6.4", "drupal/coder": "^8.3.10", "instaclick/php-webdriver": "^1.4.1", "justinrainbow/json-schema": "^5.2", @@ -13146,22 +13057,22 @@ ], "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "source": "https://github.com/drupal/core-dev/tree/10.1.5" + "source": "https://github.com/drupal/core-dev/tree/10.1.7" }, - "time": "2023-05-25T11:39:24+00:00" + "time": "2023-10-05T21:10:12+00:00" }, { "name": "instaclick/php-webdriver", - "version": "1.4.16", + "version": "1.4.18", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606" + "reference": "a61a8459f86c79dd1f19934ea3929804f2e41f8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", - "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a61a8459f86c79dd1f19934ea3929804f2e41f8c", + "reference": "a61a8459f86c79dd1f19934ea3929804f2e41f8c", "shasum": "" }, "require": { @@ -13209,9 +13120,9 @@ ], "support": { "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.16" + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.18" }, - "time": "2022-10-28T13:30:35+00:00" + "time": "2023-12-08T07:11:19+00:00" }, { "name": "justinrainbow/json-schema", @@ -13285,37 +13196,37 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.2.0", + "version": "1.2.4", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "d721420086f146640acecebb7a678661a66e97d5" + "reference": "57b2cc67fb4416e8484db37a3d8502ac8fb3c0d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/d721420086f146640acecebb7a678661a66e97d5", - "reference": "d721420086f146640acecebb7a678661a66e97d5", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/57b2cc67fb4416e8484db37a3d8502ac8fb3c0d6", + "reference": "57b2cc67fb4416e8484db37a3d8502ac8fb3c0d6", "shasum": "" }, "require": { "php": "^7.4 || ^8.0", "phpstan/phpstan": "^1.10.1", "phpstan/phpstan-deprecation-rules": "^1.1.4", - "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", - "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0", + "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0", "webflo/drupal-finder": "^1.2" }, "require-dev": { "behat/mink": "^1.8", "composer/installers": "^1.9", - "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 || ^10.0 || ^11", + "drupal/core-recommended": "^9.0", + "drush/drush": "^10.0 || ^11 || ^12", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", + "phpunit/phpunit": "^8.5 || ^9", "slevomat/coding-standard": "^7.1", "squizlabs/php_codesniffer": "^3.3", - "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" + "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0" }, "suggest": { "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", @@ -13369,7 +13280,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.0" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.4" }, "funding": [ { @@ -13385,7 +13296,7 @@ "type": "tidelift" } ], - "time": "2023-08-24T20:32:56+00:00" + "time": "2023-11-14T22:47:32+00:00" }, { "name": "mikey179/vfsstream", @@ -13778,29 +13689,29 @@ }, { "name": "phpspec/prophecy", - "version": "v1.17.0", + "version": "v1.18.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "15873c65b207b07765dbc3c95d20fdf4a320cbe2" + "reference": "d4f454f7e1193933f04e6500de3e79191648ed0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/15873c65b207b07765dbc3c95d20fdf4a320cbe2", - "reference": "15873c65b207b07765dbc3c95d20fdf4a320cbe2", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d4f454f7e1193933f04e6500de3e79191648ed0c", + "reference": "d4f454f7e1193933f04e6500de3e79191648ed0c", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2 || ^2.0", - "php": "^7.2 || 8.0.* || 8.1.* || 8.2.*", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*", "phpdocumentor/reflection-docblock": "^5.2", - "sebastian/comparator": "^3.0 || ^4.0", - "sebastian/recursion-context": "^3.0 || ^4.0" + "sebastian/comparator": "^3.0 || ^4.0 || ^5.0", + "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0" }, "require-dev": { "phpspec/phpspec": "^6.0 || ^7.0", "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^8.0 || ^9.0" + "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0" }, "type": "library", "extra": { @@ -13833,6 +13744,7 @@ "keywords": [ "Double", "Dummy", + "dev", "fake", "mock", "spy", @@ -13840,28 +13752,28 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.17.0" + "source": "https://github.com/phpspec/prophecy/tree/v1.18.0" }, - "time": "2023-02-02T15:41:36+00:00" + "time": "2023-12-07T16:22:33+00:00" }, { "name": "phpspec/prophecy-phpunit", - "version": "v2.0.2", + "version": "v2.1.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy-phpunit.git", - "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87" + "reference": "29f8114c2c319a4308e6b070902211e062efa392" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/9f26c224a2fa335f33e6666cc078fbf388255e87", - "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87", + "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/29f8114c2c319a4308e6b070902211e062efa392", + "reference": "29f8114c2c319a4308e6b070902211e062efa392", "shasum": "" }, "require": { "php": "^7.3 || ^8", - "phpspec/prophecy": "^1.3", - "phpunit/phpunit": "^9.1" + "phpspec/prophecy": "^1.18", + "phpunit/phpunit": "^9.1 || ^10.1" }, "type": "library", "extra": { @@ -13892,9 +13804,9 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy-phpunit/issues", - "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.2" + "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.1.0" }, - "time": "2023-04-18T11:58:05+00:00" + "time": "2023-12-08T12:48:02+00:00" }, { "name": "phpstan/extension-installer", @@ -13942,16 +13854,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.24.2", + "version": "1.24.5", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bcad8d995980440892759db0c32acae7c8e79442" + "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bcad8d995980440892759db0c32acae7c8e79442", - "reference": "bcad8d995980440892759db0c32acae7c8e79442", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fedf211ff14ec8381c9bf5714e33a7a552dd1acc", + "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc", "shasum": "" }, "require": { @@ -13983,22 +13895,22 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.2" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.5" }, - "time": "2023-09-26T12:28:12+00:00" + "time": "2023-12-16T09:33:33+00:00" }, { "name": "phpstan/phpstan", - "version": "1.10.39", + "version": "1.10.50", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "d9dedb0413f678b4d03cbc2279a48f91592c97c4" + "reference": "06a98513ac72c03e8366b5a0cb00750b487032e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d9dedb0413f678b4d03cbc2279a48f91592c97c4", - "reference": "d9dedb0413f678b4d03cbc2279a48f91592c97c4", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/06a98513ac72c03e8366b5a0cb00750b487032e4", + "reference": "06a98513ac72c03e8366b5a0cb00750b487032e4", "shasum": "" }, "require": { @@ -14047,7 +13959,7 @@ "type": "tidelift" } ], - "time": "2023-10-17T15:46:26+00:00" + "time": "2023-12-13T10:59:42+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -14151,23 +14063,23 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.29", + "version": "9.2.30", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76" + "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76", - "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.15", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -14217,7 +14129,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30" }, "funding": [ { @@ -14225,7 +14137,7 @@ "type": "github" } ], - "time": "2023-09-19T04:57:46+00:00" + "time": "2023-12-22T06:47:57+00:00" }, { "name": "phpunit/php-file-iterator", @@ -14470,16 +14382,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.13", + "version": "9.6.15", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be" + "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be", - "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1", + "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1", "shasum": "" }, "require": { @@ -14553,7 +14465,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15" }, "funding": [ { @@ -14569,28 +14481,28 @@ "type": "tidelift" } ], - "time": "2023-09-19T05:39:22+00:00" + "time": "2023-12-01T16:55:19+00:00" }, { "name": "react/promise", - "version": "v3.0.0", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/reactphp/promise.git", - "reference": "c86753c76fd3be465d93b308f18d189f01a22be4" + "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/c86753c76fd3be465d93b308f18d189f01a22be4", - "reference": "c86753c76fd3be465d93b308f18d189f01a22be4", + "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", + "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", "shasum": "" }, "require": { "php": ">=7.1.0" }, "require-dev": { - "phpstan/phpstan": "1.10.20 || 1.4.10", - "phpunit/phpunit": "^9.5 || ^7.5" + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" }, "type": "library", "autoload": { @@ -14634,7 +14546,7 @@ ], "support": { "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v3.0.0" + "source": "https://github.com/reactphp/promise/tree/v3.1.0" }, "funding": [ { @@ -14642,7 +14554,7 @@ "type": "open_collective" } ], - "time": "2023-07-11T16:12:49+00:00" + "time": "2023-11-16T16:21:57+00:00" }, { "name": "sebastian/cli-parser", @@ -14887,20 +14799,20 @@ }, { "name": "sebastian/complexity", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", "shasum": "" }, "require": { - "nikic/php-parser": "^4.7", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3" }, "require-dev": { @@ -14932,7 +14844,7 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" }, "funding": [ { @@ -14940,7 +14852,7 @@ "type": "github" } ], - "time": "2020-10-26T15:52:27+00:00" + "time": "2023-12-22T06:19:30+00:00" }, { "name": "sebastian/environment", @@ -15148,20 +15060,20 @@ }, { "name": "sebastian/lines-of-code", - "version": "1.0.3", + "version": "1.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", "shasum": "" }, "require": { - "nikic/php-parser": "^4.6", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3" }, "require-dev": { @@ -15193,7 +15105,7 @@ "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" }, "funding": [ { @@ -15201,7 +15113,7 @@ "type": "github" } ], - "time": "2020-11-28T06:42:11+00:00" + "time": "2023-12-22T06:20:34+00:00" }, { "name": "sebastian/object-enumerator", @@ -15544,16 +15456,16 @@ }, { "name": "seld/jsonlint", - "version": "1.10.0", + "version": "1.10.1", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1" + "reference": "76d449a358ece77d6f1d6331c68453e657172202" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/76d449a358ece77d6f1d6331c68453e657172202", + "reference": "76d449a358ece77d6f1d6331c68453e657172202", "shasum": "" }, "require": { @@ -15580,7 +15492,7 @@ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "homepage": "https://seld.be" } ], "description": "JSON Linter", @@ -15592,7 +15504,7 @@ ], "support": { "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0" + "source": "https://github.com/Seldaek/jsonlint/tree/1.10.1" }, "funding": [ { @@ -15604,7 +15516,7 @@ "type": "tidelift" } ], - "time": "2023-05-11T13:16:46+00:00" + "time": "2023-12-18T13:03:25+00:00" }, { "name": "seld/phar-utils", @@ -15840,16 +15752,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.7.2", + "version": "3.8.0", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879" + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879", - "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5805f7a4e4958dbb5e944ef1e6edae0a303765e7", + "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7", "shasum": "" }, "require": { @@ -15859,7 +15771,7 @@ "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/phpcs", @@ -15878,46 +15790,69 @@ "authors": [ { "name": "Greg Sherwood", - "role": "lead" + "role": "Former lead" + }, + { + "name": "Juliette Reinders Folmer", + "role": "Current lead" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" } ], "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", "keywords": [ "phpcs", "standards", "static analysis" ], "support": { - "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", + "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", + "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" }, - "time": "2023-02-22T23:07:41+00:00" + "funding": [ + { + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", + "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + } + ], + "time": "2023-12-08T12:32:31+00:00" }, { "name": "symfony/browser-kit", - "version": "v6.3.2", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "ca4a988488f61ac18f8f845445eabdd36f89aa8d" + "reference": "a3bb210e001580ec75e1d02b27fae3452e6bf502" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/ca4a988488f61ac18f8f845445eabdd36f89aa8d", - "reference": "ca4a988488f61ac18f8f845445eabdd36f89aa8d", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a3bb210e001580ec75e1d02b27fae3452e6bf502", + "reference": "a3bb210e001580ec75e1d02b27fae3452e6bf502", "shasum": "" }, "require": { "php": ">=8.1", - "symfony/dom-crawler": "^5.4|^6.0" + "symfony/dom-crawler": "^5.4|^6.0|^7.0" }, "require-dev": { - "symfony/css-selector": "^5.4|^6.0", - "symfony/http-client": "^5.4|^6.0", - "symfony/mime": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0" + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -15945,7 +15880,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v6.3.2" + "source": "https://github.com/symfony/browser-kit/tree/v6.4.0" }, "funding": [ { @@ -15961,20 +15896,20 @@ "type": "tidelift" } ], - "time": "2023-07-06T06:56:43+00:00" + "time": "2023-10-31T08:18:17+00:00" }, { "name": "symfony/dom-crawler", - "version": "v6.3.4", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "3fdd2a3d5fdc363b2e8dbf817f9726a4d013cbd1" + "reference": "14ff4fd2a5c8969d6158dbe7ef5b17d6a9c6ba33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/3fdd2a3d5fdc363b2e8dbf817f9726a4d013cbd1", - "reference": "3fdd2a3d5fdc363b2e8dbf817f9726a4d013cbd1", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/14ff4fd2a5c8969d6158dbe7ef5b17d6a9c6ba33", + "reference": "14ff4fd2a5c8969d6158dbe7ef5b17d6a9c6ba33", "shasum": "" }, "require": { @@ -15984,7 +15919,7 @@ "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { - "symfony/css-selector": "^5.4|^6.0" + "symfony/css-selector": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -16012,7 +15947,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v6.3.4" + "source": "https://github.com/symfony/dom-crawler/tree/v6.4.0" }, "funding": [ { @@ -16028,20 +15963,20 @@ "type": "tidelift" } ], - "time": "2023-08-01T07:43:40+00:00" + "time": "2023-11-20T16:41:16+00:00" }, { "name": "symfony/lock", - "version": "v6.3.2", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "cde6dbd72d217024b1049d42a4519e713e2f18af" + "reference": "e7be7af2ad07f645bb0c9f4533b5b6c46eba1f79" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/cde6dbd72d217024b1049d42a4519e713e2f18af", - "reference": "cde6dbd72d217024b1049d42a4519e713e2f18af", + "url": "https://api.github.com/repos/symfony/lock/zipball/e7be7af2ad07f645bb0c9f4533b5b6c46eba1f79", + "reference": "e7be7af2ad07f645bb0c9f4533b5b6c46eba1f79", "shasum": "" }, "require": { @@ -16054,7 +15989,7 @@ "symfony/cache": "<6.2" }, "require-dev": { - "doctrine/dbal": "^2.13|^3.0", + "doctrine/dbal": "^2.13|^3|^4", "predis/predis": "^1.1|^2.0" }, "type": "library", @@ -16091,7 +16026,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v6.3.2" + "source": "https://github.com/symfony/lock/tree/v6.4.2" }, "funding": [ { @@ -16107,20 +16042,20 @@ "type": "tidelift" } ], - "time": "2023-06-28T15:25:15+00:00" + "time": "2023-12-19T09:12:31+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v6.3.2", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "e020e1efbd1b42cb670fcd7d19a25abbddba035d" + "reference": "bd0455b7888e4adac29cf175d819c51f88fed942" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e020e1efbd1b42cb670fcd7d19a25abbddba035d", - "reference": "e020e1efbd1b42cb670fcd7d19a25abbddba035d", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/bd0455b7888e4adac29cf175d819c51f88fed942", + "reference": "bd0455b7888e4adac29cf175d819c51f88fed942", "shasum": "" }, "require": { @@ -16131,7 +16066,7 @@ }, "require-dev": { "symfony/deprecation-contracts": "^2.5|^3.0", - "symfony/error-handler": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", "symfony/polyfill-php81": "^1.27" }, "bin": [ @@ -16172,7 +16107,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v6.3.2" + "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.2" }, "funding": [ { @@ -16188,7 +16123,7 @@ "type": "tidelift" } ], - "time": "2023-07-12T16:00:22+00:00" + "time": "2023-12-19T09:12:31+00:00" }, { "name": "symfony/polyfill-php73", @@ -16271,16 +16206,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.1", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", "shasum": "" }, "require": { @@ -16309,7 +16244,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + "source": "https://github.com/theseer/tokenizer/tree/1.2.2" }, "funding": [ { @@ -16317,7 +16252,7 @@ "type": "github" } ], - "time": "2021-07-28T10:34:58+00:00" + "time": "2023-11-20T00:12:19+00:00" }, { "name": "zaporylie/composer-drupal-optimizations", @@ -16377,5 +16312,5 @@ "ext-curl": "*" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } From 0ebc4d0dbcd915655a6039e37be9fc9f5c309864 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 18 Jan 2024 01:30:08 +0000 Subject: [PATCH 15/27] Configure Violinist --- composer.json | 15 +++++++++++++++ composer.lock | 22 +++++++++++----------- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index 5456936..6a08b5b 100644 --- a/composer.json +++ b/composer.json @@ -164,6 +164,21 @@ " * Remove the plugin that prints this message:", " composer remove drupal/core-project-message" ] + }, + "violinist": { + "automerge": 1, + "bundled_packages": { + "drupal/core-recommended": [ + "drupal/core-composer-scaffold", + "drupal/core-dev", + "drupal/core-project-message" + ] + }, + "blocklist": [ + "drupal/core-composer-scaffold", + "drupal/core-dev", + "drupal/core-project-message" + ] } } } diff --git a/composer.lock b/composer.lock index e00ea20..6336ebb 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "403679965fc37dcb9658757849173e4e", + "content-hash": "60ff6306126850ee3c7ad45601a5a87a", "packages": [ { "name": "apimatic/jsonmapper", @@ -2519,7 +2519,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2768,7 +2768,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2812,7 +2812,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3049,7 +3049,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3097,7 +3097,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3141,7 +3141,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3242,7 +3242,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3349,7 +3349,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3616,7 +3616,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3721,7 +3721,7 @@ "extra": { "drupal": { "version": "8.x-2.37", - "datestamp": "1704127692", + "datestamp": "1705503863", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" From b1ca0192d936d7c80bf22ae19da6a6caa58121d8 Mon Sep 17 00:00:00 2001 From: Violinist bot Date: Thu, 18 Jan 2024 01:32:00 +0000 Subject: [PATCH 16/27] Update drupal/core-recommended --- composer.lock | 124 +++++++++++++++++++++++++------------------------- 1 file changed, 63 insertions(+), 61 deletions(-) diff --git a/composer.lock b/composer.lock index 6336ebb..53e2a19 100644 --- a/composer.lock +++ b/composer.lock @@ -3883,16 +3883,16 @@ }, { "name": "drupal/core", - "version": "10.1.7", + "version": "10.1.8", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "54415049a721ede65318e3980b402af59bc35913" + "reference": "fe4fd82ecd1f70db397c58d4360e15de0b4785c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/54415049a721ede65318e3980b402af59bc35913", - "reference": "54415049a721ede65318e3980b402af59bc35913", + "url": "https://api.github.com/repos/drupal/core/zipball/fe4fd82ecd1f70db397c58d4360e15de0b4785c7", + "reference": "fe4fd82ecd1f70db397c58d4360e15de0b4785c7", "shasum": "" }, "require": { @@ -4037,13 +4037,13 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/10.1.7" + "source": "https://github.com/drupal/core/tree/10.1.8" }, - "time": "2023-12-06T09:22:56+00:00" + "time": "2024-01-16T21:11:11+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.2.0", + "version": "10.2.2", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -4087,13 +4087,13 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.0" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.2" }, "time": "2023-11-15T23:23:28+00:00" }, { "name": "drupal/core-project-message", - "version": "10.2.0", + "version": "10.2.2", "source": { "type": "git", "url": "https://github.com/drupal/core-project-message.git", @@ -4128,22 +4128,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-project-message/tree/10.2.0" + "source": "https://github.com/drupal/core-project-message/tree/10.2.2" }, "time": "2023-07-24T07:55:25+00:00" }, { "name": "drupal/core-recommended", - "version": "10.1.7", + "version": "10.1.8", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "e4726a4a0173a4b9acdac8cab5d4009d6085fd2e" + "reference": "0e4a17b65e5dd2aedf66461e7c3658a35adc4924" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/e4726a4a0173a4b9acdac8cab5d4009d6085fd2e", - "reference": "e4726a4a0173a4b9acdac8cab5d4009d6085fd2e", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/0e4a17b65e5dd2aedf66461e7c3658a35adc4924", + "reference": "0e4a17b65e5dd2aedf66461e7c3658a35adc4924", "shasum": "" }, "require": { @@ -4152,7 +4152,7 @@ "doctrine/annotations": "~1.14.3", "doctrine/deprecations": "~v1.1.1", "doctrine/lexer": "~2.1.0", - "drupal/core": "10.1.7", + "drupal/core": "10.1.8", "egulias/email-validator": "~4.0.1", "guzzlehttp/guzzle": "~7.7.0", "guzzlehttp/psr7": "~2.5.0", @@ -4209,9 +4209,9 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/10.1.7" + "source": "https://github.com/drupal/core-recommended/tree/10.1.8" }, - "time": "2023-12-06T09:22:56+00:00" + "time": "2024-01-16T21:11:11+00:00" }, { "name": "drupal/core_views_facets", @@ -7549,25 +7549,27 @@ }, { "name": "nikic/php-parser", - "version": "v4.18.0", + "version": "v5.0.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" + "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc", + "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc", "shasum": "" }, "require": { + "ext-ctype": "*", + "ext-json": "*", "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.4" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -7575,7 +7577,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -7599,9 +7601,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0" }, - "time": "2023-12-10T21:03:43+00:00" + "time": "2024-01-07T17:17:35+00:00" }, { "name": "oomphinc/composer-installers-extender", @@ -13009,7 +13011,7 @@ }, { "name": "drupal/core-dev", - "version": "10.1.7", + "version": "10.1.8", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", @@ -13057,7 +13059,7 @@ ], "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "source": "https://github.com/drupal/core-dev/tree/10.1.7" + "source": "https://github.com/drupal/core-dev/tree/10.1.8" }, "time": "2023-10-05T21:10:12+00:00" }, @@ -13196,21 +13198,21 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.2.4", + "version": "1.2.6", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "57b2cc67fb4416e8484db37a3d8502ac8fb3c0d6" + "reference": "ba8678f8cbea42cc41022c21751004eb677cf5a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/57b2cc67fb4416e8484db37a3d8502ac8fb3c0d6", - "reference": "57b2cc67fb4416e8484db37a3d8502ac8fb3c0d6", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/ba8678f8cbea42cc41022c21751004eb677cf5a4", + "reference": "ba8678f8cbea42cc41022c21751004eb677cf5a4", "shasum": "" }, "require": { "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^1.10.1", + "phpstan/phpstan": "^1.10.56", "phpstan/phpstan-deprecation-rules": "^1.1.4", "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0", "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0", @@ -13280,7 +13282,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.4" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.6" }, "funding": [ { @@ -13296,7 +13298,7 @@ "type": "tidelift" } ], - "time": "2023-11-14T22:47:32+00:00" + "time": "2024-01-16T00:42:10+00:00" }, { "name": "mikey179/vfsstream", @@ -13631,16 +13633,16 @@ }, { "name": "phpdocumentor/type-resolver", - "version": "1.7.3", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419" + "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", - "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fad452781b3d774e3337b0c0b245dd8e5a4455fc", + "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc", "shasum": "" }, "require": { @@ -13683,9 +13685,9 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.0" }, - "time": "2023-08-12T11:01:26+00:00" + "time": "2024-01-11T11:49:22+00:00" }, { "name": "phpspec/prophecy", @@ -13854,16 +13856,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.24.5", + "version": "1.25.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc" + "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fedf211ff14ec8381c9bf5714e33a7a552dd1acc", - "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", + "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", "shasum": "" }, "require": { @@ -13895,22 +13897,22 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.5" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" }, - "time": "2023-12-16T09:33:33+00:00" + "time": "2024-01-04T17:06:16+00:00" }, { "name": "phpstan/phpstan", - "version": "1.10.50", + "version": "1.10.56", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "06a98513ac72c03e8366b5a0cb00750b487032e4" + "reference": "27816a01aea996191ee14d010f325434c0ee76fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/06a98513ac72c03e8366b5a0cb00750b487032e4", - "reference": "06a98513ac72c03e8366b5a0cb00750b487032e4", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/27816a01aea996191ee14d010f325434c0ee76fa", + "reference": "27816a01aea996191ee14d010f325434c0ee76fa", "shasum": "" }, "require": { @@ -13959,7 +13961,7 @@ "type": "tidelift" } ], - "time": "2023-12-13T10:59:42+00:00" + "time": "2024-01-15T10:43:00+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -15752,16 +15754,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.8.0", + "version": "3.8.1", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7" + "reference": "14f5fff1e64118595db5408e946f3a22c75807f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5805f7a4e4958dbb5e944ef1e6edae0a303765e7", - "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/14f5fff1e64118595db5408e946f3a22c75807f7", + "reference": "14f5fff1e64118595db5408e946f3a22c75807f7", "shasum": "" }, "require": { @@ -15771,11 +15773,11 @@ "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4" }, "bin": [ - "bin/phpcs", - "bin/phpcbf" + "bin/phpcbf", + "bin/phpcs" ], "type": "library", "extra": { @@ -15828,7 +15830,7 @@ "type": "open_collective" } ], - "time": "2023-12-08T12:32:31+00:00" + "time": "2024-01-11T20:47:48+00:00" }, { "name": "symfony/browser-kit", @@ -16312,5 +16314,5 @@ "ext-curl": "*" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From f07e1c0358bba1207f48a3fddba3fbed5b4c5300 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 21 Jan 2024 21:58:45 +0000 Subject: [PATCH 17/27] Update build configuration files --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 89437e2..da6a3ee 100755 --- a/run +++ b/run @@ -75,7 +75,7 @@ function lint:dockerfile { function start { - cp -v --no-clobber .env.example .env + cp -v --no-clobber .env.example .env || true docker compose up -d } From 97426bdbdd3e0c1dcfba7a3ea94869e431415119 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 19 Mar 2024 19:58:44 +0000 Subject: [PATCH 18/27] Add `drupal/commerce_demo` --- composer.json | 1 + composer.lock | 30 +++++++++++++++++++++++++++--- 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 6a08b5b..d60f9aa 100644 --- a/composer.json +++ b/composer.json @@ -64,6 +64,7 @@ "centarro/commerce_kickstart": "^3.0", "composer/installers": "^2.0", "cweagans/composer-patches": "^1.7", + "drupal/commerce_demo": "3.0.x-dev", "drupal/core-composer-scaffold": "^10", "drupal/core-project-message": "^10", "drupal/core-recommended": "^10", diff --git a/composer.lock b/composer.lock index 53e2a19..5b93755 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "60ff6306126850ee3c7ad45601a5a87a", + "content-hash": "6cbbe1ddf19b67a7edde27d7545f3df6", "packages": [ { "name": "apimatic/jsonmapper", @@ -2843,6 +2843,28 @@ "source": "https://git.drupalcode.org/project/commerce" } }, + { + "name": "drupal/commerce_demo", + "version": "3.0.x-dev", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/commerce_demo.git", + "reference": "ae12b48e897b3a72b8fdd26d7523d975e6a2a282" + }, + "require": { + "centarro/commerce_kickstart": "^3.0", + "drupal/default_content": "^2.0@alpha", + "drupal/search_api": "^1.20" + }, + "default-branch": true, + "type": "drupal-module", + "license": [ + "GPL-2.0+" + ], + "description": "Demo module for the Commerce module.", + "homepage": "http://drupal.org/project/commerce_demo", + "time": "2023-06-05T14:54:31+00:00" + }, { "name": "drupal/commerce_email", "version": "1.1.0", @@ -16306,7 +16328,9 @@ ], "aliases": [], "minimum-stability": "dev", - "stability-flags": [], + "stability-flags": { + "drupal/commerce_demo": 20 + }, "prefer-stable": true, "prefer-lowest": false, "platform": { @@ -16314,5 +16338,5 @@ "ext-curl": "*" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } From 166237c2c3ec128dc4b15e7b1535f2299d8437aa Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 19 Mar 2024 19:59:14 +0000 Subject: [PATCH 19/27] Export site configuration --- config/sync/.htaccess | 24 + config/sync/admin_toolbar.settings.yml | 3 + config/sync/admin_toolbar_tools.settings.yml | 5 + ...e.advancedqueue_queue.commerce_license.yml | 15 + ...cedqueue_queue.commerce_license_notify.yml | 15 + ...ancedqueue.advancedqueue_queue.default.yml | 18 + config/sync/automated_cron.settings.yml | 3 + config/sync/belgrade.settings.yml | 25 + .../block.block.belgrade_account_menu.yml | 27 + config/sync/block.block.belgrade_branding.yml | 25 + .../sync/block.block.belgrade_breadcrumbs.yml | 26 + ...block.block.belgrade_checkout_progress.yml | 28 + config/sync/block.block.belgrade_content.yml | 22 + config/sync/block.block.belgrade_footer.yml | 27 + config/sync/block.block.belgrade_help.yml | 22 + .../block.block.belgrade_local_actions.yml | 20 + .../sync/block.block.belgrade_local_tasks.yml | 22 + .../sync/block.block.belgrade_main_menu.yml | 27 + .../block.block.belgrade_main_menu_header.yml | 27 + config/sync/block.block.belgrade_messages.yml | 22 + .../sync/block.block.belgrade_page_title.yml | 41 + config/sync/block.block.belgrade_powered.yml | 22 + .../block.block.belgrade_shopping_cart.yml | 24 + config/sync/block.block.belgrade_social.yml | 27 + ...block.block.belgrade_social_navigation.yml | 27 + ...block.block.centarro_claro_breadcrumbs.yml | 22 + .../block.block.centarro_claro_content.yml | 22 + .../sync/block.block.centarro_claro_help.yml | 22 + ...ock.block.centarro_claro_local_actions.yml | 20 + .../block.block.centarro_claro_messages.yml | 22 + .../block.block.centarro_claro_page_title.yml | 20 + ...ock.centarro_claro_primary_local_tasks.yml | 22 + ...k.centarro_claro_secondary_local_tasks.yml | 22 + config/sync/block.block.claro_breadcrumbs.yml | 22 + config/sync/block.block.claro_content.yml | 22 + config/sync/block.block.claro_help.yml | 22 + .../sync/block.block.claro_local_actions.yml | 20 + config/sync/block.block.claro_messages.yml | 22 + config/sync/block.block.claro_page_title.yml | 20 + .../block.block.claro_primary_local_tasks.yml | 22 + ...lock.block.claro_secondary_local_tasks.yml | 22 + config/sync/block.block.productbrand.yml | 31 + .../sync/block.block.productcollections.yml | 31 + config/sync/block_content.type.basic.yml | 10 + .../sync/block_content.type.cklb_button.yml | 10 + config/sync/block_content.type.cklb_hero.yml | 10 + config/sync/block_content.type.cklb_image.yml | 10 + .../sync/block_content.type.cklb_products.yml | 10 + config/sync/block_content.type.cklb_text.yml | 10 + config/sync/block_content.type.cklb_title.yml | 10 + ...bootstrap_basic_image_gallery.settings.yml | 3 + ...trap_layout_builder.breakpoint.desktop.yml | 10 + ...strap_layout_builder.breakpoint.mobile.yml | 10 + ...strap_layout_builder.breakpoint.tablet.yml | 10 + ...tstrap_layout_builder.layout.blb_col_1.yml | 9 + ...strap_layout_builder.layout.blb_col_10.yml | 9 + ...strap_layout_builder.layout.blb_col_11.yml | 9 + ...strap_layout_builder.layout.blb_col_12.yml | 9 + ...tstrap_layout_builder.layout.blb_col_2.yml | 9 + ...tstrap_layout_builder.layout.blb_col_3.yml | 9 + ...tstrap_layout_builder.layout.blb_col_4.yml | 9 + ...tstrap_layout_builder.layout.blb_col_5.yml | 9 + ...tstrap_layout_builder.layout.blb_col_6.yml | 9 + ...tstrap_layout_builder.layout.blb_col_7.yml | 9 + ...tstrap_layout_builder.layout.blb_col_8.yml | 9 + ...tstrap_layout_builder.layout.blb_col_9.yml | 9 + ..._builder.layout_option.blb_col_2_25_75.yml | 16 + ..._builder.layout_option.blb_col_2_75_25.yml | 16 + ...der.layout_option.blb_col_2_full_width.yml | 15 + ...out_option.blb_col_2_two_equal_columns.yml | 16 + ...ilder.layout_option.blb_col_3_25_25_50.yml | 16 + ...ilder.layout_option.blb_col_3_25_50_25.yml | 16 + ...ilder.layout_option.blb_col_3_50_25_25.yml | 16 + ...der.layout_option.blb_col_3_full_width.yml | 15 + ...t_option.blb_col_3_three_equal_columns.yml | 16 + ...uilder.layout_option.blb_col_4_2_4_2_4.yml | 16 + ...uilder.layout_option.blb_col_4_2_4_4_2.yml | 16 + ...uilder.layout_option.blb_col_4_4_2_2_4.yml | 16 + ...uilder.layout_option.blb_col_4_4_4_2_2.yml | 16 + ...ut_option.blb_col_4_four_equal_columns.yml | 16 + ...der.layout_option.blb_col_4_full_width.yml | 15 + ...lder.layout_option.blb_col_5_2_2_2_2_4.yml | 16 + ...lder.layout_option.blb_col_5_2_2_2_4_2.yml | 16 + ...lder.layout_option.blb_col_5_2_2_4_2_2.yml | 16 + ...lder.layout_option.blb_col_5_2_4_2_2_2.yml | 16 + ...lder.layout_option.blb_col_5_4_2_2_2_2.yml | 16 + ...der.layout_option.blb_col_5_full_width.yml | 15 + ...der.layout_option.blb_col_6_full_width.yml | 15 + ...out_option.blb_col_6_six_equal_columns.yml | 16 + .../bootstrap_layout_builder.settings.yml | 12 + .../sync/bootstrap_layout_builder.styles.yml | 24 + config/sync/bootstrap_styles.settings.yml | 73 + config/sync/centarro_claro.settings.yml | 12 + config/sync/claro.settings.yml | 3 + config/sync/comment.settings.yml | 3 + config/sync/comment.type.comment.yml | 10 + ...heckout.commerce_checkout_flow.default.yml | 43 + ...eckout.commerce_checkout_flow.shipping.yml | 43 + config/sync/commerce_file.settings.yml | 4 + ....commerce_number_pattern.order_default.yml | 18 + ...order.commerce_order_item_type.default.yml | 15 + ...rder_item_type.digital_license_product.yml | 18 + ...merce_order_item_type.physical_product.yml | 17 + ...erce_order.commerce_order_type.default.yml | 22 + config/sync/commerce_order.settings.yml | 3 + ...ce_payment_gateway.example_credit_card.yml | 21 + .../commerce_price.commerce_currency.EUR.yml | 11 + .../commerce_price.commerce_currency.GBP.yml | 11 + .../commerce_price.commerce_currency.JPY.yml | 11 + .../commerce_price.commerce_currency.USD.yml | 9 + ..._product.commerce_product_type.default.yml | 16 + ...ce_product.commerce_product_type.media.yml | 17 + ...product.commerce_product_type.physical.yml | 15 + ...ommerce_product_variation_type.default.yml | 12 + ..._variation_type.media_license_download.yml | 21 + ..._product_variation_type.media_physical.yml | 13 + ...mmerce_product_variation_type.physical.yml | 13 + ...hipping.commerce_shipment_type.default.yml | 12 + ...merce_store.commerce_store_type.online.yml | 11 + .../sync/config_split.config_split.ddev.yml | 19 + ...verride.node.cklb_landing_page.promote.yml | 24 + ....base_field_override.node.page.promote.yml | 24 + config/sync/core.date_format.fallback.yml | 10 + config/sync/core.date_format.html_date.yml | 10 + .../sync/core.date_format.html_datetime.yml | 10 + config/sync/core.date_format.html_month.yml | 10 + config/sync/core.date_format.html_time.yml | 10 + config/sync/core.date_format.html_week.yml | 10 + config/sync/core.date_format.html_year.yml | 10 + .../core.date_format.html_yearless_date.yml | 10 + config/sync/core.date_format.long.yml | 10 + config/sync/core.date_format.medium.yml | 10 + config/sync/core.date_format.short.yml | 10 + ...rm_display.block_content.basic.default.yml | 34 + ...play.block_content.cklb_button.default.yml | 26 + ...isplay.block_content.cklb_hero.default.yml | 61 + ...splay.block_content.cklb_image.default.yml | 32 + ...ay.block_content.cklb_products.default.yml | 42 + ...isplay.block_content.cklb_text.default.yml | 33 + ...splay.block_content.cklb_title.default.yml | 31 + ...y_form_display.comment.comment.default.yml | 36 + ...display.commerce_order.default.default.yml | 69 + ...ommerce_order_item.default.add_to_cart.yml | 34 + ...ay.commerce_order_item.default.default.yml | 49 + ...em.digital_license_product.add_to_cart.yml | 41 + ...rder_item.physical_product.add_to_cart.yml | 39 + ...ce_order_item.physical_product.default.yml | 44 + ...splay.commerce_product.default.default.yml | 86 + ...display.commerce_product.media.default.yml | 150 ++ ...play.commerce_product.physical.default.yml | 149 ++ ...erce_product_variation.default.default.yml | 45 + ...riation.media_license_download.default.yml | 118 ++ ...oduct_variation.media_physical.default.yml | 96 + ...rce_product_variation.physical.default.yml | 88 + ...lay.commerce_shipment.default.checkout.yml | 33 + ..._display.commerce_store.online.default.yml | 85 + ...ntity_form_display.media.audio.default.yml | 55 + ...form_display.media.audio.media_library.yml | 22 + ...ty_form_display.media.document.default.yml | 55 + ...m_display.media.document.media_library.yml | 22 + ...ntity_form_display.media.image.default.yml | 57 + ...form_display.media.image.media_library.yml | 32 + ...orm_display.media.remote_video.default.yml | 56 + ...splay.media.remote_video.media_library.yml | 22 + ...ntity_form_display.media.video.default.yml | 55 + ...form_display.media.video.media_library.yml | 22 + ...display.node.cklb_landing_page.default.yml | 87 + ....entity_form_display.node.page.default.yml | 77 + ..._form_display.profile.customer.default.yml | 29 + ....entity_form_display.user.user.default.yml | 45 + ...entity_form_display.user.user.register.yml | 29 + ...m_mode.commerce_order_item.add_to_cart.yml | 15 + ...y_form_mode.commerce_shipment.checkout.yml | 12 + ...e.entity_form_mode.media.media_library.yml | 15 + .../core.entity_form_mode.profile.billing.yml | 15 + ...core.entity_form_mode.profile.shipping.yml | 15 + .../core.entity_form_mode.user.register.yml | 12 + ...ew_display.block_content.basic.default.yml | 24 + ...play.block_content.cklb_button.default.yml | 30 + ...isplay.block_content.cklb_hero.default.yml | 57 + ...ay.block_content.cklb_image.cklb_large.yml | 34 + ...ay.block_content.cklb_image.cklb_small.yml | 34 + ...splay.block_content.cklb_image.default.yml | 28 + ...ay.block_content.cklb_products.default.yml | 34 + ...isplay.block_content.cklb_text.default.yml | 25 + ...splay.block_content.cklb_title.cklb_h1.yml | 31 + ...splay.block_content.cklb_title.default.yml | 24 + ...y_view_display.comment.comment.default.yml | 27 + ...commerce_license.commerce_file.default.yml | 160 ++ ...display.commerce_order.default.default.yml | 151 ++ ...ew_display.commerce_order.default.user.yml | 118 ++ ...ay.commerce_order_item.default.default.yml | 77 + ...splay.commerce_product.default.default.yml | 565 ++++++ ...isplay.commerce_product.default.teaser.yml | 53 + ...display.commerce_product.media.default.yml | 550 ++++++ ..._display.commerce_product.media.teaser.yml | 53 + ...play.commerce_product.physical.default.yml | 552 ++++++ ...splay.commerce_product.physical.teaser.yml | 53 + ...ommerce_product_variation.default.cart.yml | 41 + ...erce_product_variation.default.default.yml | 39 + ...erce_product_variation.default.summary.yml | 47 + ...merce_product_variation.default.teaser.yml | 32 + ..._variation.media_license_download.cart.yml | 36 + ...riation.media_license_download.default.yml | 38 + ...riation.media_license_download.summary.yml | 36 + ...ariation.media_license_download.teaser.yml | 55 + ..._product_variation.media_physical.cart.yml | 42 + ...oduct_variation.media_physical.default.yml | 33 + ...oduct_variation.media_physical.summary.yml | 42 + ...roduct_variation.media_physical.teaser.yml | 54 + ...mmerce_product_variation.physical.cart.yml | 38 + ...rce_product_variation.physical.default.yml | 41 + ...rce_product_variation.physical.summary.yml | 48 + ...erce_product_variation.physical.teaser.yml | 34 + ...lay.commerce_shipment.default.checkout.yml | 33 + ...play.commerce_shipment.default.default.yml | 86 + ...display.commerce_shipment.default.user.yml | 40 + ..._display.commerce_store.online.default.yml | 31 + ...ntity_view_display.media.audio.default.yml | 32 + ...view_display.media.audio.media_library.yml | 32 + ...ty_view_display.media.document.default.yml | 28 + ...w_display.media.document.media_library.yml | 32 + ...ntity_view_display.media.image.default.yml | 31 + ...view_display.media.image.media_library.yml | 32 + ...iew_display.media.remote_video.default.yml | 32 + ...splay.media.remote_video.media_library.yml | 32 + ...ntity_view_display.media.video.default.yml | 35 + ...view_display.media.video.media_library.yml | 32 + ...display.node.cklb_landing_page.default.yml | 154 ++ ..._display.node.cklb_landing_page.teaser.yml | 45 + ....entity_view_display.node.page.default.yml | 29 + ...e.entity_view_display.node.page.teaser.yml | 31 + ...ty_view_display.profile.customer.admin.yml | 38 + ..._view_display.profile.customer.default.yml | 37 + ....entity_view_display.user.user.compact.yml | 32 + ....entity_view_display.user.user.default.yml | 33 + .../core.entity_view_mode.block.token.yml | 10 + ...entity_view_mode.block_content.cklb_h1.yml | 12 + ...ity_view_mode.block_content.cklb_large.yml | 12 + ...ity_view_mode.block_content.cklb_small.yml | 12 + ...re.entity_view_mode.block_content.full.yml | 12 + ...e.entity_view_mode.block_content.token.yml | 10 + .../core.entity_view_mode.comment.full.yml | 12 + .../core.entity_view_mode.comment.token.yml | 10 + ...e.entity_view_mode.commerce_order.user.yml | 12 + ...tity_view_mode.commerce_product.teaser.yml | 12 + ...ce_product_attribute_value.add_to_cart.yml | 12 + ...w_mode.commerce_product_variation.cart.yml | 16 + ...ode.commerce_product_variation.summary.yml | 15 + ...mode.commerce_product_variation.teaser.yml | 12 + ...y_view_mode.commerce_shipment.checkout.yml | 12 + ...ntity_view_mode.commerce_shipment.user.yml | 12 + ...re.entity_view_mode.config_split.token.yml | 10 + .../sync/core.entity_view_mode.file.token.yml | 10 + .../sync/core.entity_view_mode.media.full.yml | 12 + ...e.entity_view_mode.media.media_library.yml | 15 + ...tity_view_mode.menu_link_content.token.yml | 10 + .../sync/core.entity_view_mode.node.full.yml | 12 + .../sync/core.entity_view_mode.node.rss.yml | 12 + ...ore.entity_view_mode.node.search_index.yml | 12 + ...re.entity_view_mode.node.search_result.yml | 12 + .../core.entity_view_mode.node.teaser.yml | 12 + .../sync/core.entity_view_mode.node.token.yml | 10 + ...core.entity_view_mode.path_alias.token.yml | 10 + .../core.entity_view_mode.profile.admin.yml | 15 + .../core.entity_view_mode.shortcut.token.yml | 10 + ...re.entity_view_mode.taxonomy_term.full.yml | 12 + ...e.entity_view_mode.taxonomy_term.token.yml | 10 + .../sync/core.entity_view_mode.tour.token.yml | 10 + .../core.entity_view_mode.user.compact.yml | 12 + .../sync/core.entity_view_mode.user.full.yml | 12 + .../sync/core.entity_view_mode.user.token.yml | 10 + config/sync/core.extension.yml | 125 ++ .../core.menu.static_menu_link_overrides.yml | 3 + config/sync/dblog.settings.yml | 3 + config/sync/editor.editor.basic_html.yml | 66 + config/sync/editor.editor.full_html.yml | 103 ++ config/sync/facets.facet.product_brand.yml | 75 + .../sync/facets.facet.product_collections.yml | 75 + ...ws_page__product_catalog__catalog_page.yml | 14 + .../field.field.block_content.basic.body.yml | 26 + ...eld.block_content.cklb_button.cklb_cta.yml | 25 + ...field.block_content.cklb_hero.cklb_cta.yml | 25 + ....block_content.cklb_hero.cklb_subtitle.yml | 21 + ...ield.block_content.cklb_hero.cklb_text.yml | 24 + ...eld.block_content.cklb_hero.cklb_title.yml | 21 + ...ld.block_content.cklb_image.cklb_image.yml | 31 + ...ck_content.cklb_products.cklb_products.yml | 27 + ...block_content.cklb_products.cklb_title.yml | 21 + ...ield.block_content.cklb_text.cklb_text.yml | 24 + ...ld.block_content.cklb_title.cklb_title.yml | 21 + ...eld.field.comment.comment.comment_body.yml | 24 + ...field.commerce_order.default.shipments.yml | 21 + ...r_item.digital_license_product.license.yml | 23 + ...ld.field.commerce_product.default.body.yml | 26 + ....field.commerce_product.default.images.yml | 40 + ...product.default.layout_builder__layout.yml | 23 + ...commerce_product.default.product_brand.yml | 31 + ...ce_product.default.product_collections.yml | 31 + ....commerce_product.default.product_tags.yml | 31 + ...ield.field.commerce_product.media.body.yml | 26 + ...ld.field.commerce_product.media.images.yml | 40 + ...e_product.media.layout_builder__layout.yml | 23 + ...d.commerce_product.media.product_brand.yml | 31 + ...erce_product.media.product_collections.yml | 31 + ...ld.commerce_product.media.product_tags.yml | 31 + ...d.field.commerce_product.physical.body.yml | 26 + ...field.commerce_product.physical.images.yml | 40 + ...roduct.physical.layout_builder__layout.yml | 23 + ...ommerce_product.physical.product_brand.yml | 31 + ...e_product.physical.product_collections.yml | 31 + ...commerce_product.physical.product_tags.yml | 31 + ...n.media_license_download.commerce_file.yml | 29 + ...ia_license_download.license_expiration.yml | 23 + ...on.media_license_download.license_type.yml | 23 + ...roduct_variation.media_physical.weight.yml | 23 + ...erce_product_variation.physical.weight.yml | 23 + ...eld.media.audio.field_media_audio_file.yml | 29 + ...ld.media.document.field_media_document.yml | 32 + ...ld.field.media.image.field_media_image.yml | 43 + ....remote_video.field_media_oembed_video.yml | 21 + ...eld.media.video.field_media_video_file.yml | 29 + ...ode.cklb_landing_page.cklb_description.yml | 21 + ...ield.node.cklb_landing_page.cklb_image.yml | 31 + ...lb_landing_page.layout_builder__layout.yml | 23 + config/sync/field.field.node.page.body.yml | 26 + .../field.field.profile.customer.address.yml | 40 + ...ield.field.profile.customer.tax_number.yml | 30 + ...eld.field.user.user.commerce_remote_id.yml | 26 + .../field.field.user.user.user_picture.yml | 40 + config/sync/field.settings.yml | 3 + .../sync/field.storage.block_content.body.yml | 21 + .../field.storage.block_content.cklb_cta.yml | 21 + ...field.storage.block_content.cklb_image.yml | 22 + ...ld.storage.block_content.cklb_products.yml | 22 + ...ld.storage.block_content.cklb_subtitle.yml | 23 + .../field.storage.block_content.cklb_text.yml | 21 + ...field.storage.block_content.cklb_title.yml | 23 + .../field.storage.comment.comment_body.yml | 21 + ...field.storage.commerce_order.shipments.yml | 20 + ...ld.storage.commerce_order_item.license.yml | 22 + .../field.storage.commerce_product.body.yml | 21 + .../field.storage.commerce_product.images.yml | 32 + ...ommerce_product.layout_builder__layout.yml | 21 + ...storage.commerce_product.product_brand.yml | 22 + ...e.commerce_product.product_collections.yml | 22 + ....storage.commerce_product.product_tags.yml | 22 + ...mmerce_product_variation.commerce_file.yml | 28 + ...e_product_variation.license_expiration.yml | 21 + ...ommerce_product_variation.license_type.yml | 21 + ...rage.commerce_product_variation.weight.yml | 22 + ...d.storage.media.field_media_audio_file.yml | 25 + ...eld.storage.media.field_media_document.yml | 28 + .../field.storage.media.field_media_image.yml | 35 + ...storage.media.field_media_oembed_video.yml | 23 + ...d.storage.media.field_media_video_file.yml | 25 + config/sync/field.storage.node.body.yml | 21 + .../field.storage.node.cklb_description.yml | 21 + config/sync/field.storage.node.cklb_image.yml | 22 + ...ld.storage.node.layout_builder__layout.yml | 21 + config/sync/field.storage.profile.address.yml | 24 + .../sync/field.storage.profile.tax_number.yml | 24 + .../field.storage.user.commerce_remote_id.yml | 24 + .../sync/field.storage.user.user_picture.yml | 34 + config/sync/field_ui.settings.yml | 3 + config/sync/file.settings.yml | 8 + config/sync/filter.format.basic_html.yml | 45 + config/sync/filter.format.email_html.yml | 10 + config/sync/filter.format.full_html.yml | 36 + config/sync/filter.format.plain_text.yml | 29 + config/sync/filter.format.restricted_html.yml | 32 + config/sync/filter.settings.yml | 4 + config/sync/image.settings.yml | 5 + config/sync/image.style.cklb_container.yml | 17 + config/sync/image.style.cklb_full_width.yml | 9 + .../image.style.cklb_medium_max_1144px.yml | 17 + .../sync/image.style.cklb_small_max_600px.yml | 17 + config/sync/image.style.large.yml | 17 + config/sync/image.style.media_library.yml | 20 + config/sync/image.style.medium.yml | 17 + config/sync/image.style.product_teaser.yml | 17 + config/sync/image.style.thumbnail.yml | 17 + config/sync/image.style.wide.yml | 17 + config/sync/layout_builder_blocks.styles.yml | 25 + config/sync/layout_builder_modal.settings.yml | 6 + config/sync/media.settings.yml | 6 + config/sync/media.type.audio.yml | 16 + config/sync/media.type.document.yml | 16 + config/sync/media.type.image.yml | 16 + config/sync/media.type.remote_video.yml | 20 + config/sync/media.type.video.yml | 16 + config/sync/media_library.settings.yml | 3 + config/sync/menu_ui.settings.yml | 3 + config/sync/node.settings.yml | 3 + config/sync/node.type.cklb_landing_page.yml | 19 + config/sync/node.type.page.yml | 13 + .../sync/pathauto.pattern.media_product.yml | 24 + .../pathauto.pattern.physical_product.yml | 24 + config/sync/pathauto.settings.yml | 22 + config/sync/profile.type.customer.yml | 20 + config/sync/search_api.index.products.yml | 90 + config/sync/search_api.server.database.yml | 16 + config/sync/search_api.settings.yml | 28 + config/sync/search_api_db.settings.yml | 3 + config/sync/shortcut.set.default.yml | 8 + .../sync/symfony_mailer.mailer_policy._.yml | 15 + ...iler.mailer_policy.symfony_mailer.test.yml | 20 + ...fony_mailer.mailer_transport.ddev_smtp.yml | 20 + ...mfony_mailer.mailer_transport.sendmail.yml | 12 + config/sync/symfony_mailer.settings.yml | 3 + .../system.action.comment_delete_action.yml | 13 + .../system.action.comment_publish_action.yml | 13 + .../system.action.comment_save_action.yml | 13 + ...system.action.comment_unpublish_action.yml | 13 + ....action.commerce_license_delete_action.yml | 16 + ...em.action.commerce_order_delete_action.yml | 16 + ....action.commerce_product_delete_action.yml | 16 + ...system.action.commerce_publish_product.yml | 13 + ...em.action.commerce_store_delete_action.yml | 16 + ...stem.action.commerce_unpublish_product.yml | 13 + .../system.action.media_delete_action.yml | 13 + .../system.action.media_publish_action.yml | 13 + .../sync/system.action.media_save_action.yml | 13 + .../system.action.media_unpublish_action.yml | 13 + .../sync/system.action.node_delete_action.yml | 13 + .../system.action.node_make_sticky_action.yml | 13 + ...ystem.action.node_make_unsticky_action.yml | 13 + .../system.action.node_promote_action.yml | 13 + .../system.action.node_publish_action.yml | 13 + .../sync/system.action.node_save_action.yml | 13 + .../system.action.node_unpromote_action.yml | 13 + .../system.action.node_unpublish_action.yml | 13 + ...stem.action.pathauto_update_alias_node.yml | 16 + ...stem.action.pathauto_update_alias_user.yml | 16 + .../system.action.profile_delete_action.yml | 16 + .../system.action.profile_publish_action.yml | 16 + ...system.action.profile_unpublish_action.yml | 16 + ...em.action.taxonomy_term_publish_action.yml | 13 + ....action.taxonomy_term_unpublish_action.yml | 13 + ...ion.user_add_role_action.administrator.yml | 14 + .../system.action.user_block_user_action.yml | 13 + .../system.action.user_cancel_user_action.yml | 13 + ....user_remove_role_action.administrator.yml | 14 + ...system.action.user_unblock_user_action.yml | 13 + config/sync/system.advisories.yml | 4 + config/sync/system.cron.yml | 5 + config/sync/system.date.yml | 11 + config/sync/system.diff.yml | 5 + config/sync/system.feature_flags.yml | 3 + config/sync/system.file.yml | 5 + config/sync/system.image.gd.yml | 3 + config/sync/system.image.yml | 3 + config/sync/system.logging.yml | 3 + config/sync/system.mail.yml | 4 + config/sync/system.maintenance.yml | 4 + config/sync/system.menu.account.yml | 10 + config/sync/system.menu.admin.yml | 10 + config/sync/system.menu.footer.yml | 10 + config/sync/system.menu.main.yml | 10 + config/sync/system.menu.social.yml | 10 + config/sync/system.menu.tools.yml | 10 + config/sync/system.performance.yml | 17 + config/sync/system.rss.yml | 4 + config/sync/system.site.yml | 14 + config/sync/system.theme.global.yml | 16 + config/sync/system.theme.yml | 4 + config/sync/taxonomy.settings.yml | 5 + .../taxonomy.vocabulary.product_brands.yml | 10 + ...axonomy.vocabulary.product_collections.yml | 10 + .../sync/taxonomy.vocabulary.product_tags.yml | 10 + config/sync/text.settings.yml | 3 + config/sync/tour.tour.block-layout.yml | 42 + .../tour.tour.search-api-index-fields.yml | 91 + .../sync/tour.tour.search-api-index-form.yml | 65 + .../tour.tour.search-api-index-processors.yml | 42 + config/sync/tour.tour.search-api-index.yml | 98 + .../sync/tour.tour.search-api-server-form.yml | 44 + config/sync/tour.tour.search-api-server.yml | 49 + config/sync/tour.tour.views-ui.yml | 88 + config/sync/update.settings.yml | 13 + config/sync/user.flood.yml | 7 + config/sync/user.mail.yml | 116 ++ config/sync/user.role.administrator.yml | 11 + config/sync/user.role.anonymous.yml | 26 + config/sync/user.role.authenticated.yml | 34 + config/sync/user.settings.yml | 18 + config/sync/views.settings.yml | 48 + config/sync/views.view.advancedqueue_jobs.yml | 846 +++++++++ config/sync/views.view.archive.yml | 247 +++ config/sync/views.view.block_content.yml | 552 ++++++ ...ws.view.cklb_products_entity_reference.yml | 189 ++ config/sync/views.view.comment.yml | 1616 +++++++++++++++++ config/sync/views.view.comments_recent.yml | 270 +++ config/sync/views.view.commerce_activity.yml | 429 +++++ .../sync/views.view.commerce_cart_block.yml | 400 ++++ config/sync/views.view.commerce_cart_form.yml | 614 +++++++ config/sync/views.view.commerce_carts.yml | 785 ++++++++ ...s.view.commerce_checkout_order_summary.yml | 462 +++++ .../views.view.commerce_file_my_files.yml | 581 ++++++ config/sync/views.view.commerce_licenses.yml | 1148 ++++++++++++ .../views.view.commerce_order_item_table.yml | 434 +++++ .../views.view.commerce_order_payments.yml | 922 ++++++++++ config/sync/views.view.commerce_orders.yml | 993 ++++++++++ config/sync/views.view.commerce_products.yml | 638 +++++++ .../views.view.commerce_promotion_coupons.yml | 501 +++++ .../sync/views.view.commerce_promotions.yml | 887 +++++++++ config/sync/views.view.commerce_stores.yml | 600 ++++++ .../sync/views.view.commerce_user_orders.yml | 605 ++++++ config/sync/views.view.content.yml | 626 +++++++ config/sync/views.view.content_recent.yml | 323 ++++ config/sync/views.view.files.yml | 1198 ++++++++++++ config/sync/views.view.frontpage.yml | 312 ++++ config/sync/views.view.glossary.yml | 482 +++++ config/sync/views.view.media.yml | 919 ++++++++++ config/sync/views.view.media_library.yml | 1403 ++++++++++++++ config/sync/views.view.order_shipments.yml | 582 ++++++ config/sync/views.view.product_catalog.yml | 370 ++++ config/sync/views.view.profiles.yml | 356 ++++ config/sync/views.view.section_library.yml | 845 +++++++++ config/sync/views.view.taxonomy_term.yml | 319 ++++ config/sync/views.view.user_admin_people.yml | 927 ++++++++++ config/sync/views.view.watchdog.yml | 712 ++++++++ config/sync/views.view.who_s_new.yml | 197 ++ config/sync/views.view.who_s_online.yml | 226 +++ 524 files changed, 37468 insertions(+) create mode 100644 config/sync/.htaccess create mode 100644 config/sync/admin_toolbar.settings.yml create mode 100644 config/sync/admin_toolbar_tools.settings.yml create mode 100644 config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml create mode 100644 config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml create mode 100644 config/sync/advancedqueue.advancedqueue_queue.default.yml create mode 100644 config/sync/automated_cron.settings.yml create mode 100644 config/sync/belgrade.settings.yml create mode 100644 config/sync/block.block.belgrade_account_menu.yml create mode 100644 config/sync/block.block.belgrade_branding.yml create mode 100644 config/sync/block.block.belgrade_breadcrumbs.yml create mode 100644 config/sync/block.block.belgrade_checkout_progress.yml create mode 100644 config/sync/block.block.belgrade_content.yml create mode 100644 config/sync/block.block.belgrade_footer.yml create mode 100644 config/sync/block.block.belgrade_help.yml create mode 100644 config/sync/block.block.belgrade_local_actions.yml create mode 100644 config/sync/block.block.belgrade_local_tasks.yml create mode 100644 config/sync/block.block.belgrade_main_menu.yml create mode 100644 config/sync/block.block.belgrade_main_menu_header.yml create mode 100644 config/sync/block.block.belgrade_messages.yml create mode 100644 config/sync/block.block.belgrade_page_title.yml create mode 100644 config/sync/block.block.belgrade_powered.yml create mode 100644 config/sync/block.block.belgrade_shopping_cart.yml create mode 100644 config/sync/block.block.belgrade_social.yml create mode 100644 config/sync/block.block.belgrade_social_navigation.yml create mode 100644 config/sync/block.block.centarro_claro_breadcrumbs.yml create mode 100644 config/sync/block.block.centarro_claro_content.yml create mode 100644 config/sync/block.block.centarro_claro_help.yml create mode 100644 config/sync/block.block.centarro_claro_local_actions.yml create mode 100644 config/sync/block.block.centarro_claro_messages.yml create mode 100644 config/sync/block.block.centarro_claro_page_title.yml create mode 100644 config/sync/block.block.centarro_claro_primary_local_tasks.yml create mode 100644 config/sync/block.block.centarro_claro_secondary_local_tasks.yml create mode 100644 config/sync/block.block.claro_breadcrumbs.yml create mode 100644 config/sync/block.block.claro_content.yml create mode 100644 config/sync/block.block.claro_help.yml create mode 100644 config/sync/block.block.claro_local_actions.yml create mode 100644 config/sync/block.block.claro_messages.yml create mode 100644 config/sync/block.block.claro_page_title.yml create mode 100644 config/sync/block.block.claro_primary_local_tasks.yml create mode 100644 config/sync/block.block.claro_secondary_local_tasks.yml create mode 100644 config/sync/block.block.productbrand.yml create mode 100644 config/sync/block.block.productcollections.yml create mode 100644 config/sync/block_content.type.basic.yml create mode 100644 config/sync/block_content.type.cklb_button.yml create mode 100644 config/sync/block_content.type.cklb_hero.yml create mode 100644 config/sync/block_content.type.cklb_image.yml create mode 100644 config/sync/block_content.type.cklb_products.yml create mode 100644 config/sync/block_content.type.cklb_text.yml create mode 100644 config/sync/block_content.type.cklb_title.yml create mode 100644 config/sync/bootstrap_basic_image_gallery.settings.yml create mode 100644 config/sync/bootstrap_layout_builder.breakpoint.desktop.yml create mode 100644 config/sync/bootstrap_layout_builder.breakpoint.mobile.yml create mode 100644 config/sync/bootstrap_layout_builder.breakpoint.tablet.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_1.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_10.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_11.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_12.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_3.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_4.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_5.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_6.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_7.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_8.yml create mode 100644 config/sync/bootstrap_layout_builder.layout.blb_col_9.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml create mode 100644 config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml create mode 100644 config/sync/bootstrap_layout_builder.settings.yml create mode 100644 config/sync/bootstrap_layout_builder.styles.yml create mode 100644 config/sync/bootstrap_styles.settings.yml create mode 100644 config/sync/centarro_claro.settings.yml create mode 100644 config/sync/claro.settings.yml create mode 100644 config/sync/comment.settings.yml create mode 100644 config/sync/comment.type.comment.yml create mode 100644 config/sync/commerce_checkout.commerce_checkout_flow.default.yml create mode 100644 config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml create mode 100644 config/sync/commerce_file.settings.yml create mode 100644 config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml create mode 100644 config/sync/commerce_order.commerce_order_item_type.default.yml create mode 100644 config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml create mode 100644 config/sync/commerce_order.commerce_order_item_type.physical_product.yml create mode 100644 config/sync/commerce_order.commerce_order_type.default.yml create mode 100644 config/sync/commerce_order.settings.yml create mode 100644 config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml create mode 100644 config/sync/commerce_price.commerce_currency.EUR.yml create mode 100644 config/sync/commerce_price.commerce_currency.GBP.yml create mode 100644 config/sync/commerce_price.commerce_currency.JPY.yml create mode 100644 config/sync/commerce_price.commerce_currency.USD.yml create mode 100644 config/sync/commerce_product.commerce_product_type.default.yml create mode 100644 config/sync/commerce_product.commerce_product_type.media.yml create mode 100644 config/sync/commerce_product.commerce_product_type.physical.yml create mode 100644 config/sync/commerce_product.commerce_product_variation_type.default.yml create mode 100644 config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml create mode 100644 config/sync/commerce_product.commerce_product_variation_type.media_physical.yml create mode 100644 config/sync/commerce_product.commerce_product_variation_type.physical.yml create mode 100644 config/sync/commerce_shipping.commerce_shipment_type.default.yml create mode 100644 config/sync/commerce_store.commerce_store_type.online.yml create mode 100644 config/sync/config_split.config_split.ddev.yml create mode 100644 config/sync/core.base_field_override.node.cklb_landing_page.promote.yml create mode 100644 config/sync/core.base_field_override.node.page.promote.yml create mode 100644 config/sync/core.date_format.fallback.yml create mode 100644 config/sync/core.date_format.html_date.yml create mode 100644 config/sync/core.date_format.html_datetime.yml create mode 100644 config/sync/core.date_format.html_month.yml create mode 100644 config/sync/core.date_format.html_time.yml create mode 100644 config/sync/core.date_format.html_week.yml create mode 100644 config/sync/core.date_format.html_year.yml create mode 100644 config/sync/core.date_format.html_yearless_date.yml create mode 100644 config/sync/core.date_format.long.yml create mode 100644 config/sync/core.date_format.medium.yml create mode 100644 config/sync/core.date_format.short.yml create mode 100644 config/sync/core.entity_form_display.block_content.basic.default.yml create mode 100644 config/sync/core.entity_form_display.block_content.cklb_button.default.yml create mode 100644 config/sync/core.entity_form_display.block_content.cklb_hero.default.yml create mode 100644 config/sync/core.entity_form_display.block_content.cklb_image.default.yml create mode 100644 config/sync/core.entity_form_display.block_content.cklb_products.default.yml create mode 100644 config/sync/core.entity_form_display.block_content.cklb_text.default.yml create mode 100644 config/sync/core.entity_form_display.block_content.cklb_title.default.yml create mode 100644 config/sync/core.entity_form_display.comment.comment.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_order.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml create mode 100644 config/sync/core.entity_form_display.commerce_order_item.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml create mode 100644 config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml create mode 100644 config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product.media.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product.physical.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product_variation.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml create mode 100644 config/sync/core.entity_form_display.commerce_store.online.default.yml create mode 100644 config/sync/core.entity_form_display.media.audio.default.yml create mode 100644 config/sync/core.entity_form_display.media.audio.media_library.yml create mode 100644 config/sync/core.entity_form_display.media.document.default.yml create mode 100644 config/sync/core.entity_form_display.media.document.media_library.yml create mode 100644 config/sync/core.entity_form_display.media.image.default.yml create mode 100644 config/sync/core.entity_form_display.media.image.media_library.yml create mode 100644 config/sync/core.entity_form_display.media.remote_video.default.yml create mode 100644 config/sync/core.entity_form_display.media.remote_video.media_library.yml create mode 100644 config/sync/core.entity_form_display.media.video.default.yml create mode 100644 config/sync/core.entity_form_display.media.video.media_library.yml create mode 100644 config/sync/core.entity_form_display.node.cklb_landing_page.default.yml create mode 100644 config/sync/core.entity_form_display.node.page.default.yml create mode 100644 config/sync/core.entity_form_display.profile.customer.default.yml create mode 100644 config/sync/core.entity_form_display.user.user.default.yml create mode 100644 config/sync/core.entity_form_display.user.user.register.yml create mode 100644 config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml create mode 100644 config/sync/core.entity_form_mode.commerce_shipment.checkout.yml create mode 100644 config/sync/core.entity_form_mode.media.media_library.yml create mode 100644 config/sync/core.entity_form_mode.profile.billing.yml create mode 100644 config/sync/core.entity_form_mode.profile.shipping.yml create mode 100644 config/sync/core.entity_form_mode.user.register.yml create mode 100644 config/sync/core.entity_view_display.block_content.basic.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_button.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_hero.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_image.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_products.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_text.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml create mode 100644 config/sync/core.entity_view_display.block_content.cklb_title.default.yml create mode 100644 config/sync/core.entity_view_display.comment.comment.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_order.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_order.default.user.yml create mode 100644 config/sync/core.entity_view_display.commerce_order_item.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.default.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.media.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.media.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.physical.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.physical.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml create mode 100644 config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml create mode 100644 config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml create mode 100644 config/sync/core.entity_view_display.commerce_shipment.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_shipment.default.user.yml create mode 100644 config/sync/core.entity_view_display.commerce_store.online.default.yml create mode 100644 config/sync/core.entity_view_display.media.audio.default.yml create mode 100644 config/sync/core.entity_view_display.media.audio.media_library.yml create mode 100644 config/sync/core.entity_view_display.media.document.default.yml create mode 100644 config/sync/core.entity_view_display.media.document.media_library.yml create mode 100644 config/sync/core.entity_view_display.media.image.default.yml create mode 100644 config/sync/core.entity_view_display.media.image.media_library.yml create mode 100644 config/sync/core.entity_view_display.media.remote_video.default.yml create mode 100644 config/sync/core.entity_view_display.media.remote_video.media_library.yml create mode 100644 config/sync/core.entity_view_display.media.video.default.yml create mode 100644 config/sync/core.entity_view_display.media.video.media_library.yml create mode 100644 config/sync/core.entity_view_display.node.cklb_landing_page.default.yml create mode 100644 config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml create mode 100644 config/sync/core.entity_view_display.node.page.default.yml create mode 100644 config/sync/core.entity_view_display.node.page.teaser.yml create mode 100644 config/sync/core.entity_view_display.profile.customer.admin.yml create mode 100644 config/sync/core.entity_view_display.profile.customer.default.yml create mode 100644 config/sync/core.entity_view_display.user.user.compact.yml create mode 100644 config/sync/core.entity_view_display.user.user.default.yml create mode 100644 config/sync/core.entity_view_mode.block.token.yml create mode 100644 config/sync/core.entity_view_mode.block_content.cklb_h1.yml create mode 100644 config/sync/core.entity_view_mode.block_content.cklb_large.yml create mode 100644 config/sync/core.entity_view_mode.block_content.cklb_small.yml create mode 100644 config/sync/core.entity_view_mode.block_content.full.yml create mode 100644 config/sync/core.entity_view_mode.block_content.token.yml create mode 100644 config/sync/core.entity_view_mode.comment.full.yml create mode 100644 config/sync/core.entity_view_mode.comment.token.yml create mode 100644 config/sync/core.entity_view_mode.commerce_order.user.yml create mode 100644 config/sync/core.entity_view_mode.commerce_product.teaser.yml create mode 100644 config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml create mode 100644 config/sync/core.entity_view_mode.commerce_product_variation.cart.yml create mode 100644 config/sync/core.entity_view_mode.commerce_product_variation.summary.yml create mode 100644 config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml create mode 100644 config/sync/core.entity_view_mode.commerce_shipment.checkout.yml create mode 100644 config/sync/core.entity_view_mode.commerce_shipment.user.yml create mode 100644 config/sync/core.entity_view_mode.config_split.token.yml create mode 100644 config/sync/core.entity_view_mode.file.token.yml create mode 100644 config/sync/core.entity_view_mode.media.full.yml create mode 100644 config/sync/core.entity_view_mode.media.media_library.yml create mode 100644 config/sync/core.entity_view_mode.menu_link_content.token.yml create mode 100644 config/sync/core.entity_view_mode.node.full.yml create mode 100644 config/sync/core.entity_view_mode.node.rss.yml create mode 100644 config/sync/core.entity_view_mode.node.search_index.yml create mode 100644 config/sync/core.entity_view_mode.node.search_result.yml create mode 100644 config/sync/core.entity_view_mode.node.teaser.yml create mode 100644 config/sync/core.entity_view_mode.node.token.yml create mode 100644 config/sync/core.entity_view_mode.path_alias.token.yml create mode 100644 config/sync/core.entity_view_mode.profile.admin.yml create mode 100644 config/sync/core.entity_view_mode.shortcut.token.yml create mode 100644 config/sync/core.entity_view_mode.taxonomy_term.full.yml create mode 100644 config/sync/core.entity_view_mode.taxonomy_term.token.yml create mode 100644 config/sync/core.entity_view_mode.tour.token.yml create mode 100644 config/sync/core.entity_view_mode.user.compact.yml create mode 100644 config/sync/core.entity_view_mode.user.full.yml create mode 100644 config/sync/core.entity_view_mode.user.token.yml create mode 100644 config/sync/core.extension.yml create mode 100644 config/sync/core.menu.static_menu_link_overrides.yml create mode 100644 config/sync/dblog.settings.yml create mode 100644 config/sync/editor.editor.basic_html.yml create mode 100644 config/sync/editor.editor.full_html.yml create mode 100644 config/sync/facets.facet.product_brand.yml create mode 100644 config/sync/facets.facet.product_collections.yml create mode 100644 config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml create mode 100644 config/sync/field.field.block_content.basic.body.yml create mode 100644 config/sync/field.field.block_content.cklb_button.cklb_cta.yml create mode 100644 config/sync/field.field.block_content.cklb_hero.cklb_cta.yml create mode 100644 config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml create mode 100644 config/sync/field.field.block_content.cklb_hero.cklb_text.yml create mode 100644 config/sync/field.field.block_content.cklb_hero.cklb_title.yml create mode 100644 config/sync/field.field.block_content.cklb_image.cklb_image.yml create mode 100644 config/sync/field.field.block_content.cklb_products.cklb_products.yml create mode 100644 config/sync/field.field.block_content.cklb_products.cklb_title.yml create mode 100644 config/sync/field.field.block_content.cklb_text.cklb_text.yml create mode 100644 config/sync/field.field.block_content.cklb_title.cklb_title.yml create mode 100644 config/sync/field.field.comment.comment.comment_body.yml create mode 100644 config/sync/field.field.commerce_order.default.shipments.yml create mode 100644 config/sync/field.field.commerce_order_item.digital_license_product.license.yml create mode 100644 config/sync/field.field.commerce_product.default.body.yml create mode 100644 config/sync/field.field.commerce_product.default.images.yml create mode 100644 config/sync/field.field.commerce_product.default.layout_builder__layout.yml create mode 100644 config/sync/field.field.commerce_product.default.product_brand.yml create mode 100644 config/sync/field.field.commerce_product.default.product_collections.yml create mode 100644 config/sync/field.field.commerce_product.default.product_tags.yml create mode 100644 config/sync/field.field.commerce_product.media.body.yml create mode 100644 config/sync/field.field.commerce_product.media.images.yml create mode 100644 config/sync/field.field.commerce_product.media.layout_builder__layout.yml create mode 100644 config/sync/field.field.commerce_product.media.product_brand.yml create mode 100644 config/sync/field.field.commerce_product.media.product_collections.yml create mode 100644 config/sync/field.field.commerce_product.media.product_tags.yml create mode 100644 config/sync/field.field.commerce_product.physical.body.yml create mode 100644 config/sync/field.field.commerce_product.physical.images.yml create mode 100644 config/sync/field.field.commerce_product.physical.layout_builder__layout.yml create mode 100644 config/sync/field.field.commerce_product.physical.product_brand.yml create mode 100644 config/sync/field.field.commerce_product.physical.product_collections.yml create mode 100644 config/sync/field.field.commerce_product.physical.product_tags.yml create mode 100644 config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml create mode 100644 config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml create mode 100644 config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml create mode 100644 config/sync/field.field.commerce_product_variation.media_physical.weight.yml create mode 100644 config/sync/field.field.commerce_product_variation.physical.weight.yml create mode 100644 config/sync/field.field.media.audio.field_media_audio_file.yml create mode 100644 config/sync/field.field.media.document.field_media_document.yml create mode 100644 config/sync/field.field.media.image.field_media_image.yml create mode 100644 config/sync/field.field.media.remote_video.field_media_oembed_video.yml create mode 100644 config/sync/field.field.media.video.field_media_video_file.yml create mode 100644 config/sync/field.field.node.cklb_landing_page.cklb_description.yml create mode 100644 config/sync/field.field.node.cklb_landing_page.cklb_image.yml create mode 100644 config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml create mode 100644 config/sync/field.field.node.page.body.yml create mode 100644 config/sync/field.field.profile.customer.address.yml create mode 100644 config/sync/field.field.profile.customer.tax_number.yml create mode 100644 config/sync/field.field.user.user.commerce_remote_id.yml create mode 100644 config/sync/field.field.user.user.user_picture.yml create mode 100644 config/sync/field.settings.yml create mode 100644 config/sync/field.storage.block_content.body.yml create mode 100644 config/sync/field.storage.block_content.cklb_cta.yml create mode 100644 config/sync/field.storage.block_content.cklb_image.yml create mode 100644 config/sync/field.storage.block_content.cklb_products.yml create mode 100644 config/sync/field.storage.block_content.cklb_subtitle.yml create mode 100644 config/sync/field.storage.block_content.cklb_text.yml create mode 100644 config/sync/field.storage.block_content.cklb_title.yml create mode 100644 config/sync/field.storage.comment.comment_body.yml create mode 100644 config/sync/field.storage.commerce_order.shipments.yml create mode 100644 config/sync/field.storage.commerce_order_item.license.yml create mode 100644 config/sync/field.storage.commerce_product.body.yml create mode 100644 config/sync/field.storage.commerce_product.images.yml create mode 100644 config/sync/field.storage.commerce_product.layout_builder__layout.yml create mode 100644 config/sync/field.storage.commerce_product.product_brand.yml create mode 100644 config/sync/field.storage.commerce_product.product_collections.yml create mode 100644 config/sync/field.storage.commerce_product.product_tags.yml create mode 100644 config/sync/field.storage.commerce_product_variation.commerce_file.yml create mode 100644 config/sync/field.storage.commerce_product_variation.license_expiration.yml create mode 100644 config/sync/field.storage.commerce_product_variation.license_type.yml create mode 100644 config/sync/field.storage.commerce_product_variation.weight.yml create mode 100644 config/sync/field.storage.media.field_media_audio_file.yml create mode 100644 config/sync/field.storage.media.field_media_document.yml create mode 100644 config/sync/field.storage.media.field_media_image.yml create mode 100644 config/sync/field.storage.media.field_media_oembed_video.yml create mode 100644 config/sync/field.storage.media.field_media_video_file.yml create mode 100644 config/sync/field.storage.node.body.yml create mode 100644 config/sync/field.storage.node.cklb_description.yml create mode 100644 config/sync/field.storage.node.cklb_image.yml create mode 100644 config/sync/field.storage.node.layout_builder__layout.yml create mode 100644 config/sync/field.storage.profile.address.yml create mode 100644 config/sync/field.storage.profile.tax_number.yml create mode 100644 config/sync/field.storage.user.commerce_remote_id.yml create mode 100644 config/sync/field.storage.user.user_picture.yml create mode 100644 config/sync/field_ui.settings.yml create mode 100644 config/sync/file.settings.yml create mode 100644 config/sync/filter.format.basic_html.yml create mode 100644 config/sync/filter.format.email_html.yml create mode 100644 config/sync/filter.format.full_html.yml create mode 100644 config/sync/filter.format.plain_text.yml create mode 100644 config/sync/filter.format.restricted_html.yml create mode 100644 config/sync/filter.settings.yml create mode 100644 config/sync/image.settings.yml create mode 100644 config/sync/image.style.cklb_container.yml create mode 100644 config/sync/image.style.cklb_full_width.yml create mode 100644 config/sync/image.style.cklb_medium_max_1144px.yml create mode 100644 config/sync/image.style.cklb_small_max_600px.yml create mode 100644 config/sync/image.style.large.yml create mode 100644 config/sync/image.style.media_library.yml create mode 100644 config/sync/image.style.medium.yml create mode 100644 config/sync/image.style.product_teaser.yml create mode 100644 config/sync/image.style.thumbnail.yml create mode 100644 config/sync/image.style.wide.yml create mode 100644 config/sync/layout_builder_blocks.styles.yml create mode 100644 config/sync/layout_builder_modal.settings.yml create mode 100644 config/sync/media.settings.yml create mode 100644 config/sync/media.type.audio.yml create mode 100644 config/sync/media.type.document.yml create mode 100644 config/sync/media.type.image.yml create mode 100644 config/sync/media.type.remote_video.yml create mode 100644 config/sync/media.type.video.yml create mode 100644 config/sync/media_library.settings.yml create mode 100644 config/sync/menu_ui.settings.yml create mode 100644 config/sync/node.settings.yml create mode 100644 config/sync/node.type.cklb_landing_page.yml create mode 100644 config/sync/node.type.page.yml create mode 100644 config/sync/pathauto.pattern.media_product.yml create mode 100644 config/sync/pathauto.pattern.physical_product.yml create mode 100644 config/sync/pathauto.settings.yml create mode 100644 config/sync/profile.type.customer.yml create mode 100644 config/sync/search_api.index.products.yml create mode 100644 config/sync/search_api.server.database.yml create mode 100644 config/sync/search_api.settings.yml create mode 100644 config/sync/search_api_db.settings.yml create mode 100644 config/sync/shortcut.set.default.yml create mode 100644 config/sync/symfony_mailer.mailer_policy._.yml create mode 100644 config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml create mode 100644 config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml create mode 100644 config/sync/symfony_mailer.mailer_transport.sendmail.yml create mode 100644 config/sync/symfony_mailer.settings.yml create mode 100644 config/sync/system.action.comment_delete_action.yml create mode 100644 config/sync/system.action.comment_publish_action.yml create mode 100644 config/sync/system.action.comment_save_action.yml create mode 100644 config/sync/system.action.comment_unpublish_action.yml create mode 100644 config/sync/system.action.commerce_license_delete_action.yml create mode 100644 config/sync/system.action.commerce_order_delete_action.yml create mode 100644 config/sync/system.action.commerce_product_delete_action.yml create mode 100644 config/sync/system.action.commerce_publish_product.yml create mode 100644 config/sync/system.action.commerce_store_delete_action.yml create mode 100644 config/sync/system.action.commerce_unpublish_product.yml create mode 100644 config/sync/system.action.media_delete_action.yml create mode 100644 config/sync/system.action.media_publish_action.yml create mode 100644 config/sync/system.action.media_save_action.yml create mode 100644 config/sync/system.action.media_unpublish_action.yml create mode 100644 config/sync/system.action.node_delete_action.yml create mode 100644 config/sync/system.action.node_make_sticky_action.yml create mode 100644 config/sync/system.action.node_make_unsticky_action.yml create mode 100644 config/sync/system.action.node_promote_action.yml create mode 100644 config/sync/system.action.node_publish_action.yml create mode 100644 config/sync/system.action.node_save_action.yml create mode 100644 config/sync/system.action.node_unpromote_action.yml create mode 100644 config/sync/system.action.node_unpublish_action.yml create mode 100644 config/sync/system.action.pathauto_update_alias_node.yml create mode 100644 config/sync/system.action.pathauto_update_alias_user.yml create mode 100644 config/sync/system.action.profile_delete_action.yml create mode 100644 config/sync/system.action.profile_publish_action.yml create mode 100644 config/sync/system.action.profile_unpublish_action.yml create mode 100644 config/sync/system.action.taxonomy_term_publish_action.yml create mode 100644 config/sync/system.action.taxonomy_term_unpublish_action.yml create mode 100644 config/sync/system.action.user_add_role_action.administrator.yml create mode 100644 config/sync/system.action.user_block_user_action.yml create mode 100644 config/sync/system.action.user_cancel_user_action.yml create mode 100644 config/sync/system.action.user_remove_role_action.administrator.yml create mode 100644 config/sync/system.action.user_unblock_user_action.yml create mode 100644 config/sync/system.advisories.yml create mode 100644 config/sync/system.cron.yml create mode 100644 config/sync/system.date.yml create mode 100644 config/sync/system.diff.yml create mode 100644 config/sync/system.feature_flags.yml create mode 100644 config/sync/system.file.yml create mode 100644 config/sync/system.image.gd.yml create mode 100644 config/sync/system.image.yml create mode 100644 config/sync/system.logging.yml create mode 100644 config/sync/system.mail.yml create mode 100644 config/sync/system.maintenance.yml create mode 100644 config/sync/system.menu.account.yml create mode 100644 config/sync/system.menu.admin.yml create mode 100644 config/sync/system.menu.footer.yml create mode 100644 config/sync/system.menu.main.yml create mode 100644 config/sync/system.menu.social.yml create mode 100644 config/sync/system.menu.tools.yml create mode 100644 config/sync/system.performance.yml create mode 100644 config/sync/system.rss.yml create mode 100644 config/sync/system.site.yml create mode 100644 config/sync/system.theme.global.yml create mode 100644 config/sync/system.theme.yml create mode 100644 config/sync/taxonomy.settings.yml create mode 100644 config/sync/taxonomy.vocabulary.product_brands.yml create mode 100644 config/sync/taxonomy.vocabulary.product_collections.yml create mode 100644 config/sync/taxonomy.vocabulary.product_tags.yml create mode 100644 config/sync/text.settings.yml create mode 100644 config/sync/tour.tour.block-layout.yml create mode 100644 config/sync/tour.tour.search-api-index-fields.yml create mode 100644 config/sync/tour.tour.search-api-index-form.yml create mode 100644 config/sync/tour.tour.search-api-index-processors.yml create mode 100644 config/sync/tour.tour.search-api-index.yml create mode 100644 config/sync/tour.tour.search-api-server-form.yml create mode 100644 config/sync/tour.tour.search-api-server.yml create mode 100644 config/sync/tour.tour.views-ui.yml create mode 100644 config/sync/update.settings.yml create mode 100644 config/sync/user.flood.yml create mode 100644 config/sync/user.mail.yml create mode 100644 config/sync/user.role.administrator.yml create mode 100644 config/sync/user.role.anonymous.yml create mode 100644 config/sync/user.role.authenticated.yml create mode 100644 config/sync/user.settings.yml create mode 100644 config/sync/views.settings.yml create mode 100644 config/sync/views.view.advancedqueue_jobs.yml create mode 100644 config/sync/views.view.archive.yml create mode 100644 config/sync/views.view.block_content.yml create mode 100644 config/sync/views.view.cklb_products_entity_reference.yml create mode 100644 config/sync/views.view.comment.yml create mode 100644 config/sync/views.view.comments_recent.yml create mode 100644 config/sync/views.view.commerce_activity.yml create mode 100644 config/sync/views.view.commerce_cart_block.yml create mode 100644 config/sync/views.view.commerce_cart_form.yml create mode 100644 config/sync/views.view.commerce_carts.yml create mode 100644 config/sync/views.view.commerce_checkout_order_summary.yml create mode 100644 config/sync/views.view.commerce_file_my_files.yml create mode 100644 config/sync/views.view.commerce_licenses.yml create mode 100644 config/sync/views.view.commerce_order_item_table.yml create mode 100644 config/sync/views.view.commerce_order_payments.yml create mode 100644 config/sync/views.view.commerce_orders.yml create mode 100644 config/sync/views.view.commerce_products.yml create mode 100644 config/sync/views.view.commerce_promotion_coupons.yml create mode 100644 config/sync/views.view.commerce_promotions.yml create mode 100644 config/sync/views.view.commerce_stores.yml create mode 100644 config/sync/views.view.commerce_user_orders.yml create mode 100644 config/sync/views.view.content.yml create mode 100644 config/sync/views.view.content_recent.yml create mode 100644 config/sync/views.view.files.yml create mode 100644 config/sync/views.view.frontpage.yml create mode 100644 config/sync/views.view.glossary.yml create mode 100644 config/sync/views.view.media.yml create mode 100644 config/sync/views.view.media_library.yml create mode 100644 config/sync/views.view.order_shipments.yml create mode 100644 config/sync/views.view.product_catalog.yml create mode 100644 config/sync/views.view.profiles.yml create mode 100644 config/sync/views.view.section_library.yml create mode 100644 config/sync/views.view.taxonomy_term.yml create mode 100644 config/sync/views.view.user_admin_people.yml create mode 100644 config/sync/views.view.watchdog.yml create mode 100644 config/sync/views.view.who_s_new.yml create mode 100644 config/sync/views.view.who_s_online.yml diff --git a/config/sync/.htaccess b/config/sync/.htaccess new file mode 100644 index 0000000..b0dc540 --- /dev/null +++ b/config/sync/.htaccess @@ -0,0 +1,24 @@ +# Deny all requests from Apache 2.4+. + + Require all denied + + +# Deny all requests from Apache 2.0-2.2. + + Deny from all + + +# Turn off all options we don't need. +Options -Indexes -ExecCGI -Includes -MultiViews + +# Set the catch-all handler to prevent scripts from being executed. +SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006 + + # Override the handler again if we're run later in the evaluation list. + SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003 + + +# If we know how to do it safely, disable the PHP engine entirely. + + php_flag engine off + \ No newline at end of file diff --git a/config/sync/admin_toolbar.settings.yml b/config/sync/admin_toolbar.settings.yml new file mode 100644 index 0000000..93a6695 --- /dev/null +++ b/config/sync/admin_toolbar.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI +menu_depth: 4 diff --git a/config/sync/admin_toolbar_tools.settings.yml b/config/sync/admin_toolbar_tools.settings.yml new file mode 100644 index 0000000..bc96a02 --- /dev/null +++ b/config/sync/admin_toolbar_tools.settings.yml @@ -0,0 +1,5 @@ +_core: + default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q +max_bundle_number: 20 +hoverintent_functionality: true +show_local_tasks: false diff --git a/config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml b/config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml new file mode 100644 index 0000000..25e16a1 --- /dev/null +++ b/config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml @@ -0,0 +1,15 @@ +uuid: ad3b596d-22db-4ce0-bd1c-05609061dce5 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: fxqz51vznyPWsGSU_3z1b1jp4GbZorPLjmXD0Q70y1M +id: commerce_license +label: 'Commerce License' +backend: database +backend_configuration: + lease_time: 300 +processor: cron +processing_time: 180 +threshold: { } +locked: true diff --git a/config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml b/config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml new file mode 100644 index 0000000..6f91797 --- /dev/null +++ b/config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml @@ -0,0 +1,15 @@ +uuid: 0b658681-6db8-4a96-b02d-bc4214a17144 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: OQlGKYeBfi-MnjiuafqBiLopnCd9XpM53-8Zi5cw9pI +id: commerce_license_notify +label: 'Commerce License Notifications' +backend: database +backend_configuration: + lease_time: 300 +processor: cron +processing_time: 180 +threshold: { } +locked: true diff --git a/config/sync/advancedqueue.advancedqueue_queue.default.yml b/config/sync/advancedqueue.advancedqueue_queue.default.yml new file mode 100644 index 0000000..3556b56 --- /dev/null +++ b/config/sync/advancedqueue.advancedqueue_queue.default.yml @@ -0,0 +1,18 @@ +uuid: 27850ecd-c29d-402b-8156-725019e12170 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: U02Wab4V6J9J8gEyT5tlBu47GwnGCYpgd3CBhXrrWU0 +id: default +label: Default +backend: database +backend_configuration: + lease_time: 300 +processor: cron +processing_time: 90 +threshold: + type: 0 + limit: 0 + state: all +locked: false diff --git a/config/sync/automated_cron.settings.yml b/config/sync/automated_cron.settings.yml new file mode 100644 index 0000000..3fc5821 --- /dev/null +++ b/config/sync/automated_cron.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs +interval: 10800 diff --git a/config/sync/belgrade.settings.yml b/config/sync/belgrade.settings.yml new file mode 100644 index 0000000..8c13448 --- /dev/null +++ b/config/sync/belgrade.settings.yml @@ -0,0 +1,25 @@ +_core: + default_config_hash: CjkQ-xZe9_McsEpYCGrmpr06sthpEoZ1TwIF3xozEbg +inline_logo: 1 +fieldset_accordion: 0 +local_tasks_fixed: 1 +font_set: raleway +belgrade_icons: 1 +product_teaser: belgrade +message_type: alerts +main_container: container-xl +navigation_toggle_text: Menu +navigation_logo: 1 +navigation_position: start +region_class_navigation: 'bg-primary opacify-links text-white' +region_class_top_bar: 'position-relative bg-dark py-2 opacify-links text-white' +region_container_top_bar: container-xl +region_class_header: 'py-5 mt-lg-4' +region_container_header: container-xl +region_container_highlighted: container-xl +region_class_sidebar_first: 'col-lg-3 me-lg-4 order-first' +region_container_sidebar_first: '' +region_class_content: col +region_class_sidebar_second: col-lg-3 +region_class_footer: 'bg-dark py-5 opacify-links text-white' +region_container_footer: container-xl diff --git a/config/sync/block.block.belgrade_account_menu.yml b/config/sync/block.block.belgrade_account_menu.yml new file mode 100644 index 0000000..5ebd9c4 --- /dev/null +++ b/config/sync/block.block.belgrade_account_menu.yml @@ -0,0 +1,27 @@ +uuid: b20846f5-35fb-479c-b604-bbbb325de3ab +langcode: en +status: true +dependencies: + config: + - system.menu.account + module: + - system + theme: + - belgrade +_core: + default_config_hash: W1mUb_Fv5zaCLkG8UWNiJ76yfWgtvNV8gX5jk8SSnEE +id: belgrade_account_menu +theme: belgrade +region: top_bar +weight: -6 +provider: null +plugin: 'system_menu_block:account' +settings: + id: 'system_menu_block:account' + label: 'User account menu' + label_display: '0' + provider: system + level: 1 + depth: 1 + expand_all_items: false +visibility: { } diff --git a/config/sync/block.block.belgrade_branding.yml b/config/sync/block.block.belgrade_branding.yml new file mode 100644 index 0000000..433d527 --- /dev/null +++ b/config/sync/block.block.belgrade_branding.yml @@ -0,0 +1,25 @@ +uuid: eea73200-998c-4755-b2ed-b84306fc84b6 +langcode: en +status: true +dependencies: + module: + - system + theme: + - belgrade +_core: + default_config_hash: z46aFj7i7rALpdO3PRsi7pJCmgKxL0CUpq53JzXj9qs +id: belgrade_branding +theme: belgrade +region: header +weight: -9 +provider: null +plugin: system_branding_block +settings: + id: system_branding_block + label: 'Site branding' + label_display: '0' + provider: system + use_site_logo: true + use_site_name: false + use_site_slogan: false +visibility: { } diff --git a/config/sync/block.block.belgrade_breadcrumbs.yml b/config/sync/block.block.belgrade_breadcrumbs.yml new file mode 100644 index 0000000..f77a89a --- /dev/null +++ b/config/sync/block.block.belgrade_breadcrumbs.yml @@ -0,0 +1,26 @@ +uuid: 65cc8073-958f-4d21-bfd7-161847cabb0e +langcode: en +status: true +dependencies: + module: + - system + theme: + - belgrade +_core: + default_config_hash: o9654zFbOpjd88E5j5l4Cby3t-WwUuTfQ6xcKSLsodg +id: belgrade_breadcrumbs +theme: belgrade +region: highlighted +weight: -7 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: + request_path: + id: request_path + negate: true + pages: "/cart*\r\n/checkout*\r\n" diff --git a/config/sync/block.block.belgrade_checkout_progress.yml b/config/sync/block.block.belgrade_checkout_progress.yml new file mode 100644 index 0000000..bde181d --- /dev/null +++ b/config/sync/block.block.belgrade_checkout_progress.yml @@ -0,0 +1,28 @@ +uuid: 7d323ed6-17ab-453c-af87-9a86d077deff +langcode: en +status: true +dependencies: + module: + - commerce_checkout + - system + theme: + - belgrade +_core: + default_config_hash: jSLJ3sJUecEmCmbbB-ISvExMtHpzXsFIguGKTTI6lPA +id: belgrade_checkout_progress +theme: belgrade +region: content +weight: -7 +provider: null +plugin: commerce_checkout_progress +settings: + id: commerce_checkout_progress + label: 'Checkout progress' + label_display: '0' + provider: commerce_checkout +visibility: + request_path: + id: request_path + pages: '/checkout/*' + negate: false + context_mapping: { } diff --git a/config/sync/block.block.belgrade_content.yml b/config/sync/block.block.belgrade_content.yml new file mode 100644 index 0000000..43a3fa5 --- /dev/null +++ b/config/sync/block.block.belgrade_content.yml @@ -0,0 +1,22 @@ +uuid: 004c9724-039b-4b8e-8950-f637089baf28 +langcode: en +status: true +dependencies: + module: + - system + theme: + - belgrade +_core: + default_config_hash: XJkApTCnidVbNIe-SvLIX1pVPIiw5j_m0SWT-eYw39E +id: belgrade_content +theme: belgrade +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.belgrade_footer.yml b/config/sync/block.block.belgrade_footer.yml new file mode 100644 index 0000000..1a0d11d --- /dev/null +++ b/config/sync/block.block.belgrade_footer.yml @@ -0,0 +1,27 @@ +uuid: 1d4ed309-fc7d-45fe-82b2-1b02348cac0b +langcode: en +status: true +dependencies: + config: + - system.menu.footer + module: + - system + theme: + - belgrade +_core: + default_config_hash: nI9USQjCYio-S2yKUK3OfHTG92pwjXbHdzhKKeAWaAY +id: belgrade_footer +theme: belgrade +region: footer +weight: -5 +provider: null +plugin: 'system_menu_block:footer' +settings: + id: 'system_menu_block:footer' + label: 'Footer menu' + label_display: '0' + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/config/sync/block.block.belgrade_help.yml b/config/sync/block.block.belgrade_help.yml new file mode 100644 index 0000000..4bb22f1 --- /dev/null +++ b/config/sync/block.block.belgrade_help.yml @@ -0,0 +1,22 @@ +uuid: 02f9b46b-d78d-41a1-ba35-a62c49983533 +langcode: en +status: true +dependencies: + module: + - help + theme: + - belgrade +_core: + default_config_hash: gKtOcSQTQki2pujw1HB5crJu7WlQmuPbl9cMqPDeWtA +id: belgrade_help +theme: belgrade +region: content +weight: -8 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/config/sync/block.block.belgrade_local_actions.yml b/config/sync/block.block.belgrade_local_actions.yml new file mode 100644 index 0000000..2a54cd7 --- /dev/null +++ b/config/sync/block.block.belgrade_local_actions.yml @@ -0,0 +1,20 @@ +uuid: a818e3c7-b889-4437-96bd-6dcaad793f8a +langcode: en +status: true +dependencies: + theme: + - belgrade +_core: + default_config_hash: EAlCAHiVy5x3aTOW2K9XaWE4kelyfSSSKv8_uiomGJM +id: belgrade_local_actions +theme: belgrade +region: content +weight: -8 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/config/sync/block.block.belgrade_local_tasks.yml b/config/sync/block.block.belgrade_local_tasks.yml new file mode 100644 index 0000000..e1a50a7 --- /dev/null +++ b/config/sync/block.block.belgrade_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 86fc0d6a-8342-48e0-ac22-2f7df06f44e7 +langcode: en +status: true +dependencies: + theme: + - belgrade +_core: + default_config_hash: ShCI2CrHlOLfouMMyUnPcqHa3_sX443kM-yE9dIm05E +id: belgrade_local_tasks +theme: belgrade +region: content +weight: -9 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: Tabs + label_display: '0' + provider: core + primary: true + secondary: true +visibility: { } diff --git a/config/sync/block.block.belgrade_main_menu.yml b/config/sync/block.block.belgrade_main_menu.yml new file mode 100644 index 0000000..45df0e0 --- /dev/null +++ b/config/sync/block.block.belgrade_main_menu.yml @@ -0,0 +1,27 @@ +uuid: 78b0181a-4923-4e17-ac56-2d36ece6a48f +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - belgrade +_core: + default_config_hash: 63FLrk7BpcLU-5YLZwWVCOtOMozD8mSzBytCiu0Oznc +id: belgrade_main_menu +theme: belgrade +region: navigation +weight: -7 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main navigation' + label_display: '0' + provider: system + level: 1 + depth: 1 + expand_all_items: false +visibility: { } diff --git a/config/sync/block.block.belgrade_main_menu_header.yml b/config/sync/block.block.belgrade_main_menu_header.yml new file mode 100644 index 0000000..ae62aa4 --- /dev/null +++ b/config/sync/block.block.belgrade_main_menu_header.yml @@ -0,0 +1,27 @@ +uuid: 0d5bb466-6132-4803-a81e-6885c27645cd +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - belgrade +_core: + default_config_hash: AA8QZMYUufEoxWQtJSJUWpYh8KBN7SLCckigtlPAneI +id: belgrade_main_menu_header +theme: belgrade +region: header +weight: -8 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main navigation header' + label_display: '0' + provider: system + level: 1 + depth: 1 + expand_all_items: false +visibility: { } diff --git a/config/sync/block.block.belgrade_messages.yml b/config/sync/block.block.belgrade_messages.yml new file mode 100644 index 0000000..685121a --- /dev/null +++ b/config/sync/block.block.belgrade_messages.yml @@ -0,0 +1,22 @@ +uuid: 9055c2e4-4932-4a44-a849-a3e22492d595 +langcode: en +status: true +dependencies: + module: + - system + theme: + - belgrade +_core: + default_config_hash: uxiZlSldLtoOp05pfXeKJxxtvB0ckxx3mAAabJdAJnU +id: belgrade_messages +theme: belgrade +region: highlighted +weight: -8 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.belgrade_page_title.yml b/config/sync/block.block.belgrade_page_title.yml new file mode 100644 index 0000000..8f1cf3a --- /dev/null +++ b/config/sync/block.block.belgrade_page_title.yml @@ -0,0 +1,41 @@ +uuid: 85e3ad2f-e5f9-4e43-b9b3-9c05f6dafb50 +langcode: en +status: true +dependencies: + module: + - system + - block_visibility_conditions + - block_visibility_conditions_node + - block_visibility_conditions_taxonomy + - system + theme: + - belgrade + - belgrade +_core: + default_config_hash: 4sQo3UuHbrbLZzZUf13YP_N6Fij0jcdoy89cFXkpJCU +id: belgrade_page_title +theme: belgrade +region: content +weight: -10 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: + request_path: + id: request_path + negate: true + context_mapping: { } + pages: "\r\n/product/*\r\n/products*\r\n" + not_node_type: + id: not_node_type + bundles: + landing_page: cklb_landing_page + negate: null + not_taxonomy_vocabulary: + id: not_taxonomy_vocabulary + bundles: { } + negate: null diff --git a/config/sync/block.block.belgrade_powered.yml b/config/sync/block.block.belgrade_powered.yml new file mode 100644 index 0000000..8d8cdae --- /dev/null +++ b/config/sync/block.block.belgrade_powered.yml @@ -0,0 +1,22 @@ +uuid: 495f81a2-7340-4272-8f7a-175df019acda +langcode: en +status: true +dependencies: + module: + - system + theme: + - belgrade +_core: + default_config_hash: z0llL779cPFRJ5myqA63dPOl35O7K1lx6wP5omHTi8U +id: belgrade_powered +theme: belgrade +region: footer +weight: -7 +provider: null +plugin: system_powered_by_block +settings: + id: system_powered_by_block + label: 'Powered by Drupal' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.belgrade_shopping_cart.yml b/config/sync/block.block.belgrade_shopping_cart.yml new file mode 100644 index 0000000..35fc9fc --- /dev/null +++ b/config/sync/block.block.belgrade_shopping_cart.yml @@ -0,0 +1,24 @@ +uuid: 89f83880-94ee-4607-8d2b-bab8baa17d89 +langcode: en +status: true +dependencies: + module: + - commerce_cart + theme: + - belgrade +_core: + default_config_hash: jUNmzvzK92cHuSw1Ohd5u22q92TI6e8hOeYlHhSaBgc +id: belgrade_shopping_cart +theme: belgrade +region: top_bar +weight: -10 +provider: null +plugin: commerce_cart +settings: + id: commerce_cart + label: 'Shopping Cart' + label_display: '0' + provider: commerce_cart + dropdown: true + item_text: items +visibility: { } diff --git a/config/sync/block.block.belgrade_social.yml b/config/sync/block.block.belgrade_social.yml new file mode 100644 index 0000000..f50f987 --- /dev/null +++ b/config/sync/block.block.belgrade_social.yml @@ -0,0 +1,27 @@ +uuid: 31cf2403-ba59-4d7b-8527-e2e48e6b3e30 +langcode: en +status: true +dependencies: + config: + - system.menu.social + module: + - system + theme: + - belgrade +_core: + default_config_hash: UReBPHxHy4zKoBBa2ZttpWOjp5Jp9sxNEw23e1muAc8 +id: belgrade_social +theme: belgrade +region: footer +weight: -4 +provider: null +plugin: 'system_menu_block:social' +settings: + id: 'system_menu_block:social' + label: "Let's get social" + label_display: visible + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/config/sync/block.block.belgrade_social_navigation.yml b/config/sync/block.block.belgrade_social_navigation.yml new file mode 100644 index 0000000..a6f81bf --- /dev/null +++ b/config/sync/block.block.belgrade_social_navigation.yml @@ -0,0 +1,27 @@ +uuid: 593bed6e-90ea-4aaa-8512-ede68cf07680 +langcode: en +status: true +dependencies: + config: + - system.menu.social + module: + - system + theme: + - belgrade +_core: + default_config_hash: Dr78JU06qEPwMRS9CDsTk011MO9E7Dv6zPVNyM1rDNM +id: belgrade_social_navigation +theme: belgrade +region: navigation +weight: 0 +provider: null +plugin: 'system_menu_block:social' +settings: + id: 'system_menu_block:social' + label: Social + label_display: '0' + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/config/sync/block.block.centarro_claro_breadcrumbs.yml b/config/sync/block.block.centarro_claro_breadcrumbs.yml new file mode 100644 index 0000000..c358654 --- /dev/null +++ b/config/sync/block.block.centarro_claro_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: 3ce40fef-01a8-445a-b3ef-6cabcf9858e3 +langcode: en +status: true +dependencies: + module: + - system + theme: + - centarro_claro +_core: + default_config_hash: Qk8uyFaFgDwn4NcA_6bxVW0820KO1hls-9xT7LQhwGc +id: centarro_claro_breadcrumbs +theme: centarro_claro +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.centarro_claro_content.yml b/config/sync/block.block.centarro_claro_content.yml new file mode 100644 index 0000000..e6fbbfc --- /dev/null +++ b/config/sync/block.block.centarro_claro_content.yml @@ -0,0 +1,22 @@ +uuid: b3810576-2ad2-4233-a9cb-0e5a930b399e +langcode: en +status: true +dependencies: + module: + - system + theme: + - centarro_claro +_core: + default_config_hash: FdXl2qtoXTyCFiulwQ6vaeT72GG5c4BvlmlzY8-2Egk +id: centarro_claro_content +theme: centarro_claro +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.centarro_claro_help.yml b/config/sync/block.block.centarro_claro_help.yml new file mode 100644 index 0000000..169f304 --- /dev/null +++ b/config/sync/block.block.centarro_claro_help.yml @@ -0,0 +1,22 @@ +uuid: ac829274-c1b9-472e-9060-4a54abb52819 +langcode: en +status: true +dependencies: + module: + - help + theme: + - centarro_claro +_core: + default_config_hash: 8qSB2cHXvg7V4fqHDgW5PXNSdp5gUQUuKBxQnueNt8Q +id: centarro_claro_help +theme: centarro_claro +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/config/sync/block.block.centarro_claro_local_actions.yml b/config/sync/block.block.centarro_claro_local_actions.yml new file mode 100644 index 0000000..9d0bdb7 --- /dev/null +++ b/config/sync/block.block.centarro_claro_local_actions.yml @@ -0,0 +1,20 @@ +uuid: d19ec567-a8a6-481a-8571-0ff1b8a9f5e8 +langcode: en +status: true +dependencies: + theme: + - centarro_claro +_core: + default_config_hash: MU6CIFtyelNAF9DEmjrZZCTiqCPAfhvczjGaB6qrjxA +id: centarro_claro_local_actions +theme: centarro_claro +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/config/sync/block.block.centarro_claro_messages.yml b/config/sync/block.block.centarro_claro_messages.yml new file mode 100644 index 0000000..9a39487 --- /dev/null +++ b/config/sync/block.block.centarro_claro_messages.yml @@ -0,0 +1,22 @@ +uuid: a0a1ccf7-3568-4701-bd3c-9250b4f31391 +langcode: en +status: true +dependencies: + module: + - system + theme: + - centarro_claro +_core: + default_config_hash: VffWQmRxsoFhuuCL5_ykunS8JDdZZneddyFH5jhBawA +id: centarro_claro_messages +theme: centarro_claro +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.centarro_claro_page_title.yml b/config/sync/block.block.centarro_claro_page_title.yml new file mode 100644 index 0000000..d54935b --- /dev/null +++ b/config/sync/block.block.centarro_claro_page_title.yml @@ -0,0 +1,20 @@ +uuid: 7db8a456-75d8-4051-9086-b755744628e0 +langcode: en +status: true +dependencies: + theme: + - centarro_claro +_core: + default_config_hash: nNJHJo53pZhNP1t4XvVEXr2WyVJQDUI6VDsEQvOgGN8 +id: centarro_claro_page_title +theme: centarro_claro +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/config/sync/block.block.centarro_claro_primary_local_tasks.yml b/config/sync/block.block.centarro_claro_primary_local_tasks.yml new file mode 100644 index 0000000..6292169 --- /dev/null +++ b/config/sync/block.block.centarro_claro_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 6c893817-26db-48ae-96da-50de42b2557f +langcode: en +status: true +dependencies: + theme: + - centarro_claro +_core: + default_config_hash: mQYLMonh5C015m1qMXwC5V3DNn7IPrAlGrfM9eHG0tI +id: centarro_claro_primary_local_tasks +theme: centarro_claro +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + label_display: '0' + provider: core + primary: true + secondary: false +visibility: { } diff --git a/config/sync/block.block.centarro_claro_secondary_local_tasks.yml b/config/sync/block.block.centarro_claro_secondary_local_tasks.yml new file mode 100644 index 0000000..4cf45ea --- /dev/null +++ b/config/sync/block.block.centarro_claro_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: cfddf60a-d64d-4c98-9840-0740293bd30e +langcode: en +status: true +dependencies: + theme: + - centarro_claro +_core: + default_config_hash: wUGTmwoOa879RFJlrmWYeOEK4gpaF__sM1jc8Z54yxQ +id: centarro_claro_secondary_local_tasks +theme: centarro_claro +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + label_display: '0' + provider: core + primary: false + secondary: true +visibility: { } diff --git a/config/sync/block.block.claro_breadcrumbs.yml b/config/sync/block.block.claro_breadcrumbs.yml new file mode 100644 index 0000000..f33c7ad --- /dev/null +++ b/config/sync/block.block.claro_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: 72e924fb-22cb-4e14-a5c8-0168604ca9cc +langcode: en +status: true +dependencies: + module: + - system + theme: + - claro +_core: + default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A +id: claro_breadcrumbs +theme: claro +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.claro_content.yml b/config/sync/block.block.claro_content.yml new file mode 100644 index 0000000..3bd99ba --- /dev/null +++ b/config/sync/block.block.claro_content.yml @@ -0,0 +1,22 @@ +uuid: 6abf884f-1d84-422d-aaf0-4d425f43fac4 +langcode: en +status: true +dependencies: + module: + - system + theme: + - claro +_core: + default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0 +id: claro_content +theme: claro +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.claro_help.yml b/config/sync/block.block.claro_help.yml new file mode 100644 index 0000000..6f084fb --- /dev/null +++ b/config/sync/block.block.claro_help.yml @@ -0,0 +1,22 @@ +uuid: 05940358-70fd-4c8f-91ee-01f6a318e887 +langcode: en +status: true +dependencies: + module: + - help + theme: + - claro +_core: + default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM +id: claro_help +theme: claro +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/config/sync/block.block.claro_local_actions.yml b/config/sync/block.block.claro_local_actions.yml new file mode 100644 index 0000000..6687c76 --- /dev/null +++ b/config/sync/block.block.claro_local_actions.yml @@ -0,0 +1,20 @@ +uuid: 238d8f15-b576-40fc-81c8-99ea82b63a54 +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0 +id: claro_local_actions +theme: claro +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/config/sync/block.block.claro_messages.yml b/config/sync/block.block.claro_messages.yml new file mode 100644 index 0000000..2c91694 --- /dev/null +++ b/config/sync/block.block.claro_messages.yml @@ -0,0 +1,22 @@ +uuid: e5315b3b-b8d0-4f84-a18c-6f25a8d08835 +langcode: en +status: true +dependencies: + module: + - system + theme: + - claro +_core: + default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg' +id: claro_messages +theme: claro +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/config/sync/block.block.claro_page_title.yml b/config/sync/block.block.claro_page_title.yml new file mode 100644 index 0000000..b16fc94 --- /dev/null +++ b/config/sync/block.block.claro_page_title.yml @@ -0,0 +1,20 @@ +uuid: 659291a3-9d5e-4e97-aef3-7ca674c7cc35 +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs +id: claro_page_title +theme: claro +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/config/sync/block.block.claro_primary_local_tasks.yml b/config/sync/block.block.claro_primary_local_tasks.yml new file mode 100644 index 0000000..e638d8e --- /dev/null +++ b/config/sync/block.block.claro_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 9f6bc03a-3e6e-419c-b61d-45e3408cfbae +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw +id: claro_primary_local_tasks +theme: claro +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + label_display: '0' + provider: core + primary: true + secondary: false +visibility: { } diff --git a/config/sync/block.block.claro_secondary_local_tasks.yml b/config/sync/block.block.claro_secondary_local_tasks.yml new file mode 100644 index 0000000..1190f29 --- /dev/null +++ b/config/sync/block.block.claro_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 55eb29df-b7e5-4662-8276-ebabe51e71dc +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4 +id: claro_secondary_local_tasks +theme: claro +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + label_display: '0' + provider: core + primary: false + secondary: true +visibility: { } diff --git a/config/sync/block.block.productbrand.yml b/config/sync/block.block.productbrand.yml new file mode 100644 index 0000000..f4cbb6e --- /dev/null +++ b/config/sync/block.block.productbrand.yml @@ -0,0 +1,31 @@ +uuid: 7a79ec1f-0d5f-4ba6-8519-bc8b5f18226b +langcode: en +status: true +dependencies: + config: + - facets.facet.product_brand + module: + - facets + - system + theme: + - belgrade +_core: + default_config_hash: VFMtnq5pk2Zlpd0A2xo_uakKnW2MzBjUT3Yja7uwjCg +id: productbrand +theme: belgrade +region: sidebar_first +weight: -8 +provider: null +plugin: 'facet_block:product_brand' +settings: + id: 'facet_block:product_brand' + label: Brand + label_display: visible + provider: facets + context_mapping: { } + block_id: productbrand +visibility: + request_path: + id: request_path + negate: false + pages: "/products\r\n/products*" diff --git a/config/sync/block.block.productcollections.yml b/config/sync/block.block.productcollections.yml new file mode 100644 index 0000000..21bcf05 --- /dev/null +++ b/config/sync/block.block.productcollections.yml @@ -0,0 +1,31 @@ +uuid: dc0ee30d-5ad2-4b88-b007-6b5d6eb03822 +langcode: en +status: true +dependencies: + config: + - facets.facet.product_collections + module: + - facets + - system + theme: + - belgrade +_core: + default_config_hash: vK4m_1-VKAXqZKKrJKt72MwRYUEg0gV_20EWc2JjR5A +id: productcollections +theme: belgrade +region: sidebar_first +weight: -9 +provider: null +plugin: 'facet_block:product_collections' +settings: + id: 'facet_block:product_collections' + label: Categories + label_display: visible + provider: facets + context_mapping: { } + block_id: productcollections +visibility: + request_path: + id: request_path + negate: false + pages: "/products\r\n/products*" diff --git a/config/sync/block_content.type.basic.yml b/config/sync/block_content.type.basic.yml new file mode 100644 index 0000000..1ea7e50 --- /dev/null +++ b/config/sync/block_content.type.basic.yml @@ -0,0 +1,10 @@ +uuid: 651f0002-b8a5-4363-ab2f-2cfd03e6e5e4 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo +id: basic +label: 'Basic block' +revision: 0 +description: 'A basic block contains a title and a body.' diff --git a/config/sync/block_content.type.cklb_button.yml b/config/sync/block_content.type.cklb_button.yml new file mode 100644 index 0000000..ed89415 --- /dev/null +++ b/config/sync/block_content.type.cklb_button.yml @@ -0,0 +1,10 @@ +uuid: 145f35e7-2683-4f6a-9526-160a28663012 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: quEdz9yoJaOPjMfWqL5nWXdR-0oxuR_ierAhmuBd-1E +id: cklb_button +label: Button +revision: 0 +description: 'Simple Call to Action Button block' diff --git a/config/sync/block_content.type.cklb_hero.yml b/config/sync/block_content.type.cklb_hero.yml new file mode 100644 index 0000000..0fe5f4f --- /dev/null +++ b/config/sync/block_content.type.cklb_hero.yml @@ -0,0 +1,10 @@ +uuid: 7f718b1b-ff8b-455b-9413-21726efa56b7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: aqyngob856rvY62EL-sbZJqz3gu--VFuWWkQ3_EOcSc +id: cklb_hero +label: Hero +revision: 0 +description: 'Block for adding text with optional Call to Action and Subtitle ' diff --git a/config/sync/block_content.type.cklb_image.yml b/config/sync/block_content.type.cklb_image.yml new file mode 100644 index 0000000..5458692 --- /dev/null +++ b/config/sync/block_content.type.cklb_image.yml @@ -0,0 +1,10 @@ +uuid: 00dec984-bd4a-45c7-8766-2f7a839c5386 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: uTZxl1JyzUpPM84ghoVhYy3ozsJ2CgmktEsSuzkPWBI +id: cklb_image +label: Image +revision: 0 +description: 'Simple image block' diff --git a/config/sync/block_content.type.cklb_products.yml b/config/sync/block_content.type.cklb_products.yml new file mode 100644 index 0000000..8dbe8c5 --- /dev/null +++ b/config/sync/block_content.type.cklb_products.yml @@ -0,0 +1,10 @@ +uuid: 6e777863-23c7-4479-9927-320946c5ba12 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: AkxfIX8ea87Cc8VjgUXVVMyIkBxjQ2DuAr8pt2qFOMU +id: cklb_products +label: Products +revision: 0 +description: 'Simple block for creating a list of products' diff --git a/config/sync/block_content.type.cklb_text.yml b/config/sync/block_content.type.cklb_text.yml new file mode 100644 index 0000000..b033363 --- /dev/null +++ b/config/sync/block_content.type.cklb_text.yml @@ -0,0 +1,10 @@ +uuid: 7b695cdb-2b87-4196-8ada-585c698934aa +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: dDLukr_ZcPzm7tpX9rq0REBjtJyBZD151hnHaJmBfk4 +id: cklb_text +label: Text +revision: 0 +description: 'Simple text block' diff --git a/config/sync/block_content.type.cklb_title.yml b/config/sync/block_content.type.cklb_title.yml new file mode 100644 index 0000000..486f8ad --- /dev/null +++ b/config/sync/block_content.type.cklb_title.yml @@ -0,0 +1,10 @@ +uuid: 6c352635-1d75-47a8-aab4-6539715885e7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: TXBwrT25jhMgNcEWj7LYnMKhrCcrEqiQ_QxyQne-T8E +id: cklb_title +label: Title +revision: 0 +description: 'Title block with additional display for H1 title.' diff --git a/config/sync/bootstrap_basic_image_gallery.settings.yml b/config/sync/bootstrap_basic_image_gallery.settings.yml new file mode 100644 index 0000000..42cac3e --- /dev/null +++ b/config/sync/bootstrap_basic_image_gallery.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: OusJbhshiF2mH12q_oFQAZdYWkXevgKFIUqbdNufCKU +prevent_load_bootstrap: false diff --git a/config/sync/bootstrap_layout_builder.breakpoint.desktop.yml b/config/sync/bootstrap_layout_builder.breakpoint.desktop.yml new file mode 100644 index 0000000..ebebe22 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.breakpoint.desktop.yml @@ -0,0 +1,10 @@ +uuid: bfc4346f-2a7b-4893-9b47-44742dde00a1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: z2gP53l-qees_gzxC5Gtc0Z0d3YjscK3f-0WRyecg7k +id: desktop +label: Desktop +base_class: col-lg +weight: -10 diff --git a/config/sync/bootstrap_layout_builder.breakpoint.mobile.yml b/config/sync/bootstrap_layout_builder.breakpoint.mobile.yml new file mode 100644 index 0000000..636db3f --- /dev/null +++ b/config/sync/bootstrap_layout_builder.breakpoint.mobile.yml @@ -0,0 +1,10 @@ +uuid: 4e682971-afdf-486b-968f-83432f8a6b62 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: I6QslJrnaSjT6Wg4T1KRmtebhDJribTPkBE2bb9hS58 +id: mobile +label: Mobile +base_class: col +weight: -8 diff --git a/config/sync/bootstrap_layout_builder.breakpoint.tablet.yml b/config/sync/bootstrap_layout_builder.breakpoint.tablet.yml new file mode 100644 index 0000000..8c06c75 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.breakpoint.tablet.yml @@ -0,0 +1,10 @@ +uuid: e2bdf394-73de-4021-b915-fe85db7941e6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 96ZiDaMm48OUV0myM8JrBfkZXmvUfFzDsZ30EGzn_OU +id: tablet +label: Tablet +base_class: col-md +weight: -9 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_1.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_1.yml new file mode 100644 index 0000000..6ab23a7 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_1.yml @@ -0,0 +1,9 @@ +uuid: 83880b58-8f5e-4940-82d2-a4b97ef43742 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: bN0uiGHyvIH9vi-0WZ8qI_SYExbwkfSJ-b31BPwaZ_4 +id: blb_col_1 +label: 'Bootstrap 1 Col' +number_of_columns: 1 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_10.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_10.yml new file mode 100644 index 0000000..51fbbb1 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_10.yml @@ -0,0 +1,9 @@ +uuid: 3cdf1956-b495-43c6-b515-7e4076b5d8b2 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: WkgxA4yi56P0DziDKST6vf2VQsRuyMo3hMTDpJTbZuA +id: blb_col_10 +label: 'Bootstrap 10 Cols' +number_of_columns: 10 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_11.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_11.yml new file mode 100644 index 0000000..acece1c --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_11.yml @@ -0,0 +1,9 @@ +uuid: 3cd97047-77a0-4969-87bd-de9913478bce +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 0LYrR1gX_9UiLJL3IfpxBKP0k8LRoSbFgB-8ic5WXv4 +id: blb_col_11 +label: 'Bootstrap 11 Cols' +number_of_columns: 11 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_12.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_12.yml new file mode 100644 index 0000000..f19046b --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_12.yml @@ -0,0 +1,9 @@ +uuid: 028da3cc-ed6d-4f2b-88a3-163ae26965e7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: '-BXON4B4F-7viWBp6z9j0ivXakcO0g0ZPgIqEEnOLCU' +id: blb_col_12 +label: 'Bootstrap 12 Cols' +number_of_columns: 12 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_2.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_2.yml new file mode 100644 index 0000000..689c646 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_2.yml @@ -0,0 +1,9 @@ +uuid: 3e2b1e2e-3b33-4f2a-8676-7fd5ef7095e1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: DLxxjhNttmPjAzr7GspBn7505coB31nXu6Zx93PDuNU +id: blb_col_2 +label: 'Bootstrap 2 Cols' +number_of_columns: 2 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_3.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_3.yml new file mode 100644 index 0000000..16aeb42 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_3.yml @@ -0,0 +1,9 @@ +uuid: 5ec9e8fc-dd32-4038-b137-2411f73778d3 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: FD9TR2PnKy0Ldqa13hIMpx8aSFkFGYlg463MLkUEfiQ +id: blb_col_3 +label: 'Bootstrap 3 Cols' +number_of_columns: 3 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_4.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_4.yml new file mode 100644 index 0000000..86d79b6 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_4.yml @@ -0,0 +1,9 @@ +uuid: 2535825b-96d0-4a01-af36-4f29b6783717 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 0TtaXM7MGi6UW1bXTqAumlZNwm-EdTLtAQjl80zsWZs +id: blb_col_4 +label: 'Bootstrap 4 Cols' +number_of_columns: 4 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_5.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_5.yml new file mode 100644 index 0000000..28403c2 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_5.yml @@ -0,0 +1,9 @@ +uuid: 47cf1ac5-47d1-4ee4-828f-173a41705261 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 0A6-yV1rlwn5QCvLuHgp3ReiaG_iw8tTXIExmMau-5g +id: blb_col_5 +label: 'Bootstrap 5 Cols' +number_of_columns: 5 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_6.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_6.yml new file mode 100644 index 0000000..a3facc4 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_6.yml @@ -0,0 +1,9 @@ +uuid: 7111d087-39d8-4707-8f49-c350c6390d8a +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: ivT0tsVljQNm-lI9KDCMv7FJPKbQd6lT_DsaavVBNek +id: blb_col_6 +label: 'Bootstrap 6 Cols' +number_of_columns: 6 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_7.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_7.yml new file mode 100644 index 0000000..8723035 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_7.yml @@ -0,0 +1,9 @@ +uuid: cd3c2cc2-6191-484e-9d95-e9c9c471b0d5 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: u98rfZWR37RTM-zc2zgYi5vUflBcfS-97TmbixnGjsg +id: blb_col_7 +label: 'Bootstrap 7 Cols' +number_of_columns: 7 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_8.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_8.yml new file mode 100644 index 0000000..255af34 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_8.yml @@ -0,0 +1,9 @@ +uuid: 947f1b8d-6c57-4422-a049-b0d08642c6ed +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Y2hGTqftGmOJk99qxkPMi8DdrGwkjX-5S8z6CdtdlXo +id: blb_col_8 +label: 'Bootstrap 8 Cols' +number_of_columns: 8 diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_9.yml b/config/sync/bootstrap_layout_builder.layout.blb_col_9.yml new file mode 100644 index 0000000..2034a38 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout.blb_col_9.yml @@ -0,0 +1,9 @@ +uuid: b76ab93f-e1f6-4781-8884-0bb9549bc983 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: kih7eZ2j4giD51zNZ7gS6Ym7YMRX1reSlB1JiA0I34Y +id: blb_col_9 +label: 'Bootstrap 9 Cols' +number_of_columns: 9 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml new file mode 100644 index 0000000..353e593 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml @@ -0,0 +1,16 @@ +uuid: 92965e6f-5ca1-4ec6-b9d0-320b7fa6c02f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: aGmLubu4Fili-N9znzJCobCaW57EZqMBj4vkoaVYxO4 +id: blb_col_2_25_75 +layout_id: blb_col_2 +label: '25% 75%' +structure: '3 9' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -9 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml new file mode 100644 index 0000000..ce19619 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml @@ -0,0 +1,16 @@ +uuid: 5587388b-2aac-401d-9151-5083304bda1f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: E7sWvz551tuIYeCtb3pXg-QKQgg8BoVmM7bKkixipVk +id: blb_col_2_75_25 +layout_id: blb_col_2 +label: '75% 25%' +structure: '9 3' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -8 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml new file mode 100644 index 0000000..222eca9 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml @@ -0,0 +1,15 @@ +uuid: 675b5bc7-8fa9-4cee-abcb-492fa095a699 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: lWz1Xh0CB4kXmid_VrEQspcEG0BMWA_FvZo0R6F2Gjw +id: blb_col_2_full_width +layout_id: blb_col_2 +label: 'Full width' +structure: '12' +default_breakpoints: null +breakpoints: + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml new file mode 100644 index 0000000..17380d4 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml @@ -0,0 +1,16 @@ +uuid: 00913efb-d779-47de-a81f-3312568983d0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: _JlVkXSFtwrKuw7erhkewxSc_SpEMIQONDdpfXJKTnE +id: blb_col_2_two_equal_columns +layout_id: blb_col_2 +label: 'Two equal columns' +structure: '6 6' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -10 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml new file mode 100644 index 0000000..9a04469 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml @@ -0,0 +1,16 @@ +uuid: 01f24555-1d43-4a8f-bd74-efc7dba1818f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hElqRJCm8-X3LXYiAXQbVRIAHeZLuddL987uzkf9B3s +id: blb_col_3_25_25_50 +layout_id: blb_col_3 +label: '25% 25% 50%' +structure: '3 3 6' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml new file mode 100644 index 0000000..25ddb00 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml @@ -0,0 +1,16 @@ +uuid: 877da9d9-e043-481a-a58e-29a7fb0df5a7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: nsESdQ_5mMECGudfHgJxoYf075WxxnB9OBQnfPyuqEs +id: blb_col_3_25_50_25 +layout_id: blb_col_3 +label: '25% 50% 25% ' +structure: '3 6 3' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml new file mode 100644 index 0000000..175f189 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml @@ -0,0 +1,16 @@ +uuid: d71aea77-5f04-4edc-a837-4720ff565e65 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: gomEHPSzgCxRNAXrM3tDFFE4eebaqwMM_I2lIUscgtk +id: blb_col_3_50_25_25 +layout_id: blb_col_3 +label: '50% 25% 25%' +structure: '6 3 3' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -9 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml new file mode 100644 index 0000000..f654e3a --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml @@ -0,0 +1,15 @@ +uuid: 277c5abf-7a27-40bf-8e61-4e3dac575e4c +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: X9TJDnZOtZXIYyvhHDoGoRHQaPNhn73qa-2FT7s3MOg +id: blb_col_3_full_width +layout_id: blb_col_3 +label: 'Full width' +structure: '12' +default_breakpoints: null +breakpoints: + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml new file mode 100644 index 0000000..a89969c --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml @@ -0,0 +1,16 @@ +uuid: b9bdd862-10ab-4432-90c6-fecf545da139 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 2KeA85TJK_Flg86CkW7CquGGfI2SaLLfNNxeIG_gyYg +id: blb_col_3_three_equal_columns +layout_id: blb_col_3 +label: 'Three equal columns' +structure: '4 4 4' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -10 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml new file mode 100644 index 0000000..52fd32c --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml @@ -0,0 +1,16 @@ +uuid: 553c703d-01f9-4116-a664-387da3812e86 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: rf8EkOeZJXg7DImyz8aGvInONpjPbHeGncashqZEnZE +id: blb_col_4_2_4_2_4 +layout_id: blb_col_4 +label: '2/12 4/12 2/12 4/12' +structure: '2 4 2 4' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml new file mode 100644 index 0000000..6325d22 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml @@ -0,0 +1,16 @@ +uuid: 3432091e-ebd9-403b-8365-ad284e3d96b8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: xyddoK66uN761dMRwPgJOSGZXtDocSxHkvkDJHclNVw +id: blb_col_4_2_4_4_2 +layout_id: blb_col_4 +label: '2/12 4/12 4/12 2/12' +structure: '2 4 4 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml new file mode 100644 index 0000000..8eeb070 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml @@ -0,0 +1,16 @@ +uuid: dd78ae35-e5aa-4947-902a-84b42ebae363 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: ilcOnJGEsB_S9lnbNS0cooPLrMpemo9wT-Ud8dxR-kM +id: blb_col_4_4_2_2_4 +layout_id: blb_col_4 +label: '4/12 2/12 2/12 4/12' +structure: '4 2 2 4' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml new file mode 100644 index 0000000..cb1cd66 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml @@ -0,0 +1,16 @@ +uuid: 8f74cefa-0b38-4f94-b424-42c609123b96 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: FFdaGr1bXYtqxGNXCvwu_b8Vh-Aj6R7z7IpZoS-aiho +id: blb_col_4_4_4_2_2 +layout_id: blb_col_4 +label: '4/12 4/12 2/12 2/12' +structure: '4 4 2 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -9 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml new file mode 100644 index 0000000..d8f4937 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml @@ -0,0 +1,16 @@ +uuid: 9486ba3f-4a1f-489e-81d2-189f116f74c8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7hnq4Oj_lmITn--xSnHtG4PqVnFUODHtEl21KUU0HY8 +id: blb_col_4_four_equal_columns +layout_id: blb_col_4 +label: 'Four equal columns' +structure: '3 3 3 3' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -10 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml new file mode 100644 index 0000000..a66c723 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml @@ -0,0 +1,15 @@ +uuid: 5381c2b8-628f-44bc-a473-bad6478ac029 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: pizOrmyMhLS2jVhmeH2557X8PbPX2E7lSfySrInJW3I +id: blb_col_4_full_width +layout_id: blb_col_4 +label: 'Full width' +structure: '12' +default_breakpoints: null +breakpoints: + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml new file mode 100644 index 0000000..5841ae9 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml @@ -0,0 +1,16 @@ +uuid: 07ab5690-7397-457f-8f8d-dfd4a88535c1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: fuy67ckoFODQ672PjM6TvC0rIx_Thhce7NSHll4hXBc +id: blb_col_5_2_2_2_2_4 +layout_id: blb_col_5 +label: '2/12 2/12 2/12 2/12 4/12' +structure: '2 2 2 2 4' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml new file mode 100644 index 0000000..c9e697d --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml @@ -0,0 +1,16 @@ +uuid: 2615fb7f-9215-4da9-b815-aad47c8b2fe9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Ce5KChtUSIOsBP4Q0TOcPeW41HXnyGTZA3ZN7H0gZ3Q +id: blb_col_5_2_2_2_4_2 +layout_id: blb_col_5 +label: '2/12 2/12 2/12 4/12 2/12' +structure: '2 2 2 4 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -7 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml new file mode 100644 index 0000000..9bad857 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml @@ -0,0 +1,16 @@ +uuid: b0a8f262-8c4b-4a41-951d-520a0d5ee39e +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 3j6OlnQ7tvr7qVc6sl5vpMYRyy0a5vPDb0tDd1NaMJw +id: blb_col_5_2_2_4_2_2 +layout_id: blb_col_5 +label: '2/12 2/12 4/12 2/12 2/12' +structure: '2 2 4 2 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -8 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml new file mode 100644 index 0000000..764a123 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml @@ -0,0 +1,16 @@ +uuid: 974ac5d4-a48d-4043-a747-0b9a229eaded +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: wZZ1QDEk3Y0WQ68a1OsdNIECdEcSewYU2XAspxO9rDs +id: blb_col_5_2_4_2_2_2 +layout_id: blb_col_5 +label: '2/12 4/12 2/12 2/12 2/12' +structure: '2 4 2 2 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -9 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml new file mode 100644 index 0000000..398148c --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml @@ -0,0 +1,16 @@ +uuid: a7224540-59c8-4e47-889d-869744708793 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: DxMfuPCEsPPOXPL4f5XsuJ2Zeb-p8YenJ3qD_YCpEPQ +id: blb_col_5_4_2_2_2_2 +layout_id: blb_col_5 +label: '4/12 2/12 2/12 2/12 2/12' +structure: '4 2 2 2 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: -10 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml new file mode 100644 index 0000000..7336fa5 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml @@ -0,0 +1,15 @@ +uuid: 0269cca3-df79-4407-8123-9ffd97141943 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: UHouzgrLdHf2aEbBHZsKVaderrhw5SapX7RJcxjbC-8 +id: blb_col_5_full_width +layout_id: blb_col_5 +label: 'Full width' +structure: '12' +default_breakpoints: null +breakpoints: + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml new file mode 100644 index 0000000..369de44 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml @@ -0,0 +1,15 @@ +uuid: 7b67fc2e-be51-472c-8da0-23813e0b1d3a +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Z0Z6TrqVuI40xwzKBoE5D669MmUV4U_qmamFRWm3C94 +id: blb_col_6_full_width +layout_id: blb_col_6 +label: 'Full width' +structure: '12' +default_breakpoints: null +breakpoints: + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml b/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml new file mode 100644 index 0000000..f9e694a --- /dev/null +++ b/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml @@ -0,0 +1,16 @@ +uuid: 973b9975-6f45-45f8-b708-98f2393fcbf5 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: abTny1lyNxMwOlYpJ0hYhXehciFbPraDFbyyvp0_xQg +id: blb_col_6_six_equal_columns +layout_id: blb_col_6 +label: 'Six equal columns' +structure: '2 2 2 2 2 2' +default_breakpoints: null +breakpoints: + desktop: desktop + tablet: tablet + mobile: mobile +weight: 0 diff --git a/config/sync/bootstrap_layout_builder.settings.yml b/config/sync/bootstrap_layout_builder.settings.yml new file mode 100644 index 0000000..cc1b0b5 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.settings.yml @@ -0,0 +1,12 @@ +_core: + default_config_hash: rsqc85n6sNpWuKFjqvR8toy2E-RCNNAUGEjwNuqcVKA +hide_section_settings: false +live_preview: true +one_col_layout_class: col-12 +background_colors: '' +background_image: + bundle: image + field: field_media_image +background_local_video: + bundle: video + field: field_media_video_file diff --git a/config/sync/bootstrap_layout_builder.styles.yml b/config/sync/bootstrap_layout_builder.styles.yml new file mode 100644 index 0000000..f0bb3a5 --- /dev/null +++ b/config/sync/bootstrap_layout_builder.styles.yml @@ -0,0 +1,24 @@ +_core: + default_config_hash: sBASC0DDHwfveJ_Vb0yfZV7yEDV0rv_1fgvxCL3Y2U0 +plugins: + background: + background_color: + enabled: 1 + background_media: + enabled: 1 + typography: + text_color: + enabled: 0 + text_alignment: + enabled: 0 + spacing: + padding: + enabled: 1 + margin: + enabled: 1 + border: + border: + enabled: 0 + animation: + scroll_effects: + enabled: 0 diff --git a/config/sync/bootstrap_styles.settings.yml b/config/sync/bootstrap_styles.settings.yml new file mode 100644 index 0000000..28729c0 --- /dev/null +++ b/config/sync/bootstrap_styles.settings.yml @@ -0,0 +1,73 @@ +_core: + default_config_hash: K8LBboHcUCXMjNY9bCr4FI2jAdGMchaAcQE_U3QH6dE +layout_builder_theme: dark +background_colors: "bg-primary|Primary\r\nbg-dark|Dark\r\nbg-light|Light" +background_image: + bundle: image + field: field_media_image +background_local_video: + bundle: video + field: field_media_video_file +text_colors: "text-white|White\r\ntext-black|Black" +text_alignment: "text-start|Left\r\ntext-center|Center\r\ntext-end|Right" +padding: "p-1|Padding 1\r\np-2|Padding 2\r\np-3|Padding 3\r\np-4|Padding 4\r\np-5|Padding 5\r\np-6|Padding 6" +padding_left: "ps-1|Padding Left 1\r\nps-2|Padding Left 2\r\nps-3|Padding Left 3\r\nps-4|Padding Left 4\r\nps-5|Padding Left 5\r\nps-6|Padding Left 6" +padding_top: "pt-1|Padding Top 1\r\npt-2|Padding Top 2\r\npt-3|Padding Top 3\r\npt-4|Padding Top 4\r\npt-5|Padding Top 5\r\npt-6|Padding Top 6" +padding_right: "pe-1|Padding Right 1\r\npe-2|Padding Right 2\r\npe-3|Padding Right 3\r\npe-4|Padding Right 4\r\npe-5|Padding Right 5\r\npe-6|Padding Right 6" +padding_bottom: "pb-1|Padding Bottom 1\r\npb-2|Padding Bottom 2\r\npb-3|Padding Bottom 3\r\npb-4|Padding Bottom 4\r\npb-5|Padding Bottom 5\r\npb-6|Padding Bottom 6" +margin: "m-1|Margin 1\r\nm-2|Margin 2\r\nm-3|Margin 3\r\nm-4|Margin 4\r\nm-5|Margin 5\r\nm-6|Margin 6" +margin_left: "ms-1|Margin Left 1\r\nms-2|Margin Left 2\r\nms-3|Margin Left 3\r\nms-4|Margin Left 4\r\nms-5|Margin Left 5\r\nms-6|Margin Left 6" +margin_top: "mt-1|Margin Top 1\r\nmt-2|Margin Top 2\r\nmt-3|Margin Top 3\r\nmt-4|Margin Top 4\r\nmt-5|Margin Top 5\r\nmt-6|Margin Top 6" +margin_right: "me-1|Margin Right 1\r\nme-2|Margin Right 2\r\nme-3|Margin Right 3\r\nme-4|Margin Right 4\r\nme-5|Margin Right 5\r\nme-6|Margin Right 6" +margin_bottom: "mb-1|Margin Bottom 1\r\nmb-2|Margin Bottom 2\r\nmb-3|Margin Bottom 3\r\nmb-4|Margin Bottom 4\r\nmb-5|Margin Bottom 5\r\nmb-6|Margin Bottom 6" +border_style: "bs-border-style-solid|Solid\r\nbs-border-style-dashed|Dashed\r\nbs-border-style-dotted|Dotted" +border_left_style: "bs-border-style-left-solid|Solid\r\nbs-border-style-left-dashed|Dashed\r\nbs-border-style-left-dotted|Dotted" +border_top_style: "bs-border-style-top-solid|Solid\r\nbs-border-style-top-dashed|Dashed\r\nbs-border-style-top-dotted|Dotted" +border_right_style: "bs-border-style-right-solid|Solid\r\nbs-border-style-right-dashed|Dashed\r\nbs-border-style-right-dotted|Dotted" +border_bottom_style: "bs-border-style-bottom-solid|Solid\r\nbs-border-style-bottom-dashed|Dashed\r\nbs-border-style-bottom-dotted|Dotted" +border_width: "bs-border-width-1|Width 1\r\nbs-border-width-2|Width 2\r\nbs-border-width-3|Width 3" +border_left_width: "bs-border-width-left-1|Width 1\r\nbs-border-width-left-2|Width 2\r\nbs-border-width-left-3|Width 3" +border_top_width: "bs-border-width-top-1|Width 1\r\nbs-border-width-top-2|Width 2\r\nbs-border-width-top-3|Width 3" +border_right_width: "bs-border-width-right-1|Width 1\r\nbs-border-width-right-2|Width 2\r\nbs-border-width-right-3|Width 3" +border_bottom_width: "bs-border-width-bottom-1|Width 1\r\nbs-border-width-bottom-2|Width 2\r\nbs-border-width-bottom-3|Width 3" +border_color: "bs-border-color-red|Red\r\nbs-border-color-green|Green\r\nbs-border-color-blue|Blue" +border_left_color: "bs-border-color-left-red|Red\r\nbs-border-color-left-green|Green\r\nbs-border-color-left-blue|Blue" +border_top_color: "bs-border-color-top-red|Red\r\nbs-border-color-top-green|Green\r\nbs-border-color-top-blue|Blue" +border_right_color: "bs-border-color-right-red|Red\r\nbs-border-color-right-green|Green\r\nbs-border-color-right-blue|Blue" +border_bottom_color: "bs-border-color-bottom-red|Red\r\nbs-border-color-bottom-green|Green\r\nbs-border-color-bottom-blue|Blue" +rounded_corners: "bs-border-radius-1|Radius 1\r\nbs-border-radius-2|Radius 2\r\nbs-border-radius-3|Radius 3" +rounded_corner_top_left: "bs-border-radius-top-left-1|Radius 1\r\nbs-border-radius-top-left-2|Radius 2\r\nbs-border-radius-top-left-3|Radius 3" +rounded_corner_top_right: "bs-border-radius-top-right-1|Radius 1\r\nbs-border-radius-top-right-2|Radius 2\r\nbs-border-radius-top-right-3|Radius 3" +rounded_corner_bottom_left: "bs-border-radius-bottom-left-1|Radius 1\r\nbs-border-radius-bottom-left-2|Radius 2\r\nbs-border-radius-bottom-left-3|Radius 3" +rounded_corner_bottom_right: "bs-border-radius-bottom-right-1|Radius 1\r\nbs-border-radius-bottom-right-2|Radius 2\r\nbs-border-radius-bottom-right-3|Radius 3" +box_shadow: "bs-shadow-sm|Small\r\nbs-shadow|Regular\r\nbs-shadow-lg|Large" +scroll_effects: "fade-up|Fade Up\r\nfade-down|Fade Down\r\nfade-left|Fade Left\r\nfade-right|Fade Right\r\nfade-up-right|Fade Up Right\r\nfade-up-left|Fade Up Left\r\nfade-down-right|Fade Down Right\r\nfade-down-left|Fade Down Left\r\nflip-left|Flip Left\r\nflip-right|Flip Right\r\nflip-up|Flip Up\r\nflip-down|Flip Down\r\nzoom-in|Zoom In\r\nzoom-in-up|Zoom In Up\r\nzoom-in-down|Zoom In Down\r\nzoom-in-left|Zoom In Left\r\nzoom-in-right|Zoom In Right\r\nzoom-out|Zoom Out\r\nzoom-out-up|Zoom Out Up\r\nzoom-out-down|Zoom Out Down\r\nzoom-out-right|Zoom Out Right\r\nzoom-out-left|Zoom Out Left" +attribute_type: data +data_key: aos +scroll_effects_attr_type: true +scroll_effects_data_key: data-aos +scroll_effects_library_type: external +text_colors_desktop: "bs-text-xl-white|White\r\nbs-text-xl-black|Black" +text_colors_laptop: "bs-text-lg-white|White\r\nbs-text-lg-black|Black" +text_colors_tablet: "bs-text-md-white|White\r\nbs-text-md-black|Black" +text_colors_mobile: "bs-text-sm-white|White\r\nbs-text-sm-black|Black" +padding_desktop: "bs-p-xl-1|Padding 1\r\nbs-p-xl-2|Padding 2\r\nbs-p-xl-3|Padding 3\r\nbs-p-xl-4|Padding 4\r\nbs-p-xl-5|Padding 5" +padding_left_desktop: "bs-pl-xl-1|Padding Left 1\r\nbs-pl-xl-2|Padding Left 2\r\nbs-pl-xl-3|Padding Left 3\r\nbs-pl-xl-4|Padding Left 4\r\nbs-pl-xl-5|Padding Left 5" +padding_top_desktop: "bs-pt-xl-1|Padding Top 1\r\nbs-pt-xl-2|Padding Top 2\r\nbs-pt-xl-3|Padding Top 3\r\nbs-pt-xl-4|Padding Top 4\r\nbs-pt-xl-5|Padding Top 5" +padding_right_desktop: "bs-pr-xl-1|Padding Right 1\r\nbs-pr-xl-2|Padding Right 2\r\nbs-pr-xl-3|Padding Right 3\r\nbs-pr-xl-4|Padding Right 4\r\nbs-pr-xl-5|Padding Right 5" +padding_bottom_desktop: "bs-pb-xl-1|Padding Bottom 1\r\nbs-pb-xl-2|Padding Bottom 2\r\nbs-pb-xl-3|Padding Bottom 3\r\nbs-pb-xl-4|Padding Bottom 4\r\nbs-pb-xl-5|Padding Bottom 5" +padding_laptop: "bs-p-lg-1|Padding 1\r\nbs-p-lg-2|Padding 2\r\nbs-p-lg-3|Padding 3\r\nbs-p-lg-4|Padding 4\r\nbs-p-lg-5|Padding 5" +padding_left_laptop: "bs-pl-lg-1|Padding Left 1\r\nbs-pl-lg-2|Padding Left 2\r\nbs-pl-lg-3|Padding Left 3\r\nbs-pl-lg-4|Padding Left 4\r\nbs-pl-lg-5|Padding Left 5" +padding_top_laptop: "bs-pt-lg-1|Padding Top 1\r\nbs-pt-lg-2|Padding Top 2\r\nbs-pt-lg-3|Padding Top 3\r\nbs-pt-lg-4|Padding Top 4\r\nbs-pt-lg-5|Padding Top 5" +padding_right_laptop: "bs-pr-lg-1|Padding Right 1\r\nbs-pr-lg-2|Padding Right 2\r\nbs-pr-lg-3|Padding Right 3\r\nbs-pr-lg-4|Padding Right 4\r\nbs-pr-lg-5|Padding Right 5" +padding_bottom_laptop: "bs-pb-lg-1|Padding Bottom 1\r\nbs-pb-lg-2|Padding Bottom 2\r\nbs-pb-lg-3|Padding Bottom 3\r\nbs-pb-lg-4|Padding Bottom 4\r\nbs-pb-lg-5|Padding Bottom 5" +padding_tablet: "bs-p-md-1|Padding 1\r\nbs-p-md-2|Padding 2\r\nbs-p-md-3|Padding 3\r\nbs-p-md-4|Padding 4\r\nbs-p-md-5|Padding 5" +padding_left_tablet: "bs-pl-md-1|Padding Left 1\r\nbs-pl-md-2|Padding Left 2\r\nbs-pl-md-3|Padding Left 3\r\nbs-pl-md-4|Padding Left 4\r\nbs-pl-md-5|Padding Left 5" +padding_top_tablet: "bs-pt-md-1|Padding Top 1\r\nbs-pt-md-2|Padding Top 2\r\nbs-pt-md-3|Padding Top 3\r\nbs-pt-md-4|Padding Top 4\r\nbs-pt-md-5|Padding Top 5" +padding_right_tablet: "bs-pr-md-1|Padding Right 1\r\nbs-pr-md-2|Padding Right 2\r\nbs-pr-md-3|Padding Right 3\r\nbs-pr-md-4|Padding Right 4\r\nbs-pr-md-5|Padding Right 5" +padding_bottom_tablet: "bs-pb-md-1|Padding Bottom 1\r\nbs-pb-md-2|Padding Bottom 2\r\nbs-pb-md-3|Padding Bottom 3\r\nbs-pb-md-4|Padding Bottom 4\r\nbs-pb-md-5|Padding Bottom 5" +padding_mobile: "bs-p-sm-1|Padding 1\r\nbs-p-sm-2|Padding 2\r\nbs-p-sm-3|Padding 3\r\nbs-p-sm-4|Padding 4\r\nbs-p-sm-5|Padding 5" +padding_left_mobile: "bs-pl-sm-1|Padding Left 1\r\nbs-pl-sm-2|Padding Left 2\r\nbs-pl-sm-3|Padding Left 3\r\nbs-pl-sm-4|Padding Left 4\r\nbs-pl-sm-5|Padding Left 5" +padding_top_mobile: "bs-pt-sm-1|Padding Top 1\r\nbs-pt-sm-2|Padding Top 2\r\nbs-pt-sm-3|Padding Top 3\r\nbs-pt-sm-4|Padding Top 4\r\nbs-pt-sm-5|Padding Top 5" +padding_right_mobile: "bs-pr-sm-1|Padding Right 1\r\nbs-pr-sm-2|Padding Right 2\r\nbs-pr-sm-3|Padding Right 3\r\nbs-pr-sm-4|Padding Right 4\r\nbs-pr-sm-5|Padding Right 5" +padding_bottom_mobile: "bs-pb-sm-1|Padding Bottom 1\r\nbs-pb-sm-2|Padding Bottom 2\r\nbs-pb-sm-3|Padding Bottom 3\r\nbs-pb-sm-4|Padding Bottom 4\r\nbs-pb-sm-5|Padding Bottom 5" diff --git a/config/sync/centarro_claro.settings.yml b/config/sync/centarro_claro.settings.yml new file mode 100644 index 0000000..0becd6d --- /dev/null +++ b/config/sync/centarro_claro.settings.yml @@ -0,0 +1,12 @@ +_core: + default_config_hash: '-fBMq6ZFuv7K579bW6tiQkSAJ0KXjafKPzGNcrbuPxY' +favicon: + use_default: true +features: + comment_user_picture: true + comment_user_verification: true + favicon: true + node_user_picture: true +logo: + use_default: true +theme_size: compact diff --git a/config/sync/claro.settings.yml b/config/sync/claro.settings.yml new file mode 100644 index 0000000..6bba58b --- /dev/null +++ b/config/sync/claro.settings.yml @@ -0,0 +1,3 @@ +third_party_settings: + shortcut: + module_link: true diff --git a/config/sync/comment.settings.yml b/config/sync/comment.settings.yml new file mode 100644 index 0000000..5b7ad98 --- /dev/null +++ b/config/sync/comment.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc +log_ip_addresses: false diff --git a/config/sync/comment.type.comment.yml b/config/sync/comment.type.comment.yml new file mode 100644 index 0000000..e6c7726 --- /dev/null +++ b/config/sync/comment.type.comment.yml @@ -0,0 +1,10 @@ +uuid: 2527257f-df52-4377-a65a-3a5b5a7139e7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA +id: comment +label: 'Default comments' +target_entity_type_id: node +description: 'Allows commenting on content' diff --git a/config/sync/commerce_checkout.commerce_checkout_flow.default.yml b/config/sync/commerce_checkout.commerce_checkout_flow.default.yml new file mode 100644 index 0000000..99d4a52 --- /dev/null +++ b/config/sync/commerce_checkout.commerce_checkout_flow.default.yml @@ -0,0 +1,43 @@ +uuid: a3b38fc8-7f3b-472a-bbb1-481b16d2b4ee +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 1BxQSpt9FMh77dg9LMMrriQ4JRWHwnBKzywwOwSpQ04 +label: Default +id: default +plugin: multistep_default +configuration: + display_checkout_progress: true + display_checkout_progress_breadcrumb_links: false + guest_order_assign: false + guest_new_account: false + guest_new_account_notify: false + panes: + login: + step: login + weight: 0 + allow_guest_checkout: false + allow_registration: true + contact_information: + step: order_information + weight: 1 + double_entry: true + billing_information: + step: order_information + weight: 2 + review: + step: review + weight: 3 + completion_message: + step: complete + weight: 4 + message: + value: "Your order number is [commerce_order:order_number].\r\nYou can view your order on your account page when logged in." + format: plain_text + order_summary: + step: _sidebar + weight: 5 + view: null + completion_register: + step: _disabled diff --git a/config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml b/config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml new file mode 100644 index 0000000..50965da --- /dev/null +++ b/config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml @@ -0,0 +1,43 @@ +uuid: cee03d7a-4965-4d5a-9c18-1447aa876211 +langcode: en +status: true +dependencies: + module: + - commerce_shipping +_core: + default_config_hash: KDnx5MjFtp3-Rb0dGzCCzQEabHgvxrzxpkMrbOKsg_4 +label: Shipping +id: shipping +plugin: multistep_default +configuration: + display_checkout_progress: true + display_checkout_progress_breadcrumb_links: false + guest_order_assign: false + guest_new_account: false + guest_new_account_notify: false + panes: + login: + step: login + weight: 0 + allow_guest_checkout: false + allow_registration: true + contact_information: + step: order_information + weight: 1 + double_entry: false + shipping_information: + step: order_information + weight: 2 + require_shipping_profile: true + review: + step: review + weight: 3 + completion_message: + step: complete + weight: 4 + order_summary: + step: _sidebar + weight: 5 + view: commerce_checkout_order_summary + completion_register: + step: _disabled diff --git a/config/sync/commerce_file.settings.yml b/config/sync/commerce_file.settings.yml new file mode 100644 index 0000000..d0e846a --- /dev/null +++ b/config/sync/commerce_file.settings.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: RmTndzFXiTHagVw88OzWiiX0jt2qcQ-Oz0qLiV3vk9U +enable_download_limit: false +download_limit: 100 diff --git a/config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml b/config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml new file mode 100644 index 0000000..c17b4f8 --- /dev/null +++ b/config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml @@ -0,0 +1,18 @@ +uuid: 16a5efb3-4758-44d0-8de0-733033b0ad49 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_order +_core: + default_config_hash: zyTJjisGAiNCmSVzU73UWGY2joBWA3QXvlcjDDIuWcs +id: order_default +label: Default +targetEntityType: commerce_order +plugin: infinite +configuration: + pattern: '[pattern:number]' + initial_number: 1 + padding: 0 + per_store_sequence: true diff --git a/config/sync/commerce_order.commerce_order_item_type.default.yml b/config/sync/commerce_order.commerce_order_item_type.default.yml new file mode 100644 index 0000000..5e9cef4 --- /dev/null +++ b/config/sync/commerce_order.commerce_order_item_type.default.yml @@ -0,0 +1,15 @@ +uuid: b089730b-f6d0-4d03-ae1e-d5428701c4be +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_product +_core: + default_config_hash: 6n6q97CDOCqHGs4Dun3BqVJE6e1o6TA-69qCwoUU-SY +label: Default +id: default +purchasableEntityType: commerce_product_variation +orderType: default +traits: { } +locked: false diff --git a/config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml b/config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml new file mode 100644 index 0000000..c10543b --- /dev/null +++ b/config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml @@ -0,0 +1,18 @@ +uuid: ecebdf74-d969-466f-9fb3-d056443d59d3 +langcode: en +status: true +dependencies: + module: + - commerce_tax +third_party_settings: + commerce_tax: + taxable_type: digital_goods +_core: + default_config_hash: du3Rv5HkwICiU9KFPc5V-oqlOb2LVC4-vyprolFqiW0 +label: 'Digital License (Product variation)' +id: digital_license_product +purchasableEntityType: commerce_product_variation +orderType: default +traits: + - commerce_license_order_item_type +locked: false diff --git a/config/sync/commerce_order.commerce_order_item_type.physical_product.yml b/config/sync/commerce_order.commerce_order_item_type.physical_product.yml new file mode 100644 index 0000000..a2bb670 --- /dev/null +++ b/config/sync/commerce_order.commerce_order_item_type.physical_product.yml @@ -0,0 +1,17 @@ +uuid: b5789259-9d47-427c-af2f-cf5257ddfebb +langcode: en +status: true +dependencies: + module: + - commerce_tax +third_party_settings: + commerce_tax: + taxable_type: physical_goods +_core: + default_config_hash: nTwd_oR0LuhGRHx-ID5s2dyXOp08L9rGTRFW0YCnHLE +label: 'Physical (Product variation)' +id: physical_product +purchasableEntityType: commerce_product_variation +orderType: default +traits: { } +locked: false diff --git a/config/sync/commerce_order.commerce_order_type.default.yml b/config/sync/commerce_order.commerce_order_type.default.yml new file mode 100644 index 0000000..2445904 --- /dev/null +++ b/config/sync/commerce_order.commerce_order_type.default.yml @@ -0,0 +1,22 @@ +uuid: 7447dea7-8127-4660-98be-9d2db4094b99 +langcode: en +status: true +dependencies: { } +third_party_settings: + commerce_checkout: + checkout_flow: shipping + commerce_shipping: + shipment_type: default +_core: + default_config_hash: kYapI397yx2zFJGyDEs85Hyqgfc9jhmzxqPZMl2Fqhk +id: default +label: Default +traits: { } +locked: false +workflow: order_default +numberPattern: order_default +refresh_mode: customer +refresh_frequency: 300 +sendReceipt: true +receiptBcc: '' +receiptSubject: '' diff --git a/config/sync/commerce_order.settings.yml b/config/sync/commerce_order.settings.yml new file mode 100644 index 0000000..e6ab6eb --- /dev/null +++ b/config/sync/commerce_order.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: uddeGM8OE5Bj66yl1cAjaw6LraU8kjGX3VDfF3EvppQ +log_version_mismatch: true diff --git a/config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml b/config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml new file mode 100644 index 0000000..131e5d6 --- /dev/null +++ b/config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml @@ -0,0 +1,21 @@ +uuid: 28d7d5d8-d411-4413-971d-c96c6cee7593 +langcode: en +status: true +dependencies: + module: + - commerce_payment_example +_core: + default_config_hash: o0lxb2YTWTYPDDKiqEPZBMd65OUbQyv54Py0YylDm54 +id: example_credit_card +label: 'Example credit card' +weight: null +plugin: example_onsite +configuration: + api_key: '1234567890' + display_label: Example + mode: test + payment_method_types: + - credit_card + collect_billing_information: true +conditions: { } +conditionOperator: AND diff --git a/config/sync/commerce_price.commerce_currency.EUR.yml b/config/sync/commerce_price.commerce_currency.EUR.yml new file mode 100644 index 0000000..04c38f9 --- /dev/null +++ b/config/sync/commerce_price.commerce_currency.EUR.yml @@ -0,0 +1,11 @@ +uuid: 3da4f109-f056-4762-9f55-de1db3e7608a +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: XxFUKntgvrTvg8AwkVU42Ni3nulYTCXSnAjypbBUPnw +currencyCode: EUR +name: Euro +numericCode: '978' +symbol: € +fractionDigits: 2 diff --git a/config/sync/commerce_price.commerce_currency.GBP.yml b/config/sync/commerce_price.commerce_currency.GBP.yml new file mode 100644 index 0000000..437a0b4 --- /dev/null +++ b/config/sync/commerce_price.commerce_currency.GBP.yml @@ -0,0 +1,11 @@ +uuid: 7b634cab-5403-4b69-8176-1e2dfe0c5283 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: SMYu3NtJxyD2XjkPZ2dgzPZgmtD-5Gw-ClKNvaZxbv8 +currencyCode: GBP +name: 'British Pound' +numericCode: '826' +symbol: £ +fractionDigits: 2 diff --git a/config/sync/commerce_price.commerce_currency.JPY.yml b/config/sync/commerce_price.commerce_currency.JPY.yml new file mode 100644 index 0000000..9330737 --- /dev/null +++ b/config/sync/commerce_price.commerce_currency.JPY.yml @@ -0,0 +1,11 @@ +uuid: 7a82ed9b-dd66-4d52-ba32-f7bf596647fc +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hwloYEaXA4AmT7mRrKpZM66o5HejYLZq_tKNzgGxsRk +currencyCode: JPY +name: 'Japanese Yen' +numericCode: '392' +symbol: ¥ +fractionDigits: 0 diff --git a/config/sync/commerce_price.commerce_currency.USD.yml b/config/sync/commerce_price.commerce_currency.USD.yml new file mode 100644 index 0000000..570e100 --- /dev/null +++ b/config/sync/commerce_price.commerce_currency.USD.yml @@ -0,0 +1,9 @@ +uuid: 17f448c4-8e5e-4c63-a9d2-e4bc7abe7191 +langcode: en +status: true +dependencies: { } +currencyCode: USD +name: 'US Dollar' +numericCode: '840' +symbol: $ +fractionDigits: 2 diff --git a/config/sync/commerce_product.commerce_product_type.default.yml b/config/sync/commerce_product.commerce_product_type.default.yml new file mode 100644 index 0000000..9dd8e40 --- /dev/null +++ b/config/sync/commerce_product.commerce_product_type.default.yml @@ -0,0 +1,16 @@ +uuid: 0a96014f-000c-4dc7-ac5b-c4b460aca5cc +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hwJoqnxqBS0fPM3s6FccZ2bWaq9LneRYLzFk-wlJWjs +id: default +label: Default +description: '' +variationType: default +variationTypes: + - default +multipleVariations: true +injectVariationFields: true +traits: { } +locked: false diff --git a/config/sync/commerce_product.commerce_product_type.media.yml b/config/sync/commerce_product.commerce_product_type.media.yml new file mode 100644 index 0000000..f2a90c0 --- /dev/null +++ b/config/sync/commerce_product.commerce_product_type.media.yml @@ -0,0 +1,17 @@ +uuid: 6a2bb374-f0da-4c93-9791-d4e5bbf7eb7c +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 4gHaqI02CxQt5YJ-wOpHdEcdPsf-bOLmwQ4H-hyFYpQ +id: media +label: Media +description: '' +variationType: media_license_download +variationTypes: + - media_license_download + - media_physical +multipleVariations: true +injectVariationFields: true +traits: { } +locked: false diff --git a/config/sync/commerce_product.commerce_product_type.physical.yml b/config/sync/commerce_product.commerce_product_type.physical.yml new file mode 100644 index 0000000..7394214 --- /dev/null +++ b/config/sync/commerce_product.commerce_product_type.physical.yml @@ -0,0 +1,15 @@ +uuid: ce4d31a5-1320-42ab-9f74-648150e181f7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 0xbDIgBpIMF9UAcKw6hqyiyTYw4B1jnK3aH7RBnodEQ +id: physical +label: Physical +description: '' +variationType: physical +variationTypes: { } +multipleVariations: true +injectVariationFields: true +traits: { } +locked: false diff --git a/config/sync/commerce_product.commerce_product_variation_type.default.yml b/config/sync/commerce_product.commerce_product_variation_type.default.yml new file mode 100644 index 0000000..5109070 --- /dev/null +++ b/config/sync/commerce_product.commerce_product_variation_type.default.yml @@ -0,0 +1,12 @@ +uuid: 5b96697a-0fee-4735-907e-855cfa201b5b +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 3vA4FKQ1Qu8B1R8UdGPnmMfJrYO6Y6uMqeNgDgXxods +id: default +label: Default +orderItemType: default +generateTitle: true +traits: { } +locked: false diff --git a/config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml b/config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml new file mode 100644 index 0000000..5fa5b9c --- /dev/null +++ b/config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml @@ -0,0 +1,21 @@ +uuid: 804a0848-cb7b-4599-93cc-2cfb2e1538ff +langcode: en +status: true +dependencies: + module: + - commerce_license +third_party_settings: + commerce_license: + license_types: + commerce_file: commerce_file + activate_on_place: true +_core: + default_config_hash: EhzdSDgNl4HklKLO_oZqKAAR450TFlp7qTUhY5WQb9s +id: media_license_download +label: 'Media License Download' +orderItemType: digital_license_product +generateTitle: false +traits: + - commerce_file + - commerce_license +locked: false diff --git a/config/sync/commerce_product.commerce_product_variation_type.media_physical.yml b/config/sync/commerce_product.commerce_product_variation_type.media_physical.yml new file mode 100644 index 0000000..a423f74 --- /dev/null +++ b/config/sync/commerce_product.commerce_product_variation_type.media_physical.yml @@ -0,0 +1,13 @@ +uuid: c12f10e5-c54d-4c97-ab34-98c16215d0c8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: n6da1JnwtXrobtSuFboLPi7tdtQ236RhEgOj6_O6nHs +id: media_physical +label: 'Media Physical' +orderItemType: physical_product +generateTitle: false +traits: + - purchasable_entity_shippable +locked: false diff --git a/config/sync/commerce_product.commerce_product_variation_type.physical.yml b/config/sync/commerce_product.commerce_product_variation_type.physical.yml new file mode 100644 index 0000000..bd5e561 --- /dev/null +++ b/config/sync/commerce_product.commerce_product_variation_type.physical.yml @@ -0,0 +1,13 @@ +uuid: f38c8f44-d986-4af7-80c9-a61d5e6adf54 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: bdWN0bTEbHmonSaxYn47TLe1snVQ1cUirlDXH3Yb-jw +id: physical +label: Physical +orderItemType: physical_product +generateTitle: true +traits: + - purchasable_entity_shippable +locked: false diff --git a/config/sync/commerce_shipping.commerce_shipment_type.default.yml b/config/sync/commerce_shipping.commerce_shipment_type.default.yml new file mode 100644 index 0000000..9994e47 --- /dev/null +++ b/config/sync/commerce_shipping.commerce_shipment_type.default.yml @@ -0,0 +1,12 @@ +uuid: 1a6adbb5-fd32-4c6c-bbe7-8bfed4fc47ae +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hTtXtpqIBr-_HZSAKxolH_QAufMqGW9c-o19Za-G7XI +id: default +label: Default +profileType: customer +traits: { } +sendConfirmation: null +confirmationBcc: null diff --git a/config/sync/commerce_store.commerce_store_type.online.yml b/config/sync/commerce_store.commerce_store_type.online.yml new file mode 100644 index 0000000..583ff1f --- /dev/null +++ b/config/sync/commerce_store.commerce_store_type.online.yml @@ -0,0 +1,11 @@ +uuid: ba1947ad-10c1-461b-9633-a51e8b90e4a6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: FGYrs0ZrjxSzRQMODyYqquV1UW5MN7S5wUG0Dp_OxWU +id: online +label: Online +description: '' +traits: { } +locked: false diff --git a/config/sync/config_split.config_split.ddev.yml b/config/sync/config_split.config_split.ddev.yml new file mode 100644 index 0000000..408a51c --- /dev/null +++ b/config/sync/config_split.config_split.ddev.yml @@ -0,0 +1,19 @@ +uuid: 0f9473a1-5876-4dd2-b1dd-88fa68e98b30 +langcode: en +status: false +dependencies: { } +_core: + default_config_hash: 36yVCSb1X_UCyUnPlbOI18x-wpsiym6j4azg5R5ZsT8 +id: ddev +label: DDEV +description: 'Configuration for DDEV environments.' +weight: 0 +stackable: false +storage: folder +folder: ../config/splits/ddev +module: { } +theme: { } +complete_list: { } +partial_list: + - symfony_mailer.settings +no_patching: false diff --git a/config/sync/core.base_field_override.node.cklb_landing_page.promote.yml b/config/sync/core.base_field_override.node.cklb_landing_page.promote.yml new file mode 100644 index 0000000..52fd16f --- /dev/null +++ b/config/sync/core.base_field_override.node.cklb_landing_page.promote.yml @@ -0,0 +1,24 @@ +uuid: 17b18c11-6fb4-411d-90d8-8870afc040a4 +langcode: en +status: true +dependencies: + config: + - node.type.cklb_landing_page +_core: + default_config_hash: 6EocT_vlGJAAmXC0eJwk-KOK1ZJTfKTuLKqc-jW5Y1Y +id: node.cklb_landing_page.promote +field_name: promote +entity_type: node +bundle: cklb_landing_page +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/config/sync/core.base_field_override.node.page.promote.yml b/config/sync/core.base_field_override.node.page.promote.yml new file mode 100644 index 0000000..23fbc21 --- /dev/null +++ b/config/sync/core.base_field_override.node.page.promote.yml @@ -0,0 +1,24 @@ +uuid: 4f6ef658-a9cb-40f2-b8ab-0d4b6c5ada13 +langcode: en +status: true +dependencies: + config: + - node.type.page +_core: + default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ +id: node.page.promote +field_name: promote +entity_type: node +bundle: page +label: 'Promoted to front page' +description: '' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/config/sync/core.date_format.fallback.yml b/config/sync/core.date_format.fallback.yml new file mode 100644 index 0000000..4c42f39 --- /dev/null +++ b/config/sync/core.date_format.fallback.yml @@ -0,0 +1,10 @@ +uuid: ae112f47-d430-41fa-a5b1-c8e25420d538 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE +id: fallback +label: 'Fallback date format' +locked: true +pattern: 'D, m/d/Y - H:i' diff --git a/config/sync/core.date_format.html_date.yml b/config/sync/core.date_format.html_date.yml new file mode 100644 index 0000000..ab586ea --- /dev/null +++ b/config/sync/core.date_format.html_date.yml @@ -0,0 +1,10 @@ +uuid: e62003de-16e6-48e6-9191-2711ccf69a2d +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk +id: html_date +label: 'HTML Date' +locked: true +pattern: Y-m-d diff --git a/config/sync/core.date_format.html_datetime.yml b/config/sync/core.date_format.html_datetime.yml new file mode 100644 index 0000000..2caae09 --- /dev/null +++ b/config/sync/core.date_format.html_datetime.yml @@ -0,0 +1,10 @@ +uuid: 4fc3ecc0-88e7-4760-85b4-ebcdc9ab87d6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE +id: html_datetime +label: 'HTML Datetime' +locked: true +pattern: 'Y-m-d\TH:i:sO' diff --git a/config/sync/core.date_format.html_month.yml b/config/sync/core.date_format.html_month.yml new file mode 100644 index 0000000..f4c5826 --- /dev/null +++ b/config/sync/core.date_format.html_month.yml @@ -0,0 +1,10 @@ +uuid: a9442701-9b82-45af-9e93-056cb90674e1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM +id: html_month +label: 'HTML Month' +locked: true +pattern: Y-m diff --git a/config/sync/core.date_format.html_time.yml b/config/sync/core.date_format.html_time.yml new file mode 100644 index 0000000..f62281b --- /dev/null +++ b/config/sync/core.date_format.html_time.yml @@ -0,0 +1,10 @@ +uuid: 5ec1376b-3e5f-4ae0-8d08-e9c55c805166 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE +id: html_time +label: 'HTML Time' +locked: true +pattern: 'H:i:s' diff --git a/config/sync/core.date_format.html_week.yml b/config/sync/core.date_format.html_week.yml new file mode 100644 index 0000000..724ee75 --- /dev/null +++ b/config/sync/core.date_format.html_week.yml @@ -0,0 +1,10 @@ +uuid: 9650c1c7-9a86-45e9-a9ff-80f4d5ff793e +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY +id: html_week +label: 'HTML Week' +locked: true +pattern: Y-\WW diff --git a/config/sync/core.date_format.html_year.yml b/config/sync/core.date_format.html_year.yml new file mode 100644 index 0000000..5267dd9 --- /dev/null +++ b/config/sync/core.date_format.html_year.yml @@ -0,0 +1,10 @@ +uuid: 265a1e96-1b9d-47c8-84e1-c9f4875b04ce +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk +id: html_year +label: 'HTML Year' +locked: true +pattern: 'Y' diff --git a/config/sync/core.date_format.html_yearless_date.yml b/config/sync/core.date_format.html_yearless_date.yml new file mode 100644 index 0000000..35727a1 --- /dev/null +++ b/config/sync/core.date_format.html_yearless_date.yml @@ -0,0 +1,10 @@ +uuid: c66e49a5-c010-45c3-8b6c-d3d0dad7748d +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc +id: html_yearless_date +label: 'HTML Yearless date' +locked: true +pattern: m-d diff --git a/config/sync/core.date_format.long.yml b/config/sync/core.date_format.long.yml new file mode 100644 index 0000000..1a1d6bc --- /dev/null +++ b/config/sync/core.date_format.long.yml @@ -0,0 +1,10 @@ +uuid: 7e35bb83-3b98-40d8-82ad-9f7f7029bd62 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo +id: long +label: 'Default long date' +locked: false +pattern: 'l, F j, Y - H:i' diff --git a/config/sync/core.date_format.medium.yml b/config/sync/core.date_format.medium.yml new file mode 100644 index 0000000..16cd8c6 --- /dev/null +++ b/config/sync/core.date_format.medium.yml @@ -0,0 +1,10 @@ +uuid: d7c39b72-ab14-494a-8549-8491ffed3977 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE +id: medium +label: 'Default medium date' +locked: false +pattern: 'D, m/d/Y - H:i' diff --git a/config/sync/core.date_format.short.yml b/config/sync/core.date_format.short.yml new file mode 100644 index 0000000..ab94dc8 --- /dev/null +++ b/config/sync/core.date_format.short.yml @@ -0,0 +1,10 @@ +uuid: 483e756c-1473-41c4-97ad-ba1e336295b9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA +id: short +label: 'Default short date' +locked: false +pattern: 'm/d/Y - H:i' diff --git a/config/sync/core.entity_form_display.block_content.basic.default.yml b/config/sync/core.entity_form_display.block_content.basic.default.yml new file mode 100644 index 0000000..5ba7f58 --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.basic.default.yml @@ -0,0 +1,34 @@ +uuid: b4b425b1-4135-468e-a88c-0dc3541d1037 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.field.block_content.basic.body + module: + - text +_core: + default_config_hash: kv6gwb6PJ8DcMSj5kgsd52qCIHl1xkxBDL5_AMm-g8k +id: block_content.basic.default +targetEntityType: block_content +bundle: basic +mode: default +content: + body: + type: text_textarea_with_summary + weight: -4 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + info: + type: string_textfield + weight: -5 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_form_display.block_content.cklb_button.default.yml b/config/sync/core.entity_form_display.block_content.cklb_button.default.yml new file mode 100644 index 0000000..53acdd4 --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.cklb_button.default.yml @@ -0,0 +1,26 @@ +uuid: 41dc48eb-9fa6-440a-b249-16376d06429a +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_button + - field.field.block_content.cklb_button.cklb_cta + module: + - link +_core: + default_config_hash: sY-c0UI3YVShbmaWPYtc6lMy14-4fv2JiRjdOL9TKRQ +id: block_content.cklb_button.default +targetEntityType: block_content +bundle: cklb_button +mode: default +content: + cklb_cta: + type: link_default + weight: 0 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } +hidden: + info: true diff --git a/config/sync/core.entity_form_display.block_content.cklb_hero.default.yml b/config/sync/core.entity_form_display.block_content.cklb_hero.default.yml new file mode 100644 index 0000000..7da8bda --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.cklb_hero.default.yml @@ -0,0 +1,61 @@ +uuid: cc3fe990-9a93-4a4d-b9e0-f1656bfd3af6 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_hero + - field.field.block_content.cklb_hero.cklb_cta + - field.field.block_content.cklb_hero.cklb_subtitle + - field.field.block_content.cklb_hero.cklb_text + - field.field.block_content.cklb_hero.cklb_title + module: + - link + - text +_core: + default_config_hash: F7jxCOkErtC3Dh6acuiVf1esnmrzVfusxu-KdCfUlaI +id: block_content.cklb_hero.default +targetEntityType: block_content +bundle: cklb_hero +mode: default +content: + cklb_cta: + type: link_default + weight: 4 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + cklb_subtitle: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + cklb_text: + type: text_textarea + weight: 3 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + cklb_title: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + info: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/config/sync/core.entity_form_display.block_content.cklb_image.default.yml b/config/sync/core.entity_form_display.block_content.cklb_image.default.yml new file mode 100644 index 0000000..2cbabbb --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.cklb_image.default.yml @@ -0,0 +1,32 @@ +uuid: 68d49ed3-1617-44f1-a4e0-299b9ac4e565 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_image + - field.field.block_content.cklb_image.cklb_image + module: + - media_library +_core: + default_config_hash: PqUlqkM5knGgKsAx9K5h8KuDItJklkEaKXRknRBLGQI +id: block_content.cklb_image.default +targetEntityType: block_content +bundle: cklb_image +mode: default +content: + cklb_image: + type: media_library_widget + weight: 26 + region: content + settings: + media_types: { } + third_party_settings: { } + info: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/config/sync/core.entity_form_display.block_content.cklb_products.default.yml b/config/sync/core.entity_form_display.block_content.cklb_products.default.yml new file mode 100644 index 0000000..ad699c1 --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.cklb_products.default.yml @@ -0,0 +1,42 @@ +uuid: e9443e19-f31c-492b-be94-cf64bbdb520b +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_products + - field.field.block_content.cklb_products.cklb_products + - field.field.block_content.cklb_products.cklb_title +_core: + default_config_hash: YWJMx4GipmygoF6D2LY0kVTSmXFQ2TZOAlpuKaZ2z1g +id: block_content.cklb_products.default +targetEntityType: block_content +bundle: cklb_products +mode: default +content: + cklb_products: + type: entity_reference_autocomplete + weight: 2 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + cklb_title: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + info: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/config/sync/core.entity_form_display.block_content.cklb_text.default.yml b/config/sync/core.entity_form_display.block_content.cklb_text.default.yml new file mode 100644 index 0000000..de7e3b3 --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.cklb_text.default.yml @@ -0,0 +1,33 @@ +uuid: 5032d3d9-4ab8-4c72-8b45-d1750dfedac0 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_text + - field.field.block_content.cklb_text.cklb_text + module: + - text +_core: + default_config_hash: Q8j-Ngi6tX0GhPP1FZjJ_DYsEEEI2aiv7qSZ6JRo59Y +id: block_content.cklb_text.default +targetEntityType: block_content +bundle: cklb_text +mode: default +content: + cklb_text: + type: text_textarea + weight: 26 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + info: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/config/sync/core.entity_form_display.block_content.cklb_title.default.yml b/config/sync/core.entity_form_display.block_content.cklb_title.default.yml new file mode 100644 index 0000000..64b277f --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.cklb_title.default.yml @@ -0,0 +1,31 @@ +uuid: 2ba112cd-e2a0-47e6-b245-dbe2b82dd723 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_title + - field.field.block_content.cklb_title.cklb_title +_core: + default_config_hash: DYvpwG7gNI6YPsvDcZrNUhQoyxg-XRybSUTF7_ZuAJQ +id: block_content.cklb_title.default +targetEntityType: block_content +bundle: cklb_title +mode: default +content: + cklb_title: + type: string_textfield + weight: 26 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + info: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/config/sync/core.entity_form_display.comment.comment.default.yml b/config/sync/core.entity_form_display.comment.comment.default.yml new file mode 100644 index 0000000..7d3c827 --- /dev/null +++ b/config/sync/core.entity_form_display.comment.comment.default.yml @@ -0,0 +1,36 @@ +uuid: 77a488ef-62bc-41f5-ae63-b408ca4a0954 +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.field.comment.comment.comment_body + module: + - text +_core: + default_config_hash: ooVjelXSXbiQtp-hYb7LS44vR5UO-Kqu4vf484ggR8w +id: comment.comment.default +targetEntityType: comment +bundle: comment +mode: default +content: + author: + weight: -2 + region: content + comment_body: + type: text_textarea + weight: 11 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + region: content + subject: + type: string_textfield + weight: 10 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_form_display.commerce_order.default.default.yml b/config/sync/core.entity_form_display.commerce_order.default.default.yml new file mode 100644 index 0000000..aa81066 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order.default.default.yml @@ -0,0 +1,69 @@ +uuid: d62b09a7-73f6-48ed-96d5-7c6ed5dee9eb +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - field.field.commerce_order.default.shipments + module: + - commerce_order + - inline_entity_form +_core: + default_config_hash: OxAaChovIat28naja81fSKWGZHYQHv6xrrmhnK-bXUI +id: commerce_order.default.default +targetEntityType: commerce_order +bundle: default +mode: default +content: + adjustments: + type: commerce_adjustment_default + weight: 2 + region: content + settings: { } + third_party_settings: { } + billing_profile: + type: commerce_billing_profile + weight: 0 + region: content + settings: { } + third_party_settings: { } + cart: + type: boolean_checkbox + weight: 20 + region: content + settings: + display_label: true + third_party_settings: { } + coupons: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + order_items: + type: inline_entity_form_complex + weight: 1 + region: content + settings: + form_mode: default + override_labels: true + label_singular: 'order item' + label_plural: 'order items' + allow_new: true + allow_existing: false + match_operator: CONTAINS + removed_reference: delete + third_party_settings: { } +hidden: + created: true + ip_address: true + mail: true + order_number: true + shipments: true + state: true + store_id: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml b/config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml new file mode 100644 index 0000000..96e0d8f --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml @@ -0,0 +1,34 @@ +uuid: ba364def-d3c3-4f08-bfc2-264298c9a3d5 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.default + - core.entity_form_mode.commerce_order_item.add_to_cart + module: + - commerce_product + enforced: + module: + - commerce_cart + - commerce_product +_core: + default_config_hash: 8dIszGyXfy-kBaUEuUEQjWjRVtfq6f8cCI0QUHIlJdc +id: commerce_order_item.default.add_to_cart +targetEntityType: commerce_order_item +bundle: default +mode: add_to_cart +content: + purchased_entity: + type: commerce_product_variation_attributes + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + adjustments: true + created: true + quantity: true + status: true + total_price: true + uid: true + unit_price: true diff --git a/config/sync/core.entity_form_display.commerce_order_item.default.default.yml b/config/sync/core.entity_form_display.commerce_order_item.default.default.yml new file mode 100644 index 0000000..a818bc7 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order_item.default.default.yml @@ -0,0 +1,49 @@ +uuid: 3fccb98d-bb54-4149-9b4d-36ed56376d51 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.default + module: + - commerce_order + enforced: + module: + - commerce_product +_core: + default_config_hash: OLyelsZyDDqQPIGVz4oz8VpJvddm6C0heZtFpIHjEcI +id: commerce_order_item.default.default +targetEntityType: commerce_order_item +bundle: default +mode: default +content: + purchased_entity: + type: entity_reference_autocomplete + weight: 0 + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + region: content + quantity: + type: commerce_quantity + weight: 1 + settings: + placeholder: '' + step: '1' + third_party_settings: { } + region: content + unit_price: + type: commerce_unit_price + weight: 2 + settings: + require_confirmation: true + third_party_settings: { } + region: content +hidden: + adjustments: true + created: true + status: true + total_price: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml b/config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml new file mode 100644 index 0000000..a81ee04 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml @@ -0,0 +1,41 @@ +uuid: 84c32a5b-e742-4b37-aef2-1a9ea979d650 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.digital_license_product + - core.entity_form_mode.commerce_order_item.add_to_cart + - field.field.commerce_order_item.digital_license_product.license + module: + - commerce_order + - commerce_product +_core: + default_config_hash: 5ocT4J5WYhb0j_okV8DIRj4H2rLhB9hw11WcL6U_2us +id: commerce_order_item.digital_license_product.add_to_cart +targetEntityType: commerce_order_item +bundle: digital_license_product +mode: add_to_cart +content: + purchased_entity: + type: commerce_product_variation_title + weight: 0 + region: content + settings: + label_display: true + label_text: 'Please select' + hide_single: true + third_party_settings: { } + quantity: + type: commerce_quantity + weight: 1 + region: content + settings: + placeholder: '' + step: '1' + third_party_settings: { } +hidden: + adjustments: true + created: true + license: true + total_price: true + unit_price: true diff --git a/config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml b/config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml new file mode 100644 index 0000000..43591e3 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml @@ -0,0 +1,39 @@ +uuid: 10f655ad-676b-4326-8f92-52bc44aea88d +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.physical_product + - core.entity_form_mode.commerce_order_item.add_to_cart + module: + - commerce_order + - commerce_product +_core: + default_config_hash: XtI7u6hRu5u2VOpcZ6X0RrUYimB5I3A7NCzaton3oVw +id: commerce_order_item.physical_product.add_to_cart +targetEntityType: commerce_order_item +bundle: physical_product +mode: add_to_cart +content: + purchased_entity: + type: commerce_product_variation_title + weight: 0 + region: content + settings: + label_display: true + label_text: 'Please select' + hide_single: true + third_party_settings: { } + quantity: + type: commerce_quantity + weight: 1 + region: content + settings: + placeholder: '' + step: '1' + third_party_settings: { } +hidden: + adjustments: true + created: true + total_price: true + unit_price: true diff --git a/config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml b/config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml new file mode 100644 index 0000000..ebf6db9 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml @@ -0,0 +1,44 @@ +uuid: f15b8538-c2eb-44f0-9730-4dd610f6b641 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.physical_product + module: + - commerce_order +_core: + default_config_hash: q7xOKwHHA4ZwD9yqaQc_4drMoD0Oiew_aNeXJfAFHyk +id: commerce_order_item.physical_product.default +targetEntityType: commerce_order_item +bundle: physical_product +mode: default +content: + purchased_entity: + type: entity_reference_autocomplete + weight: -1 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } + quantity: + type: commerce_quantity + weight: 1 + region: content + settings: + step: '1' + placeholder: '' + third_party_settings: { } + unit_price: + type: commerce_unit_price + weight: 2 + settings: + require_confirmation: true + region: content + third_party_settings: { } +hidden: + adjustments: true + created: true + total_price: true diff --git a/config/sync/core.entity_form_display.commerce_product.default.default.yml b/config/sync/core.entity_form_display.commerce_product.default.default.yml new file mode 100644 index 0000000..14155db --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product.default.default.yml @@ -0,0 +1,86 @@ +uuid: cc30a4be-8197-48aa-a76e-39d174bc4cb8 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.field.commerce_product.default.body + - field.field.commerce_product.default.images + - field.field.commerce_product.default.layout_builder__layout + - field.field.commerce_product.default.product_brand + - field.field.commerce_product.default.product_collections + - field.field.commerce_product.default.product_tags + module: + - commerce + - path + - text +_core: + default_config_hash: bVqhDE0CBvUi4RPHqKu4sBhUOUwOTgcHVhn5PkfngLU +id: commerce_product.default.default +targetEntityType: commerce_product +bundle: default +mode: default +content: + body: + type: text_textarea_with_summary + weight: 2 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + created: + type: datetime_timestamp + weight: 5 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 7 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + stores: + type: commerce_entity_select + weight: 0 + region: content + settings: + hide_single_entity: true + autocomplete_threshold: 7 + autocomplete_size: 60 + autocomplete_placeholder: '' + third_party_settings: { } + title: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 4 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + images: true + layout_builder__layout: true + product_brand: true + product_collections: true + product_tags: true + variations: true diff --git a/config/sync/core.entity_form_display.commerce_product.media.default.yml b/config/sync/core.entity_form_display.commerce_product.media.default.yml new file mode 100644 index 0000000..45c1a95 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product.media.default.yml @@ -0,0 +1,150 @@ +uuid: 2c4e7e33-3e7e-4685-9d25-daa23ceac9c4 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.field.commerce_product.media.body + - field.field.commerce_product.media.images + - field.field.commerce_product.media.layout_builder__layout + - field.field.commerce_product.media.product_brand + - field.field.commerce_product.media.product_collections + - field.field.commerce_product.media.product_tags + - image.style.thumbnail + module: + - commerce + - field_group + - image + - path + - text +third_party_settings: + field_group: + group_organization: + children: + - stores + - product_collections + - product_brand + - product_tags + parent_name: '' + weight: 2 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Organization + group_title_and_description: + children: + - title + - body + parent_name: '' + weight: 0 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: 'Title and description' +_core: + default_config_hash: DaEuSrclVl8wEiXAsljObQcICGAsv158azdE6e4TPK4 +id: commerce_product.media.default +targetEntityType: commerce_product +bundle: media +mode: default +content: + body: + type: text_textarea_with_summary + weight: 3 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + images: + weight: 1 + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image + region: content + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + product_brand: + weight: 2 + settings: { } + third_party_settings: { } + type: options_select + region: content + product_collections: + weight: 1 + settings: { } + third_party_settings: { } + type: options_select + region: content + product_tags: + weight: 3 + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete_tags + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + stores: + type: commerce_entity_select + weight: 0 + region: content + settings: + hide_single_entity: true + autocomplete_threshold: 7 + autocomplete_size: 60 + autocomplete_placeholder: '' + third_party_settings: { } + title: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + layout_builder__layout: true + variations: true diff --git a/config/sync/core.entity_form_display.commerce_product.physical.default.yml b/config/sync/core.entity_form_display.commerce_product.physical.default.yml new file mode 100644 index 0000000..d988fb8 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product.physical.default.yml @@ -0,0 +1,149 @@ +uuid: 50fd415a-3707-4639-ab6f-cd19b1d14e16 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.field.commerce_product.physical.body + - field.field.commerce_product.physical.images + - field.field.commerce_product.physical.layout_builder__layout + - field.field.commerce_product.physical.product_brand + - field.field.commerce_product.physical.product_collections + - field.field.commerce_product.physical.product_tags + - image.style.thumbnail + module: + - commerce + - field_group + - image + - path + - text +third_party_settings: + field_group: + group_title_and_description: + children: + - title + - body + parent_name: '' + weight: 0 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: 'Title and description' + group_organization: + children: + - product_brand + - product_collections + - product_tags + parent_name: '' + weight: 2 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Organization +_core: + default_config_hash: VA6s4SgI-7-a_SBQ7jE71DsixeU9A5UmaG6M7FE5pso +id: commerce_product.physical.default +targetEntityType: commerce_product +bundle: physical +mode: default +content: + body: + weight: 5 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + type: text_textarea_with_summary + region: content + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + images: + weight: 1 + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image + region: content + path: + type: path + weight: 7 + region: content + settings: { } + third_party_settings: { } + product_brand: + weight: 10 + settings: { } + third_party_settings: { } + type: options_select + region: content + product_collections: + weight: 11 + settings: { } + third_party_settings: { } + type: options_select + region: content + product_tags: + weight: 12 + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete_tags + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 8 + region: content + third_party_settings: { } + stores: + type: commerce_entity_select + weight: 3 + region: content + settings: + hide_single_entity: true + autocomplete_threshold: 7 + autocomplete_size: 60 + autocomplete_placeholder: '' + third_party_settings: { } + title: + type: string_textfield + weight: 4 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + layout_builder__layout: true + variations: true diff --git a/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml b/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml new file mode 100644 index 0000000..4c1b7a8 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml @@ -0,0 +1,45 @@ +uuid: 3f819c4a-efc1-48c7-a8c6-883e6ecdfdce +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.default + module: + - commerce_price +_core: + default_config_hash: dDLA40Axom_QFA79EWUpe_bWXWE8I_7MijzPkslbVfA +id: commerce_product_variation.default.default +targetEntityType: commerce_product_variation +bundle: default +mode: default +content: + list_price: + type: commerce_list_price + weight: -1 + region: content + settings: { } + third_party_settings: { } + price: + type: commerce_price_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + sku: + type: string_textfield + weight: -4 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + status: + type: boolean_checkbox + weight: 10 + settings: + display_label: true + third_party_settings: { } + region: content +hidden: + created: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml b/config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml new file mode 100644 index 0000000..e7a37be --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml @@ -0,0 +1,118 @@ +uuid: 3e48ba88-5b7d-4485-9094-92e0b12ea1f1 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - field.field.commerce_product_variation.media_license_download.commerce_file + - field.field.commerce_product_variation.media_license_download.license_expiration + - field.field.commerce_product_variation.media_license_download.license_type + module: + - commerce + - commerce_price + - field_group + - file +third_party_settings: + field_group: + group_inventory: + children: + - sku + - list_price + - price + parent_name: '' + weight: 1 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Inventory + group_digital_download: + children: + - license_type + - license_expiration + - commerce_file + parent_name: '' + weight: 5 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: 'Digital Download' +_core: + default_config_hash: EsiHPpKoo7sNeEBb2clschJ9L_28SjiyPDzhrGXo75I +id: commerce_product_variation.media_license_download.default +targetEntityType: commerce_product_variation +bundle: media_license_download +mode: default +content: + commerce_file: + type: file_generic + weight: 8 + settings: + progress_indicator: throbber + third_party_settings: { } + region: content + license_expiration: + type: commerce_plugin_select + weight: 7 + settings: { } + third_party_settings: { } + region: content + license_type: + type: commerce_plugin_radios + weight: 6 + settings: { } + third_party_settings: { } + region: content + list_price: + type: commerce_list_price + weight: 3 + region: content + settings: { } + third_party_settings: { } + price: + type: commerce_price_default + weight: 4 + region: content + settings: { } + third_party_settings: { } + sku: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 9 + region: content + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uk_tax_rate: + weight: 92 + settings: { } + third_party_settings: { } + type: commerce_tax_rate_default + region: content +hidden: + created: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml b/config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml new file mode 100644 index 0000000..f1164c8 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml @@ -0,0 +1,96 @@ +uuid: a122b511-0713-4137-8719-26f1e4aa7721 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_physical + - field.field.commerce_product_variation.media_physical.weight + module: + - commerce_price + - field_group + - physical +third_party_settings: + field_group: + group_inventory: + children: + - sku + - list_price + - price + parent_name: '' + weight: 1 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Inventory + group_shipping: + children: + - weight + parent_name: '' + weight: 2 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Shipping +_core: + default_config_hash: VNhS0GUL1vKNtidEIaRovYy2kQ3mDl_Gf1erJJSk35E +id: commerce_product_variation.media_physical.default +targetEntityType: commerce_product_variation +bundle: media_physical +mode: default +content: + list_price: + type: commerce_list_price + weight: 3 + region: content + settings: { } + third_party_settings: { } + price: + type: commerce_price_default + weight: 4 + region: content + settings: { } + third_party_settings: { } + sku: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 3 + region: content + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + weight: + type: physical_measurement_default + weight: 6 + region: content + settings: + default_unit: '' + allow_unit_change: true + third_party_settings: { } +hidden: + created: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml b/config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml new file mode 100644 index 0000000..137f2b4 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml @@ -0,0 +1,88 @@ +uuid: d2778a4f-c9a7-469a-a472-46195164a94b +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.physical + - field.field.commerce_product_variation.physical.weight + module: + - commerce_price + - field_group + - physical +third_party_settings: + field_group: + group_inventory: + children: + - sku + - list_price + - price + parent_name: '' + weight: 0 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Inventory + group_shipping: + children: + - weight + parent_name: '' + weight: 2 + format_type: fieldset + region: content + format_settings: + show_empty_fields: false + id: '' + classes: '' + description: '' + required_fields: true + label: Shipping +_core: + default_config_hash: pfCe3PwEV7uVsZq8ICEkspO4FBD5WCJR1h8EfTSf1FU +id: commerce_product_variation.physical.default +targetEntityType: commerce_product_variation +bundle: physical +mode: default +content: + list_price: + type: commerce_list_price + weight: 2 + region: content + settings: { } + third_party_settings: { } + price: + type: commerce_price_default + weight: 3 + region: content + settings: { } + third_party_settings: { } + sku: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 5 + region: content + third_party_settings: { } + weight: + type: physical_measurement_default + weight: 8 + region: content + settings: + default_unit: '' + allow_unit_change: true + third_party_settings: { } +hidden: + created: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml b/config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml new file mode 100644 index 0000000..3a42a74 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml @@ -0,0 +1,33 @@ +uuid: 051e5706-4c95-4d61-9a16-75d1eb039a18 +langcode: en +status: true +dependencies: + config: + - commerce_shipping.commerce_shipment_type.default + - core.entity_form_mode.commerce_shipment.checkout + module: + - commerce_shipping +_core: + default_config_hash: v-LWAtBhcDwpE5HlNPuwiNt7obeZPHwidGUYb_wnkQY +id: commerce_shipment.default.checkout +targetEntityType: commerce_shipment +bundle: default +mode: checkout +content: + shipping_method: + type: commerce_shipping_rate + weight: 1 + region: content + settings: { } + third_party_settings: { } + shipping_profile: + type: commerce_shipping_profile + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + state: true + title: true + tracking_code: true + weight: true diff --git a/config/sync/core.entity_form_display.commerce_store.online.default.yml b/config/sync/core.entity_form_display.commerce_store.online.default.yml new file mode 100644 index 0000000..35ed2b7 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_store.online.default.yml @@ -0,0 +1,85 @@ +uuid: af536444-fea6-4f99-b7d0-a2aeccbb3f91 +langcode: en +status: true +dependencies: + config: + - commerce_store.commerce_store_type.online + module: + - address + - path +_core: + default_config_hash: VDGg8hSWKm_pGY53jsKuNoHY_Xf6nm_diqAC066ktA4 +id: commerce_store.online.default +targetEntityType: commerce_store +bundle: online +mode: default +content: + address: + type: address_default + settings: { } + weight: 4 + region: content + third_party_settings: { } + billing_countries: + type: options_select + weight: 5 + region: content + settings: { } + third_party_settings: { } + default_currency: + type: options_select + weight: 2 + region: content + settings: { } + third_party_settings: { } + is_default: + type: boolean_checkbox + settings: + display_label: true + weight: 9 + region: content + third_party_settings: { } + mail: + type: email_default + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 8 + region: content + settings: { } + third_party_settings: { } + prices_include_tax: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + tax_registrations: + type: options_select + weight: 7 + region: content + settings: { } + third_party_settings: { } + timezone: + type: options_select + weight: 3 + region: content + settings: { } + third_party_settings: { } +hidden: + created: true + uid: true diff --git a/config/sync/core.entity_form_display.media.audio.default.yml b/config/sync/core.entity_form_display.media.audio.default.yml new file mode 100644 index 0000000..37afac7 --- /dev/null +++ b/config/sync/core.entity_form_display.media.audio.default.yml @@ -0,0 +1,55 @@ +uuid: 82116f90-5af5-4401-b90b-294ed6a84b63 +langcode: en +status: true +dependencies: + config: + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file + - path +_core: + default_config_hash: G2_SKH3jmI9FQeXSUxo3KgQqiyF1hPDEkc7-3-rCSbc +id: media.audio.default +targetEntityType: media +bundle: audio +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_audio_file: + type: file_generic + weight: 0 + region: content + settings: + progress_indicator: throbber + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + name: true diff --git a/config/sync/core.entity_form_display.media.audio.media_library.yml b/config/sync/core.entity_form_display.media.audio.media_library.yml new file mode 100644 index 0000000..dd2b06e --- /dev/null +++ b/config/sync/core.entity_form_display.media.audio.media_library.yml @@ -0,0 +1,22 @@ +uuid: a2b16e48-42aa-49b9-a6a5-6e50f03ec0f5 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.audio.field_media_audio_file + - media.type.audio +_core: + default_config_hash: 28vwMIYtvyjPcD4RyciZXIztxtZgmuWRCNgYemr_SZE +id: media.audio.media_library +targetEntityType: media +bundle: audio +mode: media_library +content: { } +hidden: + created: true + field_media_audio_file: true + name: true + path: true + status: true + uid: true diff --git a/config/sync/core.entity_form_display.media.document.default.yml b/config/sync/core.entity_form_display.media.document.default.yml new file mode 100644 index 0000000..220b347 --- /dev/null +++ b/config/sync/core.entity_form_display.media.document.default.yml @@ -0,0 +1,55 @@ +uuid: 8e989d51-1fe1-4295-86e5-526eddf7b4de +langcode: en +status: true +dependencies: + config: + - field.field.media.document.field_media_document + - media.type.document + module: + - file + - path +_core: + default_config_hash: aewrRkePgJzdD5kPOq8JeMcKHs6yat49nE7ZeCQzQZg +id: media.document.default +targetEntityType: media +bundle: document +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_document: + type: file_generic + weight: 0 + region: content + settings: + progress_indicator: throbber + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + name: true diff --git a/config/sync/core.entity_form_display.media.document.media_library.yml b/config/sync/core.entity_form_display.media.document.media_library.yml new file mode 100644 index 0000000..894f0d3 --- /dev/null +++ b/config/sync/core.entity_form_display.media.document.media_library.yml @@ -0,0 +1,22 @@ +uuid: fb303127-bd5c-476f-8513-3e30bdabb83b +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.document.field_media_document + - media.type.document +_core: + default_config_hash: dcpfpqyLXOSGpulacMAJW3H-G34_LeNsjdfxd1_oCfY +id: media.document.media_library +targetEntityType: media +bundle: document +mode: media_library +content: { } +hidden: + created: true + field_media_document: true + name: true + path: true + status: true + uid: true diff --git a/config/sync/core.entity_form_display.media.image.default.yml b/config/sync/core.entity_form_display.media.image.default.yml new file mode 100644 index 0000000..ec8ea35 --- /dev/null +++ b/config/sync/core.entity_form_display.media.image.default.yml @@ -0,0 +1,57 @@ +uuid: eb6f716d-740e-4675-8e55-56efe27cdafb +langcode: en +status: true +dependencies: + config: + - field.field.media.image.field_media_image + - image.style.thumbnail + - media.type.image + module: + - image + - path +_core: + default_config_hash: JSY4-JPyNZBiYYo6imdRYF6_SdtWQexPndrLvn3-vw4 +id: media.image.default +targetEntityType: media +bundle: image +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_image: + type: image_image + weight: 0 + region: content + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + name: true diff --git a/config/sync/core.entity_form_display.media.image.media_library.yml b/config/sync/core.entity_form_display.media.image.media_library.yml new file mode 100644 index 0000000..f242d6e --- /dev/null +++ b/config/sync/core.entity_form_display.media.image.media_library.yml @@ -0,0 +1,32 @@ +uuid: b6250a09-e725-4d84-afd9-c8cbdf59c6e9 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.image.field_media_image + - image.style.thumbnail + - media.type.image + module: + - image +_core: + default_config_hash: BMLrK4zKp8-FFnMseBdT_6h6YipUsKRfbDf_3WUB5HA +id: media.image.media_library +targetEntityType: media +bundle: image +mode: media_library +content: + field_media_image: + type: image_image + weight: 1 + region: content + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } +hidden: + created: true + name: true + path: true + status: true + uid: true diff --git a/config/sync/core.entity_form_display.media.remote_video.default.yml b/config/sync/core.entity_form_display.media.remote_video.default.yml new file mode 100644 index 0000000..0ca66cd --- /dev/null +++ b/config/sync/core.entity_form_display.media.remote_video.default.yml @@ -0,0 +1,56 @@ +uuid: d451caa3-29e0-4167-9f34-bcdfcb5ee2ac +langcode: en +status: true +dependencies: + config: + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - media + - path +_core: + default_config_hash: pM8mGlwfpvfG_y5tZn0lGAXFLXz2_yKkL7MvWZsRqdA +id: media.remote_video.default +targetEntityType: media +bundle: remote_video +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_oembed_video: + type: oembed_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + name: true diff --git a/config/sync/core.entity_form_display.media.remote_video.media_library.yml b/config/sync/core.entity_form_display.media.remote_video.media_library.yml new file mode 100644 index 0000000..c4fc013 --- /dev/null +++ b/config/sync/core.entity_form_display.media.remote_video.media_library.yml @@ -0,0 +1,22 @@ +uuid: f753d09a-9487-48b0-9230-dcee457dd1e6 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video +_core: + default_config_hash: TBgPW-uaXRaICBwLaVc16rXpRiLSknDIdF9q0XL7qso +id: media.remote_video.media_library +targetEntityType: media +bundle: remote_video +mode: media_library +content: { } +hidden: + created: true + field_media_oembed_video: true + name: true + path: true + status: true + uid: true diff --git a/config/sync/core.entity_form_display.media.video.default.yml b/config/sync/core.entity_form_display.media.video.default.yml new file mode 100644 index 0000000..ad01dac --- /dev/null +++ b/config/sync/core.entity_form_display.media.video.default.yml @@ -0,0 +1,55 @@ +uuid: a3e6e228-87ca-4647-b063-1a40388576dd +langcode: en +status: true +dependencies: + config: + - field.field.media.video.field_media_video_file + - media.type.video + module: + - file + - path +_core: + default_config_hash: 0kIIaDTt6dixXy8TZkat2MNGZJ6vkRG8TaBWTy3E1bM +id: media.video.default +targetEntityType: media +bundle: video +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_video_file: + type: file_generic + weight: 0 + region: content + settings: + progress_indicator: throbber + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + name: true diff --git a/config/sync/core.entity_form_display.media.video.media_library.yml b/config/sync/core.entity_form_display.media.video.media_library.yml new file mode 100644 index 0000000..07d2046 --- /dev/null +++ b/config/sync/core.entity_form_display.media.video.media_library.yml @@ -0,0 +1,22 @@ +uuid: cc06cab5-3c58-48be-bbc1-0ca30790a335 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.video.field_media_video_file + - media.type.video +_core: + default_config_hash: kGv8YsopqHvzTzb7QTINWcv0fnNa5ZDQyZxpOQR2vro +id: media.video.media_library +targetEntityType: media +bundle: video +mode: media_library +content: { } +hidden: + created: true + field_media_video_file: true + name: true + path: true + status: true + uid: true diff --git a/config/sync/core.entity_form_display.node.cklb_landing_page.default.yml b/config/sync/core.entity_form_display.node.cklb_landing_page.default.yml new file mode 100644 index 0000000..02035fb --- /dev/null +++ b/config/sync/core.entity_form_display.node.cklb_landing_page.default.yml @@ -0,0 +1,87 @@ +uuid: 1813009f-0d26-4077-ab42-c1509c411340 +langcode: en +status: true +dependencies: + config: + - field.field.node.cklb_landing_page.cklb_description + - field.field.node.cklb_landing_page.cklb_image + - field.field.node.cklb_landing_page.layout_builder__layout + - node.type.cklb_landing_page + module: + - media_library + - path +_core: + default_config_hash: WdbsljrLvFBdqsuafAGgXheoy329CiIxgESqW2WBFR0 +id: node.cklb_landing_page.default +targetEntityType: node +bundle: cklb_landing_page +mode: default +content: + cklb_description: + type: string_textarea + weight: 2 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + cklb_image: + type: media_library_widget + weight: 1 + region: content + settings: + media_types: { } + third_party_settings: { } + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 7 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 5 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 6 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + layout_builder__layout: true diff --git a/config/sync/core.entity_form_display.node.page.default.yml b/config/sync/core.entity_form_display.node.page.default.yml new file mode 100644 index 0000000..e752070 --- /dev/null +++ b/config/sync/core.entity_form_display.node.page.default.yml @@ -0,0 +1,77 @@ +uuid: 255ebf06-3da6-4ab7-b025-78aba047f0a2 +langcode: en +status: true +dependencies: + config: + - field.field.node.page.body + - node.type.page + module: + - path + - text +_core: + default_config_hash: NtDxHA5xUfrk21vDE986FfzK5BBPvqTKVwxAaqd3bss +id: node.page.default +targetEntityType: node +bundle: page +mode: default +content: + body: + type: text_textarea_with_summary + weight: 31 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 10 + settings: { } + third_party_settings: { } + region: content + path: + type: path + weight: 30 + settings: { } + third_party_settings: { } + region: content + promote: + type: boolean_checkbox + settings: + display_label: true + weight: 15 + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } + sticky: + type: boolean_checkbox + settings: + display_label: true + weight: 16 + third_party_settings: { } + region: content + title: + type: string_textfield + weight: -5 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_form_display.profile.customer.default.yml b/config/sync/core.entity_form_display.profile.customer.default.yml new file mode 100644 index 0000000..4aebc2c --- /dev/null +++ b/config/sync/core.entity_form_display.profile.customer.default.yml @@ -0,0 +1,29 @@ +uuid: b6868d5c-98fb-4d13-a8b7-682e2b27ca54 +langcode: en +status: true +dependencies: + config: + - field.field.profile.customer.address + - field.field.profile.customer.tax_number + - profile.type.customer + module: + - address + enforced: + module: + - commerce_order +_core: + default_config_hash: 3LyHGK7R4HxqejbxONet1S9j9ekqLJuFpwT-MNJygvo +id: profile.customer.default +targetEntityType: profile +bundle: customer +mode: default +content: + address: + type: address_default + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + is_default: true + tax_number: true diff --git a/config/sync/core.entity_form_display.user.user.default.yml b/config/sync/core.entity_form_display.user.user.default.yml new file mode 100644 index 0000000..b38b575 --- /dev/null +++ b/config/sync/core.entity_form_display.user.user.default.yml @@ -0,0 +1,45 @@ +uuid: 313987f2-2e03-4ab2-a5be-a9be81412b03 +langcode: en +status: true +dependencies: + config: + - field.field.user.user.commerce_remote_id + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - path + - user +_core: + default_config_hash: LDWTGUptlTxFIrtdPjNv_s9diso-3f12GPIm3D0_62M +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + account: + weight: -10 + region: content + language: + weight: 0 + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + timezone: + weight: 6 + region: content + user_picture: + type: image_image + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + weight: -1 + region: content +hidden: + commerce_remote_id: true + customer_profiles: true diff --git a/config/sync/core.entity_form_display.user.user.register.yml b/config/sync/core.entity_form_display.user.user.register.yml new file mode 100644 index 0000000..714b8bf --- /dev/null +++ b/config/sync/core.entity_form_display.user.user.register.yml @@ -0,0 +1,29 @@ +uuid: b23d892d-687f-4ad9-8403-bf5e6dd6b884 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.user.register + - field.field.user.user.commerce_remote_id + - field.field.user.user.user_picture + module: + - user +_core: + default_config_hash: jX-BWL9kuPIT906ZUlvfbzd50lrdNryPHF3hk-OvYGU +id: user.user.register +targetEntityType: user +bundle: user +mode: register +content: + account: + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + commerce_remote_id: true + customer_profiles: true + language: true + path: true + timezone: true + user_picture: true diff --git a/config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml b/config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml new file mode 100644 index 0000000..daa5f16 --- /dev/null +++ b/config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml @@ -0,0 +1,15 @@ +uuid: 847b107c-1093-4ff0-b647-906fe7c86bff +langcode: en +status: true +dependencies: + module: + - commerce_order + enforced: + module: + - commerce_cart +_core: + default_config_hash: BeqBf6Mm59Nebv4SsV0yvK5EspkCegPqvwnqwEBvEp0 +id: commerce_order_item.add_to_cart +label: 'Add to cart' +targetEntityType: commerce_order_item +cache: true diff --git a/config/sync/core.entity_form_mode.commerce_shipment.checkout.yml b/config/sync/core.entity_form_mode.commerce_shipment.checkout.yml new file mode 100644 index 0000000..6cfe566 --- /dev/null +++ b/config/sync/core.entity_form_mode.commerce_shipment.checkout.yml @@ -0,0 +1,12 @@ +uuid: 613c854d-b751-4f4e-a2c2-5d641ce4361f +langcode: en +status: true +dependencies: + module: + - commerce_shipping +_core: + default_config_hash: SOM4LMI0fFeahHJLPEPoVldiWGePCGwhTERi0cTjb0U +id: commerce_shipment.checkout +label: Checkout +targetEntityType: commerce_shipment +cache: true diff --git a/config/sync/core.entity_form_mode.media.media_library.yml b/config/sync/core.entity_form_mode.media.media_library.yml new file mode 100644 index 0000000..0f2420b --- /dev/null +++ b/config/sync/core.entity_form_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: 0fe62768-9e0b-4bb0-9660-a4d02f1023ac +langcode: en +status: true +dependencies: + module: + - media + enforced: + module: + - media_library +_core: + default_config_hash: Tdhz-aDHfDoV1Ul9umtItxGTrjkFzoNAkDw8FWXjYA0 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/config/sync/core.entity_form_mode.profile.billing.yml b/config/sync/core.entity_form_mode.profile.billing.yml new file mode 100644 index 0000000..94c79b0 --- /dev/null +++ b/config/sync/core.entity_form_mode.profile.billing.yml @@ -0,0 +1,15 @@ +uuid: 260d2a4e-354a-4897-a520-e5ca01f722d5 +langcode: en +status: true +dependencies: + module: + - profile + enforced: + module: + - commerce_order +_core: + default_config_hash: yeGwCxbA5dBAS_3eBkfaVrbxkASEM357dkjPZShKiR4 +id: profile.billing +label: Billing +targetEntityType: profile +cache: true diff --git a/config/sync/core.entity_form_mode.profile.shipping.yml b/config/sync/core.entity_form_mode.profile.shipping.yml new file mode 100644 index 0000000..46f63d5 --- /dev/null +++ b/config/sync/core.entity_form_mode.profile.shipping.yml @@ -0,0 +1,15 @@ +uuid: 26d77db9-d9f5-4f24-bc37-a29250d82b77 +langcode: en +status: true +dependencies: + module: + - profile + enforced: + module: + - commerce_shipping +_core: + default_config_hash: JPUL4eD5T2YoK0l8mg_Ey9_HY9vGRwqr4BM_GqaAgmw +id: profile.shipping +label: Shipping +targetEntityType: profile +cache: true diff --git a/config/sync/core.entity_form_mode.user.register.yml b/config/sync/core.entity_form_mode.user.register.yml new file mode 100644 index 0000000..27008b4 --- /dev/null +++ b/config/sync/core.entity_form_mode.user.register.yml @@ -0,0 +1,12 @@ +uuid: 05dab859-4c23-45e4-a4d3-1156ff3cbb9b +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI +id: user.register +label: Register +targetEntityType: user +cache: true diff --git a/config/sync/core.entity_view_display.block_content.basic.default.yml b/config/sync/core.entity_view_display.block_content.basic.default.yml new file mode 100644 index 0000000..4cdb31f --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.basic.default.yml @@ -0,0 +1,24 @@ +uuid: aa6c0272-0ad3-4bea-ac4c-f3c2b172409b +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.field.block_content.basic.body + module: + - text +_core: + default_config_hash: zCrrHAjrsQgWjBXBsshAZjND21czBy8sH_L5v_xDKSA +id: block_content.basic.default +targetEntityType: block_content +bundle: basic +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_view_display.block_content.cklb_button.default.yml b/config/sync/core.entity_view_display.block_content.cklb_button.default.yml new file mode 100644 index 0000000..03d213c --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_button.default.yml @@ -0,0 +1,30 @@ +uuid: 83799d3a-081b-401b-8a1b-beea3cb915a7 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_button + - field.field.block_content.cklb_button.cklb_cta + module: + - link +_core: + default_config_hash: lD5UY8CJf96n5sg4NRFwSIIRnsMvQX9V-a_Qz0ppW9c +id: block_content.cklb_button.default +targetEntityType: block_content +bundle: cklb_button +mode: default +content: + cklb_cta: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_hero.default.yml b/config/sync/core.entity_view_display.block_content.cklb_hero.default.yml new file mode 100644 index 0000000..6f1b706 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_hero.default.yml @@ -0,0 +1,57 @@ +uuid: dbaa0aad-7fc3-4b00-a390-f38822d6a061 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_hero + - field.field.block_content.cklb_hero.cklb_cta + - field.field.block_content.cklb_hero.cklb_subtitle + - field.field.block_content.cklb_hero.cklb_text + - field.field.block_content.cklb_hero.cklb_title + module: + - link + - text +_core: + default_config_hash: sCcs9VTxsMKr0k9_oXuO3n0Cu4m0f3c_mP6UVB5LhuQ +id: block_content.cklb_hero.default +targetEntityType: block_content +bundle: cklb_hero +mode: default +content: + cklb_cta: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + weight: 3 + region: content + cklb_subtitle: + type: string + label: visually_hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content + cklb_text: + type: text_default + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 2 + region: content + cklb_title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml b/config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml new file mode 100644 index 0000000..015aa1a --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml @@ -0,0 +1,34 @@ +uuid: 7475973e-0c6a-42f8-a773-dd1404f853f2 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_image + - core.entity_view_mode.block_content.cklb_large + - field.field.block_content.cklb_image.cklb_image + - image.style.cklb_container + module: + - layout_builder + - media +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: DunX-qV9ybfwrD_I9xuFVCEQLDLW3dtbukS_njKhHtY +id: block_content.cklb_image.cklb_large +targetEntityType: block_content +bundle: cklb_image +mode: cklb_large +content: + cklb_image: + type: media_thumbnail + label: visually_hidden + settings: + image_link: '' + image_style: cklb_container + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml b/config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml new file mode 100644 index 0000000..df9afb6 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml @@ -0,0 +1,34 @@ +uuid: 89c66f40-8eb9-4cd5-a6eb-190c1c2af980 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_image + - core.entity_view_mode.block_content.cklb_small + - field.field.block_content.cklb_image.cklb_image + - image.style.cklb_small_max_600px + module: + - layout_builder + - media +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: CTH4rJk9f9PjM8hvGDt7xLAChUd3QJ3WG5yx69kZREk +id: block_content.cklb_image.cklb_small +targetEntityType: block_content +bundle: cklb_image +mode: cklb_small +content: + cklb_image: + type: media_thumbnail + label: visually_hidden + settings: + image_link: '' + image_style: cklb_small_max_600px + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_image.default.yml b/config/sync/core.entity_view_display.block_content.cklb_image.default.yml new file mode 100644 index 0000000..ce25ce7 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_image.default.yml @@ -0,0 +1,28 @@ +uuid: 56b9030b-7913-4da1-b439-4486f9115848 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_image + - field.field.block_content.cklb_image.cklb_image + - image.style.cklb_medium_max_1144px + module: + - media +_core: + default_config_hash: TnIHxRkrvalvSZZIXdPaXgez4U3VhSDsnQU7beCn9w0 +id: block_content.cklb_image.default +targetEntityType: block_content +bundle: cklb_image +mode: default +content: + cklb_image: + type: media_thumbnail + label: visually_hidden + settings: + image_link: '' + image_style: cklb_medium_max_1144px + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_products.default.yml b/config/sync/core.entity_view_display.block_content.cklb_products.default.yml new file mode 100644 index 0000000..9fd9171 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_products.default.yml @@ -0,0 +1,34 @@ +uuid: 8f4d0ecc-3b0c-4b69-9fd8-ee821010d080 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_products + - field.field.block_content.cklb_products.cklb_products + - field.field.block_content.cklb_products.cklb_title +_core: + default_config_hash: sYDXn45wZT0NcWnOIqTTwJt8Ik18kcrxaSWGEZwxYQ0 +id: block_content.cklb_products.default +targetEntityType: block_content +bundle: cklb_products +mode: default +content: + cklb_products: + type: entity_reference_entity_view + label: visually_hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + weight: 1 + region: content + cklb_title: + type: string + label: visually_hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_text.default.yml b/config/sync/core.entity_view_display.block_content.cklb_text.default.yml new file mode 100644 index 0000000..6ebffe8 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_text.default.yml @@ -0,0 +1,25 @@ +uuid: 6a54d395-7200-4e5c-88e0-289f59c5910e +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_text + - field.field.block_content.cklb_text.cklb_text + module: + - text +_core: + default_config_hash: lLulvZd9BiGqGbnLmTw9SF2K2jLijqPXsLpnSlhTFhE +id: block_content.cklb_text.default +targetEntityType: block_content +bundle: cklb_text +mode: default +content: + cklb_text: + type: text_default + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml b/config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml new file mode 100644 index 0000000..fbfef5a --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml @@ -0,0 +1,31 @@ +uuid: 6dc7f745-1954-4d56-a2b0-7acaa378b57c +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_title + - core.entity_view_mode.block_content.cklb_h1 + - field.field.block_content.cklb_title.cklb_title + module: + - layout_builder +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: F9_K_gLjyHctl1mXk6MbMo6ZxziayzRh2qYv6BNZqC0 +id: block_content.cklb_title.cklb_h1 +targetEntityType: block_content +bundle: cklb_title +mode: cklb_h1 +content: + cklb_title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.block_content.cklb_title.default.yml b/config/sync/core.entity_view_display.block_content.cklb_title.default.yml new file mode 100644 index 0000000..9be9a94 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.cklb_title.default.yml @@ -0,0 +1,24 @@ +uuid: f23f3e74-bdef-472a-a8d9-37279785007c +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_title + - field.field.block_content.cklb_title.cklb_title +_core: + default_config_hash: mooMoyM81OgdulgwFrEcJ6xrm_K9MNP6yuBHIzOadsI +id: block_content.cklb_title.default +targetEntityType: block_content +bundle: cklb_title +mode: default +content: + cklb_title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.comment.comment.default.yml b/config/sync/core.entity_view_display.comment.comment.default.yml new file mode 100644 index 0000000..fdaf8bd --- /dev/null +++ b/config/sync/core.entity_view_display.comment.comment.default.yml @@ -0,0 +1,27 @@ +uuid: 7698a35b-1e96-4c03-b4b8-687ea8cc0446 +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.field.comment.comment.comment_body + module: + - text +_core: + default_config_hash: 1yBeJcGufCbnbSolmaYgTIXZWYUaO7kw6xszGA8TYs8 +id: comment.comment.default +targetEntityType: comment +bundle: comment +mode: default +content: + comment_body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + links: + weight: 100 + region: content +hidden: { } diff --git a/config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml b/config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml new file mode 100644 index 0000000..ea6e1d4 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml @@ -0,0 +1,160 @@ +uuid: 91ef7752-930a-4006-8857-6a0124e19fb0 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_license + - file + - state_machine +_core: + default_config_hash: E63wVJSklUtv3F393f0Gj3-N-eY83iQc4nZQOu7oMfI +id: commerce_license.commerce_file.default +targetEntityType: commerce_license +bundle: commerce_file +mode: default +content: + changed: + label: inline + type: timestamp + weight: 19 + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + region: content + third_party_settings: { } + created: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 4 + region: content + expiration_type: + type: commerce_plugin_item_default + label: inline + settings: { } + third_party_settings: { } + weight: 7 + region: content + expires: + type: commerce_license_expiration + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 8 + region: content + granted: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 5 + region: content + licensed_files: + type: file_default + label: above + settings: + use_description_as_link_text: true + third_party_settings: { } + weight: 1 + region: content + originating_order: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + product_variation: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + renewed: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 6 + region: content + state: + type: state_transition_form + label: hidden + settings: + require_confirmation: false + use_modal: false + third_party_settings: { } + weight: 9 + region: content + uid: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 3 + region: content +hidden: { } diff --git a/config/sync/core.entity_view_display.commerce_order.default.default.yml b/config/sync/core.entity_view_display.commerce_order.default.default.yml new file mode 100644 index 0000000..d975894 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_order.default.default.yml @@ -0,0 +1,151 @@ +uuid: ff591c60-01a2-4b96-8e4b-ff2262ddf621 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - field.field.commerce_order.default.shipments + module: + - commerce_order + - commerce_price + - state_machine + - user +_core: + default_config_hash: w_RqUP8MNGcriL4erePe8rSRx3V5yDtEZDgc14AgzW0 +id: commerce_order.default.default +targetEntityType: commerce_order +bundle: default +mode: default +content: + balance: + type: commerce_price_default + label: inline + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + weight: 9 + region: content + changed: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 4 + region: content + completed: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 2 + region: content + coupons: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 10 + region: content + ip_address: + type: string + label: inline + settings: + link_to_entity: false + third_party_settings: { } + weight: 7 + region: content + mail: + type: basic_string + label: inline + settings: { } + third_party_settings: { } + weight: 6 + region: content + order_items: + type: commerce_order_item_table + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + placed: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 3 + region: content + state: + type: state_transition_form + label: hidden + settings: + require_confirmation: true + use_modal: true + third_party_settings: { } + weight: 8 + region: content + store_id: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 5 + region: content + total_price: + type: commerce_order_total_summary + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content + uid: + type: author + label: inline + settings: { } + third_party_settings: { } + weight: 5 + region: content +hidden: + billing_profile: true + order_number: true + shipments: true + total_paid: true diff --git a/config/sync/core.entity_view_display.commerce_order.default.user.yml b/config/sync/core.entity_view_display.commerce_order.default.user.yml new file mode 100644 index 0000000..9e0d21c --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_order.default.user.yml @@ -0,0 +1,118 @@ +uuid: 09c23a85-9ed8-4772-8741-52f9df6d5f7e +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - core.entity_view_mode.commerce_order.user + - field.field.commerce_order.default.shipments + module: + - commerce_order + - entity_reference_revisions + - options +_core: + default_config_hash: XRgGhXKcDeqhvgwHROyCDmRx7wfApZmGqxYl_9fE7SU +id: commerce_order.default.user +targetEntityType: commerce_order +bundle: default +mode: user +content: + billing_profile: + type: entity_reference_revisions_entity_view + label: above + settings: + view_mode: default + link: '' + third_party_settings: { } + weight: 0 + region: content + completed: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 2 + region: content + coupons: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 7 + region: content + mail: + type: basic_string + label: inline + settings: { } + third_party_settings: { } + weight: 1 + region: content + order_items: + type: commerce_order_item_table + label: hidden + settings: { } + third_party_settings: { } + weight: 5 + region: content + order_number: + type: string + label: inline + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content + placed: + type: timestamp + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + weight: 3 + region: content + state: + type: list_default + label: inline + settings: { } + third_party_settings: { } + weight: 4 + region: content + total_price: + type: commerce_order_total_summary + label: hidden + settings: { } + third_party_settings: { } + weight: 6 + region: content +hidden: + balance: true + changed: true + ip_address: true + shipments: true + store_id: true + total_paid: true + uid: true diff --git a/config/sync/core.entity_view_display.commerce_order_item.default.default.yml b/config/sync/core.entity_view_display.commerce_order_item.default.default.yml new file mode 100644 index 0000000..e415d23 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_order_item.default.default.yml @@ -0,0 +1,77 @@ +uuid: 2a8728d4-7faa-4a7a-9d30-b2f0f6c75c18 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.default + module: + - commerce_price + enforced: + module: + - commerce_product +_core: + default_config_hash: a-MK2hTebnM3YwCg08ZKg7ItNkBUOsu3am_y0HIjTw8 +id: commerce_order_item.default.default +targetEntityType: commerce_order_item +bundle: default +mode: default +content: + created: + label: hidden + type: timestamp + weight: 0 + region: content + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + third_party_settings: { } + purchased_entity: + type: entity_reference_entity_view + weight: 0 + settings: + view_mode: default + link: false + third_party_settings: { } + label: above + region: content + quantity: + type: number_decimal + weight: 1 + settings: + thousand_separator: '' + decimal_separator: . + scale: 2 + prefix_suffix: true + third_party_settings: { } + label: above + region: content + total_price: + type: commerce_price_default + weight: 3 + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + label: above + region: content + unit_price: + type: commerce_price_default + weight: 2 + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + label: above + region: content +hidden: + adjustments: true diff --git a/config/sync/core.entity_view_display.commerce_product.default.default.yml b/config/sync/core.entity_view_display.commerce_product.default.default.yml new file mode 100644 index 0000000..10dadfe --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.default.default.yml @@ -0,0 +1,565 @@ +uuid: b4d61dd5-1131-4984-aa53-b0b0748a349a +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.field.commerce_product.default.body + - field.field.commerce_product.default.images + - field.field.commerce_product.default.layout_builder__layout + - field.field.commerce_product.default.product_brand + - field.field.commerce_product.default.product_collections + - field.field.commerce_product.default.product_tags + module: + - bootstrap_layout_builder + - commerce_product + - layout_builder + - layout_builder_restrictions + - text +third_party_settings: + layout_builder: + enabled: true + allow_custom: true + sections: + - + layout_id: 'bootstrap_layout_builder:blb_col_2' + layout_settings: + label: 'Main content' + container_wrapper_classes: '' + container_wrapper_attributes: null + container_wrapper: + bootstrap_styles: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + container_wrapper_bg_color_class: '' + container_wrapper_bg_media: null + container: container + section_classes: '' + section_attributes: null + regions_classes: + blb_region_col_1: '' + blb_region_col_2: '' + regions_attributes: + blb_region_col_1: null + blb_region_col_2: null + breakpoints: + desktop: blb_col_6_6 + tablet: blb_col_6_6 + mobile: blb_col_12 + layout_regions_classes: + blb_region_col_1: + - col-lg-6 + - col-md-6 + - col-12 + blb_region_col_2: + - col-lg-6 + - col-md-6 + - col-12 + remove_gutters: '0' + context_mapping: { } + components: + 397b61c5-4636-4dfe-9ed5-033357a82444: + uuid: 397b61c5-4636-4dfe-9ed5-033357a82444 + region: blb_region_col_1 + configuration: + id: 'field_block:commerce_product:default:images' + label: Images + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: bootstrap_basic_image_gallery_formatter + label: above + settings: + image_style: cklb_medium_max_1144px + thumbnails_per_row: '8' + thumbnail_image_style: thumbnail + modal_image_style: '' + carousel_autorotate: 0 + carousel_interval: '5000' + lazyload: 1 + third_party_settings: { } + weight: 0 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 43909e69-d171-4cbc-ac03-09568c23cd95: + uuid: 43909e69-d171-4cbc-ac03-09568c23cd95 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:default:product_collections' + label: 'Product Collections' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_label + label: visually_hidden + settings: + link: false + third_party_settings: { } + weight: 0 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: mb-4 + scroll_effects: + class: null + ae461d70-7f44-41d8-8c73-a5797026ff16: + uuid: ae461d70-7f44-41d8-8c73-a5797026ff16 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:default:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: string + label: visually_hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 16fd72a9-5bc0-494d-a77b-ead238bf3428: + uuid: 16fd72a9-5bc0-494d-a77b-ead238bf3428 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product_variation:default:price' + label: Price + label_display: '0' + provider: layout_builder + context_mapping: + entity: '@commerce_product.product_variation_route_context:commerce_product_variation' + view_mode: view_mode + formatter: + type: commerce_price_calculated + label: visually_hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + adjustment_types: + fee: fee + promotion: promotion + tax: '0' + shipping: '0' + shipping_promotion: '0' + third_party_settings: { } + weight: 2 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 39bf0690-64ad-468a-bd48-cee419b97789: + uuid: 39bf0690-64ad-468a-bd48-cee419b97789 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:default:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 3 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: mt-4 + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 6aee2ed5-2697-4d41-85ba-7eecae09508f: + uuid: 6aee2ed5-2697-4d41-85ba-7eecae09508f + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:default:variations' + label: Variations + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: commerce_add_to_cart + label: visually_hidden + settings: + combine: true + third_party_settings: { } + weight: 4 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + third_party_settings: + layout_builder_lock: + lock: + 1: 1 + 2: 2 + 4: 4 + layout_builder_restrictions: + allowed_block_categories: + - 'Chaos Tools' + - Commerce + - 'Content fields' + - 'Custom block types' + - Forms + - Help + - 'Inline blocks' + - 'Lists (Views)' + - Menus + - System + - User + - core + entity_view_mode_restriction: + allowed_layouts: + - 'bootstrap_layout_builder:blb_col_1' + - 'bootstrap_layout_builder:blb_col_2' + - 'bootstrap_layout_builder:blb_col_3' + - 'bootstrap_layout_builder:blb_col_4' + - 'bootstrap_layout_builder:blb_col_5' + - 'bootstrap_layout_builder:blb_col_6' + - 'bootstrap_layout_builder:blb_col_7' + - 'bootstrap_layout_builder:blb_col_8' + - 'bootstrap_layout_builder:blb_col_9' + - 'bootstrap_layout_builder:blb_col_10' + - 'bootstrap_layout_builder:blb_col_11' + - 'bootstrap_layout_builder:blb_col_12' + - cklb_slideshow + restricted_categories: { } + blacklisted_blocks: { } + whitelisted_blocks: { } + entity_view_mode_restriction_by_region: + allowed_layouts: + - 'bootstrap_layout_builder:blb_col_1' + - 'bootstrap_layout_builder:blb_col_2' + - 'bootstrap_layout_builder:blb_col_3' + - 'bootstrap_layout_builder:blb_col_4' + - 'bootstrap_layout_builder:blb_col_5' + - 'bootstrap_layout_builder:blb_col_6' + - 'bootstrap_layout_builder:blb_col_7' + - 'bootstrap_layout_builder:blb_col_8' + - 'bootstrap_layout_builder:blb_col_9' + - 'bootstrap_layout_builder:blb_col_10' + - 'bootstrap_layout_builder:blb_col_11' + - 'bootstrap_layout_builder:blb_col_12' + - cklb_slideshow +_core: + default_config_hash: 10qgl6V_HwkrJufzsNCV75OpqOeMzzKDJb3BhaogmzQ +id: commerce_product.default.default +targetEntityType: commerce_product +bundle: default +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: -5 + region: content + variations: + type: commerce_add_to_cart + label: hidden + settings: + show_quantity: false + default_quantity: '1' + combine: true + third_party_settings: { } + weight: 1 + region: content +hidden: + created: true + images: true + layout_builder__layout: true + product_brand: true + product_collections: true + product_tags: true + search_api_excerpt: true + stores: true + uid: true diff --git a/config/sync/core.entity_view_display.commerce_product.default.teaser.yml b/config/sync/core.entity_view_display.commerce_product.default.teaser.yml new file mode 100644 index 0000000..497761a --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.default.teaser.yml @@ -0,0 +1,53 @@ +uuid: b72ee2cd-b396-4ad3-8b8b-ae2953150b64 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - core.entity_view_mode.commerce_product.teaser + - field.field.commerce_product.default.body + - field.field.commerce_product.default.images + - field.field.commerce_product.default.layout_builder__layout + - field.field.commerce_product.default.product_brand + - field.field.commerce_product.default.product_collections + - field.field.commerce_product.default.product_tags + - image.style.product_teaser + module: + - image_delta_formatter +_core: + default_config_hash: J--1ZfpjV51YXeQ2EBP6c0a8QA90hf9IhALzSdt-LAw +id: commerce_product.default.teaser +targetEntityType: commerce_product +bundle: default +mode: teaser +content: + images: + type: image_delta_formatter + label: hidden + settings: + deltas: '0' + image_style: product_teaser + image_link: content + deltas_reversed: 0 + third_party_settings: { } + weight: 0 + region: content + title: + type: string + label: hidden + settings: + link_to_entity: true + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + created: true + layout_builder__layout: true + product_brand: true + product_collections: true + product_tags: true + search_api_excerpt: true + stores: true + uid: true + variations: true diff --git a/config/sync/core.entity_view_display.commerce_product.media.default.yml b/config/sync/core.entity_view_display.commerce_product.media.default.yml new file mode 100644 index 0000000..73c0f9c --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.media.default.yml @@ -0,0 +1,550 @@ +uuid: 8e9c5fcd-475b-46af-801f-0d4fa72dd519 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.field.commerce_product.media.body + - field.field.commerce_product.media.images + - field.field.commerce_product.media.layout_builder__layout + - field.field.commerce_product.media.product_brand + - field.field.commerce_product.media.product_collections + - field.field.commerce_product.media.product_tags + module: + - bootstrap_layout_builder + - commerce_product + - layout_builder + - layout_builder_restrictions + - text +third_party_settings: + layout_builder: + enabled: true + allow_custom: true + sections: + - + layout_id: 'bootstrap_layout_builder:blb_col_2' + layout_settings: + label: 'Main content' + container_wrapper_classes: '' + container_wrapper_attributes: null + container_wrapper: + bootstrap_styles: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: pb-6 + margin: + class: _none + margin_left: + class: _none + margin_top: + class: mt-5 + margin_right: + class: _none + margin_bottom: + class: mb-6 + container_wrapper_bg_color_class: '' + container_wrapper_bg_media: null + container: container + section_classes: '' + section_attributes: null + regions_classes: + blb_region_col_1: '' + blb_region_col_2: '' + regions_attributes: + blb_region_col_1: null + blb_region_col_2: null + breakpoints: + desktop: blb_col_6_6 + tablet: blb_col_6_6 + mobile: blb_col_12 + layout_regions_classes: + blb_region_col_1: + - col-lg-6 + - col-md-6 + - col-12 + blb_region_col_2: + - col-lg-6 + - col-md-6 + - col-12 + context_mapping: { } + remove_gutters: '0' + components: + e7295ef5-cdfa-4bcc-867c-e8bd59c9b4fe: + uuid: e7295ef5-cdfa-4bcc-867c-e8bd59c9b4fe + region: blb_region_col_1 + configuration: + id: 'field_block:commerce_product:media:images' + label: Images + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: bootstrap_basic_image_gallery_formatter + label: visually_hidden + settings: + image_style: cklb_medium_max_1144px + thumbnails_per_row: '8' + thumbnail_image_style: thumbnail + modal_image_style: '' + carousel_autorotate: 0 + carousel_interval: '5000' + lazyload: 1 + third_party_settings: { } + weight: 0 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 2d8614af-4976-4da5-95f3-496730908b44: + uuid: 2d8614af-4976-4da5-95f3-496730908b44 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:media:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: string + label: visually_hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + fde66292-9949-4b43-ad67-1cd490e8c58e: + uuid: fde66292-9949-4b43-ad67-1cd490e8c58e + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product_variation:media_license_download:price' + label: Price + label_display: '0' + provider: layout_builder + context_mapping: + entity: '@commerce_product.product_variation_route_context:commerce_product_variation' + formatter: + type: commerce_price_calculated + label: visually_hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + adjustment_types: + fee: fee + promotion: promotion + tax: '0' + shipping: '0' + shipping_promotion: '0' + third_party_settings: { } + weight: 2 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 36d71c64-8efd-4271-b657-9523d3834750: + uuid: 36d71c64-8efd-4271-b657-9523d3834750 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:media:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 3 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: mt-4 + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + c049370a-198d-400b-adaa-0d2232803936: + uuid: c049370a-198d-400b-adaa-0d2232803936 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:media:variations' + label: Variations + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: commerce_add_to_cart + label: visually_hidden + settings: + combine: true + third_party_settings: { } + weight: 4 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 74c68b49-f6cb-43ac-bc71-95c506801cd1: + uuid: 74c68b49-f6cb-43ac-bc71-95c506801cd1 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:media:product_collections' + label: 'Product Collections' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_label + label: visually_hidden + settings: + link: false + third_party_settings: { } + weight: 0 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: mb-4 + scroll_effects: + class: null + third_party_settings: + layout_builder_lock: + lock: + 1: 1 + 2: 2 + 4: 4 + layout_builder_restrictions: + allowed_block_categories: + - 'Chaos Tools' + - Commerce + - 'Content fields' + - 'Custom block types' + - Forms + - Help + - 'Inline blocks' + - 'Lists (Views)' + - Menus + - System + - User + - core + entity_view_mode_restriction: + allowed_layouts: + - 'bootstrap_layout_builder:blb_col_1' + - 'bootstrap_layout_builder:blb_col_2' + - 'bootstrap_layout_builder:blb_col_3' + - 'bootstrap_layout_builder:blb_col_4' + - 'bootstrap_layout_builder:blb_col_5' + - 'bootstrap_layout_builder:blb_col_6' + - 'bootstrap_layout_builder:blb_col_7' + - 'bootstrap_layout_builder:blb_col_8' + - 'bootstrap_layout_builder:blb_col_9' + - 'bootstrap_layout_builder:blb_col_10' + - 'bootstrap_layout_builder:blb_col_11' + - 'bootstrap_layout_builder:blb_col_12' + blacklisted_blocks: { } + whitelisted_blocks: { } + restricted_categories: { } +_core: + default_config_hash: AiaoDUBUJ-bWVd1mxrQ_KfJ-_SAzcJ0Rt3-OYnhhNOA +id: commerce_product.media.default +targetEntityType: commerce_product +bundle: media +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 2 + region: content + product_brand: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 10 + region: content + title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content + variations: + type: commerce_add_to_cart + label: hidden + settings: + combine: true + third_party_settings: { } + weight: 4 + region: content +hidden: + created: true + images: true + layout_builder__layout: true + product_collections: true + product_tags: true + search_api_excerpt: true + stores: true + uid: true diff --git a/config/sync/core.entity_view_display.commerce_product.media.teaser.yml b/config/sync/core.entity_view_display.commerce_product.media.teaser.yml new file mode 100644 index 0000000..4b104ec --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.media.teaser.yml @@ -0,0 +1,53 @@ +uuid: a41dbefe-1adc-4232-bf86-3ce485d8de0f +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - core.entity_view_mode.commerce_product.teaser + - field.field.commerce_product.media.body + - field.field.commerce_product.media.images + - field.field.commerce_product.media.layout_builder__layout + - field.field.commerce_product.media.product_brand + - field.field.commerce_product.media.product_collections + - field.field.commerce_product.media.product_tags + - image.style.product_teaser + module: + - image_delta_formatter +_core: + default_config_hash: RS1RtBKxODNdyXECvH7s3XZbHJ7SCc7Y79jUOB_Lwgo +id: commerce_product.media.teaser +targetEntityType: commerce_product +bundle: media +mode: teaser +content: + images: + type: image_delta_formatter + label: hidden + settings: + deltas: '0' + image_style: product_teaser + image_link: content + deltas_reversed: 0 + third_party_settings: { } + weight: 0 + region: content + title: + type: string + label: hidden + settings: + link_to_entity: true + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + created: true + layout_builder__layout: true + product_brand: true + product_collections: true + product_tags: true + search_api_excerpt: true + stores: true + uid: true + variations: true diff --git a/config/sync/core.entity_view_display.commerce_product.physical.default.yml b/config/sync/core.entity_view_display.commerce_product.physical.default.yml new file mode 100644 index 0000000..55cf6af --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.physical.default.yml @@ -0,0 +1,552 @@ +uuid: eb344c77-1a9a-43d3-b60e-422485e55274 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.field.commerce_product.physical.body + - field.field.commerce_product.physical.images + - field.field.commerce_product.physical.layout_builder__layout + - field.field.commerce_product.physical.product_brand + - field.field.commerce_product.physical.product_collections + - field.field.commerce_product.physical.product_tags + module: + - bootstrap_layout_builder + - commerce_product + - image + - layout_builder + - layout_builder_restrictions + - text +third_party_settings: + layout_builder: + enabled: true + allow_custom: true + sections: + - + layout_id: 'bootstrap_layout_builder:blb_col_2' + layout_settings: + label: 'Main content' + container_wrapper_classes: '' + container_wrapper_attributes: null + container_wrapper: + bootstrap_styles: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: pb-6 + margin: + class: _none + margin_left: + class: _none + margin_top: + class: mt-5 + margin_right: + class: _none + margin_bottom: + class: mb-6 + container_wrapper_bg_color_class: '' + container_wrapper_bg_media: null + container: container + section_classes: '' + section_attributes: null + regions_classes: + blb_region_col_1: '' + blb_region_col_2: '' + regions_attributes: + blb_region_col_1: null + blb_region_col_2: null + breakpoints: + desktop: blb_col_6_6 + tablet: blb_col_6_6 + mobile: blb_col_12 + layout_regions_classes: + blb_region_col_1: + - col-lg-6 + - col-md-6 + - col-12 + blb_region_col_2: + - col-lg-6 + - col-md-6 + - col-12 + context_mapping: { } + remove_gutters: '0' + components: + 10597bd4-6e58-44e0-810e-dc51c735d546: + uuid: 10597bd4-6e58-44e0-810e-dc51c735d546 + region: blb_region_col_1 + configuration: + id: 'field_block:commerce_product:physical:images' + label: Images + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: bootstrap_basic_image_gallery_formatter + label: visually_hidden + settings: + image_style: cklb_medium_max_1144px + thumbnails_per_row: '8' + thumbnail_image_style: thumbnail + modal_image_style: '' + carousel_autorotate: 0 + carousel_interval: '5000' + lazyload: 1 + third_party_settings: { } + weight: 0 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 91e1682e-ead4-4ecb-a750-66ed20562730: + uuid: 91e1682e-ead4-4ecb-a750-66ed20562730 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:physical:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: string + label: visually_hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + cfa79187-1702-403e-9a94-5852b742ce5a: + uuid: cfa79187-1702-403e-9a94-5852b742ce5a + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product_variation:physical:price' + label: Price + label_display: '0' + provider: layout_builder + context_mapping: + entity: '@commerce_product.product_variation_route_context:commerce_product_variation' + formatter: + type: commerce_price_calculated + label: visually_hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + adjustment_types: + fee: fee + promotion: promotion + tax: '0' + shipping: '0' + shipping_promotion: '0' + third_party_settings: { } + weight: 2 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 7c5ef025-d85d-43cc-9b9f-7ca7ea3665e7: + uuid: 7c5ef025-d85d-43cc-9b9f-7ca7ea3665e7 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:physical:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 3 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: mt-4 + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 728d0b7d-fe5c-4ce3-b1dc-4a3bf69711f2: + uuid: 728d0b7d-fe5c-4ce3-b1dc-4a3bf69711f2 + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:physical:variations' + label: Variations + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: commerce_add_to_cart + label: visually_hidden + settings: + combine: true + third_party_settings: { } + weight: 4 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + scroll_effects: + class: null + 00f1d6e3-d266-40fc-9392-9ac115d477dc: + uuid: 00f1d6e3-d266-40fc-9392-9ac115d477dc + region: blb_region_col_2 + configuration: + id: 'field_block:commerce_product:physical:product_collections' + label: 'Product Collections' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_label + label: visually_hidden + settings: + link: false + third_party_settings: { } + weight: 0 + additional: + bootstrap_styles: + block_style: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + text_color: + class: null + text_alignment: + class: null + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: mb-4 + scroll_effects: + class: null + third_party_settings: + layout_builder_lock: + lock: + 1: 1 + 2: 2 + 4: 4 + layout_builder_restrictions: + allowed_block_categories: + - 'Chaos Tools' + - Commerce + - 'Content fields' + - 'Custom block types' + - Forms + - Help + - 'Inline blocks' + - 'Lists (Views)' + - Menus + - System + - User + - core + entity_view_mode_restriction: + allowed_layouts: + - 'bootstrap_layout_builder:blb_col_1' + - 'bootstrap_layout_builder:blb_col_2' + - 'bootstrap_layout_builder:blb_col_3' + - 'bootstrap_layout_builder:blb_col_4' + - 'bootstrap_layout_builder:blb_col_5' + - 'bootstrap_layout_builder:blb_col_6' + - 'bootstrap_layout_builder:blb_col_7' + - 'bootstrap_layout_builder:blb_col_8' + - 'bootstrap_layout_builder:blb_col_9' + - 'bootstrap_layout_builder:blb_col_10' + - 'bootstrap_layout_builder:blb_col_11' + - 'bootstrap_layout_builder:blb_col_12' + blacklisted_blocks: { } + whitelisted_blocks: { } + restricted_categories: { } +_core: + default_config_hash: zuwYEzRgN7aOYz1y7I0eH_HsOJxRFwf6w8eDqOeIhxM +id: commerce_product.physical.default +targetEntityType: commerce_product +bundle: physical +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 2 + region: content + images: + type: image + label: hidden + settings: + image_link: '' + image_style: '' + third_party_settings: { } + weight: 1 + region: content + title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content + variations: + type: commerce_add_to_cart + label: hidden + settings: + combine: true + third_party_settings: { } + weight: 3 + region: content +hidden: + created: true + layout_builder__layout: true + product_brand: true + product_collections: true + product_tags: true + search_api_excerpt: true + stores: true + uid: true diff --git a/config/sync/core.entity_view_display.commerce_product.physical.teaser.yml b/config/sync/core.entity_view_display.commerce_product.physical.teaser.yml new file mode 100644 index 0000000..1a867c0 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.physical.teaser.yml @@ -0,0 +1,53 @@ +uuid: 55266e0f-9b5c-40a5-9916-614362046dc3 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - core.entity_view_mode.commerce_product.teaser + - field.field.commerce_product.physical.body + - field.field.commerce_product.physical.images + - field.field.commerce_product.physical.layout_builder__layout + - field.field.commerce_product.physical.product_brand + - field.field.commerce_product.physical.product_collections + - field.field.commerce_product.physical.product_tags + - image.style.product_teaser + module: + - image_delta_formatter +_core: + default_config_hash: eawBKb3tFyLVpMFfMsWFn1H9LTUH10tNssiLKcdcR4g +id: commerce_product.physical.teaser +targetEntityType: commerce_product +bundle: physical +mode: teaser +content: + images: + type: image_delta_formatter + label: hidden + settings: + deltas: '0' + image_style: product_teaser + image_link: content + deltas_reversed: 0 + third_party_settings: { } + weight: 0 + region: content + title: + type: string + label: hidden + settings: + link_to_entity: true + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + created: true + layout_builder__layout: true + product_brand: true + product_collections: true + product_tags: true + search_api_excerpt: true + stores: true + uid: true + variations: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml b/config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml new file mode 100644 index 0000000..c6a39a9 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml @@ -0,0 +1,41 @@ +uuid: 42123a94-0848-4685-8105-37754ea8f352 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.default + - core.entity_view_mode.commerce_product_variation.cart + module: + - commerce_price + enforced: + module: + - commerce_cart + - commerce_product +_core: + default_config_hash: 6GpSQzJM6086KplhyiaTF3ezvQ_ecs8bIcW4GQMzrJU +id: commerce_product_variation.default.cart +targetEntityType: commerce_product_variation +bundle: default +mode: cart +content: + list_price: + label: above + type: commerce_price_default + weight: -1 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + product_id: + type: entity_reference_label + weight: 0 + label: hidden + settings: + link: true + third_party_settings: { } + region: content +hidden: + price: true + sku: true + title: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.default.yml b/config/sync/core.entity_view_display.commerce_product_variation.default.default.yml new file mode 100644 index 0000000..1447705 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.default.default.yml @@ -0,0 +1,39 @@ +uuid: 37a3c141-4c27-4d76-9343-62aa1f67bd5f +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.default + module: + - commerce_price +_core: + default_config_hash: KndzTtIhwtiCtqB-cprvsxgTJgIEMVcmtRH8fzu3XEg +id: commerce_product_variation.default.default +targetEntityType: commerce_product_variation +bundle: default +mode: default +content: + list_price: + label: inline + type: commerce_price_default + weight: -1 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + price: + label: visually_hidden + type: commerce_price_default + weight: 0 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + product_id: true + search_api_excerpt: true + sku: true + title: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml b/config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml new file mode 100644 index 0000000..07d4eff --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml @@ -0,0 +1,47 @@ +uuid: 8c568040-f103-4269-a012-d0b9422ec096 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.default + - core.entity_view_mode.commerce_product_variation.summary + module: + - commerce_price + enforced: + module: + - commerce_checkout +_core: + default_config_hash: jmDRQILFIWJUS3jS-qLF10aGc1IXnvFEBizwJl94FfU +id: commerce_product_variation.default.summary +targetEntityType: commerce_product_variation +bundle: default +mode: summary +content: + list_price: + label: above + type: commerce_price_default + weight: -1 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + product_id: + type: entity_reference_label + weight: 0 + label: hidden + settings: + link: true + third_party_settings: { } + region: content + title: + label: hidden + type: string + weight: -5 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + price: true + sku: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml b/config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml new file mode 100644 index 0000000..8258df9 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml @@ -0,0 +1,32 @@ +uuid: 4429498a-1a54-4c83-b888-90743621f915 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.default + - core.entity_view_mode.commerce_product_variation.teaser + module: + - commerce_price +_core: + default_config_hash: i1-U8Tq9iLdXil6x70Ugg3mOEaGo11m7-vIkAURvBTo +id: commerce_product_variation.default.teaser +targetEntityType: commerce_product_variation +bundle: default +mode: teaser +content: + price: + type: commerce_price_default + weight: 6 + region: content + label: hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + list_price: true + product_id: true + search_api_excerpt: true + sku: true + title: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml new file mode 100644 index 0000000..98e905a --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml @@ -0,0 +1,36 @@ +uuid: 4ab071ea-1584-468b-8a84-e8f9703a2dec +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - core.entity_view_mode.commerce_product_variation.cart + - field.field.commerce_product_variation.media_license_download.commerce_file + - field.field.commerce_product_variation.media_license_download.license_expiration + - field.field.commerce_product_variation.media_license_download.license_type +_core: + default_config_hash: z-1OMrTdpmJb8piPJ2wnvPtDDf-6_hx_hKRiBvGAe3A +id: commerce_product_variation.media_license_download.cart +targetEntityType: commerce_product_variation +bundle: media_license_download +mode: cart +content: + title: + type: string + weight: 0 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } +hidden: + commerce_file: true + commerce_variation_cart_form: true + license_expiration: true + license_type: true + list_price: true + price: true + product_id: true + search_api_excerpt: true + sku: true + uk_tax_rate: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml new file mode 100644 index 0000000..e82e7d7 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml @@ -0,0 +1,38 @@ +uuid: 9f65e637-d70e-4493-a95a-df4b60172238 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - field.field.commerce_product_variation.media_license_download.commerce_file + - field.field.commerce_product_variation.media_license_download.license_expiration + - field.field.commerce_product_variation.media_license_download.license_type + module: + - commerce_price +_core: + default_config_hash: M4BqI9GuIycav9OqpaRCFrrTYBgvt_oxrA-6EfE7msw +id: commerce_product_variation.media_license_download.default +targetEntityType: commerce_product_variation +bundle: media_license_download +mode: default +content: + price: + type: commerce_price_default + label: hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + weight: 3 + region: content +hidden: + commerce_file: true + commerce_variation_cart_form: true + license_expiration: true + license_type: true + list_price: true + product_id: true + search_api_excerpt: true + sku: true + title: true + uk_tax_rate: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml new file mode 100644 index 0000000..255440c --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml @@ -0,0 +1,36 @@ +uuid: 6b6f9f2d-e397-41f3-a71a-7f87537102de +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - core.entity_view_mode.commerce_product_variation.summary + - field.field.commerce_product_variation.media_license_download.commerce_file + - field.field.commerce_product_variation.media_license_download.license_expiration + - field.field.commerce_product_variation.media_license_download.license_type +_core: + default_config_hash: xgNFnZjLxm9kFH_rzTrmUCigP9cHi-HBbIHEZiOP9Wk +id: commerce_product_variation.media_license_download.summary +targetEntityType: commerce_product_variation +bundle: media_license_download +mode: summary +content: + title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: + commerce_file: true + commerce_variation_cart_form: true + license_expiration: true + license_type: true + list_price: true + price: true + product_id: true + search_api_excerpt: true + sku: true + uk_tax_rate: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml new file mode 100644 index 0000000..5076b51 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml @@ -0,0 +1,55 @@ +uuid: 321fa4ce-50d0-4e16-aeb5-7d20f45ff0a1 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - core.entity_view_mode.commerce_product_variation.teaser + - field.field.commerce_product_variation.media_license_download.commerce_file + - field.field.commerce_product_variation.media_license_download.license_expiration + - field.field.commerce_product_variation.media_license_download.license_type + module: + - commerce_price + - field_group +third_party_settings: + field_group: + group_pdf_download: + children: + - price + label: Download + parent_name: '' + region: content + weight: 0 + format_type: fieldset + format_settings: + classes: '' + show_empty_fields: false + id: '' + description: '' +_core: + default_config_hash: rhEwvAu2UMbpsnwkgvApHrxccDXwlvkepZLle-GRwoE +id: commerce_product_variation.media_license_download.teaser +targetEntityType: commerce_product_variation +bundle: media_license_download +mode: teaser +content: + price: + type: commerce_price_default + label: hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + weight: 0 + region: content +hidden: + commerce_file: true + commerce_variation_cart_form: true + license_expiration: true + license_type: true + list_price: true + product_id: true + search_api_excerpt: true + sku: true + title: true + uk_tax_rate: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml new file mode 100644 index 0000000..be01230 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml @@ -0,0 +1,42 @@ +uuid: 7068c782-c964-49a4-b629-5bfd5fa67f40 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_physical + - core.entity_view_mode.commerce_product_variation.cart + - field.field.commerce_product_variation.media_physical.weight + module: + - commerce_price +_core: + default_config_hash: yQe-Mzk_ot804cY5kZ5WyBusFPgodbhQ9ETwSl_Lf6o +id: commerce_product_variation.media_physical.cart +targetEntityType: commerce_product_variation +bundle: media_physical +mode: cart +content: + list_price: + label: above + type: commerce_price_default + weight: -1 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + price: + label: above + type: commerce_price_default + weight: 0 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + product_id: true + search_api_excerpt: true + sku: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml new file mode 100644 index 0000000..01bde3f --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml @@ -0,0 +1,33 @@ +uuid: 997de44e-3767-49b6-8635-368656d76cdd +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_physical + - field.field.commerce_product_variation.media_physical.weight + module: + - commerce_price +_core: + default_config_hash: BMOfqfr_PRRwlb5m0hZ559cdVw8GHJcnXqdq4rrNbKg +id: commerce_product_variation.media_physical.default +targetEntityType: commerce_product_variation +bundle: media_physical +mode: default +content: + price: + type: commerce_price_default + label: hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + weight: 3 + region: content +hidden: + commerce_variation_cart_form: true + list_price: true + product_id: true + search_api_excerpt: true + sku: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml new file mode 100644 index 0000000..e0ad4b6 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml @@ -0,0 +1,42 @@ +uuid: 72f07a96-8deb-4ca7-ab27-ad9f7add96d3 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_physical + - core.entity_view_mode.commerce_product_variation.summary + - field.field.commerce_product_variation.media_physical.weight + module: + - commerce_price +_core: + default_config_hash: OaTEgEI91A1aFh-FQfTeb3XgNIcii9wMD5LYO5X66Ns +id: commerce_product_variation.media_physical.summary +targetEntityType: commerce_product_variation +bundle: media_physical +mode: summary +content: + list_price: + label: above + type: commerce_price_default + weight: -1 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + price: + label: above + type: commerce_price_default + weight: 0 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + product_id: true + search_api_excerpt: true + sku: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml new file mode 100644 index 0000000..b28caa7 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml @@ -0,0 +1,54 @@ +uuid: 7b86d7d0-5753-421e-8ade-e6d850296ce9 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_physical + - core.entity_view_mode.commerce_product_variation.teaser + - field.field.commerce_product_variation.media_physical.weight + module: + - commerce_order +_core: + default_config_hash: EW8ME2akKnvFwV9o1ERUnbmiFD8kdUpbmAMOgMxS5JA +id: commerce_product_variation.media_physical.teaser +targetEntityType: commerce_product_variation +bundle: media_physical +mode: teaser +content: + list_price: + type: commerce_price_calculated + label: visually_hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + adjustment_types: + fee: fee + promotion: promotion + tax: '0' + shipping: '0' + shipping_promotion: '0' + third_party_settings: { } + weight: -1 + region: content + price: + type: commerce_price_calculated + label: visually_hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + adjustment_types: + fee: fee + promotion: promotion + tax: '0' + shipping: '0' + shipping_promotion: '0' + third_party_settings: { } + weight: 0 + region: content +hidden: + commerce_variation_cart_form: true + product_id: true + search_api_excerpt: true + sku: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml b/config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml new file mode 100644 index 0000000..86d004c --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml @@ -0,0 +1,38 @@ +uuid: de4b3f8e-f1a7-4c9d-8bbc-3f8997b3b13a +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.physical + - core.entity_view_mode.commerce_product_variation.cart + - field.field.commerce_product_variation.physical.weight +_core: + default_config_hash: YQ_35Qk21GzEgX1KmzQ5oL2oA_fsgQTXDZCbXELH-1E +id: commerce_product_variation.physical.cart +targetEntityType: commerce_product_variation +bundle: physical +mode: cart +content: + product_id: + type: entity_reference_label + weight: 0 + region: content + label: hidden + settings: + link: true + third_party_settings: { } + sku: + type: string + weight: 1 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + list_price: true + price: true + search_api_excerpt: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml b/config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml new file mode 100644 index 0000000..ffa1f66 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml @@ -0,0 +1,41 @@ +uuid: 72266a14-d0d1-4847-af97-d93475192ace +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.physical + - field.field.commerce_product_variation.physical.weight + module: + - commerce_price +_core: + default_config_hash: _iubwpSRkl9kfo7BtWI1H50cl9H1SSchxA4A7XVAcTM +id: commerce_product_variation.physical.default +targetEntityType: commerce_product_variation +bundle: physical +mode: default +content: + list_price: + label: inline + type: commerce_price_default + weight: -1 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + price: + label: visually_hidden + type: commerce_price_default + weight: 0 + region: content + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + product_id: true + search_api_excerpt: true + sku: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml b/config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml new file mode 100644 index 0000000..c908afa --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml @@ -0,0 +1,48 @@ +uuid: 55b28ffb-c7cb-47a7-93cc-cf871b654e48 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.physical + - core.entity_view_mode.commerce_product_variation.summary + - field.field.commerce_product_variation.physical.weight + module: + - commerce_price +_core: + default_config_hash: gDesVXVs1WfsXPfBQAN8YINtLldhbZmq9ErCj0SufnA +id: commerce_product_variation.physical.summary +targetEntityType: commerce_product_variation +bundle: physical +mode: summary +content: + price: + type: commerce_price_default + weight: 2 + region: content + label: hidden + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + sku: + type: string + weight: 0 + region: content + label: inline + settings: + link_to_entity: false + third_party_settings: { } + title: + type: string + weight: 1 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + list_price: true + product_id: true + search_api_excerpt: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml b/config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml new file mode 100644 index 0000000..b8d597f --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml @@ -0,0 +1,34 @@ +uuid: 3139cffc-2197-4e6a-af23-660431877642 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.physical + - core.entity_view_mode.commerce_product_variation.teaser + - field.field.commerce_product_variation.physical.weight + module: + - commerce_price +_core: + default_config_hash: '-f1lCIlfVHUdsQpo75fePf7UQX3YpB9CP9hS900Cdgs' +id: commerce_product_variation.physical.teaser +targetEntityType: commerce_product_variation +bundle: physical +mode: teaser +content: + price: + label: hidden + type: commerce_price_default + weight: 6 + region: content + settings: + currency_display: symbol + strip_trailing_zeroes: false + third_party_settings: { } +hidden: + commerce_variation_cart_form: true + list_price: true + product_id: true + search_api_excerpt: true + sku: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml b/config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml new file mode 100644 index 0000000..6d9c740 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml @@ -0,0 +1,33 @@ +uuid: 0046036c-ce6f-45dd-9232-50c44cb8fb28 +langcode: en +status: true +dependencies: + config: + - commerce_shipping.commerce_shipment_type.default + - core.entity_view_mode.commerce_shipment.checkout + module: + - commerce_shipping +_core: + default_config_hash: 2JBHZzeo3LK-Qh-kgIGPCI0ynnd84J6lc6L04-uV5Jc +id: commerce_shipment.default.checkout +targetEntityType: commerce_shipment +bundle: default +mode: checkout +content: + shipping_method: + label: above + type: commerce_shipping_method + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + amount: true + items: true + original_amount: true + package_type: true + shipping_profile: true + state: true + title: true + tracking_code: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_shipment.default.default.yml b/config/sync/core.entity_view_display.commerce_shipment.default.default.yml new file mode 100644 index 0000000..27efc2b --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_shipment.default.default.yml @@ -0,0 +1,86 @@ +uuid: aac79e4b-6c1e-4fbe-968a-ac021ed2b92e +langcode: en +status: true +dependencies: + config: + - commerce_shipping.commerce_shipment_type.default + module: + - commerce_price + - commerce_shipping + - entity_reference_revisions + - state_machine +_core: + default_config_hash: hIwmDy-Bge0z2nIR2MUruBzjfF2IwcLl1wwY7xVdJbo +id: commerce_shipment.default.default +targetEntityType: commerce_shipment +bundle: default +mode: default +content: + amount: + type: commerce_price_default + weight: 5 + region: content + label: above + settings: + strip_trailing_zeroes: false + currency_display: symbol + third_party_settings: { } + items: + type: commerce_shipment_item_table + weight: 1 + region: content + label: hidden + settings: { } + third_party_settings: { } + package_type: + type: string + weight: 2 + region: content + label: above + settings: + link_to_entity: false + third_party_settings: { } + shipping_method: + label: above + type: commerce_shipping_method + weight: 4 + region: content + settings: { } + third_party_settings: { } + shipping_profile: + type: entity_reference_revisions_entity_view + weight: 3 + region: content + label: above + settings: + view_mode: default + link: '' + third_party_settings: { } + state: + label: hidden + type: state_transition_form + weight: 7 + region: content + settings: + require_confirmation: true + use_modal: true + third_party_settings: { } + title: + type: string + weight: 0 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + tracking_code: + type: string + weight: 6 + region: content + label: above + settings: + link_to_entity: false + third_party_settings: { } +hidden: + original_amount: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_shipment.default.user.yml b/config/sync/core.entity_view_display.commerce_shipment.default.user.yml new file mode 100644 index 0000000..52bf288 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_shipment.default.user.yml @@ -0,0 +1,40 @@ +uuid: 8bb317ac-dd5d-4074-b14d-5134caa328ea +langcode: en +status: true +dependencies: + config: + - commerce_shipping.commerce_shipment_type.default + - core.entity_view_mode.commerce_shipment.user + module: + - commerce_shipping +_core: + default_config_hash: _aTxdvXljvuXCB4wfNW8kQtUas_BE-_VmFH8lzSAJ7E +id: commerce_shipment.default.user +targetEntityType: commerce_shipment +bundle: default +mode: user +content: + shipping_method: + type: commerce_shipping_method + weight: 0 + label: above + region: content + settings: { } + third_party_settings: { } + tracking_code: + type: commerce_tracking_link + weight: 1 + label: hidden + region: content + settings: { } + third_party_settings: { } +hidden: + amount: true + items: true + original_amount: true + package_type: true + shipping_profile: true + shipping_service: true + state: true + title: true + weight: true diff --git a/config/sync/core.entity_view_display.commerce_store.online.default.yml b/config/sync/core.entity_view_display.commerce_store.online.default.yml new file mode 100644 index 0000000..7d41f1a --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_store.online.default.yml @@ -0,0 +1,31 @@ +uuid: 4c099433-8b2e-4e1a-a805-a9f71ff146a2 +langcode: en +status: true +dependencies: + config: + - commerce_store.commerce_store_type.online + module: + - address +_core: + default_config_hash: TXXGt2nhVIkNciw-z_ybNwsIZnsyMLKvqUFjsZFUmwI +id: commerce_store.online.default +targetEntityType: commerce_store +bundle: online +mode: default +content: + address: + type: address_default + weight: 1 + label: above + settings: { } + third_party_settings: { } + region: content +hidden: + billing_countries: true + created: true + default_currency: true + is_default: true + mail: true + name: true + timezone: true + uid: true diff --git a/config/sync/core.entity_view_display.media.audio.default.yml b/config/sync/core.entity_view_display.media.audio.default.yml new file mode 100644 index 0000000..2f9d907 --- /dev/null +++ b/config/sync/core.entity_view_display.media.audio.default.yml @@ -0,0 +1,32 @@ +uuid: a992d97a-7250-49a1-afa1-b8c09c87a876 +langcode: en +status: true +dependencies: + config: + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file +_core: + default_config_hash: AS765MdDfNpK6K5eE7WVnBvpynClz_havy1R3bO3gVo +id: media.audio.default +targetEntityType: media +bundle: audio +mode: default +content: + field_media_audio_file: + type: file_audio + label: visually_hidden + settings: + controls: true + autoplay: false + loop: false + multiple_file_display_type: tags + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + name: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.audio.media_library.yml b/config/sync/core.entity_view_display.media.audio.media_library.yml new file mode 100644 index 0000000..73798bc --- /dev/null +++ b/config/sync/core.entity_view_display.media.audio.media_library.yml @@ -0,0 +1,32 @@ +uuid: 7ab3c767-f46b-4f88-a797-64ae3fc9ab34 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.audio.field_media_audio_file + - image.style.thumbnail + - media.type.audio + module: + - image +_core: + default_config_hash: oxp7yFz5G5Yg0Q00XN-9LC_eX4w8wj7vojjkd3XuaQs +id: media.audio.media_library +targetEntityType: media +bundle: audio +mode: media_library +content: + thumbnail: + type: image + label: hidden + settings: + image_link: '' + image_style: thumbnail + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + field_media_audio_file: true + name: true + uid: true diff --git a/config/sync/core.entity_view_display.media.document.default.yml b/config/sync/core.entity_view_display.media.document.default.yml new file mode 100644 index 0000000..0113b84 --- /dev/null +++ b/config/sync/core.entity_view_display.media.document.default.yml @@ -0,0 +1,28 @@ +uuid: 9d9f906f-ef25-499d-ae05-3629a4bc1667 +langcode: en +status: true +dependencies: + config: + - field.field.media.document.field_media_document + - media.type.document + module: + - file +_core: + default_config_hash: XxUyhaTuM0OUUZpr8G6jdrFBEh5eag7auWxBKhm6cvY +id: media.document.default +targetEntityType: media +bundle: document +mode: default +content: + field_media_document: + type: file_default + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + created: true + name: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.document.media_library.yml b/config/sync/core.entity_view_display.media.document.media_library.yml new file mode 100644 index 0000000..6ec6934 --- /dev/null +++ b/config/sync/core.entity_view_display.media.document.media_library.yml @@ -0,0 +1,32 @@ +uuid: 5f51066a-c13c-4b01-98fb-88a3bcbd5f90 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.document.field_media_document + - image.style.thumbnail + - media.type.document + module: + - image +_core: + default_config_hash: I5UTk5ubfYtD3-bkArNVwSyFASGkM7D3OATxRwID9I4 +id: media.document.media_library +targetEntityType: media +bundle: document +mode: media_library +content: + thumbnail: + type: image + label: hidden + settings: + image_link: '' + image_style: thumbnail + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + field_media_document: true + name: true + uid: true diff --git a/config/sync/core.entity_view_display.media.image.default.yml b/config/sync/core.entity_view_display.media.image.default.yml new file mode 100644 index 0000000..57ad090 --- /dev/null +++ b/config/sync/core.entity_view_display.media.image.default.yml @@ -0,0 +1,31 @@ +uuid: 226f6527-23af-416c-8069-f830e6a3df83 +langcode: en +status: true +dependencies: + config: + - field.field.media.image.field_media_image + - image.style.large + - media.type.image + module: + - image +_core: + default_config_hash: whJrNezqUJ7Qhg7raMQj2Hz9JPiWxijezhWIEN9BVVk +id: media.image.default +targetEntityType: media +bundle: image +mode: default +content: + field_media_image: + type: image + label: visually_hidden + settings: + image_link: '' + image_style: large + third_party_settings: { } + weight: 1 + region: content +hidden: + created: true + name: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.image.media_library.yml b/config/sync/core.entity_view_display.media.image.media_library.yml new file mode 100644 index 0000000..aeb5092 --- /dev/null +++ b/config/sync/core.entity_view_display.media.image.media_library.yml @@ -0,0 +1,32 @@ +uuid: 3aa24e9d-3203-4c48-9659-794956f74588 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.image.field_media_image + - image.style.medium + - media.type.image + module: + - image +_core: + default_config_hash: p4SdSdLBlqfympeNav_Tdpn0-pL62tbjc348_zcPof4 +id: media.image.media_library +targetEntityType: media +bundle: image +mode: media_library +content: + thumbnail: + type: image + label: hidden + settings: + image_link: '' + image_style: medium + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + field_media_image: true + name: true + uid: true diff --git a/config/sync/core.entity_view_display.media.remote_video.default.yml b/config/sync/core.entity_view_display.media.remote_video.default.yml new file mode 100644 index 0000000..2f5f124 --- /dev/null +++ b/config/sync/core.entity_view_display.media.remote_video.default.yml @@ -0,0 +1,32 @@ +uuid: 7bda44a2-1563-439a-a9b2-42f34797480b +langcode: en +status: true +dependencies: + config: + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - media +_core: + default_config_hash: zQoBQ0BtnMM_rlDdgftyu6eI4AVs9mo5K8xq7NFO2Zc +id: media.remote_video.default +targetEntityType: media +bundle: remote_video +mode: default +content: + field_media_oembed_video: + type: oembed + label: hidden + settings: + max_width: 0 + max_height: 0 + loading: + attribute: eager + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + name: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.remote_video.media_library.yml b/config/sync/core.entity_view_display.media.remote_video.media_library.yml new file mode 100644 index 0000000..aeeb8e2 --- /dev/null +++ b/config/sync/core.entity_view_display.media.remote_video.media_library.yml @@ -0,0 +1,32 @@ +uuid: 9bcd7cd7-acb3-446c-bc5c-5cdfb7a7a348 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.remote_video.field_media_oembed_video + - image.style.medium + - media.type.remote_video + module: + - image +_core: + default_config_hash: '-Rhy5VOFbfUBJ2-X5RA_fw5NipHP2lhdMZU886jRlts' +id: media.remote_video.media_library +targetEntityType: media +bundle: remote_video +mode: media_library +content: + thumbnail: + type: image + label: hidden + settings: + image_link: '' + image_style: medium + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + field_media_oembed_video: true + name: true + uid: true diff --git a/config/sync/core.entity_view_display.media.video.default.yml b/config/sync/core.entity_view_display.media.video.default.yml new file mode 100644 index 0000000..a79b619 --- /dev/null +++ b/config/sync/core.entity_view_display.media.video.default.yml @@ -0,0 +1,35 @@ +uuid: e477f56e-464e-4c76-b91f-f4a6c40ca7d3 +langcode: en +status: true +dependencies: + config: + - field.field.media.video.field_media_video_file + - media.type.video + module: + - file +_core: + default_config_hash: SxvbuGh-6cQMxl9bBV27-hGI46u7ZvwlMm5ObaJMNnw +id: media.video.default +targetEntityType: media +bundle: video +mode: default +content: + field_media_video_file: + type: file_video + label: visually_hidden + settings: + controls: true + autoplay: false + loop: false + multiple_file_display_type: tags + muted: false + width: 640 + height: 480 + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + name: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.video.media_library.yml b/config/sync/core.entity_view_display.media.video.media_library.yml new file mode 100644 index 0000000..03517d0 --- /dev/null +++ b/config/sync/core.entity_view_display.media.video.media_library.yml @@ -0,0 +1,32 @@ +uuid: 2423c449-d5cb-44ed-a0fc-c09cd851c3cd +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.video.field_media_video_file + - image.style.thumbnail + - media.type.video + module: + - image +_core: + default_config_hash: F66SSIVwOZMKAldnejWuX2lgs7_WAeahriyGgCpPj0Q +id: media.video.media_library +targetEntityType: media +bundle: video +mode: media_library +content: + thumbnail: + type: image + label: hidden + settings: + image_link: '' + image_style: thumbnail + third_party_settings: { } + weight: 0 + region: content +hidden: + created: true + field_media_video_file: true + name: true + uid: true diff --git a/config/sync/core.entity_view_display.node.cklb_landing_page.default.yml b/config/sync/core.entity_view_display.node.cklb_landing_page.default.yml new file mode 100644 index 0000000..1edc5eb --- /dev/null +++ b/config/sync/core.entity_view_display.node.cklb_landing_page.default.yml @@ -0,0 +1,154 @@ +uuid: f66d8ee4-f7cc-49b1-949b-18078aab6486 +langcode: en +status: true +dependencies: + config: + - field.field.node.cklb_landing_page.cklb_description + - field.field.node.cklb_landing_page.cklb_image + - field.field.node.cklb_landing_page.layout_builder__layout + - node.type.cklb_landing_page + module: + - bootstrap_layout_builder + - layout_builder + - layout_builder_restrictions + - user +third_party_settings: + layout_builder: + enabled: true + allow_custom: true + sections: + - + layout_id: 'bootstrap_layout_builder:blb_col_1' + layout_settings: + label: Content + container_wrapper_classes: '' + container_wrapper_attributes: null + container_wrapper: + bootstrap_styles: + background: + background_type: color + background_color: + class: null + background_media: + image: + media_id: null + video: + media_id: null + background_options: + background_position: center + background_repeat: no-repeat + background_attachment: not_fixed + background_size: cover + padding: + class: _none + padding_left: + class: _none + padding_top: + class: _none + padding_right: + class: _none + padding_bottom: + class: _none + margin: + class: _none + margin_left: + class: _none + margin_top: + class: _none + margin_right: + class: _none + margin_bottom: + class: _none + container_wrapper_bg_color_class: '' + container_wrapper_bg_media: null + container: container + section_classes: '' + section_attributes: null + regions_classes: + blb_region_col_1: '' + regions_attributes: + blb_region_col_1: { } + breakpoints: { } + layout_regions_classes: { } + context_mapping: { } + remove_gutters: '0' + components: { } + third_party_settings: { } + layout_builder_restrictions: + allowed_block_categories: + - 'Chaos Tools' + - Commerce + - 'Content fields' + - 'Custom block types' + - Forms + - Help + - 'Inline blocks' + - 'Lists (Views)' + - Menus + - System + - User + - core + entity_view_mode_restriction: + allowed_layouts: + - 'bootstrap_layout_builder:blb_col_1' + - 'bootstrap_layout_builder:blb_col_2' + - 'bootstrap_layout_builder:blb_col_3' + - 'bootstrap_layout_builder:blb_col_4' + - 'bootstrap_layout_builder:blb_col_5' + - 'bootstrap_layout_builder:blb_col_6' + - 'bootstrap_layout_builder:blb_col_7' + - 'bootstrap_layout_builder:blb_col_8' + - 'bootstrap_layout_builder:blb_col_9' + - 'bootstrap_layout_builder:blb_col_10' + - 'bootstrap_layout_builder:blb_col_11' + - 'bootstrap_layout_builder:blb_col_12' + - cklb_slideshow + blacklisted_blocks: { } + whitelisted_blocks: { } + restricted_categories: { } + entity_view_mode_restriction_by_region: + allowed_layouts: + - 'bootstrap_layout_builder:blb_col_1' + - 'bootstrap_layout_builder:blb_col_2' + - 'bootstrap_layout_builder:blb_col_3' + - 'bootstrap_layout_builder:blb_col_4' + - 'bootstrap_layout_builder:blb_col_5' + - 'bootstrap_layout_builder:blb_col_6' + - 'bootstrap_layout_builder:blb_col_7' + - 'bootstrap_layout_builder:blb_col_8' + - 'bootstrap_layout_builder:blb_col_9' + - 'bootstrap_layout_builder:blb_col_10' + - 'bootstrap_layout_builder:blb_col_11' + - 'bootstrap_layout_builder:blb_col_12' + - cklb_slideshow +_core: + default_config_hash: LHRZg7QXlwxMDoygIy_2MeZo-ez__IJ2xZAijDXpKvg +id: node.cklb_landing_page.default +targetEntityType: node +bundle: cklb_landing_page +mode: default +content: + cklb_description: + type: basic_string + label: above + settings: { } + third_party_settings: { } + weight: 103 + region: blb_region_col_1 + cklb_image: + type: entity_reference_entity_view + label: above + settings: + view_mode: default + link: false + third_party_settings: { } + weight: 102 + region: blb_region_col_1 + links: + settings: { } + third_party_settings: { } + weight: 100 + region: content +hidden: + layout_builder__layout: true + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml b/config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml new file mode 100644 index 0000000..6cf3b1e --- /dev/null +++ b/config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml @@ -0,0 +1,45 @@ +uuid: 16073b80-f38e-4cd4-97ba-5d2b6315231b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.cklb_landing_page.cklb_description + - field.field.node.cklb_landing_page.cklb_image + - field.field.node.cklb_landing_page.layout_builder__layout + - image.style.cklb_small_max_600px + - node.type.cklb_landing_page + module: + - media + - user +_core: + default_config_hash: cuH00HiJIORHMYJpefj5niK6oyWh9h_Ieav4EVKgvaE +id: node.cklb_landing_page.teaser +targetEntityType: node +bundle: cklb_landing_page +mode: teaser +content: + cklb_description: + type: basic_string + label: visually_hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content + cklb_image: + type: media_thumbnail + label: visually_hidden + settings: + image_link: content + image_style: cklb_small_max_600px + third_party_settings: { } + weight: 0 + region: content + links: + settings: { } + third_party_settings: { } + weight: 2 + region: content +hidden: + layout_builder__layout: true + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.page.default.yml b/config/sync/core.entity_view_display.node.page.default.yml new file mode 100644 index 0000000..9c6639a --- /dev/null +++ b/config/sync/core.entity_view_display.node.page.default.yml @@ -0,0 +1,29 @@ +uuid: cd25ede6-df45-4c6a-a77f-dfc8728dc785 +langcode: en +status: true +dependencies: + config: + - field.field.node.page.body + - node.type.page + module: + - text + - user +_core: + default_config_hash: 02_pmCivtyX6HugprPvP1nZ4xIbLoRnDpYraCfIK5Gg +id: node.page.default +targetEntityType: node +bundle: page +mode: default +content: + body: + label: hidden + type: text_default + weight: 100 + settings: { } + third_party_settings: { } + region: content + links: + weight: 101 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.page.teaser.yml b/config/sync/core.entity_view_display.node.page.teaser.yml new file mode 100644 index 0000000..de83d3e --- /dev/null +++ b/config/sync/core.entity_view_display.node.page.teaser.yml @@ -0,0 +1,31 @@ +uuid: 525d5a6b-3d5b-432a-9fa5-b1ed882290d3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.page.body + - node.type.page + module: + - text + - user +_core: + default_config_hash: llI4JRygXsJJ6fd6zu6CvDt22ffPbTwjUIAYBDUtUNY +id: node.page.teaser +targetEntityType: node +bundle: page +mode: teaser +content: + body: + label: hidden + type: text_summary_or_trimmed + weight: 100 + settings: + trim_length: 600 + third_party_settings: { } + region: content + links: + weight: 101 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.profile.customer.admin.yml b/config/sync/core.entity_view_display.profile.customer.admin.yml new file mode 100644 index 0000000..75a6bd6 --- /dev/null +++ b/config/sync/core.entity_view_display.profile.customer.admin.yml @@ -0,0 +1,38 @@ +uuid: 997d0564-851d-4c2d-8e76-17833bb5a363 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.admin + - field.field.profile.customer.address + - field.field.profile.customer.tax_number + - profile.type.customer + module: + - address + - commerce_tax + enforced: + module: + - commerce_order +_core: + default_config_hash: YIL4nZ3a2ByhSU7C9ITZYsmB6l3GSsvLyGlwNF1_hW4 +id: profile.customer.admin +targetEntityType: profile +bundle: customer +mode: admin +content: + address: + type: address_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + tax_number: + type: commerce_tax_number_default + label: above + settings: + show_verification: true + third_party_settings: { } + weight: 1 + region: content +hidden: { } diff --git a/config/sync/core.entity_view_display.profile.customer.default.yml b/config/sync/core.entity_view_display.profile.customer.default.yml new file mode 100644 index 0000000..79fe5a4 --- /dev/null +++ b/config/sync/core.entity_view_display.profile.customer.default.yml @@ -0,0 +1,37 @@ +uuid: 355e1ed2-012c-49c8-ae39-725033727249 +langcode: en +status: true +dependencies: + config: + - field.field.profile.customer.address + - field.field.profile.customer.tax_number + - profile.type.customer + module: + - address + - commerce_tax + enforced: + module: + - commerce_order +_core: + default_config_hash: zA0MBGUGdWqnBBoC762uDcH92qRZHC8KllbkpOjNUcs +id: profile.customer.default +targetEntityType: profile +bundle: customer +mode: default +content: + address: + type: address_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + tax_number: + type: commerce_tax_number_default + label: above + settings: + show_verification: false + third_party_settings: { } + weight: 1 + region: content +hidden: { } diff --git a/config/sync/core.entity_view_display.user.user.compact.yml b/config/sync/core.entity_view_display.user.user.compact.yml new file mode 100644 index 0000000..c7c65d4 --- /dev/null +++ b/config/sync/core.entity_view_display.user.user.compact.yml @@ -0,0 +1,32 @@ +uuid: 8ee2ea91-bd9e-492b-ae51-9b72d9dc9cfd +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.user.compact + - field.field.user.user.commerce_remote_id + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: T2PsplcZ3qhzqgwW_aYCKQshCg_UQkSsKV45b03pEl4 +id: user.user.compact +targetEntityType: user +bundle: user +mode: compact +content: + user_picture: + type: image + weight: 0 + settings: + image_style: thumbnail + image_link: content + third_party_settings: { } + label: hidden + region: content +hidden: + commerce_remote_id: true + customer_profiles: true + member_for: true diff --git a/config/sync/core.entity_view_display.user.user.default.yml b/config/sync/core.entity_view_display.user.user.default.yml new file mode 100644 index 0000000..e72cf2f --- /dev/null +++ b/config/sync/core.entity_view_display.user.user.default.yml @@ -0,0 +1,33 @@ +uuid: 91c67ac8-039f-4d66-8990-61c36e876dcb +langcode: en +status: true +dependencies: + config: + - field.field.user.user.commerce_remote_id + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: '-OGxjOl6mUBXJUN76cXpzO_0ASwcFd7P__-8PaLRCSM' +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + member_for: + weight: 5 + region: content + user_picture: + type: image + weight: 0 + settings: + image_style: thumbnail + image_link: content + third_party_settings: { } + label: hidden + region: content +hidden: + commerce_remote_id: true + customer_profiles: true diff --git a/config/sync/core.entity_view_mode.block.token.yml b/config/sync/core.entity_view_mode.block.token.yml new file mode 100644 index 0000000..dd6a020 --- /dev/null +++ b/config/sync/core.entity_view_mode.block.token.yml @@ -0,0 +1,10 @@ +uuid: f76f1986-6f0d-4b10-bda8-c337b695c0c7 +langcode: en +status: true +dependencies: + module: + - block +id: block.token +label: Token +targetEntityType: block +cache: true diff --git a/config/sync/core.entity_view_mode.block_content.cklb_h1.yml b/config/sync/core.entity_view_mode.block_content.cklb_h1.yml new file mode 100644 index 0000000..56ae7dd --- /dev/null +++ b/config/sync/core.entity_view_mode.block_content.cklb_h1.yml @@ -0,0 +1,12 @@ +uuid: 50bc1666-4681-4231-af64-570ed8fd6cf9 +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: pWX03_CxqPI_et9oU6OXOAS22Vvfidm6DU7laagvWck +id: block_content.cklb_h1 +label: H1 +targetEntityType: block_content +cache: true diff --git a/config/sync/core.entity_view_mode.block_content.cklb_large.yml b/config/sync/core.entity_view_mode.block_content.cklb_large.yml new file mode 100644 index 0000000..fdbcbce --- /dev/null +++ b/config/sync/core.entity_view_mode.block_content.cklb_large.yml @@ -0,0 +1,12 @@ +uuid: d008d4ff-fcf7-4917-821d-440d452c096e +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: f20s2E1seIUns86dmx14q2pxkjoysDUCyxdwGAKwPwY +id: block_content.cklb_large +label: Large +targetEntityType: block_content +cache: true diff --git a/config/sync/core.entity_view_mode.block_content.cklb_small.yml b/config/sync/core.entity_view_mode.block_content.cklb_small.yml new file mode 100644 index 0000000..4be6439 --- /dev/null +++ b/config/sync/core.entity_view_mode.block_content.cklb_small.yml @@ -0,0 +1,12 @@ +uuid: e43fbd14-6896-43f3-8bf3-95bdb3578a12 +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: kISxC8OZF04B-IeoXT8POG4cNBZZyhoMZ52xgjq8Kp4 +id: block_content.cklb_small +label: Small +targetEntityType: block_content +cache: true diff --git a/config/sync/core.entity_view_mode.block_content.full.yml b/config/sync/core.entity_view_mode.block_content.full.yml new file mode 100644 index 0000000..7c84375 --- /dev/null +++ b/config/sync/core.entity_view_mode.block_content.full.yml @@ -0,0 +1,12 @@ +uuid: c1286831-8099-4955-8afc-0e4cb14edbc5 +langcode: en +status: false +dependencies: + module: + - block_content +_core: + default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg +id: block_content.full +label: Full +targetEntityType: block_content +cache: true diff --git a/config/sync/core.entity_view_mode.block_content.token.yml b/config/sync/core.entity_view_mode.block_content.token.yml new file mode 100644 index 0000000..4c2dea0 --- /dev/null +++ b/config/sync/core.entity_view_mode.block_content.token.yml @@ -0,0 +1,10 @@ +uuid: 70b5e322-fc5d-493a-a333-385488a1ce5f +langcode: en +status: true +dependencies: + module: + - block_content +id: block_content.token +label: Token +targetEntityType: block_content +cache: true diff --git a/config/sync/core.entity_view_mode.comment.full.yml b/config/sync/core.entity_view_mode.comment.full.yml new file mode 100644 index 0000000..56191a6 --- /dev/null +++ b/config/sync/core.entity_view_mode.comment.full.yml @@ -0,0 +1,12 @@ +uuid: d42f3b5e-db72-453f-9710-c9304bd66197 +langcode: en +status: false +dependencies: + module: + - comment +_core: + default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA +id: comment.full +label: 'Full comment' +targetEntityType: comment +cache: true diff --git a/config/sync/core.entity_view_mode.comment.token.yml b/config/sync/core.entity_view_mode.comment.token.yml new file mode 100644 index 0000000..f8ea444 --- /dev/null +++ b/config/sync/core.entity_view_mode.comment.token.yml @@ -0,0 +1,10 @@ +uuid: 355e5881-79d5-4e4a-a66e-ab575e7a2904 +langcode: en +status: true +dependencies: + module: + - comment +id: comment.token +label: Token +targetEntityType: comment +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_order.user.yml b/config/sync/core.entity_view_mode.commerce_order.user.yml new file mode 100644 index 0000000..e000169 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_order.user.yml @@ -0,0 +1,12 @@ +uuid: fb0deadb-0a42-4c3e-81d0-59a6886ce1af +langcode: en +status: true +dependencies: + module: + - commerce_order +_core: + default_config_hash: zGcQPC5MWgNSsQxarSWsXNIVpjb_vDAdcDLPupYmxQ8 +id: commerce_order.user +label: User +targetEntityType: commerce_order +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_product.teaser.yml b/config/sync/core.entity_view_mode.commerce_product.teaser.yml new file mode 100644 index 0000000..562ef6c --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_product.teaser.yml @@ -0,0 +1,12 @@ +uuid: 89fdf22d-1840-40fd-a85d-92ac6b23cf5c +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: QzYaSIqaiERqJfvu7p3boW9bXSJtHsjYtn71AOCKROY +id: commerce_product.teaser +label: Teaser +targetEntityType: commerce_product +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml b/config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml new file mode 100644 index 0000000..cd7bc10 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml @@ -0,0 +1,12 @@ +uuid: 522e8445-c895-40d0-80ba-069770868466 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: ry5RvX-mOnp2GQWzMqSYjPz-jKfP1nSo4Xo4kJCodlE +id: commerce_product_attribute_value.add_to_cart +label: 'Add to Cart Form' +targetEntityType: commerce_product_attribute_value +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_product_variation.cart.yml b/config/sync/core.entity_view_mode.commerce_product_variation.cart.yml new file mode 100644 index 0000000..220ea55 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_product_variation.cart.yml @@ -0,0 +1,16 @@ +uuid: 12cc0e1e-5fa5-4c27-9f79-698a688cab51 +langcode: en +status: true +dependencies: + module: + - commerce_product + enforced: + module: + - commerce_cart + - commerce_product +_core: + default_config_hash: xtrHHgI_SwA-1npf3GB0ntU65fMvm4mxImBtkbmZWSk +id: commerce_product_variation.cart +label: Cart +targetEntityType: commerce_product_variation +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_product_variation.summary.yml b/config/sync/core.entity_view_mode.commerce_product_variation.summary.yml new file mode 100644 index 0000000..be3b0a0 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_product_variation.summary.yml @@ -0,0 +1,15 @@ +uuid: e32dac00-f67c-4af7-814f-5b96d9cafdc3 +langcode: en +status: true +dependencies: + module: + - commerce_product + enforced: + module: + - commerce_checkout +_core: + default_config_hash: 23R0npqqL2T9F-gDL2Lor2GfZj_lDvmv-kwdQzPCxMw +id: commerce_product_variation.summary +label: Summary +targetEntityType: commerce_product_variation +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml b/config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml new file mode 100644 index 0000000..2425d3a --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml @@ -0,0 +1,12 @@ +uuid: dc4c664f-1e51-46c7-bdaf-57b44261ee53 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: Ei5FqsWKK3UnyQ521Bi6vlBL1wJ4TJfkfMzW42DUELI +id: commerce_product_variation.teaser +label: Teaser +targetEntityType: commerce_product_variation +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_shipment.checkout.yml b/config/sync/core.entity_view_mode.commerce_shipment.checkout.yml new file mode 100644 index 0000000..0b53cf6 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_shipment.checkout.yml @@ -0,0 +1,12 @@ +uuid: cdb480b4-fdfe-4c0c-8bf2-1f25753a53d1 +langcode: en +status: true +dependencies: + module: + - commerce_shipping +_core: + default_config_hash: SOM4LMI0fFeahHJLPEPoVldiWGePCGwhTERi0cTjb0U +id: commerce_shipment.checkout +label: Checkout +targetEntityType: commerce_shipment +cache: true diff --git a/config/sync/core.entity_view_mode.commerce_shipment.user.yml b/config/sync/core.entity_view_mode.commerce_shipment.user.yml new file mode 100644 index 0000000..a225664 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_shipment.user.yml @@ -0,0 +1,12 @@ +uuid: 7e678a6b-94e5-482e-8d03-9d3c5cdc5b39 +langcode: en +status: true +dependencies: + module: + - commerce_shipping +_core: + default_config_hash: G40vv9Xuc6Jt1V5H0UcORDW-EUbERkckHwBYkH7mG_Y +id: commerce_shipment.user +label: User +targetEntityType: commerce_shipment +cache: true diff --git a/config/sync/core.entity_view_mode.config_split.token.yml b/config/sync/core.entity_view_mode.config_split.token.yml new file mode 100644 index 0000000..594fad8 --- /dev/null +++ b/config/sync/core.entity_view_mode.config_split.token.yml @@ -0,0 +1,10 @@ +uuid: 6bf0e4c1-1a3a-4ced-a198-7d4bf6ec0711 +langcode: en +status: true +dependencies: + module: + - config_split +id: config_split.token +label: Token +targetEntityType: config_split +cache: true diff --git a/config/sync/core.entity_view_mode.file.token.yml b/config/sync/core.entity_view_mode.file.token.yml new file mode 100644 index 0000000..d1d5394 --- /dev/null +++ b/config/sync/core.entity_view_mode.file.token.yml @@ -0,0 +1,10 @@ +uuid: f58798dd-9dfe-4afb-a051-4ca4a9be0bf9 +langcode: en +status: true +dependencies: + module: + - file +id: file.token +label: Token +targetEntityType: file +cache: true diff --git a/config/sync/core.entity_view_mode.media.full.yml b/config/sync/core.entity_view_mode.media.full.yml new file mode 100644 index 0000000..18e91c4 --- /dev/null +++ b/config/sync/core.entity_view_mode.media.full.yml @@ -0,0 +1,12 @@ +uuid: e09af1f0-7cde-496e-8e82-8cd5e2bb1a41 +langcode: en +status: false +dependencies: + module: + - media +_core: + default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 +id: media.full +label: 'Full content' +targetEntityType: media +cache: true diff --git a/config/sync/core.entity_view_mode.media.media_library.yml b/config/sync/core.entity_view_mode.media.media_library.yml new file mode 100644 index 0000000..2979be8 --- /dev/null +++ b/config/sync/core.entity_view_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: 3670efe5-5e50-47b7-99f1-724f60c95100 +langcode: en +status: true +dependencies: + module: + - media + enforced: + module: + - media_library +_core: + default_config_hash: Tdhz-aDHfDoV1Ul9umtItxGTrjkFzoNAkDw8FWXjYA0 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/config/sync/core.entity_view_mode.menu_link_content.token.yml b/config/sync/core.entity_view_mode.menu_link_content.token.yml new file mode 100644 index 0000000..ac1938f --- /dev/null +++ b/config/sync/core.entity_view_mode.menu_link_content.token.yml @@ -0,0 +1,10 @@ +uuid: 46f94057-ddaf-41c3-9af3-d0da7e191555 +langcode: en +status: true +dependencies: + module: + - menu_link_content +id: menu_link_content.token +label: Token +targetEntityType: menu_link_content +cache: true diff --git a/config/sync/core.entity_view_mode.node.full.yml b/config/sync/core.entity_view_mode.node.full.yml new file mode 100644 index 0000000..7548486 --- /dev/null +++ b/config/sync/core.entity_view_mode.node.full.yml @@ -0,0 +1,12 @@ +uuid: 71688c86-26bc-4835-9c62-3229c1a9e3bf +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk +id: node.full +label: 'Full content' +targetEntityType: node +cache: true diff --git a/config/sync/core.entity_view_mode.node.rss.yml b/config/sync/core.entity_view_mode.node.rss.yml new file mode 100644 index 0000000..751e64d --- /dev/null +++ b/config/sync/core.entity_view_mode.node.rss.yml @@ -0,0 +1,12 @@ +uuid: b07fda21-8679-4c9a-b95f-ccc18ec00bc6 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU +id: node.rss +label: RSS +targetEntityType: node +cache: true diff --git a/config/sync/core.entity_view_mode.node.search_index.yml b/config/sync/core.entity_view_mode.node.search_index.yml new file mode 100644 index 0000000..b3256e8 --- /dev/null +++ b/config/sync/core.entity_view_mode.node.search_index.yml @@ -0,0 +1,12 @@ +uuid: d9451e7f-ca73-40a5-9b4f-0bb3d7267973 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY +id: node.search_index +label: 'Search index' +targetEntityType: node +cache: true diff --git a/config/sync/core.entity_view_mode.node.search_result.yml b/config/sync/core.entity_view_mode.node.search_result.yml new file mode 100644 index 0000000..1ca6dc7 --- /dev/null +++ b/config/sync/core.entity_view_mode.node.search_result.yml @@ -0,0 +1,12 @@ +uuid: cbee4dfb-6e6c-4bbc-b576-a7673c4878bb +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM +id: node.search_result +label: 'Search result highlighting input' +targetEntityType: node +cache: true diff --git a/config/sync/core.entity_view_mode.node.teaser.yml b/config/sync/core.entity_view_mode.node.teaser.yml new file mode 100644 index 0000000..93c05af --- /dev/null +++ b/config/sync/core.entity_view_mode.node.teaser.yml @@ -0,0 +1,12 @@ +uuid: ae5f1a69-8144-4e01-9866-e006bdabe64f +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4 +id: node.teaser +label: Teaser +targetEntityType: node +cache: true diff --git a/config/sync/core.entity_view_mode.node.token.yml b/config/sync/core.entity_view_mode.node.token.yml new file mode 100644 index 0000000..de1a7c7 --- /dev/null +++ b/config/sync/core.entity_view_mode.node.token.yml @@ -0,0 +1,10 @@ +uuid: 901c1801-138d-4834-9220-b40299b417e5 +langcode: en +status: true +dependencies: + module: + - node +id: node.token +label: Token +targetEntityType: node +cache: true diff --git a/config/sync/core.entity_view_mode.path_alias.token.yml b/config/sync/core.entity_view_mode.path_alias.token.yml new file mode 100644 index 0000000..dcc986d --- /dev/null +++ b/config/sync/core.entity_view_mode.path_alias.token.yml @@ -0,0 +1,10 @@ +uuid: cb3f41d9-88b1-4047-814f-d742a7d91f44 +langcode: en +status: true +dependencies: + module: + - path_alias +id: path_alias.token +label: Token +targetEntityType: path_alias +cache: true diff --git a/config/sync/core.entity_view_mode.profile.admin.yml b/config/sync/core.entity_view_mode.profile.admin.yml new file mode 100644 index 0000000..bdeb081 --- /dev/null +++ b/config/sync/core.entity_view_mode.profile.admin.yml @@ -0,0 +1,15 @@ +uuid: e503f9cd-b849-4fc0-bba8-c394bfce04a9 +langcode: en +status: true +dependencies: + module: + - profile + enforced: + module: + - commerce_order +_core: + default_config_hash: rNBHCP7hJFMjP_iDe9-0AsSfkGC98V6Lh_oeOwmLos8 +id: profile.admin +label: Admin +targetEntityType: profile +cache: true diff --git a/config/sync/core.entity_view_mode.shortcut.token.yml b/config/sync/core.entity_view_mode.shortcut.token.yml new file mode 100644 index 0000000..255787c --- /dev/null +++ b/config/sync/core.entity_view_mode.shortcut.token.yml @@ -0,0 +1,10 @@ +uuid: 5f570d34-8f40-4555-9ccd-86bd303254c5 +langcode: en +status: true +dependencies: + module: + - shortcut +id: shortcut.token +label: Token +targetEntityType: shortcut +cache: true diff --git a/config/sync/core.entity_view_mode.taxonomy_term.full.yml b/config/sync/core.entity_view_mode.taxonomy_term.full.yml new file mode 100644 index 0000000..86d1c8a --- /dev/null +++ b/config/sync/core.entity_view_mode.taxonomy_term.full.yml @@ -0,0 +1,12 @@ +uuid: d73f6672-2c2f-4adf-a0d5-f059c0b7e006 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE' +id: taxonomy_term.full +label: 'Taxonomy term page' +targetEntityType: taxonomy_term +cache: true diff --git a/config/sync/core.entity_view_mode.taxonomy_term.token.yml b/config/sync/core.entity_view_mode.taxonomy_term.token.yml new file mode 100644 index 0000000..d2fce20 --- /dev/null +++ b/config/sync/core.entity_view_mode.taxonomy_term.token.yml @@ -0,0 +1,10 @@ +uuid: fa7ebe37-aced-4edb-91ad-710954d45d04 +langcode: en +status: true +dependencies: + module: + - taxonomy +id: taxonomy_term.token +label: Token +targetEntityType: taxonomy_term +cache: true diff --git a/config/sync/core.entity_view_mode.tour.token.yml b/config/sync/core.entity_view_mode.tour.token.yml new file mode 100644 index 0000000..e4e6a83 --- /dev/null +++ b/config/sync/core.entity_view_mode.tour.token.yml @@ -0,0 +1,10 @@ +uuid: ac52c010-0fa6-4b91-8243-9811b6d96c89 +langcode: en +status: true +dependencies: + module: + - tour +id: tour.token +label: Token +targetEntityType: tour +cache: true diff --git a/config/sync/core.entity_view_mode.user.compact.yml b/config/sync/core.entity_view_mode.user.compact.yml new file mode 100644 index 0000000..3d53eea --- /dev/null +++ b/config/sync/core.entity_view_mode.user.compact.yml @@ -0,0 +1,12 @@ +uuid: 3dda7449-9086-4dfb-a4ec-ef7bf1a96e9b +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g +id: user.compact +label: Compact +targetEntityType: user +cache: true diff --git a/config/sync/core.entity_view_mode.user.full.yml b/config/sync/core.entity_view_mode.user.full.yml new file mode 100644 index 0000000..564849f --- /dev/null +++ b/config/sync/core.entity_view_mode.user.full.yml @@ -0,0 +1,12 @@ +uuid: 72417385-d9eb-4731-9819-a721da6ec021 +langcode: en +status: false +dependencies: + module: + - user +_core: + default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM +id: user.full +label: 'User account' +targetEntityType: user +cache: true diff --git a/config/sync/core.entity_view_mode.user.token.yml b/config/sync/core.entity_view_mode.user.token.yml new file mode 100644 index 0000000..713c371 --- /dev/null +++ b/config/sync/core.entity_view_mode.user.token.yml @@ -0,0 +1,10 @@ +uuid: 5ddbbd42-f327-4041-b2db-af24a283023b +langcode: en +status: true +dependencies: + module: + - user +id: user.token +label: Token +targetEntityType: user +cache: true diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml new file mode 100644 index 0000000..0d31dcc --- /dev/null +++ b/config/sync/core.extension.yml @@ -0,0 +1,125 @@ +_core: + default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc +module: + address: 0 + admin_toolbar: 0 + admin_toolbar_tools: 0 + advancedqueue: 0 + automated_cron: 0 + better_exposed_filters: 0 + big_pipe: 0 + block: 0 + block_content: 0 + block_visibility_conditions: 0 + block_visibility_conditions_node: 0 + block_visibility_conditions_taxonomy: 0 + bootstrap_basic_image_gallery: 0 + bootstrap_layout_builder: 0 + bootstrap_styles: 0 + breakpoint: 0 + ckeditor5: 0 + color: 0 + comment: 0 + commerce: 0 + commerce_cart: 0 + commerce_checkout: 0 + commerce_demo: 0 + commerce_file: 0 + commerce_kickstart_core: 0 + commerce_kickstart_layout_builder: 0 + commerce_kickstart_license: 0 + commerce_kickstart_media_product: 0 + commerce_kickstart_physical_product: 0 + commerce_kickstart_product: 0 + commerce_kickstart_search_api_catalog: 0 + commerce_kickstart_shipping: 0 + commerce_kickstart_site: 0 + commerce_license: 0 + commerce_log: 0 + commerce_number_pattern: 0 + commerce_order: 0 + commerce_payment: 0 + commerce_payment_example: 0 + commerce_price: 0 + commerce_product: 0 + commerce_product_tax: 0 + commerce_promotion: 0 + commerce_shipping: 0 + commerce_store: 0 + commerce_tax: 0 + config: 0 + config_rewrite: 0 + config_split: 0 + contextual: 0 + core_views_facets: 0 + datetime: 0 + dblog: 0 + default_content: 0 + dynamic_page_cache: 0 + editor: 0 + entity: 0 + entity_reference_revisions: 0 + facets: 0 + facets_pretty_paths: 0 + field: 0 + field_group: 0 + field_ui: 0 + file: 0 + filter: 0 + help: 0 + history: 0 + image: 0 + image_delta_formatter: 0 + inline_block_title_automatic: 0 + inline_entity_form: 0 + interval: 0 + jquery_ui: 0 + jquery_ui_datepicker: 0 + jquery_ui_slider: 0 + jquery_ui_touch_punch: 0 + layout_builder: 0 + layout_builder_blocks: 0 + layout_builder_lock: 0 + layout_builder_modal: 0 + layout_builder_operation_link: 0 + layout_builder_restrictions: 0 + layout_builder_restrictions_by_region: 0 + layout_discovery: 0 + link: 0 + media: 0 + media_library: 0 + media_library_form_element: 0 + media_library_theme_reset: 0 + menu_link_content: 0 + menu_ui: 0 + mysql: 0 + node: 0 + options: 0 + page_cache: 0 + path: 0 + path_alias: 0 + physical: 0 + profile: 0 + search_api: 0 + search_api_db: 0 + section_library: 0 + shortcut: 0 + state_machine: 0 + symfony_mailer: 0 + system: 0 + taxonomy: 0 + text: 0 + token: 0 + toolbar: 0 + tour: 0 + update: 0 + user: 0 + views_ui: 0 + pathauto: 1 + views: 10 + commerce_kickstart: 1000 +theme: + belgrade: 0 + claro: 0 + centarro_claro: 0 +profile: commerce_kickstart diff --git a/config/sync/core.menu.static_menu_link_overrides.yml b/config/sync/core.menu.static_menu_link_overrides.yml new file mode 100644 index 0000000..2261a22 --- /dev/null +++ b/config/sync/core.menu.static_menu_link_overrides.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM +definitions: { } diff --git a/config/sync/dblog.settings.yml b/config/sync/dblog.settings.yml new file mode 100644 index 0000000..fbd17ea --- /dev/null +++ b/config/sync/dblog.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58 +row_limit: 1000 diff --git a/config/sync/editor.editor.basic_html.yml b/config/sync/editor.editor.basic_html.yml new file mode 100644 index 0000000..86e1410 --- /dev/null +++ b/config/sync/editor.editor.basic_html.yml @@ -0,0 +1,66 @@ +uuid: 1c5bb3b3-1aa8-41a3-bacb-90e7add5aa9d +langcode: en +status: true +dependencies: + config: + - filter.format.basic_html + module: + - ckeditor5 +_core: + default_config_hash: lZlUTSJqWaN3iU0I0fhvQVgqf4ps9fxPPC-g_9aWIRc +format: basic_html +editor: ckeditor5 +settings: + toolbar: + items: + - bold + - italic + - '|' + - link + - '|' + - bulletedList + - numberedList + - '|' + - blockQuote + - drupalInsertImage + - '|' + - heading + - code + - '|' + - sourceEditing + plugins: + ckeditor5_heading: + enabled_headings: + - heading2 + - heading3 + - heading4 + - heading5 + - heading6 + ckeditor5_imageResize: + allow_resize: true + ckeditor5_list: + reversed: false + startIndex: true + ckeditor5_sourceEditing: + allowed_tags: + - '' + - '
    ' + - '
    ' + - '
    ' + - '' + - '
    ' + - '
      ' + - '
        ' + - '

        ' + - '

        ' + - '

        ' + - '

        ' + - '
        ' +image_upload: + status: true + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: 0 + height: 0 diff --git a/config/sync/editor.editor.full_html.yml b/config/sync/editor.editor.full_html.yml new file mode 100644 index 0000000..4a51400 --- /dev/null +++ b/config/sync/editor.editor.full_html.yml @@ -0,0 +1,103 @@ +uuid: ccacf367-e4f9-42ac-894d-edf0b0ed2f32 +langcode: en +status: true +dependencies: + config: + - filter.format.full_html + module: + - ckeditor5 +_core: + default_config_hash: qtbIKnf_F-jhwZ-rl2ajm3BfFNPj8INYFVd2_5k6UFA +format: full_html +editor: ckeditor5 +settings: + toolbar: + items: + - bold + - italic + - strikethrough + - superscript + - subscript + - removeFormat + - '|' + - link + - '|' + - bulletedList + - numberedList + - '|' + - blockQuote + - drupalInsertImage + - insertTable + - horizontalLine + - '|' + - heading + - codeBlock + - '|' + - sourceEditing + plugins: + ckeditor5_heading: + enabled_headings: + - heading2 + - heading3 + - heading4 + - heading5 + - heading6 + ckeditor5_imageResize: + allow_resize: true + ckeditor5_list: + reversed: true + startIndex: true + ckeditor5_sourceEditing: + allowed_tags: { } + ckeditor5_codeBlock: + languages: + - + label: 'Plain text' + language: plaintext + - + label: C + language: c + - + label: 'C#' + language: cs + - + label: C++ + language: cpp + - + label: CSS + language: css + - + label: Diff + language: diff + - + label: HTML + language: html + - + label: Java + language: java + - + label: JavaScript + language: javascript + - + label: PHP + language: php + - + label: Python + language: python + - + label: Ruby + language: ruby + - + label: TypeScript + language: typescript + - + label: XML + language: xml +image_upload: + status: true + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: 0 + height: 0 diff --git a/config/sync/facets.facet.product_brand.yml b/config/sync/facets.facet.product_brand.yml new file mode 100644 index 0000000..a0a70c6 --- /dev/null +++ b/config/sync/facets.facet.product_brand.yml @@ -0,0 +1,75 @@ +uuid: f8eda8bd-d198-4759-989a-0dfd8369a341 +langcode: en +status: true +dependencies: + config: + - search_api.index.products + - views.view.product_catalog + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: taxonomy_term_coder +_core: + default_config_hash: g8oAZEY46aM4yPNTL9hOUm53xk8FC_mizwaUZw9ZIqg +id: product_brand +name: 'Product Brand' +url_alias: product_brand +weight: 0 +min_count: 1 +missing: false +missing_label: others +show_only_one_result: false +field_identifier: product_brand +facet_source_id: 'search_api:views_page__product_catalog__catalog_page' +widget: + type: checkbox + config: + show_numbers: true + soft_limit: 0 + show_reset_link: true + reset_text: 'Show all' + hide_reset_when_no_selection: true + soft_limit_settings: + show_less_label: 'Show less' + show_more_label: 'Show more' +query_operator: or +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +hard_limit: 0 +exclude: false +only_visible_when_facet_source_is_visible: true +processor_configs: + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } +empty_behavior: + behavior: text + text_format: plain_text + text: 'No brands available for this search criteria.' +show_title: false diff --git a/config/sync/facets.facet.product_collections.yml b/config/sync/facets.facet.product_collections.yml new file mode 100644 index 0000000..30d075e --- /dev/null +++ b/config/sync/facets.facet.product_collections.yml @@ -0,0 +1,75 @@ +uuid: 48c04e6c-bb0f-4267-8923-fc26bfba6f0a +langcode: en +status: true +dependencies: + config: + - search_api.index.products + - views.view.product_catalog + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: taxonomy_term_coder +_core: + default_config_hash: 0d_rCsCaE4PdK7Kw_TcsifELmuGj_B92d4Z_Vfg5OYA +id: product_collections +name: 'Product Collections' +url_alias: product_collections +weight: 0 +min_count: 1 +missing: false +missing_label: others +show_only_one_result: false +field_identifier: product_collections +facet_source_id: 'search_api:views_page__product_catalog__catalog_page' +widget: + type: checkbox + config: + show_numbers: true + soft_limit: 0 + show_reset_link: true + reset_text: 'Show all' + hide_reset_when_no_selection: true + soft_limit_settings: + show_less_label: 'Show less' + show_more_label: 'Show more' +query_operator: or +use_hierarchy: true +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: false +hard_limit: 0 +exclude: false +only_visible_when_facet_source_is_visible: true +processor_configs: + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } +empty_behavior: + behavior: text + text_format: plain_text + text: 'No categories available for this search criteria.' +show_title: false diff --git a/config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml b/config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml new file mode 100644 index 0000000..a4b8924 --- /dev/null +++ b/config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml @@ -0,0 +1,14 @@ +uuid: f7b3b26f-00c2-4b19-a9c6-c41b4dea8256 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: xx15H84mrlS0AQ8KS_FvOByS7ywXFVFR4oGUtyzzXqE +id: search_api__views_page__product_catalog__catalog_page +name: 'search_api:views_page__product_catalog__catalog_page' +filter_key: '' +url_processor: query_string +breadcrumb: + active: false + before: true + group: false diff --git a/config/sync/field.field.block_content.basic.body.yml b/config/sync/field.field.block_content.basic.body.yml new file mode 100644 index 0000000..5c4f738 --- /dev/null +++ b/config/sync/field.field.block_content.basic.body.yml @@ -0,0 +1,26 @@ +uuid: 2ecd2baa-a649-4d0a-8af8-aa9e4daf755d +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.storage.block_content.body + module: + - text +_core: + default_config_hash: R__6wc-rMfFMO8d7jcgqnqiA92j8spKhcc5MiqecrMc +id: block_content.basic.body +field_name: body +entity_type: block_content +bundle: basic +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/config/sync/field.field.block_content.cklb_button.cklb_cta.yml b/config/sync/field.field.block_content.cklb_button.cklb_cta.yml new file mode 100644 index 0000000..f22268c --- /dev/null +++ b/config/sync/field.field.block_content.cklb_button.cklb_cta.yml @@ -0,0 +1,25 @@ +uuid: 58a4189f-3573-4b08-8a01-b92906e9a448 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_button + - field.storage.block_content.cklb_cta + module: + - link +_core: + default_config_hash: exPqtqMUSsLkPgXdiRDzdfF1k3z-87jVJT-LQ-zBqfg +id: block_content.cklb_button.cklb_cta +field_name: cklb_cta +entity_type: block_content +bundle: cklb_button +label: Button +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + title: 1 + link_type: 17 +field_type: link diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_cta.yml b/config/sync/field.field.block_content.cklb_hero.cklb_cta.yml new file mode 100644 index 0000000..2a4bc0b --- /dev/null +++ b/config/sync/field.field.block_content.cklb_hero.cklb_cta.yml @@ -0,0 +1,25 @@ +uuid: 4c07cf48-6acf-454c-93d5-253631e20ef6 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_hero + - field.storage.block_content.cklb_cta + module: + - link +_core: + default_config_hash: wkdldj2fwacaXOaSlA_vjYaU_IM3s86ohq_aVcCD0PI +id: block_content.cklb_hero.cklb_cta +field_name: cklb_cta +entity_type: block_content +bundle: cklb_hero +label: Button +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + title: 2 + link_type: 17 +field_type: link diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml b/config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml new file mode 100644 index 0000000..0b05b96 --- /dev/null +++ b/config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml @@ -0,0 +1,21 @@ +uuid: 23d447b2-149a-449a-af9a-ffb559d358d4 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_hero + - field.storage.block_content.cklb_subtitle +_core: + default_config_hash: ZVsiPrycHA3iGqW2NWmH890KKmsPZAPv5uKz0kAjOzc +id: block_content.cklb_hero.cklb_subtitle +field_name: cklb_subtitle +entity_type: block_content +bundle: cklb_hero +label: Subtitle +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_text.yml b/config/sync/field.field.block_content.cklb_hero.cklb_text.yml new file mode 100644 index 0000000..73ec764 --- /dev/null +++ b/config/sync/field.field.block_content.cklb_hero.cklb_text.yml @@ -0,0 +1,24 @@ +uuid: 6ac78f73-7cd3-4306-8489-d37eb6e764c7 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_hero + - field.storage.block_content.cklb_text + module: + - text +_core: + default_config_hash: k-e01z7pkRAVYzTvt1sv3Jiad64o27__jDtw8bCwLnw +id: block_content.cklb_hero.cklb_text +field_name: cklb_text +entity_type: block_content +bundle: cklb_hero +label: Text +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + allowed_formats: { } +field_type: text_long diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_title.yml b/config/sync/field.field.block_content.cklb_hero.cklb_title.yml new file mode 100644 index 0000000..e3ec199 --- /dev/null +++ b/config/sync/field.field.block_content.cklb_hero.cklb_title.yml @@ -0,0 +1,21 @@ +uuid: 571130a5-70a1-40fe-8d55-3e1bfa4ea039 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_hero + - field.storage.block_content.cklb_title +_core: + default_config_hash: ax4JrosuNJsZaXgITxtwvmMXtzP8Fj1jTGKOljAXmcA +id: block_content.cklb_hero.cklb_title +field_name: cklb_title +entity_type: block_content +bundle: cklb_hero +label: Title +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/config/sync/field.field.block_content.cklb_image.cklb_image.yml b/config/sync/field.field.block_content.cklb_image.cklb_image.yml new file mode 100644 index 0000000..b3bf6e4 --- /dev/null +++ b/config/sync/field.field.block_content.cklb_image.cklb_image.yml @@ -0,0 +1,31 @@ +uuid: 76438a13-3caf-4051-ad19-f0fa7449b716 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_image + - field.storage.block_content.cklb_image + - media.type.image +_core: + default_config_hash: XwWEJx3rf7alz9-o15R_fnKoV7oE5j0KsM6R2QszbMI +id: block_content.cklb_image.cklb_image +field_name: cklb_image +entity_type: block_content +bundle: cklb_image +label: Image +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.block_content.cklb_products.cklb_products.yml b/config/sync/field.field.block_content.cklb_products.cklb_products.yml new file mode 100644 index 0000000..a15322f --- /dev/null +++ b/config/sync/field.field.block_content.cklb_products.cklb_products.yml @@ -0,0 +1,27 @@ +uuid: 85dac44c-055e-4187-8d5a-e4a47fdf258e +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_products + - field.storage.block_content.cklb_products +_core: + default_config_hash: qAyfPWq9kV-oUj5QwcKYfd7ZWk72u1heF2WPFtOeSys +id: block_content.cklb_products.cklb_products +field_name: cklb_products +entity_type: block_content +bundle: cklb_products +label: Products +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: views + handler_settings: + view: + view_name: cklb_products_entity_reference + display_name: entity_reference_all_products + arguments: { } +field_type: entity_reference diff --git a/config/sync/field.field.block_content.cklb_products.cklb_title.yml b/config/sync/field.field.block_content.cklb_products.cklb_title.yml new file mode 100644 index 0000000..8cf93dd --- /dev/null +++ b/config/sync/field.field.block_content.cklb_products.cklb_title.yml @@ -0,0 +1,21 @@ +uuid: 1e3d97f6-a180-4ee3-a66e-3c8b9f6076c8 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_products + - field.storage.block_content.cklb_title +_core: + default_config_hash: zHruqTfiIOEzgHLFJm0Ai_yzpXX456uKT2xYxas8Ud4 +id: block_content.cklb_products.cklb_title +field_name: cklb_title +entity_type: block_content +bundle: cklb_products +label: Title +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/config/sync/field.field.block_content.cklb_text.cklb_text.yml b/config/sync/field.field.block_content.cklb_text.cklb_text.yml new file mode 100644 index 0000000..3a88785 --- /dev/null +++ b/config/sync/field.field.block_content.cklb_text.cklb_text.yml @@ -0,0 +1,24 @@ +uuid: 6c142e11-d742-49ea-bc21-42fec56312d7 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_text + - field.storage.block_content.cklb_text + module: + - text +_core: + default_config_hash: C-84DVv7mwcBbH8YTaTEJjwdmqOBEJrBrmBkbnMVEhg +id: block_content.cklb_text.cklb_text +field_name: cklb_text +entity_type: block_content +bundle: cklb_text +label: Text +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + allowed_formats: { } +field_type: text_long diff --git a/config/sync/field.field.block_content.cklb_title.cklb_title.yml b/config/sync/field.field.block_content.cklb_title.cklb_title.yml new file mode 100644 index 0000000..4d3182e --- /dev/null +++ b/config/sync/field.field.block_content.cklb_title.cklb_title.yml @@ -0,0 +1,21 @@ +uuid: fbb91e96-8f9c-4b9f-ba6e-b314b1117c25 +langcode: en +status: true +dependencies: + config: + - block_content.type.cklb_title + - field.storage.block_content.cklb_title +_core: + default_config_hash: ZhWz9kiyGMNeDM1DdxY00mQ38T-zferskJEFqKbj_CY +id: block_content.cklb_title.cklb_title +field_name: cklb_title +entity_type: block_content +bundle: cklb_title +label: Title +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/config/sync/field.field.comment.comment.comment_body.yml b/config/sync/field.field.comment.comment.comment_body.yml new file mode 100644 index 0000000..ac74873 --- /dev/null +++ b/config/sync/field.field.comment.comment.comment_body.yml @@ -0,0 +1,24 @@ +uuid: 9fa3fc21-72eb-4afe-ba50-b4e96f3f43e4 +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.storage.comment.comment_body + module: + - text +_core: + default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs +id: comment.comment.comment_body +field_name: comment_body +entity_type: comment +bundle: comment +label: Comment +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + allowed_formats: { } +field_type: text_long diff --git a/config/sync/field.field.commerce_order.default.shipments.yml b/config/sync/field.field.commerce_order.default.shipments.yml new file mode 100644 index 0000000..d96f748 --- /dev/null +++ b/config/sync/field.field.commerce_order.default.shipments.yml @@ -0,0 +1,21 @@ +uuid: bea57bf4-58f5-4b6c-8feb-a632466575af +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - field.storage.commerce_order.shipments +id: commerce_order.default.shipments +field_name: shipments +entity_type: commerce_order +bundle: default +label: Shipments +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: null +settings: + handler: 'default:commerce_shipment' + handler_settings: { } +field_type: entity_reference diff --git a/config/sync/field.field.commerce_order_item.digital_license_product.license.yml b/config/sync/field.field.commerce_order_item.digital_license_product.license.yml new file mode 100644 index 0000000..963df6a --- /dev/null +++ b/config/sync/field.field.commerce_order_item.digital_license_product.license.yml @@ -0,0 +1,23 @@ +uuid: aaf78b9f-0e4d-4442-96dd-430ba6d5bfe0 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.digital_license_product + - field.storage.commerce_order_item.license +_core: + default_config_hash: QYTAIlw8IdtXOQ-x0z0BcFlEDoTeKL71sMmhxLdbAq0 +id: commerce_order_item.digital_license_product.license +field_name: license +entity_type: commerce_order_item +bundle: digital_license_product +label: License +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: null +settings: + handler: 'default:commerce_license' + handler_settings: { } +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.default.body.yml b/config/sync/field.field.commerce_product.default.body.yml new file mode 100644 index 0000000..d1b262b --- /dev/null +++ b/config/sync/field.field.commerce_product.default.body.yml @@ -0,0 +1,26 @@ +uuid: 6cbf0b39-8b73-486b-89ff-e5618d8f0110 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.body + module: + - text +_core: + default_config_hash: qaw_-7RjuDqZ6ysM0sqX7hyzsbjVlvrLRxklB0lHHy8 +id: commerce_product.default.body +field_name: body +entity_type: commerce_product +bundle: default +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/config/sync/field.field.commerce_product.default.images.yml b/config/sync/field.field.commerce_product.default.images.yml new file mode 100644 index 0000000..83fd562 --- /dev/null +++ b/config/sync/field.field.commerce_product.default.images.yml @@ -0,0 +1,40 @@ +uuid: 015ee95c-bada-4d34-9fc4-fc4732c81e58 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.images + module: + - image +_core: + default_config_hash: l5I8Yje-Y-jDO0nv0PNq0G86t237U635jCk_XsOeUyQ +id: commerce_product.default.images +field_name: images +entity_type: commerce_product +bundle: default +label: Images +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + alt_field_required: true + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/config/sync/field.field.commerce_product.default.layout_builder__layout.yml b/config/sync/field.field.commerce_product.default.layout_builder__layout.yml new file mode 100644 index 0000000..2e20ee1 --- /dev/null +++ b/config/sync/field.field.commerce_product.default.layout_builder__layout.yml @@ -0,0 +1,23 @@ +uuid: 8e3d363d-f0c5-47a2-86c0-a2bb2b318341 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.layout_builder__layout + module: + - layout_builder +_core: + default_config_hash: iuDu06ssJ2sEZVFp1YF65BKvJ7sSn-uTZisC0RoOKJM +id: commerce_product.default.layout_builder__layout +field_name: layout_builder__layout +entity_type: commerce_product +bundle: default +label: Layout +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: layout_section diff --git a/config/sync/field.field.commerce_product.default.product_brand.yml b/config/sync/field.field.commerce_product.default.product_brand.yml new file mode 100644 index 0000000..cf2d1e6 --- /dev/null +++ b/config/sync/field.field.commerce_product.default.product_brand.yml @@ -0,0 +1,31 @@ +uuid: ed1a1a15-ec7b-4a59-8cb9-eae19be250cb +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.product_brand + - taxonomy.vocabulary.product_brands +_core: + default_config_hash: hR6zYRUnAnrqppsK3vsL__55XWFmOvEjyUcHP6T1DWI +id: commerce_product.default.product_brand +field_name: product_brand +entity_type: commerce_product +bundle: default +label: 'Product Brand' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_brands: product_brands + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.default.product_collections.yml b/config/sync/field.field.commerce_product.default.product_collections.yml new file mode 100644 index 0000000..aa2739e --- /dev/null +++ b/config/sync/field.field.commerce_product.default.product_collections.yml @@ -0,0 +1,31 @@ +uuid: dba63a34-d6e4-4913-81e1-5764041d18e1 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.product_collections + - taxonomy.vocabulary.product_collections +_core: + default_config_hash: NTLAO9j_f2tovaBc6AtpKV7LscJ6tlHnerrpmnTonuQ +id: commerce_product.default.product_collections +field_name: product_collections +entity_type: commerce_product +bundle: default +label: 'Product Collections' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_collections: product_collections + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.default.product_tags.yml b/config/sync/field.field.commerce_product.default.product_tags.yml new file mode 100644 index 0000000..f11bf46 --- /dev/null +++ b/config/sync/field.field.commerce_product.default.product_tags.yml @@ -0,0 +1,31 @@ +uuid: b380e4c3-4b81-4159-a08d-679c98c50053 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.product_tags + - taxonomy.vocabulary.product_tags +_core: + default_config_hash: uCB0B4LcboLylg8t3QGOZflilAJqqYgE2Ept0kLnW4w +id: commerce_product.default.product_tags +field_name: product_tags +entity_type: commerce_product +bundle: default +label: 'Product Tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_tags: product_tags + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.media.body.yml b/config/sync/field.field.commerce_product.media.body.yml new file mode 100644 index 0000000..802679d --- /dev/null +++ b/config/sync/field.field.commerce_product.media.body.yml @@ -0,0 +1,26 @@ +uuid: 92638b99-decd-4a7d-90dd-d4561a0e86f9 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.storage.commerce_product.body + module: + - text +_core: + default_config_hash: DL-q4Wzz8WyqE5IDLIT2-97w-kH07l7h08zfB-1odPY +id: commerce_product.media.body +field_name: body +entity_type: commerce_product +bundle: media +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: null +settings: + display_summary: false + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/config/sync/field.field.commerce_product.media.images.yml b/config/sync/field.field.commerce_product.media.images.yml new file mode 100644 index 0000000..f43bd90 --- /dev/null +++ b/config/sync/field.field.commerce_product.media.images.yml @@ -0,0 +1,40 @@ +uuid: bd15fd7b-5754-419e-9c6a-370b0c5c5e04 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.storage.commerce_product.images + module: + - image +_core: + default_config_hash: RAtaMr_P5Y-vZGeKGGPXHU2r8R0jRoP75T0-LkiKNsE +id: commerce_product.media.images +field_name: images +entity_type: commerce_product +bundle: media +label: Images +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + alt_field_required: true + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/config/sync/field.field.commerce_product.media.layout_builder__layout.yml b/config/sync/field.field.commerce_product.media.layout_builder__layout.yml new file mode 100644 index 0000000..db089e9 --- /dev/null +++ b/config/sync/field.field.commerce_product.media.layout_builder__layout.yml @@ -0,0 +1,23 @@ +uuid: 3f708dd2-cc82-4f4b-ba75-b014724810f3 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.storage.commerce_product.layout_builder__layout + module: + - layout_builder +_core: + default_config_hash: XtBsUXTHMN_K0pYwGH8GURcwCbxKv26RzF-cJtEJ59w +id: commerce_product.media.layout_builder__layout +field_name: layout_builder__layout +entity_type: commerce_product +bundle: media +label: Layout +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: layout_section diff --git a/config/sync/field.field.commerce_product.media.product_brand.yml b/config/sync/field.field.commerce_product.media.product_brand.yml new file mode 100644 index 0000000..28da1d4 --- /dev/null +++ b/config/sync/field.field.commerce_product.media.product_brand.yml @@ -0,0 +1,31 @@ +uuid: 7a0f00d8-6c96-409b-8076-4ae0a7ff203a +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.storage.commerce_product.product_brand + - taxonomy.vocabulary.product_brands +_core: + default_config_hash: f2DkCB8Foozhuy075PlkPLt3aRlvDw58GLQ7K4SZVv0 +id: commerce_product.media.product_brand +field_name: product_brand +entity_type: commerce_product +bundle: media +label: 'Product Brand' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_brands: product_brands + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.media.product_collections.yml b/config/sync/field.field.commerce_product.media.product_collections.yml new file mode 100644 index 0000000..ecb1165 --- /dev/null +++ b/config/sync/field.field.commerce_product.media.product_collections.yml @@ -0,0 +1,31 @@ +uuid: 46fbabd2-e09a-4fd6-8dbe-101430333e4f +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.storage.commerce_product.product_collections + - taxonomy.vocabulary.product_collections +_core: + default_config_hash: SO1WlaokisKY-dWuaygvUBbALhf7kBrgCNnyyk9DUQ0 +id: commerce_product.media.product_collections +field_name: product_collections +entity_type: commerce_product +bundle: media +label: 'Product Collections' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_collections: product_collections + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.media.product_tags.yml b/config/sync/field.field.commerce_product.media.product_tags.yml new file mode 100644 index 0000000..96a877f --- /dev/null +++ b/config/sync/field.field.commerce_product.media.product_tags.yml @@ -0,0 +1,31 @@ +uuid: ab89c346-a839-4d26-b8db-39b0a9e0027c +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.media + - field.storage.commerce_product.product_tags + - taxonomy.vocabulary.product_tags +_core: + default_config_hash: TNGcWRzKXQl5iZ2jrVDQ_s496Eb7JbJMZ03MqDDEAjg +id: commerce_product.media.product_tags +field_name: product_tags +entity_type: commerce_product +bundle: media +label: 'Product Tags' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_tags: product_tags + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.physical.body.yml b/config/sync/field.field.commerce_product.physical.body.yml new file mode 100644 index 0000000..bbddefd --- /dev/null +++ b/config/sync/field.field.commerce_product.physical.body.yml @@ -0,0 +1,26 @@ +uuid: b63d3eed-e009-4dee-a05c-53d1413ace60 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.storage.commerce_product.body + module: + - text +_core: + default_config_hash: w28sUFZT4r3PD53HRa0etBQwMdD2K8SkAuVGaIjGAA8 +id: commerce_product.physical.body +field_name: body +entity_type: commerce_product +bundle: physical +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/config/sync/field.field.commerce_product.physical.images.yml b/config/sync/field.field.commerce_product.physical.images.yml new file mode 100644 index 0000000..99cfb98 --- /dev/null +++ b/config/sync/field.field.commerce_product.physical.images.yml @@ -0,0 +1,40 @@ +uuid: a271fc3b-9da4-475b-b291-5598f4f13ef1 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.storage.commerce_product.images + module: + - image +_core: + default_config_hash: 0eXOzChOJhT00jpFyfedZU88ObRMFgGA7tBKXRzWwro +id: commerce_product.physical.images +field_name: images +entity_type: commerce_product +bundle: physical +label: Images +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + alt_field_required: true + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/config/sync/field.field.commerce_product.physical.layout_builder__layout.yml b/config/sync/field.field.commerce_product.physical.layout_builder__layout.yml new file mode 100644 index 0000000..c9f96f5 --- /dev/null +++ b/config/sync/field.field.commerce_product.physical.layout_builder__layout.yml @@ -0,0 +1,23 @@ +uuid: 3113e48b-4900-45b6-982a-dc7ccc62043c +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.storage.commerce_product.layout_builder__layout + module: + - layout_builder +_core: + default_config_hash: fKztA37Yrr5OLEKGlZCYVpmZj5JPrIAqYkOnHyf5R6U +id: commerce_product.physical.layout_builder__layout +field_name: layout_builder__layout +entity_type: commerce_product +bundle: physical +label: Layout +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: layout_section diff --git a/config/sync/field.field.commerce_product.physical.product_brand.yml b/config/sync/field.field.commerce_product.physical.product_brand.yml new file mode 100644 index 0000000..81d3e88 --- /dev/null +++ b/config/sync/field.field.commerce_product.physical.product_brand.yml @@ -0,0 +1,31 @@ +uuid: a4cf3e5b-0b87-4f13-af78-0b7159ef2c79 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.storage.commerce_product.product_brand + - taxonomy.vocabulary.product_brands +_core: + default_config_hash: PSXP4S9wVY4ZcouWbqIV9YiANoW5ej_TJH0hXMsPC1Y +id: commerce_product.physical.product_brand +field_name: product_brand +entity_type: commerce_product +bundle: physical +label: 'Product Brand' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_brands: product_brands + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.physical.product_collections.yml b/config/sync/field.field.commerce_product.physical.product_collections.yml new file mode 100644 index 0000000..2d6d0e4 --- /dev/null +++ b/config/sync/field.field.commerce_product.physical.product_collections.yml @@ -0,0 +1,31 @@ +uuid: 391a89ec-c0ca-4e55-84e6-5375c0ba4e53 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.storage.commerce_product.product_collections + - taxonomy.vocabulary.product_collections +_core: + default_config_hash: 9y_glKKNCSdlsPBftvoGkvqB1nSVNDwu-ZnRqwLmC8g +id: commerce_product.physical.product_collections +field_name: product_collections +entity_type: commerce_product +bundle: physical +label: 'Product Collections' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_collections: product_collections + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.physical.product_tags.yml b/config/sync/field.field.commerce_product.physical.product_tags.yml new file mode 100644 index 0000000..0f56220 --- /dev/null +++ b/config/sync/field.field.commerce_product.physical.product_tags.yml @@ -0,0 +1,31 @@ +uuid: 9b377da9-07a8-4986-9180-560b4a7cbd77 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.physical + - field.storage.commerce_product.product_tags + - taxonomy.vocabulary.product_tags +_core: + default_config_hash: 95Wtjrj6zRxH6txR7Aw8y1kLXP6wHFTrmmkWgLaZpLI +id: commerce_product.physical.product_tags +field_name: product_tags +entity_type: commerce_product +bundle: physical +label: 'Product Tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + product_tags: product_tags + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml b/config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml new file mode 100644 index 0000000..f97194b --- /dev/null +++ b/config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml @@ -0,0 +1,29 @@ +uuid: e531f02b-ca0f-478b-98bf-101f56797deb +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - field.storage.commerce_product_variation.commerce_file + module: + - file +_core: + default_config_hash: J_AUCufP_doxC8O7OfLBEJDKDguaGoNQMkUQNM5YEBc +id: commerce_product_variation.media_license_download.commerce_file +field_name: commerce_file +entity_type: commerce_product_variation +bundle: media_license_download +label: File(s) +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: null +settings: + file_extensions: 'mp4 m4v flv wmv mp3 wav jpg jpeg png pdf doc docx ppt pptx xls xlsx' + file_directory: '[date:custom:Y]-[date:custom:m]' + max_filesize: '' + description_field: true + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml b/config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml new file mode 100644 index 0000000..f6f746d --- /dev/null +++ b/config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml @@ -0,0 +1,23 @@ +uuid: 1801dfed-f592-44eb-accd-cdff5cef1362 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - field.storage.commerce_product_variation.license_expiration + module: + - commerce +_core: + default_config_hash: skdlz8v_qX1w-OUchU0eOwNM6hLBh6annrN2wD1oF_k +id: commerce_product_variation.media_license_download.license_expiration +field_name: license_expiration +entity_type: commerce_product_variation +bundle: media_license_download +label: 'License Expiration' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: null +settings: { } +field_type: 'commerce_plugin_item:commerce_license_period' diff --git a/config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml b/config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml new file mode 100644 index 0000000..e24fec3 --- /dev/null +++ b/config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml @@ -0,0 +1,23 @@ +uuid: f075626a-daa6-4ff8-bcfe-532659292131 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_license_download + - field.storage.commerce_product_variation.license_type + module: + - commerce +_core: + default_config_hash: wf4XtsOnAbMmKYWTuX3zqEr7EIp78R3o9W66JnSpH0w +id: commerce_product_variation.media_license_download.license_type +field_name: license_type +entity_type: commerce_product_variation +bundle: media_license_download +label: 'License Type' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: null +settings: { } +field_type: 'commerce_plugin_item:commerce_license_type' diff --git a/config/sync/field.field.commerce_product_variation.media_physical.weight.yml b/config/sync/field.field.commerce_product_variation.media_physical.weight.yml new file mode 100644 index 0000000..b0252fc --- /dev/null +++ b/config/sync/field.field.commerce_product_variation.media_physical.weight.yml @@ -0,0 +1,23 @@ +uuid: 25789c1d-a933-40a5-9ab2-5c41473b20e4 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.media_physical + - field.storage.commerce_product_variation.weight + module: + - physical +_core: + default_config_hash: AIWUyXuXG-yC40QjzE31PFwGip3GgncTD9a3hVkIYGU +id: commerce_product_variation.media_physical.weight +field_name: weight +entity_type: commerce_product_variation +bundle: media_physical +label: Weight +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: null +settings: { } +field_type: physical_measurement diff --git a/config/sync/field.field.commerce_product_variation.physical.weight.yml b/config/sync/field.field.commerce_product_variation.physical.weight.yml new file mode 100644 index 0000000..c8fc4a9 --- /dev/null +++ b/config/sync/field.field.commerce_product_variation.physical.weight.yml @@ -0,0 +1,23 @@ +uuid: 42b97245-e4f7-41dc-806e-025bdb5895ee +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.physical + - field.storage.commerce_product_variation.weight + module: + - physical +_core: + default_config_hash: CFbdT84ydNzUp-9Gb2f8CdcDPWaM8QEIaOj_PnqKBuA +id: commerce_product_variation.physical.weight +field_name: weight +entity_type: commerce_product_variation +bundle: physical +label: Weight +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: null +settings: { } +field_type: physical_measurement diff --git a/config/sync/field.field.media.audio.field_media_audio_file.yml b/config/sync/field.field.media.audio.field_media_audio_file.yml new file mode 100644 index 0000000..22fed0b --- /dev/null +++ b/config/sync/field.field.media.audio.field_media_audio_file.yml @@ -0,0 +1,29 @@ +uuid: 3660631a-4041-4c45-bb61-a66bbc908139 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_audio_file + - media.type.audio + module: + - file +_core: + default_config_hash: UlZPIbHcLyNqGY5bvydCTijGcKDmwn4Fo8oYZT85wlk +id: media.audio.field_media_audio_file +field_name: field_media_audio_file +entity_type: media +bundle: audio +label: 'Audio file' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:file' + handler_settings: { } + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'mp3 wav aac' + max_filesize: '' + description_field: false +field_type: file diff --git a/config/sync/field.field.media.document.field_media_document.yml b/config/sync/field.field.media.document.field_media_document.yml new file mode 100644 index 0000000..29f3c83 --- /dev/null +++ b/config/sync/field.field.media.document.field_media_document.yml @@ -0,0 +1,32 @@ +uuid: b03820d2-917b-4bc3-9dbc-42aaa28ae445 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_document + - media.type.document + module: + - file + enforced: + module: + - media +_core: + default_config_hash: DY5HtJTxUjFRGU_PaY6ifo2nhR-nAZ0y0s6kLmUbv5g +id: media.document.field_media_document +field_name: field_media_document +entity_type: media +bundle: document +label: Document +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:file' + handler_settings: { } + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt rtf doc docx ppt pptx xls xlsx pdf odf odg odp ods odt fodt fods fodp fodg key numbers pages' + max_filesize: '' + description_field: false +field_type: file diff --git a/config/sync/field.field.media.image.field_media_image.yml b/config/sync/field.field.media.image.field_media_image.yml new file mode 100644 index 0000000..2446d51 --- /dev/null +++ b/config/sync/field.field.media.image.field_media_image.yml @@ -0,0 +1,43 @@ +uuid: 189e72bd-451f-458a-af43-6497bf2a4828 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_image + - media.type.image + module: + - image + enforced: + module: + - media +_core: + default_config_hash: HGRX21ciyn7K-q8KMxsKHQvIB4SHT-A3bqzmNDnGKyc +id: media.image.field_media_image +field_name: field_media_image +entity_type: media +bundle: image +label: Image +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:file' + handler_settings: { } + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + alt_field_required: true + title_field: false + title_field_required: false + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null +field_type: image diff --git a/config/sync/field.field.media.remote_video.field_media_oembed_video.yml b/config/sync/field.field.media.remote_video.field_media_oembed_video.yml new file mode 100644 index 0000000..c1f9df4 --- /dev/null +++ b/config/sync/field.field.media.remote_video.field_media_oembed_video.yml @@ -0,0 +1,21 @@ +uuid: eb587045-2946-4897-96b0-dfff4c2decf9 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_oembed_video + - media.type.remote_video +_core: + default_config_hash: Eo4HHenV5iZat_kEWgr_wydD3TgwURMCzwt-7qIEyoM +id: media.remote_video.field_media_oembed_video +field_name: field_media_oembed_video +entity_type: media +bundle: remote_video +label: 'Video URL' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/config/sync/field.field.media.video.field_media_video_file.yml b/config/sync/field.field.media.video.field_media_video_file.yml new file mode 100644 index 0000000..e7f6b12 --- /dev/null +++ b/config/sync/field.field.media.video.field_media_video_file.yml @@ -0,0 +1,29 @@ +uuid: 64df32c1-42c9-4319-9566-ca346948ee6c +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_video_file + - media.type.video + module: + - file +_core: + default_config_hash: 6kMMjmk2r_csGQ52qI9BUaO8r_oAzNLbxlclaj-JlDQ +id: media.video.field_media_video_file +field_name: field_media_video_file +entity_type: media +bundle: video +label: 'Video file' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:file' + handler_settings: { } + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: mp4 + max_filesize: '' + description_field: false +field_type: file diff --git a/config/sync/field.field.node.cklb_landing_page.cklb_description.yml b/config/sync/field.field.node.cklb_landing_page.cklb_description.yml new file mode 100644 index 0000000..b6bae00 --- /dev/null +++ b/config/sync/field.field.node.cklb_landing_page.cklb_description.yml @@ -0,0 +1,21 @@ +uuid: 3c2403c4-6973-40c6-89ee-f88e11ee53b0 +langcode: en +status: true +dependencies: + config: + - field.storage.node.cklb_description + - node.type.cklb_landing_page +_core: + default_config_hash: 6JzH_inV3gERsSpjSLP_Vzsqtf8gAL4743GRucOScm4 +id: node.cklb_landing_page.cklb_description +field_name: cklb_description +entity_type: node +bundle: cklb_landing_page +label: Description +description: 'Short, keyword-rich summary. Does not appear on a page but can be picked up by search engines and external sites as a small preview for the page.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string_long diff --git a/config/sync/field.field.node.cklb_landing_page.cklb_image.yml b/config/sync/field.field.node.cklb_landing_page.cklb_image.yml new file mode 100644 index 0000000..143ddf4 --- /dev/null +++ b/config/sync/field.field.node.cklb_landing_page.cklb_image.yml @@ -0,0 +1,31 @@ +uuid: 279be1f0-7df9-4b9e-ae54-79cd59b06522 +langcode: en +status: true +dependencies: + config: + - field.storage.node.cklb_image + - media.type.image + - node.type.cklb_landing_page +_core: + default_config_hash: MMKDTDFMVyyAhSrGtvEyai8aN-HzKfkIXQo7rvAm1P4 +id: node.cklb_landing_page.cklb_image +field_name: cklb_image +entity_type: node +bundle: cklb_landing_page +label: Image +description: 'Teaser image that will not appear anywhere on the site but can be picked up by search engines and external sites as a small preview for the page.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml b/config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml new file mode 100644 index 0000000..f152954 --- /dev/null +++ b/config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml @@ -0,0 +1,23 @@ +uuid: a7dcf8bc-cfc6-4221-a8cb-d9732e3d4fcb +langcode: en +status: true +dependencies: + config: + - field.storage.node.layout_builder__layout + - node.type.cklb_landing_page + module: + - layout_builder +_core: + default_config_hash: _HDDeRhcDaRfOAjZPU1fovNAJ784aJ3zJKhFpV_oCjI +id: node.cklb_landing_page.layout_builder__layout +field_name: layout_builder__layout +entity_type: node +bundle: cklb_landing_page +label: Layout +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: layout_section diff --git a/config/sync/field.field.node.page.body.yml b/config/sync/field.field.node.page.body.yml new file mode 100644 index 0000000..09e394d --- /dev/null +++ b/config/sync/field.field.node.page.body.yml @@ -0,0 +1,26 @@ +uuid: 199d298a-2da7-4752-a6a5-aea3875ced80 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.page + module: + - text +_core: + default_config_hash: KgVkxLl_K3E3lvN6CEoWQIDT0V8J4Mv-fVYrAIc7-FE +id: node.page.body +field_name: body +entity_type: node +bundle: page +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: true + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/config/sync/field.field.profile.customer.address.yml b/config/sync/field.field.profile.customer.address.yml new file mode 100644 index 0000000..b232e4a --- /dev/null +++ b/config/sync/field.field.profile.customer.address.yml @@ -0,0 +1,40 @@ +uuid: 9db4ce9c-e95d-4b1e-9171-c237965ec643 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.address + - profile.type.customer + module: + - address +_core: + default_config_hash: FOL3MwTOMLofnjg4T-VREfe6NAxA7UXcEP-Q-4K9qOI +id: profile.customer.address +field_name: address +entity_type: profile +bundle: customer +label: Address +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + dependentLocality: dependentLocality + postalCode: postalCode + sortingCode: sortingCode + addressLine1: addressLine1 + addressLine2: addressLine2 + organization: organization + givenName: givenName + additionalName: additionalName + familyName: familyName + langcode_override: '' + field_overrides: + addressLine3: + override: hidden +field_type: address diff --git a/config/sync/field.field.profile.customer.tax_number.yml b/config/sync/field.field.profile.customer.tax_number.yml new file mode 100644 index 0000000..17b4a7b --- /dev/null +++ b/config/sync/field.field.profile.customer.tax_number.yml @@ -0,0 +1,30 @@ +uuid: bf53714b-f279-4cfd-af09-1dfcd137f681 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.tax_number + - profile.type.customer + module: + - commerce_tax + enforced: + module: + - commerce_tax +_core: + default_config_hash: CGcN7vNeKKjcD0PjtvSXOchhJll9sHwastAFsjBsfqI +id: profile.customer.tax_number +field_name: tax_number +entity_type: profile +bundle: customer +label: 'Tax number' +description: '' +required: false +translatable: false +default_value: + - { } +default_value_callback: '' +settings: + countries: { } + verify: true + allow_unverified: true +field_type: commerce_tax_number diff --git a/config/sync/field.field.user.user.commerce_remote_id.yml b/config/sync/field.field.user.user.commerce_remote_id.yml new file mode 100644 index 0000000..2178873 --- /dev/null +++ b/config/sync/field.field.user.user.commerce_remote_id.yml @@ -0,0 +1,26 @@ +uuid: 6f4010c3-39a3-489a-91b7-e7f27709ca09 +langcode: en +status: true +dependencies: + config: + - field.storage.user.commerce_remote_id + module: + - commerce + - user + enforced: + module: + - commerce_payment +_core: + default_config_hash: Zu4REVGzMPlwpQVE7u1sM_74HqLCp0u42VNWlAwZcIw +id: user.user.commerce_remote_id +field_name: commerce_remote_id +entity_type: user +bundle: user +label: 'Remote ID' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: commerce_remote_id diff --git a/config/sync/field.field.user.user.user_picture.yml b/config/sync/field.field.user.user.user_picture.yml new file mode 100644 index 0000000..e38c620 --- /dev/null +++ b/config/sync/field.field.user.user.user_picture.yml @@ -0,0 +1,40 @@ +uuid: 3f323ec5-8652-4cd5-826d-d2aa9ec3e302 +langcode: en +status: true +dependencies: + config: + - field.storage.user.user_picture + module: + - image + - user +_core: + default_config_hash: cL7i1kgJvlJa6H00f0E_fZ2KdD1ag0ASpLts0K-KNII +id: user.user.user_picture +field_name: user_picture +entity_type: user +bundle: user +label: Picture +description: 'Your virtual face or picture.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'png gif jpg jpeg' + file_directory: 'pictures/[date:custom:Y]-[date:custom:m]' + max_filesize: '30 KB' + alt_field: false + title_field: false + max_resolution: 85x85 + min_resolution: '' + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + alt_field_required: false + title_field_required: false + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/config/sync/field.settings.yml b/config/sync/field.settings.yml new file mode 100644 index 0000000..2225b8f --- /dev/null +++ b/config/sync/field.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0 +purge_batch_size: 50 diff --git a/config/sync/field.storage.block_content.body.yml b/config/sync/field.storage.block_content.body.yml new file mode 100644 index 0000000..dece5c8 --- /dev/null +++ b/config/sync/field.storage.block_content.body.yml @@ -0,0 +1,21 @@ +uuid: bcd09523-ffed-4a80-917c-003cd56c63bb +langcode: en +status: true +dependencies: + module: + - block_content + - text +_core: + default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc +id: block_content.body +field_name: body +entity_type: block_content +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/config/sync/field.storage.block_content.cklb_cta.yml b/config/sync/field.storage.block_content.cklb_cta.yml new file mode 100644 index 0000000..3b1ce5d --- /dev/null +++ b/config/sync/field.storage.block_content.cklb_cta.yml @@ -0,0 +1,21 @@ +uuid: 45dc4f42-cfe3-4e71-a344-e7f38a2e883f +langcode: en +status: true +dependencies: + module: + - block_content + - link +_core: + default_config_hash: zwM9XMqf8q5nyoptKTg31lgayzq19kDus8cHTTwHwd8 +id: block_content.cklb_cta +field_name: cklb_cta +entity_type: block_content +type: link +settings: { } +module: link +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.block_content.cklb_image.yml b/config/sync/field.storage.block_content.cklb_image.yml new file mode 100644 index 0000000..46aa37f --- /dev/null +++ b/config/sync/field.storage.block_content.cklb_image.yml @@ -0,0 +1,22 @@ +uuid: 815a53d6-3052-48f7-83c2-1911e674a1f5 +langcode: en +status: true +dependencies: + module: + - block_content + - media +_core: + default_config_hash: k8YfdFQnh2BXapLwuBFa2pzqJ_X2IdAMLNu4WNGwqWI +id: block_content.cklb_image +field_name: cklb_image +entity_type: block_content +type: entity_reference +settings: + target_type: media +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.block_content.cklb_products.yml b/config/sync/field.storage.block_content.cklb_products.yml new file mode 100644 index 0000000..522e56a --- /dev/null +++ b/config/sync/field.storage.block_content.cklb_products.yml @@ -0,0 +1,22 @@ +uuid: 08e4bd34-e7b7-4f10-b416-9cf7358d8ed6 +langcode: en +status: true +dependencies: + module: + - block_content + - commerce_product +_core: + default_config_hash: LrClKcI9xsJtMorBEGqXMY2CbOveQQmMorW2NrGiRic +id: block_content.cklb_products +field_name: cklb_products +entity_type: block_content +type: entity_reference +settings: + target_type: commerce_product +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.block_content.cklb_subtitle.yml b/config/sync/field.storage.block_content.cklb_subtitle.yml new file mode 100644 index 0000000..bdba25e --- /dev/null +++ b/config/sync/field.storage.block_content.cklb_subtitle.yml @@ -0,0 +1,23 @@ +uuid: a21d3109-dac7-4641-b92f-2d99ef599980 +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: ENqST0oGGYd_ypt6BX3hKLtTSPUtH9yyj0LDKGZjba4 +id: block_content.cklb_subtitle +field_name: cklb_subtitle +entity_type: block_content +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.block_content.cklb_text.yml b/config/sync/field.storage.block_content.cklb_text.yml new file mode 100644 index 0000000..4df2c44 --- /dev/null +++ b/config/sync/field.storage.block_content.cklb_text.yml @@ -0,0 +1,21 @@ +uuid: 95f90c66-3044-448a-b306-603b63191114 +langcode: en +status: true +dependencies: + module: + - block_content + - text +_core: + default_config_hash: TIH5sS99Qcscg2Ylb_PPReqcsBd-5fhJyIpNqJPPocE +id: block_content.cklb_text +field_name: cklb_text +entity_type: block_content +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.block_content.cklb_title.yml b/config/sync/field.storage.block_content.cklb_title.yml new file mode 100644 index 0000000..c7d28e1 --- /dev/null +++ b/config/sync/field.storage.block_content.cklb_title.yml @@ -0,0 +1,23 @@ +uuid: 8e34efd7-52e5-4615-a7cf-a5150264b5c3 +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: rW18bjZ6fm2J0ULhHHyPXe6GCBXIxwgtG5im0sF5F7E +id: block_content.cklb_title +field_name: cklb_title +entity_type: block_content +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.comment.comment_body.yml b/config/sync/field.storage.comment.comment_body.yml new file mode 100644 index 0000000..4a391a7 --- /dev/null +++ b/config/sync/field.storage.comment.comment_body.yml @@ -0,0 +1,21 @@ +uuid: ce53ac68-e5e7-45e5-9977-461d7ba3784c +langcode: en +status: true +dependencies: + module: + - comment + - text +_core: + default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw +id: comment.comment_body +field_name: comment_body +entity_type: comment +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/config/sync/field.storage.commerce_order.shipments.yml b/config/sync/field.storage.commerce_order.shipments.yml new file mode 100644 index 0000000..2b9215c --- /dev/null +++ b/config/sync/field.storage.commerce_order.shipments.yml @@ -0,0 +1,20 @@ +uuid: 5942c414-38a6-436f-ac59-5189fa4a77bb +langcode: en +status: true +dependencies: + module: + - commerce_order + - commerce_shipping +id: commerce_order.shipments +field_name: shipments +entity_type: commerce_order +type: entity_reference +settings: + target_type: commerce_shipment +module: core +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_order_item.license.yml b/config/sync/field.storage.commerce_order_item.license.yml new file mode 100644 index 0000000..67f5fb8 --- /dev/null +++ b/config/sync/field.storage.commerce_order_item.license.yml @@ -0,0 +1,22 @@ +uuid: 648e99f2-2446-4661-be8a-25915bc81f16 +langcode: en +status: true +dependencies: + module: + - commerce_license + - commerce_order +_core: + default_config_hash: 6Fab1HhIDLMm3vDtKlmsBSBJzo-wPstg9Jkav3N1xJE +id: commerce_order_item.license +field_name: license +entity_type: commerce_order_item +type: entity_reference +settings: + target_type: commerce_license +module: core +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.body.yml b/config/sync/field.storage.commerce_product.body.yml new file mode 100644 index 0000000..1720990 --- /dev/null +++ b/config/sync/field.storage.commerce_product.body.yml @@ -0,0 +1,21 @@ +uuid: 680d1d72-97b5-4e5a-a0f5-1e43d6ef71ca +langcode: en +status: true +dependencies: + module: + - commerce_product + - text +_core: + default_config_hash: nhYtx4dRhENXHM78QmiysOM5d1H8OLi_837Ukf5Mpb8 +id: commerce_product.body +field_name: body +entity_type: commerce_product +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.images.yml b/config/sync/field.storage.commerce_product.images.yml new file mode 100644 index 0000000..3480c2a --- /dev/null +++ b/config/sync/field.storage.commerce_product.images.yml @@ -0,0 +1,32 @@ +uuid: 09495f76-76f6-4d9d-9f57-8027e64d5020 +langcode: en +status: true +dependencies: + module: + - commerce_product + - file + - image +_core: + default_config_hash: a01m3bMZ6zyGp0cC6uDOkmF08AYTbKE3ILPWsVLf8Bk +id: commerce_product.images +field_name: images +entity_type: commerce_product +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.layout_builder__layout.yml b/config/sync/field.storage.commerce_product.layout_builder__layout.yml new file mode 100644 index 0000000..4659bb4 --- /dev/null +++ b/config/sync/field.storage.commerce_product.layout_builder__layout.yml @@ -0,0 +1,21 @@ +uuid: 0d07da53-1c1b-4792-a5ba-f3e9bfd1e40b +langcode: en +status: true +dependencies: + module: + - commerce_product + - layout_builder +_core: + default_config_hash: jDRz3utVePgWdVxd8HjWuQNqFV1qLPNbTsLM4T6w7-w +id: commerce_product.layout_builder__layout +field_name: layout_builder__layout +entity_type: commerce_product +type: layout_section +settings: { } +module: layout_builder +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.product_brand.yml b/config/sync/field.storage.commerce_product.product_brand.yml new file mode 100644 index 0000000..2c171e2 --- /dev/null +++ b/config/sync/field.storage.commerce_product.product_brand.yml @@ -0,0 +1,22 @@ +uuid: 2bfcaf9a-0882-4717-bc8e-2966a29ebf0c +langcode: en +status: true +dependencies: + module: + - commerce_product + - taxonomy +_core: + default_config_hash: mPhXologFf-NhEFEr6Gqm58RZxTGevD-MXC4tVzyjw4 +id: commerce_product.product_brand +field_name: product_brand +entity_type: commerce_product +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.product_collections.yml b/config/sync/field.storage.commerce_product.product_collections.yml new file mode 100644 index 0000000..fd4628e --- /dev/null +++ b/config/sync/field.storage.commerce_product.product_collections.yml @@ -0,0 +1,22 @@ +uuid: ded04897-1e27-467f-8ed8-ff8b4d983c18 +langcode: en +status: true +dependencies: + module: + - commerce_product + - taxonomy +_core: + default_config_hash: 13QkqW0kI4wG6zy28ZjAg5OHUWRlsViKWe2PEzQjE4U +id: commerce_product.product_collections +field_name: product_collections +entity_type: commerce_product +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.product_tags.yml b/config/sync/field.storage.commerce_product.product_tags.yml new file mode 100644 index 0000000..f18d010 --- /dev/null +++ b/config/sync/field.storage.commerce_product.product_tags.yml @@ -0,0 +1,22 @@ +uuid: 41425a77-4377-408a-b259-277f48b4902e +langcode: en +status: true +dependencies: + module: + - commerce_product + - taxonomy +_core: + default_config_hash: SuYk1pBP9MIbguKo6ucTg4KN20wuT20T_d9l-FJUz5w +id: commerce_product.product_tags +field_name: product_tags +entity_type: commerce_product +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product_variation.commerce_file.yml b/config/sync/field.storage.commerce_product_variation.commerce_file.yml new file mode 100644 index 0000000..fe14a23 --- /dev/null +++ b/config/sync/field.storage.commerce_product_variation.commerce_file.yml @@ -0,0 +1,28 @@ +uuid: 85cf6f41-66bf-42fe-8af3-e33706f513c8 +langcode: en +status: true +dependencies: + module: + - commerce_product + - file + enforced: + module: + - commerce_file +_core: + default_config_hash: XXmXsv007Nw-CwesHilmb7KA0kMWbYlPnixxEKXXsrM +id: commerce_product_variation.commerce_file +field_name: commerce_file +entity_type: commerce_product_variation +type: file +settings: + display_field: false + display_default: false + uri_scheme: private + target_type: file +module: file +locked: false +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/config/sync/field.storage.commerce_product_variation.license_expiration.yml b/config/sync/field.storage.commerce_product_variation.license_expiration.yml new file mode 100644 index 0000000..8434387 --- /dev/null +++ b/config/sync/field.storage.commerce_product_variation.license_expiration.yml @@ -0,0 +1,21 @@ +uuid: 714f4857-2e17-45c3-92f1-56cf31953b9e +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_product +_core: + default_config_hash: mMIueOfzqP8QlirSnVqlOxSPibB21dcnlSgBTnACMtI +id: commerce_product_variation.license_expiration +field_name: license_expiration +entity_type: commerce_product_variation +type: 'commerce_plugin_item:commerce_license_period' +settings: { } +module: commerce +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product_variation.license_type.yml b/config/sync/field.storage.commerce_product_variation.license_type.yml new file mode 100644 index 0000000..ec94830 --- /dev/null +++ b/config/sync/field.storage.commerce_product_variation.license_type.yml @@ -0,0 +1,21 @@ +uuid: bbb46d1f-f271-4adc-8020-74e115e24bb5 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_product +_core: + default_config_hash: vHH5JXM7LY8vlj__f5Ed8LeZTq5PrzOYCkOTwBXio2Q +id: commerce_product_variation.license_type +field_name: license_type +entity_type: commerce_product_variation +type: 'commerce_plugin_item:commerce_license_type' +settings: { } +module: commerce +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product_variation.weight.yml b/config/sync/field.storage.commerce_product_variation.weight.yml new file mode 100644 index 0000000..d68bb57 --- /dev/null +++ b/config/sync/field.storage.commerce_product_variation.weight.yml @@ -0,0 +1,22 @@ +uuid: 378555f1-6156-4649-8aee-2bbb9f3e2ee9 +langcode: en +status: true +dependencies: + module: + - commerce_product + - physical +_core: + default_config_hash: Tn41vh4f92j6EvkMYBjKyK03iFqh_kf_oh9Bx6qPlMQ +id: commerce_product_variation.weight +field_name: weight +entity_type: commerce_product_variation +type: physical_measurement +settings: + measurement_type: weight +module: physical +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.media.field_media_audio_file.yml b/config/sync/field.storage.media.field_media_audio_file.yml new file mode 100644 index 0000000..a83853c --- /dev/null +++ b/config/sync/field.storage.media.field_media_audio_file.yml @@ -0,0 +1,25 @@ +uuid: 76d1784d-23c8-492a-9e35-f6ef948e1c52 +langcode: en +status: true +dependencies: + module: + - file + - media +_core: + default_config_hash: JCHoh95CpUeBx9ch24Tmi6ru0nwmNz8xWVH4Qs7RnTg +id: media.field_media_audio_file +field_name: field_media_audio_file +entity_type: media +type: file +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.media.field_media_document.yml b/config/sync/field.storage.media.field_media_document.yml new file mode 100644 index 0000000..20a2a32 --- /dev/null +++ b/config/sync/field.storage.media.field_media_document.yml @@ -0,0 +1,28 @@ +uuid: 87146f84-5c47-47c6-802a-ca5039d728cb +langcode: en +status: true +dependencies: + module: + - file + - media + enforced: + module: + - media +_core: + default_config_hash: BdkTx7IL59MCw5a_fOZprPTOGM_wcjz-Fm8g7HV3vFk +id: media.field_media_document +field_name: field_media_document +entity_type: media +type: file +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.media.field_media_image.yml b/config/sync/field.storage.media.field_media_image.yml new file mode 100644 index 0000000..c107b6b --- /dev/null +++ b/config/sync/field.storage.media.field_media_image.yml @@ -0,0 +1,35 @@ +uuid: 4a968cce-906b-4cb3-ad7b-586243759e0d +langcode: en +status: true +dependencies: + module: + - file + - image + - media + enforced: + module: + - media +_core: + default_config_hash: 0N0KSFk57p6qsq3qM4lYVGSuROvzXK-tSsdwByqUh3g +id: media.field_media_image +field_name: field_media_image +entity_type: media +type: image +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.media.field_media_oembed_video.yml b/config/sync/field.storage.media.field_media_oembed_video.yml new file mode 100644 index 0000000..dc5920f --- /dev/null +++ b/config/sync/field.storage.media.field_media_oembed_video.yml @@ -0,0 +1,23 @@ +uuid: 401fc7ee-234f-40a6-a30d-7dd03ca4fa5d +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: cNf_852Dq-fNnSaMI4LxL-J6N7bLkHuDbD9EUqOn4_U +id: media.field_media_oembed_video +field_name: field_media_oembed_video +entity_type: media +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.media.field_media_video_file.yml b/config/sync/field.storage.media.field_media_video_file.yml new file mode 100644 index 0000000..870d310 --- /dev/null +++ b/config/sync/field.storage.media.field_media_video_file.yml @@ -0,0 +1,25 @@ +uuid: 8601d6dc-eef4-40c1-a157-bec66b352723 +langcode: en +status: true +dependencies: + module: + - file + - media +_core: + default_config_hash: z5mgbn1PIVZ5TNMByBmivqo_u3Rdk58UIzpyN4ypTeM +id: media.field_media_video_file +field_name: field_media_video_file +entity_type: media +type: file +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.node.body.yml b/config/sync/field.storage.node.body.yml new file mode 100644 index 0000000..38ce16e --- /dev/null +++ b/config/sync/field.storage.node.body.yml @@ -0,0 +1,21 @@ +uuid: 3fc4abf3-8e11-410c-b628-debe2481f45c +langcode: en +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY +id: node.body +field_name: body +entity_type: node +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/config/sync/field.storage.node.cklb_description.yml b/config/sync/field.storage.node.cklb_description.yml new file mode 100644 index 0000000..d8ae546 --- /dev/null +++ b/config/sync/field.storage.node.cklb_description.yml @@ -0,0 +1,21 @@ +uuid: 2c45a55f-52af-4dfb-bcf1-8b38489adef4 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: CLU14OD5pbrvCJzHJDsGyQk5CaKa1dhdfB3sCpd3eAA +id: node.cklb_description +field_name: cklb_description +entity_type: node +type: string_long +settings: + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.node.cklb_image.yml b/config/sync/field.storage.node.cklb_image.yml new file mode 100644 index 0000000..e6bde12 --- /dev/null +++ b/config/sync/field.storage.node.cklb_image.yml @@ -0,0 +1,22 @@ +uuid: f7cc2c50-1653-472f-84a0-2517881e1451 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: f7CZ_yAwDf8BUpV1fzveUBpjJDEK2Dwa6vm9owV0YLU +id: node.cklb_image +field_name: cklb_image +entity_type: node +type: entity_reference +settings: + target_type: media +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.node.layout_builder__layout.yml b/config/sync/field.storage.node.layout_builder__layout.yml new file mode 100644 index 0000000..fd0e04c --- /dev/null +++ b/config/sync/field.storage.node.layout_builder__layout.yml @@ -0,0 +1,21 @@ +uuid: da2570d6-dc35-4f98-8674-3e6a5b3565b6 +langcode: en +status: true +dependencies: + module: + - layout_builder + - node +_core: + default_config_hash: g7kepf2eck__olXZwnmcQdOVAdSZR0cr77Jm-uf6wfA +id: node.layout_builder__layout +field_name: layout_builder__layout +entity_type: node +type: layout_section +settings: { } +module: layout_builder +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.profile.address.yml b/config/sync/field.storage.profile.address.yml new file mode 100644 index 0000000..b7b725e --- /dev/null +++ b/config/sync/field.storage.profile.address.yml @@ -0,0 +1,24 @@ +uuid: aff7d40b-80dc-4fae-bad8-b225d6d9332c +langcode: en +status: true +dependencies: + module: + - address + - profile + enforced: + module: + - commerce_order +_core: + default_config_hash: 7bB4yBo--Mezm_PhFRPPxFA7NRyFY7a2p8FxJTMbfQY +id: profile.address +field_name: address +entity_type: profile +type: address +settings: { } +module: address +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.profile.tax_number.yml b/config/sync/field.storage.profile.tax_number.yml new file mode 100644 index 0000000..b0c8aac --- /dev/null +++ b/config/sync/field.storage.profile.tax_number.yml @@ -0,0 +1,24 @@ +uuid: 26943078-d82e-422d-ba11-83b0d0ba13ab +langcode: en +status: true +dependencies: + module: + - commerce_tax + - profile + enforced: + module: + - commerce_tax +_core: + default_config_hash: hrW9rW3rrusosIs_U2I_GY_pEL1hwdaG5BSizWnl2I4 +id: profile.tax_number +field_name: tax_number +entity_type: profile +type: commerce_tax_number +settings: { } +module: commerce_tax +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.user.commerce_remote_id.yml b/config/sync/field.storage.user.commerce_remote_id.yml new file mode 100644 index 0000000..4aa2d46 --- /dev/null +++ b/config/sync/field.storage.user.commerce_remote_id.yml @@ -0,0 +1,24 @@ +uuid: e4514e2b-907e-4737-ad46-027c130b496f +langcode: en +status: true +dependencies: + module: + - commerce + - user + enforced: + module: + - commerce_payment +_core: + default_config_hash: YLh2hnX0ZtVtJpFWUkcjkpbgJAP85JuAamng9bLk8M8 +id: user.commerce_remote_id +field_name: commerce_remote_id +entity_type: user +type: commerce_remote_id +settings: { } +module: commerce +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.user.user_picture.yml b/config/sync/field.storage.user.user_picture.yml new file mode 100644 index 0000000..d7aa068 --- /dev/null +++ b/config/sync/field.storage.user.user_picture.yml @@ -0,0 +1,34 @@ +uuid: 490ca0fb-49ba-44ab-8029-d241b8eaa3f9 +langcode: en +status: true +dependencies: + module: + - file + - image + - user +_core: + default_config_hash: 6k-VBFilDLuzgSOT-77CFgHFlcd5D-kqRixtH89EShU +id: user.user_picture +field_name: user_picture +entity_type: user +type: image +settings: + uri_scheme: public + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: + target_id: + - target_id +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field_ui.settings.yml b/config/sync/field_ui.settings.yml new file mode 100644 index 0000000..2a4f309 --- /dev/null +++ b/config/sync/field_ui.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: 33TIaXgJhCLaoIpi-JXm5QDim9gRgMAtJKADdhuPUwU +field_prefix: '' diff --git a/config/sync/file.settings.yml b/config/sync/file.settings.yml new file mode 100644 index 0000000..1ca5bd9 --- /dev/null +++ b/config/sync/file.settings.yml @@ -0,0 +1,8 @@ +_core: + default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM +description: + type: textfield + length: 128 +icon: + directory: core/modules/file/icons +make_unused_managed_files_temporary: false diff --git a/config/sync/filter.format.basic_html.yml b/config/sync/filter.format.basic_html.yml new file mode 100644 index 0000000..2b2426c --- /dev/null +++ b/config/sync/filter.format.basic_html.yml @@ -0,0 +1,45 @@ +uuid: 58e4a053-483e-4543-bcb1-d36cfad6d4f9 +langcode: en +status: true +dependencies: + module: + - editor +_core: + default_config_hash: P8ddpAIKtawJDi5SzOwCzVnnNYqONewSTJ6Xn0dW_aQ +name: 'Basic HTML' +format: basic_html +weight: 0 +filters: + filter_html: + id: filter_html + provider: filter + status: true + weight: -10 + settings: + allowed_html: '

          1. ' + filter_html_help: false + filter_html_nofollow: false + filter_align: + id: filter_align + provider: filter + status: true + weight: 7 + settings: { } + filter_caption: + id: filter_caption + provider: filter + status: true + weight: 8 + settings: { } + filter_html_image_secure: + id: filter_html_image_secure + provider: filter + status: true + weight: 9 + settings: { } + editor_file_reference: + id: editor_file_reference + provider: editor + status: true + weight: 11 + settings: { } diff --git a/config/sync/filter.format.email_html.yml b/config/sync/filter.format.email_html.yml new file mode 100644 index 0000000..10f37c4 --- /dev/null +++ b/config/sync/filter.format.email_html.yml @@ -0,0 +1,10 @@ +uuid: f6dba22e-3fef-4b1a-bfb2-cddbcce088c9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 8UYEKlWeJ8cK8V-9ojit-_9SwBjQKk0SU-UkiuvlWKI +name: 'Email HTML' +format: email_html +weight: 10 +filters: { } diff --git a/config/sync/filter.format.full_html.yml b/config/sync/filter.format.full_html.yml new file mode 100644 index 0000000..151007c --- /dev/null +++ b/config/sync/filter.format.full_html.yml @@ -0,0 +1,36 @@ +uuid: 9653a454-1fe5-452c-9e30-678cbe65e655 +langcode: en +status: true +dependencies: + module: + - editor +_core: + default_config_hash: hewPmBgni9jlDK_IjLxUx1HsTbinK-hdl0lOwjbteIY +name: 'Full HTML' +format: full_html +weight: 1 +filters: + filter_align: + id: filter_align + provider: filter + status: true + weight: 8 + settings: { } + filter_caption: + id: filter_caption + provider: filter + status: true + weight: 9 + settings: { } + filter_htmlcorrector: + id: filter_htmlcorrector + provider: filter + status: true + weight: 10 + settings: { } + editor_file_reference: + id: editor_file_reference + provider: editor + status: true + weight: 11 + settings: { } diff --git a/config/sync/filter.format.plain_text.yml b/config/sync/filter.format.plain_text.yml new file mode 100644 index 0000000..66ad7fb --- /dev/null +++ b/config/sync/filter.format.plain_text.yml @@ -0,0 +1,29 @@ +uuid: d8f2c2d3-a72b-4ecb-af23-66537155c807 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ +name: 'Plain text' +format: plain_text +weight: 10 +filters: + filter_html_escape: + id: filter_html_escape + provider: filter + status: true + weight: -10 + settings: { } + filter_url: + id: filter_url + provider: filter + status: true + weight: 0 + settings: + filter_url_length: 72 + filter_autop: + id: filter_autop + provider: filter + status: true + weight: 0 + settings: { } diff --git a/config/sync/filter.format.restricted_html.yml b/config/sync/filter.format.restricted_html.yml new file mode 100644 index 0000000..b2c9cda --- /dev/null +++ b/config/sync/filter.format.restricted_html.yml @@ -0,0 +1,32 @@ +uuid: 6413eee8-38e9-49de-ae34-d0a8fac0b4b9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: KUjJ8Ti_ZJSlhGM88E_mhJP-8mmQRNUB6RFof615Kt0 +name: 'Restricted HTML' +format: restricted_html +weight: 0 +filters: + filter_html: + id: filter_html + provider: filter + status: true + weight: -10 + settings: + allowed_html: '

              1. ' + filter_html_help: true + filter_html_nofollow: false + filter_autop: + id: filter_autop + provider: filter + status: true + weight: 0 + settings: { } + filter_url: + id: filter_url + provider: filter + status: true + weight: 0 + settings: + filter_url_length: 72 diff --git a/config/sync/filter.settings.yml b/config/sync/filter.settings.yml new file mode 100644 index 0000000..9ce2939 --- /dev/null +++ b/config/sync/filter.settings.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA +fallback_format: plain_text +always_show_fallback_choice: false diff --git a/config/sync/image.settings.yml b/config/sync/image.settings.yml new file mode 100644 index 0000000..b757490 --- /dev/null +++ b/config/sync/image.settings.yml @@ -0,0 +1,5 @@ +_core: + default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw +preview_image: core/modules/image/sample.png +allow_insecure_derivatives: false +suppress_itok_output: false diff --git a/config/sync/image.style.cklb_container.yml b/config/sync/image.style.cklb_container.yml new file mode 100644 index 0000000..2d41d49 --- /dev/null +++ b/config/sync/image.style.cklb_container.yml @@ -0,0 +1,17 @@ +uuid: 9a9f7f97-fcb4-4cbc-bae6-012f4667f85d +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: MJW7KGMvEpbhi3RWy8cwlXqmiFwEwmedR2NylOJfh54 +name: cklb_container +label: 'Container (1600px)' +effects: + 6ebebab3-365b-4967-930f-f5a6a073e9bc: + uuid: 6ebebab3-365b-4967-930f-f5a6a073e9bc + id: image_scale + weight: 1 + data: + width: 1600 + height: null + upscale: true diff --git a/config/sync/image.style.cklb_full_width.yml b/config/sync/image.style.cklb_full_width.yml new file mode 100644 index 0000000..0d1ab0b --- /dev/null +++ b/config/sync/image.style.cklb_full_width.yml @@ -0,0 +1,9 @@ +uuid: 21e3cfc8-d794-48e5-a94c-8de95331db65 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: LmHrixtd-awJRP8qo0N9N8FImRupjvMgkYub9p7PzIg +name: cklb_full_width +label: 'Full width' +effects: { } diff --git a/config/sync/image.style.cklb_medium_max_1144px.yml b/config/sync/image.style.cklb_medium_max_1144px.yml new file mode 100644 index 0000000..d8a9372 --- /dev/null +++ b/config/sync/image.style.cklb_medium_max_1144px.yml @@ -0,0 +1,17 @@ +uuid: b8ee11ae-5ac0-4402-8979-0f3a77ca0de2 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: eGL8hZMQZWkSOE7HoyE2-H7-jjysp1FsIWvdNKK0YQc +name: cklb_medium_max_1144px +label: 'Medium (max 1144px)' +effects: + 5847302e-818e-4d42-91a1-570df551420f: + uuid: 5847302e-818e-4d42-91a1-570df551420f + id: image_scale + weight: 1 + data: + width: 1144 + height: null + upscale: true diff --git a/config/sync/image.style.cklb_small_max_600px.yml b/config/sync/image.style.cklb_small_max_600px.yml new file mode 100644 index 0000000..60ea633 --- /dev/null +++ b/config/sync/image.style.cklb_small_max_600px.yml @@ -0,0 +1,17 @@ +uuid: 3e1c6580-2099-40aa-bb8e-e5367e33f1c5 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: o_iB_JDSq3q531LTvCWG0G7_-GPGTsyLg_auvPKlRd0 +name: cklb_small_max_600px +label: 'Small (max 600px)' +effects: + 9b1bd098-bd42-4521-8d80-719a8cb298fc: + uuid: 9b1bd098-bd42-4521-8d80-719a8cb298fc + id: image_scale + weight: 1 + data: + width: 600 + height: null + upscale: true diff --git a/config/sync/image.style.large.yml b/config/sync/image.style.large.yml new file mode 100644 index 0000000..5339ece --- /dev/null +++ b/config/sync/image.style.large.yml @@ -0,0 +1,17 @@ +uuid: b2839f7b-bb89-41d1-936b-1a1f89233649 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: J2n0RpFzS0-bgSyxjs6rSdgxB1rb-bTAgqywNx_964M +name: large +label: 'Large (480×480)' +effects: + ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d: + uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d + id: image_scale + weight: 0 + data: + width: 480 + height: 480 + upscale: false diff --git a/config/sync/image.style.media_library.yml b/config/sync/image.style.media_library.yml new file mode 100644 index 0000000..c9b9f06 --- /dev/null +++ b/config/sync/image.style.media_library.yml @@ -0,0 +1,20 @@ +uuid: 46563f28-00cd-4648-b747-66955de2804e +langcode: en +status: true +dependencies: + enforced: + module: + - media_library +_core: + default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8 +name: media_library +label: 'Media Library thumbnail (220×220)' +effects: + 75b076a8-1234-4b42-85db-bf377c4d8d5f: + uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f + id: image_scale + weight: 0 + data: + width: 220 + height: 220 + upscale: false diff --git a/config/sync/image.style.medium.yml b/config/sync/image.style.medium.yml new file mode 100644 index 0000000..67b9178 --- /dev/null +++ b/config/sync/image.style.medium.yml @@ -0,0 +1,17 @@ +uuid: 218089fe-e341-4a80-8e7c-e41365f3d627 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Y9NmnZHQq20ASSyTNA6JnwtWrJJiSajOehGDtmUFdM0 +name: medium +label: 'Medium (220×220)' +effects: + bddf0d06-42f9-4c75-a700-a33cafa25ea0: + uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0 + id: image_scale + weight: 0 + data: + width: 220 + height: 220 + upscale: false diff --git a/config/sync/image.style.product_teaser.yml b/config/sync/image.style.product_teaser.yml new file mode 100644 index 0000000..f2b53d1 --- /dev/null +++ b/config/sync/image.style.product_teaser.yml @@ -0,0 +1,17 @@ +uuid: 12ac0995-02c4-4a23-9ac3-b4dacfeb3ed0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: xoqFV49hWNz1HKn69KOzB3MFrkjOSopqru5h3r2frPY +name: product_teaser +label: 'Product teaser' +effects: + c5938430-7c2d-4d4a-ba1f-57a85b1aeea1: + uuid: c5938430-7c2d-4d4a-ba1f-57a85b1aeea1 + id: image_scale_and_crop + weight: 1 + data: + width: 600 + height: 600 + anchor: center-center diff --git a/config/sync/image.style.thumbnail.yml b/config/sync/image.style.thumbnail.yml new file mode 100644 index 0000000..0945d8e --- /dev/null +++ b/config/sync/image.style.thumbnail.yml @@ -0,0 +1,17 @@ +uuid: 7836eef5-a84b-4965-8368-8a563e705382 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: cCiWdBHgLwj5omG35lsKc4LkW4MBdmcctkVop4ol5x0 +name: thumbnail +label: 'Thumbnail (100×100)' +effects: + 1cfec298-8620-4749-b100-ccb6c4500779: + uuid: 1cfec298-8620-4749-b100-ccb6c4500779 + id: image_scale + weight: 0 + data: + width: 100 + height: 100 + upscale: false diff --git a/config/sync/image.style.wide.yml b/config/sync/image.style.wide.yml new file mode 100644 index 0000000..ee6ee4e --- /dev/null +++ b/config/sync/image.style.wide.yml @@ -0,0 +1,17 @@ +uuid: da26b7c4-a3d2-4143-9140-7f07f3ffc0bd +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: LswCVLg8z4Zk1u6pV1Dpj1qUj5YY2CQ7_ojx7bJQ8qk +name: wide +label: 'Wide (1090)' +effects: + 09959c15-59ce-4f6d-90df-e2d7cf32bce5: + uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5 + id: image_scale + weight: 1 + data: + width: 1090 + height: null + upscale: false diff --git a/config/sync/layout_builder_blocks.styles.yml b/config/sync/layout_builder_blocks.styles.yml new file mode 100644 index 0000000..2cfb01b --- /dev/null +++ b/config/sync/layout_builder_blocks.styles.yml @@ -0,0 +1,25 @@ +_core: + default_config_hash: sKn8C4Edb7dJmPhW1JZ9z4Ow4znTXuK4uwKOy5wBwJo +plugins: + background: + background_color: + enabled: 1 + background_media: + enabled: 1 + typography: + text_color: + enabled: 1 + text_alignment: + enabled: 1 + spacing: + padding: + enabled: 1 + margin: + enabled: 1 + border: + border: + enabled: 0 + animation: + scroll_effects: + enabled: 1 +block_restrictions: { } diff --git a/config/sync/layout_builder_modal.settings.yml b/config/sync/layout_builder_modal.settings.yml new file mode 100644 index 0000000..1510ab1 --- /dev/null +++ b/config/sync/layout_builder_modal.settings.yml @@ -0,0 +1,6 @@ +_core: + default_config_hash: Dn5bgBjAQGEALDUpWKCbNA2kaLyUDUa-gsLBgrZHNMc +modal_width: '768' +modal_height: auto +modal_autoresize: true +theme_display: default_theme diff --git a/config/sync/media.settings.yml b/config/sync/media.settings.yml new file mode 100644 index 0000000..fd32318 --- /dev/null +++ b/config/sync/media.settings.yml @@ -0,0 +1,6 @@ +_core: + default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY +icon_base_uri: 'public://media-icons/generic' +iframe_domain: '' +oembed_providers_url: 'https://oembed.com/providers.json' +standalone_url: false diff --git a/config/sync/media.type.audio.yml b/config/sync/media.type.audio.yml new file mode 100644 index 0000000..002fa68 --- /dev/null +++ b/config/sync/media.type.audio.yml @@ -0,0 +1,16 @@ +uuid: 31c71cc3-7d1a-4be7-ab5e-a092187433fc +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: eJw8n6Tk2tO3ZysuEeGR1gZa1yRffaZzR4t0Q7iNurs +id: audio +label: Audio +description: 'A locally hosted audio file.' +source: audio_file +queue_thumbnail_downloads: false +new_revision: true +source_configuration: + source_field: field_media_audio_file +field_map: + name: name diff --git a/config/sync/media.type.document.yml b/config/sync/media.type.document.yml new file mode 100644 index 0000000..9a1f6c1 --- /dev/null +++ b/config/sync/media.type.document.yml @@ -0,0 +1,16 @@ +uuid: d31c783c-3690-42ab-86f3-4d1c4e1b4a56 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: _D9q3XSnP6ik9we9UuoTvZsQKPuYNp_G9PfwVtWzgnQ +id: document +label: Document +description: 'An uploaded file or document, such as a PDF.' +source: file +queue_thumbnail_downloads: false +new_revision: true +source_configuration: + source_field: field_media_document +field_map: + name: name diff --git a/config/sync/media.type.image.yml b/config/sync/media.type.image.yml new file mode 100644 index 0000000..3b2df30 --- /dev/null +++ b/config/sync/media.type.image.yml @@ -0,0 +1,16 @@ +uuid: 3b7b98cb-8e6e-43c7-bc08-a1215c45679b +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 6Qope5wG7HUpV0tPOBMtDI_GZkHFcF1Xj4hgD9Cu_hM +id: image +label: Image +description: 'Use local images for reusable media.' +source: image +queue_thumbnail_downloads: false +new_revision: true +source_configuration: + source_field: field_media_image +field_map: + name: name diff --git a/config/sync/media.type.remote_video.yml b/config/sync/media.type.remote_video.yml new file mode 100644 index 0000000..02ff04d --- /dev/null +++ b/config/sync/media.type.remote_video.yml @@ -0,0 +1,20 @@ +uuid: 466107e1-45ab-4f37-a5b2-c953731f04e8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hIBTnDGgDKnCiP6HUZm1m7600DHUEpC6FN3LQ4sUgZ4 +id: remote_video +label: 'Remote video' +description: 'A remotely hosted video from YouTube or Vimeo.' +source: 'oembed:video' +queue_thumbnail_downloads: false +new_revision: true +source_configuration: + source_field: field_media_oembed_video + thumbnails_directory: 'public://oembed_thumbnails/[date:custom:Y-m]' + providers: + - YouTube + - Vimeo +field_map: + title: name diff --git a/config/sync/media.type.video.yml b/config/sync/media.type.video.yml new file mode 100644 index 0000000..3669768 --- /dev/null +++ b/config/sync/media.type.video.yml @@ -0,0 +1,16 @@ +uuid: 807dcde4-3b44-4ed5-a5a7-960d676ee0c8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hzgvcRgZHltqWf8hBmttoWh95tCJoPL25lPq9YSIRsY +id: video +label: Video +description: 'A locally hosted video file.' +source: video_file +queue_thumbnail_downloads: false +new_revision: true +source_configuration: + source_field: field_media_video_file +field_map: + name: name diff --git a/config/sync/media_library.settings.yml b/config/sync/media_library.settings.yml new file mode 100644 index 0000000..3a1479a --- /dev/null +++ b/config/sync/media_library.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60 +advanced_ui: false diff --git a/config/sync/menu_ui.settings.yml b/config/sync/menu_ui.settings.yml new file mode 100644 index 0000000..0b987fa --- /dev/null +++ b/config/sync/menu_ui.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU +override_parent_selector: false diff --git a/config/sync/node.settings.yml b/config/sync/node.settings.yml new file mode 100644 index 0000000..6fcede9 --- /dev/null +++ b/config/sync/node.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U +use_admin_theme: true diff --git a/config/sync/node.type.cklb_landing_page.yml b/config/sync/node.type.cklb_landing_page.yml new file mode 100644 index 0000000..b1eca6e --- /dev/null +++ b/config/sync/node.type.cklb_landing_page.yml @@ -0,0 +1,19 @@ +uuid: 5b0dde7b-aa1b-4ad0-a270-2a0a6264511b +langcode: en +status: true +dependencies: + module: + - menu_ui +third_party_settings: + menu_ui: + available_menus: { } + parent: '' +_core: + default_config_hash: CrB6eOeQ1hzfqnNxTINuxYkYU3HZy5S0q4aXbsPe0-g +name: 'Landing page' +type: cklb_landing_page +description: 'Use landing pages to compose pages out of content blocks via the layout builder, such as the site front page.' +help: '' +new_revision: true +preview_mode: 1 +display_submitted: false diff --git a/config/sync/node.type.page.yml b/config/sync/node.type.page.yml new file mode 100644 index 0000000..bcd5dbd --- /dev/null +++ b/config/sync/node.type.page.yml @@ -0,0 +1,13 @@ +uuid: 40a6f07f-25ba-4f20-b09b-b1b418444c3f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: zhtPXoRcC6REiepM0k16zw__FDW5YOXDR6U2WlldTrs +name: 'Basic page' +type: page +description: "Use basic pages for your static content, such as an 'About us' page." +help: '' +new_revision: false +preview_mode: 1 +display_submitted: false diff --git a/config/sync/pathauto.pattern.media_product.yml b/config/sync/pathauto.pattern.media_product.yml new file mode 100644 index 0000000..c8b4958 --- /dev/null +++ b/config/sync/pathauto.pattern.media_product.yml @@ -0,0 +1,24 @@ +uuid: b6f4c6d2-d072-4332-95f8-4a0069f85991 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: 0bUdjzYbIfy4bPAk8S4idOMIhDltI081RTaA3njyuGI +id: media_product +label: 'Media product' +type: 'canonical_entities:commerce_product' +pattern: 'products/[commerce_product:title]' +selection_criteria: + df69ed06-dcc2-4ed6-8d86-7a7b915efb8b: + id: 'entity_bundle:commerce_product' + negate: false + uuid: df69ed06-dcc2-4ed6-8d86-7a7b915efb8b + context_mapping: + commerce_product: commerce_product + bundles: + media: media +selection_logic: and +weight: -5 +relationships: { } diff --git a/config/sync/pathauto.pattern.physical_product.yml b/config/sync/pathauto.pattern.physical_product.yml new file mode 100644 index 0000000..fb268e0 --- /dev/null +++ b/config/sync/pathauto.pattern.physical_product.yml @@ -0,0 +1,24 @@ +uuid: 18de35bc-525d-4e27-81d9-59ca3323b461 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: 64ZA8VYyB0HND-T6n4JxgYYrwKk6HXC-6Sdus24pbpM +id: physical_product +label: 'Physical product' +type: 'canonical_entities:commerce_product' +pattern: 'products/[commerce_product:title]' +selection_criteria: + 6b280efc-2da2-46bb-997c-a6004786a16f: + id: 'entity_bundle:commerce_product' + negate: false + uuid: 6b280efc-2da2-46bb-997c-a6004786a16f + context_mapping: + commerce_product: commerce_product + bundles: + physical: physical +selection_logic: and +weight: -5 +relationships: { } diff --git a/config/sync/pathauto.settings.yml b/config/sync/pathauto.settings.yml new file mode 100644 index 0000000..acfd943 --- /dev/null +++ b/config/sync/pathauto.settings.yml @@ -0,0 +1,22 @@ +_core: + default_config_hash: SwvLp8snyPEExF41CaJJYdPUVomofLqtXvwciHc4cPg +enabled_entity_types: + - user +punctuation: + hyphen: 1 +verbose: false +separator: '-' +max_length: 100 +max_component_length: 100 +transliterate: true +reduce_ascii: false +case: true +ignore_words: 'a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with' +update_action: 2 +safe_tokens: + - alias + - path + - join-path + - login-url + - url + - url-brief diff --git a/config/sync/profile.type.customer.yml b/config/sync/profile.type.customer.yml new file mode 100644 index 0000000..6c53d0c --- /dev/null +++ b/config/sync/profile.type.customer.yml @@ -0,0 +1,20 @@ +uuid: af62227d-4262-462f-99c1-b2f1c05a0dc8 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_order +third_party_settings: + commerce_order: + customer_profile_type: true +_core: + default_config_hash: I3_fH4tUQVejPgxvJzH1-mGg9A9OaY4Hm5iN2G2Fz20 +id: customer +label: Customer +display_label: 'Customer information' +multiple: true +registration: false +roles: { } +allow_revisions: false +new_revision: false diff --git a/config/sync/search_api.index.products.yml b/config/sync/search_api.index.products.yml new file mode 100644 index 0000000..64b0c4a --- /dev/null +++ b/config/sync/search_api.index.products.yml @@ -0,0 +1,90 @@ +uuid: 2aee8fb3-2fac-4d40-8f82-54fba9f97b68 +langcode: en +status: true +dependencies: + config: + - field.storage.commerce_product.body + - field.storage.commerce_product.product_brand + - field.storage.commerce_product.product_collections + - search_api.server.database + module: + - commerce_product + - search_api +_core: + default_config_hash: VWrAFswgxwnUxKYKUXI4u27n9bLYVFV_jlkvJGgsI3M +id: products +name: Products +description: '' +read_only: false +field_settings: + body: + label: Body + datasource_id: 'entity:commerce_product' + property_path: body + type: text + dependencies: + config: + - field.storage.commerce_product.body + created: + label: Created + datasource_id: 'entity:commerce_product' + property_path: created + type: date + dependencies: + module: + - commerce_product + price: + label: 'Default variation » Price » Number' + datasource_id: 'entity:commerce_product' + property_path: 'default_variation:entity:price:number' + type: decimal + dependencies: + module: + - commerce_product + product_brand: + label: 'Product Brand' + datasource_id: 'entity:commerce_product' + property_path: product_brand + type: integer + dependencies: + config: + - field.storage.commerce_product.product_brand + product_collections: + label: 'Product Collections' + datasource_id: 'entity:commerce_product' + property_path: product_collections + type: integer + dependencies: + config: + - field.storage.commerce_product.product_collections + title: + label: Title + datasource_id: 'entity:commerce_product' + property_path: title + type: text + boost: 5.0 + dependencies: + module: + - commerce_product +datasource_settings: + 'entity:commerce_product': + bundles: + default: true + selected: { } + languages: + default: true + selected: { } +processor_settings: + add_url: { } + aggregated_field: { } + entity_type: { } + language_with_fallback: { } + rendered_item: { } +tracker_settings: + default: + indexing_order: fifo +options: + cron_limit: 50 + index_directly: true + track_changes_in_references: true +server: database diff --git a/config/sync/search_api.server.database.yml b/config/sync/search_api.server.database.yml new file mode 100644 index 0000000..3562301 --- /dev/null +++ b/config/sync/search_api.server.database.yml @@ -0,0 +1,16 @@ +uuid: b191d15f-e93b-4c4f-b38f-3cfd33c3992d +langcode: en +status: true +dependencies: + module: + - search_api_db +_core: + default_config_hash: g7cOjqnCzDTZTPB8QXrkXstM4aXojfFxpxMPyehVOxI +id: database +name: Database +description: '' +backend: search_api_db +backend_config: + database: 'default:default' + min_chars: 1 + matching: words diff --git a/config/sync/search_api.settings.yml b/config/sync/search_api.settings.yml new file mode 100644 index 0000000..510a3e5 --- /dev/null +++ b/config/sync/search_api.settings.yml @@ -0,0 +1,28 @@ +_core: + default_config_hash: b2zIRm9Jv3SB60NYdZkZHxH8-KdEa-Xa48-4NsIi4lg +default_cron_limit: 50 +cron_worker_runtime: 15 +default_tracker: default +tracking_page_size: 100 +boost_factors: + - 0.0 + - 0.1 + - 0.2 + - 0.3 + - 0.5 + - 0.6 + - 0.7 + - 0.8 + - 0.9 + - 1.0 + - 1.1 + - 1.2 + - 1.3 + - 1.4 + - 1.5 + - 2.0 + - 3.0 + - 5.0 + - 8.0 + - 13.0 + - 21.0 diff --git a/config/sync/search_api_db.settings.yml b/config/sync/search_api_db.settings.yml new file mode 100644 index 0000000..32ffc94 --- /dev/null +++ b/config/sync/search_api_db.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: fEmluJPpUL5dVqkWi0Fw89OlZYLhjQqyZIl6HWCDE1s +autocomplete_max_occurrences: 0.9 diff --git a/config/sync/shortcut.set.default.yml b/config/sync/shortcut.set.default.yml new file mode 100644 index 0000000..ed8c04a --- /dev/null +++ b/config/sync/shortcut.set.default.yml @@ -0,0 +1,8 @@ +uuid: 4e5cd411-282a-4b10-afbc-0decd25a00ee +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: U5VlGjd_SfV0Qm_EfnaynOfc549cNscFAx48JfYoMRI +id: default +label: Default diff --git a/config/sync/symfony_mailer.mailer_policy._.yml b/config/sync/symfony_mailer.mailer_policy._.yml new file mode 100644 index 0000000..9c92bb2 --- /dev/null +++ b/config/sync/symfony_mailer.mailer_policy._.yml @@ -0,0 +1,15 @@ +uuid: 2f6cd68a-1e8a-408c-a006-f1bb92d54e57 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: oUtf135g-IPzmggtfsOOX5ZINxbSe5Kno64BN2NUKn0 +id: _ +configuration: + mailer_url_to_absolute: { } + mailer_inline_css: { } + mailer_wrap_and_convert: + plain: false + swiftmailer: false + email_theme: + theme: _active_fallback diff --git a/config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml b/config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml new file mode 100644 index 0000000..a9812d6 --- /dev/null +++ b/config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml @@ -0,0 +1,20 @@ +uuid: aae8e9ad-a978-4304-a671-281e0f9007f1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: kkNORryWq16MbI0VC3ObIOgBuWNVx3PtGq-hDSsxgIw +id: symfony_mailer.test +configuration: + email_body: + content: + value: |- +

                You have mail

                +

                This is a test email from [site:name].

                +

                Have a great {{ day }}!

                +

                + Drupal Symfony Mailer +

                + format: email_html + email_subject: + value: 'Test email from [site:name]' diff --git a/config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml b/config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml new file mode 100644 index 0000000..05e123d --- /dev/null +++ b/config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml @@ -0,0 +1,20 @@ +uuid: 2c22ec73-5f9e-4256-a3c4-568c8a59e3e8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7WoLLLhl8OFdTzOV44Q5DNIBr0-iilYpE-JKlSRmvqA +id: ddev_smtp +label: 'ddev SMTP' +plugin: smtp +configuration: + user: '' + pass: '' + host: 127.0.0.1 + port: 1025 + query: + verify_peer: true + local_domain: '' + restart_threshold: null + restart_threshold_sleep: null + ping_threshold: null diff --git a/config/sync/symfony_mailer.mailer_transport.sendmail.yml b/config/sync/symfony_mailer.mailer_transport.sendmail.yml new file mode 100644 index 0000000..424dfe9 --- /dev/null +++ b/config/sync/symfony_mailer.mailer_transport.sendmail.yml @@ -0,0 +1,12 @@ +uuid: 95d044a8-c293-4982-bc01-5806259b8992 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: JlhtZGzrKvb_1TFIVW-o2lEEoeutUxHkdpZ1WzIkJMY +id: sendmail +label: Sendmail +plugin: sendmail +configuration: + query: + command: '' diff --git a/config/sync/symfony_mailer.settings.yml b/config/sync/symfony_mailer.settings.yml new file mode 100644 index 0000000..aac64a5 --- /dev/null +++ b/config/sync/symfony_mailer.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: EyOEXkLJD4vYGpK5wicdBSwBorOJgslf_tyscMgeN0Q +default_transport: native diff --git a/config/sync/system.action.comment_delete_action.yml b/config/sync/system.action.comment_delete_action.yml new file mode 100644 index 0000000..adfc328 --- /dev/null +++ b/config/sync/system.action.comment_delete_action.yml @@ -0,0 +1,13 @@ +uuid: 6851662c-bc32-4820-bebb-c47705cd44a8 +langcode: en +status: true +dependencies: + module: + - comment +_core: + default_config_hash: vpBH8OmL4sdesCdeZLsW8KOutB5gkbreWJbfjhfFKaQ +id: comment_delete_action +label: 'Delete comment' +type: comment +plugin: 'entity:delete_action:comment' +configuration: { } diff --git a/config/sync/system.action.comment_publish_action.yml b/config/sync/system.action.comment_publish_action.yml new file mode 100644 index 0000000..b4d23ec --- /dev/null +++ b/config/sync/system.action.comment_publish_action.yml @@ -0,0 +1,13 @@ +uuid: 92eaaa55-28a7-4b7c-a7d5-e5dd3fee743b +langcode: en +status: true +dependencies: + module: + - comment +_core: + default_config_hash: C00dyL_W_5M0nFlgUB3lWUTUs96jn51Jw1MLHVEHZD0 +id: comment_publish_action +label: 'Publish comment' +type: comment +plugin: 'entity:publish_action:comment' +configuration: { } diff --git a/config/sync/system.action.comment_save_action.yml b/config/sync/system.action.comment_save_action.yml new file mode 100644 index 0000000..9dbe8c3 --- /dev/null +++ b/config/sync/system.action.comment_save_action.yml @@ -0,0 +1,13 @@ +uuid: 162fc1bd-b50b-433b-8da8-b68e97e630d0 +langcode: en +status: true +dependencies: + module: + - comment +_core: + default_config_hash: lfyE_snmvfg_EQ3VDyhUtGAXgmqtEiqa46I3bTMg8DU +id: comment_save_action +label: 'Save comment' +type: comment +plugin: 'entity:save_action:comment' +configuration: { } diff --git a/config/sync/system.action.comment_unpublish_action.yml b/config/sync/system.action.comment_unpublish_action.yml new file mode 100644 index 0000000..cd6415a --- /dev/null +++ b/config/sync/system.action.comment_unpublish_action.yml @@ -0,0 +1,13 @@ +uuid: b822f507-de50-42e1-85c2-b68acc097768 +langcode: en +status: true +dependencies: + module: + - comment +_core: + default_config_hash: tWOIjSMobEWOFZddMkNqb9JySbOVwE1diC6NRqcfLTk +id: comment_unpublish_action +label: 'Unpublish comment' +type: comment +plugin: 'entity:unpublish_action:comment' +configuration: { } diff --git a/config/sync/system.action.commerce_license_delete_action.yml b/config/sync/system.action.commerce_license_delete_action.yml new file mode 100644 index 0000000..473969d --- /dev/null +++ b/config/sync/system.action.commerce_license_delete_action.yml @@ -0,0 +1,16 @@ +uuid: 7b3e3a95-a5da-47a1-a348-86d6b1cc0c58 +langcode: en +status: true +dependencies: + module: + - commerce_license + enforced: + module: + - commerce_license +_core: + default_config_hash: 2lPjYv-XlqWZYkOBU9fKZOKzUK--fH0PqL2BD9TJ1vA +id: commerce_license_delete_action +label: 'Delete license' +type: commerce_license +plugin: 'entity:delete_action:commerce_license' +configuration: { } diff --git a/config/sync/system.action.commerce_order_delete_action.yml b/config/sync/system.action.commerce_order_delete_action.yml new file mode 100644 index 0000000..8160473 --- /dev/null +++ b/config/sync/system.action.commerce_order_delete_action.yml @@ -0,0 +1,16 @@ +uuid: d7c5e561-5c71-4f59-a448-b849fa9d3c38 +langcode: en +status: true +dependencies: + module: + - commerce_order + enforced: + module: + - commerce_order +_core: + default_config_hash: Cj_fREZCx0NVDUfo3pDHFMUuCGTzoag_MUFspBxr3AQ +id: commerce_order_delete_action +label: 'Delete order' +type: commerce_order +plugin: 'entity:delete_action:commerce_order' +configuration: { } diff --git a/config/sync/system.action.commerce_product_delete_action.yml b/config/sync/system.action.commerce_product_delete_action.yml new file mode 100644 index 0000000..b9101ab --- /dev/null +++ b/config/sync/system.action.commerce_product_delete_action.yml @@ -0,0 +1,16 @@ +uuid: da434677-37ae-4dd7-aec5-6ae83b9b3981 +langcode: en +status: true +dependencies: + module: + - commerce_product + enforced: + module: + - commerce_product +_core: + default_config_hash: OHXQpgNjqh0nG6rRmaprOm94zIX-wAmSu3TlY2JBn54 +id: commerce_product_delete_action +label: 'Delete product' +type: commerce_product +plugin: 'entity:delete_action:commerce_product' +configuration: { } diff --git a/config/sync/system.action.commerce_publish_product.yml b/config/sync/system.action.commerce_publish_product.yml new file mode 100644 index 0000000..a349f11 --- /dev/null +++ b/config/sync/system.action.commerce_publish_product.yml @@ -0,0 +1,13 @@ +uuid: ffaccf3e-ddee-4a57-85f2-938641a60b2f +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: 83abjxFWTlkso65OfwvUzv_VvAc9iIswF2kW_MGZmY8 +id: commerce_publish_product +label: 'Publish product' +type: commerce_product +plugin: commerce_publish_product +configuration: { } diff --git a/config/sync/system.action.commerce_store_delete_action.yml b/config/sync/system.action.commerce_store_delete_action.yml new file mode 100644 index 0000000..1745952 --- /dev/null +++ b/config/sync/system.action.commerce_store_delete_action.yml @@ -0,0 +1,16 @@ +uuid: f44d4df9-b09f-4ba3-99eb-604dd1f817ec +langcode: en +status: true +dependencies: + module: + - commerce_store + enforced: + module: + - commerce_store +_core: + default_config_hash: jF3zps2fK-ebAbUv5-Sz1yk2oy_VEsEGCSsOWviHEjY +id: commerce_store_delete_action +label: 'Delete store' +type: commerce_store +plugin: 'entity:delete_action:commerce_store' +configuration: { } diff --git a/config/sync/system.action.commerce_unpublish_product.yml b/config/sync/system.action.commerce_unpublish_product.yml new file mode 100644 index 0000000..9aa4010 --- /dev/null +++ b/config/sync/system.action.commerce_unpublish_product.yml @@ -0,0 +1,13 @@ +uuid: 8572958c-a403-4fb9-967a-06a67def3e6a +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: 6gfQWDjHFkJsE2C2ayhUL7x1jBGPgOhr3SGF15Kxy-w +id: commerce_unpublish_product +label: 'Unpublish product' +type: commerce_product +plugin: commerce_unpublish_product +configuration: { } diff --git a/config/sync/system.action.media_delete_action.yml b/config/sync/system.action.media_delete_action.yml new file mode 100644 index 0000000..0d6003e --- /dev/null +++ b/config/sync/system.action.media_delete_action.yml @@ -0,0 +1,13 @@ +uuid: d271d388-bb19-4aa0-a728-5b20bd71936d +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: FrZy1tmuXJcOxhXlBoI1Hsnen5TT-9OCC1iolWH84go +id: media_delete_action +label: 'Delete media' +type: media +plugin: 'entity:delete_action:media' +configuration: { } diff --git a/config/sync/system.action.media_publish_action.yml b/config/sync/system.action.media_publish_action.yml new file mode 100644 index 0000000..087126e --- /dev/null +++ b/config/sync/system.action.media_publish_action.yml @@ -0,0 +1,13 @@ +uuid: 74928aac-6a19-402b-90aa-7042a464cddb +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: nh83qNNrmWE-CDdHz2MdFOAk60T9mzv3R-MaKfZR2jw +id: media_publish_action +label: 'Publish media' +type: media +plugin: 'entity:publish_action:media' +configuration: { } diff --git a/config/sync/system.action.media_save_action.yml b/config/sync/system.action.media_save_action.yml new file mode 100644 index 0000000..05eb88c --- /dev/null +++ b/config/sync/system.action.media_save_action.yml @@ -0,0 +1,13 @@ +uuid: 0e371cb5-e5d1-4846-9ef4-0af285fa24ba +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: VVyUA6PIaVeGtcIbgEWqJ6SYDiJdReBeojFswURFpKs +id: media_save_action +label: 'Save media' +type: media +plugin: 'entity:save_action:media' +configuration: { } diff --git a/config/sync/system.action.media_unpublish_action.yml b/config/sync/system.action.media_unpublish_action.yml new file mode 100644 index 0000000..9556d8f --- /dev/null +++ b/config/sync/system.action.media_unpublish_action.yml @@ -0,0 +1,13 @@ +uuid: e3913078-fa74-44da-81d2-5164e6e46911 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: CsK6TseQ2DatEbZgbd30swOlZ28_HHwAESU2LvEnWq0 +id: media_unpublish_action +label: 'Unpublish media' +type: media +plugin: 'entity:unpublish_action:media' +configuration: { } diff --git a/config/sync/system.action.node_delete_action.yml b/config/sync/system.action.node_delete_action.yml new file mode 100644 index 0000000..b40379b --- /dev/null +++ b/config/sync/system.action.node_delete_action.yml @@ -0,0 +1,13 @@ +uuid: be710ddf-bd26-4710-a95d-974cddeac6f4 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: t43OqwzP3CTbcAagSsWKNy6KwMm_zShXo3c4-So6rQg +id: node_delete_action +label: 'Delete content' +type: node +plugin: 'entity:delete_action:node' +configuration: { } diff --git a/config/sync/system.action.node_make_sticky_action.yml b/config/sync/system.action.node_make_sticky_action.yml new file mode 100644 index 0000000..73dffcc --- /dev/null +++ b/config/sync/system.action.node_make_sticky_action.yml @@ -0,0 +1,13 @@ +uuid: a4482374-ee1f-4e90-b293-1bfcb3eb0a65 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0 +id: node_make_sticky_action +label: 'Make content sticky' +type: node +plugin: node_make_sticky_action +configuration: { } diff --git a/config/sync/system.action.node_make_unsticky_action.yml b/config/sync/system.action.node_make_unsticky_action.yml new file mode 100644 index 0000000..d7ddd12 --- /dev/null +++ b/config/sync/system.action.node_make_unsticky_action.yml @@ -0,0 +1,13 @@ +uuid: 7b772b8e-ca3d-428d-8dfe-381aee11c13f +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k +id: node_make_unsticky_action +label: 'Make content unsticky' +type: node +plugin: node_make_unsticky_action +configuration: { } diff --git a/config/sync/system.action.node_promote_action.yml b/config/sync/system.action.node_promote_action.yml new file mode 100644 index 0000000..3ed7ccb --- /dev/null +++ b/config/sync/system.action.node_promote_action.yml @@ -0,0 +1,13 @@ +uuid: 0b4cd0e2-ef01-48bc-bbc3-71c2514e73c8 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U +id: node_promote_action +label: 'Promote content to front page' +type: node +plugin: node_promote_action +configuration: { } diff --git a/config/sync/system.action.node_publish_action.yml b/config/sync/system.action.node_publish_action.yml new file mode 100644 index 0000000..269fd0e --- /dev/null +++ b/config/sync/system.action.node_publish_action.yml @@ -0,0 +1,13 @@ +uuid: eee82dfd-27b6-4246-b823-3e714fd357e4 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: 2B9uF8NL5gutNKSdPRAhhAsDWFZZG1PJOBmx0aBGd_0 +id: node_publish_action +label: 'Publish content' +type: node +plugin: 'entity:publish_action:node' +configuration: { } diff --git a/config/sync/system.action.node_save_action.yml b/config/sync/system.action.node_save_action.yml new file mode 100644 index 0000000..77c5ce8 --- /dev/null +++ b/config/sync/system.action.node_save_action.yml @@ -0,0 +1,13 @@ +uuid: e57cabfa-2333-4395-a20b-0f6e78875e55 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: LhdsoZPL_pFas2fjaAWue4zvrQ_tEVofLYtcNec-JGM +id: node_save_action +label: 'Save content' +type: node +plugin: 'entity:save_action:node' +configuration: { } diff --git a/config/sync/system.action.node_unpromote_action.yml b/config/sync/system.action.node_unpromote_action.yml new file mode 100644 index 0000000..12d99ed --- /dev/null +++ b/config/sync/system.action.node_unpromote_action.yml @@ -0,0 +1,13 @@ +uuid: eb601400-86f6-4ced-aa4e-79349b51c85f +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0 +id: node_unpromote_action +label: 'Remove content from front page' +type: node +plugin: node_unpromote_action +configuration: { } diff --git a/config/sync/system.action.node_unpublish_action.yml b/config/sync/system.action.node_unpublish_action.yml new file mode 100644 index 0000000..435044e --- /dev/null +++ b/config/sync/system.action.node_unpublish_action.yml @@ -0,0 +1,13 @@ +uuid: d6175af4-e332-4489-9fe8-9d929adfe1a4 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: C7X8h9FWlwkQ9y5mnU2JzgaZICAdc6HFbPVbhvjlAYE +id: node_unpublish_action +label: 'Unpublish content' +type: node +plugin: 'entity:unpublish_action:node' +configuration: { } diff --git a/config/sync/system.action.pathauto_update_alias_node.yml b/config/sync/system.action.pathauto_update_alias_node.yml new file mode 100644 index 0000000..c087aec --- /dev/null +++ b/config/sync/system.action.pathauto_update_alias_node.yml @@ -0,0 +1,16 @@ +uuid: 01ef493a-7bfa-4c57-9a50-7c8837aca9c3 +langcode: en +status: true +dependencies: + module: + - pathauto + enforced: + module: + - node +_core: + default_config_hash: lno8QThS348UX-kaUsagJtCnuPHKLXYnTQiF_9HSDWA +id: pathauto_update_alias_node +label: 'Update URL alias' +type: node +plugin: pathauto_update_alias +configuration: { } diff --git a/config/sync/system.action.pathauto_update_alias_user.yml b/config/sync/system.action.pathauto_update_alias_user.yml new file mode 100644 index 0000000..094fe5e --- /dev/null +++ b/config/sync/system.action.pathauto_update_alias_user.yml @@ -0,0 +1,16 @@ +uuid: ea504eaa-eaa3-4725-9f46-03308554b1a8 +langcode: en +status: true +dependencies: + module: + - pathauto + enforced: + module: + - user +_core: + default_config_hash: x_ok_ZsfA4Xk4B_hVW3O4-3PcNoK57nXLz_Dlletidg +id: pathauto_update_alias_user +label: 'Update URL alias' +type: user +plugin: pathauto_update_alias +configuration: { } diff --git a/config/sync/system.action.profile_delete_action.yml b/config/sync/system.action.profile_delete_action.yml new file mode 100644 index 0000000..bf50988 --- /dev/null +++ b/config/sync/system.action.profile_delete_action.yml @@ -0,0 +1,16 @@ +uuid: fc9e324d-54a0-4fcc-b86e-f9fda9cd4007 +langcode: en +status: true +dependencies: + module: + - profile + enforced: + module: + - profile +_core: + default_config_hash: eoobeznDDPWSXzEXh6a3AT21rMluXtseCPjsguEgHKs +id: profile_delete_action +label: 'Delete selected profile' +type: profile +plugin: 'entity:delete_action:profile' +configuration: { } diff --git a/config/sync/system.action.profile_publish_action.yml b/config/sync/system.action.profile_publish_action.yml new file mode 100644 index 0000000..f9c4dc4 --- /dev/null +++ b/config/sync/system.action.profile_publish_action.yml @@ -0,0 +1,16 @@ +uuid: a87cb7ff-73cf-40d7-8b32-0f7f5c9d3758 +langcode: en +status: true +dependencies: + module: + - profile + enforced: + module: + - profile +_core: + default_config_hash: jjClImKlBhvh__KZnX6YkW_Kc1yZvqXODbUHt30A8z4 +id: profile_publish_action +label: 'Publish selected profile' +type: profile +plugin: 'entity:publish_action:profile' +configuration: { } diff --git a/config/sync/system.action.profile_unpublish_action.yml b/config/sync/system.action.profile_unpublish_action.yml new file mode 100644 index 0000000..9f7e161 --- /dev/null +++ b/config/sync/system.action.profile_unpublish_action.yml @@ -0,0 +1,16 @@ +uuid: 685ecb85-a012-41f1-96ee-dcebcf1d7cb4 +langcode: en +status: true +dependencies: + module: + - profile + enforced: + module: + - profile +_core: + default_config_hash: i6SUyw-h9LthgtmTiKGbqFIh-JXnBtXLG2NCV7CkI3M +id: profile_unpublish_action +label: 'Unpublish selected profile' +type: profile +plugin: 'entity:unpublish_action:profile' +configuration: { } diff --git a/config/sync/system.action.taxonomy_term_publish_action.yml b/config/sync/system.action.taxonomy_term_publish_action.yml new file mode 100644 index 0000000..ea6dd78 --- /dev/null +++ b/config/sync/system.action.taxonomy_term_publish_action.yml @@ -0,0 +1,13 @@ +uuid: 62f703d5-8d55-4d5e-8a9a-d11a4ab44583 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: DoVt_VGgVLcDD4XmVbSFzr0K17SJy9imFiYusKkJBgY +id: taxonomy_term_publish_action +label: 'Publish taxonomy term' +type: taxonomy_term +plugin: 'entity:publish_action:taxonomy_term' +configuration: { } diff --git a/config/sync/system.action.taxonomy_term_unpublish_action.yml b/config/sync/system.action.taxonomy_term_unpublish_action.yml new file mode 100644 index 0000000..429bd59 --- /dev/null +++ b/config/sync/system.action.taxonomy_term_unpublish_action.yml @@ -0,0 +1,13 @@ +uuid: dfc73477-a60d-4cd9-b2d8-8bd7d688cde2 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: z2sNRM3ECa7FPCGnSNje_9SmZJQgwhD_6fG_L4Mr8zI +id: taxonomy_term_unpublish_action +label: 'Unpublish taxonomy term' +type: taxonomy_term +plugin: 'entity:unpublish_action:taxonomy_term' +configuration: { } diff --git a/config/sync/system.action.user_add_role_action.administrator.yml b/config/sync/system.action.user_add_role_action.administrator.yml new file mode 100644 index 0000000..33618e3 --- /dev/null +++ b/config/sync/system.action.user_add_role_action.administrator.yml @@ -0,0 +1,14 @@ +uuid: 5dafe28c-02f3-4f52-806a-6ee5d79bfc19 +langcode: en +status: true +dependencies: + config: + - user.role.administrator + module: + - user +id: user_add_role_action.administrator +label: 'Add the Administrator role to the selected user(s)' +type: user +plugin: user_add_role_action +configuration: + rid: administrator diff --git a/config/sync/system.action.user_block_user_action.yml b/config/sync/system.action.user_block_user_action.yml new file mode 100644 index 0000000..e420453 --- /dev/null +++ b/config/sync/system.action.user_block_user_action.yml @@ -0,0 +1,13 @@ +uuid: b2b932b3-b544-47f7-95a5-73777c2b7a90 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4 +id: user_block_user_action +label: 'Block the selected user(s)' +type: user +plugin: user_block_user_action +configuration: { } diff --git a/config/sync/system.action.user_cancel_user_action.yml b/config/sync/system.action.user_cancel_user_action.yml new file mode 100644 index 0000000..ce0e38b --- /dev/null +++ b/config/sync/system.action.user_cancel_user_action.yml @@ -0,0 +1,13 @@ +uuid: 65b7516e-4fb6-4371-9329-985f4bc3093f +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU +id: user_cancel_user_action +label: 'Cancel the selected user account(s)' +type: user +plugin: user_cancel_user_action +configuration: { } diff --git a/config/sync/system.action.user_remove_role_action.administrator.yml b/config/sync/system.action.user_remove_role_action.administrator.yml new file mode 100644 index 0000000..4735523 --- /dev/null +++ b/config/sync/system.action.user_remove_role_action.administrator.yml @@ -0,0 +1,14 @@ +uuid: 64e3b2a4-ba04-407b-83b0-6a7a5b9a70ed +langcode: en +status: true +dependencies: + config: + - user.role.administrator + module: + - user +id: user_remove_role_action.administrator +label: 'Remove the Administrator role from the selected user(s)' +type: user +plugin: user_remove_role_action +configuration: + rid: administrator diff --git a/config/sync/system.action.user_unblock_user_action.yml b/config/sync/system.action.user_unblock_user_action.yml new file mode 100644 index 0000000..03cb31a --- /dev/null +++ b/config/sync/system.action.user_unblock_user_action.yml @@ -0,0 +1,13 @@ +uuid: a05c175c-d2b6-4fc1-a29b-42c2101e9089 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0 +id: user_unblock_user_action +label: 'Unblock the selected user(s)' +type: user +plugin: user_unblock_user_action +configuration: { } diff --git a/config/sync/system.advisories.yml b/config/sync/system.advisories.yml new file mode 100644 index 0000000..2ad53d6 --- /dev/null +++ b/config/sync/system.advisories.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: x0FuQ_7Cg81mSDQwG028_Z0CjH3R9ib5IDlHeV2BbAo +enabled: true +interval_hours: 6 diff --git a/config/sync/system.cron.yml b/config/sync/system.cron.yml new file mode 100644 index 0000000..ef31d95 --- /dev/null +++ b/config/sync/system.cron.yml @@ -0,0 +1,5 @@ +_core: + default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E +threshold: + requirements_warning: 172800 + requirements_error: 1209600 diff --git a/config/sync/system.date.yml b/config/sync/system.date.yml new file mode 100644 index 0000000..8d14fb0 --- /dev/null +++ b/config/sync/system.date.yml @@ -0,0 +1,11 @@ +_core: + default_config_hash: t7clj3mzmOGrXX0HuCH5usf0vEqRtnMTBFVBIEmZ5pc +first_day: 0 +country: + default: US +timezone: + default: UTC + user: + configurable: true + default: 0 + warn: false diff --git a/config/sync/system.diff.yml b/config/sync/system.diff.yml new file mode 100644 index 0000000..f2fff7b --- /dev/null +++ b/config/sync/system.diff.yml @@ -0,0 +1,5 @@ +_core: + default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM +context: + lines_leading: 2 + lines_trailing: 2 diff --git a/config/sync/system.feature_flags.yml b/config/sync/system.feature_flags.yml new file mode 100644 index 0000000..8cc8071 --- /dev/null +++ b/config/sync/system.feature_flags.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: ZYyVj1FtPGV40Cf65YDVTUIc7YgLH6trXlotuevfs2I +linkset_endpoint: false diff --git a/config/sync/system.file.yml b/config/sync/system.file.yml new file mode 100644 index 0000000..de47424 --- /dev/null +++ b/config/sync/system.file.yml @@ -0,0 +1,5 @@ +_core: + default_config_hash: mguGHCYb9Dw5EcpfjwoShGV1Vjkbz3QuPRCLfxiye-g +allow_insecure_uploads: false +default_scheme: public +temporary_maximum_age: 21600 diff --git a/config/sync/system.image.gd.yml b/config/sync/system.image.gd.yml new file mode 100644 index 0000000..2d81266 --- /dev/null +++ b/config/sync/system.image.gd.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ +jpeg_quality: 75 diff --git a/config/sync/system.image.yml b/config/sync/system.image.yml new file mode 100644 index 0000000..2e18f7f --- /dev/null +++ b/config/sync/system.image.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24 +toolkit: gd diff --git a/config/sync/system.logging.yml b/config/sync/system.logging.yml new file mode 100644 index 0000000..d6164de --- /dev/null +++ b/config/sync/system.logging.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA +error_level: hide diff --git a/config/sync/system.mail.yml b/config/sync/system.mail.yml new file mode 100644 index 0000000..419e77e --- /dev/null +++ b/config/sync/system.mail.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE +interface: + default: php_mail diff --git a/config/sync/system.maintenance.yml b/config/sync/system.maintenance.yml new file mode 100644 index 0000000..65a36d2 --- /dev/null +++ b/config/sync/system.maintenance.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: 1SNdA25INsV5YjlgAJtfC-6AM8VcWe_00xneMLb2yFg +langcode: en +message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.' diff --git a/config/sync/system.menu.account.yml b/config/sync/system.menu.account.yml new file mode 100644 index 0000000..ac298a8 --- /dev/null +++ b/config/sync/system.menu.account.yml @@ -0,0 +1,10 @@ +uuid: 76277546-ea4f-4bd3-9924-9e8f71451b92 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw +id: account +label: 'User account menu' +description: 'Links related to the active user account' +locked: true diff --git a/config/sync/system.menu.admin.yml b/config/sync/system.menu.admin.yml new file mode 100644 index 0000000..b739ea1 --- /dev/null +++ b/config/sync/system.menu.admin.yml @@ -0,0 +1,10 @@ +uuid: 6b0610a0-6bf1-4f8d-a2f8-32574dcb5ffe +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0 +id: admin +label: Administration +description: 'Administrative task links' +locked: true diff --git a/config/sync/system.menu.footer.yml b/config/sync/system.menu.footer.yml new file mode 100644 index 0000000..9a47683 --- /dev/null +++ b/config/sync/system.menu.footer.yml @@ -0,0 +1,10 @@ +uuid: 4cf7c9fe-3e64-4fe5-b872-c4ababcf9977 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc +id: footer +label: Footer +description: 'Site information links' +locked: true diff --git a/config/sync/system.menu.main.yml b/config/sync/system.menu.main.yml new file mode 100644 index 0000000..7f3f0d1 --- /dev/null +++ b/config/sync/system.menu.main.yml @@ -0,0 +1,10 @@ +uuid: 955949e4-721c-4886-aa5e-322f518bc1fe +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8 +id: main +label: 'Main navigation' +description: 'Site section links' +locked: true diff --git a/config/sync/system.menu.social.yml b/config/sync/system.menu.social.yml new file mode 100644 index 0000000..34f68ea --- /dev/null +++ b/config/sync/system.menu.social.yml @@ -0,0 +1,10 @@ +uuid: 2eefda78-2a19-4e9f-99b1-396ca90e8345 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 92SGWu3OQwu92mZEUg6qQa0rBreAGpNrEUoVl5bMSzc +id: social +label: Social +description: '' +locked: false diff --git a/config/sync/system.menu.tools.yml b/config/sync/system.menu.tools.yml new file mode 100644 index 0000000..c07efaa --- /dev/null +++ b/config/sync/system.menu.tools.yml @@ -0,0 +1,10 @@ +uuid: 8a6229fb-d500-48be-bb1f-f8737bd1a8c9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc +id: tools +label: Tools +description: 'User tool links, often added by modules' +locked: true diff --git a/config/sync/system.performance.yml b/config/sync/system.performance.yml new file mode 100644 index 0000000..cd81c18 --- /dev/null +++ b/config/sync/system.performance.yml @@ -0,0 +1,17 @@ +_core: + default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ +cache: + page: + max_age: 0 +css: + preprocess: true + gzip: true +fast_404: + enabled: true + paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i' + exclude_paths: '/\/(?:styles|imagecache)\//' + html: '404 Not Found

                Not Found

                The requested URL "@path" was not found on this server.

                ' +js: + preprocess: true + gzip: true +stale_file_threshold: 2592000 diff --git a/config/sync/system.rss.yml b/config/sync/system.rss.yml new file mode 100644 index 0000000..d806208 --- /dev/null +++ b/config/sync/system.rss.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: MIpNzlG4gPunfS7vTCwUPum6QH3GUsEBMj-qS631Jw0 +items: + view_mode: rss diff --git a/config/sync/system.site.yml b/config/sync/system.site.yml new file mode 100644 index 0000000..d77f198 --- /dev/null +++ b/config/sync/system.site.yml @@ -0,0 +1,14 @@ +_core: + default_config_hash: l58O_yEXSo-SeJi19LXdzTU1tNJG3lmnIhCitRkM1tk +langcode: en +uuid: 141e2072-aa27-4210-97af-38b7e4e91e0c +name: 'Drush Site-Install' +mail: admin@example.com +slogan: '' +page: + 403: '' + 404: '' + front: /frontpage +admin_compact_mode: false +weight_select_max: 100 +default_langcode: en diff --git a/config/sync/system.theme.global.yml b/config/sync/system.theme.global.yml new file mode 100644 index 0000000..46ce63b --- /dev/null +++ b/config/sync/system.theme.global.yml @@ -0,0 +1,16 @@ +_core: + default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8 +favicon: + mimetype: image/vnd.microsoft.icon + path: '' + url: '' + use_default: true +features: + comment_user_picture: true + comment_user_verification: true + favicon: true + node_user_picture: true +logo: + path: '' + url: '' + use_default: true diff --git a/config/sync/system.theme.yml b/config/sync/system.theme.yml new file mode 100644 index 0000000..c820ed0 --- /dev/null +++ b/config/sync/system.theme.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: Od-17knREfgCPVMe_M5z9bEYWMqbUlrzgTQ7ghxFOK4 +admin: centarro_claro +default: belgrade diff --git a/config/sync/taxonomy.settings.yml b/config/sync/taxonomy.settings.yml new file mode 100644 index 0000000..0e3837d --- /dev/null +++ b/config/sync/taxonomy.settings.yml @@ -0,0 +1,5 @@ +_core: + default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias +maintain_index_table: true +override_selector: false +terms_per_page_admin: 100 diff --git a/config/sync/taxonomy.vocabulary.product_brands.yml b/config/sync/taxonomy.vocabulary.product_brands.yml new file mode 100644 index 0000000..fcb7224 --- /dev/null +++ b/config/sync/taxonomy.vocabulary.product_brands.yml @@ -0,0 +1,10 @@ +uuid: 6894d1f8-b417-4c38-ada0-4efb8627c4f3 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: z4KzIiGz2iUV5AKDk-N3e1Zu75fFT4k1qleIpgAnkAI +name: 'Product Brands' +vid: product_brands +description: '' +weight: 0 diff --git a/config/sync/taxonomy.vocabulary.product_collections.yml b/config/sync/taxonomy.vocabulary.product_collections.yml new file mode 100644 index 0000000..e3ef9b3 --- /dev/null +++ b/config/sync/taxonomy.vocabulary.product_collections.yml @@ -0,0 +1,10 @@ +uuid: 22f82df1-c7b0-4d33-9c81-f0fa2ba502df +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: pUlkSTHQo8T3zOzkODOqBkDTG43T868bf8Z_y8kCR3U +name: 'Product Collections' +vid: product_collections +description: '' +weight: 0 diff --git a/config/sync/taxonomy.vocabulary.product_tags.yml b/config/sync/taxonomy.vocabulary.product_tags.yml new file mode 100644 index 0000000..977e02e --- /dev/null +++ b/config/sync/taxonomy.vocabulary.product_tags.yml @@ -0,0 +1,10 @@ +uuid: b478dff0-a2af-439f-aa77-07cb135960cc +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: _YWBbpbv_BMlItGasaNQ1wKOUtV1F6RhGKL5Ag5wLfc +name: 'Product Tags' +vid: product_tags +description: 'Tags are searchable keywords that you can associate with your product.' +weight: 0 diff --git a/config/sync/text.settings.yml b/config/sync/text.settings.yml new file mode 100644 index 0000000..a295c7e --- /dev/null +++ b/config/sync/text.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA +default_summary_length: 600 diff --git a/config/sync/tour.tour.block-layout.yml b/config/sync/tour.tour.block-layout.yml new file mode 100644 index 0000000..cbd1c65 --- /dev/null +++ b/config/sync/tour.tour.block-layout.yml @@ -0,0 +1,42 @@ +uuid: 6bb76663-c386-4203-935c-1d982f8e4f38 +langcode: en +status: true +dependencies: + module: + - block +_core: + default_config_hash: pG6QAggTrD7RQWb79PT3NH48GSvTiePly_l53f3OENs +id: block-layout +label: 'Block Layout Page' +module: block +routes: + - + route_name: block.admin_display +tips: + block-layout: + id: block-layout + plugin: text + label: 'Block Layout' + weight: 1 + body: 'Blocks are boxes of content rendered into an area, or region, of a web page that can be displayed in regions (such as footer or sidebar) on your page.' + place-block: + id: place-block + plugin: text + label: 'Place Blocks' + weight: 2 + selector: .button--small + body: 'Any custom or contributed block can be added to a particular region by clicking on a button Place block. A new block can also be created by clicking on Place Block' + block-region: + id: block-region + plugin: text + label: 'Block Region' + weight: 3 + selector: .block-region-select + body: 'Assign or change the region of a block by clicking here. A dropdown list with all the regions will appear. You can place one block in multiple regions.' + configure-block: + id: configure-block + plugin: text + label: 'Configure Block' + weight: 4 + selector: .dropbutton-widget + body: 'By Clicking on "Configure" you can go ahead and edit the contents of the block, deal with the visibility settings and even change the placement of where it is on your theme.' diff --git a/config/sync/tour.tour.search-api-index-fields.yml b/config/sync/tour.tour.search-api-index-fields.yml new file mode 100644 index 0000000..661b89c --- /dev/null +++ b/config/sync/tour.tour.search-api-index-fields.yml @@ -0,0 +1,91 @@ +uuid: ab812946-e9b5-4666-b392-684b9f323806 +langcode: en +status: true +dependencies: + module: + - search_api +_core: + default_config_hash: TtSWlBl_1VI03GJW1yyzVwtlq15Yst0id1vPdvz5qxM +id: search-api-index-fields +label: 'Fields indexed in this index' +module: search_api +routes: + - + route_name: entity.search_api_index.fields +tips: + search-api-index-fields-introduction: + id: search-api-index-fields-introduction + plugin: text + label: 'Fields indexed in this index' + body: 'This page lists which fields are indexed in this index, grouped by datasource. (Datasource-independent fields are listed under "General".) Indexed fields can be used to add filters or sorting to views or other search displays based on the index. Fields with type "Fulltext" can also be used for fulltext searching.' + weight: 1 + search-api-index-fields-add: + id: search-api-index-fields-add + plugin: text + label: 'Add fields' + body: 'With the "Add fields" button you can add additional fields to this index.' + weight: 2 + selector: '.button-action[data-drupal-selector="edit-add-field"]' + search-api-index-fields-label: + id: search-api-index-fields-label + plugin: text + label: Label + body: 'A label for the field that will be used to refer to the field in most places in the user interface.' + weight: 3 + selector: '.details-wrapper table thead th:nth-child(1)' + search-api-index-fields-machine-name: + id: search-api-index-fields-machine-name + plugin: text + label: 'Machine name' + body: "The internal ID to use for this field. Can safely be ignored by inexperienced users in most cases. Changing a field's machine name requires reindexing of the index." + weight: 4 + selector: '.details-wrapper table thead th:nth-child(2)' + search-api-index-fields-property-path: + id: search-api-index-fields-property-path + plugin: text + label: 'Property path' + body: 'The internal relationship linking the indexed item to the field, with links being separated by colons (:). This can be useful information for advanced users, but can otherwise be ignored.' + weight: 5 + selector: '.details-wrapper table thead th:nth-child(3)' + search-api-index-fields-type: + id: search-api-index-fields-type + plugin: text + label: Type + body: 'The data type to use when indexing the field. Determines how a field can be used in searches. For information on the available types, see the "Data types" box at the bottom of the page.' + weight: 6 + selector: '.details-wrapper table thead th:nth-child(4)' + search-api-index-fields-boost: + id: search-api-index-fields-boost + plugin: text + label: Boost + body: 'Only applicable for fulltext fields. Determines how "important" the field is compared to other fulltext fields, to influence scoring of fulltext searches.' + weight: 7 + selector: '.details-wrapper table thead th:nth-child(5)' + search-api-index-fields-edit: + id: search-api-index-fields-edit + plugin: text + label: 'Edit field' + body: 'Some fields have additional configuration available, in which case an "Edit" link is displayed in the "Operations" column.' + weight: 8 + selector: '.details-wrapper table tbody td:nth-child(6) a' + search-api-index-fields-remove: + id: search-api-index-fields-remove + plugin: text + label: 'Remove field' + body: 'Removes a field from the index again. (Note: Sometimes, a field is required (for example, by a processor) and cannot be removed.)' + weight: 9 + selector: '.details-wrapper table tbody td:nth-child(7) a' + search-api-index-fields-submit: + id: search-api-index-fields-submit + plugin: text + label: 'Save changes' + body: 'This saves all changes made to the fields for this index. Until this button is pressed, all added, changed or removed fields will only be stored temporarily and not effect the actual index used in the rest of the site.' + weight: 10 + selector: '#edit-actions-submit' + search-api-index-fields-cancel: + id: search-api-index-fields-cancel + plugin: text + label: 'Cancel changes' + body: 'If you have made changes to the index''s fields but not yet saved them, the "Cancel" link lets you discard those changes.' + weight: 10 + selector: '#edit-actions-cancel' diff --git a/config/sync/tour.tour.search-api-index-form.yml b/config/sync/tour.tour.search-api-index-form.yml new file mode 100644 index 0000000..641c8ab --- /dev/null +++ b/config/sync/tour.tour.search-api-index-form.yml @@ -0,0 +1,65 @@ +uuid: bd1834b3-08e6-4261-90ae-6d0584d56ca8 +langcode: en +status: true +dependencies: + module: + - search_api +_core: + default_config_hash: sQzCtjeNBZnQCDro5e8B7_KNpDYVoetYDs4iaf1xBOA +id: search-api-index-form +label: 'Add or edit a Search API index' +module: search_api +routes: + - + route_name: entity.search_api_index.add_form + - + route_name: entity.search_api_index.edit_form +tips: + search-api-index-form-introduction: + id: search-api-index-form-introduction + plugin: text + label: 'Adding or editing an index' + body: 'This form can be used to edit an existing index or add a new index to your site. Indexes define a set of data that will be indexed and can then be searched.' + weight: 1 + search-api-index-form-name: + id: search-api-index-form-name + plugin: text + label: 'Index name' + body: 'Enter a name to identify this index. For example, "Content index". This will only be displayed in the admin user interface.' + weight: 2 + selector: '#edit-name' + search-api-index-form-datasources: + id: search-api-index-form-datasources + plugin: text + label: Datasources + body: 'Datasources define the types of items that will be indexed in this index. By default, all content entities (like content, comments and taxonomy terms) will be available here, but modules can also add their own.' + weight: 3 + selector: '#edit-datasources' + search-api-index-form-tracker: + id: search-api-index-form-tracker + plugin: text + label: Tracker + body: "An index's tracker is the system that keeps track of which items there are available for the index, and which of them still need to be indexed. Changing the tracker of an existing index will lead to reindexing of all items." + weight: 4 + selector: '#edit-tracker' + search-api-index-form-server: + id: search-api-index-form-server + plugin: text + label: Server + body: 'The search server that the index should use for indexing and searching. If no server is selected here, the index cannot be enabled. An index can only have one server, but a server can have any number of indexes.' + weight: 5 + selector: '#edit-server' + search-api-index-form-description: + id: search-api-index-form-description + plugin: text + label: 'Index description' + body: 'Optionally, enter a description to explain the function of the index in more detail. This will only be displayed in the admin user interface.' + weight: 6 + selector: '#edit-description' + search-api-index-form-options: + id: search-api-index-form-options + plugin: text + label: 'Advanced options' + body: 'These options allow more detailed configuration of index behavior, but can usually safely be ignored by inexperienced users.' + weight: 7 + selector: '#edit-options' diff --git a/config/sync/tour.tour.search-api-index-processors.yml b/config/sync/tour.tour.search-api-index-processors.yml new file mode 100644 index 0000000..0a94f65 --- /dev/null +++ b/config/sync/tour.tour.search-api-index-processors.yml @@ -0,0 +1,42 @@ +uuid: cd15ecf5-1c6b-4f77-8210-98b13fbf5525 +langcode: en +status: true +dependencies: + module: + - search_api +_core: + default_config_hash: vs6bUgjvoJIdOBQIcX2l2Dp6BXpVFbs-h6PsKOmZfYk +id: search-api-index-processors +label: 'Processors used for this index' +module: search_api +routes: + - + route_name: entity.search_api_index.processors +tips: + search-api-index-processors-introduction: + id: search-api-index-processors-introduction + plugin: text + label: 'Processors used for this index' + body: "Processors customize different aspects of an index's functionality. They can keep items from being indexed, change how certain fields are indexed and influence searches." + weight: 1 + search-api-index-processors-enable: + id: search-api-index-processors-enable + plugin: text + label: 'Enable processors' + body: 'This lists all processors available for this index and lets you choose the ones that should be active. (Note: Some processors cannot be disabled.)' + weight: 2 + selector: '#edit-status' + search-api-index-processors-weights: + id: search-api-index-processors-weights + plugin: text + label: 'Processor order' + body: 'This shows you which enabled processors will be active in the different parts of the indexing/searching workflow, and lets you re-arrange them. This should usually not be necessary, and only be used by advanced users as some processors will lead to unexpected results when used in the wrong order.' + weight: 3 + selector: '#edit-weights' + search-api-index-processors-settings: + id: search-api-index-processors-settings + plugin: text + label: 'Processor settings' + body: 'Some processors have additional configuration available, which you are able to change here.' + weight: 4 + selector: .form-type--vertical-tabs diff --git a/config/sync/tour.tour.search-api-index.yml b/config/sync/tour.tour.search-api-index.yml new file mode 100644 index 0000000..99795e5 --- /dev/null +++ b/config/sync/tour.tour.search-api-index.yml @@ -0,0 +1,98 @@ +uuid: a1ac41a8-fa2b-4bc1-8fc2-15a9125afb33 +langcode: en +status: true +dependencies: + module: + - search_api +_core: + default_config_hash: DHNg3a7QdthDmUgBXKgxq-ewQd4uA9hHAmaM9vul95A +id: search-api-index +label: 'Information about an index' +module: search_api +routes: + - + route_name: entity.search_api_index.canonical +tips: + search-api-index-introduction: + id: search-api-index-introduction + plugin: text + label: 'Information about an index' + body: 'This page shows a summary of a search index and its status.' + weight: 1 + search-api-index-index-status: + id: search-api-index-index-status + plugin: text + label: 'Index status' + body: 'This gives a summary about how many items are known for this index, and how many have been indexed in their latest version. Items that are not indexed yet cannot be found by searches.' + weight: 2 + selector: .search-api-index-status + search-api-index-status: + id: search-api-index-status + plugin: text + label: Status + body: 'Shows whether the index is currently enabled or disabled.' + weight: 3 + selector: .search-api-index-summary--status + search-api-index-datasources: + id: search-api-index-datasources + plugin: text + label: Datasources + body: 'Lists all datasources that are enabled for this index.' + weight: 4 + selector: .search-api-index-summary--datasource + search-api-index-tracker: + id: search-api-index-tracker + plugin: text + label: Tracker + body: 'The tracker used by the index. Only one ("Default") is available by default.' + weight: 5 + selector: .search-api-index-summary--tracker + search-api-index-server: + id: search-api-index-server + plugin: text + label: Server + body: 'If the index is attached to a server, this server is listed here.' + weight: 6 + selector: .search-api-index-summary--server + search-api-index-server-index-status: + id: search-api-index-server-index-status + plugin: text + label: 'Server index status' + body: 'For enabled indexes, the number of items that can actually be retrieved from the server is listed here. For reasons why this number might differ from the number under "Index status", see the module''s documentation.' + weight: 7 + selector: .search-api-index-summary--server-index-status + search-api-index-cron-batch-size: + id: search-api-index-cron-batch-size + plugin: text + label: 'Cron batch size' + body: 'The number of items that will be indexed at once during cron runs.' + weight: 8 + selector: .search-api-index-summary--cron-batch-size + search-api-index-index-now: + id: search-api-index-remove + plugin: text + label: 'Start indexing now' + body: 'The "Start indexing now" form allows indexing items manually right away, with a batch process. Otherwise, items are only indexed during cron runs. The form might be disabled if indexing is currently not possible for some reason, or not necessary.' + weight: 9 + selector: '#edit-index' + search-api-index-tracking: + id: search-api-index-tracking + plugin: text + label: 'Track items for index' + body: 'In certain situations, the index''s tracker doesn''t have the latest state of the items available for indexing. This will be automatically rectified during cron runs, but can also be manually triggered here, with the "Track now" button.' + weight: 10 + selector: '#edit-tracking' + search-api-index-reindex: + id: search-api-index-reindex + plugin: text + label: 'Queue all items for reindexing' + body: 'This will queue all items on this index for reindexing. Previously indexed data will remain on the search server, so searches on this index will continue to yield results.' + weight: 11 + selector: .edit-reindex + search-api-index-clear: + id: search-api-index-clear + plugin: text + label: 'Clear all indexed data' + body: 'This will remove all indexed content for this index from the search server and queue it for reindexing. Searches on this index will not return any results until items are reindexed.' + weight: 12 + selector: '#edit-clear' diff --git a/config/sync/tour.tour.search-api-server-form.yml b/config/sync/tour.tour.search-api-server-form.yml new file mode 100644 index 0000000..5820246 --- /dev/null +++ b/config/sync/tour.tour.search-api-server-form.yml @@ -0,0 +1,44 @@ +uuid: 51a64dc7-c475-43bf-b065-889e7d7d2bb7 +langcode: en +status: true +dependencies: + module: + - search_api +_core: + default_config_hash: 0kIrvs9YL0PKR2nGfa7deQoPoXrWR5nUI0UtCfj04LA +id: search-api-server-form +label: 'Add or edit a Search API server' +module: search_api +routes: + - + route_name: entity.search_api_server.add_form + - + route_name: entity.search_api_server.edit_form +tips: + search-api-server-form-introduction: + id: search-api-server-form-introduction + plugin: text + label: 'Adding or editing a Server' + body: 'This form can be used to edit an existing server or add a new server to your site. Servers will hold your indexed data.' + weight: 1 + search-api-server-form-name: + id: search-api-server-form-name + plugin: text + label: 'Server name' + body: 'Enter a name to identify this server. For example, "Solr server". This will only be displayed in the admin user interface.' + weight: 2 + selector: '#edit-name' + search-api-server-form-description: + id: search-api-server-form-description + plugin: text + label: 'Server description' + body: 'Optionally, enter a description to explain the function of the server in more detail. This will only be displayed in the admin user interface.' + weight: 3 + selector: '#edit-description' + search-api-server-form-backend: + id: search-api-server-form-backend + plugin: text + label: 'Server backend' + body: 'Servers can be based on different technologies. These are called "backends". A server uses exactly one backend and cannot change it later. You can make the "Database" backend available by enabling the "Database Search" module. Another very common backend is "Solr", which requires to be set up separately.' + weight: 4 + selector: '#edit-backend' diff --git a/config/sync/tour.tour.search-api-server.yml b/config/sync/tour.tour.search-api-server.yml new file mode 100644 index 0000000..71b7194 --- /dev/null +++ b/config/sync/tour.tour.search-api-server.yml @@ -0,0 +1,49 @@ +uuid: 0ef761bc-9f30-4dd4-bd18-661ee97be3ac +langcode: en +status: true +dependencies: + module: + - search_api +_core: + default_config_hash: XF-X52fvU1eywjOhWClTlaZiOmijG87qNfkOFlqg2cI +id: search-api-server +label: 'Information about a server' +module: search_api +routes: + - + route_name: entity.search_api_server.canonical +tips: + search-api-server-introduction: + id: search-api-server-introduction + plugin: text + label: 'Information about a server' + body: 'This page shows a summary of a search server.' + weight: 1 + search-api-server-status: + id: search-api-server-status + plugin: text + label: Status + body: 'Shows whether the server is currently enabled or disabled.' + weight: 2 + selector: .search-api-server-summary--status + search-api-server-backend: + id: search-api-server-backend + plugin: text + label: 'Backend class' + body: 'The backend plugin used for this server. The backend plugin determines how items are indexed and searched – for example, using the database or an Apache Solr server.' + weight: 3 + selector: .search-api-server-summary--backend + search-api-server-indexes: + id: search-api-server-indexes + plugin: text + label: 'Search indexes' + body: 'Lists all search indexes that are attached to this server.' + weight: 4 + selector: .search-api-server-summary--indexes + search-api-server-clear: + id: search-api-server-clear + plugin: text + label: 'Delete all indexed data' + body: "This will permanently remove all data currently indexed on this server for indexes that aren't read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results." + weight: 5 + selector: '#edit-clear' diff --git a/config/sync/tour.tour.views-ui.yml b/config/sync/tour.tour.views-ui.yml new file mode 100644 index 0000000..58f72a5 --- /dev/null +++ b/config/sync/tour.tour.views-ui.yml @@ -0,0 +1,88 @@ +uuid: 0d85af79-27c2-4422-9365-d7d2efe6f4fe +langcode: en +status: true +dependencies: + module: + - views_ui +_core: + default_config_hash: XIYL1KF7ND2XQRa5AxvEcp8vgCN2kUGiuBNhCgxrPME +id: views-ui +label: 'View edit page' +module: views_ui +routes: + - + route_name: entity.view.edit_form + - + route_name: entity.view.edit_display_form +tips: + views-main: + id: views-main + plugin: text + label: 'Manage view settings' + weight: 1 + body: 'View or edit the configuration.' + views-ui-displays: + id: views-ui-displays + plugin: text + label: 'Displays in this view' + weight: 2 + selector: '#views-display-top' + body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.' + views-ui-view-admin: + id: views-ui-view-admin + plugin: text + label: 'View administration' + weight: 3 + position: right + selector: '#views-display-extra-actions' + body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.' + views-ui-format: + id: views-ui-format + plugin: text + label: 'Output format' + weight: 4 + selector: .views-ui-display-tab-bucket.format + body: "Choose how to output results. E.g., choose Content to output each item completely, using your configured display settings. Or choose Fields, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to extend Drupal's base functionality." + views-ui-fields: + id: views-ui-fields + plugin: text + label: Fields + weight: 5 + selector: .views-ui-display-tab-bucket.field + body: 'If this view uses fields, they are listed here. You can click on a field to configure it.' + views-ui-filter: + id: views-ui-filter + plugin: text + label: 'Filter your view' + weight: 6 + selector: .views-ui-display-tab-bucket.filter + body: 'Add filters to limit the results in the output. E.g., to only show content that is published, you would add a filter for Published and select Yes.' + views-ui-filter-operations: + id: views-ui-filter-operations + plugin: text + label: 'Filter actions' + weight: 7 + selector: '.views-ui-display-tab-bucket.filter .dropbutton-widget' + body: 'Add, rearrange or remove filters.' + views-ui-sorts: + id: views-ui-sorts + plugin: text + label: 'Sort Criteria' + weight: 8 + selector: .views-ui-display-tab-bucket.sort + body: 'Control the order in which the results are output. Click on an active sort rule to configure it.' + views-ui-sorts-operations: + id: views-ui-sorts-operations + plugin: text + label: 'Sort actions' + weight: 9 + selector: '.views-ui-display-tab-bucket.sort .dropbutton-widget' + body: 'Add, rearrange or remove sorting rules.' + views-ui-preview: + id: views-ui-preview + plugin: text + label: Preview + weight: 10 + position: right + selector: '#preview-submit' + body: 'Show a preview of the view output.' diff --git a/config/sync/update.settings.yml b/config/sync/update.settings.yml new file mode 100644 index 0000000..61c8912 --- /dev/null +++ b/config/sync/update.settings.yml @@ -0,0 +1,13 @@ +_core: + default_config_hash: 2QzULf0zovJQx3J06Y9rufzzfi-CY2CTTlEfJJh2Qyw +check: + disabled_extensions: false + interval_days: 1 +fetch: + url: '' + max_attempts: 2 + timeout: 30 +notification: + emails: + - admin@example.com + threshold: all diff --git a/config/sync/user.flood.yml b/config/sync/user.flood.yml new file mode 100644 index 0000000..4eb3644 --- /dev/null +++ b/config/sync/user.flood.yml @@ -0,0 +1,7 @@ +_core: + default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs +uid_only: false +ip_limit: 50 +ip_window: 3600 +user_limit: 5 +user_window: 21600 diff --git a/config/sync/user.mail.yml b/config/sync/user.mail.yml new file mode 100644 index 0000000..bf425c0 --- /dev/null +++ b/config/sync/user.mail.yml @@ -0,0 +1,116 @@ +_core: + default_config_hash: 6CZIzFifRq3qbdq3n3nDpEOO4hWIQtKOAQNPvGNGKeM +langcode: en +cancel_confirm: + subject: 'Account cancellation request for [user:display-name] at [site:name]' + body: |- + [user:display-name] + + A request to cancel your account has been made at [site:name]. + + You may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser: + + [user:cancel-url] + + NOTE: The cancellation of your account is not reversible. + + This link expires in one day and nothing will happen if it is not used. + + -- [site:name] team +password_reset: + subject: 'Replacement login information for [user:display-name] at [site:name]' + body: |- + [user:display-name], + + A request to reset the password for your account has been made at [site:name]. + + You may now log in by clicking this link or copying and pasting it into your browser: + + [user:one-time-login-url] + + This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used. + + -- [site:name] team +register_admin_created: + subject: 'An administrator created an account for you at [site:name]' + body: |- + [user:display-name], + + A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser: + + [user:one-time-login-url] + + This link can only be used once to log in and will lead you to a page where you can set your password. + + After setting your password, you will be able to log in at [site:login-url] in the future using: + + username: [user:name] + password: Your password + + -- [site:name] team +register_no_approval_required: + subject: 'Account details for [user:display-name] at [site:name]' + body: |- + [user:display-name], + + Thank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser: + + [user:one-time-login-url] + + This link can only be used once to log in and will lead you to a page where you can set your password. + + After setting your password, you will be able to log in at [site:login-url] in the future using: + + username: [user:name] + password: Your password + + -- [site:name] team +register_pending_approval: + subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)' + body: |- + [user:display-name], + + Thank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details. + + -- [site:name] team +register_pending_approval_admin: + subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)' + body: |- + [user:display-name] has applied for an account. + + [user:edit-url] +status_activated: + subject: 'Account details for [user:display-name] at [site:name] (approved)' + body: |- + [user:display-name], + + Your account at [site:name] has been activated. + + You may now log in by clicking this link or copying and pasting it into your browser: + + [user:one-time-login-url] + + This link can only be used once to log in and will lead you to a page where you can set your password. + + After setting your password, you will be able to log in at [site:login-url] in the future using: + + username: [user:account-name] + password: Your password + + -- [site:name] team +status_blocked: + subject: 'Account details for [user:display-name] at [site:name] (blocked)' + body: |- + [user:display-name], + + Your account on [site:name] has been blocked. + + -- [site:name] team +status_canceled: + subject: 'Account details for [user:display-name] at [site:name] (canceled)' + body: |- + [user:display-name], + + Your account on [site:name] has been canceled. + + -- [site:name] team \ No newline at end of file diff --git a/config/sync/user.role.administrator.yml b/config/sync/user.role.administrator.yml new file mode 100644 index 0000000..dbb2711 --- /dev/null +++ b/config/sync/user.role.administrator.yml @@ -0,0 +1,11 @@ +uuid: 69119017-8137-47e2-ada1-96727c8fa4a7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Om6FEO7vZZMkPIbVvfxtdkWerQ2PvQM4sWUd6Q3ZnfI +id: administrator +label: Administrator +weight: 2 +is_admin: true +permissions: { } diff --git a/config/sync/user.role.anonymous.yml b/config/sync/user.role.anonymous.yml new file mode 100644 index 0000000..b510eec --- /dev/null +++ b/config/sync/user.role.anonymous.yml @@ -0,0 +1,26 @@ +uuid: 872e703d-e3cf-4864-831d-edaa92f19424 +langcode: en +status: true +dependencies: + config: + - filter.format.restricted_html + module: + - comment + - commerce_checkout + - commerce_product + - filter + - media + - system +_core: + default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow +id: anonymous +label: 'Anonymous user' +weight: 0 +is_admin: false +permissions: + - 'access checkout' + - 'access comments' + - 'access content' + - 'use text format restricted_html' + - 'view commerce_product' + - 'view media' diff --git a/config/sync/user.role.authenticated.yml b/config/sync/user.role.authenticated.yml new file mode 100644 index 0000000..9111549 --- /dev/null +++ b/config/sync/user.role.authenticated.yml @@ -0,0 +1,34 @@ +uuid: f421665b-8b35-493b-94a9-b671164d1f5e +langcode: en +status: true +dependencies: + config: + - filter.format.basic_html + module: + - comment + - commerce_checkout + - commerce_order + - commerce_payment + - commerce_product + - filter + - media + - shortcut + - system +_core: + default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI +id: authenticated +label: 'Authenticated user' +weight: 1 +is_admin: false +permissions: + - 'access checkout' + - 'access comments' + - 'access content' + - 'access shortcuts' + - 'manage own commerce_payment_method' + - 'post comments' + - 'skip comment approval' + - 'use text format basic_html' + - 'view commerce_product' + - 'view media' + - 'view own commerce_order' diff --git a/config/sync/user.settings.yml b/config/sync/user.settings.yml new file mode 100644 index 0000000..665517a --- /dev/null +++ b/config/sync/user.settings.yml @@ -0,0 +1,18 @@ +_core: + default_config_hash: M4F5x5CHrctvvJZY1qyP3D4ht3xaPjp2_CEo2TE-uJw +langcode: en +anonymous: Anonymous +verify_mail: false +notify: + cancel_confirm: true + password_reset: true + status_activated: true + status_blocked: false + status_canceled: false + register_admin_created: true + register_no_approval_required: true + register_pending_approval: true +register: visitors +cancel_method: user_cancel_block +password_reset_timeout: 86400 +password_strength: true diff --git a/config/sync/views.settings.yml b/config/sync/views.settings.yml new file mode 100644 index 0000000..e57e73a --- /dev/null +++ b/config/sync/views.settings.yml @@ -0,0 +1,48 @@ +_core: + default_config_hash: uZHsLrDp1ThO0RvupHKcPzLOyVvWexm58JTTHNDo7yc +display_extenders: { } +skip_cache: false +sql_signature: false +ui: + show: + additional_queries: false + advanced_column: false + default_display: false + performance_statistics: false + preview_information: true + sql_query: + enabled: false + where: above + display_embed: false + always_live_preview: true + exposed_filter_any_label: old_any +field_rewrite_elements: + div: DIV + span: SPAN + h1: H1 + h2: H2 + h3: H3 + h4: H4 + h5: H5 + h6: H6 + p: P + header: HEADER + footer: FOOTER + article: ARTICLE + section: SECTION + aside: ASIDE + details: DETAILS + blockquote: BLOCKQUOTE + figure: FIGURE + address: ADDRESS + code: CODE + pre: PRE + var: VAR + samp: SAMP + kbd: KBD + strong: STRONG + em: EM + del: DEL + ins: INS + q: Q + s: S diff --git a/config/sync/views.view.advancedqueue_jobs.yml b/config/sync/views.view.advancedqueue_jobs.yml new file mode 100644 index 0000000..a15022e --- /dev/null +++ b/config/sync/views.view.advancedqueue_jobs.yml @@ -0,0 +1,846 @@ +uuid: 03f00f33-a832-400d-b688-a0720da1db8a +langcode: en +status: true +dependencies: + module: + - advancedqueue + - user + enforced: + module: + - advancedqueue +_core: + default_config_hash: 3kZ-Yeetje5hhBgAf4qXQg2-sgD1e2knw7zhgzu0Wl8 +id: advancedqueue_jobs +label: 'Advanced Queue jobs' +module: views +description: '' +tag: '' +base_table: advancedqueue +base_field: job_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'administer advancedqueue' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + tags: + previous: ‹‹ + next: ›› + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + job_id: job_id + num_retries: num_retries + state: state + type: type + payload: payload + available: available + processed: processed + message: message + operations: operations + info: + job_id: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + num_retries: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + payload: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + available: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + processed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + message: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: job_id + empty_table: false + row: + type: fields + fields: + job_id: + table: advancedqueue + field: job_id + id: job_id + entity_type: null + entity_field: null + plugin_id: standard + relationship: none + group_type: group + admin_label: '' + label: 'Job ID' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + num_retries: + id: num_retries + table: advancedqueue + field: num_retries + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: true + text: 'Number of retries: {{ num_retries }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: true + empty_zero: true + hide_alter_empty: true + set_precision: false + precision: 0 + decimal: . + separator: ',' + format_plural: false + format_plural_string: !!binary MQNAY291bnQ= + prefix: '' + suffix: '' + plugin_id: numeric + state: + icon: true + id: state + table: advancedqueue + field: state + relationship: none + group_type: group + admin_label: '' + label: State + exclude: false + alter: + alter_text: true + text: |- + {{ state }} + + {{ num_retries }} + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + plugin_id: advancedqueue_job_state + type: + id: type + table: advancedqueue + field: type + relationship: none + group_type: group + admin_label: '' + label: 'Job type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + plugin_id: advancedqueue_job_type + payload: + id: payload + table: advancedqueue + field: payload + relationship: none + group_type: group + admin_label: '' + label: Payload + exclude: false + alter: + alter_text: true + text: '
                {{ payload }}
                ' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + key: '' + plugin_id: advancedqueue_json + available: + id: available + table: advancedqueue + field: available + relationship: none + group_type: group + admin_label: '' + label: 'Available date' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + date_format: short + custom_date_format: '' + timezone: '' + plugin_id: date + processed: + id: processed + table: advancedqueue + field: processed + relationship: none + group_type: group + admin_label: '' + label: 'Processed date' + exclude: false + alter: + alter_text: true + text: |- + {{ processed }} + + {{ message }} + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + date_format: short + custom_date_format: '' + timezone: '' + plugin_id: date + message: + id: message + table: advancedqueue + field: message + relationship: none + group_type: group + admin_label: '' + label: Message + exclude: false + alter: + alter_text: false + text: 'Message: {{ message }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: true + empty_zero: false + hide_alter_empty: true + plugin_id: standard + operations: + id: operations + table: advancedqueue + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + plugin_id: advancedqueue_job_operations + filters: + type: + id: type + table: advancedqueue + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: 'Job type' + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + plugin_id: in_operator + state: + id: state + table: advancedqueue + field: state + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: state_op + label: State + description: '' + use_operator: false + operator: state_op + identifier: state + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + plugin_id: in_operator + available: + id: available + table: advancedqueue + field: available + relationship: none + group_type: group + admin_label: '' + operator: '>' + value: + min: '' + max: '' + value: '' + type: date + group: 1 + exposed: true + expose: + operator_id: available_op + label: 'Available from' + description: '' + use_operator: false + operator: available_op + operator_limit_selection: false + operator_list: { } + identifier: available + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: YYYY-MM-DD + min_placeholder: '' + max_placeholder: '' + is_grouped: false + group_info: + label: 'Available date' + description: null + identifier: available + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: { } + 2: { } + 3: { } + plugin_id: date + sorts: { } + title: Jobs + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No jobs found' + plugin_id: text_custom + relationships: { } + arguments: + queue_id: + id: queue_id + table: advancedqueue + field: queue_id + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: advancedqueue_backend + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + plugin_id: string + display_extenders: { } + filter_groups: + operator: AND + groups: + 1: AND + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/config/system/queues/jobs/% + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.archive.yml b/config/sync/views.view.archive.yml new file mode 100644 index 0000000..b3aa27c --- /dev/null +++ b/config/sync/views.view.archive.yml @@ -0,0 +1,247 @@ +uuid: 4c4ba29b-5acb-4a48-985b-154d68cdc7be +langcode: en +status: false +dependencies: + config: + - core.entity_view_mode.node.teaser + module: + - node + - user +_core: + default_config_hash: ko9GznzNBXHkuz09OCaBQ1YOSJYYjTY0TBpNV3WKnog +id: archive +label: Archive +module: node +description: 'All content, by month.' +tag: default +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: 'Monthly archive' + fields: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: + created: + id: created + table: node_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: + created_year_month: + id: created_year_month + table: node_field_data + field: created_year_month + entity_type: node + plugin_id: date_year_month + default_action: summary + exception: + title_enable: true + title_enable: true + title: '{{ arguments.created_year_month }}' + default_argument_type: fixed + summary_options: + override: true + items_per_page: 30 + summary: + sort_order: desc + format: default_summary + specify_validation: true + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 0 + expose: + operator: '0' + operator_limit_selection: false + operator_list: { } + langcode: + id: langcode + table: node_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language + operator: in + value: + '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + uses_fields: false + row: + type: 'entity:node' + options: + view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } + block_1: + id: block_1 + display_title: Block + display_plugin: block + position: 1 + display_options: + arguments: + created_year_month: + id: created_year_month + table: node_field_data + field: created_year_month + entity_type: node + plugin_id: date_year_month + default_action: summary + exception: + title_enable: true + title_enable: true + title: '{{ arguments.created_year_month }}' + default_argument_type: fixed + summary_options: + items_per_page: 30 + summary: + format: default_summary + specify_validation: true + query: + type: views_query + options: { } + defaults: + arguments: false + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 2 + display_options: + query: + type: views_query + options: { } + display_extenders: { } + path: archive + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/config/sync/views.view.block_content.yml b/config/sync/views.view.block_content.yml new file mode 100644 index 0000000..cd27070 --- /dev/null +++ b/config/sync/views.view.block_content.yml @@ -0,0 +1,552 @@ +uuid: 28e4f254-5037-4789-b277-18dd192742b6 +langcode: en +status: true +dependencies: + module: + - block_content + - user +_core: + default_config_hash: AcOE_1RLjX4okjWSOk7Pen1IdtPsY0Nbn0HXWG3zMqc +id: block_content +label: 'Content blocks' +module: views +description: 'Find and manage content blocks.' +tag: default +base_table: block_content_field_data +base_field: id +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: 'Content blocks' + fields: + info: + id: info + table: block_content_field_data + field: info + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: info + plugin_id: field + label: 'Block description' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + type: + id: type + table: block_content_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + entity_field: type + plugin_id: field + label: 'Block type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: block_content_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + operations: + id: operations + table: block_content + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + pager: + type: mini + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access block library' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'There are no content blocks available.' + tokenize: false + block_content_listing_empty: + id: block_content_listing_empty + table: block_content + field: block_content_listing_empty + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + plugin_id: block_content_listing_empty + label: '' + empty: true + sorts: { } + arguments: { } + filters: + info: + id: info + table: block_content_field_data + field: info + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + entity_field: info + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: info_op + label: 'Block description' + description: '' + use_operator: false + operator: info_op + operator_limit_selection: false + operator_list: { } + identifier: info + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + type: + id: type + table: block_content_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + entity_field: type + plugin_id: bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: 'Block type' + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reusable: + id: reusable + table: block_content_field_data + field: reusable + relationship: none + group_type: group + admin_label: '' + entity_type: block_content + entity_field: reusable + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + info: info + type: type + changed: changed + operations: operations + default: changed + info: + info: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + display_extenders: { } + path: admin/content/block + menu: + type: tab + title: Blocks + description: 'Create and edit content blocks.' + weight: 0 + menu_name: admin + parent: system.admin_content + context: '0' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.cklb_products_entity_reference.yml b/config/sync/views.view.cklb_products_entity_reference.yml new file mode 100644 index 0000000..391e3a3 --- /dev/null +++ b/config/sync/views.view.cklb_products_entity_reference.yml @@ -0,0 +1,189 @@ +uuid: 25237108-c829-4f06-b59a-51f9f75400a8 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: MHLX8Oyn2D1eXhcoaazd1YI0ydjBJ7NYLst_jIvDnG4 +id: cklb_products_entity_reference +label: 'Products entity reference' +module: views +description: '' +tag: '' +base_table: commerce_product_field_data +base_field: product_id +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + fields: + title: + id: title + table: commerce_product_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: none + options: { } + cache: + type: tag + options: { } + empty: { } + sorts: { } + arguments: { } + filters: + status: + id: status + table: commerce_product_field_data + field: status + entity_type: commerce_product + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + uses_fields: false + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url.query_args + tags: { } + entity_reference_all_products: + id: entity_reference_all_products + display_title: 'Entity Reference' + display_plugin: entity_reference + position: 1 + display_options: + style: + type: entity_reference + options: + search_fields: + title: title + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + tags: { } diff --git a/config/sync/views.view.comment.yml b/config/sync/views.view.comment.yml new file mode 100644 index 0000000..bb2c7d0 --- /dev/null +++ b/config/sync/views.view.comment.yml @@ -0,0 +1,1616 @@ +uuid: 008364cc-e384-4967-932a-8c926c6ff9e8 +langcode: en +status: true +dependencies: + module: + - comment + - user +_core: + default_config_hash: WFURZFZFHS9S7tEJJqOd6ucYexi84JiyQxE5suLP7D8 +id: comment +label: Comments +module: comment +description: 'Find and manage comments.' +tag: default +base_table: comment_field_data +base_field: cid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Comments + fields: + comment_bulk_form: + id: comment_bulk_form + table: comment + field: comment_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: comment + plugin_id: comment_bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: include + selected_actions: + - comment_delete_action + - comment_unpublish_action + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: field + label: Subject + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: comment_permalink + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + uid: + id: uid + table: comment_field_data + field: uid + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: uid + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + name: + id: name + table: comment_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: name + plugin_id: field + label: Author + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '{{ uid }}' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: comment_username + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_id: + id: entity_id + table: comment_field_data + field: entity_id + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: entity_id + plugin_id: commented_entity + label: 'Posted in' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: comment_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + operations: + id: operations + table: comment + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: comment + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + name_1: + id: name_1 + table: users_field_data + field: name + relationship: uid + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: user_name + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'next ›' + previous: '‹ previous' + first: '« first' + last: 'last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer comments' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No comments available.' + tokenize: false + sorts: + changed: + id: changed + table: comment_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: changed + exposed: false + granularity: second + arguments: { } + filters: + status: + id: status + table: comment_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: subject_op + label: Subject + description: '' + use_operator: false + operator: subject_op + operator_limit_selection: false + operator_list: { } + identifier: subject + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + combine: + id: combine + table: views + field: combine + relationship: none + group_type: group + admin_label: '' + plugin_id: combine + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: combine_op + label: 'Author name' + description: '' + use_operator: false + operator: combine_op + operator_limit_selection: false + operator_list: { } + identifier: author_name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + fields: + name: name + name_1: name_1 + langcode: + id: langcode + table: comment_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: langcode + plugin_id: language + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + operator_limit_selection: false + operator_list: { } + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + comment_bulk_form: comment_bulk_form + subject: subject + uid: uid + entity_id: entity_id + changed: changed + operations: operations + default: changed + info: + comment_bulk_form: + align: '' + separator: '' + empty_column: false + responsive: '' + subject: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + uid: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + entity_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: true + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + uid: + id: uid + table: comment_field_data + field: uid + relationship: none + group_type: group + admin_label: author + entity_type: comment + entity_field: uid + plugin_id: standard + required: false + css_class: '' + use_ajax: false + group_by: false + show_admin_links: true + use_more: false + use_more_always: true + use_more_text: more + header: { } + footer: { } + hide_attachment_summary: false + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + cacheable: false + page_published: + id: page_published + display_title: 'Published comments' + display_plugin: page + position: 1 + display_options: + display_description: 'The approved comments listing.' + display_comment: '' + exposed_block: false + display_extenders: { } + path: admin/content/comment + menu: + type: tab + title: Comments + description: 'Comments published' + weight: 0 + menu_name: admin + parent: '' + context: '0' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + cacheable: false + page_unapproved: + id: page_unapproved + display_title: 'Unapproved comments' + display_plugin: page + position: 2 + display_options: + fields: + comment_bulk_form: + id: comment_bulk_form + table: comment + field: comment_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: comment + plugin_id: comment_bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: include + selected_actions: + - comment_delete_action + - comment_publish_action + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: field + label: Subject + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: comment_permalink + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + uid: + id: uid + table: comment_field_data + field: uid + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: uid + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + name: + id: name + table: comment_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: name + plugin_id: field + label: Author + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '{{ uid }}' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: comment_username + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_id: + id: entity_id + table: comment_field_data + field: entity_id + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: entity_id + plugin_id: commented_entity + label: 'Posted in' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: comment_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + operations: + id: operations + table: comment + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: comment + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + name_1: + id: name_1 + table: users_field_data + field: name + relationship: uid + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: user_name + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + filters: + status: + id: status + table: comment_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: status + plugin_id: boolean + operator: '=' + value: '0' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: subject_op + label: Subject + description: '' + use_operator: false + operator: subject_op + operator_limit_selection: false + operator_list: { } + identifier: subject + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + combine: + id: combine + table: views + field: combine + relationship: none + group_type: group + admin_label: '' + plugin_id: combine + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: combine_op + label: 'Author Name' + description: '' + use_operator: false + operator: combine_op + operator_limit_selection: false + operator_list: { } + identifier: author_name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + fields: + name: name + name_1: name_1 + langcode: + id: langcode + table: comment_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: langcode + plugin_id: language + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + operator_limit_selection: false + operator_list: { } + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + fields: false + filters: false + filter_groups: false + display_description: 'The unapproved comments listing.' + display_extenders: { } + path: admin/content/comment/approval + menu: + type: tab + title: 'Unapproved comments' + description: 'Comments unapproved' + weight: 1 + menu_name: admin + parent: '' + context: '0' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + cacheable: false diff --git a/config/sync/views.view.comments_recent.yml b/config/sync/views.view.comments_recent.yml new file mode 100644 index 0000000..692a4a4 --- /dev/null +++ b/config/sync/views.view.comments_recent.yml @@ -0,0 +1,270 @@ +uuid: c88685b4-c4c4-4921-852a-01a29d2118db +langcode: en +status: true +dependencies: + module: + - comment + - node + - user +_core: + default_config_hash: S_NN2ubd_NovTfgzbHVlZMmIJJQS-3h9h3inzbaFUMY +id: comments_recent +label: 'Recent comments' +module: views +description: 'Recent comments.' +tag: default +base_table: comment_field_data +base_field: cid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: 'Recent comments' + fields: + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: string + settings: + link_to_entity: true + changed: + id: changed + table: comment_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp_ago + settings: + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + pager: + type: some + options: + offset: 0 + items_per_page: 10 + exposed_form: + type: basic + access: + type: perm + options: + perm: 'access comments' + cache: + type: tag + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + label: '' + empty: true + content: 'No comments available.' + tokenize: false + sorts: + created: + id: created + table: comment_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + cid: + id: cid + table: comment_field_data + field: cid + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: cid + plugin_id: field + order: DESC + expose: + label: '' + field_identifier: cid + exposed: false + filters: + status: + id: status + table: comment_field_data + field: status + entity_type: comment + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + status_node: + id: status_node + table: node_field_data + field: status + relationship: node + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + options: + default_field_elements: true + hide_empty: false + query: + type: views_query + relationships: + node: + id: node + table: comment_field_data + field: node + plugin_id: standard + required: true + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user.permissions + tags: { } + block_1: + id: block_1 + display_title: Block + display_plugin: block + position: 1 + display_options: + display_extenders: { } + block_description: 'Recent comments' + block_category: 'Lists (Views)' + allow: + items_per_page: true + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user.permissions + tags: { } diff --git a/config/sync/views.view.commerce_activity.yml b/config/sync/views.view.commerce_activity.yml new file mode 100644 index 0000000..0ad992b --- /dev/null +++ b/config/sync/views.view.commerce_activity.yml @@ -0,0 +1,429 @@ +uuid: aaf17f87-c5ba-4bc7-b290-8e1071719a65 +langcode: en +status: true +dependencies: + module: + - commerce_log + - user +_core: + default_config_hash: jJ4NNc5t-c-56hFksfpfsQT2cogX9G-1rcG96sEMjVI +id: commerce_activity +label: Activity +module: views +description: '' +tag: '' +base_table: commerce_log +base_field: log_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: none + options: + offset: 0 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + created: created + rendered_entity: rendered_entity + uid: uid + info: + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + rendered_entity: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: false + row: + type: fields + fields: + created: + id: created + table: commerce_log + field: created + relationship: none + group_type: group + admin_label: '' + label: Date + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_log + entity_field: created + plugin_id: field + rendered_entity: + id: rendered_entity + table: commerce_log + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: Message + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: default + entity_type: null + entity_field: null + plugin_id: rendered_entity + uid: + id: uid + table: commerce_log + field: uid + relationship: none + group_type: group + admin_label: '' + label: User + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: author + settings: { } + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_log + entity_field: uid + plugin_id: field + filters: { } + sorts: + log_id: + id: log_id + table: commerce_log + field: log_id + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: commerce_log + entity_field: log_id + plugin_id: standard + title: 'Order logs' + header: + commerce_log_admin_comment_form: + id: commerce_log_admin_comment_form + table: views + field: commerce_log_admin_comment_form + relationship: none + group_type: group + admin_label: '' + empty: true + plugin_id: commerce_log_admin_comment_form + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No log entries.' + plugin_id: text_custom + relationships: { } + arguments: + source_entity_id: + id: source_entity_id + table: commerce_log + field: source_entity_id + relationship: none + group_type: group + admin_label: '' + default_action: empty + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: commerce_log + entity_field: source_entity_id + plugin_id: numeric + source_entity_type: + id: source_entity_type + table: commerce_log + field: source_entity_type + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: commerce_log + entity_field: source_entity_type + plugin_id: string + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } + block_1: + display_plugin: block + id: block_1 + display_title: Block + position: 1 + display_options: + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } diff --git a/config/sync/views.view.commerce_cart_block.yml b/config/sync/views.view.commerce_cart_block.yml new file mode 100644 index 0000000..e0894f3 --- /dev/null +++ b/config/sync/views.view.commerce_cart_block.yml @@ -0,0 +1,400 @@ +uuid: 04d64db8-1b47-4d31-a180-cfab4d300a06 +langcode: en +status: true +dependencies: + module: + - commerce_order + - commerce_price + enforced: + module: + - commerce_cart +_core: + default_config_hash: sTKMNZJ4DVegYkx0Lake4yfkpxD7y_g2bQO28xTs5co +id: commerce_cart_block +label: 'Cart block' +module: views +description: '' +tag: commerce_cart_block +base_table: commerce_order +base_field: order_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: none + options: + offset: 0 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + order_number: order_number + info: + order_number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: false + row: + type: fields + options: + inline: { } + separator: '' + hide_empty: false + default_field_elements: true + fields: + quantity: + id: quantity + table: commerce_order_item + field: quantity + relationship: order_items + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: true + text: '{{ quantity }} x' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_decimal + settings: + thousand_separator: '' + prefix_suffix: false + decimal_separator: . + scale: 0 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: quantity + plugin_id: field + title: + id: title + table: commerce_order_item + field: title + relationship: order_items + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: title + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order_item + field: total_price__number + relationship: order_items + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: total_price + plugin_id: field + filters: + cart: + id: cart + table: commerce_order + field: cart + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + operator_limit_selection: false + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: cart + plugin_id: boolean + sorts: + order_item_id: + id: order_item_id + table: commerce_order_item + field: order_item_id + relationship: order_items + group_type: group + admin_label: '' + order: ASC + exposed: false + expose: + label: '' + entity_type: commerce_order_item + entity_field: order_item_id + plugin_id: standard + header: { } + footer: { } + empty: { } + relationships: + order_items: + id: order_items + table: commerce_order__order_items + field: order_items_target_id + relationship: none + group_type: group + admin_label: 'order_items: Order Item' + required: true + entity_type: commerce_order + entity_field: order_items + plugin_id: standard + arguments: + order_id: + id: order_id + table: commerce_order + field: order_id + relationship: none + group_type: group + admin_label: '' + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: commerce_order + entity_field: order_id + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + tags: { } diff --git a/config/sync/views.view.commerce_cart_form.yml b/config/sync/views.view.commerce_cart_form.yml new file mode 100644 index 0000000..ec5c54b --- /dev/null +++ b/config/sync/views.view.commerce_cart_form.yml @@ -0,0 +1,614 @@ +uuid: 9be5bbac-b155-4065-8c3d-0dc0d8b9a6fc +langcode: en +status: true +dependencies: + config: + - field.storage.commerce_product.images + - image.style.thumbnail + module: + - commerce_cart + - commerce_order + - commerce_price + - commerce_product + - image + enforced: + module: + - commerce_cart +_core: + default_config_hash: ZZ7fN4Var5f4nwyca2h0ZEOuuMWsDYRxOBJcxEFVFF4 +id: commerce_cart_form +label: 'Cart form' +module: views +description: '' +tag: commerce_cart_form +base_table: commerce_order +base_field: order_id +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + fields: + images: + id: images + table: commerce_product__images + field: images + relationship: product_id + group_type: group + admin_label: '' + plugin_id: field + label: Item + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: image + settings: + image_link: content + image_style: thumbnail + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 1 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + view_commerce_product: + id: view_commerce_product + table: commerce_product + field: view_commerce_product + relationship: product_id + group_type: group + admin_label: '' + entity_type: commerce_product + plugin_id: entity_link + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: view + output_url_as_text: true + absolute: false + title: + id: title + table: commerce_order_item + field: title + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: '{{ view_commerce_product }}' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + unit_price__number: + id: unit_price__number + table: commerce_order_item + field: unit_price__number + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: unit_price + plugin_id: field + label: Price + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + edit_quantity: + id: edit_quantity + table: commerce_order_item + field: edit_quantity + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + plugin_id: commerce_order_item_edit_quantity + label: Quantity + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + allow_decimal: false + remove_button: + id: remove_button + table: commerce_order_item + field: remove_button + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + plugin_id: commerce_order_item_remove_button + label: Remove + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + total_price__number: + id: total_price__number + table: commerce_order_item + field: total_price__number + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: total_price + plugin_id: field + label: Total + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: none + options: { } + cache: + type: tag + options: { } + empty: { } + sorts: + order_item_id: + id: order_item_id + table: commerce_order_item + field: order_item_id + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: order_item_id + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: order_item_id + exposed: false + arguments: + order_id: + id: order_id + table: commerce_order + field: order_id + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_order + entity_field: order_id + plugin_id: numeric + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + filters: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + order_number: order_number + default: '-1' + info: + order_number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + order_items: + id: order_items + table: commerce_order__order_items + field: order_items_target_id + relationship: none + group_type: group + admin_label: 'order_items: Order Item' + entity_type: commerce_order + entity_field: order_items + plugin_id: standard + required: true + commerce_product_variation: + id: commerce_product_variation + table: commerce_order_item + field: commerce_product_variation + relationship: order_items + group_type: group + admin_label: 'Product variation' + entity_type: commerce_order_item + plugin_id: standard + required: true + product_id: + id: product_id + table: commerce_product_variation_field_data + field: product_id + relationship: commerce_product_variation + group_type: group + admin_label: Product + entity_type: commerce_product_variation + entity_field: product_id + plugin_id: standard + required: true + header: { } + footer: + commerce_order_total: + id: commerce_order_total + table: views + field: commerce_order_total + relationship: none + group_type: group + admin_label: '' + plugin_id: commerce_order_total + empty: false + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + tags: + - 'config:field.storage.commerce_product.images' diff --git a/config/sync/views.view.commerce_carts.yml b/config/sync/views.view.commerce_carts.yml new file mode 100644 index 0000000..dadbb52 --- /dev/null +++ b/config/sync/views.view.commerce_carts.yml @@ -0,0 +1,785 @@ +uuid: 4f4a1852-9ca1-4421-9a15-dfc2f8ceb7ea +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_order + - commerce_price + - commerce_store + - user + enforced: + module: + - commerce_cart +_core: + default_config_hash: tiKR1foQc_gOKNxs2Q5gMOUpn4T2rDMyqrCVLXQIrbc +id: commerce_carts +label: Carts +module: views +description: '' +tag: Commerce +base_table: commerce_order +base_field: order_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_order overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: '‹ previous' + next: 'next ›' + first: '« first' + last: 'last »' + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + type: type + store_id: store_id + uid: uid + mail: uid + total_price__number: total_price__number + changed: changed + operations: operations + info: + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: priority-medium + store_id: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: priority-medium + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '
                ' + empty_column: false + responsive: '' + mail: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + total_price__number: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: true + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields + fields: + commerce_order_bulk_form: + id: commerce_order_bulk_form + table: commerce_order + field: commerce_order_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + entity_type: commerce_order + plugin_id: bulk_form + type: + id: type + table: commerce_order + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + entity_type: commerce_order + entity_field: type + plugin_id: commerce_entity_bundle + store_id: + id: store_id + table: commerce_order + field: store_id + relationship: none + group_type: group + admin_label: '' + label: Store + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_store: true + entity_type: commerce_order + entity_field: store_id + plugin_id: commerce_store + uid: + id: uid + table: commerce_order + field: uid + relationship: none + group_type: group + admin_label: '' + label: Customer + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: uid + plugin_id: field + mail: + id: mail + table: commerce_order + field: mail + relationship: none + group_type: group + admin_label: '' + label: Email + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: basic_string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: mail + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: Total + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: total_price + plugin_id: field + changed: + id: changed + table: commerce_order + field: changed + relationship: none + group_type: group + admin_label: '' + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp_ago + settings: + granularity: 2 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: changed + plugin_id: field + operations: + id: operations + table: commerce_order + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: commerce_order + plugin_id: entity_operations + filters: + cart: + id: cart + table: commerce_order + field: cart + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + operator_limit_selection: false + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: cart + plugin_id: boolean + type: + id: type + table: commerce_order + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + operator_limit_selection: false + label: Type + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: type + plugin_id: commerce_entity_bundle + sorts: { } + title: Carts + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No orders available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + use_ajax: false + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/orders/carts + menu: + type: tab + title: Carts + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: admin + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } diff --git a/config/sync/views.view.commerce_checkout_order_summary.yml b/config/sync/views.view.commerce_checkout_order_summary.yml new file mode 100644 index 0000000..2513862 --- /dev/null +++ b/config/sync/views.view.commerce_checkout_order_summary.yml @@ -0,0 +1,462 @@ +uuid: d0211470-68b0-4639-a58e-f217a89cc905 +langcode: en +status: true +dependencies: + config: + - field.storage.commerce_product.images + - image.style.thumbnail + module: + - commerce_order + - commerce_price + - commerce_product + - image + enforced: + module: + - commerce_checkout + - commerce_order +_core: + default_config_hash: kMrc5JeJn0TCWjVgPH-5NK7J-HWhwYit9esqc6Wtw8c +id: commerce_checkout_order_summary +label: 'Checkout order summary' +module: views +description: '' +tag: commerce_order_summary +base_table: commerce_order +base_field: order_id +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + fields: + quantity: + id: quantity + table: commerce_order_item + field: quantity + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: quantity + plugin_id: field + label: '' + exclude: false + alter: + alter_text: true + text: '{{ quantity }} x' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_decimal + settings: + thousand_separator: '' + decimal_separator: . + scale: 0 + prefix_suffix: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + images: + id: images + table: commerce_product__images + field: images + relationship: product_id + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: image + settings: + image_link: '' + image_style: thumbnail + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 1 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + title: + id: title + table: commerce_product_variation_field_data + field: title + relationship: commerce_product_variation + group_type: group + admin_label: '' + entity_type: commerce_product_variation + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + total_price__number: + id: total_price__number + table: commerce_order_item + field: total_price__number + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: total_price + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: none + options: { } + cache: + type: tag + options: { } + empty: { } + sorts: + order_item_id: + id: order_item_id + table: commerce_order_item + field: order_item_id + relationship: order_items + group_type: group + admin_label: '' + entity_type: commerce_order_item + entity_field: order_item_id + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: order_item_id + exposed: false + arguments: + order_id: + id: order_id + table: commerce_order + field: order_id + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_order + entity_field: order_id + plugin_id: numeric + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + filters: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + order_number: order_number + default: '-1' + info: + order_number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + order_items: + id: order_items + table: commerce_order__order_items + field: order_items_target_id + relationship: none + group_type: group + admin_label: 'order_items: Order Item' + entity_type: commerce_order + entity_field: order_items + plugin_id: standard + required: true + commerce_product_variation: + id: commerce_product_variation + table: commerce_order_item + field: commerce_product_variation + relationship: order_items + group_type: group + admin_label: 'Product variation' + entity_type: commerce_order_item + plugin_id: standard + required: true + product_id: + id: product_id + table: commerce_product_variation_field_data + field: product_id + relationship: commerce_product_variation + group_type: group + admin_label: Product + entity_type: commerce_product_variation + entity_field: product_id + plugin_id: standard + required: true + header: { } + footer: + commerce_order_total: + id: commerce_order_total + table: views + field: commerce_order_total + relationship: none + group_type: group + admin_label: '' + plugin_id: commerce_order_total + empty: false + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + tags: + - 'config:field.storage.commerce_product.images' diff --git a/config/sync/views.view.commerce_file_my_files.yml b/config/sync/views.view.commerce_file_my_files.yml new file mode 100644 index 0000000..9ac77ad --- /dev/null +++ b/config/sync/views.view.commerce_file_my_files.yml @@ -0,0 +1,581 @@ +uuid: a51688ca-1c9e-448a-9960-e5dadef7856c +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_file + - commerce_license + - commerce_product + - state_machine + - user + enforced: + module: + - commerce_file +_core: + default_config_hash: _zFrfsmqzHSJmI2IPkiFLFtS_1NlhQ1Mqhr1-9pyas0 +id: commerce_file_my_files +label: 'Licensed files' +module: views +description: '' +tag: default +base_table: commerce_license +base_field: license_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'view own commerce_license' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: true + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 20 + offset: 0 + id: 0 + total_pages: null + tags: + previous: '‹ Previous' + next: 'Next ›' + first: '‹‹ First' + last: 'Last ››' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + license_id: license_id + commerce_file: commerce_file + download_limit: download_limit + expires: expires + info: + license_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + commerce_file: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + download_limit: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + expires: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: '' + default: '-1' + empty_table: true + row: + type: fields + fields: + commerce_file: + id: commerce_file + table: commerce_product_variation__commerce_file + field: commerce_file + relationship: product_variation + group_type: group + admin_label: '' + label: Files + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: commerce_file_download_link + settings: + use_description_as_link_text: false + group_column: '' + group_columns: { } + group_rows: false + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: ul + separator: '' + field_api_classes: false + plugin_id: field + download_limit: + id: download_limit + table: commerce_license + field: download_limit + relationship: none + group_type: group + admin_label: '' + label: Downloads + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + entity_type: commerce_license + plugin_id: download_limit + expires: + id: expires + table: commerce_license + field: expires + relationship: none + group_type: group + admin_label: '' + label: Expires + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: true + empty_zero: true + hide_alter_empty: true + click_sort_column: value + type: commerce_license_expiration + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_license + entity_field: expires + plugin_id: field + filters: + type: + id: type + table: commerce_license + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: + commerce_file: commerce_file + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + hide_single_bundle: true + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_license + entity_field: type + plugin_id: commerce_entity_bundle + state: + id: state + table: commerce_license + field: state + relationship: none + group_type: group + admin_label: '' + operator: in + value: + active: active + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_license + entity_field: state + plugin_id: state_machine_state + sorts: + license_id: + id: license_id + table: commerce_license + field: license_id + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: commerce_license + entity_field: license_id + plugin_id: standard + title: 'Licensed files' + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No files yet.' + plugin_id: text_custom + relationships: + product_variation: + id: product_variation + table: commerce_license + field: product_variation + relationship: none + group_type: group + admin_label: 'Product variation' + required: false + entity_type: commerce_license + entity_field: product_variation + plugin_id: standard + arguments: + uid: + id: uid + table: commerce_license + field: uid + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: commerce_current_user + fail: 'not found' + validate_options: + admin_permission: 'bypass license control' + break_phrase: false + not: false + entity_type: commerce_license + entity_field: uid + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: + - 'config:field.storage.commerce_product_variation.commerce_file' + checkout_complete: + display_plugin: block + id: checkout_complete + display_title: 'Checkout complete' + position: 2 + display_options: + display_extenders: { } + display_description: 'Embedded from the DownloadFile checkout pane.' + access: + type: none + options: { } + defaults: + access: false + arguments: false + arguments: + license_id: + id: license_id + table: commerce_license + field: license_id + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: true + not: false + entity_type: commerce_license + entity_field: license_id + plugin_id: numeric + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: + - 'config:field.storage.commerce_product_variation.commerce_file' + page: + display_plugin: page + id: page + display_title: Page + position: 0 + display_options: + display_extenders: { } + path: user/%user/files + menu: + type: tab + title: Files + description: '' + menu_name: account + weight: 0 + context: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: + - 'config:field.storage.commerce_product_variation.commerce_file' diff --git a/config/sync/views.view.commerce_licenses.yml b/config/sync/views.view.commerce_licenses.yml new file mode 100644 index 0000000..2c4dab3 --- /dev/null +++ b/config/sync/views.view.commerce_licenses.yml @@ -0,0 +1,1148 @@ +uuid: 0046b12f-7c87-46a6-81b7-17a2dc9bf9c3 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_license + - options + - state_machine + - user +_core: + default_config_hash: DDu13QyjsoIwjREMOOXwrV2bJUUvUU84JgyVx9GACLc +id: commerce_licenses +label: Licenses +module: views +description: '' +tag: '' +base_table: commerce_license +base_field: license_id +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + title: Licenses + fields: + commerce_license_bulk_form: + id: commerce_license_bulk_form + table: commerce_license + field: commerce_license_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + plugin_id: bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + license_id: + id: license_id + table: commerce_license + field: license_id + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: license_id + plugin_id: field + label: ID + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_integer + settings: + thousand_separator: '' + prefix_suffix: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + label: + id: label + table: commerce_license + field: label + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + plugin_id: commerce_license__entity_label + label: Label + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + link_to_entity: true + type: + id: type + table: commerce_license + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: type + plugin_id: commerce_entity_bundle + label: 'License type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + uid: + id: uid + table: commerce_license + field: uid + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: uid + plugin_id: field + label: Owner + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + state: + id: state + table: commerce_license + field: state + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: state + plugin_id: field + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + granted: + id: granted + table: commerce_license + field: granted + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: granted + plugin_id: field + label: Granted + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + expires: + id: expires + table: commerce_license + field: expires + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: expires + plugin_id: field + label: Expires + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_license_expiration + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: commerce_license + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + operations: + id: operations + table: commerce_license + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + plugin_id: entity_operations + label: 'Operations links' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + name: + id: name + table: users_field_data + field: name + relationship: uid + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: Name + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: user_name + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + mail: + id: mail + table: users_field_data + field: mail + relationship: uid + group_type: group + admin_label: '' + entity_type: user + entity_field: mail + plugin_id: field + label: Email + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: basic_string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access commerce_license overview' + cache: + type: tag + options: { } + empty: { } + sorts: + granted: + id: granted + table: commerce_license + field: granted + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: granted + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: granted + exposed: false + granularity: second + arguments: { } + filters: + type: + id: type + table: commerce_license + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: type + plugin_id: commerce_entity_bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: 'License type' + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + content_editor: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + combine: + id: combine + table: views + field: combine + relationship: none + group_type: group + admin_label: '' + plugin_id: combine + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: combine_op + label: 'Name or email contains' + description: '' + use_operator: false + operator: combine_op + operator_limit_selection: false + operator_list: { } + identifier: user + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + fields: + name: name + mail: mail + state: + id: state + table: commerce_license + field: state + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_license + entity_field: state + plugin_id: state_machine_state + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: state_op + label: State + description: '' + use_operator: false + operator: state_op + operator_limit_selection: false + operator_list: { } + identifier: state + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + member: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + license_id: license_id + label: label + type: type + uid: uid + state: state + granted: granted + expires: expires + changed: changed + operations: operations + name: name + mail: mail + default: '-1' + info: + license_id: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + label: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + granted: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + expires: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + align: '' + separator: '' + empty_column: false + responsive: '' + name: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + mail: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + uid: + id: uid + table: commerce_license + field: uid + relationship: none + group_type: group + admin_label: User + entity_type: commerce_license + entity_field: uid + plugin_id: standard + required: true + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/licenses + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.commerce_order_item_table.yml b/config/sync/views.view.commerce_order_item_table.yml new file mode 100644 index 0000000..e7c20aa --- /dev/null +++ b/config/sync/views.view.commerce_order_item_table.yml @@ -0,0 +1,434 @@ +uuid: 5b86f78c-c686-4342-afae-5626a0cbc050 +langcode: en +status: true +dependencies: + module: + - commerce_order + - commerce_price +_core: + default_config_hash: VS41sBCRp1AVK6Kmnxe_DF0sq6pVdJHp81Obe_Y-sdg +id: commerce_order_item_table +label: 'Order items' +module: views +description: 'Display a set of order items in a table.' +tag: commerce_order_item_table +base_table: commerce_order_item +base_field: order_item_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: none + options: + offset: 0 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + title: title + unit_price__number: unit_price__number + quantity: quantity + total_price__number: total_price__number + info: + title: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + unit_price__number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + quantity: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + total_price__number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: true + row: + type: fields + options: + inline: { } + separator: '' + hide_empty: false + default_field_elements: true + fields: + title: + id: title + table: commerce_order_item + field: title + relationship: none + group_type: group + admin_label: '' + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: title + plugin_id: field + unit_price__number: + id: unit_price__number + table: commerce_order_item + field: unit_price__number + relationship: none + group_type: group + admin_label: '' + label: 'Unit price' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: unit_price + plugin_id: field + quantity: + id: quantity + table: commerce_order_item + field: quantity + relationship: none + group_type: group + admin_label: '' + label: Quantity + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_decimal + settings: + thousand_separator: '' + prefix_suffix: true + decimal_separator: . + scale: 2 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: quantity + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order_item + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: 'Total price' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: total_price + plugin_id: field + filters: { } + sorts: { } + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'There are no order items yet.' + plugin_id: text_custom + relationships: { } + arguments: + order_item_id: + id: order_item_id + table: commerce_order_item + field: order_item_id + relationship: none + group_type: group + admin_label: '' + default_action: empty + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: true + not: false + entity_type: commerce_order_item + entity_field: order_item_id + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + tags: { } diff --git a/config/sync/views.view.commerce_order_payments.yml b/config/sync/views.view.commerce_order_payments.yml new file mode 100644 index 0000000..aacb0d5 --- /dev/null +++ b/config/sync/views.view.commerce_order_payments.yml @@ -0,0 +1,922 @@ +uuid: a869bcc3-c5c2-4841-8fef-c2ff688671c7 +langcode: en +status: true +dependencies: + module: + - commerce_payment + - commerce_price + - options + - user +_core: + default_config_hash: 5t0kPfQgqy4faetT297hd9t3E16N_c6JMAycthtc25E +id: commerce_order_payments +label: Payments +module: views +description: '' +tag: '' +base_table: commerce_payment +base_field: payment_id +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Payments + fields: + amount__number: + id: amount__number + table: commerce_payment + field: amount__number + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: amount + plugin_id: field + label: Payment + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + refunded_amount__number: + id: refunded_amount__number + table: commerce_payment + field: refunded_amount__number + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: refunded_amount + plugin_id: field + label: 'Refunded:' + exclude: false + alter: + alter_text: true + text: 'Refunded: {{ refunded_amount__number }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: true + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + avs_response_code_label: + id: avs_response_code_label + table: commerce_payment + field: avs_response_code_label + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: avs_response_code_label + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: true + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + avs_response_code: + id: avs_response_code + table: commerce_payment + field: avs_response_code + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: avs_response_code + plugin_id: field + label: 'AVS response code' + exclude: false + alter: + alter_text: true + text: 'AVS response: [{{ avs_response_code }}] {{ avs_response_code_label }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: true + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + state: + id: state + table: commerce_payment + field: state + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: state + plugin_id: field + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + payment_gateway: + id: payment_gateway + table: commerce_payment + field: payment_gateway + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: payment_gateway + plugin_id: field + label: 'Payment gateway' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + authorized: + id: authorized + table: commerce_payment + field: authorized + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: authorized + plugin_id: field + label: Authorized + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + completed: + id: completed + table: commerce_payment + field: completed + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: completed + plugin_id: field + label: Completed + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + remote_id: + id: remote_id + table: commerce_payment + field: remote_id + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: remote_id + plugin_id: field + label: 'Remote ID' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: N/A + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + operations: + id: operations + table: commerce_payment + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: null + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer commerce_payment' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No payments yet.' + tokenize: false + sorts: + payment_id: + id: payment_id + table: commerce_payment + field: payment_id + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: payment_id + plugin_id: standard + order: DESC + expose: + label: '' + field_identifier: '' + exposed: false + arguments: + order_id: + id: order_id + table: commerce_payment + field: order_id + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_payment + entity_field: order_id + plugin_id: numeric + default_action: empty + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + filters: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + amount__number: amount__number + refunded_amount__number: amount__number + avs_response_code_label: amount__number + avs_response_code: amount__number + state: state + payment_gateway: payment_gateway + authorized: authorized + completed: completed + remote_id: remote_id + operations: operations + default: '-1' + info: + amount__number: + sortable: false + default_sort_order: asc + align: '' + separator: '
                ' + empty_column: false + responsive: '' + refunded_amount__number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + avs_response_code_label: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + avs_response_code: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + payment_gateway: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + authorized: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + completed: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + remote_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: + commerce_payment_total_summary: + id: commerce_payment_total_summary + table: views + field: commerce_payment_total_summary + relationship: none + group_type: group + admin_label: '' + plugin_id: commerce_payment_total_summary + empty: false + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + enabled: true + display_extenders: { } + path: admin/commerce/orders/%commerce_order/payments + menu: + type: tab + title: Payments + description: '' + weight: 15 + expanded: false + menu_name: main + parent: '' + context: '0' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - user.permissions + tags: { } diff --git a/config/sync/views.view.commerce_orders.yml b/config/sync/views.view.commerce_orders.yml new file mode 100644 index 0000000..f040465 --- /dev/null +++ b/config/sync/views.view.commerce_orders.yml @@ -0,0 +1,993 @@ +uuid: c9f61ee8-7db8-4569-9b48-28df82fad47b +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_order + - commerce_price + - commerce_store + - options + - state_machine + - user +_core: + default_config_hash: HFX6ZqjZ-Ph27nJoRvTzBtYCqiDzUaPdz-yRGWiQJtE +id: commerce_orders +label: Orders +module: views +description: '' +tag: Commerce +base_table: commerce_order +base_field: order_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_order overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: '‹ previous' + next: 'next ›' + first: '« first' + last: 'last »' + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + order_number: order_number + placed: placed + type: type + store_id: store_id + uid: uid + mail: uid + state: state + total_price__number: total_price__number + operations: operations + info: + order_number: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + placed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: priority-medium + store_id: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: priority-medium + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '
                ' + empty_column: false + responsive: '' + mail: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + total_price__number: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: placed + empty_table: true + row: + type: fields + fields: + commerce_order_bulk_form: + id: commerce_order_bulk_form + table: commerce_order + field: commerce_order_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + entity_type: commerce_order + plugin_id: bulk_form + order_number: + id: order_number + table: commerce_order + field: order_number + relationship: none + group_type: group + admin_label: '' + label: '#' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: order_number + plugin_id: field + placed: + id: placed + table: commerce_order + field: placed + relationship: none + group_type: group + admin_label: '' + label: Date + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: N/A + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: placed + plugin_id: field + type: + id: type + table: commerce_order + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + entity_type: commerce_order + entity_field: type + plugin_id: commerce_entity_bundle + store_id: + id: store_id + table: commerce_order + field: store_id + relationship: none + group_type: group + admin_label: '' + label: Store + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_store: true + entity_type: commerce_order + entity_field: store_id + plugin_id: commerce_store + uid: + id: uid + table: commerce_order + field: uid + relationship: none + group_type: group + admin_label: '' + label: Customer + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: uid + plugin_id: field + mail: + id: mail + table: commerce_order + field: mail + relationship: none + group_type: group + admin_label: '' + label: Email + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: basic_string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: mail + plugin_id: field + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: status + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: Total + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: total_price + plugin_id: field + operations: + id: operations + table: commerce_order + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + entity_type: commerce_order + plugin_id: entity_operations + filters: + order_number: + id: order_number + table: commerce_order + field: order_number + relationship: none + group_type: group + admin_label: '' + operator: starts + value: '' + group: 1 + exposed: true + expose: + operator_id: order_number_op + operator_limit_selection: false + label: 'Order number' + description: '' + use_operator: false + operator: order_number_op + identifier: order_number + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: order_number + plugin_id: string + type: + id: type + table: commerce_order + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + operator_limit_selection: false + label: Type + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: type + plugin_id: commerce_entity_bundle + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: state_op + operator_limit_selection: false + label: State + description: '' + use_operator: false + operator: state_op + identifier: state + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: state + plugin_id: state_machine_state + sorts: { } + title: Orders + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No orders available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + use_ajax: false + filter_groups: + operator: AND + groups: + 1: AND + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/orders/list + menu: + type: 'default tab' + title: Orders + description: '' + expanded: false + parent: '' + weight: -10 + context: '0' + menu_name: main + tab_options: + type: normal + title: Orders + description: 'Manage your orders.' + weight: 0 + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } diff --git a/config/sync/views.view.commerce_products.yml b/config/sync/views.view.commerce_products.yml new file mode 100644 index 0000000..4a67f0d --- /dev/null +++ b/config/sync/views.view.commerce_products.yml @@ -0,0 +1,638 @@ +uuid: 23c8ba87-5571-4508-a906-12864bb3ce86 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_product + - user +_core: + default_config_hash: tu0PL5GIB4nIjUfFst2N0WsTO6Ju1WtX7lFr-ya9vAs +id: commerce_products +label: Products +module: views +description: '' +tag: Commerce +base_table: commerce_product_field_data +base_field: product_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_product overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: '‹ previous' + next: 'next ›' + first: '« first' + last: 'last »' + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: true + caption: '' + summary: '' + description: '' + columns: + title: title + type: type + status: status + changed: changed + operations: operations + info: + title: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields + fields: + commerce_product_bulk_form: + id: commerce_product_bulk_form + table: commerce_product + field: commerce_product_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + entity_type: commerce_product + plugin_id: bulk_form + title: + id: title + table: commerce_product_field_data + field: title + relationship: none + group_type: group + admin_label: '' + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: title + plugin_id: field + type: + id: type + table: commerce_product_field_data + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + entity_type: commerce_product + entity_field: type + plugin_id: commerce_entity_bundle + status: + id: status + table: commerce_product_field_data + field: status + relationship: none + group_type: group + admin_label: '' + label: Status + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_true: Published + format_custom_false: Unpublished + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_product + entity_field: status + plugin_id: field + changed: + id: changed + table: commerce_product_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_product + entity_field: changed + plugin_id: field + operations: + id: operations + table: commerce_product + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: commerce_product + plugin_id: entity_operations + filters: + type: + id: type + table: commerce_product_field_data + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + operator_limit_selection: false + label: Type + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_product + entity_field: type + plugin_id: commerce_entity_bundle + title: + id: title + table: commerce_product_field_data + field: title + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + operator_limit_selection: false + label: Title + description: '' + use_operator: false + operator: title_op + identifier: title + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_product + entity_field: title + plugin_id: string + sorts: { } + title: Products + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No products available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/products + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } diff --git a/config/sync/views.view.commerce_promotion_coupons.yml b/config/sync/views.view.commerce_promotion_coupons.yml new file mode 100644 index 0000000..272df1a --- /dev/null +++ b/config/sync/views.view.commerce_promotion_coupons.yml @@ -0,0 +1,501 @@ +uuid: 04c8142c-1b46-42f8-9d70-cdbc9dcd2067 +langcode: en +status: true +dependencies: + module: + - commerce_promotion +_core: + default_config_hash: vfKzKP5hMfengLkW5uMwkg3jOByceWk5AqcxauaNsQo +id: commerce_promotion_coupons +label: Coupons +module: views +description: '' +tag: '' +base_table: commerce_promotion_coupon +base_field: id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + tags: + previous: ‹‹ + next: ›› + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + code: code + usage_limit: usage_limit + usage_limit_customer: usage_limit_customer + operations: operations + info: + code: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + usage_limit: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + usage_limit_customer: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: true + row: + type: 'entity:commerce_promotion_coupon' + fields: + code: + id: code + table: commerce_promotion_coupon + field: code + relationship: none + group_type: group + admin_label: '' + label: Code + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: true + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: code + plugin_id: field + usage_limit: + id: usage_limit + table: commerce_promotion_coupon + field: usage_limit + relationship: none + group_type: group + admin_label: '' + label: Usage + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_usage_limit + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion_coupon + entity_field: usage_limit + plugin_id: field + usage_limit_customer: + id: usage_limit_customer + table: commerce_promotion_coupon + field: usage_limit_customer + relationship: none + group_type: group + admin_label: '' + label: 'Per-customer limit' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_usage_limit + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion_coupon + entity_field: usage_limit_customer + plugin_id: field + operations: + id: operations + table: commerce_promotion_coupon + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + entity_type: commerce_promotion_coupon + plugin_id: entity_operations + filters: + code: + id: code + table: commerce_promotion_coupon + field: code + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: code_op + label: Code + description: '' + use_operator: false + operator: code_op + operator_limit_selection: false + operator_list: { } + identifier: code + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_promotion_coupon + entity_field: code + plugin_id: string + sorts: + id: + id: id + table: commerce_promotion_coupon + field: id + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: commerce_promotion_coupon + entity_field: id + plugin_id: standard + title: Coupons + header: { } + footer: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: + value: 'There are no coupons yet.' + format: basic_html + plugin_id: text + relationships: { } + arguments: + promotion_id: + id: promotion_id + table: commerce_promotion_coupon + field: promotion_id + relationship: none + group_type: group + admin_label: '' + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: raw + default_argument_options: + index: 1 + use_alias: false + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: commerce_promotion_coupon + entity_field: promotion_id + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: promotion/%/coupons + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } diff --git a/config/sync/views.view.commerce_promotions.yml b/config/sync/views.view.commerce_promotions.yml new file mode 100644 index 0000000..3d8c961 --- /dev/null +++ b/config/sync/views.view.commerce_promotions.yml @@ -0,0 +1,887 @@ +uuid: 90029d0e-7a69-4aad-83c6-6e354a90f269 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_promotion + - commerce_store + - options + - user +_core: + default_config_hash: 0hbJtmePDqfXrQxv4m9mySTe_U2u9ek1en8vCgy3Jrc +id: commerce_promotions +label: Promotions +module: views +description: '' +tag: '' +base_table: commerce_promotion_field_data +base_field: promotion_id +display: + default: + display_plugin: default + id: default + display_title: Default + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_promotion overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + tags: + previous: ‹‹ + next: ›› + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + name: name + offer__target_plugin_id: offer__target_plugin_id + usage_limit: usage_limit + usage_limit_customer: usage_limit_customer + start_date: start_date + end_date: end_date + operations: operations + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + offer__target_plugin_id: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + usage_limit: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + usage_limit_customer: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + start_date: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + end_date: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: true + row: + type: fields + fields: + name: + id: name + table: commerce_promotion_field_data + field: name + relationship: none + group_type: group + admin_label: '' + label: Name + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: + entity_id: entity_id + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: name + plugin_id: field + offer__target_plugin_id: + id: offer__target_plugin_id + table: commerce_promotion_field_data + field: offer__target_plugin_id + relationship: none + group_type: group + admin_label: '' + label: 'Offer type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_plugin_id + type: commerce_plugin_item_default + settings: { } + group_column: entity_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion + entity_field: offer + plugin_id: field + usage_limit: + id: usage_limit + table: commerce_promotion_field_data + field: usage_limit + relationship: none + group_type: group + admin_label: '' + label: Usage + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_usage_limit + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion + entity_field: usage_limit + plugin_id: field + usage_limit_customer: + id: usage_limit_customer + table: commerce_promotion_field_data + field: usage_limit_customer + relationship: none + group_type: group + admin_label: '' + label: 'Per customer limit' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_usage_limit + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion + entity_field: usage_limit_customer + plugin_id: field + start_date: + id: start_date + table: commerce_promotion_field_data + field: start_date + relationship: none + group_type: group + admin_label: '' + label: 'Start date' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_store_datetime + settings: + date_format: medium + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion + entity_field: start_date + plugin_id: field + end_date: + id: end_date + table: commerce_promotion_field_data + field: end_date + relationship: none + group_type: group + admin_label: '' + label: 'End date' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_store_datetime + settings: + date_format: medium + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_promotion + entity_field: end_date + plugin_id: field + operations: + id: operations + table: commerce_promotion + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + entity_type: commerce_promotion + plugin_id: entity_operations + filters: + name: + id: name + table: commerce_promotion_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: starts + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + store_admin: '0' + api_consumer: '0' + customer_service: '0' + site_admin: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_promotion + entity_field: name + plugin_id: string + offer__target_plugin_id: + id: offer__target_plugin_id + table: commerce_promotion_field_data + field: offer__target_plugin_id + relationship: none + group_type: group + admin_label: '' + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: offer__target_plugin_id_op + label: 'Offer type' + description: '' + use_operator: false + operator: offer__target_plugin_id_op + operator_limit_selection: false + operator_list: { } + identifier: offer__target_plugin_id + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + entity_type: commerce_promotion + entity_field: offer + plugin_id: list_field + code: + id: code + table: commerce_promotion_coupon + field: code + relationship: coupons_target_id + group_type: group + admin_label: '' + operator: '=' + value: '' + group: 1 + exposed: true + expose: + operator_id: code_op + label: 'Coupon code' + description: '' + use_operator: false + operator: code_op + operator_limit_selection: false + operator_list: { } + identifier: code + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + store_admin: '0' + api_consumer: '0' + customer_service: '0' + site_admin: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_promotion_coupon + entity_field: code + plugin_id: string + status: + id: status + table: commerce_promotion_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: Status + description: '' + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + store_admin: '0' + api_consumer: '0' + customer_service: '0' + site_admin: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_promotion + entity_field: status + plugin_id: boolean + sorts: + status: + id: status + table: commerce_promotion_field_data + field: status + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: commerce_promotion + entity_field: status + plugin_id: standard + weight: + id: weight + table: commerce_promotion_field_data + field: weight + relationship: none + group_type: group + admin_label: '' + order: ASC + exposed: false + expose: + label: '' + entity_type: commerce_promotion + entity_field: weight + plugin_id: standard + promotion_id: + id: promotion_id + table: commerce_promotion_field_data + field: promotion_id + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: commerce_promotion + entity_field: promotion_id + plugin_id: standard + title: Promotions + header: { } + footer: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: + value: 'There are no promotions yet.' + format: basic_html + plugin_id: text + relationships: + coupons_target_id: + id: coupons_target_id + table: commerce_promotion__coupons + field: coupons_target_id + relationship: none + group_type: group + admin_label: Coupon + required: false + entity_type: commerce_promotion + entity_field: coupons + plugin_id: standard + arguments: { } + display_extenders: { } + use_ajax: false + group_by: true + filter_groups: + operator: AND + groups: + 1: AND + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + admin: + display_plugin: page + id: admin + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/promotions/list + menu: + type: 'default tab' + title: List + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: main + tab_options: + type: normal + title: List + description: '' + weight: 0 + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.commerce_stores.yml b/config/sync/views.view.commerce_stores.yml new file mode 100644 index 0000000..da143c9 --- /dev/null +++ b/config/sync/views.view.commerce_stores.yml @@ -0,0 +1,600 @@ +uuid: 617ad7f7-ac56-4360-894e-282b4d1b71e9 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_store + - user +_core: + default_config_hash: pjAffbvMFN38k-DPrfBUXiSttBPMx5Ljl-ua11kpzKc +id: commerce_stores +label: Stores +module: views +description: '' +tag: Commerce +base_table: commerce_store_field_data +base_field: store_id +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + title: Stores + fields: + commerce_store_bulk_form: + id: commerce_store_bulk_form + table: commerce_store + field: commerce_store_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + plugin_id: bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + is_default: + id: is_default + table: commerce_store_field_data + field: is_default + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + entity_field: is_default + plugin_id: field + label: Default + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_false: '' + format_custom_true: ' (Default)' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + name: + id: name + table: commerce_store_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: name + plugin_id: field + label: Name + exclude: false + alter: + alter_text: true + text: '{{ name__value }}{{ is_default }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: commerce_store_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + type: + id: type + table: commerce_store_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + entity_field: type + plugin_id: commerce_entity_bundle + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + operations: + id: operations + table: commerce_store + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'next ›' + previous: '‹ previous' + first: '« first' + last: 'last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access commerce_store overview' + cache: + type: none + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No stores available.' + tokenize: false + sorts: + is_default: + id: is_default + table: commerce_store_field_data + field: is_default + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + entity_field: is_default + plugin_id: standard + order: DESC + expose: + label: '' + field_identifier: '' + exposed: false + arguments: { } + filters: + type: + id: type + table: commerce_store_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: commerce_store + entity_field: type + plugin_id: commerce_entity_bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + name: name + changed: changed + type: type + operations: operations + default: '-1' + info: + name: + sortable: true + default_sort_order: asc + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + cacheable: false + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/config/stores + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + cacheable: false diff --git a/config/sync/views.view.commerce_user_orders.yml b/config/sync/views.view.commerce_user_orders.yml new file mode 100644 index 0000000..96fe47b --- /dev/null +++ b/config/sync/views.view.commerce_user_orders.yml @@ -0,0 +1,605 @@ +uuid: f268bfc3-ec1f-43f7-bbbd-a6e6dd364984 +langcode: en +status: true +dependencies: + module: + - commerce_order + - commerce_price + - options + - state_machine + - user +_core: + default_config_hash: onODpRJw_ndLaTHVDc9-K-9CJHMEWxjZ1_KzgD4T2Mw +id: commerce_user_orders +label: 'User orders' +module: views +description: 'Display a list of placed orders for a user.' +tag: Commerce +base_table: commerce_order +base_field: order_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'view own commerce_order' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 25 + offset: 0 + id: 0 + total_pages: null + tags: + previous: '‹ Previous' + next: 'Next ›' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + order_number: order_number + placed: placed + total_price__number: total_price__number + state: state + info: + order_number: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + placed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + total_price__number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: placed + empty_table: false + row: + type: fields + fields: + order_id: + id: order_id + table: commerce_order + field: order_id + relationship: none + group_type: group + admin_label: '' + label: ID + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_integer + settings: + thousand_separator: '' + prefix_suffix: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: order_id + plugin_id: field + order_number: + id: order_number + table: commerce_order + field: order_number + relationship: none + group_type: group + admin_label: '' + label: 'Order number' + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'user/{{ arguments.uid }}/orders/{{ order_id }}' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: order_number + plugin_id: field + placed: + id: placed + table: commerce_order + field: placed + relationship: none + group_type: group + admin_label: '' + label: Date + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: placed + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: Total + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: total_price + plugin_id: field + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: state + plugin_id: field + filters: + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + operator: 'not in' + value: + draft: draft + group: 1 + exposed: false + expose: + operator_id: '' + operator_limit_selection: false + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: state + plugin_id: state_machine_state + sorts: { } + title: Orders + header: { } + footer: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: + value: 'You have not placed any orders with us yet.' + format: basic_html + plugin_id: text + relationships: { } + arguments: + uid: + id: uid + table: commerce_order + field: uid + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: commerce_current_user + fail: 'not found' + validate_options: + admin_permission: 'view commerce_order' + break_phrase: false + not: false + entity_type: commerce_order + entity_field: uid + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } + order_page: + display_plugin: page + id: order_page + display_title: 'User orders' + position: 1 + display_options: + display_extenders: { } + path: user/%user/orders + menu: + type: tab + title: Orders + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: account + display_description: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } diff --git a/config/sync/views.view.content.yml b/config/sync/views.view.content.yml new file mode 100644 index 0000000..8d84928 --- /dev/null +++ b/config/sync/views.view.content.yml @@ -0,0 +1,626 @@ +uuid: d94b5163-a335-45a9-8162-1beddd6b94bb +langcode: en +status: true +dependencies: + module: + - node + - user +_core: + default_config_hash: 3ELwBpDb9lzqW5-daqjZYsC5lNcwbDS_i_-LKba12Lw +id: content +label: Content +module: node +description: 'Find and manage content.' +tag: default +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Content + fields: + node_bulk_form: + id: node_bulk_form + table: node + field: node_bulk_form + entity_type: node + plugin_id: node_bulk_form + label: '' + exclude: false + alter: + alter_text: false + element_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + title: + id: title + table: node_field_data + field: title + entity_type: node + entity_field: title + plugin_id: field + label: Title + exclude: false + alter: + alter_text: false + element_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: string + settings: + link_to_entity: true + type: + id: type + table: node_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: type + plugin_id: field + label: 'Content type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + name: + id: name + table: users_field_data + field: name + relationship: uid + entity_type: user + entity_field: name + plugin_id: field + label: Author + exclude: false + alter: + alter_text: false + element_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: user_name + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: field + label: Status + exclude: false + alter: + alter_text: false + element_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: boolean + settings: + format: custom + format_custom_false: Unpublished + format_custom_true: Published + changed: + id: changed + table: node_field_data + field: changed + entity_type: node + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + element_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + operations: + id: operations + table: node + field: operations + relationship: none + group_type: group + admin_label: '' + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + pager: + type: full + options: + items_per_page: 50 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content overview' + cache: + type: tag + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + plugin_id: text_custom + empty: true + content: 'No content available.' + sorts: { } + arguments: { } + filters: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + label: Title + description: '' + use_operator: false + operator: title_op + operator_limit_selection: false + operator_list: { } + identifier: title + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + type: + id: type + table: node_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: type + plugin_id: bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: 'Content type' + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status: + id: status + table: node_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: Status + description: '' + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: true + group_info: + label: 'Published status' + description: '' + identifier: status + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Published + operator: '=' + value: '1' + 2: + title: Unpublished + operator: '=' + value: '0' + langcode: + id: langcode + table: node_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + operator_limit_selection: false + operator_list: { } + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status_extra: + id: status_extra + table: node_field_data + field: status_extra + entity_type: node + plugin_id: node_status + operator: '=' + value: false + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + node_bulk_form: node_bulk_form + title: title + type: type + name: name + status: status + changed: changed + edit_node: edit_node + delete_node: delete_node + dropbutton: dropbutton + timestamp: title + default: changed + info: + node_bulk_form: + align: '' + separator: '' + empty_column: false + responsive: '' + title: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + name: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + edit_node: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + delete_node: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + dropbutton: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + timestamp: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: true + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + relationships: + uid: + id: uid + table: node_field_data + field: uid + admin_label: author + plugin_id: standard + required: true + show_admin_links: false + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - 'user.node_grants:view' + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + display_extenders: { } + path: admin/content/node + menu: + type: 'default tab' + title: Content + description: '' + weight: -10 + menu_name: admin + context: '' + tab_options: + type: normal + title: Content + description: 'Find and manage content' + weight: -10 + menu_name: admin + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/config/sync/views.view.content_recent.yml b/config/sync/views.view.content_recent.yml new file mode 100644 index 0000000..874a6fc --- /dev/null +++ b/config/sync/views.view.content_recent.yml @@ -0,0 +1,323 @@ +uuid: 92c68a81-9b99-48ad-9858-e23dd9757a8c +langcode: en +status: true +dependencies: + module: + - node + - user +_core: + default_config_hash: YqZN5rc7XDQcFcInc8wkzuaHJmC5YvirhTmDcrarT6M +id: content_recent +label: 'Recent content' +module: node +description: 'Recent content.' +tag: default +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: 'Recent content' + fields: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: string + settings: + link_to_entity: true + changed: + id: changed + table: node_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: changed + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp_ago + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: some + options: + offset: 0 + items_per_page: 10 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No content available.' + tokenize: false + sorts: + changed: + id: changed + table: node_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: changed + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: changed + exposed: false + granularity: second + arguments: { } + filters: + status_extra: + id: status_extra + table: node_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + entity_type: node + plugin_id: node_status + operator: '=' + value: false + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + langcode: + id: langcode + table: node_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language + operator: in + value: + '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + uid: + id: uid + table: node_field_data + field: uid + relationship: none + group_type: group + admin_label: author + entity_type: node + entity_field: uid + plugin_id: standard + required: true + use_more: false + use_more_always: false + use_more_text: More + link_display: '0' + link_url: '' + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user + - 'user.node_grants:view' + - user.permissions + tags: { } + block_1: + id: block_1 + display_title: Block + display_plugin: block + position: 1 + display_options: + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/config/sync/views.view.files.yml b/config/sync/views.view.files.yml new file mode 100644 index 0000000..c1c767c --- /dev/null +++ b/config/sync/views.view.files.yml @@ -0,0 +1,1198 @@ +uuid: 0fc84743-0c0a-430f-8c7a-838146fd4cd9 +langcode: en +status: true +dependencies: + module: + - file + - user +_core: + default_config_hash: EmxYEy0jK7wy0LbjQukSaI5A_3klI0Fnl1lFj8qBWCw +id: files +label: Files +module: file +description: 'Find and manage files.' +tag: default +base_table: file_managed +base_field: fid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Files + fields: + fid: + id: fid + table: file_managed + field: fid + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: fid + plugin_id: field + label: Fid + exclude: true + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + filename: + id: filename + table: file_managed + field: filename + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filename + plugin_id: field + label: Name + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: file_link + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + filemime: + id: filemime + table: file_managed + field: filemime + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filemime + plugin_id: field + label: 'MIME type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: file_filemime + filesize: + id: filesize + table: file_managed + field: filesize + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filesize + plugin_id: field + label: Size + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: file_size + status: + id: status + table: file_managed + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: status + plugin_id: field + label: Status + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: boolean + settings: + format: custom + format_custom_false: Temporary + format_custom_true: Permanent + created: + id: created + table: file_managed + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: created + plugin_id: field + label: 'Upload date' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + changed: + id: changed + table: file_managed + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: changed + plugin_id: field + label: 'Changed date' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + count: + id: count + table: file_usage + field: count + relationship: fid + group_type: sum + admin_label: '' + plugin_id: numeric + label: 'Used in' + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'admin/content/files/usage/{{ fid }}' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + set_precision: false + precision: 0 + decimal: . + separator: ',' + format_plural: true + format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz + prefix: '' + suffix: '' + operations: + id: operations + table: file_managed + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: file + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + pager: + type: mini + options: + offset: 0 + items_per_page: 50 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access files overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + plugin_id: text_custom + empty: true + content: 'No files available.' + sorts: { } + arguments: { } + filters: + filename: + id: filename + table: file_managed + field: filename + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filename + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: filemime_op + label: Filename + description: '' + use_operator: false + operator: filename_op + operator_limit_selection: false + operator_list: { } + identifier: filename + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filemime: + id: filemime + table: file_managed + field: filemime + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filemime + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: filemime_op + label: 'MIME type' + description: '' + use_operator: false + operator: filemime_op + operator_limit_selection: false + operator_list: { } + identifier: filemime + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status: + id: status + table: file_managed + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: status + plugin_id: file_status + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: status_op + label: Status + description: '' + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + fid: fid + filename: filename + filemime: filemime + filesize: filesize + status: status + created: created + changed: changed + count: count + default: changed + info: + fid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + filename: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + filemime: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + filesize: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + status: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + count: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + fid: + id: fid + table: file_managed + field: fid + relationship: none + group_type: group + admin_label: 'File usage' + required: true + group_by: true + show_admin_links: true + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: 'Files overview' + display_plugin: page + position: 1 + display_options: + defaults: + pager: true + relationships: false + relationships: + fid: + id: fid + table: file_managed + field: fid + relationship: none + group_type: group + admin_label: 'File usage' + required: false + display_description: '' + display_extenders: { } + path: admin/content/files + menu: + type: tab + title: Files + description: '' + weight: 0 + menu_name: admin + context: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_2: + id: page_2 + display_title: 'File usage' + display_plugin: page + position: 2 + display_options: + title: 'File usage' + fields: + entity_label: + id: entity_label + table: file_usage + field: entity_label + relationship: none + group_type: group + admin_label: '' + plugin_id: entity_label + label: Entity + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + link_to_entity: true + type: + id: type + table: file_usage + field: type + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: 'Entity type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + module: + id: module + table: file_usage + field: module + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: 'Registering module' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + count: + id: count + table: file_usage + field: count + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + label: 'Use count' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + set_precision: false + precision: 0 + decimal: . + separator: ',' + format_plural: false + format_plural_string: !!binary MQNAY291bnQ= + prefix: '' + suffix: '' + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + empty: { } + arguments: + fid: + id: fid + table: file_managed + field: fid + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: fid + plugin_id: file_fid + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: true + title: 'File usage information for {{ arguments.fid }}' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + filters: { } + filter_groups: + operator: AND + groups: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + entity_label: entity_label + type: type + module: module + count: count + default: entity_label + info: + entity_label: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + module: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + count: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + options: { } + defaults: + empty: false + title: false + pager: false + group_by: false + style: false + row: false + relationships: false + fields: false + arguments: false + filters: false + filter_groups: false + relationships: + fid: + id: fid + table: file_managed + field: fid + relationship: none + group_type: group + admin_label: 'File usage' + required: true + group_by: false + display_description: '' + display_extenders: { } + path: admin/content/files/usage/% + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.frontpage.yml b/config/sync/views.view.frontpage.yml new file mode 100644 index 0000000..f6bd381 --- /dev/null +++ b/config/sync/views.view.frontpage.yml @@ -0,0 +1,312 @@ +uuid: df4113f2-de90-4d2b-8810-3c43b94cf4fa +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.rss + - core.entity_view_mode.node.teaser + module: + - node + - user +_core: + default_config_hash: 6eeliKIydPjqyv5V__QqTfahvJMWkHjOVUUuUIdB1ik +id: frontpage +label: Frontpage +module: node +description: 'All content promoted to the front page.' +tag: default +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: '' + fields: { } + pager: + type: full + options: + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + label: '' + empty: true + content: 'No front page content has been created yet.
                Follow the User Guide to start building your site.' + tokenize: false + node_listing_empty: + id: node_listing_empty + table: node + field: node_listing_empty + relationship: none + group_type: group + admin_label: '' + entity_type: node + plugin_id: node_listing_empty + label: '' + empty: true + title: + id: title + table: views + field: title + relationship: none + group_type: group + admin_label: '' + plugin_id: title + label: '' + empty: true + title: Welcome! + sorts: + sticky: + id: sticky + table: node_field_data + field: sticky + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: sticky + plugin_id: boolean + order: DESC + expose: + label: '' + field_identifier: sticky + exposed: false + created: + id: created + table: node_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } + filters: + promote: + id: promote + table: node_field_data + field: promote + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: promote + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + langcode: + id: langcode + table: node_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language + operator: in + value: + '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + uses_fields: false + row: + type: 'entity:node' + options: + view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } + feed_1: + id: feed_1 + display_title: Feed + display_plugin: feed + position: 2 + display_options: + pager: + type: some + options: + offset: 0 + items_per_page: 10 + style: + type: rss + options: + grouping: { } + uses_fields: false + description: '' + row: + type: node_rss + options: + relationship: none + view_mode: rss + display_extenders: { } + path: rss.xml + sitename_title: true + displays: + page_1: page_1 + default: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + display_extenders: { } + path: node + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/config/sync/views.view.glossary.yml b/config/sync/views.view.glossary.yml new file mode 100644 index 0000000..6f74a8c --- /dev/null +++ b/config/sync/views.view.glossary.yml @@ -0,0 +1,482 @@ +uuid: ff283a12-ca19-40e8-be6e-1ba2fbe88b45 +langcode: en +status: false +dependencies: + config: + - system.menu.main + module: + - node + - user +_core: + default_config_hash: 0mU55pEUCMGcMhBRpyMqjal173jNwZh0hrvImj4HVWU +id: glossary +label: Glossary +module: node +description: 'All content, by letter.' +tag: default +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + fields: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + name: + id: name + table: users_field_data + field: name + relationship: uid + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: Author + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: user_name + changed: + id: changed + table: node_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: changed + plugin_id: field + label: 'Last update' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp + settings: + date_format: long + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + pager: + type: mini + options: + offset: 0 + items_per_page: 36 + total_pages: 0 + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: { } + arguments: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + default_action: default + exception: + title_enable: true + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: a + default_argument_skip_url: false + summary_options: { } + summary: + format: default_summary + specify_validation: true + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: true + limit: 1 + case: upper + path_case: lower + transform_dash: false + break_phrase: false + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + langcode: + id: langcode + table: node_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language + operator: in + value: + '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + uses_fields: false + columns: + title: title + name: name + changed: changed + default: title + info: + title: + sortable: true + separator: '' + name: + sortable: true + separator: '' + changed: + sortable: true + separator: '' + override: true + sticky: false + summary: '' + order: asc + empty_table: false + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + uid: + id: uid + table: node_field_data + field: uid + relationship: none + group_type: group + admin_label: author + plugin_id: standard + required: false + use_ajax: true + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } + attachment_1: + id: attachment_1 + display_title: Attachment + display_plugin: attachment + position: 2 + display_options: + pager: + type: none + options: + offset: 0 + items_per_page: 0 + arguments: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + default_action: summary + exception: + title_enable: true + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: a + default_argument_skip_url: false + summary_options: + items_per_page: 25 + inline: true + separator: ' | ' + summary: + format: unformatted_summary + specify_validation: true + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: true + limit: 1 + case: upper + path_case: lower + transform_dash: false + break_phrase: false + query: + type: views_query + options: { } + defaults: + arguments: false + display_extenders: { } + displays: + default: default + page_1: page_1 + inherit_arguments: false + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + query: + type: views_query + options: { } + display_extenders: { } + path: glossary + menu: + type: normal + title: Glossary + weight: 0 + menu_name: main + parent: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/config/sync/views.view.media.yml b/config/sync/views.view.media.yml new file mode 100644 index 0000000..101c94d --- /dev/null +++ b/config/sync/views.view.media.yml @@ -0,0 +1,919 @@ +uuid: 90947f7b-780a-4e02-8d9b-28ddf04ac80c +langcode: en +status: true +dependencies: + config: + - image.style.thumbnail + module: + - image + - media + - user +_core: + default_config_hash: 27loqXfECE8tWznkMVYi7qOU8oCYFgn5MEysgZQQOV8 +id: media +label: Media +module: views +description: 'Find and manage media.' +tag: '' +base_table: media_field_data +base_field: mid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Media + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + thumbnail__target_id: + id: thumbnail__target_id + table: media_field_data + field: thumbnail__target_id + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: thumbnail + plugin_id: field + label: Thumbnail + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: image + settings: + image_link: '' + image_style: thumbnail + image_loading: + attribute: lazy + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: media + plugin_id: field + label: 'Media name' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: field + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + uid: + id: uid + table: media_field_data + field: uid + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: uid + plugin_id: field + label: Author + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: status + plugin_id: field + label: Status + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_false: Unpublished + format_custom_true: Published + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: media_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + operations: + id: operations + table: media + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No media available.' + tokenize: false + sorts: + created: + id: created + table: media_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } + filters: + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: 'Media name' + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: bundle_op + label: Type + description: '' + use_operator: false + operator: bundle_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'True' + description: null + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: true + group_info: + label: 'Published status' + description: '' + identifier: status + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Published + operator: '=' + value: '1' + 2: + title: Unpublished + operator: '=' + value: '0' + status_extra: + id: status_extra + table: media_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: media_status + operator: '=' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + langcode: + id: langcode + table: media_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: langcode + plugin_id: language + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + operator_limit_selection: false + operator_list: { } + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + name: name + bundle: bundle + changed: changed + uid: uid + status: status + thumbnail__target_id: thumbnail__target_id + default: changed + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + bundle: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + thumbnail__target_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } + media_page_list: + id: media_page_list + display_title: Media + display_plugin: page + position: 1 + display_options: + display_description: '' + display_extenders: { } + path: admin/content/media + menu: + type: tab + title: Media + description: '' + weight: 0 + expanded: false + menu_name: main + parent: '' + context: '0' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } diff --git a/config/sync/views.view.media_library.yml b/config/sync/views.view.media_library.yml new file mode 100644 index 0000000..5e8b23a --- /dev/null +++ b/config/sync/views.view.media_library.yml @@ -0,0 +1,1403 @@ +uuid: 2a278dc2-d829-4cb8-b27c-4ed294292c40 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - image.style.media_library + module: + - image + - media + - media_library + - user + enforced: + module: + - media_library +_core: + default_config_hash: 0WeWvFAfYGQRUX2FROBExMK5TQDkcqPpPnUZdT4Hy7k +id: media_library +label: 'Media library' +module: views +description: 'Find and manage media.' +tag: '' +base_table: media_field_data +base_field: mid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Media + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: rendered_entity + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + pager: + type: mini + options: + offset: 0 + items_per_page: 24 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '6, 12, 24, 48' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: 'Apply filters' + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No media available.' + tokenize: false + sorts: + created: + id: created + table: media_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: created + plugin_id: date + order: DESC + expose: + label: 'Newest first' + field_identifier: created + exposed: true + granularity: second + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: standard + order: ASC + expose: + label: 'Name (A-Z)' + field_identifier: name + exposed: true + name_1: + id: name_1 + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: standard + order: DESC + expose: + label: 'Name (Z-A)' + field_identifier: name_1 + exposed: true + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'Publishing status' + description: null + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: true + group_info: + label: Published + description: '' + identifier: status + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Published + operator: '=' + value: '1' + 2: + title: Unpublished + operator: '=' + value: '0' + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: bundle_op + label: 'Media type' + description: '' + use_operator: false + operator: bundle_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: 'Media type' + description: null + identifier: bundle + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: { } + 2: { } + 3: { } + status_extra: + id: status_extra + table: media_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: media_status + operator: '=' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + langcode: + id: langcode + table: media_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: langcode + plugin_id: language + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + operator_limit_selection: false + operator_list: { } + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + css_class: '' + use_ajax: true + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user + - user.permissions + tags: { } + page: + id: page + display_title: Page + display_plugin: page + position: 1 + display_options: + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: bulk_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + edit_media: + id: edit_media + table: media + field: edit_media + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: entity_link_edit + label: '' + exclude: false + alter: + alter_text: true + text: 'Edit {{ name }}' + make_link: true + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: 'Edit {{ name }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: Edit + output_url_as_text: false + absolute: false + delete_media: + id: delete_media + table: media + field: delete_media + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: entity_link_delete + label: '' + exclude: false + alter: + alter_text: true + text: 'Delete {{ name }}' + make_link: true + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: 'Delete {{ name }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: Delete + output_url_as_text: false + absolute: false + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: rendered_entity + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + defaults: + fields: false + display_extenders: { } + path: admin/content/media-grid + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user + - user.permissions + tags: { } + widget: + id: widget + display_title: Widget + display_plugin: page + position: 2 + display_options: + fields: + media_library_select_form: + id: media_library_select_form + table: media + field: media_library_select_form + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: media_library_select_form + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + entity_type: media + plugin_id: rendered_entity + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + access: + type: perm + options: + perm: 'view media' + arguments: + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: string + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 24 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: default_langcode + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + access: false + css_class: false + fields: false + arguments: false + filters: false + filter_groups: false + header: false + css_class: '' + display_description: '' + header: + display_link_grid: + id: display_link_grid + table: views + field: display_link + plugin_id: display_link + label: Grid + empty: true + display_id: widget + display_link_table: + id: display_link_table + table: views + field: display_link + plugin_id: display_link + label: Table + empty: true + display_id: widget_table + rendering_language: '***LANGUAGE_language_interface***' + display_extenders: { } + path: admin/content/media-widget + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user.permissions + tags: { } + widget_table: + id: widget_table + display_title: 'Widget (table)' + display_plugin: page + position: 3 + display_options: + fields: + media_library_select_form: + id: media_library_select_form + table: media + field: media_library_select_form + relationship: none + entity_type: media + plugin_id: media_library_select_form + label: '' + element_class: '' + element_wrapper_class: '' + thumbnail__target_id: + id: thumbnail__target_id + table: media_field_data + field: thumbnail__target_id + relationship: none + entity_type: media + entity_field: thumbnail + plugin_id: field + label: Thumbnail + type: image + settings: + image_link: '' + image_style: media_library + image_loading: + attribute: eager + name: + id: name + table: media_field_data + field: name + relationship: none + entity_type: media + entity_field: name + plugin_id: field + label: Name + type: string + settings: + link_to_entity: false + uid: + id: uid + table: media_field_revision + field: uid + relationship: none + entity_type: media + entity_field: uid + plugin_id: field + label: Author + type: entity_reference_label + settings: + link: true + changed: + id: changed + table: media_field_data + field: changed + relationship: none + entity_type: media + entity_field: changed + plugin_id: field + label: Updated + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + tooltip: + date_format: long + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + access: + type: perm + options: + perm: 'view media' + arguments: + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: string + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 24 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: default_langcode + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select' + default_row_class: true + row: + type: fields + defaults: + access: false + css_class: false + style: false + row: false + fields: false + arguments: false + filters: false + filter_groups: false + header: false + css_class: '' + header: + display_link_grid: + id: display_link_grid + table: views + field: display_link + plugin_id: display_link + label: Grid + empty: true + display_id: widget + display_link_table: + id: display_link_table + table: views + field: display_link + plugin_id: display_link + label: Table + empty: true + display_id: widget_table + rendering_language: '***LANGUAGE_language_interface***' + display_extenders: { } + path: admin/content/media-widget-table + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user.permissions + tags: { } diff --git a/config/sync/views.view.order_shipments.yml b/config/sync/views.view.order_shipments.yml new file mode 100644 index 0000000..ece7c89 --- /dev/null +++ b/config/sync/views.view.order_shipments.yml @@ -0,0 +1,582 @@ +uuid: 10dba047-3a28-42ef-8f36-b2648862cee1 +langcode: en +status: true +dependencies: + module: + - commerce_price + - commerce_shipping + - state_machine +_core: + default_config_hash: agfUTAGtXxAQfj7iZrzQKD2iAPa3jD268U1VH-ey65M +id: order_shipments +label: 'Order shipments' +module: views +description: '' +tag: '' +base_table: commerce_shipment +base_field: shipment_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: some + options: + items_per_page: 10 + offset: 0 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + title: title + amount__number: amount__number + tracking_code: tracking_code + state: state + operations: operations + info: + title: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + amount__number: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + tracking_code: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: true + row: + type: fields + fields: + title: + id: title + table: commerce_shipment + field: title + relationship: none + group_type: group + admin_label: '' + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: title + plugin_id: field + shipping_method: + id: shipping_method + table: commerce_shipment + field: shipping_method + relationship: none + group_type: group + admin_label: '' + label: 'Shipping method' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_shipment + entity_field: shipping_method + plugin_id: field + amount__number: + id: amount__number + table: commerce_shipment + field: amount__number + relationship: none + group_type: group + admin_label: '' + label: Amount + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + currency_display: symbol + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_shipment + entity_field: amount + plugin_id: field + tracking_code: + id: tracking_code + table: commerce_shipment + field: tracking_code + relationship: none + group_type: group + admin_label: '' + label: 'Tracking link' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: commerce_tracking_link + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_shipment + entity_field: tracking_code + plugin_id: field + state: + id: state + table: commerce_shipment + field: state + relationship: none + group_type: group + admin_label: '' + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: state_transition_form + settings: + require_confirmation: true + use_modal: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_shipment + entity_field: state + plugin_id: field + operations: + id: operations + table: commerce_shipment + field: operations + relationship: none + group_type: group + admin_label: '' + label: 'Operations links' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: commerce_shipment + plugin_id: entity_operations + filters: { } + sorts: + created: + id: created + table: commerce_shipment + field: created + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + granularity: second + entity_type: commerce_shipment + entity_field: created + plugin_id: date + title: 'Order shipments' + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'There are no shipments yet.' + plugin_id: text_custom + relationships: { } + arguments: + order_id: + id: order_id + table: commerce_shipment + field: order_id + relationship: none + group_type: group + admin_label: '' + default_action: empty + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: commerce_shipment + entity_field: order_id + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/orders/%/shipments + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } diff --git a/config/sync/views.view.product_catalog.yml b/config/sync/views.view.product_catalog.yml new file mode 100644 index 0000000..ec35607 --- /dev/null +++ b/config/sync/views.view.product_catalog.yml @@ -0,0 +1,370 @@ +uuid: 145b99ee-f33c-4e4d-80e9-2646b57e9604 +langcode: en +status: true +dependencies: + config: + - field.storage.commerce_product.body + - search_api.index.products + - system.menu.main + module: + - better_exposed_filters + - search_api + - text +_core: + default_config_hash: IWN60AkIjgdNnSZxOdHw4ra37skCWnOyX-zkZxF3zKs +id: product_catalog +label: 'Product catalog' +module: views +description: '' +tag: '' +base_table: search_api_index_products +base_field: search_api_id +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: Catalog + fields: + body: + id: body + table: search_api_index_products + field: body + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api_field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: text_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_rendering: true + fallback_handler: search_api + fallback_options: + link_to_item: false + use_highlighting: false + multi_type: separator + multi_separator: ', ' + pager: + type: full + options: + offset: 0 + items_per_page: 15 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: bef + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + text_input_required: 'Select any filter and click on Apply to see results' + text_input_required_format: basic_html + bef: + general: + autosubmit: false + autosubmit_exclude_textfield: false + autosubmit_textfield_delay: 500 + autosubmit_hide: false + input_required: false + allow_secondary: false + secondary_label: 'Advanced options' + secondary_open: false + sort: + plugin_id: default + advanced: + combine: true + combine_rewrite: "Relevance Asc|\r\nRelevance Desc|Relevance\r\nTitle Asc|A -> Z\r\nTitle Desc|Z -> A\r\nCreated Desc|Newest first\r\nCreated Asc|Oldest first\r\nPrice Asc|Price: Low to High\r\nPrice Desc|Price: High to Low" + reset: false + reset_label: '' + collapsible: false + collapsible_label: 'Sort options' + is_secondary: false + filter: + search_api_fulltext: + plugin_id: default + advanced: + placeholder_text: '' + rewrite: + filter_rewrite_values: '' + collapsible: false + is_secondary: false + access: + type: none + options: { } + cache: + type: search_api_tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No products match this search criteria.' + tokenize: false + sorts: + search_api_relevance: + id: search_api_relevance + table: search_api_index_products + field: search_api_relevance + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: DESC + expose: + label: Relevance + field_identifier: relevance + exposed: true + title: + id: title + table: search_api_index_products + field: title + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: ASC + expose: + label: Title + field_identifier: title + exposed: true + created: + id: created + table: search_api_index_products + field: created + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: DESC + expose: + label: Created + field_identifier: created + exposed: true + price: + id: price + table: search_api_index_products + field: price + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: ASC + expose: + label: Price + field_identifier: price + exposed: true + title_1: + id: title_1 + table: search_api_index_products + field: title + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: ASC + expose: + label: '' + field_identifier: '' + exposed: false + arguments: { } + filters: + search_api_fulltext: + id: search_api_fulltext + table: search_api_index_products + field: search_api_fulltext + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api_fulltext + operator: or + value: '' + group: 1 + exposed: true + expose: + operator_id: search_api_fulltext_op + label: '' + description: '' + use_operator: false + operator: search_api_fulltext_op + operator_limit_selection: false + operator_list: { } + identifier: keyword_search + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + expose_fields: false + placeholder: 'Keyword search' + searched_fields_id: search_api_fulltext_searched_fields + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + parse_mode: terms + min_length: 3 + fields: { } + style: + type: default + options: + row_class: 'col-lg-4 col-md-6' + default_row_class: true + uses_fields: false + row: + type: search_api + options: + view_modes: + 'entity:commerce_product': + default: teaser + media: teaser + physical: teaser + query: + type: search_api_query + options: + bypass_access: false + skip_access: false + preserve_facet_query_args: false + relationships: { } + use_ajax: true + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - 'url.query_args:sort_order' + tags: + - 'config:field.storage.commerce_product.body' + - 'config:search_api.index.products' + - 'search_api_list:products' + catalog_page: + id: catalog_page + display_title: 'Product Catalog Page' + display_plugin: page + position: 1 + display_options: + cache: + type: search_api_tag + options: { } + defaults: + cache: false + display_description: '' + display_extenders: { } + path: products + menu: + type: normal + title: Catalog + description: '' + weight: 0 + expanded: false + menu_name: main + parent: '' + context: '0' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - 'url.query_args:sort_order' + tags: + - 'config:facets.facet.product_collections' + - 'config:field.storage.commerce_product.body' + - 'config:search_api.index.products' + - 'search_api_list:products' diff --git a/config/sync/views.view.profiles.yml b/config/sync/views.view.profiles.yml new file mode 100644 index 0000000..0866af7 --- /dev/null +++ b/config/sync/views.view.profiles.yml @@ -0,0 +1,356 @@ +uuid: edc6eaec-d15a-475c-877b-5b02b80e5634 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: iDeLvK90ucO3Qc2NIH8ot0W1saUd7U_XThA3P1QvuMs +id: profiles +label: Profiles +module: views +description: '' +tag: '' +base_table: profile +base_field: profile_id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: none + options: + offset: 0 + style: + type: grid + options: + grouping: { } + columns: 4 + automatic_width: true + alignment: horizontal + col_class_default: true + col_class_custom: '' + row_class_default: true + row_class_custom: '' + row: + type: fields + options: + inline: { } + separator: '' + hide_empty: false + default_field_elements: true + fields: + rendered_entity: + id: rendered_entity + table: profile + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: default + entity_type: profile + plugin_id: rendered_entity + operations: + id: operations + table: profile + field: operations + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: profile + plugin_id: entity_operations + filters: { } + sorts: + is_default: + id: is_default + table: profile + field: is_default + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: profile + entity_field: is_default + plugin_id: standard + profile_id: + id: profile_id + table: profile + field: profile_id + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + entity_type: profile + entity_field: profile_id + plugin_id: standard + header: { } + footer: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: + value: 'There are no profiles yet.' + format: basic_html + plugin_id: text + relationships: { } + arguments: + uid: + id: uid + table: profile + field: uid + relationship: none + group_type: group + admin_label: '' + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: user + default_argument_options: + user: false + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: profile + entity_field: uid + plugin_id: numeric + type: + id: type + table: profile + field: type + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: 'entity:profile_type' + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: profile + entity_field: type + plugin_id: string + status: + id: status + table: profile + field: status + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: profile + entity_field: status + plugin_id: numeric + display_extenders: { } + title: Profiles + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + tags: { } + user_page: + display_plugin: embed + id: user_page + display_title: 'User page' + position: 1 + display_options: + display_extenders: { } + display_description: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + tags: { } diff --git a/config/sync/views.view.section_library.yml b/config/sync/views.view.section_library.yml new file mode 100644 index 0000000..005fcca --- /dev/null +++ b/config/sync/views.view.section_library.yml @@ -0,0 +1,845 @@ +uuid: d0ad1e71-bffa-4790-9693-83a311ef7af9 +langcode: en +status: true +dependencies: + module: + - file + - options + - section_library + - user +_core: + default_config_hash: A1APZ8VWwAaYnr7w2P5qkYVHV7vv_K8SSYdGSGSk7s4 +id: section_library +label: 'Layout Builder Library' +module: views +description: '' +tag: '' +base_table: section_library_template +base_field: id +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'view section library templates' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + tags: + previous: ‹‹ + next: ›› + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + row: + type: fields + fields: + id: + id: id + table: section_library_template + field: id + relationship: none + group_type: group + admin_label: '' + label: ID + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_integer + settings: + thousand_separator: '' + prefix_suffix: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: id + plugin_id: field + image__target_id: + id: image__target_id + table: section_library_template + field: image__target_id + relationship: none + group_type: group + admin_label: '' + label: Image + exclude: false + alter: + alter_text: true + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: file_url_plain + settings: { } + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: image + plugin_id: field + label: + table: section_library_template + field: label + id: label + entity_type: null + entity_field: label + plugin_id: field + relationship: none + group_type: group + admin_label: '' + label: Label + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + type: + id: type + table: section_library_template + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: type + plugin_id: field + entity_id: + id: entity_id + table: section_library_template + field: entity_id + relationship: none + group_type: group + admin_label: '' + label: 'Source content' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: entity_id + plugin_id: field + created: + id: created + table: section_library_template + field: created + relationship: none + group_type: group + admin_label: '' + label: Created + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: created + plugin_id: field + changed: + id: changed + table: section_library_template + field: changed + relationship: none + group_type: group + admin_label: '' + label: Changed + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: medium + custom_date_format: '' + timezone: '' + tooltip: + date_format: '' + custom_date_format: '' + time_diff: + enabled: false + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + refresh: 60 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: changed + plugin_id: field + user_id: + id: user_id + table: section_library_template + field: user_id + relationship: none + group_type: group + admin_label: '' + label: 'Authored by' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: section_library_template + entity_field: user_id + plugin_id: field + operations: + id: operations + table: section_library_template + field: operations + relationship: none + group_type: group + admin_label: '' + label: 'Operations links' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + entity_type: section_library_template + plugin_id: entity_operations + filters: + label: + id: label + table: section_library_template + field: label + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: label_op + label: Label + description: '' + use_operator: false + operator: label_op + operator_limit_selection: false + operator_list: { } + identifier: label + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + page_creator: '0' + layout_manager: '0' + page_reviewer: '0' + landing_page_creator: '0' + landing_page_reviewer: '0' + media_creator: '0' + media_manager: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: section_library_template + entity_field: label + plugin_id: string + type: + id: type + table: section_library_template + field: type + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '' + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: null + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: null + is_grouped: true + group_info: + label: Type + description: '' + identifier: type + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Section + operator: '=' + value: section + 2: + title: Template + operator: '=' + value: template + 3: + title: '' + operator: '=' + value: '' + entity_type: section_library_template + entity_field: type + plugin_id: string + sorts: + created: + id: created + table: section_library_template + field: created + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + granularity: second + entity_type: section_library_template + entity_field: created + plugin_id: date + title: 'Layout Builder Library' + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No templates are available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_section_library: + display_plugin: page + id: page_section_library + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/content/section-library + menu: + type: none + title: 'Section Library' + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: admin + tab_options: + type: normal + title: 'Section Library' + description: 'Find and manage section library templates' + weight: 0 + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.taxonomy_term.yml b/config/sync/views.view.taxonomy_term.yml new file mode 100644 index 0000000..cc57c65 --- /dev/null +++ b/config/sync/views.view.taxonomy_term.yml @@ -0,0 +1,319 @@ +uuid: 6bf1b818-cdc9-4dc7-98f3-d81c7c39bb0a +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + module: + - node + - taxonomy + - user +_core: + default_config_hash: YKgw0f77GEmCu6_6Om9Mbig0mON9JdfVuMxTtd0WQaI +id: taxonomy_term +label: 'Taxonomy term' +module: taxonomy +description: 'Content belonging to a certain taxonomy term.' +tag: default +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + fields: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: + sticky: + id: sticky + table: taxonomy_index + field: sticky + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + order: DESC + expose: + label: '' + field_identifier: sticky + exposed: false + created: + id: created + table: taxonomy_index + field: created + relationship: none + group_type: group + admin_label: '' + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: + tid: + id: tid + table: taxonomy_index + field: tid + relationship: none + group_type: group + admin_label: '' + plugin_id: taxonomy_index_tid + default_action: 'not found' + exception: + value: '' + title_enable: false + title: All + title_enable: true + title: '{{ arguments.tid }}' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: 'entity:taxonomy_term' + fail: 'not found' + validate_options: + bundles: { } + access: true + operation: view + multiple: 0 + break_phrase: false + add_table: false + require_value: false + reduce_duplicates: false + filters: + langcode: + id: langcode + table: node_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language + operator: in + value: + '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status: + id: status + table: taxonomy_index + field: status + relationship: none + group_type: group + admin_label: '' + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + uses_fields: false + row: + type: 'entity:node' + options: + view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + link_display: page_1 + link_url: '' + header: + entity_taxonomy_term: + id: entity_taxonomy_term + table: views + field: entity_taxonomy_term + relationship: none + group_type: group + admin_label: '' + plugin_id: entity + empty: true + target: '{{ raw_arguments.tid }}' + view_mode: full + tokenize: true + bypass_access: false + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } + feed_1: + id: feed_1 + display_title: Feed + display_plugin: feed + position: 2 + display_options: + pager: + type: some + options: + offset: 0 + items_per_page: 10 + style: + type: rss + options: + grouping: { } + uses_fields: false + description: '' + row: + type: node_rss + options: + relationship: none + view_mode: default + query: + type: views_query + options: { } + display_extenders: { } + path: taxonomy/term/%/feed + displays: + page_1: page_1 + default: '0' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - 'user.node_grants:view' + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + query: + type: views_query + options: { } + display_extenders: { } + path: taxonomy/term/% + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/config/sync/views.view.user_admin_people.yml b/config/sync/views.view.user_admin_people.yml new file mode 100644 index 0000000..e187c9f --- /dev/null +++ b/config/sync/views.view.user_admin_people.yml @@ -0,0 +1,927 @@ +uuid: 4637f5ed-e8cf-45b0-b8c7-0bc0240b24fc +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: njaZigMvB4ap21Fg_tQcJhWgYJCGNi49Z5rRL_N6RI0 +id: user_admin_people +label: People +module: user +description: 'Find and manage people interacting with your site.' +tag: default +base_table: users_field_data +base_field: uid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: People + fields: + user_bulk_form: + id: user_bulk_form + table: users + field: user_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: user + plugin_id: user_bulk_form + label: 'Bulk update' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + name: + id: name + table: users_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: Username + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: user_name + status: + id: status + table: users_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: status + plugin_id: field + label: Status + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: boolean + settings: + format: custom + format_custom_false: Blocked + format_custom_true: Active + roles_target_id: + id: roles_target_id + table: user__roles + field: roles_target_id + relationship: none + group_type: group + admin_label: '' + plugin_id: user_roles + label: Roles + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: ul + separator: ', ' + created: + id: created + table: users_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: created + plugin_id: field + label: 'Member for' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp_ago + settings: + future_format: '@interval' + past_format: '@interval' + granularity: 2 + access: + id: access + table: users_field_data + field: access + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: access + plugin_id: field + label: 'Last access' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: timestamp_ago + settings: + future_format: '@interval hence' + past_format: '@interval ago' + granularity: 2 + operations: + id: operations + table: users + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: user + plugin_id: entity_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + mail: + id: mail + table: users_field_data + field: mail + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: mail + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: basic_string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer users' + cache: + type: tag + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No people available.' + tokenize: false + sorts: + created: + id: created + table: users_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + filters: + combine: + id: combine + table: views + field: combine + relationship: none + group_type: group + admin_label: '' + plugin_id: combine + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: combine_op + label: 'Name or email contains' + description: '' + use_operator: false + operator: combine_op + operator_limit_selection: false + operator_list: { } + identifier: user + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + fields: + name: name + mail: mail + status: + id: status + table: users_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: true + group_info: + label: Status + description: '' + identifier: status + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Active + operator: '=' + value: '1' + 2: + title: Blocked + operator: '=' + value: '0' + roles_target_id: + id: roles_target_id + table: user__roles + field: roles_target_id + relationship: none + group_type: group + admin_label: '' + plugin_id: user_roles + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: roles_target_id_op + label: Role + description: '' + use_operator: false + operator: roles_target_id_op + operator_limit_selection: false + operator_list: { } + identifier: role + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + permission: + id: permission + table: user__roles + field: permission + relationship: none + group_type: group + admin_label: '' + plugin_id: user_permissions + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: permission_op + label: Permission + description: '' + use_operator: false + operator: permission_op + operator_limit_selection: false + operator_list: { } + identifier: permission + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + default_langcode: + id: default_langcode + table: users_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: default_langcode + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + uid_raw: + id: uid_raw + table: users_field_data + field: uid_raw + relationship: none + group_type: group + admin_label: '' + entity_type: user + plugin_id: numeric + operator: '!=' + value: + min: '' + max: '' + value: '0' + group: 1 + exposed: false + expose: + operator_id: '0' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + user_bulk_form: user_bulk_form + name: name + status: status + rid: rid + created: created + access: access + edit_node: edit_node + dropbutton: dropbutton + default: created + info: + user_bulk_form: + align: '' + separator: '' + empty_column: false + responsive: '' + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + rid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + access: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + edit_node: + align: '' + separator: '' + empty_column: false + responsive: priority-low + dropbutton: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + css_class: '' + use_ajax: false + group_by: false + show_admin_links: true + use_more: false + use_more_always: false + use_more_text: more + link_display: page_1 + link_url: '' + display_comment: '' + hide_attachment_summary: false + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page_1: + id: page_1 + display_title: Page + display_plugin: page + position: 1 + display_options: + defaults: + show_admin_links: false + show_admin_links: false + display_extenders: { } + path: admin/people/list + menu: + type: 'default tab' + title: List + description: 'Find and manage people interacting with your site.' + weight: -10 + menu_name: admin + context: '' + tab_options: + type: normal + title: People + description: 'Manage user accounts, roles, and permissions.' + weight: 0 + menu_name: admin + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.watchdog.yml b/config/sync/views.view.watchdog.yml new file mode 100644 index 0000000..9d7d526 --- /dev/null +++ b/config/sync/views.view.watchdog.yml @@ -0,0 +1,712 @@ +uuid: b4aea5dc-1d7f-4154-8a67-b2cf63d4dd77 +langcode: en +status: true +dependencies: + module: + - dblog + - user +_core: + default_config_hash: j0txIxY4nkJT_dscmXckM-1vanygDkJAeHPawZKfyH0 +id: watchdog +label: Watchdog +module: views +description: 'Recent log messages' +tag: '' +base_table: watchdog +base_field: wid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: 'Recent log messages' + fields: + nothing: + id: nothing + table: views + field: nothing + relationship: none + group_type: group + admin_label: Icon + plugin_id: custom + label: '' + exclude: false + alter: + alter_text: true + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: icon + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: false + wid: + id: wid + table: watchdog + field: wid + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: WID + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + severity: + id: severity + table: watchdog + field: severity + relationship: none + group_type: group + admin_label: '' + plugin_id: machine_name + label: Severity + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + machine_name: false + type: + id: type + table: watchdog + field: type + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + timestamp: + id: timestamp + table: watchdog + field: timestamp + relationship: none + group_type: group + admin_label: '' + plugin_id: date + label: Date + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + date_format: short + custom_date_format: '' + timezone: '' + message: + id: message + table: watchdog + field: message + relationship: none + group_type: group + admin_label: '' + plugin_id: dblog_message + label: Message + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'admin/reports/dblog/event/{{ wid }}' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '{{ message }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 56 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: true + trim: true + preserve_tags: '' + html: true + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + replace_variables: true + name: + id: name + table: users_field_data + field: name + relationship: uid + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: User + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: user_name + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + link: + id: link + table: watchdog + field: link + relationship: none + group_type: group + admin_label: '' + plugin_id: dblog_operations + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + pager: + type: mini + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access site reports' + cache: + type: none + options: { } + empty: + area: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: 'No log messages available.' + plugin_id: text_custom + empty: true + content: 'No log messages available.' + tokenize: false + sorts: + wid: + id: wid + table: watchdog + field: wid + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + order: DESC + expose: + label: '' + field_identifier: wid + exposed: false + arguments: { } + filters: + type: + id: type + table: watchdog + field: type + relationship: none + group_type: group + admin_label: '' + plugin_id: dblog_types + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + severity: + id: severity + table: watchdog + field: severity + relationship: none + group_type: group + admin_label: '' + plugin_id: in_operator + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: severity_op + label: Severity + description: '' + use_operator: false + operator: severity_op + operator_limit_selection: false + operator_list: { } + identifier: severity + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '{{ type }} {{ severity }}' + default_row_class: true + columns: + nothing: nothing + wid: wid + severity: severity + type: type + timestamp: timestamp + message: message + name: name + link: link + default: wid + info: + nothing: + align: '' + separator: '' + empty_column: false + responsive: priority-medium + wid: + sortable: false + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + severity: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + timestamp: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + message: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + link: + align: '' + separator: '' + empty_column: false + responsive: priority-low + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + uid: + id: uid + table: watchdog + field: uid + relationship: none + group_type: group + admin_label: User + plugin_id: standard + required: false + css_class: admin-dblog + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } + page: + id: page + display_title: Page + display_plugin: page + position: 1 + display_options: + display_extenders: { } + path: admin/reports/dblog + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + tags: { } diff --git a/config/sync/views.view.who_s_new.yml b/config/sync/views.view.who_s_new.yml new file mode 100644 index 0000000..8582751 --- /dev/null +++ b/config/sync/views.view.who_s_new.yml @@ -0,0 +1,197 @@ +uuid: 94d6cfa0-e579-4523-af4a-6f5cd5347cf1 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: zji0_13MyVGK7Bn1lUMDeZyyOIZedWvqpYUeM_SioPI +id: who_s_new +label: "Who's new" +module: user +description: 'Shows a list of the newest user accounts on the site.' +tag: default +base_table: users_field_data +base_field: uid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: "Who's new" + fields: + name: + id: name + table: users_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: user_name + pager: + type: some + options: + offset: 0 + items_per_page: 5 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: + created: + id: created + table: users_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } + filters: + status: + id: status + table: users_field_data + field: status + entity_type: user + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '0' + operator_limit_selection: false + operator_list: { } + access: + id: access + table: users_field_data + field: access + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: access + plugin_id: date + operator: '>' + value: + min: '' + max: '' + value: '1970-01-01' + type: date + group: 1 + exposed: false + expose: + operator_id: '0' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: html_list + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user.permissions + tags: { } + block_1: + id: block_1 + display_title: "Who's new" + display_plugin: block + position: 1 + display_options: + display_description: 'A list of new users' + display_extenders: { } + block_description: "Who's new" + block_category: User + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user.permissions + tags: { } diff --git a/config/sync/views.view.who_s_online.yml b/config/sync/views.view.who_s_online.yml new file mode 100644 index 0000000..f14296e --- /dev/null +++ b/config/sync/views.view.who_s_online.yml @@ -0,0 +1,226 @@ +uuid: a80f5d5e-c6fa-4e2f-b2d2-314ace081eb6 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: suDsVMgawXoQt4rfmdfpr05EVX3z3KyfDDTYgeSM898 +id: who_s_online +label: "Who's online block" +module: user +description: 'Shows the user names of the most recently active users, and the total number of active users.' +tag: default +base_table: users_field_data +base_field: uid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: "Who's online" + fields: + name: + id: name + table: users_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + type: user_name + pager: + type: some + options: + offset: 0 + items_per_page: 10 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access user profiles' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'There are currently 0 users online.' + tokenize: false + sorts: + access: + id: access + table: users_field_data + field: access + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: access + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: access + exposed: false + granularity: second + arguments: { } + filters: + status: + id: status + table: users_field_data + field: status + entity_type: user + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '0' + operator_limit_selection: false + operator_list: { } + access: + id: access + table: users_field_data + field: access + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: access + plugin_id: date + operator: '>=' + value: + min: '' + max: '' + value: '-15 minutes' + type: offset + group: 1 + exposed: false + expose: + operator_id: access_op + label: 'Last access' + description: 'A user is considered online for this long after they have last viewed a page.' + use_operator: false + operator: access_op + operator_limit_selection: false + operator_list: { } + identifier: access + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: + result: + id: result + table: views + field: result + relationship: none + group_type: group + admin_label: '' + plugin_id: result + empty: false + content: 'There are currently @total users online.' + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user.permissions + tags: { } + who_s_online_block: + id: who_s_online_block + display_title: "Who's online" + display_plugin: block + position: 1 + display_options: + display_description: 'A list of users that are currently logged in.' + display_extenders: { } + block_description: "Who's online" + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - user.permissions + tags: { } From a37c43de1d9097824056195fa7cf374a04a3ca81 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 19 Mar 2024 20:04:24 +0000 Subject: [PATCH 20/27] Add notes --- notes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 notes diff --git a/notes b/notes new file mode 100644 index 0000000..28861b1 --- /dev/null +++ b/notes @@ -0,0 +1,5 @@ +cp .env.example .env +docker compose up -d +./run install --db-url=mysql://app:app@database/app +./run drush pm:enable -y commerce_demo +Go to http://docker-example-drupal-commerce-kickstart.localhost From 74ffcc35106e629c1783929dbe022ea49c6eafd3 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 10 May 2024 23:55:20 +0200 Subject: [PATCH 21/27] Update build configuration files --- .gitignore | 5 +---- Dockerfile | 2 +- docker-compose.yaml | 8 +++++--- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 2f85b08..01d9ebb 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .editorconfig .env .gitattributes +.phpunit.result.cache vendor/ web/.csslintrc web/.eslintignore @@ -39,7 +40,3 @@ web/web.config .env docker-compose.override.yaml - -/bin/ -/libraries/ -/web/profiles/contrib/ diff --git a/Dockerfile b/Dockerfile index c83003d..d1a0562 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN apt-get update -yqq \ RUN docker-php-ext-configure gd --with-jpeg -RUN docker-php-ext-install bcmath gd pdo_mysql zip +RUN docker-php-ext-install bcmath gd opcache pdo_mysql zip COPY --chown=app:app phpunit.xml* ./ diff --git a/docker-compose.yaml b/docker-compose.yaml index fa1f56c..f6453f6 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -5,10 +5,12 @@ x-proxy: &default-proxy - default - web labels: + - "traefik.enable=true" - "traefik.docker.network=traefik_proxy" - "traefik.http.routers.${COMPOSE_PROJECT_NAME}.rule=Host( - `${COMPOSE_PROJECT_NAME}.localhost`, + `${COMPOSE_PROJECT_NAME}.docker.localhost`, )" + - "traefik.http.routers.${COMPOSE_PROJECT_NAME}.tls=true" x-app: &default-app volumes: @@ -24,7 +26,7 @@ x-app: &default-app cpus: "${DOCKER_MYSQL_CPUS:-0}" memory: "${DOCKER_MYSQL_MEMORY:-0}" labels: - - "traefik.enabled=false" + - "traefik.enable=false" tty: true services: @@ -63,7 +65,7 @@ services: env_file: - .env labels: - - "traefik.enabled=false" + - "traefik.enable=false" environment: MYSQL_RANDOM_ROOT_PASSWORD: true profiles: [database] From 48d7e9025da4f6bd311b3eab62f35813e0fb84c8 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 11 May 2024 00:00:39 +0200 Subject: [PATCH 22/27] Update build configuration files --- docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index f6453f6..dcbebe0 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -3,7 +3,7 @@ x-proxy: &default-proxy networks: - default - - web + - proxy labels: - "traefik.enable=true" - "traefik.docker.network=traefik_proxy" @@ -74,6 +74,6 @@ volumes: db-data: {} networks: - web: + proxy: external: true name: traefik_proxy From 9f59b49de01efc0f7bce0002ef2bbb4d14c655cc Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 27 Jun 2024 12:16:44 +0100 Subject: [PATCH 23/27] Update build configuration files --- .env.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.env.example b/.env.example index 01404f8..66de1a2 100644 --- a/.env.example +++ b/.env.example @@ -7,6 +7,8 @@ export COMPOSE_PROFILES=web,php,database export DOCKER_WEB_VOLUME=.:/app +export DRUSH_OPTIONS_URI="https://${COMPOSE_PROJECT_NAME}.docker.localhost" + export MYSQL_DATABASE=app export MYSQL_PASSWORD=app export MYSQL_USER=app From 6931747d92a9153947060768d5db7bd1e3150846 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 17 Jul 2024 20:17:27 +0100 Subject: [PATCH 24/27] Update build configuration files --- run | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run b/run index da6a3ee..ca8b05d 100755 --- a/run +++ b/run @@ -18,9 +18,9 @@ function ci:test { docker compose version - docker network create traefik_proxy + docker network create traefik_proxy || true - cp --no-clobber .env.example .env + cp --no-clobber .env.example .env || true docker compose build --progress plain @@ -70,7 +70,7 @@ function install { function lint:dockerfile { docker container run --rm -i \ - hadolint/hadolint hadolint --ignore DL3008 --ignore DL3059 -t style "${@}" - < Dockerfile + hadolint/hadolint hadolint --ignore DL3008 --ignore DL3022 --ignore DL3059 -t style "${@}" - < Dockerfile } From 0395b68d33afcf257515d5c769e60b358b2699bb Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 20 Jul 2024 13:57:08 +0100 Subject: [PATCH 25/27] Update build configuration files --- .env.example | 4 ++++ run | 13 +++++++++++++ 2 files changed, 17 insertions(+) diff --git a/.env.example b/.env.example index 66de1a2..a211cef 100644 --- a/.env.example +++ b/.env.example @@ -12,3 +12,7 @@ export DRUSH_OPTIONS_URI="https://${COMPOSE_PROJECT_NAME}.docker.localhost" export MYSQL_DATABASE=app export MYSQL_PASSWORD=app export MYSQL_USER=app + +export DB_NAME="$MYSQL_DATABASE" +export DB_PASSWORD="$MYSQL_PASSWORD" +export DB_USER="$MYSQL_USER" diff --git a/run b/run index ca8b05d..090690d 100755 --- a/run +++ b/run @@ -38,18 +38,29 @@ function cmd { } +# Execute any Composer command. function composer { _exec php composer "${@}" } +# Connect to the database. +function db { + [[ -f ".env" ]] && source .env + + docker compose exec database mysql -u"$DB_USER" -p"$DB_PASSWORD" "$DB_NAME" +} + +# Execute any Drush command. function drush { _exec php drush "${@}" } +# Disable Git hooks. function git-hooks:off { git config --unset core.hooksPath } +# Enable Git hooks. function git-hooks:on { git config core.hooksPath .githooks } @@ -68,12 +79,14 @@ function install { drush site:install -y "${@}" } +# Lint the Dockerfile. function lint:dockerfile { docker container run --rm -i \ hadolint/hadolint hadolint --ignore DL3008 --ignore DL3022 --ignore DL3059 -t style "${@}" - < Dockerfile } +# Start the project. function start { cp -v --no-clobber .env.example .env || true From 97b8977c170802b5ed61c6aea416c45975428369 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 31 Jul 2024 01:21:51 +0100 Subject: [PATCH 26/27] Update build configuration files --- run | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run b/run index 090690d..8ae65d7 100755 --- a/run +++ b/run @@ -121,7 +121,8 @@ function _run { } # Include any local tasks. -[[ -e run.local ]] && source run.local +# https://stackoverflow.com/a/6659698 +[[ -e "${BASH_SOURCE%/*}/run.local" ]] && source "${BASH_SOURCE%/*}/run.local" TIMEFORMAT=$'\nTask completed in %3lR' time "${@:-help}" From 051b6f7b36a9061521c9c0d2edf97675bf12b6e4 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 29 Sep 2025 22:16:28 +0100 Subject: [PATCH 27/27] Move all files to drupal-commerce-kickstart/ --- .dockerignore => drupal-commerce-kickstart/.dockerignore | 0 .env.example => drupal-commerce-kickstart/.env.example | 0 {.githooks => drupal-commerce-kickstart/.githooks}/pre-push | 0 .../.githooks}/prepare-commit-msg | 0 {.github => drupal-commerce-kickstart/.github}/workflows/ci.yml | 0 .gitignore => drupal-commerce-kickstart/.gitignore | 0 .hadolint.yaml => drupal-commerce-kickstart/.hadolint.yaml | 0 Dockerfile => drupal-commerce-kickstart/Dockerfile | 0 LICENSE => drupal-commerce-kickstart/LICENSE | 0 README.md => drupal-commerce-kickstart/README.md | 0 build.yaml => drupal-commerce-kickstart/build.yaml | 0 composer.json => drupal-commerce-kickstart/composer.json | 0 composer.lock => drupal-commerce-kickstart/composer.lock | 0 {config => drupal-commerce-kickstart/config}/splits/ddev/.gitkeep | 0 .../config}/splits/ddev/.htaccess | 0 .../config}/splits/ddev/symfony_mailer.settings.yml | 0 {config => drupal-commerce-kickstart/config}/sync/.gitkeep | 0 {config => drupal-commerce-kickstart/config}/sync/.htaccess | 0 .../config}/sync/admin_toolbar.settings.yml | 0 .../config}/sync/admin_toolbar_tools.settings.yml | 0 .../sync/advancedqueue.advancedqueue_queue.commerce_license.yml | 0 .../advancedqueue.advancedqueue_queue.commerce_license_notify.yml | 0 .../config}/sync/advancedqueue.advancedqueue_queue.default.yml | 0 .../config}/sync/automated_cron.settings.yml | 0 .../config}/sync/belgrade.settings.yml | 0 .../config}/sync/block.block.belgrade_account_menu.yml | 0 .../config}/sync/block.block.belgrade_branding.yml | 0 .../config}/sync/block.block.belgrade_breadcrumbs.yml | 0 .../config}/sync/block.block.belgrade_checkout_progress.yml | 0 .../config}/sync/block.block.belgrade_content.yml | 0 .../config}/sync/block.block.belgrade_footer.yml | 0 .../config}/sync/block.block.belgrade_help.yml | 0 .../config}/sync/block.block.belgrade_local_actions.yml | 0 .../config}/sync/block.block.belgrade_local_tasks.yml | 0 .../config}/sync/block.block.belgrade_main_menu.yml | 0 .../config}/sync/block.block.belgrade_main_menu_header.yml | 0 .../config}/sync/block.block.belgrade_messages.yml | 0 .../config}/sync/block.block.belgrade_page_title.yml | 0 .../config}/sync/block.block.belgrade_powered.yml | 0 .../config}/sync/block.block.belgrade_shopping_cart.yml | 0 .../config}/sync/block.block.belgrade_social.yml | 0 .../config}/sync/block.block.belgrade_social_navigation.yml | 0 .../config}/sync/block.block.centarro_claro_breadcrumbs.yml | 0 .../config}/sync/block.block.centarro_claro_content.yml | 0 .../config}/sync/block.block.centarro_claro_help.yml | 0 .../config}/sync/block.block.centarro_claro_local_actions.yml | 0 .../config}/sync/block.block.centarro_claro_messages.yml | 0 .../config}/sync/block.block.centarro_claro_page_title.yml | 0 .../sync/block.block.centarro_claro_primary_local_tasks.yml | 0 .../sync/block.block.centarro_claro_secondary_local_tasks.yml | 0 .../config}/sync/block.block.claro_breadcrumbs.yml | 0 .../config}/sync/block.block.claro_content.yml | 0 .../config}/sync/block.block.claro_help.yml | 0 .../config}/sync/block.block.claro_local_actions.yml | 0 .../config}/sync/block.block.claro_messages.yml | 0 .../config}/sync/block.block.claro_page_title.yml | 0 .../config}/sync/block.block.claro_primary_local_tasks.yml | 0 .../config}/sync/block.block.claro_secondary_local_tasks.yml | 0 .../config}/sync/block.block.productbrand.yml | 0 .../config}/sync/block.block.productcollections.yml | 0 .../config}/sync/block_content.type.basic.yml | 0 .../config}/sync/block_content.type.cklb_button.yml | 0 .../config}/sync/block_content.type.cklb_hero.yml | 0 .../config}/sync/block_content.type.cklb_image.yml | 0 .../config}/sync/block_content.type.cklb_products.yml | 0 .../config}/sync/block_content.type.cklb_text.yml | 0 .../config}/sync/block_content.type.cklb_title.yml | 0 .../config}/sync/bootstrap_basic_image_gallery.settings.yml | 0 .../config}/sync/bootstrap_layout_builder.breakpoint.desktop.yml | 0 .../config}/sync/bootstrap_layout_builder.breakpoint.mobile.yml | 0 .../config}/sync/bootstrap_layout_builder.breakpoint.tablet.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_1.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_10.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_11.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_12.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_2.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_3.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_4.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_5.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_6.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_7.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_8.yml | 0 .../config}/sync/bootstrap_layout_builder.layout.blb_col_9.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml | 0 ...ootstrap_layout_builder.layout_option.blb_col_2_full_width.yml | 0 ...p_layout_builder.layout_option.blb_col_2_two_equal_columns.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml | 0 ...ootstrap_layout_builder.layout_option.blb_col_3_full_width.yml | 0 ...layout_builder.layout_option.blb_col_3_three_equal_columns.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml | 0 .../bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml | 0 ..._layout_builder.layout_option.blb_col_4_four_equal_columns.yml | 0 ...ootstrap_layout_builder.layout_option.blb_col_4_full_width.yml | 0 ...bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml | 0 ...bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml | 0 ...bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml | 0 ...bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml | 0 ...bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml | 0 ...ootstrap_layout_builder.layout_option.blb_col_5_full_width.yml | 0 ...ootstrap_layout_builder.layout_option.blb_col_6_full_width.yml | 0 ...p_layout_builder.layout_option.blb_col_6_six_equal_columns.yml | 0 .../config}/sync/bootstrap_layout_builder.settings.yml | 0 .../config}/sync/bootstrap_layout_builder.styles.yml | 0 .../config}/sync/bootstrap_styles.settings.yml | 0 .../config}/sync/centarro_claro.settings.yml | 0 .../config}/sync/claro.settings.yml | 0 .../config}/sync/comment.settings.yml | 0 .../config}/sync/comment.type.comment.yml | 0 .../sync/commerce_checkout.commerce_checkout_flow.default.yml | 0 .../sync/commerce_checkout.commerce_checkout_flow.shipping.yml | 0 .../config}/sync/commerce_file.settings.yml | 0 ...merce_number_pattern.commerce_number_pattern.order_default.yml | 0 .../sync/commerce_order.commerce_order_item_type.default.yml | 0 ...rce_order.commerce_order_item_type.digital_license_product.yml | 0 .../commerce_order.commerce_order_item_type.physical_product.yml | 0 .../config}/sync/commerce_order.commerce_order_type.default.yml | 0 .../config}/sync/commerce_order.settings.yml | 0 ...merce_payment.commerce_payment_gateway.example_credit_card.yml | 0 .../config}/sync/commerce_price.commerce_currency.EUR.yml | 0 .../config}/sync/commerce_price.commerce_currency.GBP.yml | 0 .../config}/sync/commerce_price.commerce_currency.JPY.yml | 0 .../config}/sync/commerce_price.commerce_currency.USD.yml | 0 .../sync/commerce_product.commerce_product_type.default.yml | 0 .../config}/sync/commerce_product.commerce_product_type.media.yml | 0 .../sync/commerce_product.commerce_product_type.physical.yml | 0 .../commerce_product.commerce_product_variation_type.default.yml | 0 ...uct.commerce_product_variation_type.media_license_download.yml | 0 ...rce_product.commerce_product_variation_type.media_physical.yml | 0 .../commerce_product.commerce_product_variation_type.physical.yml | 0 .../sync/commerce_shipping.commerce_shipment_type.default.yml | 0 .../config}/sync/commerce_store.commerce_store_type.online.yml | 0 .../config}/sync/config_split.config_split.ddev.yml | 0 .../core.base_field_override.node.cklb_landing_page.promote.yml | 0 .../config}/sync/core.base_field_override.node.page.promote.yml | 0 .../config}/sync/core.date_format.fallback.yml | 0 .../config}/sync/core.date_format.html_date.yml | 0 .../config}/sync/core.date_format.html_datetime.yml | 0 .../config}/sync/core.date_format.html_month.yml | 0 .../config}/sync/core.date_format.html_time.yml | 0 .../config}/sync/core.date_format.html_week.yml | 0 .../config}/sync/core.date_format.html_year.yml | 0 .../config}/sync/core.date_format.html_yearless_date.yml | 0 .../config}/sync/core.date_format.long.yml | 0 .../config}/sync/core.date_format.medium.yml | 0 .../config}/sync/core.date_format.short.yml | 0 .../sync/core.entity_form_display.block_content.basic.default.yml | 0 ...core.entity_form_display.block_content.cklb_button.default.yml | 0 .../core.entity_form_display.block_content.cklb_hero.default.yml | 0 .../core.entity_form_display.block_content.cklb_image.default.yml | 0 ...re.entity_form_display.block_content.cklb_products.default.yml | 0 .../core.entity_form_display.block_content.cklb_text.default.yml | 0 .../core.entity_form_display.block_content.cklb_title.default.yml | 0 .../sync/core.entity_form_display.comment.comment.default.yml | 0 .../core.entity_form_display.commerce_order.default.default.yml | 0 ...ntity_form_display.commerce_order_item.default.add_to_cart.yml | 0 ...re.entity_form_display.commerce_order_item.default.default.yml | 0 ...ay.commerce_order_item.digital_license_product.add_to_cart.yml | 0 ...m_display.commerce_order_item.physical_product.add_to_cart.yml | 0 ..._form_display.commerce_order_item.physical_product.default.yml | 0 .../core.entity_form_display.commerce_product.default.default.yml | 0 .../core.entity_form_display.commerce_product.media.default.yml | 0 ...core.entity_form_display.commerce_product.physical.default.yml | 0 ...ty_form_display.commerce_product_variation.default.default.yml | 0 ....commerce_product_variation.media_license_download.default.yml | 0 ..._display.commerce_product_variation.media_physical.default.yml | 0 ...y_form_display.commerce_product_variation.physical.default.yml | 0 ...ore.entity_form_display.commerce_shipment.default.checkout.yml | 0 .../core.entity_form_display.commerce_store.online.default.yml | 0 .../config}/sync/core.entity_form_display.media.audio.default.yml | 0 .../sync/core.entity_form_display.media.audio.media_library.yml | 0 .../sync/core.entity_form_display.media.document.default.yml | 0 .../core.entity_form_display.media.document.media_library.yml | 0 .../config}/sync/core.entity_form_display.media.image.default.yml | 0 .../sync/core.entity_form_display.media.image.media_library.yml | 0 .../sync/core.entity_form_display.media.remote_video.default.yml | 0 .../core.entity_form_display.media.remote_video.media_library.yml | 0 .../config}/sync/core.entity_form_display.media.video.default.yml | 0 .../sync/core.entity_form_display.media.video.media_library.yml | 0 .../core.entity_form_display.node.cklb_landing_page.default.yml | 0 .../config}/sync/core.entity_form_display.node.page.default.yml | 0 .../sync/core.entity_form_display.profile.customer.default.yml | 0 .../config}/sync/core.entity_form_display.user.user.default.yml | 0 .../config}/sync/core.entity_form_display.user.user.register.yml | 0 .../core.entity_form_mode.commerce_order_item.add_to_cart.yml | 0 .../sync/core.entity_form_mode.commerce_shipment.checkout.yml | 0 .../config}/sync/core.entity_form_mode.media.media_library.yml | 0 .../config}/sync/core.entity_form_mode.profile.billing.yml | 0 .../config}/sync/core.entity_form_mode.profile.shipping.yml | 0 .../config}/sync/core.entity_form_mode.user.register.yml | 0 .../sync/core.entity_view_display.block_content.basic.default.yml | 0 ...core.entity_view_display.block_content.cklb_button.default.yml | 0 .../core.entity_view_display.block_content.cklb_hero.default.yml | 0 ...re.entity_view_display.block_content.cklb_image.cklb_large.yml | 0 ...re.entity_view_display.block_content.cklb_image.cklb_small.yml | 0 .../core.entity_view_display.block_content.cklb_image.default.yml | 0 ...re.entity_view_display.block_content.cklb_products.default.yml | 0 .../core.entity_view_display.block_content.cklb_text.default.yml | 0 .../core.entity_view_display.block_content.cklb_title.cklb_h1.yml | 0 .../core.entity_view_display.block_content.cklb_title.default.yml | 0 .../sync/core.entity_view_display.comment.comment.default.yml | 0 ...entity_view_display.commerce_license.commerce_file.default.yml | 0 .../core.entity_view_display.commerce_order.default.default.yml | 0 .../sync/core.entity_view_display.commerce_order.default.user.yml | 0 ...re.entity_view_display.commerce_order_item.default.default.yml | 0 .../core.entity_view_display.commerce_product.default.default.yml | 0 .../core.entity_view_display.commerce_product.default.teaser.yml | 0 .../core.entity_view_display.commerce_product.media.default.yml | 0 .../core.entity_view_display.commerce_product.media.teaser.yml | 0 ...core.entity_view_display.commerce_product.physical.default.yml | 0 .../core.entity_view_display.commerce_product.physical.teaser.yml | 0 ...ntity_view_display.commerce_product_variation.default.cart.yml | 0 ...ty_view_display.commerce_product_variation.default.default.yml | 0 ...ty_view_display.commerce_product_variation.default.summary.yml | 0 ...ity_view_display.commerce_product_variation.default.teaser.yml | 0 ...lay.commerce_product_variation.media_license_download.cart.yml | 0 ....commerce_product_variation.media_license_download.default.yml | 0 ....commerce_product_variation.media_license_download.summary.yml | 0 ...y.commerce_product_variation.media_license_download.teaser.yml | 0 ...iew_display.commerce_product_variation.media_physical.cart.yml | 0 ..._display.commerce_product_variation.media_physical.default.yml | 0 ..._display.commerce_product_variation.media_physical.summary.yml | 0 ...w_display.commerce_product_variation.media_physical.teaser.yml | 0 ...tity_view_display.commerce_product_variation.physical.cart.yml | 0 ...y_view_display.commerce_product_variation.physical.default.yml | 0 ...y_view_display.commerce_product_variation.physical.summary.yml | 0 ...ty_view_display.commerce_product_variation.physical.teaser.yml | 0 ...ore.entity_view_display.commerce_shipment.default.checkout.yml | 0 ...core.entity_view_display.commerce_shipment.default.default.yml | 0 .../core.entity_view_display.commerce_shipment.default.user.yml | 0 .../core.entity_view_display.commerce_store.online.default.yml | 0 .../config}/sync/core.entity_view_display.media.audio.default.yml | 0 .../sync/core.entity_view_display.media.audio.media_library.yml | 0 .../sync/core.entity_view_display.media.document.default.yml | 0 .../core.entity_view_display.media.document.media_library.yml | 0 .../config}/sync/core.entity_view_display.media.image.default.yml | 0 .../sync/core.entity_view_display.media.image.media_library.yml | 0 .../sync/core.entity_view_display.media.remote_video.default.yml | 0 .../core.entity_view_display.media.remote_video.media_library.yml | 0 .../config}/sync/core.entity_view_display.media.video.default.yml | 0 .../sync/core.entity_view_display.media.video.media_library.yml | 0 .../core.entity_view_display.node.cklb_landing_page.default.yml | 0 .../core.entity_view_display.node.cklb_landing_page.teaser.yml | 0 .../config}/sync/core.entity_view_display.node.page.default.yml | 0 .../config}/sync/core.entity_view_display.node.page.teaser.yml | 0 .../sync/core.entity_view_display.profile.customer.admin.yml | 0 .../sync/core.entity_view_display.profile.customer.default.yml | 0 .../config}/sync/core.entity_view_display.user.user.compact.yml | 0 .../config}/sync/core.entity_view_display.user.user.default.yml | 0 .../config}/sync/core.entity_view_mode.block.token.yml | 0 .../config}/sync/core.entity_view_mode.block_content.cklb_h1.yml | 0 .../sync/core.entity_view_mode.block_content.cklb_large.yml | 0 .../sync/core.entity_view_mode.block_content.cklb_small.yml | 0 .../config}/sync/core.entity_view_mode.block_content.full.yml | 0 .../config}/sync/core.entity_view_mode.block_content.token.yml | 0 .../config}/sync/core.entity_view_mode.comment.full.yml | 0 .../config}/sync/core.entity_view_mode.comment.token.yml | 0 .../config}/sync/core.entity_view_mode.commerce_order.user.yml | 0 .../sync/core.entity_view_mode.commerce_product.teaser.yml | 0 ...ity_view_mode.commerce_product_attribute_value.add_to_cart.yml | 0 .../core.entity_view_mode.commerce_product_variation.cart.yml | 0 .../core.entity_view_mode.commerce_product_variation.summary.yml | 0 .../core.entity_view_mode.commerce_product_variation.teaser.yml | 0 .../sync/core.entity_view_mode.commerce_shipment.checkout.yml | 0 .../config}/sync/core.entity_view_mode.commerce_shipment.user.yml | 0 .../config}/sync/core.entity_view_mode.config_split.token.yml | 0 .../config}/sync/core.entity_view_mode.file.token.yml | 0 .../config}/sync/core.entity_view_mode.media.full.yml | 0 .../config}/sync/core.entity_view_mode.media.media_library.yml | 0 .../sync/core.entity_view_mode.menu_link_content.token.yml | 0 .../config}/sync/core.entity_view_mode.node.full.yml | 0 .../config}/sync/core.entity_view_mode.node.rss.yml | 0 .../config}/sync/core.entity_view_mode.node.search_index.yml | 0 .../config}/sync/core.entity_view_mode.node.search_result.yml | 0 .../config}/sync/core.entity_view_mode.node.teaser.yml | 0 .../config}/sync/core.entity_view_mode.node.token.yml | 0 .../config}/sync/core.entity_view_mode.path_alias.token.yml | 0 .../config}/sync/core.entity_view_mode.profile.admin.yml | 0 .../config}/sync/core.entity_view_mode.shortcut.token.yml | 0 .../config}/sync/core.entity_view_mode.taxonomy_term.full.yml | 0 .../config}/sync/core.entity_view_mode.taxonomy_term.token.yml | 0 .../config}/sync/core.entity_view_mode.tour.token.yml | 0 .../config}/sync/core.entity_view_mode.user.compact.yml | 0 .../config}/sync/core.entity_view_mode.user.full.yml | 0 .../config}/sync/core.entity_view_mode.user.token.yml | 0 .../config}/sync/core.extension.yml | 0 .../config}/sync/core.menu.static_menu_link_overrides.yml | 0 .../config}/sync/dblog.settings.yml | 0 .../config}/sync/editor.editor.basic_html.yml | 0 .../config}/sync/editor.editor.full_html.yml | 0 .../config}/sync/facets.facet.product_brand.yml | 0 .../config}/sync/facets.facet.product_collections.yml | 0 ...urce.search_api__views_page__product_catalog__catalog_page.yml | 0 .../config}/sync/field.field.block_content.basic.body.yml | 0 .../sync/field.field.block_content.cklb_button.cklb_cta.yml | 0 .../config}/sync/field.field.block_content.cklb_hero.cklb_cta.yml | 0 .../sync/field.field.block_content.cklb_hero.cklb_subtitle.yml | 0 .../sync/field.field.block_content.cklb_hero.cklb_text.yml | 0 .../sync/field.field.block_content.cklb_hero.cklb_title.yml | 0 .../sync/field.field.block_content.cklb_image.cklb_image.yml | 0 .../field.field.block_content.cklb_products.cklb_products.yml | 0 .../sync/field.field.block_content.cklb_products.cklb_title.yml | 0 .../sync/field.field.block_content.cklb_text.cklb_text.yml | 0 .../sync/field.field.block_content.cklb_title.cklb_title.yml | 0 .../config}/sync/field.field.comment.comment.comment_body.yml | 0 .../config}/sync/field.field.commerce_order.default.shipments.yml | 0 ....field.commerce_order_item.digital_license_product.license.yml | 0 .../config}/sync/field.field.commerce_product.default.body.yml | 0 .../config}/sync/field.field.commerce_product.default.images.yml | 0 ...ield.field.commerce_product.default.layout_builder__layout.yml | 0 .../sync/field.field.commerce_product.default.product_brand.yml | 0 .../field.field.commerce_product.default.product_collections.yml | 0 .../sync/field.field.commerce_product.default.product_tags.yml | 0 .../config}/sync/field.field.commerce_product.media.body.yml | 0 .../config}/sync/field.field.commerce_product.media.images.yml | 0 .../field.field.commerce_product.media.layout_builder__layout.yml | 0 .../sync/field.field.commerce_product.media.product_brand.yml | 0 .../field.field.commerce_product.media.product_collections.yml | 0 .../sync/field.field.commerce_product.media.product_tags.yml | 0 .../config}/sync/field.field.commerce_product.physical.body.yml | 0 .../config}/sync/field.field.commerce_product.physical.images.yml | 0 ...eld.field.commerce_product.physical.layout_builder__layout.yml | 0 .../sync/field.field.commerce_product.physical.product_brand.yml | 0 .../field.field.commerce_product.physical.product_collections.yml | 0 .../sync/field.field.commerce_product.physical.product_tags.yml | 0 ...rce_product_variation.media_license_download.commerce_file.yml | 0 ...roduct_variation.media_license_download.license_expiration.yml | 0 ...erce_product_variation.media_license_download.license_type.yml | 0 ...eld.field.commerce_product_variation.media_physical.weight.yml | 0 .../field.field.commerce_product_variation.physical.weight.yml | 0 .../sync/field.field.media.audio.field_media_audio_file.yml | 0 .../sync/field.field.media.document.field_media_document.yml | 0 .../config}/sync/field.field.media.image.field_media_image.yml | 0 .../field.field.media.remote_video.field_media_oembed_video.yml | 0 .../sync/field.field.media.video.field_media_video_file.yml | 0 .../sync/field.field.node.cklb_landing_page.cklb_description.yml | 0 .../sync/field.field.node.cklb_landing_page.cklb_image.yml | 0 .../field.field.node.cklb_landing_page.layout_builder__layout.yml | 0 .../config}/sync/field.field.node.page.body.yml | 0 .../config}/sync/field.field.profile.customer.address.yml | 0 .../config}/sync/field.field.profile.customer.tax_number.yml | 0 .../config}/sync/field.field.user.user.commerce_remote_id.yml | 0 .../config}/sync/field.field.user.user.user_picture.yml | 0 .../config}/sync/field.settings.yml | 0 .../config}/sync/field.storage.block_content.body.yml | 0 .../config}/sync/field.storage.block_content.cklb_cta.yml | 0 .../config}/sync/field.storage.block_content.cklb_image.yml | 0 .../config}/sync/field.storage.block_content.cklb_products.yml | 0 .../config}/sync/field.storage.block_content.cklb_subtitle.yml | 0 .../config}/sync/field.storage.block_content.cklb_text.yml | 0 .../config}/sync/field.storage.block_content.cklb_title.yml | 0 .../config}/sync/field.storage.comment.comment_body.yml | 0 .../config}/sync/field.storage.commerce_order.shipments.yml | 0 .../config}/sync/field.storage.commerce_order_item.license.yml | 0 .../config}/sync/field.storage.commerce_product.body.yml | 0 .../config}/sync/field.storage.commerce_product.images.yml | 0 .../field.storage.commerce_product.layout_builder__layout.yml | 0 .../config}/sync/field.storage.commerce_product.product_brand.yml | 0 .../sync/field.storage.commerce_product.product_collections.yml | 0 .../config}/sync/field.storage.commerce_product.product_tags.yml | 0 .../field.storage.commerce_product_variation.commerce_file.yml | 0 ...ield.storage.commerce_product_variation.license_expiration.yml | 0 .../field.storage.commerce_product_variation.license_type.yml | 0 .../sync/field.storage.commerce_product_variation.weight.yml | 0 .../config}/sync/field.storage.media.field_media_audio_file.yml | 0 .../config}/sync/field.storage.media.field_media_document.yml | 0 .../config}/sync/field.storage.media.field_media_image.yml | 0 .../config}/sync/field.storage.media.field_media_oembed_video.yml | 0 .../config}/sync/field.storage.media.field_media_video_file.yml | 0 .../config}/sync/field.storage.node.body.yml | 0 .../config}/sync/field.storage.node.cklb_description.yml | 0 .../config}/sync/field.storage.node.cklb_image.yml | 0 .../config}/sync/field.storage.node.layout_builder__layout.yml | 0 .../config}/sync/field.storage.profile.address.yml | 0 .../config}/sync/field.storage.profile.tax_number.yml | 0 .../config}/sync/field.storage.user.commerce_remote_id.yml | 0 .../config}/sync/field.storage.user.user_picture.yml | 0 .../config}/sync/field_ui.settings.yml | 0 .../config}/sync/file.settings.yml | 0 .../config}/sync/filter.format.basic_html.yml | 0 .../config}/sync/filter.format.email_html.yml | 0 .../config}/sync/filter.format.full_html.yml | 0 .../config}/sync/filter.format.plain_text.yml | 0 .../config}/sync/filter.format.restricted_html.yml | 0 .../config}/sync/filter.settings.yml | 0 .../config}/sync/image.settings.yml | 0 .../config}/sync/image.style.cklb_container.yml | 0 .../config}/sync/image.style.cklb_full_width.yml | 0 .../config}/sync/image.style.cklb_medium_max_1144px.yml | 0 .../config}/sync/image.style.cklb_small_max_600px.yml | 0 .../config}/sync/image.style.large.yml | 0 .../config}/sync/image.style.media_library.yml | 0 .../config}/sync/image.style.medium.yml | 0 .../config}/sync/image.style.product_teaser.yml | 0 .../config}/sync/image.style.thumbnail.yml | 0 .../config}/sync/image.style.wide.yml | 0 .../config}/sync/layout_builder_blocks.styles.yml | 0 .../config}/sync/layout_builder_modal.settings.yml | 0 .../config}/sync/media.settings.yml | 0 .../config}/sync/media.type.audio.yml | 0 .../config}/sync/media.type.document.yml | 0 .../config}/sync/media.type.image.yml | 0 .../config}/sync/media.type.remote_video.yml | 0 .../config}/sync/media.type.video.yml | 0 .../config}/sync/media_library.settings.yml | 0 .../config}/sync/menu_ui.settings.yml | 0 .../config}/sync/node.settings.yml | 0 .../config}/sync/node.type.cklb_landing_page.yml | 0 .../config}/sync/node.type.page.yml | 0 .../config}/sync/pathauto.pattern.media_product.yml | 0 .../config}/sync/pathauto.pattern.physical_product.yml | 0 .../config}/sync/pathauto.settings.yml | 0 .../config}/sync/profile.type.customer.yml | 0 .../config}/sync/search_api.index.products.yml | 0 .../config}/sync/search_api.server.database.yml | 0 .../config}/sync/search_api.settings.yml | 0 .../config}/sync/search_api_db.settings.yml | 0 .../config}/sync/shortcut.set.default.yml | 0 .../config}/sync/symfony_mailer.mailer_policy._.yml | 0 .../sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml | 0 .../config}/sync/symfony_mailer.mailer_transport.ddev_smtp.yml | 0 .../config}/sync/symfony_mailer.mailer_transport.sendmail.yml | 0 .../config}/sync/symfony_mailer.settings.yml | 0 .../config}/sync/system.action.comment_delete_action.yml | 0 .../config}/sync/system.action.comment_publish_action.yml | 0 .../config}/sync/system.action.comment_save_action.yml | 0 .../config}/sync/system.action.comment_unpublish_action.yml | 0 .../config}/sync/system.action.commerce_license_delete_action.yml | 0 .../config}/sync/system.action.commerce_order_delete_action.yml | 0 .../config}/sync/system.action.commerce_product_delete_action.yml | 0 .../config}/sync/system.action.commerce_publish_product.yml | 0 .../config}/sync/system.action.commerce_store_delete_action.yml | 0 .../config}/sync/system.action.commerce_unpublish_product.yml | 0 .../config}/sync/system.action.media_delete_action.yml | 0 .../config}/sync/system.action.media_publish_action.yml | 0 .../config}/sync/system.action.media_save_action.yml | 0 .../config}/sync/system.action.media_unpublish_action.yml | 0 .../config}/sync/system.action.node_delete_action.yml | 0 .../config}/sync/system.action.node_make_sticky_action.yml | 0 .../config}/sync/system.action.node_make_unsticky_action.yml | 0 .../config}/sync/system.action.node_promote_action.yml | 0 .../config}/sync/system.action.node_publish_action.yml | 0 .../config}/sync/system.action.node_save_action.yml | 0 .../config}/sync/system.action.node_unpromote_action.yml | 0 .../config}/sync/system.action.node_unpublish_action.yml | 0 .../config}/sync/system.action.pathauto_update_alias_node.yml | 0 .../config}/sync/system.action.pathauto_update_alias_user.yml | 0 .../config}/sync/system.action.profile_delete_action.yml | 0 .../config}/sync/system.action.profile_publish_action.yml | 0 .../config}/sync/system.action.profile_unpublish_action.yml | 0 .../config}/sync/system.action.taxonomy_term_publish_action.yml | 0 .../config}/sync/system.action.taxonomy_term_unpublish_action.yml | 0 .../sync/system.action.user_add_role_action.administrator.yml | 0 .../config}/sync/system.action.user_block_user_action.yml | 0 .../config}/sync/system.action.user_cancel_user_action.yml | 0 .../sync/system.action.user_remove_role_action.administrator.yml | 0 .../config}/sync/system.action.user_unblock_user_action.yml | 0 .../config}/sync/system.advisories.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.cron.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.date.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.diff.yml | 0 .../config}/sync/system.feature_flags.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.file.yml | 0 .../config}/sync/system.image.gd.yml | 0 .../config}/sync/system.image.yml | 0 .../config}/sync/system.logging.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.mail.yml | 0 .../config}/sync/system.maintenance.yml | 0 .../config}/sync/system.menu.account.yml | 0 .../config}/sync/system.menu.admin.yml | 0 .../config}/sync/system.menu.footer.yml | 0 .../config}/sync/system.menu.main.yml | 0 .../config}/sync/system.menu.social.yml | 0 .../config}/sync/system.menu.tools.yml | 0 .../config}/sync/system.performance.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.rss.yml | 0 {config => drupal-commerce-kickstart/config}/sync/system.site.yml | 0 .../config}/sync/system.theme.global.yml | 0 .../config}/sync/system.theme.yml | 0 .../config}/sync/taxonomy.settings.yml | 0 .../config}/sync/taxonomy.vocabulary.product_brands.yml | 0 .../config}/sync/taxonomy.vocabulary.product_collections.yml | 0 .../config}/sync/taxonomy.vocabulary.product_tags.yml | 0 .../config}/sync/text.settings.yml | 0 .../config}/sync/tour.tour.block-layout.yml | 0 .../config}/sync/tour.tour.search-api-index-fields.yml | 0 .../config}/sync/tour.tour.search-api-index-form.yml | 0 .../config}/sync/tour.tour.search-api-index-processors.yml | 0 .../config}/sync/tour.tour.search-api-index.yml | 0 .../config}/sync/tour.tour.search-api-server-form.yml | 0 .../config}/sync/tour.tour.search-api-server.yml | 0 .../config}/sync/tour.tour.views-ui.yml | 0 .../config}/sync/update.settings.yml | 0 {config => drupal-commerce-kickstart/config}/sync/user.flood.yml | 0 {config => drupal-commerce-kickstart/config}/sync/user.mail.yml | 0 .../config}/sync/user.role.administrator.yml | 0 .../config}/sync/user.role.anonymous.yml | 0 .../config}/sync/user.role.authenticated.yml | 0 .../config}/sync/user.settings.yml | 0 .../config}/sync/views.settings.yml | 0 .../config}/sync/views.view.advancedqueue_jobs.yml | 0 .../config}/sync/views.view.archive.yml | 0 .../config}/sync/views.view.block_content.yml | 0 .../config}/sync/views.view.cklb_products_entity_reference.yml | 0 .../config}/sync/views.view.comment.yml | 0 .../config}/sync/views.view.comments_recent.yml | 0 .../config}/sync/views.view.commerce_activity.yml | 0 .../config}/sync/views.view.commerce_cart_block.yml | 0 .../config}/sync/views.view.commerce_cart_form.yml | 0 .../config}/sync/views.view.commerce_carts.yml | 0 .../config}/sync/views.view.commerce_checkout_order_summary.yml | 0 .../config}/sync/views.view.commerce_file_my_files.yml | 0 .../config}/sync/views.view.commerce_licenses.yml | 0 .../config}/sync/views.view.commerce_order_item_table.yml | 0 .../config}/sync/views.view.commerce_order_payments.yml | 0 .../config}/sync/views.view.commerce_orders.yml | 0 .../config}/sync/views.view.commerce_products.yml | 0 .../config}/sync/views.view.commerce_promotion_coupons.yml | 0 .../config}/sync/views.view.commerce_promotions.yml | 0 .../config}/sync/views.view.commerce_stores.yml | 0 .../config}/sync/views.view.commerce_user_orders.yml | 0 .../config}/sync/views.view.content.yml | 0 .../config}/sync/views.view.content_recent.yml | 0 .../config}/sync/views.view.files.yml | 0 .../config}/sync/views.view.frontpage.yml | 0 .../config}/sync/views.view.glossary.yml | 0 .../config}/sync/views.view.media.yml | 0 .../config}/sync/views.view.media_library.yml | 0 .../config}/sync/views.view.order_shipments.yml | 0 .../config}/sync/views.view.product_catalog.yml | 0 .../config}/sync/views.view.profiles.yml | 0 .../config}/sync/views.view.section_library.yml | 0 .../config}/sync/views.view.taxonomy_term.yml | 0 .../config}/sync/views.view.user_admin_people.yml | 0 .../config}/sync/views.view.watchdog.yml | 0 .../config}/sync/views.view.who_s_new.yml | 0 .../config}/sync/views.view.who_s_online.yml | 0 .../docker-compose.yaml | 0 .../drush}/Commands/PolicyCommands.php | 0 {drush => drupal-commerce-kickstart/drush}/README.md | 0 {drush => drupal-commerce-kickstart/drush}/drush.yml | 0 {drush => drupal-commerce-kickstart/drush}/sites/self.site.yml | 0 .../load.environment.php | 0 notes => drupal-commerce-kickstart/notes | 0 .../patches}/default_content/3160146-layout-builder.patch | 0 run => drupal-commerce-kickstart/run | 0 .../scripts}/composer/ScriptHandler.php | 0 .../docker/images/php/root/usr/local/bin/docker-entrypoint-php | 0 .../tools}/docker/images/php/root/usr/local/etc/php/php.ini | 0 .../tools}/docker/images/web/root/etc/nginx/conf.d/default.conf | 0 .../web}/libraries/jquery-ui-touch-punch/README.md | 0 .../web}/libraries/jquery-ui-touch-punch/bower.json | 0 .../web}/libraries/jquery-ui-touch-punch/composer.json | 0 .../web}/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js | 0 .../libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js | 0 .../web}/libraries/select2/dist/css/select2.min.css | 0 .../web}/libraries/select2/dist/js/select2.min.js | 0 561 files changed, 0 insertions(+), 0 deletions(-) rename .dockerignore => drupal-commerce-kickstart/.dockerignore (100%) rename .env.example => drupal-commerce-kickstart/.env.example (100%) rename {.githooks => drupal-commerce-kickstart/.githooks}/pre-push (100%) rename {.githooks => drupal-commerce-kickstart/.githooks}/prepare-commit-msg (100%) rename {.github => drupal-commerce-kickstart/.github}/workflows/ci.yml (100%) rename .gitignore => drupal-commerce-kickstart/.gitignore (100%) rename .hadolint.yaml => drupal-commerce-kickstart/.hadolint.yaml (100%) rename Dockerfile => drupal-commerce-kickstart/Dockerfile (100%) rename LICENSE => drupal-commerce-kickstart/LICENSE (100%) rename README.md => drupal-commerce-kickstart/README.md (100%) rename build.yaml => drupal-commerce-kickstart/build.yaml (100%) rename composer.json => drupal-commerce-kickstart/composer.json (100%) rename composer.lock => drupal-commerce-kickstart/composer.lock (100%) rename {config => drupal-commerce-kickstart/config}/splits/ddev/.gitkeep (100%) rename {config => drupal-commerce-kickstart/config}/splits/ddev/.htaccess (100%) rename {config => drupal-commerce-kickstart/config}/splits/ddev/symfony_mailer.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/.gitkeep (100%) rename {config => drupal-commerce-kickstart/config}/sync/.htaccess (100%) rename {config => drupal-commerce-kickstart/config}/sync/admin_toolbar.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/admin_toolbar_tools.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/advancedqueue.advancedqueue_queue.commerce_license.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/advancedqueue.advancedqueue_queue.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/automated_cron.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/belgrade.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_account_menu.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_branding.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_breadcrumbs.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_checkout_progress.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_content.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_footer.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_help.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_local_actions.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_local_tasks.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_main_menu.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_main_menu_header.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_messages.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_page_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_powered.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_shopping_cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_social.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.belgrade_social_navigation.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_breadcrumbs.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_content.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_help.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_local_actions.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_messages.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_page_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_primary_local_tasks.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.centarro_claro_secondary_local_tasks.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_breadcrumbs.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_content.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_help.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_local_actions.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_messages.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_page_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_primary_local_tasks.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.claro_secondary_local_tasks.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.productbrand.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block.block.productcollections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.basic.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.cklb_button.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.cklb_hero.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.cklb_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.cklb_products.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.cklb_text.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/block_content.type.cklb_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_basic_image_gallery.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.breakpoint.desktop.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.breakpoint.mobile.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.breakpoint.tablet.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_1.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_10.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_11.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_12.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_3.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_4.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_5.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_6.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_7.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_8.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout.blb_col_9.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_layout_builder.styles.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/bootstrap_styles.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/centarro_claro.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/claro.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/comment.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/comment.type.comment.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_checkout.commerce_checkout_flow.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_checkout.commerce_checkout_flow.shipping.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_file.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_order.commerce_order_item_type.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_order.commerce_order_item_type.digital_license_product.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_order.commerce_order_item_type.physical_product.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_order.commerce_order_type.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_order.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_price.commerce_currency.EUR.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_price.commerce_currency.GBP.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_price.commerce_currency.JPY.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_price.commerce_currency.USD.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_type.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_type.media.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_type.physical.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_variation_type.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_variation_type.media_license_download.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_variation_type.media_physical.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_product.commerce_product_variation_type.physical.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_shipping.commerce_shipment_type.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/commerce_store.commerce_store_type.online.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/config_split.config_split.ddev.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.base_field_override.node.cklb_landing_page.promote.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.base_field_override.node.page.promote.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.fallback.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_date.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_datetime.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_month.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_time.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_week.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_year.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.html_yearless_date.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.long.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.medium.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.date_format.short.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.basic.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.cklb_button.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.cklb_hero.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.cklb_image.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.cklb_products.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.cklb_text.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.block_content.cklb_title.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.comment.comment.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_order.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_order_item.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product.media.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product.physical.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product_variation.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_product_variation.physical.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_shipment.default.checkout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.commerce_store.online.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.audio.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.audio.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.document.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.document.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.image.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.image.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.remote_video.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.remote_video.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.video.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.media.video.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.node.cklb_landing_page.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.node.page.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.profile.customer.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.user.user.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_display.user.user.register.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_mode.commerce_shipment.checkout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_mode.media.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_mode.profile.billing.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_mode.profile.shipping.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_form_mode.user.register.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.basic.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_button.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_hero.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_image.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_products.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_text.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.block_content.cklb_title.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.comment.comment.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_license.commerce_file.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_order.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_order.default.user.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_order_item.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product.default.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product.media.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product.media.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product.physical.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product.physical.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.default.cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.default.summary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.physical.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_shipment.default.checkout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_shipment.default.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_shipment.default.user.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.commerce_store.online.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.audio.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.audio.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.document.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.document.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.image.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.image.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.remote_video.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.remote_video.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.video.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.media.video.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.node.cklb_landing_page.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.node.page.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.node.page.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.profile.customer.admin.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.profile.customer.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.user.user.compact.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_display.user.user.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.block.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.block_content.cklb_h1.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.block_content.cklb_large.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.block_content.cklb_small.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.block_content.full.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.block_content.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.comment.full.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.comment.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_order.user.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_product.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_product_variation.cart.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_product_variation.summary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_product_variation.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_shipment.checkout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.commerce_shipment.user.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.config_split.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.file.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.media.full.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.media.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.menu_link_content.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.node.full.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.node.rss.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.node.search_index.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.node.search_result.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.node.teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.node.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.path_alias.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.profile.admin.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.shortcut.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.taxonomy_term.full.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.taxonomy_term.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.tour.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.user.compact.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.user.full.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.entity_view_mode.user.token.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.extension.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/core.menu.static_menu_link_overrides.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/dblog.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/editor.editor.basic_html.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/editor.editor.full_html.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/facets.facet.product_brand.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/facets.facet.product_collections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.basic.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_button.cklb_cta.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_hero.cklb_cta.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_hero.cklb_text.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_hero.cklb_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_image.cklb_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_products.cklb_products.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_products.cklb_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_text.cklb_text.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.block_content.cklb_title.cklb_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.comment.comment.comment_body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_order.default.shipments.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_order_item.digital_license_product.license.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.default.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.default.images.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.default.layout_builder__layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.default.product_brand.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.default.product_collections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.default.product_tags.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.media.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.media.images.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.media.layout_builder__layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.media.product_brand.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.media.product_collections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.media.product_tags.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.physical.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.physical.images.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.physical.layout_builder__layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.physical.product_brand.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.physical.product_collections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product.physical.product_tags.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product_variation.media_license_download.license_type.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product_variation.media_physical.weight.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.commerce_product_variation.physical.weight.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.media.audio.field_media_audio_file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.media.document.field_media_document.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.media.image.field_media_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.media.remote_video.field_media_oembed_video.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.media.video.field_media_video_file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.node.cklb_landing_page.cklb_description.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.node.cklb_landing_page.cklb_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.node.page.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.profile.customer.address.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.profile.customer.tax_number.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.user.user.commerce_remote_id.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.field.user.user.user_picture.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.cklb_cta.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.cklb_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.cklb_products.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.cklb_subtitle.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.cklb_text.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.block_content.cklb_title.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.comment.comment_body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_order.shipments.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_order_item.license.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product.images.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product.layout_builder__layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product.product_brand.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product.product_collections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product.product_tags.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product_variation.commerce_file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product_variation.license_expiration.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product_variation.license_type.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.commerce_product_variation.weight.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.media.field_media_audio_file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.media.field_media_document.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.media.field_media_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.media.field_media_oembed_video.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.media.field_media_video_file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.node.body.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.node.cklb_description.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.node.cklb_image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.node.layout_builder__layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.profile.address.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.profile.tax_number.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.user.commerce_remote_id.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field.storage.user.user_picture.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/field_ui.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/file.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/filter.format.basic_html.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/filter.format.email_html.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/filter.format.full_html.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/filter.format.plain_text.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/filter.format.restricted_html.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/filter.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.cklb_container.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.cklb_full_width.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.cklb_medium_max_1144px.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.cklb_small_max_600px.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.large.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.medium.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.product_teaser.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.thumbnail.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/image.style.wide.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/layout_builder_blocks.styles.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/layout_builder_modal.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media.type.audio.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media.type.document.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media.type.image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media.type.remote_video.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media.type.video.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/media_library.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/menu_ui.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/node.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/node.type.cklb_landing_page.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/node.type.page.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/pathauto.pattern.media_product.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/pathauto.pattern.physical_product.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/pathauto.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/profile.type.customer.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/search_api.index.products.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/search_api.server.database.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/search_api.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/search_api_db.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/shortcut.set.default.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/symfony_mailer.mailer_policy._.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/symfony_mailer.mailer_transport.ddev_smtp.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/symfony_mailer.mailer_transport.sendmail.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/symfony_mailer.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.comment_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.comment_publish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.comment_save_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.comment_unpublish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.commerce_license_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.commerce_order_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.commerce_product_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.commerce_publish_product.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.commerce_store_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.commerce_unpublish_product.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.media_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.media_publish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.media_save_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.media_unpublish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_make_sticky_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_make_unsticky_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_promote_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_publish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_save_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_unpromote_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.node_unpublish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.pathauto_update_alias_node.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.pathauto_update_alias_user.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.profile_delete_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.profile_publish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.profile_unpublish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.taxonomy_term_publish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.taxonomy_term_unpublish_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.user_add_role_action.administrator.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.user_block_user_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.user_cancel_user_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.user_remove_role_action.administrator.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.action.user_unblock_user_action.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.advisories.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.cron.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.date.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.diff.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.feature_flags.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.file.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.image.gd.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.image.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.logging.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.mail.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.maintenance.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.menu.account.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.menu.admin.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.menu.footer.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.menu.main.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.menu.social.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.menu.tools.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.performance.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.rss.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.site.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.theme.global.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/system.theme.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/taxonomy.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/taxonomy.vocabulary.product_brands.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/taxonomy.vocabulary.product_collections.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/taxonomy.vocabulary.product_tags.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/text.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.block-layout.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.search-api-index-fields.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.search-api-index-form.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.search-api-index-processors.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.search-api-index.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.search-api-server-form.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.search-api-server.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/tour.tour.views-ui.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/update.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/user.flood.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/user.mail.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/user.role.administrator.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/user.role.anonymous.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/user.role.authenticated.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/user.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.settings.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.advancedqueue_jobs.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.archive.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.block_content.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.cklb_products_entity_reference.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.comment.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.comments_recent.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_activity.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_cart_block.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_cart_form.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_carts.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_checkout_order_summary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_file_my_files.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_licenses.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_order_item_table.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_order_payments.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_orders.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_products.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_promotion_coupons.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_promotions.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_stores.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.commerce_user_orders.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.content.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.content_recent.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.files.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.frontpage.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.glossary.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.media.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.media_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.order_shipments.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.product_catalog.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.profiles.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.section_library.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.taxonomy_term.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.user_admin_people.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.watchdog.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.who_s_new.yml (100%) rename {config => drupal-commerce-kickstart/config}/sync/views.view.who_s_online.yml (100%) rename docker-compose.yaml => drupal-commerce-kickstart/docker-compose.yaml (100%) rename {drush => drupal-commerce-kickstart/drush}/Commands/PolicyCommands.php (100%) rename {drush => drupal-commerce-kickstart/drush}/README.md (100%) rename {drush => drupal-commerce-kickstart/drush}/drush.yml (100%) rename {drush => drupal-commerce-kickstart/drush}/sites/self.site.yml (100%) rename load.environment.php => drupal-commerce-kickstart/load.environment.php (100%) rename notes => drupal-commerce-kickstart/notes (100%) rename {patches => drupal-commerce-kickstart/patches}/default_content/3160146-layout-builder.patch (100%) rename run => drupal-commerce-kickstart/run (100%) rename {scripts => drupal-commerce-kickstart/scripts}/composer/ScriptHandler.php (100%) rename {tools => drupal-commerce-kickstart/tools}/docker/images/php/root/usr/local/bin/docker-entrypoint-php (100%) rename {tools => drupal-commerce-kickstart/tools}/docker/images/php/root/usr/local/etc/php/php.ini (100%) rename {tools => drupal-commerce-kickstart/tools}/docker/images/web/root/etc/nginx/conf.d/default.conf (100%) rename {web => drupal-commerce-kickstart/web}/libraries/jquery-ui-touch-punch/README.md (100%) rename {web => drupal-commerce-kickstart/web}/libraries/jquery-ui-touch-punch/bower.json (100%) rename {web => drupal-commerce-kickstart/web}/libraries/jquery-ui-touch-punch/composer.json (100%) rename {web => drupal-commerce-kickstart/web}/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js (100%) rename {web => drupal-commerce-kickstart/web}/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js (100%) rename {web => drupal-commerce-kickstart/web}/libraries/select2/dist/css/select2.min.css (100%) rename {web => drupal-commerce-kickstart/web}/libraries/select2/dist/js/select2.min.js (100%) diff --git a/.dockerignore b/drupal-commerce-kickstart/.dockerignore similarity index 100% rename from .dockerignore rename to drupal-commerce-kickstart/.dockerignore diff --git a/.env.example b/drupal-commerce-kickstart/.env.example similarity index 100% rename from .env.example rename to drupal-commerce-kickstart/.env.example diff --git a/.githooks/pre-push b/drupal-commerce-kickstart/.githooks/pre-push similarity index 100% rename from .githooks/pre-push rename to drupal-commerce-kickstart/.githooks/pre-push diff --git a/.githooks/prepare-commit-msg b/drupal-commerce-kickstart/.githooks/prepare-commit-msg similarity index 100% rename from .githooks/prepare-commit-msg rename to drupal-commerce-kickstart/.githooks/prepare-commit-msg diff --git a/.github/workflows/ci.yml b/drupal-commerce-kickstart/.github/workflows/ci.yml similarity index 100% rename from .github/workflows/ci.yml rename to drupal-commerce-kickstart/.github/workflows/ci.yml diff --git a/.gitignore b/drupal-commerce-kickstart/.gitignore similarity index 100% rename from .gitignore rename to drupal-commerce-kickstart/.gitignore diff --git a/.hadolint.yaml b/drupal-commerce-kickstart/.hadolint.yaml similarity index 100% rename from .hadolint.yaml rename to drupal-commerce-kickstart/.hadolint.yaml diff --git a/Dockerfile b/drupal-commerce-kickstart/Dockerfile similarity index 100% rename from Dockerfile rename to drupal-commerce-kickstart/Dockerfile diff --git a/LICENSE b/drupal-commerce-kickstart/LICENSE similarity index 100% rename from LICENSE rename to drupal-commerce-kickstart/LICENSE diff --git a/README.md b/drupal-commerce-kickstart/README.md similarity index 100% rename from README.md rename to drupal-commerce-kickstart/README.md diff --git a/build.yaml b/drupal-commerce-kickstart/build.yaml similarity index 100% rename from build.yaml rename to drupal-commerce-kickstart/build.yaml diff --git a/composer.json b/drupal-commerce-kickstart/composer.json similarity index 100% rename from composer.json rename to drupal-commerce-kickstart/composer.json diff --git a/composer.lock b/drupal-commerce-kickstart/composer.lock similarity index 100% rename from composer.lock rename to drupal-commerce-kickstart/composer.lock diff --git a/config/splits/ddev/.gitkeep b/drupal-commerce-kickstart/config/splits/ddev/.gitkeep similarity index 100% rename from config/splits/ddev/.gitkeep rename to drupal-commerce-kickstart/config/splits/ddev/.gitkeep diff --git a/config/splits/ddev/.htaccess b/drupal-commerce-kickstart/config/splits/ddev/.htaccess similarity index 100% rename from config/splits/ddev/.htaccess rename to drupal-commerce-kickstart/config/splits/ddev/.htaccess diff --git a/config/splits/ddev/symfony_mailer.settings.yml b/drupal-commerce-kickstart/config/splits/ddev/symfony_mailer.settings.yml similarity index 100% rename from config/splits/ddev/symfony_mailer.settings.yml rename to drupal-commerce-kickstart/config/splits/ddev/symfony_mailer.settings.yml diff --git a/config/sync/.gitkeep b/drupal-commerce-kickstart/config/sync/.gitkeep similarity index 100% rename from config/sync/.gitkeep rename to drupal-commerce-kickstart/config/sync/.gitkeep diff --git a/config/sync/.htaccess b/drupal-commerce-kickstart/config/sync/.htaccess similarity index 100% rename from config/sync/.htaccess rename to drupal-commerce-kickstart/config/sync/.htaccess diff --git a/config/sync/admin_toolbar.settings.yml b/drupal-commerce-kickstart/config/sync/admin_toolbar.settings.yml similarity index 100% rename from config/sync/admin_toolbar.settings.yml rename to drupal-commerce-kickstart/config/sync/admin_toolbar.settings.yml diff --git a/config/sync/admin_toolbar_tools.settings.yml b/drupal-commerce-kickstart/config/sync/admin_toolbar_tools.settings.yml similarity index 100% rename from config/sync/admin_toolbar_tools.settings.yml rename to drupal-commerce-kickstart/config/sync/admin_toolbar_tools.settings.yml diff --git a/config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml b/drupal-commerce-kickstart/config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml similarity index 100% rename from config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml rename to drupal-commerce-kickstart/config/sync/advancedqueue.advancedqueue_queue.commerce_license.yml diff --git a/config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml b/drupal-commerce-kickstart/config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml similarity index 100% rename from config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml rename to drupal-commerce-kickstart/config/sync/advancedqueue.advancedqueue_queue.commerce_license_notify.yml diff --git a/config/sync/advancedqueue.advancedqueue_queue.default.yml b/drupal-commerce-kickstart/config/sync/advancedqueue.advancedqueue_queue.default.yml similarity index 100% rename from config/sync/advancedqueue.advancedqueue_queue.default.yml rename to drupal-commerce-kickstart/config/sync/advancedqueue.advancedqueue_queue.default.yml diff --git a/config/sync/automated_cron.settings.yml b/drupal-commerce-kickstart/config/sync/automated_cron.settings.yml similarity index 100% rename from config/sync/automated_cron.settings.yml rename to drupal-commerce-kickstart/config/sync/automated_cron.settings.yml diff --git a/config/sync/belgrade.settings.yml b/drupal-commerce-kickstart/config/sync/belgrade.settings.yml similarity index 100% rename from config/sync/belgrade.settings.yml rename to drupal-commerce-kickstart/config/sync/belgrade.settings.yml diff --git a/config/sync/block.block.belgrade_account_menu.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_account_menu.yml similarity index 100% rename from config/sync/block.block.belgrade_account_menu.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_account_menu.yml diff --git a/config/sync/block.block.belgrade_branding.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_branding.yml similarity index 100% rename from config/sync/block.block.belgrade_branding.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_branding.yml diff --git a/config/sync/block.block.belgrade_breadcrumbs.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_breadcrumbs.yml similarity index 100% rename from config/sync/block.block.belgrade_breadcrumbs.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_breadcrumbs.yml diff --git a/config/sync/block.block.belgrade_checkout_progress.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_checkout_progress.yml similarity index 100% rename from config/sync/block.block.belgrade_checkout_progress.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_checkout_progress.yml diff --git a/config/sync/block.block.belgrade_content.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_content.yml similarity index 100% rename from config/sync/block.block.belgrade_content.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_content.yml diff --git a/config/sync/block.block.belgrade_footer.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_footer.yml similarity index 100% rename from config/sync/block.block.belgrade_footer.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_footer.yml diff --git a/config/sync/block.block.belgrade_help.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_help.yml similarity index 100% rename from config/sync/block.block.belgrade_help.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_help.yml diff --git a/config/sync/block.block.belgrade_local_actions.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_local_actions.yml similarity index 100% rename from config/sync/block.block.belgrade_local_actions.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_local_actions.yml diff --git a/config/sync/block.block.belgrade_local_tasks.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_local_tasks.yml similarity index 100% rename from config/sync/block.block.belgrade_local_tasks.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_local_tasks.yml diff --git a/config/sync/block.block.belgrade_main_menu.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_main_menu.yml similarity index 100% rename from config/sync/block.block.belgrade_main_menu.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_main_menu.yml diff --git a/config/sync/block.block.belgrade_main_menu_header.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_main_menu_header.yml similarity index 100% rename from config/sync/block.block.belgrade_main_menu_header.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_main_menu_header.yml diff --git a/config/sync/block.block.belgrade_messages.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_messages.yml similarity index 100% rename from config/sync/block.block.belgrade_messages.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_messages.yml diff --git a/config/sync/block.block.belgrade_page_title.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_page_title.yml similarity index 100% rename from config/sync/block.block.belgrade_page_title.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_page_title.yml diff --git a/config/sync/block.block.belgrade_powered.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_powered.yml similarity index 100% rename from config/sync/block.block.belgrade_powered.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_powered.yml diff --git a/config/sync/block.block.belgrade_shopping_cart.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_shopping_cart.yml similarity index 100% rename from config/sync/block.block.belgrade_shopping_cart.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_shopping_cart.yml diff --git a/config/sync/block.block.belgrade_social.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_social.yml similarity index 100% rename from config/sync/block.block.belgrade_social.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_social.yml diff --git a/config/sync/block.block.belgrade_social_navigation.yml b/drupal-commerce-kickstart/config/sync/block.block.belgrade_social_navigation.yml similarity index 100% rename from config/sync/block.block.belgrade_social_navigation.yml rename to drupal-commerce-kickstart/config/sync/block.block.belgrade_social_navigation.yml diff --git a/config/sync/block.block.centarro_claro_breadcrumbs.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_breadcrumbs.yml similarity index 100% rename from config/sync/block.block.centarro_claro_breadcrumbs.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_breadcrumbs.yml diff --git a/config/sync/block.block.centarro_claro_content.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_content.yml similarity index 100% rename from config/sync/block.block.centarro_claro_content.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_content.yml diff --git a/config/sync/block.block.centarro_claro_help.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_help.yml similarity index 100% rename from config/sync/block.block.centarro_claro_help.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_help.yml diff --git a/config/sync/block.block.centarro_claro_local_actions.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_local_actions.yml similarity index 100% rename from config/sync/block.block.centarro_claro_local_actions.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_local_actions.yml diff --git a/config/sync/block.block.centarro_claro_messages.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_messages.yml similarity index 100% rename from config/sync/block.block.centarro_claro_messages.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_messages.yml diff --git a/config/sync/block.block.centarro_claro_page_title.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_page_title.yml similarity index 100% rename from config/sync/block.block.centarro_claro_page_title.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_page_title.yml diff --git a/config/sync/block.block.centarro_claro_primary_local_tasks.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_primary_local_tasks.yml similarity index 100% rename from config/sync/block.block.centarro_claro_primary_local_tasks.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_primary_local_tasks.yml diff --git a/config/sync/block.block.centarro_claro_secondary_local_tasks.yml b/drupal-commerce-kickstart/config/sync/block.block.centarro_claro_secondary_local_tasks.yml similarity index 100% rename from config/sync/block.block.centarro_claro_secondary_local_tasks.yml rename to drupal-commerce-kickstart/config/sync/block.block.centarro_claro_secondary_local_tasks.yml diff --git a/config/sync/block.block.claro_breadcrumbs.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_breadcrumbs.yml similarity index 100% rename from config/sync/block.block.claro_breadcrumbs.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_breadcrumbs.yml diff --git a/config/sync/block.block.claro_content.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_content.yml similarity index 100% rename from config/sync/block.block.claro_content.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_content.yml diff --git a/config/sync/block.block.claro_help.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_help.yml similarity index 100% rename from config/sync/block.block.claro_help.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_help.yml diff --git a/config/sync/block.block.claro_local_actions.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_local_actions.yml similarity index 100% rename from config/sync/block.block.claro_local_actions.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_local_actions.yml diff --git a/config/sync/block.block.claro_messages.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_messages.yml similarity index 100% rename from config/sync/block.block.claro_messages.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_messages.yml diff --git a/config/sync/block.block.claro_page_title.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_page_title.yml similarity index 100% rename from config/sync/block.block.claro_page_title.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_page_title.yml diff --git a/config/sync/block.block.claro_primary_local_tasks.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_primary_local_tasks.yml similarity index 100% rename from config/sync/block.block.claro_primary_local_tasks.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_primary_local_tasks.yml diff --git a/config/sync/block.block.claro_secondary_local_tasks.yml b/drupal-commerce-kickstart/config/sync/block.block.claro_secondary_local_tasks.yml similarity index 100% rename from config/sync/block.block.claro_secondary_local_tasks.yml rename to drupal-commerce-kickstart/config/sync/block.block.claro_secondary_local_tasks.yml diff --git a/config/sync/block.block.productbrand.yml b/drupal-commerce-kickstart/config/sync/block.block.productbrand.yml similarity index 100% rename from config/sync/block.block.productbrand.yml rename to drupal-commerce-kickstart/config/sync/block.block.productbrand.yml diff --git a/config/sync/block.block.productcollections.yml b/drupal-commerce-kickstart/config/sync/block.block.productcollections.yml similarity index 100% rename from config/sync/block.block.productcollections.yml rename to drupal-commerce-kickstart/config/sync/block.block.productcollections.yml diff --git a/config/sync/block_content.type.basic.yml b/drupal-commerce-kickstart/config/sync/block_content.type.basic.yml similarity index 100% rename from config/sync/block_content.type.basic.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.basic.yml diff --git a/config/sync/block_content.type.cklb_button.yml b/drupal-commerce-kickstart/config/sync/block_content.type.cklb_button.yml similarity index 100% rename from config/sync/block_content.type.cklb_button.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.cklb_button.yml diff --git a/config/sync/block_content.type.cklb_hero.yml b/drupal-commerce-kickstart/config/sync/block_content.type.cklb_hero.yml similarity index 100% rename from config/sync/block_content.type.cklb_hero.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.cklb_hero.yml diff --git a/config/sync/block_content.type.cklb_image.yml b/drupal-commerce-kickstart/config/sync/block_content.type.cklb_image.yml similarity index 100% rename from config/sync/block_content.type.cklb_image.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.cklb_image.yml diff --git a/config/sync/block_content.type.cklb_products.yml b/drupal-commerce-kickstart/config/sync/block_content.type.cklb_products.yml similarity index 100% rename from config/sync/block_content.type.cklb_products.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.cklb_products.yml diff --git a/config/sync/block_content.type.cklb_text.yml b/drupal-commerce-kickstart/config/sync/block_content.type.cklb_text.yml similarity index 100% rename from config/sync/block_content.type.cklb_text.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.cklb_text.yml diff --git a/config/sync/block_content.type.cklb_title.yml b/drupal-commerce-kickstart/config/sync/block_content.type.cklb_title.yml similarity index 100% rename from config/sync/block_content.type.cklb_title.yml rename to drupal-commerce-kickstart/config/sync/block_content.type.cklb_title.yml diff --git a/config/sync/bootstrap_basic_image_gallery.settings.yml b/drupal-commerce-kickstart/config/sync/bootstrap_basic_image_gallery.settings.yml similarity index 100% rename from config/sync/bootstrap_basic_image_gallery.settings.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_basic_image_gallery.settings.yml diff --git a/config/sync/bootstrap_layout_builder.breakpoint.desktop.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.breakpoint.desktop.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.breakpoint.desktop.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.breakpoint.desktop.yml diff --git a/config/sync/bootstrap_layout_builder.breakpoint.mobile.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.breakpoint.mobile.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.breakpoint.mobile.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.breakpoint.mobile.yml diff --git a/config/sync/bootstrap_layout_builder.breakpoint.tablet.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.breakpoint.tablet.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.breakpoint.tablet.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.breakpoint.tablet.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_1.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_1.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_1.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_1.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_10.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_10.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_10.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_10.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_11.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_11.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_11.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_11.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_12.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_12.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_12.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_12.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_3.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_3.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_3.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_3.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_4.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_4.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_4.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_4.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_5.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_5.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_5.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_5.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_6.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_6.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_6.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_6.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_7.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_7.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_7.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_7.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_8.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_8.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_8.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_8.yml diff --git a/config/sync/bootstrap_layout_builder.layout.blb_col_9.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_9.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout.blb_col_9.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout.blb_col_9.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_25_75.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_75_25.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_full_width.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_2_two_equal_columns.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_25_50.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_25_50_25.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_50_25_25.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_full_width.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_3_three_equal_columns.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_2_4.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_2_4_4_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_2_2_4.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_4_4_2_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_four_equal_columns.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_4_full_width.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_2_4.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_2_4_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_2_4_2_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_2_4_2_2_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_4_2_2_2_2.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_5_full_width.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_full_width.yml diff --git a/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.layout_option.blb_col_6_six_equal_columns.yml diff --git a/config/sync/bootstrap_layout_builder.settings.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.settings.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.settings.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.settings.yml diff --git a/config/sync/bootstrap_layout_builder.styles.yml b/drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.styles.yml similarity index 100% rename from config/sync/bootstrap_layout_builder.styles.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_layout_builder.styles.yml diff --git a/config/sync/bootstrap_styles.settings.yml b/drupal-commerce-kickstart/config/sync/bootstrap_styles.settings.yml similarity index 100% rename from config/sync/bootstrap_styles.settings.yml rename to drupal-commerce-kickstart/config/sync/bootstrap_styles.settings.yml diff --git a/config/sync/centarro_claro.settings.yml b/drupal-commerce-kickstart/config/sync/centarro_claro.settings.yml similarity index 100% rename from config/sync/centarro_claro.settings.yml rename to drupal-commerce-kickstart/config/sync/centarro_claro.settings.yml diff --git a/config/sync/claro.settings.yml b/drupal-commerce-kickstart/config/sync/claro.settings.yml similarity index 100% rename from config/sync/claro.settings.yml rename to drupal-commerce-kickstart/config/sync/claro.settings.yml diff --git a/config/sync/comment.settings.yml b/drupal-commerce-kickstart/config/sync/comment.settings.yml similarity index 100% rename from config/sync/comment.settings.yml rename to drupal-commerce-kickstart/config/sync/comment.settings.yml diff --git a/config/sync/comment.type.comment.yml b/drupal-commerce-kickstart/config/sync/comment.type.comment.yml similarity index 100% rename from config/sync/comment.type.comment.yml rename to drupal-commerce-kickstart/config/sync/comment.type.comment.yml diff --git a/config/sync/commerce_checkout.commerce_checkout_flow.default.yml b/drupal-commerce-kickstart/config/sync/commerce_checkout.commerce_checkout_flow.default.yml similarity index 100% rename from config/sync/commerce_checkout.commerce_checkout_flow.default.yml rename to drupal-commerce-kickstart/config/sync/commerce_checkout.commerce_checkout_flow.default.yml diff --git a/config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml b/drupal-commerce-kickstart/config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml similarity index 100% rename from config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml rename to drupal-commerce-kickstart/config/sync/commerce_checkout.commerce_checkout_flow.shipping.yml diff --git a/config/sync/commerce_file.settings.yml b/drupal-commerce-kickstart/config/sync/commerce_file.settings.yml similarity index 100% rename from config/sync/commerce_file.settings.yml rename to drupal-commerce-kickstart/config/sync/commerce_file.settings.yml diff --git a/config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml b/drupal-commerce-kickstart/config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml similarity index 100% rename from config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml rename to drupal-commerce-kickstart/config/sync/commerce_number_pattern.commerce_number_pattern.order_default.yml diff --git a/config/sync/commerce_order.commerce_order_item_type.default.yml b/drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_item_type.default.yml similarity index 100% rename from config/sync/commerce_order.commerce_order_item_type.default.yml rename to drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_item_type.default.yml diff --git a/config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml b/drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml similarity index 100% rename from config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml rename to drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_item_type.digital_license_product.yml diff --git a/config/sync/commerce_order.commerce_order_item_type.physical_product.yml b/drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_item_type.physical_product.yml similarity index 100% rename from config/sync/commerce_order.commerce_order_item_type.physical_product.yml rename to drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_item_type.physical_product.yml diff --git a/config/sync/commerce_order.commerce_order_type.default.yml b/drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_type.default.yml similarity index 100% rename from config/sync/commerce_order.commerce_order_type.default.yml rename to drupal-commerce-kickstart/config/sync/commerce_order.commerce_order_type.default.yml diff --git a/config/sync/commerce_order.settings.yml b/drupal-commerce-kickstart/config/sync/commerce_order.settings.yml similarity index 100% rename from config/sync/commerce_order.settings.yml rename to drupal-commerce-kickstart/config/sync/commerce_order.settings.yml diff --git a/config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml b/drupal-commerce-kickstart/config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml similarity index 100% rename from config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml rename to drupal-commerce-kickstart/config/sync/commerce_payment.commerce_payment_gateway.example_credit_card.yml diff --git a/config/sync/commerce_price.commerce_currency.EUR.yml b/drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.EUR.yml similarity index 100% rename from config/sync/commerce_price.commerce_currency.EUR.yml rename to drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.EUR.yml diff --git a/config/sync/commerce_price.commerce_currency.GBP.yml b/drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.GBP.yml similarity index 100% rename from config/sync/commerce_price.commerce_currency.GBP.yml rename to drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.GBP.yml diff --git a/config/sync/commerce_price.commerce_currency.JPY.yml b/drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.JPY.yml similarity index 100% rename from config/sync/commerce_price.commerce_currency.JPY.yml rename to drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.JPY.yml diff --git a/config/sync/commerce_price.commerce_currency.USD.yml b/drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.USD.yml similarity index 100% rename from config/sync/commerce_price.commerce_currency.USD.yml rename to drupal-commerce-kickstart/config/sync/commerce_price.commerce_currency.USD.yml diff --git a/config/sync/commerce_product.commerce_product_type.default.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_type.default.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_type.default.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_type.default.yml diff --git a/config/sync/commerce_product.commerce_product_type.media.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_type.media.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_type.media.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_type.media.yml diff --git a/config/sync/commerce_product.commerce_product_type.physical.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_type.physical.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_type.physical.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_type.physical.yml diff --git a/config/sync/commerce_product.commerce_product_variation_type.default.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.default.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_variation_type.default.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.default.yml diff --git a/config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.media_license_download.yml diff --git a/config/sync/commerce_product.commerce_product_variation_type.media_physical.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.media_physical.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_variation_type.media_physical.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.media_physical.yml diff --git a/config/sync/commerce_product.commerce_product_variation_type.physical.yml b/drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.physical.yml similarity index 100% rename from config/sync/commerce_product.commerce_product_variation_type.physical.yml rename to drupal-commerce-kickstart/config/sync/commerce_product.commerce_product_variation_type.physical.yml diff --git a/config/sync/commerce_shipping.commerce_shipment_type.default.yml b/drupal-commerce-kickstart/config/sync/commerce_shipping.commerce_shipment_type.default.yml similarity index 100% rename from config/sync/commerce_shipping.commerce_shipment_type.default.yml rename to drupal-commerce-kickstart/config/sync/commerce_shipping.commerce_shipment_type.default.yml diff --git a/config/sync/commerce_store.commerce_store_type.online.yml b/drupal-commerce-kickstart/config/sync/commerce_store.commerce_store_type.online.yml similarity index 100% rename from config/sync/commerce_store.commerce_store_type.online.yml rename to drupal-commerce-kickstart/config/sync/commerce_store.commerce_store_type.online.yml diff --git a/config/sync/config_split.config_split.ddev.yml b/drupal-commerce-kickstart/config/sync/config_split.config_split.ddev.yml similarity index 100% rename from config/sync/config_split.config_split.ddev.yml rename to drupal-commerce-kickstart/config/sync/config_split.config_split.ddev.yml diff --git a/config/sync/core.base_field_override.node.cklb_landing_page.promote.yml b/drupal-commerce-kickstart/config/sync/core.base_field_override.node.cklb_landing_page.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.cklb_landing_page.promote.yml rename to drupal-commerce-kickstart/config/sync/core.base_field_override.node.cklb_landing_page.promote.yml diff --git a/config/sync/core.base_field_override.node.page.promote.yml b/drupal-commerce-kickstart/config/sync/core.base_field_override.node.page.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.promote.yml rename to drupal-commerce-kickstart/config/sync/core.base_field_override.node.page.promote.yml diff --git a/config/sync/core.date_format.fallback.yml b/drupal-commerce-kickstart/config/sync/core.date_format.fallback.yml similarity index 100% rename from config/sync/core.date_format.fallback.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.fallback.yml diff --git a/config/sync/core.date_format.html_date.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_date.yml similarity index 100% rename from config/sync/core.date_format.html_date.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_date.yml diff --git a/config/sync/core.date_format.html_datetime.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_datetime.yml similarity index 100% rename from config/sync/core.date_format.html_datetime.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_datetime.yml diff --git a/config/sync/core.date_format.html_month.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_month.yml similarity index 100% rename from config/sync/core.date_format.html_month.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_month.yml diff --git a/config/sync/core.date_format.html_time.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_time.yml similarity index 100% rename from config/sync/core.date_format.html_time.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_time.yml diff --git a/config/sync/core.date_format.html_week.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_week.yml similarity index 100% rename from config/sync/core.date_format.html_week.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_week.yml diff --git a/config/sync/core.date_format.html_year.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_year.yml similarity index 100% rename from config/sync/core.date_format.html_year.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_year.yml diff --git a/config/sync/core.date_format.html_yearless_date.yml b/drupal-commerce-kickstart/config/sync/core.date_format.html_yearless_date.yml similarity index 100% rename from config/sync/core.date_format.html_yearless_date.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.html_yearless_date.yml diff --git a/config/sync/core.date_format.long.yml b/drupal-commerce-kickstart/config/sync/core.date_format.long.yml similarity index 100% rename from config/sync/core.date_format.long.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.long.yml diff --git a/config/sync/core.date_format.medium.yml b/drupal-commerce-kickstart/config/sync/core.date_format.medium.yml similarity index 100% rename from config/sync/core.date_format.medium.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.medium.yml diff --git a/config/sync/core.date_format.short.yml b/drupal-commerce-kickstart/config/sync/core.date_format.short.yml similarity index 100% rename from config/sync/core.date_format.short.yml rename to drupal-commerce-kickstart/config/sync/core.date_format.short.yml diff --git a/config/sync/core.entity_form_display.block_content.basic.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.basic.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.basic.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.basic.default.yml diff --git a/config/sync/core.entity_form_display.block_content.cklb_button.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_button.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.cklb_button.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_button.default.yml diff --git a/config/sync/core.entity_form_display.block_content.cklb_hero.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_hero.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.cklb_hero.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_hero.default.yml diff --git a/config/sync/core.entity_form_display.block_content.cklb_image.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_image.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.cklb_image.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_image.default.yml diff --git a/config/sync/core.entity_form_display.block_content.cklb_products.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_products.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.cklb_products.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_products.default.yml diff --git a/config/sync/core.entity_form_display.block_content.cklb_text.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_text.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.cklb_text.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_text.default.yml diff --git a/config/sync/core.entity_form_display.block_content.cklb_title.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_title.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.cklb_title.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.block_content.cklb_title.default.yml diff --git a/config/sync/core.entity_form_display.comment.comment.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.comment.comment.default.yml similarity index 100% rename from config/sync/core.entity_form_display.comment.comment.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.comment.comment.default.yml diff --git a/config/sync/core.entity_form_display.commerce_order.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order.default.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_order.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order.default.default.yml diff --git a/config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.default.add_to_cart.yml diff --git a/config/sync/core.entity_form_display.commerce_order_item.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.default.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_order_item.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.default.default.yml diff --git a/config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.digital_license_product.add_to_cart.yml diff --git a/config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.physical_product.add_to_cart.yml diff --git a/config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_order_item.physical_product.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product.default.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product.default.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product.media.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product.media.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product.media.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product.media.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product.physical.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product.physical.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product.physical.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product.physical.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product_variation.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.media_license_download.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.media_physical.default.yml diff --git a/config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_product_variation.physical.default.yml diff --git a/config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_shipment.default.checkout.yml diff --git a/config/sync/core.entity_form_display.commerce_store.online.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_store.online.default.yml similarity index 100% rename from config/sync/core.entity_form_display.commerce_store.online.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.commerce_store.online.default.yml diff --git a/config/sync/core.entity_form_display.media.audio.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.audio.default.yml similarity index 100% rename from config/sync/core.entity_form_display.media.audio.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.audio.default.yml diff --git a/config/sync/core.entity_form_display.media.audio.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.audio.media_library.yml similarity index 100% rename from config/sync/core.entity_form_display.media.audio.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.audio.media_library.yml diff --git a/config/sync/core.entity_form_display.media.document.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.document.default.yml similarity index 100% rename from config/sync/core.entity_form_display.media.document.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.document.default.yml diff --git a/config/sync/core.entity_form_display.media.document.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.document.media_library.yml similarity index 100% rename from config/sync/core.entity_form_display.media.document.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.document.media_library.yml diff --git a/config/sync/core.entity_form_display.media.image.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.image.default.yml similarity index 100% rename from config/sync/core.entity_form_display.media.image.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.image.default.yml diff --git a/config/sync/core.entity_form_display.media.image.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.image.media_library.yml similarity index 100% rename from config/sync/core.entity_form_display.media.image.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.image.media_library.yml diff --git a/config/sync/core.entity_form_display.media.remote_video.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.remote_video.default.yml similarity index 100% rename from config/sync/core.entity_form_display.media.remote_video.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.remote_video.default.yml diff --git a/config/sync/core.entity_form_display.media.remote_video.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.remote_video.media_library.yml similarity index 100% rename from config/sync/core.entity_form_display.media.remote_video.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.remote_video.media_library.yml diff --git a/config/sync/core.entity_form_display.media.video.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.video.default.yml similarity index 100% rename from config/sync/core.entity_form_display.media.video.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.video.default.yml diff --git a/config/sync/core.entity_form_display.media.video.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.media.video.media_library.yml similarity index 100% rename from config/sync/core.entity_form_display.media.video.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.media.video.media_library.yml diff --git a/config/sync/core.entity_form_display.node.cklb_landing_page.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.node.cklb_landing_page.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.cklb_landing_page.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.node.cklb_landing_page.default.yml diff --git a/config/sync/core.entity_form_display.node.page.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.node.page.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.page.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.node.page.default.yml diff --git a/config/sync/core.entity_form_display.profile.customer.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.profile.customer.default.yml similarity index 100% rename from config/sync/core.entity_form_display.profile.customer.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.profile.customer.default.yml diff --git a/config/sync/core.entity_form_display.user.user.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.user.user.default.yml similarity index 100% rename from config/sync/core.entity_form_display.user.user.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.user.user.default.yml diff --git a/config/sync/core.entity_form_display.user.user.register.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_display.user.user.register.yml similarity index 100% rename from config/sync/core.entity_form_display.user.user.register.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_display.user.user.register.yml diff --git a/config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml similarity index 100% rename from config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_mode.commerce_order_item.add_to_cart.yml diff --git a/config/sync/core.entity_form_mode.commerce_shipment.checkout.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_mode.commerce_shipment.checkout.yml similarity index 100% rename from config/sync/core.entity_form_mode.commerce_shipment.checkout.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_mode.commerce_shipment.checkout.yml diff --git a/config/sync/core.entity_form_mode.media.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_mode.media.media_library.yml similarity index 100% rename from config/sync/core.entity_form_mode.media.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_mode.media.media_library.yml diff --git a/config/sync/core.entity_form_mode.profile.billing.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_mode.profile.billing.yml similarity index 100% rename from config/sync/core.entity_form_mode.profile.billing.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_mode.profile.billing.yml diff --git a/config/sync/core.entity_form_mode.profile.shipping.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_mode.profile.shipping.yml similarity index 100% rename from config/sync/core.entity_form_mode.profile.shipping.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_mode.profile.shipping.yml diff --git a/config/sync/core.entity_form_mode.user.register.yml b/drupal-commerce-kickstart/config/sync/core.entity_form_mode.user.register.yml similarity index 100% rename from config/sync/core.entity_form_mode.user.register.yml rename to drupal-commerce-kickstart/config/sync/core.entity_form_mode.user.register.yml diff --git a/config/sync/core.entity_view_display.block_content.basic.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.basic.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.basic.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.basic.default.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_button.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_button.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_button.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_button.default.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_hero.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_hero.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_hero.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_hero.default.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_image.cklb_large.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_image.cklb_small.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_image.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_image.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_image.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_image.default.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_products.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_products.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_products.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_products.default.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_text.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_text.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_text.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_text.default.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_title.cklb_h1.yml diff --git a/config/sync/core.entity_view_display.block_content.cklb_title.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_title.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.cklb_title.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.block_content.cklb_title.default.yml diff --git a/config/sync/core.entity_view_display.comment.comment.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.comment.comment.default.yml similarity index 100% rename from config/sync/core.entity_view_display.comment.comment.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.comment.comment.default.yml diff --git a/config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_license.commerce_file.default.yml diff --git a/config/sync/core.entity_view_display.commerce_order.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_order.default.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_order.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_order.default.default.yml diff --git a/config/sync/core.entity_view_display.commerce_order.default.user.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_order.default.user.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_order.default.user.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_order.default.user.yml diff --git a/config/sync/core.entity_view_display.commerce_order_item.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_order_item.default.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_order_item.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_order_item.default.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.default.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.default.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product.default.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.default.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product.default.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.default.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_product.media.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.media.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product.media.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.media.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product.media.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.media.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product.media.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.media.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_product.physical.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.physical.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product.physical.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.physical.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product.physical.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.physical.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product.physical.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product.physical.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.cart.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.summary.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.default.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.cart.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.summary.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_license_download.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.cart.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.summary.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.media_physical.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.cart.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.default.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.summary.yml diff --git a/config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_product_variation.physical.teaser.yml diff --git a/config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_shipment.default.checkout.yml diff --git a/config/sync/core.entity_view_display.commerce_shipment.default.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_shipment.default.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_shipment.default.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_shipment.default.default.yml diff --git a/config/sync/core.entity_view_display.commerce_shipment.default.user.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_shipment.default.user.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_shipment.default.user.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_shipment.default.user.yml diff --git a/config/sync/core.entity_view_display.commerce_store.online.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_store.online.default.yml similarity index 100% rename from config/sync/core.entity_view_display.commerce_store.online.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.commerce_store.online.default.yml diff --git a/config/sync/core.entity_view_display.media.audio.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.audio.default.yml similarity index 100% rename from config/sync/core.entity_view_display.media.audio.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.audio.default.yml diff --git a/config/sync/core.entity_view_display.media.audio.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.audio.media_library.yml similarity index 100% rename from config/sync/core.entity_view_display.media.audio.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.audio.media_library.yml diff --git a/config/sync/core.entity_view_display.media.document.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.document.default.yml similarity index 100% rename from config/sync/core.entity_view_display.media.document.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.document.default.yml diff --git a/config/sync/core.entity_view_display.media.document.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.document.media_library.yml similarity index 100% rename from config/sync/core.entity_view_display.media.document.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.document.media_library.yml diff --git a/config/sync/core.entity_view_display.media.image.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.image.default.yml similarity index 100% rename from config/sync/core.entity_view_display.media.image.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.image.default.yml diff --git a/config/sync/core.entity_view_display.media.image.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.image.media_library.yml similarity index 100% rename from config/sync/core.entity_view_display.media.image.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.image.media_library.yml diff --git a/config/sync/core.entity_view_display.media.remote_video.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.remote_video.default.yml similarity index 100% rename from config/sync/core.entity_view_display.media.remote_video.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.remote_video.default.yml diff --git a/config/sync/core.entity_view_display.media.remote_video.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.remote_video.media_library.yml similarity index 100% rename from config/sync/core.entity_view_display.media.remote_video.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.remote_video.media_library.yml diff --git a/config/sync/core.entity_view_display.media.video.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.video.default.yml similarity index 100% rename from config/sync/core.entity_view_display.media.video.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.video.default.yml diff --git a/config/sync/core.entity_view_display.media.video.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.media.video.media_library.yml similarity index 100% rename from config/sync/core.entity_view_display.media.video.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.media.video.media_library.yml diff --git a/config/sync/core.entity_view_display.node.cklb_landing_page.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.node.cklb_landing_page.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.cklb_landing_page.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.node.cklb_landing_page.default.yml diff --git a/config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.node.cklb_landing_page.teaser.yml diff --git a/config/sync/core.entity_view_display.node.page.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.node.page.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.page.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.node.page.default.yml diff --git a/config/sync/core.entity_view_display.node.page.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.node.page.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.page.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.node.page.teaser.yml diff --git a/config/sync/core.entity_view_display.profile.customer.admin.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.profile.customer.admin.yml similarity index 100% rename from config/sync/core.entity_view_display.profile.customer.admin.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.profile.customer.admin.yml diff --git a/config/sync/core.entity_view_display.profile.customer.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.profile.customer.default.yml similarity index 100% rename from config/sync/core.entity_view_display.profile.customer.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.profile.customer.default.yml diff --git a/config/sync/core.entity_view_display.user.user.compact.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.user.user.compact.yml similarity index 100% rename from config/sync/core.entity_view_display.user.user.compact.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.user.user.compact.yml diff --git a/config/sync/core.entity_view_display.user.user.default.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_display.user.user.default.yml similarity index 100% rename from config/sync/core.entity_view_display.user.user.default.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_display.user.user.default.yml diff --git a/config/sync/core.entity_view_mode.block.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.block.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.block.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.block.token.yml diff --git a/config/sync/core.entity_view_mode.block_content.cklb_h1.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.cklb_h1.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.cklb_h1.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.cklb_h1.yml diff --git a/config/sync/core.entity_view_mode.block_content.cklb_large.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.cklb_large.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.cklb_large.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.cklb_large.yml diff --git a/config/sync/core.entity_view_mode.block_content.cklb_small.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.cklb_small.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.cklb_small.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.cklb_small.yml diff --git a/config/sync/core.entity_view_mode.block_content.full.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.full.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.full.yml diff --git a/config/sync/core.entity_view_mode.block_content.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.block_content.token.yml diff --git a/config/sync/core.entity_view_mode.comment.full.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.comment.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.comment.full.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.comment.full.yml diff --git a/config/sync/core.entity_view_mode.comment.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.comment.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.comment.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.comment.token.yml diff --git a/config/sync/core.entity_view_mode.commerce_order.user.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_order.user.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_order.user.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_order.user.yml diff --git a/config/sync/core.entity_view_mode.commerce_product.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product.teaser.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_product.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product.teaser.yml diff --git a/config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_attribute_value.add_to_cart.yml diff --git a/config/sync/core.entity_view_mode.commerce_product_variation.cart.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_variation.cart.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_product_variation.cart.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_variation.cart.yml diff --git a/config/sync/core.entity_view_mode.commerce_product_variation.summary.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_variation.summary.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_product_variation.summary.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_variation.summary.yml diff --git a/config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_product_variation.teaser.yml diff --git a/config/sync/core.entity_view_mode.commerce_shipment.checkout.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_shipment.checkout.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_shipment.checkout.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_shipment.checkout.yml diff --git a/config/sync/core.entity_view_mode.commerce_shipment.user.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_shipment.user.yml similarity index 100% rename from config/sync/core.entity_view_mode.commerce_shipment.user.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.commerce_shipment.user.yml diff --git a/config/sync/core.entity_view_mode.config_split.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.config_split.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.config_split.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.config_split.token.yml diff --git a/config/sync/core.entity_view_mode.file.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.file.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.file.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.file.token.yml diff --git a/config/sync/core.entity_view_mode.media.full.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.media.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.media.full.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.media.full.yml diff --git a/config/sync/core.entity_view_mode.media.media_library.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.media.media_library.yml similarity index 100% rename from config/sync/core.entity_view_mode.media.media_library.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.media.media_library.yml diff --git a/config/sync/core.entity_view_mode.menu_link_content.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.menu_link_content.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.menu_link_content.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.menu_link_content.token.yml diff --git a/config/sync/core.entity_view_mode.node.full.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.full.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.full.yml diff --git a/config/sync/core.entity_view_mode.node.rss.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.rss.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.rss.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.rss.yml diff --git a/config/sync/core.entity_view_mode.node.search_index.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.search_index.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.search_index.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.search_index.yml diff --git a/config/sync/core.entity_view_mode.node.search_result.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.search_result.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.search_result.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.search_result.yml diff --git a/config/sync/core.entity_view_mode.node.teaser.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.teaser.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.teaser.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.teaser.yml diff --git a/config/sync/core.entity_view_mode.node.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.node.token.yml diff --git a/config/sync/core.entity_view_mode.path_alias.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.path_alias.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.path_alias.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.path_alias.token.yml diff --git a/config/sync/core.entity_view_mode.profile.admin.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.profile.admin.yml similarity index 100% rename from config/sync/core.entity_view_mode.profile.admin.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.profile.admin.yml diff --git a/config/sync/core.entity_view_mode.shortcut.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.shortcut.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.shortcut.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.shortcut.token.yml diff --git a/config/sync/core.entity_view_mode.taxonomy_term.full.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.taxonomy_term.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.taxonomy_term.full.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.taxonomy_term.full.yml diff --git a/config/sync/core.entity_view_mode.taxonomy_term.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.taxonomy_term.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.taxonomy_term.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.taxonomy_term.token.yml diff --git a/config/sync/core.entity_view_mode.tour.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.tour.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.tour.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.tour.token.yml diff --git a/config/sync/core.entity_view_mode.user.compact.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.user.compact.yml similarity index 100% rename from config/sync/core.entity_view_mode.user.compact.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.user.compact.yml diff --git a/config/sync/core.entity_view_mode.user.full.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.user.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.user.full.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.user.full.yml diff --git a/config/sync/core.entity_view_mode.user.token.yml b/drupal-commerce-kickstart/config/sync/core.entity_view_mode.user.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.user.token.yml rename to drupal-commerce-kickstart/config/sync/core.entity_view_mode.user.token.yml diff --git a/config/sync/core.extension.yml b/drupal-commerce-kickstart/config/sync/core.extension.yml similarity index 100% rename from config/sync/core.extension.yml rename to drupal-commerce-kickstart/config/sync/core.extension.yml diff --git a/config/sync/core.menu.static_menu_link_overrides.yml b/drupal-commerce-kickstart/config/sync/core.menu.static_menu_link_overrides.yml similarity index 100% rename from config/sync/core.menu.static_menu_link_overrides.yml rename to drupal-commerce-kickstart/config/sync/core.menu.static_menu_link_overrides.yml diff --git a/config/sync/dblog.settings.yml b/drupal-commerce-kickstart/config/sync/dblog.settings.yml similarity index 100% rename from config/sync/dblog.settings.yml rename to drupal-commerce-kickstart/config/sync/dblog.settings.yml diff --git a/config/sync/editor.editor.basic_html.yml b/drupal-commerce-kickstart/config/sync/editor.editor.basic_html.yml similarity index 100% rename from config/sync/editor.editor.basic_html.yml rename to drupal-commerce-kickstart/config/sync/editor.editor.basic_html.yml diff --git a/config/sync/editor.editor.full_html.yml b/drupal-commerce-kickstart/config/sync/editor.editor.full_html.yml similarity index 100% rename from config/sync/editor.editor.full_html.yml rename to drupal-commerce-kickstart/config/sync/editor.editor.full_html.yml diff --git a/config/sync/facets.facet.product_brand.yml b/drupal-commerce-kickstart/config/sync/facets.facet.product_brand.yml similarity index 100% rename from config/sync/facets.facet.product_brand.yml rename to drupal-commerce-kickstart/config/sync/facets.facet.product_brand.yml diff --git a/config/sync/facets.facet.product_collections.yml b/drupal-commerce-kickstart/config/sync/facets.facet.product_collections.yml similarity index 100% rename from config/sync/facets.facet.product_collections.yml rename to drupal-commerce-kickstart/config/sync/facets.facet.product_collections.yml diff --git a/config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml b/drupal-commerce-kickstart/config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml similarity index 100% rename from config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml rename to drupal-commerce-kickstart/config/sync/facets.facet_source.search_api__views_page__product_catalog__catalog_page.yml diff --git a/config/sync/field.field.block_content.basic.body.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.basic.body.yml similarity index 100% rename from config/sync/field.field.block_content.basic.body.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.basic.body.yml diff --git a/config/sync/field.field.block_content.cklb_button.cklb_cta.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_button.cklb_cta.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_button.cklb_cta.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_button.cklb_cta.yml diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_cta.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_cta.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_hero.cklb_cta.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_cta.yml diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_subtitle.yml diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_text.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_text.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_hero.cklb_text.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_text.yml diff --git a/config/sync/field.field.block_content.cklb_hero.cklb_title.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_title.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_hero.cklb_title.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_hero.cklb_title.yml diff --git a/config/sync/field.field.block_content.cklb_image.cklb_image.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_image.cklb_image.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_image.cklb_image.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_image.cklb_image.yml diff --git a/config/sync/field.field.block_content.cklb_products.cklb_products.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_products.cklb_products.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_products.cklb_products.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_products.cklb_products.yml diff --git a/config/sync/field.field.block_content.cklb_products.cklb_title.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_products.cklb_title.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_products.cklb_title.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_products.cklb_title.yml diff --git a/config/sync/field.field.block_content.cklb_text.cklb_text.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_text.cklb_text.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_text.cklb_text.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_text.cklb_text.yml diff --git a/config/sync/field.field.block_content.cklb_title.cklb_title.yml b/drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_title.cklb_title.yml similarity index 100% rename from config/sync/field.field.block_content.cklb_title.cklb_title.yml rename to drupal-commerce-kickstart/config/sync/field.field.block_content.cklb_title.cklb_title.yml diff --git a/config/sync/field.field.comment.comment.comment_body.yml b/drupal-commerce-kickstart/config/sync/field.field.comment.comment.comment_body.yml similarity index 100% rename from config/sync/field.field.comment.comment.comment_body.yml rename to drupal-commerce-kickstart/config/sync/field.field.comment.comment.comment_body.yml diff --git a/config/sync/field.field.commerce_order.default.shipments.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_order.default.shipments.yml similarity index 100% rename from config/sync/field.field.commerce_order.default.shipments.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_order.default.shipments.yml diff --git a/config/sync/field.field.commerce_order_item.digital_license_product.license.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_order_item.digital_license_product.license.yml similarity index 100% rename from config/sync/field.field.commerce_order_item.digital_license_product.license.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_order_item.digital_license_product.license.yml diff --git a/config/sync/field.field.commerce_product.default.body.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.body.yml similarity index 100% rename from config/sync/field.field.commerce_product.default.body.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.body.yml diff --git a/config/sync/field.field.commerce_product.default.images.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.images.yml similarity index 100% rename from config/sync/field.field.commerce_product.default.images.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.images.yml diff --git a/config/sync/field.field.commerce_product.default.layout_builder__layout.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.layout_builder__layout.yml similarity index 100% rename from config/sync/field.field.commerce_product.default.layout_builder__layout.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.layout_builder__layout.yml diff --git a/config/sync/field.field.commerce_product.default.product_brand.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.product_brand.yml similarity index 100% rename from config/sync/field.field.commerce_product.default.product_brand.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.product_brand.yml diff --git a/config/sync/field.field.commerce_product.default.product_collections.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.product_collections.yml similarity index 100% rename from config/sync/field.field.commerce_product.default.product_collections.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.product_collections.yml diff --git a/config/sync/field.field.commerce_product.default.product_tags.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.product_tags.yml similarity index 100% rename from config/sync/field.field.commerce_product.default.product_tags.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.default.product_tags.yml diff --git a/config/sync/field.field.commerce_product.media.body.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.body.yml similarity index 100% rename from config/sync/field.field.commerce_product.media.body.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.body.yml diff --git a/config/sync/field.field.commerce_product.media.images.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.images.yml similarity index 100% rename from config/sync/field.field.commerce_product.media.images.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.images.yml diff --git a/config/sync/field.field.commerce_product.media.layout_builder__layout.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.layout_builder__layout.yml similarity index 100% rename from config/sync/field.field.commerce_product.media.layout_builder__layout.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.layout_builder__layout.yml diff --git a/config/sync/field.field.commerce_product.media.product_brand.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.product_brand.yml similarity index 100% rename from config/sync/field.field.commerce_product.media.product_brand.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.product_brand.yml diff --git a/config/sync/field.field.commerce_product.media.product_collections.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.product_collections.yml similarity index 100% rename from config/sync/field.field.commerce_product.media.product_collections.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.product_collections.yml diff --git a/config/sync/field.field.commerce_product.media.product_tags.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.product_tags.yml similarity index 100% rename from config/sync/field.field.commerce_product.media.product_tags.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.media.product_tags.yml diff --git a/config/sync/field.field.commerce_product.physical.body.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.body.yml similarity index 100% rename from config/sync/field.field.commerce_product.physical.body.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.body.yml diff --git a/config/sync/field.field.commerce_product.physical.images.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.images.yml similarity index 100% rename from config/sync/field.field.commerce_product.physical.images.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.images.yml diff --git a/config/sync/field.field.commerce_product.physical.layout_builder__layout.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.layout_builder__layout.yml similarity index 100% rename from config/sync/field.field.commerce_product.physical.layout_builder__layout.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.layout_builder__layout.yml diff --git a/config/sync/field.field.commerce_product.physical.product_brand.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.product_brand.yml similarity index 100% rename from config/sync/field.field.commerce_product.physical.product_brand.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.product_brand.yml diff --git a/config/sync/field.field.commerce_product.physical.product_collections.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.product_collections.yml similarity index 100% rename from config/sync/field.field.commerce_product.physical.product_collections.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.product_collections.yml diff --git a/config/sync/field.field.commerce_product.physical.product_tags.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.product_tags.yml similarity index 100% rename from config/sync/field.field.commerce_product.physical.product_tags.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product.physical.product_tags.yml diff --git a/config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml similarity index 100% rename from config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_license_download.commerce_file.yml diff --git a/config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml similarity index 100% rename from config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_license_download.license_expiration.yml diff --git a/config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml similarity index 100% rename from config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_license_download.license_type.yml diff --git a/config/sync/field.field.commerce_product_variation.media_physical.weight.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_physical.weight.yml similarity index 100% rename from config/sync/field.field.commerce_product_variation.media_physical.weight.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.media_physical.weight.yml diff --git a/config/sync/field.field.commerce_product_variation.physical.weight.yml b/drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.physical.weight.yml similarity index 100% rename from config/sync/field.field.commerce_product_variation.physical.weight.yml rename to drupal-commerce-kickstart/config/sync/field.field.commerce_product_variation.physical.weight.yml diff --git a/config/sync/field.field.media.audio.field_media_audio_file.yml b/drupal-commerce-kickstart/config/sync/field.field.media.audio.field_media_audio_file.yml similarity index 100% rename from config/sync/field.field.media.audio.field_media_audio_file.yml rename to drupal-commerce-kickstart/config/sync/field.field.media.audio.field_media_audio_file.yml diff --git a/config/sync/field.field.media.document.field_media_document.yml b/drupal-commerce-kickstart/config/sync/field.field.media.document.field_media_document.yml similarity index 100% rename from config/sync/field.field.media.document.field_media_document.yml rename to drupal-commerce-kickstart/config/sync/field.field.media.document.field_media_document.yml diff --git a/config/sync/field.field.media.image.field_media_image.yml b/drupal-commerce-kickstart/config/sync/field.field.media.image.field_media_image.yml similarity index 100% rename from config/sync/field.field.media.image.field_media_image.yml rename to drupal-commerce-kickstart/config/sync/field.field.media.image.field_media_image.yml diff --git a/config/sync/field.field.media.remote_video.field_media_oembed_video.yml b/drupal-commerce-kickstart/config/sync/field.field.media.remote_video.field_media_oembed_video.yml similarity index 100% rename from config/sync/field.field.media.remote_video.field_media_oembed_video.yml rename to drupal-commerce-kickstart/config/sync/field.field.media.remote_video.field_media_oembed_video.yml diff --git a/config/sync/field.field.media.video.field_media_video_file.yml b/drupal-commerce-kickstart/config/sync/field.field.media.video.field_media_video_file.yml similarity index 100% rename from config/sync/field.field.media.video.field_media_video_file.yml rename to drupal-commerce-kickstart/config/sync/field.field.media.video.field_media_video_file.yml diff --git a/config/sync/field.field.node.cklb_landing_page.cklb_description.yml b/drupal-commerce-kickstart/config/sync/field.field.node.cklb_landing_page.cklb_description.yml similarity index 100% rename from config/sync/field.field.node.cklb_landing_page.cklb_description.yml rename to drupal-commerce-kickstart/config/sync/field.field.node.cklb_landing_page.cklb_description.yml diff --git a/config/sync/field.field.node.cklb_landing_page.cklb_image.yml b/drupal-commerce-kickstart/config/sync/field.field.node.cklb_landing_page.cklb_image.yml similarity index 100% rename from config/sync/field.field.node.cklb_landing_page.cklb_image.yml rename to drupal-commerce-kickstart/config/sync/field.field.node.cklb_landing_page.cklb_image.yml diff --git a/config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml b/drupal-commerce-kickstart/config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml similarity index 100% rename from config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml rename to drupal-commerce-kickstart/config/sync/field.field.node.cklb_landing_page.layout_builder__layout.yml diff --git a/config/sync/field.field.node.page.body.yml b/drupal-commerce-kickstart/config/sync/field.field.node.page.body.yml similarity index 100% rename from config/sync/field.field.node.page.body.yml rename to drupal-commerce-kickstart/config/sync/field.field.node.page.body.yml diff --git a/config/sync/field.field.profile.customer.address.yml b/drupal-commerce-kickstart/config/sync/field.field.profile.customer.address.yml similarity index 100% rename from config/sync/field.field.profile.customer.address.yml rename to drupal-commerce-kickstart/config/sync/field.field.profile.customer.address.yml diff --git a/config/sync/field.field.profile.customer.tax_number.yml b/drupal-commerce-kickstart/config/sync/field.field.profile.customer.tax_number.yml similarity index 100% rename from config/sync/field.field.profile.customer.tax_number.yml rename to drupal-commerce-kickstart/config/sync/field.field.profile.customer.tax_number.yml diff --git a/config/sync/field.field.user.user.commerce_remote_id.yml b/drupal-commerce-kickstart/config/sync/field.field.user.user.commerce_remote_id.yml similarity index 100% rename from config/sync/field.field.user.user.commerce_remote_id.yml rename to drupal-commerce-kickstart/config/sync/field.field.user.user.commerce_remote_id.yml diff --git a/config/sync/field.field.user.user.user_picture.yml b/drupal-commerce-kickstart/config/sync/field.field.user.user.user_picture.yml similarity index 100% rename from config/sync/field.field.user.user.user_picture.yml rename to drupal-commerce-kickstart/config/sync/field.field.user.user.user_picture.yml diff --git a/config/sync/field.settings.yml b/drupal-commerce-kickstart/config/sync/field.settings.yml similarity index 100% rename from config/sync/field.settings.yml rename to drupal-commerce-kickstart/config/sync/field.settings.yml diff --git a/config/sync/field.storage.block_content.body.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.body.yml similarity index 100% rename from config/sync/field.storage.block_content.body.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.body.yml diff --git a/config/sync/field.storage.block_content.cklb_cta.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_cta.yml similarity index 100% rename from config/sync/field.storage.block_content.cklb_cta.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_cta.yml diff --git a/config/sync/field.storage.block_content.cklb_image.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_image.yml similarity index 100% rename from config/sync/field.storage.block_content.cklb_image.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_image.yml diff --git a/config/sync/field.storage.block_content.cklb_products.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_products.yml similarity index 100% rename from config/sync/field.storage.block_content.cklb_products.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_products.yml diff --git a/config/sync/field.storage.block_content.cklb_subtitle.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_subtitle.yml similarity index 100% rename from config/sync/field.storage.block_content.cklb_subtitle.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_subtitle.yml diff --git a/config/sync/field.storage.block_content.cklb_text.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_text.yml similarity index 100% rename from config/sync/field.storage.block_content.cklb_text.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_text.yml diff --git a/config/sync/field.storage.block_content.cklb_title.yml b/drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_title.yml similarity index 100% rename from config/sync/field.storage.block_content.cklb_title.yml rename to drupal-commerce-kickstart/config/sync/field.storage.block_content.cklb_title.yml diff --git a/config/sync/field.storage.comment.comment_body.yml b/drupal-commerce-kickstart/config/sync/field.storage.comment.comment_body.yml similarity index 100% rename from config/sync/field.storage.comment.comment_body.yml rename to drupal-commerce-kickstart/config/sync/field.storage.comment.comment_body.yml diff --git a/config/sync/field.storage.commerce_order.shipments.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_order.shipments.yml similarity index 100% rename from config/sync/field.storage.commerce_order.shipments.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_order.shipments.yml diff --git a/config/sync/field.storage.commerce_order_item.license.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_order_item.license.yml similarity index 100% rename from config/sync/field.storage.commerce_order_item.license.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_order_item.license.yml diff --git a/config/sync/field.storage.commerce_product.body.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product.body.yml similarity index 100% rename from config/sync/field.storage.commerce_product.body.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product.body.yml diff --git a/config/sync/field.storage.commerce_product.images.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product.images.yml similarity index 100% rename from config/sync/field.storage.commerce_product.images.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product.images.yml diff --git a/config/sync/field.storage.commerce_product.layout_builder__layout.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product.layout_builder__layout.yml similarity index 100% rename from config/sync/field.storage.commerce_product.layout_builder__layout.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product.layout_builder__layout.yml diff --git a/config/sync/field.storage.commerce_product.product_brand.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product.product_brand.yml similarity index 100% rename from config/sync/field.storage.commerce_product.product_brand.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product.product_brand.yml diff --git a/config/sync/field.storage.commerce_product.product_collections.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product.product_collections.yml similarity index 100% rename from config/sync/field.storage.commerce_product.product_collections.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product.product_collections.yml diff --git a/config/sync/field.storage.commerce_product.product_tags.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product.product_tags.yml similarity index 100% rename from config/sync/field.storage.commerce_product.product_tags.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product.product_tags.yml diff --git a/config/sync/field.storage.commerce_product_variation.commerce_file.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.commerce_file.yml similarity index 100% rename from config/sync/field.storage.commerce_product_variation.commerce_file.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.commerce_file.yml diff --git a/config/sync/field.storage.commerce_product_variation.license_expiration.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.license_expiration.yml similarity index 100% rename from config/sync/field.storage.commerce_product_variation.license_expiration.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.license_expiration.yml diff --git a/config/sync/field.storage.commerce_product_variation.license_type.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.license_type.yml similarity index 100% rename from config/sync/field.storage.commerce_product_variation.license_type.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.license_type.yml diff --git a/config/sync/field.storage.commerce_product_variation.weight.yml b/drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.weight.yml similarity index 100% rename from config/sync/field.storage.commerce_product_variation.weight.yml rename to drupal-commerce-kickstart/config/sync/field.storage.commerce_product_variation.weight.yml diff --git a/config/sync/field.storage.media.field_media_audio_file.yml b/drupal-commerce-kickstart/config/sync/field.storage.media.field_media_audio_file.yml similarity index 100% rename from config/sync/field.storage.media.field_media_audio_file.yml rename to drupal-commerce-kickstart/config/sync/field.storage.media.field_media_audio_file.yml diff --git a/config/sync/field.storage.media.field_media_document.yml b/drupal-commerce-kickstart/config/sync/field.storage.media.field_media_document.yml similarity index 100% rename from config/sync/field.storage.media.field_media_document.yml rename to drupal-commerce-kickstart/config/sync/field.storage.media.field_media_document.yml diff --git a/config/sync/field.storage.media.field_media_image.yml b/drupal-commerce-kickstart/config/sync/field.storage.media.field_media_image.yml similarity index 100% rename from config/sync/field.storage.media.field_media_image.yml rename to drupal-commerce-kickstart/config/sync/field.storage.media.field_media_image.yml diff --git a/config/sync/field.storage.media.field_media_oembed_video.yml b/drupal-commerce-kickstart/config/sync/field.storage.media.field_media_oembed_video.yml similarity index 100% rename from config/sync/field.storage.media.field_media_oembed_video.yml rename to drupal-commerce-kickstart/config/sync/field.storage.media.field_media_oembed_video.yml diff --git a/config/sync/field.storage.media.field_media_video_file.yml b/drupal-commerce-kickstart/config/sync/field.storage.media.field_media_video_file.yml similarity index 100% rename from config/sync/field.storage.media.field_media_video_file.yml rename to drupal-commerce-kickstart/config/sync/field.storage.media.field_media_video_file.yml diff --git a/config/sync/field.storage.node.body.yml b/drupal-commerce-kickstart/config/sync/field.storage.node.body.yml similarity index 100% rename from config/sync/field.storage.node.body.yml rename to drupal-commerce-kickstart/config/sync/field.storage.node.body.yml diff --git a/config/sync/field.storage.node.cklb_description.yml b/drupal-commerce-kickstart/config/sync/field.storage.node.cklb_description.yml similarity index 100% rename from config/sync/field.storage.node.cklb_description.yml rename to drupal-commerce-kickstart/config/sync/field.storage.node.cklb_description.yml diff --git a/config/sync/field.storage.node.cklb_image.yml b/drupal-commerce-kickstart/config/sync/field.storage.node.cklb_image.yml similarity index 100% rename from config/sync/field.storage.node.cklb_image.yml rename to drupal-commerce-kickstart/config/sync/field.storage.node.cklb_image.yml diff --git a/config/sync/field.storage.node.layout_builder__layout.yml b/drupal-commerce-kickstart/config/sync/field.storage.node.layout_builder__layout.yml similarity index 100% rename from config/sync/field.storage.node.layout_builder__layout.yml rename to drupal-commerce-kickstart/config/sync/field.storage.node.layout_builder__layout.yml diff --git a/config/sync/field.storage.profile.address.yml b/drupal-commerce-kickstart/config/sync/field.storage.profile.address.yml similarity index 100% rename from config/sync/field.storage.profile.address.yml rename to drupal-commerce-kickstart/config/sync/field.storage.profile.address.yml diff --git a/config/sync/field.storage.profile.tax_number.yml b/drupal-commerce-kickstart/config/sync/field.storage.profile.tax_number.yml similarity index 100% rename from config/sync/field.storage.profile.tax_number.yml rename to drupal-commerce-kickstart/config/sync/field.storage.profile.tax_number.yml diff --git a/config/sync/field.storage.user.commerce_remote_id.yml b/drupal-commerce-kickstart/config/sync/field.storage.user.commerce_remote_id.yml similarity index 100% rename from config/sync/field.storage.user.commerce_remote_id.yml rename to drupal-commerce-kickstart/config/sync/field.storage.user.commerce_remote_id.yml diff --git a/config/sync/field.storage.user.user_picture.yml b/drupal-commerce-kickstart/config/sync/field.storage.user.user_picture.yml similarity index 100% rename from config/sync/field.storage.user.user_picture.yml rename to drupal-commerce-kickstart/config/sync/field.storage.user.user_picture.yml diff --git a/config/sync/field_ui.settings.yml b/drupal-commerce-kickstart/config/sync/field_ui.settings.yml similarity index 100% rename from config/sync/field_ui.settings.yml rename to drupal-commerce-kickstart/config/sync/field_ui.settings.yml diff --git a/config/sync/file.settings.yml b/drupal-commerce-kickstart/config/sync/file.settings.yml similarity index 100% rename from config/sync/file.settings.yml rename to drupal-commerce-kickstart/config/sync/file.settings.yml diff --git a/config/sync/filter.format.basic_html.yml b/drupal-commerce-kickstart/config/sync/filter.format.basic_html.yml similarity index 100% rename from config/sync/filter.format.basic_html.yml rename to drupal-commerce-kickstart/config/sync/filter.format.basic_html.yml diff --git a/config/sync/filter.format.email_html.yml b/drupal-commerce-kickstart/config/sync/filter.format.email_html.yml similarity index 100% rename from config/sync/filter.format.email_html.yml rename to drupal-commerce-kickstart/config/sync/filter.format.email_html.yml diff --git a/config/sync/filter.format.full_html.yml b/drupal-commerce-kickstart/config/sync/filter.format.full_html.yml similarity index 100% rename from config/sync/filter.format.full_html.yml rename to drupal-commerce-kickstart/config/sync/filter.format.full_html.yml diff --git a/config/sync/filter.format.plain_text.yml b/drupal-commerce-kickstart/config/sync/filter.format.plain_text.yml similarity index 100% rename from config/sync/filter.format.plain_text.yml rename to drupal-commerce-kickstart/config/sync/filter.format.plain_text.yml diff --git a/config/sync/filter.format.restricted_html.yml b/drupal-commerce-kickstart/config/sync/filter.format.restricted_html.yml similarity index 100% rename from config/sync/filter.format.restricted_html.yml rename to drupal-commerce-kickstart/config/sync/filter.format.restricted_html.yml diff --git a/config/sync/filter.settings.yml b/drupal-commerce-kickstart/config/sync/filter.settings.yml similarity index 100% rename from config/sync/filter.settings.yml rename to drupal-commerce-kickstart/config/sync/filter.settings.yml diff --git a/config/sync/image.settings.yml b/drupal-commerce-kickstart/config/sync/image.settings.yml similarity index 100% rename from config/sync/image.settings.yml rename to drupal-commerce-kickstart/config/sync/image.settings.yml diff --git a/config/sync/image.style.cklb_container.yml b/drupal-commerce-kickstart/config/sync/image.style.cklb_container.yml similarity index 100% rename from config/sync/image.style.cklb_container.yml rename to drupal-commerce-kickstart/config/sync/image.style.cklb_container.yml diff --git a/config/sync/image.style.cklb_full_width.yml b/drupal-commerce-kickstart/config/sync/image.style.cklb_full_width.yml similarity index 100% rename from config/sync/image.style.cklb_full_width.yml rename to drupal-commerce-kickstart/config/sync/image.style.cklb_full_width.yml diff --git a/config/sync/image.style.cklb_medium_max_1144px.yml b/drupal-commerce-kickstart/config/sync/image.style.cklb_medium_max_1144px.yml similarity index 100% rename from config/sync/image.style.cklb_medium_max_1144px.yml rename to drupal-commerce-kickstart/config/sync/image.style.cklb_medium_max_1144px.yml diff --git a/config/sync/image.style.cklb_small_max_600px.yml b/drupal-commerce-kickstart/config/sync/image.style.cklb_small_max_600px.yml similarity index 100% rename from config/sync/image.style.cklb_small_max_600px.yml rename to drupal-commerce-kickstart/config/sync/image.style.cklb_small_max_600px.yml diff --git a/config/sync/image.style.large.yml b/drupal-commerce-kickstart/config/sync/image.style.large.yml similarity index 100% rename from config/sync/image.style.large.yml rename to drupal-commerce-kickstart/config/sync/image.style.large.yml diff --git a/config/sync/image.style.media_library.yml b/drupal-commerce-kickstart/config/sync/image.style.media_library.yml similarity index 100% rename from config/sync/image.style.media_library.yml rename to drupal-commerce-kickstart/config/sync/image.style.media_library.yml diff --git a/config/sync/image.style.medium.yml b/drupal-commerce-kickstart/config/sync/image.style.medium.yml similarity index 100% rename from config/sync/image.style.medium.yml rename to drupal-commerce-kickstart/config/sync/image.style.medium.yml diff --git a/config/sync/image.style.product_teaser.yml b/drupal-commerce-kickstart/config/sync/image.style.product_teaser.yml similarity index 100% rename from config/sync/image.style.product_teaser.yml rename to drupal-commerce-kickstart/config/sync/image.style.product_teaser.yml diff --git a/config/sync/image.style.thumbnail.yml b/drupal-commerce-kickstart/config/sync/image.style.thumbnail.yml similarity index 100% rename from config/sync/image.style.thumbnail.yml rename to drupal-commerce-kickstart/config/sync/image.style.thumbnail.yml diff --git a/config/sync/image.style.wide.yml b/drupal-commerce-kickstart/config/sync/image.style.wide.yml similarity index 100% rename from config/sync/image.style.wide.yml rename to drupal-commerce-kickstart/config/sync/image.style.wide.yml diff --git a/config/sync/layout_builder_blocks.styles.yml b/drupal-commerce-kickstart/config/sync/layout_builder_blocks.styles.yml similarity index 100% rename from config/sync/layout_builder_blocks.styles.yml rename to drupal-commerce-kickstart/config/sync/layout_builder_blocks.styles.yml diff --git a/config/sync/layout_builder_modal.settings.yml b/drupal-commerce-kickstart/config/sync/layout_builder_modal.settings.yml similarity index 100% rename from config/sync/layout_builder_modal.settings.yml rename to drupal-commerce-kickstart/config/sync/layout_builder_modal.settings.yml diff --git a/config/sync/media.settings.yml b/drupal-commerce-kickstart/config/sync/media.settings.yml similarity index 100% rename from config/sync/media.settings.yml rename to drupal-commerce-kickstart/config/sync/media.settings.yml diff --git a/config/sync/media.type.audio.yml b/drupal-commerce-kickstart/config/sync/media.type.audio.yml similarity index 100% rename from config/sync/media.type.audio.yml rename to drupal-commerce-kickstart/config/sync/media.type.audio.yml diff --git a/config/sync/media.type.document.yml b/drupal-commerce-kickstart/config/sync/media.type.document.yml similarity index 100% rename from config/sync/media.type.document.yml rename to drupal-commerce-kickstart/config/sync/media.type.document.yml diff --git a/config/sync/media.type.image.yml b/drupal-commerce-kickstart/config/sync/media.type.image.yml similarity index 100% rename from config/sync/media.type.image.yml rename to drupal-commerce-kickstart/config/sync/media.type.image.yml diff --git a/config/sync/media.type.remote_video.yml b/drupal-commerce-kickstart/config/sync/media.type.remote_video.yml similarity index 100% rename from config/sync/media.type.remote_video.yml rename to drupal-commerce-kickstart/config/sync/media.type.remote_video.yml diff --git a/config/sync/media.type.video.yml b/drupal-commerce-kickstart/config/sync/media.type.video.yml similarity index 100% rename from config/sync/media.type.video.yml rename to drupal-commerce-kickstart/config/sync/media.type.video.yml diff --git a/config/sync/media_library.settings.yml b/drupal-commerce-kickstart/config/sync/media_library.settings.yml similarity index 100% rename from config/sync/media_library.settings.yml rename to drupal-commerce-kickstart/config/sync/media_library.settings.yml diff --git a/config/sync/menu_ui.settings.yml b/drupal-commerce-kickstart/config/sync/menu_ui.settings.yml similarity index 100% rename from config/sync/menu_ui.settings.yml rename to drupal-commerce-kickstart/config/sync/menu_ui.settings.yml diff --git a/config/sync/node.settings.yml b/drupal-commerce-kickstart/config/sync/node.settings.yml similarity index 100% rename from config/sync/node.settings.yml rename to drupal-commerce-kickstart/config/sync/node.settings.yml diff --git a/config/sync/node.type.cklb_landing_page.yml b/drupal-commerce-kickstart/config/sync/node.type.cklb_landing_page.yml similarity index 100% rename from config/sync/node.type.cklb_landing_page.yml rename to drupal-commerce-kickstart/config/sync/node.type.cklb_landing_page.yml diff --git a/config/sync/node.type.page.yml b/drupal-commerce-kickstart/config/sync/node.type.page.yml similarity index 100% rename from config/sync/node.type.page.yml rename to drupal-commerce-kickstart/config/sync/node.type.page.yml diff --git a/config/sync/pathauto.pattern.media_product.yml b/drupal-commerce-kickstart/config/sync/pathauto.pattern.media_product.yml similarity index 100% rename from config/sync/pathauto.pattern.media_product.yml rename to drupal-commerce-kickstart/config/sync/pathauto.pattern.media_product.yml diff --git a/config/sync/pathauto.pattern.physical_product.yml b/drupal-commerce-kickstart/config/sync/pathauto.pattern.physical_product.yml similarity index 100% rename from config/sync/pathauto.pattern.physical_product.yml rename to drupal-commerce-kickstart/config/sync/pathauto.pattern.physical_product.yml diff --git a/config/sync/pathauto.settings.yml b/drupal-commerce-kickstart/config/sync/pathauto.settings.yml similarity index 100% rename from config/sync/pathauto.settings.yml rename to drupal-commerce-kickstart/config/sync/pathauto.settings.yml diff --git a/config/sync/profile.type.customer.yml b/drupal-commerce-kickstart/config/sync/profile.type.customer.yml similarity index 100% rename from config/sync/profile.type.customer.yml rename to drupal-commerce-kickstart/config/sync/profile.type.customer.yml diff --git a/config/sync/search_api.index.products.yml b/drupal-commerce-kickstart/config/sync/search_api.index.products.yml similarity index 100% rename from config/sync/search_api.index.products.yml rename to drupal-commerce-kickstart/config/sync/search_api.index.products.yml diff --git a/config/sync/search_api.server.database.yml b/drupal-commerce-kickstart/config/sync/search_api.server.database.yml similarity index 100% rename from config/sync/search_api.server.database.yml rename to drupal-commerce-kickstart/config/sync/search_api.server.database.yml diff --git a/config/sync/search_api.settings.yml b/drupal-commerce-kickstart/config/sync/search_api.settings.yml similarity index 100% rename from config/sync/search_api.settings.yml rename to drupal-commerce-kickstart/config/sync/search_api.settings.yml diff --git a/config/sync/search_api_db.settings.yml b/drupal-commerce-kickstart/config/sync/search_api_db.settings.yml similarity index 100% rename from config/sync/search_api_db.settings.yml rename to drupal-commerce-kickstart/config/sync/search_api_db.settings.yml diff --git a/config/sync/shortcut.set.default.yml b/drupal-commerce-kickstart/config/sync/shortcut.set.default.yml similarity index 100% rename from config/sync/shortcut.set.default.yml rename to drupal-commerce-kickstart/config/sync/shortcut.set.default.yml diff --git a/config/sync/symfony_mailer.mailer_policy._.yml b/drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_policy._.yml similarity index 100% rename from config/sync/symfony_mailer.mailer_policy._.yml rename to drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_policy._.yml diff --git a/config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml b/drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml similarity index 100% rename from config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml rename to drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_policy.symfony_mailer.test.yml diff --git a/config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml b/drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml similarity index 100% rename from config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml rename to drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_transport.ddev_smtp.yml diff --git a/config/sync/symfony_mailer.mailer_transport.sendmail.yml b/drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_transport.sendmail.yml similarity index 100% rename from config/sync/symfony_mailer.mailer_transport.sendmail.yml rename to drupal-commerce-kickstart/config/sync/symfony_mailer.mailer_transport.sendmail.yml diff --git a/config/sync/symfony_mailer.settings.yml b/drupal-commerce-kickstart/config/sync/symfony_mailer.settings.yml similarity index 100% rename from config/sync/symfony_mailer.settings.yml rename to drupal-commerce-kickstart/config/sync/symfony_mailer.settings.yml diff --git a/config/sync/system.action.comment_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.comment_delete_action.yml similarity index 100% rename from config/sync/system.action.comment_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.comment_delete_action.yml diff --git a/config/sync/system.action.comment_publish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.comment_publish_action.yml similarity index 100% rename from config/sync/system.action.comment_publish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.comment_publish_action.yml diff --git a/config/sync/system.action.comment_save_action.yml b/drupal-commerce-kickstart/config/sync/system.action.comment_save_action.yml similarity index 100% rename from config/sync/system.action.comment_save_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.comment_save_action.yml diff --git a/config/sync/system.action.comment_unpublish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.comment_unpublish_action.yml similarity index 100% rename from config/sync/system.action.comment_unpublish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.comment_unpublish_action.yml diff --git a/config/sync/system.action.commerce_license_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.commerce_license_delete_action.yml similarity index 100% rename from config/sync/system.action.commerce_license_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.commerce_license_delete_action.yml diff --git a/config/sync/system.action.commerce_order_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.commerce_order_delete_action.yml similarity index 100% rename from config/sync/system.action.commerce_order_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.commerce_order_delete_action.yml diff --git a/config/sync/system.action.commerce_product_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.commerce_product_delete_action.yml similarity index 100% rename from config/sync/system.action.commerce_product_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.commerce_product_delete_action.yml diff --git a/config/sync/system.action.commerce_publish_product.yml b/drupal-commerce-kickstart/config/sync/system.action.commerce_publish_product.yml similarity index 100% rename from config/sync/system.action.commerce_publish_product.yml rename to drupal-commerce-kickstart/config/sync/system.action.commerce_publish_product.yml diff --git a/config/sync/system.action.commerce_store_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.commerce_store_delete_action.yml similarity index 100% rename from config/sync/system.action.commerce_store_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.commerce_store_delete_action.yml diff --git a/config/sync/system.action.commerce_unpublish_product.yml b/drupal-commerce-kickstart/config/sync/system.action.commerce_unpublish_product.yml similarity index 100% rename from config/sync/system.action.commerce_unpublish_product.yml rename to drupal-commerce-kickstart/config/sync/system.action.commerce_unpublish_product.yml diff --git a/config/sync/system.action.media_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.media_delete_action.yml similarity index 100% rename from config/sync/system.action.media_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.media_delete_action.yml diff --git a/config/sync/system.action.media_publish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.media_publish_action.yml similarity index 100% rename from config/sync/system.action.media_publish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.media_publish_action.yml diff --git a/config/sync/system.action.media_save_action.yml b/drupal-commerce-kickstart/config/sync/system.action.media_save_action.yml similarity index 100% rename from config/sync/system.action.media_save_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.media_save_action.yml diff --git a/config/sync/system.action.media_unpublish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.media_unpublish_action.yml similarity index 100% rename from config/sync/system.action.media_unpublish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.media_unpublish_action.yml diff --git a/config/sync/system.action.node_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_delete_action.yml similarity index 100% rename from config/sync/system.action.node_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_delete_action.yml diff --git a/config/sync/system.action.node_make_sticky_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_make_sticky_action.yml similarity index 100% rename from config/sync/system.action.node_make_sticky_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_make_sticky_action.yml diff --git a/config/sync/system.action.node_make_unsticky_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_make_unsticky_action.yml similarity index 100% rename from config/sync/system.action.node_make_unsticky_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_make_unsticky_action.yml diff --git a/config/sync/system.action.node_promote_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_promote_action.yml similarity index 100% rename from config/sync/system.action.node_promote_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_promote_action.yml diff --git a/config/sync/system.action.node_publish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_publish_action.yml similarity index 100% rename from config/sync/system.action.node_publish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_publish_action.yml diff --git a/config/sync/system.action.node_save_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_save_action.yml similarity index 100% rename from config/sync/system.action.node_save_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_save_action.yml diff --git a/config/sync/system.action.node_unpromote_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_unpromote_action.yml similarity index 100% rename from config/sync/system.action.node_unpromote_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_unpromote_action.yml diff --git a/config/sync/system.action.node_unpublish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.node_unpublish_action.yml similarity index 100% rename from config/sync/system.action.node_unpublish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.node_unpublish_action.yml diff --git a/config/sync/system.action.pathauto_update_alias_node.yml b/drupal-commerce-kickstart/config/sync/system.action.pathauto_update_alias_node.yml similarity index 100% rename from config/sync/system.action.pathauto_update_alias_node.yml rename to drupal-commerce-kickstart/config/sync/system.action.pathauto_update_alias_node.yml diff --git a/config/sync/system.action.pathauto_update_alias_user.yml b/drupal-commerce-kickstart/config/sync/system.action.pathauto_update_alias_user.yml similarity index 100% rename from config/sync/system.action.pathauto_update_alias_user.yml rename to drupal-commerce-kickstart/config/sync/system.action.pathauto_update_alias_user.yml diff --git a/config/sync/system.action.profile_delete_action.yml b/drupal-commerce-kickstart/config/sync/system.action.profile_delete_action.yml similarity index 100% rename from config/sync/system.action.profile_delete_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.profile_delete_action.yml diff --git a/config/sync/system.action.profile_publish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.profile_publish_action.yml similarity index 100% rename from config/sync/system.action.profile_publish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.profile_publish_action.yml diff --git a/config/sync/system.action.profile_unpublish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.profile_unpublish_action.yml similarity index 100% rename from config/sync/system.action.profile_unpublish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.profile_unpublish_action.yml diff --git a/config/sync/system.action.taxonomy_term_publish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.taxonomy_term_publish_action.yml similarity index 100% rename from config/sync/system.action.taxonomy_term_publish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.taxonomy_term_publish_action.yml diff --git a/config/sync/system.action.taxonomy_term_unpublish_action.yml b/drupal-commerce-kickstart/config/sync/system.action.taxonomy_term_unpublish_action.yml similarity index 100% rename from config/sync/system.action.taxonomy_term_unpublish_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.taxonomy_term_unpublish_action.yml diff --git a/config/sync/system.action.user_add_role_action.administrator.yml b/drupal-commerce-kickstart/config/sync/system.action.user_add_role_action.administrator.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.administrator.yml rename to drupal-commerce-kickstart/config/sync/system.action.user_add_role_action.administrator.yml diff --git a/config/sync/system.action.user_block_user_action.yml b/drupal-commerce-kickstart/config/sync/system.action.user_block_user_action.yml similarity index 100% rename from config/sync/system.action.user_block_user_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.user_block_user_action.yml diff --git a/config/sync/system.action.user_cancel_user_action.yml b/drupal-commerce-kickstart/config/sync/system.action.user_cancel_user_action.yml similarity index 100% rename from config/sync/system.action.user_cancel_user_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.user_cancel_user_action.yml diff --git a/config/sync/system.action.user_remove_role_action.administrator.yml b/drupal-commerce-kickstart/config/sync/system.action.user_remove_role_action.administrator.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.administrator.yml rename to drupal-commerce-kickstart/config/sync/system.action.user_remove_role_action.administrator.yml diff --git a/config/sync/system.action.user_unblock_user_action.yml b/drupal-commerce-kickstart/config/sync/system.action.user_unblock_user_action.yml similarity index 100% rename from config/sync/system.action.user_unblock_user_action.yml rename to drupal-commerce-kickstart/config/sync/system.action.user_unblock_user_action.yml diff --git a/config/sync/system.advisories.yml b/drupal-commerce-kickstart/config/sync/system.advisories.yml similarity index 100% rename from config/sync/system.advisories.yml rename to drupal-commerce-kickstart/config/sync/system.advisories.yml diff --git a/config/sync/system.cron.yml b/drupal-commerce-kickstart/config/sync/system.cron.yml similarity index 100% rename from config/sync/system.cron.yml rename to drupal-commerce-kickstart/config/sync/system.cron.yml diff --git a/config/sync/system.date.yml b/drupal-commerce-kickstart/config/sync/system.date.yml similarity index 100% rename from config/sync/system.date.yml rename to drupal-commerce-kickstart/config/sync/system.date.yml diff --git a/config/sync/system.diff.yml b/drupal-commerce-kickstart/config/sync/system.diff.yml similarity index 100% rename from config/sync/system.diff.yml rename to drupal-commerce-kickstart/config/sync/system.diff.yml diff --git a/config/sync/system.feature_flags.yml b/drupal-commerce-kickstart/config/sync/system.feature_flags.yml similarity index 100% rename from config/sync/system.feature_flags.yml rename to drupal-commerce-kickstart/config/sync/system.feature_flags.yml diff --git a/config/sync/system.file.yml b/drupal-commerce-kickstart/config/sync/system.file.yml similarity index 100% rename from config/sync/system.file.yml rename to drupal-commerce-kickstart/config/sync/system.file.yml diff --git a/config/sync/system.image.gd.yml b/drupal-commerce-kickstart/config/sync/system.image.gd.yml similarity index 100% rename from config/sync/system.image.gd.yml rename to drupal-commerce-kickstart/config/sync/system.image.gd.yml diff --git a/config/sync/system.image.yml b/drupal-commerce-kickstart/config/sync/system.image.yml similarity index 100% rename from config/sync/system.image.yml rename to drupal-commerce-kickstart/config/sync/system.image.yml diff --git a/config/sync/system.logging.yml b/drupal-commerce-kickstart/config/sync/system.logging.yml similarity index 100% rename from config/sync/system.logging.yml rename to drupal-commerce-kickstart/config/sync/system.logging.yml diff --git a/config/sync/system.mail.yml b/drupal-commerce-kickstart/config/sync/system.mail.yml similarity index 100% rename from config/sync/system.mail.yml rename to drupal-commerce-kickstart/config/sync/system.mail.yml diff --git a/config/sync/system.maintenance.yml b/drupal-commerce-kickstart/config/sync/system.maintenance.yml similarity index 100% rename from config/sync/system.maintenance.yml rename to drupal-commerce-kickstart/config/sync/system.maintenance.yml diff --git a/config/sync/system.menu.account.yml b/drupal-commerce-kickstart/config/sync/system.menu.account.yml similarity index 100% rename from config/sync/system.menu.account.yml rename to drupal-commerce-kickstart/config/sync/system.menu.account.yml diff --git a/config/sync/system.menu.admin.yml b/drupal-commerce-kickstart/config/sync/system.menu.admin.yml similarity index 100% rename from config/sync/system.menu.admin.yml rename to drupal-commerce-kickstart/config/sync/system.menu.admin.yml diff --git a/config/sync/system.menu.footer.yml b/drupal-commerce-kickstart/config/sync/system.menu.footer.yml similarity index 100% rename from config/sync/system.menu.footer.yml rename to drupal-commerce-kickstart/config/sync/system.menu.footer.yml diff --git a/config/sync/system.menu.main.yml b/drupal-commerce-kickstart/config/sync/system.menu.main.yml similarity index 100% rename from config/sync/system.menu.main.yml rename to drupal-commerce-kickstart/config/sync/system.menu.main.yml diff --git a/config/sync/system.menu.social.yml b/drupal-commerce-kickstart/config/sync/system.menu.social.yml similarity index 100% rename from config/sync/system.menu.social.yml rename to drupal-commerce-kickstart/config/sync/system.menu.social.yml diff --git a/config/sync/system.menu.tools.yml b/drupal-commerce-kickstart/config/sync/system.menu.tools.yml similarity index 100% rename from config/sync/system.menu.tools.yml rename to drupal-commerce-kickstart/config/sync/system.menu.tools.yml diff --git a/config/sync/system.performance.yml b/drupal-commerce-kickstart/config/sync/system.performance.yml similarity index 100% rename from config/sync/system.performance.yml rename to drupal-commerce-kickstart/config/sync/system.performance.yml diff --git a/config/sync/system.rss.yml b/drupal-commerce-kickstart/config/sync/system.rss.yml similarity index 100% rename from config/sync/system.rss.yml rename to drupal-commerce-kickstart/config/sync/system.rss.yml diff --git a/config/sync/system.site.yml b/drupal-commerce-kickstart/config/sync/system.site.yml similarity index 100% rename from config/sync/system.site.yml rename to drupal-commerce-kickstart/config/sync/system.site.yml diff --git a/config/sync/system.theme.global.yml b/drupal-commerce-kickstart/config/sync/system.theme.global.yml similarity index 100% rename from config/sync/system.theme.global.yml rename to drupal-commerce-kickstart/config/sync/system.theme.global.yml diff --git a/config/sync/system.theme.yml b/drupal-commerce-kickstart/config/sync/system.theme.yml similarity index 100% rename from config/sync/system.theme.yml rename to drupal-commerce-kickstart/config/sync/system.theme.yml diff --git a/config/sync/taxonomy.settings.yml b/drupal-commerce-kickstart/config/sync/taxonomy.settings.yml similarity index 100% rename from config/sync/taxonomy.settings.yml rename to drupal-commerce-kickstart/config/sync/taxonomy.settings.yml diff --git a/config/sync/taxonomy.vocabulary.product_brands.yml b/drupal-commerce-kickstart/config/sync/taxonomy.vocabulary.product_brands.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.product_brands.yml rename to drupal-commerce-kickstart/config/sync/taxonomy.vocabulary.product_brands.yml diff --git a/config/sync/taxonomy.vocabulary.product_collections.yml b/drupal-commerce-kickstart/config/sync/taxonomy.vocabulary.product_collections.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.product_collections.yml rename to drupal-commerce-kickstart/config/sync/taxonomy.vocabulary.product_collections.yml diff --git a/config/sync/taxonomy.vocabulary.product_tags.yml b/drupal-commerce-kickstart/config/sync/taxonomy.vocabulary.product_tags.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.product_tags.yml rename to drupal-commerce-kickstart/config/sync/taxonomy.vocabulary.product_tags.yml diff --git a/config/sync/text.settings.yml b/drupal-commerce-kickstart/config/sync/text.settings.yml similarity index 100% rename from config/sync/text.settings.yml rename to drupal-commerce-kickstart/config/sync/text.settings.yml diff --git a/config/sync/tour.tour.block-layout.yml b/drupal-commerce-kickstart/config/sync/tour.tour.block-layout.yml similarity index 100% rename from config/sync/tour.tour.block-layout.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.block-layout.yml diff --git a/config/sync/tour.tour.search-api-index-fields.yml b/drupal-commerce-kickstart/config/sync/tour.tour.search-api-index-fields.yml similarity index 100% rename from config/sync/tour.tour.search-api-index-fields.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.search-api-index-fields.yml diff --git a/config/sync/tour.tour.search-api-index-form.yml b/drupal-commerce-kickstart/config/sync/tour.tour.search-api-index-form.yml similarity index 100% rename from config/sync/tour.tour.search-api-index-form.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.search-api-index-form.yml diff --git a/config/sync/tour.tour.search-api-index-processors.yml b/drupal-commerce-kickstart/config/sync/tour.tour.search-api-index-processors.yml similarity index 100% rename from config/sync/tour.tour.search-api-index-processors.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.search-api-index-processors.yml diff --git a/config/sync/tour.tour.search-api-index.yml b/drupal-commerce-kickstart/config/sync/tour.tour.search-api-index.yml similarity index 100% rename from config/sync/tour.tour.search-api-index.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.search-api-index.yml diff --git a/config/sync/tour.tour.search-api-server-form.yml b/drupal-commerce-kickstart/config/sync/tour.tour.search-api-server-form.yml similarity index 100% rename from config/sync/tour.tour.search-api-server-form.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.search-api-server-form.yml diff --git a/config/sync/tour.tour.search-api-server.yml b/drupal-commerce-kickstart/config/sync/tour.tour.search-api-server.yml similarity index 100% rename from config/sync/tour.tour.search-api-server.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.search-api-server.yml diff --git a/config/sync/tour.tour.views-ui.yml b/drupal-commerce-kickstart/config/sync/tour.tour.views-ui.yml similarity index 100% rename from config/sync/tour.tour.views-ui.yml rename to drupal-commerce-kickstart/config/sync/tour.tour.views-ui.yml diff --git a/config/sync/update.settings.yml b/drupal-commerce-kickstart/config/sync/update.settings.yml similarity index 100% rename from config/sync/update.settings.yml rename to drupal-commerce-kickstart/config/sync/update.settings.yml diff --git a/config/sync/user.flood.yml b/drupal-commerce-kickstart/config/sync/user.flood.yml similarity index 100% rename from config/sync/user.flood.yml rename to drupal-commerce-kickstart/config/sync/user.flood.yml diff --git a/config/sync/user.mail.yml b/drupal-commerce-kickstart/config/sync/user.mail.yml similarity index 100% rename from config/sync/user.mail.yml rename to drupal-commerce-kickstart/config/sync/user.mail.yml diff --git a/config/sync/user.role.administrator.yml b/drupal-commerce-kickstart/config/sync/user.role.administrator.yml similarity index 100% rename from config/sync/user.role.administrator.yml rename to drupal-commerce-kickstart/config/sync/user.role.administrator.yml diff --git a/config/sync/user.role.anonymous.yml b/drupal-commerce-kickstart/config/sync/user.role.anonymous.yml similarity index 100% rename from config/sync/user.role.anonymous.yml rename to drupal-commerce-kickstart/config/sync/user.role.anonymous.yml diff --git a/config/sync/user.role.authenticated.yml b/drupal-commerce-kickstart/config/sync/user.role.authenticated.yml similarity index 100% rename from config/sync/user.role.authenticated.yml rename to drupal-commerce-kickstart/config/sync/user.role.authenticated.yml diff --git a/config/sync/user.settings.yml b/drupal-commerce-kickstart/config/sync/user.settings.yml similarity index 100% rename from config/sync/user.settings.yml rename to drupal-commerce-kickstart/config/sync/user.settings.yml diff --git a/config/sync/views.settings.yml b/drupal-commerce-kickstart/config/sync/views.settings.yml similarity index 100% rename from config/sync/views.settings.yml rename to drupal-commerce-kickstart/config/sync/views.settings.yml diff --git a/config/sync/views.view.advancedqueue_jobs.yml b/drupal-commerce-kickstart/config/sync/views.view.advancedqueue_jobs.yml similarity index 100% rename from config/sync/views.view.advancedqueue_jobs.yml rename to drupal-commerce-kickstart/config/sync/views.view.advancedqueue_jobs.yml diff --git a/config/sync/views.view.archive.yml b/drupal-commerce-kickstart/config/sync/views.view.archive.yml similarity index 100% rename from config/sync/views.view.archive.yml rename to drupal-commerce-kickstart/config/sync/views.view.archive.yml diff --git a/config/sync/views.view.block_content.yml b/drupal-commerce-kickstart/config/sync/views.view.block_content.yml similarity index 100% rename from config/sync/views.view.block_content.yml rename to drupal-commerce-kickstart/config/sync/views.view.block_content.yml diff --git a/config/sync/views.view.cklb_products_entity_reference.yml b/drupal-commerce-kickstart/config/sync/views.view.cklb_products_entity_reference.yml similarity index 100% rename from config/sync/views.view.cklb_products_entity_reference.yml rename to drupal-commerce-kickstart/config/sync/views.view.cklb_products_entity_reference.yml diff --git a/config/sync/views.view.comment.yml b/drupal-commerce-kickstart/config/sync/views.view.comment.yml similarity index 100% rename from config/sync/views.view.comment.yml rename to drupal-commerce-kickstart/config/sync/views.view.comment.yml diff --git a/config/sync/views.view.comments_recent.yml b/drupal-commerce-kickstart/config/sync/views.view.comments_recent.yml similarity index 100% rename from config/sync/views.view.comments_recent.yml rename to drupal-commerce-kickstart/config/sync/views.view.comments_recent.yml diff --git a/config/sync/views.view.commerce_activity.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_activity.yml similarity index 100% rename from config/sync/views.view.commerce_activity.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_activity.yml diff --git a/config/sync/views.view.commerce_cart_block.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_cart_block.yml similarity index 100% rename from config/sync/views.view.commerce_cart_block.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_cart_block.yml diff --git a/config/sync/views.view.commerce_cart_form.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_cart_form.yml similarity index 100% rename from config/sync/views.view.commerce_cart_form.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_cart_form.yml diff --git a/config/sync/views.view.commerce_carts.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_carts.yml similarity index 100% rename from config/sync/views.view.commerce_carts.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_carts.yml diff --git a/config/sync/views.view.commerce_checkout_order_summary.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_checkout_order_summary.yml similarity index 100% rename from config/sync/views.view.commerce_checkout_order_summary.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_checkout_order_summary.yml diff --git a/config/sync/views.view.commerce_file_my_files.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_file_my_files.yml similarity index 100% rename from config/sync/views.view.commerce_file_my_files.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_file_my_files.yml diff --git a/config/sync/views.view.commerce_licenses.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_licenses.yml similarity index 100% rename from config/sync/views.view.commerce_licenses.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_licenses.yml diff --git a/config/sync/views.view.commerce_order_item_table.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_order_item_table.yml similarity index 100% rename from config/sync/views.view.commerce_order_item_table.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_order_item_table.yml diff --git a/config/sync/views.view.commerce_order_payments.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_order_payments.yml similarity index 100% rename from config/sync/views.view.commerce_order_payments.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_order_payments.yml diff --git a/config/sync/views.view.commerce_orders.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_orders.yml similarity index 100% rename from config/sync/views.view.commerce_orders.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_orders.yml diff --git a/config/sync/views.view.commerce_products.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_products.yml similarity index 100% rename from config/sync/views.view.commerce_products.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_products.yml diff --git a/config/sync/views.view.commerce_promotion_coupons.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_promotion_coupons.yml similarity index 100% rename from config/sync/views.view.commerce_promotion_coupons.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_promotion_coupons.yml diff --git a/config/sync/views.view.commerce_promotions.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_promotions.yml similarity index 100% rename from config/sync/views.view.commerce_promotions.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_promotions.yml diff --git a/config/sync/views.view.commerce_stores.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_stores.yml similarity index 100% rename from config/sync/views.view.commerce_stores.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_stores.yml diff --git a/config/sync/views.view.commerce_user_orders.yml b/drupal-commerce-kickstart/config/sync/views.view.commerce_user_orders.yml similarity index 100% rename from config/sync/views.view.commerce_user_orders.yml rename to drupal-commerce-kickstart/config/sync/views.view.commerce_user_orders.yml diff --git a/config/sync/views.view.content.yml b/drupal-commerce-kickstart/config/sync/views.view.content.yml similarity index 100% rename from config/sync/views.view.content.yml rename to drupal-commerce-kickstart/config/sync/views.view.content.yml diff --git a/config/sync/views.view.content_recent.yml b/drupal-commerce-kickstart/config/sync/views.view.content_recent.yml similarity index 100% rename from config/sync/views.view.content_recent.yml rename to drupal-commerce-kickstart/config/sync/views.view.content_recent.yml diff --git a/config/sync/views.view.files.yml b/drupal-commerce-kickstart/config/sync/views.view.files.yml similarity index 100% rename from config/sync/views.view.files.yml rename to drupal-commerce-kickstart/config/sync/views.view.files.yml diff --git a/config/sync/views.view.frontpage.yml b/drupal-commerce-kickstart/config/sync/views.view.frontpage.yml similarity index 100% rename from config/sync/views.view.frontpage.yml rename to drupal-commerce-kickstart/config/sync/views.view.frontpage.yml diff --git a/config/sync/views.view.glossary.yml b/drupal-commerce-kickstart/config/sync/views.view.glossary.yml similarity index 100% rename from config/sync/views.view.glossary.yml rename to drupal-commerce-kickstart/config/sync/views.view.glossary.yml diff --git a/config/sync/views.view.media.yml b/drupal-commerce-kickstart/config/sync/views.view.media.yml similarity index 100% rename from config/sync/views.view.media.yml rename to drupal-commerce-kickstart/config/sync/views.view.media.yml diff --git a/config/sync/views.view.media_library.yml b/drupal-commerce-kickstart/config/sync/views.view.media_library.yml similarity index 100% rename from config/sync/views.view.media_library.yml rename to drupal-commerce-kickstart/config/sync/views.view.media_library.yml diff --git a/config/sync/views.view.order_shipments.yml b/drupal-commerce-kickstart/config/sync/views.view.order_shipments.yml similarity index 100% rename from config/sync/views.view.order_shipments.yml rename to drupal-commerce-kickstart/config/sync/views.view.order_shipments.yml diff --git a/config/sync/views.view.product_catalog.yml b/drupal-commerce-kickstart/config/sync/views.view.product_catalog.yml similarity index 100% rename from config/sync/views.view.product_catalog.yml rename to drupal-commerce-kickstart/config/sync/views.view.product_catalog.yml diff --git a/config/sync/views.view.profiles.yml b/drupal-commerce-kickstart/config/sync/views.view.profiles.yml similarity index 100% rename from config/sync/views.view.profiles.yml rename to drupal-commerce-kickstart/config/sync/views.view.profiles.yml diff --git a/config/sync/views.view.section_library.yml b/drupal-commerce-kickstart/config/sync/views.view.section_library.yml similarity index 100% rename from config/sync/views.view.section_library.yml rename to drupal-commerce-kickstart/config/sync/views.view.section_library.yml diff --git a/config/sync/views.view.taxonomy_term.yml b/drupal-commerce-kickstart/config/sync/views.view.taxonomy_term.yml similarity index 100% rename from config/sync/views.view.taxonomy_term.yml rename to drupal-commerce-kickstart/config/sync/views.view.taxonomy_term.yml diff --git a/config/sync/views.view.user_admin_people.yml b/drupal-commerce-kickstart/config/sync/views.view.user_admin_people.yml similarity index 100% rename from config/sync/views.view.user_admin_people.yml rename to drupal-commerce-kickstart/config/sync/views.view.user_admin_people.yml diff --git a/config/sync/views.view.watchdog.yml b/drupal-commerce-kickstart/config/sync/views.view.watchdog.yml similarity index 100% rename from config/sync/views.view.watchdog.yml rename to drupal-commerce-kickstart/config/sync/views.view.watchdog.yml diff --git a/config/sync/views.view.who_s_new.yml b/drupal-commerce-kickstart/config/sync/views.view.who_s_new.yml similarity index 100% rename from config/sync/views.view.who_s_new.yml rename to drupal-commerce-kickstart/config/sync/views.view.who_s_new.yml diff --git a/config/sync/views.view.who_s_online.yml b/drupal-commerce-kickstart/config/sync/views.view.who_s_online.yml similarity index 100% rename from config/sync/views.view.who_s_online.yml rename to drupal-commerce-kickstart/config/sync/views.view.who_s_online.yml diff --git a/docker-compose.yaml b/drupal-commerce-kickstart/docker-compose.yaml similarity index 100% rename from docker-compose.yaml rename to drupal-commerce-kickstart/docker-compose.yaml diff --git a/drush/Commands/PolicyCommands.php b/drupal-commerce-kickstart/drush/Commands/PolicyCommands.php similarity index 100% rename from drush/Commands/PolicyCommands.php rename to drupal-commerce-kickstart/drush/Commands/PolicyCommands.php diff --git a/drush/README.md b/drupal-commerce-kickstart/drush/README.md similarity index 100% rename from drush/README.md rename to drupal-commerce-kickstart/drush/README.md diff --git a/drush/drush.yml b/drupal-commerce-kickstart/drush/drush.yml similarity index 100% rename from drush/drush.yml rename to drupal-commerce-kickstart/drush/drush.yml diff --git a/drush/sites/self.site.yml b/drupal-commerce-kickstart/drush/sites/self.site.yml similarity index 100% rename from drush/sites/self.site.yml rename to drupal-commerce-kickstart/drush/sites/self.site.yml diff --git a/load.environment.php b/drupal-commerce-kickstart/load.environment.php similarity index 100% rename from load.environment.php rename to drupal-commerce-kickstart/load.environment.php diff --git a/notes b/drupal-commerce-kickstart/notes similarity index 100% rename from notes rename to drupal-commerce-kickstart/notes diff --git a/patches/default_content/3160146-layout-builder.patch b/drupal-commerce-kickstart/patches/default_content/3160146-layout-builder.patch similarity index 100% rename from patches/default_content/3160146-layout-builder.patch rename to drupal-commerce-kickstart/patches/default_content/3160146-layout-builder.patch diff --git a/run b/drupal-commerce-kickstart/run similarity index 100% rename from run rename to drupal-commerce-kickstart/run diff --git a/scripts/composer/ScriptHandler.php b/drupal-commerce-kickstart/scripts/composer/ScriptHandler.php similarity index 100% rename from scripts/composer/ScriptHandler.php rename to drupal-commerce-kickstart/scripts/composer/ScriptHandler.php diff --git a/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php b/drupal-commerce-kickstart/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php similarity index 100% rename from tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php rename to drupal-commerce-kickstart/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php diff --git a/tools/docker/images/php/root/usr/local/etc/php/php.ini b/drupal-commerce-kickstart/tools/docker/images/php/root/usr/local/etc/php/php.ini similarity index 100% rename from tools/docker/images/php/root/usr/local/etc/php/php.ini rename to drupal-commerce-kickstart/tools/docker/images/php/root/usr/local/etc/php/php.ini diff --git a/tools/docker/images/web/root/etc/nginx/conf.d/default.conf b/drupal-commerce-kickstart/tools/docker/images/web/root/etc/nginx/conf.d/default.conf similarity index 100% rename from tools/docker/images/web/root/etc/nginx/conf.d/default.conf rename to drupal-commerce-kickstart/tools/docker/images/web/root/etc/nginx/conf.d/default.conf diff --git a/web/libraries/jquery-ui-touch-punch/README.md b/drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/README.md similarity index 100% rename from web/libraries/jquery-ui-touch-punch/README.md rename to drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/README.md diff --git a/web/libraries/jquery-ui-touch-punch/bower.json b/drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/bower.json similarity index 100% rename from web/libraries/jquery-ui-touch-punch/bower.json rename to drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/bower.json diff --git a/web/libraries/jquery-ui-touch-punch/composer.json b/drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/composer.json similarity index 100% rename from web/libraries/jquery-ui-touch-punch/composer.json rename to drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/composer.json diff --git a/web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js b/drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js similarity index 100% rename from web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js rename to drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.js diff --git a/web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js b/drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js similarity index 100% rename from web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js rename to drupal-commerce-kickstart/web/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js diff --git a/web/libraries/select2/dist/css/select2.min.css b/drupal-commerce-kickstart/web/libraries/select2/dist/css/select2.min.css similarity index 100% rename from web/libraries/select2/dist/css/select2.min.css rename to drupal-commerce-kickstart/web/libraries/select2/dist/css/select2.min.css diff --git a/web/libraries/select2/dist/js/select2.min.js b/drupal-commerce-kickstart/web/libraries/select2/dist/js/select2.min.js similarity index 100% rename from web/libraries/select2/dist/js/select2.min.js rename to drupal-commerce-kickstart/web/libraries/select2/dist/js/select2.min.js