diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 4efff32..a65a9e2 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -4,29 +4,38 @@ /**/*.example /.dbimageBuild +/.dbimageExtra /.ddev-docker-*.yaml /.*downloads +/.global_commands /.homeadditions /.importdb* /.sshimageBuild +/.venv /.webimageBuild +/.webimageExtra /apache/apache-site.conf /commands/.gitattributes +/commands/db/mysql +/commands/host/launch +/commands/web/xdebug +/commands/web/live /config.local.y*ml -/config.*.local.y*ml /db_snapshots +/import-db +/import.yaml /mutagen/mutagen.yml /mutagen/.start-synced /nginx_full/nginx-site.conf /postgres/postgresql.conf /providers/acquia.yaml /providers/lagoon.yaml -/providers/pantheon.yaml /providers/platform.yaml /providers/upsun.yaml /sequelpro.spf -/traefik/config/geo-coop.yaml -/traefik/certs/geo-coop.crt -/traefik/certs/geo-coop.key +/settings/settings.ddev.py +/traefik/config/geo.yaml +/traefik/certs/geo.crt +/traefik/certs/geo.key /xhprof/xhprof_prepend.php /**/README.* diff --git a/.ddev/config.yaml b/.ddev/config.yaml index e7af573..b68660a 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,95 +1,83 @@ -name: geo-coop -type: drupal11 +name: geo +type: drupal9 docroot: web php_version: "8.1" webserver_type: apache-fpm +router_http_port: "80" +router_https_port: "443" xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] database: - type: mariadb - version: "10.5" -use_dns_when_possible: true + type: mariadb + version: "10.5" +nfs_mount_enabled: false +mutagen_enabled: false +use_dns_when_possible: false composer_version: "2" web_environment: [] nodejs_version: "16" -corepack_enable: false -default_container_timeout: "240" -# Key features of DDEV's config.yaml: +# Key features of ddev's config.yaml: # name: <projectname> # Name of the project, automatically provides # http://projectname.ddev.site and https://projectname.ddev.site -# type: <projecttype> # backdrop, cakephp, craftcms, drupal, drupal6, drupal7, drupal8, drupal9, drupal10, drupal11, laravel, magento, magento2, php, shopware6, silverstripe, symfony, typo3, wordpress -# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more -# information on the different project types +# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php # docroot: <relative_path> # Relative path to the directory containing index.php. -# php_version: "8.3" # PHP version to use, "5.6" through "8.4" +# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1" # You can explicitly specify the webimage but this -# is not recommended, as the images are often closely tied to DDEV's' behavior, +# is not recommended, as the images are often closely tied to ddev's' behavior, # so this can break upgrades. # webimage: <docker_image> # nginx/php docker image. # database: -# type: <dbtype> # mysql, mariadb, postgres -# version: <version> # database version, like "10.11" or "8.0" -# MariaDB versions can be 5.5-10.8, 10.11, and 11.4. -# MySQL versions can be 5.5-8.0. -# PostgreSQL versions can be 9-17. +# type: <dbtype> # mysql, mariadb +# version: <version> # database version, like "10.3" or "8.0" +# Note that mariadb_version or mysql_version from v1.18 and earlier +# will automatically be converted to this notation with just a "ddev config --auto" -# router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80) -# router_https_port: <port> # Port for https (defaults to global configuration, usually 443) +# router_http_port: <port> # Port to be used for http (defaults to port 80) +# router_https_port: <port> # Port for https (defaults to 443) -# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" +# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" # Note that for most people the commands -# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better, -# as leaving Xdebug enabled all the time is a big performance hit. +# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, +# as leaving xdebug enabled all the time is a big performance hit. -# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart" +# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart" # Note that for most people the commands -# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better, -# as leaving Xhprof enabled all the time is a big performance hit. +# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better, +# as leaving xhprof enabled all the time is a big performance hit. -# webserver_type: nginx-fpm or apache-fpm +# webserver_type: nginx-fpm # or apache-fpm # timezone: Europe/Berlin -# If timezone is unset, DDEV will attempt to derive it from the host system timezone -# using the $TZ environment variable or the /etc/localtime symlink. # This is the timezone used in the containers and by PHP; # it can be set to any valid timezone, # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # For example Europe/Dublin or MST7MDT # composer_root: <relative_path> -# Relative path to the Composer root directory from the project root. This is +# Relative path to the composer root directory from the project root. This is # the directory which contains the composer.json and where all Composer related # commands are executed. # composer_version: "2" -# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 -# to use the latest major version available at the time your container is built. -# It is also possible to use each other Composer version channel. This includes: -# - 2.2 (latest Composer LTS version) -# - stable -# - preview -# - snapshot -# Alternatively, an explicit Composer version may be specified, for example "2.2.18". -# To reinstall Composer after the image was built, run "ddev debug rebuild". +# if composer_version:"2" it will use the most recent composer v2 +# It can also be set to "1", to get most recent composer v1 +# or "" for the default v2 created at release time. +# It can be set to any existing specific composer version. +# After first project 'ddev start' this will not be updated until it changes -# nodejs_version: "22" -# change from the default system Node.js version to any other version. -# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information -# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation, -# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use, -# can specify any version, and is more robust than using 'nvm'. - -# corepack_enable: false -# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm +# nodejs_version: "16" +# change from the default system Node.js version to another supported version, like 12, 14, 17. +# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any +# Node.js version, including v6, etc. # additional_hostnames: # - somename @@ -103,26 +91,8 @@ default_container_timeout: "240" # would provide http and https URLs for "example.com" and "sub1.example.com" # Please take care with this because it can cause great confusion. -# upload_dirs: "custom/upload/dir" -# -# upload_dirs: -# - custom/upload/dir -# - ../private -# -# would set the destination paths for ddev import-files to <docroot>/custom/upload/dir -# When Mutagen is enabled this path is bind-mounted so that all the files -# in the upload_dirs don't have to be synced into Mutagen. - -# disable_upload_dirs_warning: false -# If true, turns off the normal warning that says -# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set" - -# ddev_version_constraint: "" -# Example: -# ddev_version_constraint: ">= 1.22.4" -# This will enforce that the running ddev version is within this constraint. -# See https://github.com/Masterminds/semver#checking-version-constraints for -# supported constraint formats +# upload_dir: custom/upload/dir +# would set the destination path for ddev import-files to <docroot>/custom/upload/dir # working_dir: # web: /var/www/html @@ -131,25 +101,20 @@ default_container_timeout: "240" # These values specify the destination directory for ddev ssh and the # directory in which commands passed into ddev exec are run. -# omit_containers: [db, ddev-ssh-agent] +# omit_containers: [db, dba, ddev-ssh-agent] # Currently only these containers are supported. Some containers can also be # omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit -# the "db" container, several standard features of DDEV that access the +# the "db" container, several standard features of ddev that access the # database container will be unusable. In the global configuration it is also # possible to omit ddev-router, but not here. -# performance_mode: "global" -# DDEV offers performance optimization strategies to improve the filesystem -# performance depending on your host system. Should be configured globally. -# -# If set, will override the global config. Possible values are: -# - "global": uses the value from the global config. -# - "none": disables performance optimization for this project. -# - "mutagen": enables Mutagen for this project. -# - "nfs": enables NFS for this project. -# -# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs -# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen +# nfs_mount_enabled: false +# Great performance improvement but requires host configuration first. +# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container + +# mutagen_enabled: false +# Experimental performance improvement using mutagen asynchronous updates. +# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen # fail_on_hook_fail: False # Decide whether 'ddev start' should be interrupted by a failing hook @@ -170,12 +135,20 @@ default_container_timeout: "240" # The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic # unless explicitly specified. -# mailpit_http_port: "8025" -# mailpit_https_port: "8026" -# The Mailpit ports can be changed from the default 8025 and 8026 +# phpmyadmin_port: "8036" +# phpmyadmin_https_port: "8037" +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 -# host_mailpit_port: "8025" -# The mailpit port is not normally bound on the host at all, instead being routed +# host_phpmyadmin_port: "8036" +# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be specified and bound. + +# mailhog_port: "8025" +# mailhog_https_port: "8026" +# The MailHog ports can be changed from the default 8025 and 8026 + +# host_mailhog_port: "8025" +# The mailhog port is not normally bound on the host at all, instead being routed # through ddev-router, but it can be bound directly to localhost if specified here. # webimage_extra_packages: [php7.4-tidy, php-bcmath] @@ -196,91 +169,39 @@ default_container_timeout: "240" # If you prefer you can change this to "ddev.local" to preserve # pre-v1.9 behavior. -# ngrok_args: --basic-auth username:pass1234 +# ngrok_args: --subdomain mysite --auth username:pass # Provide extra flags to the "ngrok http" command, see -# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" +# https://ngrok.com/docs#http or run "ngrok http -h" # disable_settings_management: false -# If true, DDEV will not create CMS-specific settings files like -# Drupal's settings.php/settings.ddev.php or TYPO3's additional.php +# If true, ddev will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php # In this case the user must provide all such settings. # You can inject environment variables into the web container with: # web_environment: -# - SOMEENV=somevalue -# - SOMEOTHERENV=someothervalue +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue # no_project_mount: false -# (Experimental) If true, DDEV will not mount the project into the web container; +# (Experimental) If true, ddev will not mount the project into the web container; # the user is responsible for mounting it manually or via a script. # This is to enable experimentation with alternate file mounting strategies. # For advanced users only! # bind_all_interfaces: false # If true, host ports will be bound on all network interfaces, -# not the localhost interface only. This means that ports +# not just the localhost interface. This means that ports # will be available on the local network if the host firewall # allows it. -# default_container_timeout: 120 -# The default time that DDEV waits for all containers to become ready can be increased from -# the default 120. This helps in importing huge databases, for example. - -#web_extra_exposed_ports: -#- name: nodejs -# container_port: 3000 -# http_port: 2999 -# https_port: 3000 -#- name: something -# container_port: 4000 -# https_port: 4000 -# http_port: 3999 -# Allows a set of extra ports to be exposed via ddev-router -# Fill in all three fields even if you don’t intend to use the https_port! -# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start. -# -# The port behavior on the ddev-webserver must be arranged separately, for example -# using web_extra_daemons. -# For example, with a web app on port 3000 inside the container, this config would -# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998 -# web_extra_exposed_ports: -# - name: myapp -# container_port: 3000 -# http_port: 9998 -# https_port: 9999 - -#web_extra_daemons: -#- name: "http-1" -# command: "/var/www/html/node_modules/.bin/http-server -p 3000" -# directory: /var/www/html -#- name: "http-2" -# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" -# directory: /var/www/html - -# override_config: false -# By default, config.*.yaml files are *merged* into the configuration -# But this means that some things can't be overridden -# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge -# and you can't erase existing hooks or all environment variables. -# However, with "override_config: true" in a particular config.*.yaml file, -# 'use_dns_when_possible: false' can override the existing values, and -# hooks: -# post-start: [] -# or -# web_environment: [] -# or -# additional_hostnames: [] -# can have their intended affect. 'override_config' affects only behavior of the -# config.*.yaml file it exists in. - -# Many DDEV commands can be extended to run tasks before or after the -# DDEV command is executed, for example "post-start", "post-import-db", +# Many ddev commands can be extended to run tasks before or after the +# ddev command is executed, for example "post-start", "post-import-db", # "pre-composer", "post-composer" -# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more +# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more # information on the commands that can be extended and the tasks you can define # for them. Example: #hooks: # post-import-db: -# - exec: drush sql:sanitize -# - exec: drush updatedb -# - exec: drush cache:rebuild +# - exec: drush cr +# - exec: drush updb diff --git a/.ddev/php/xdebug.ini b/.ddev/php/xdebug.ini new file mode 100644 index 0000000..700931f --- /dev/null +++ b/.ddev/php/xdebug.ini @@ -0,0 +1,2 @@ +[XDebug] +xdebug.idekey = PHPSTORM diff --git a/.ddev/traefik/certs/geo.crt b/.ddev/traefik/certs/geo.crt deleted file mode 100644 index 82cf1e4..0000000 --- a/.ddev/traefik/certs/geo.crt +++ /dev/null @@ -1,27 +0,0 @@ -#ddev-generated ------BEGIN CERTIFICATE----- -MIIEZjCCAs6gAwIBAgIRAK3U6VQeR8o6nUc7H7ksR+4wDQYJKoZIhvcNAQELBQAw -UzEeMBwGA1UEChMVbWtjZXJ0IGRldmVsb3BtZW50IENBMRQwEgYDVQQLDAttbG5j -bkBuaXhvczEbMBkGA1UEAwwSbWtjZXJ0IG1sbmNuQG5peG9zMB4XDTI1MDEyNTAz -MjEyM1oXDTI3MDQyNTAyMjEyM1owPzEnMCUGA1UEChMebWtjZXJ0IGRldmVsb3Bt -ZW50IGNlcnRpZmljYXRlMRQwEgYDVQQLDAttbG5jbkBuaXhvczCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBALcfIXjuIeyEIrS3ieJNMiyQi0908vdwRRPm -JyF3pi3y59wkD/354M3qkCeciElXaFwocZLLc5aPDaeqe5RxP0MndQ0nX7HbQYyB -9dgoThvrCKbE2hc/75AlpBa/2kVEoefVF7hqMVz1K/TU2fbUTUK0vpU73m4Aqdfa -fN6XVUO4VvGcw1LcxkoIxPqNOU3TqVKyoRdfzchTqkhZv18lqa3IMhQCjAYhjt0q -LIp8n1kSJP46ypubzdIUf6ZxSMlf1A1RYMItbV5nj6DWkCcl3oarpzBVA/aw+WSq -OrhCgHBSKTluFJrQ6y1vUEFgcF6Hldekg2DIg4/uUUUztYz0ExECAwEAAaOByDCB -xTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0jBBgw -FoAUR3Cycv34IqivU0o5oFchbxNKLNswfQYDVR0RBHYwdIILKi5kZGV2LnNpdGWC -CWxvY2FsaG9zdIIMKi5kZGV2LmxvY2FsggtkZGV2LXJvdXRlcoIQZGRldi1yb3V0 -ZXIuZGRldoIYZGRldi1yb3V0ZXIuZGRldl9kZWZhdWx0gg1nZW8uZGRldi5zaXRl -hwR/AAABMA0GCSqGSIb3DQEBCwUAA4IBgQBDkTBQ9ky52hOYo/N4q4wVpZlCM/4k -5pmPeeMz6Qjjq2IvniU8ts1gd+FrVjclY5jaoqlK7ke8fLF/y6Pc4/MMYgCk/l7d -xCGCz6FzaN390M/qg4U4fDhAiauize/89nLd6+Su9cpwgyg8ZedeT4rDbdf0YM+U -zuNN/3xz0r+k+Tno0KJZuggoyfWKWZpsFyQneKqVzO5O92pUIRKwhL04GEaK+rOe -i3umlICWAZ2ENVOY/pc8Z760imO11pXTRnR8C80byk9yM0c6WmzVeMMybNxg3Bx8 -0v3h21/MeZRYcwkDO5pVI6VcJsCh2U60sZghCe1Zrj/lgJ9n1YZYRxLwEcll/2Bi -w/pDIm5LiyBwwa7tYY8bWVaJ/dGKmVY0TbN5Qy1zSSnmwbLa/z6wmDJT6b3mqdU4 -4XYE0Yi2SGXYWyCBoipi6felZmyNJRcZgUAQm28kk2kUgdxQsLVVxL3/IAfZA4mZ -HAUnA3Mpd6z3opjEnYZxx47tHXFRXs3+rWQ= ------END CERTIFICATE----- diff --git a/.ddev/traefik/certs/geo.key b/.ddev/traefik/certs/geo.key deleted file mode 100644 index 24695b8..0000000 --- a/.ddev/traefik/certs/geo.key +++ /dev/null @@ -1,29 +0,0 @@ -#ddev-generated ------BEGIN PRIVATE KEY----- -MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQC3HyF47iHshCK0 -t4niTTIskItPdPL3cEUT5ichd6Yt8ufcJA/9+eDN6pAnnIhJV2hcKHGSy3OWjw2n -qnuUcT9DJ3UNJ1+x20GMgfXYKE4b6wimxNoXP++QJaQWv9pFRKHn1Re4ajFc9Sv0 -1Nn21E1CtL6VO95uAKnX2nzel1VDuFbxnMNS3MZKCMT6jTlN06lSsqEXX83IU6pI -Wb9fJamtyDIUAowGIY7dKiyKfJ9ZEiT+Osqbm83SFH+mcUjJX9QNUWDCLW1eZ4+g -1pAnJd6Gq6cwVQP2sPlkqjq4QoBwUik5bhSa0Ostb1BBYHBeh5XXpINgyIOP7lFF -M7WM9BMRAgMBAAECggEBAIfRryHifYbO+m7PMpWGbBBhpPHp68tameGIcr1/4OFz -qES++p2FGBeiQgkfMHY1PlIcLSCThcfFknspFz+iPymvukFnUrK3zIZKXe1U95n9 -WQ1YM+nKogRn5qx434tAvFUW1+EP4kzwCwosVP2duTAgnrpRDUjJdS+D/dmapML0 -VAE9nlSZmSKd+pwKaOnxP0e+6rWm3/C7dGV7/kjsiE5odbSaYvIIFVaYwbRaDNa+ -5N+Omir2HFGABs9P1T6Pi4muCpTsNY6KbVeurOmYG5juN415B9jb1APuY+LtHCSf -ecbv8KNk7ApFaz7BK1IZJ3lVIPnz4teGm7u2bmhIgAECgYEAxZHb6AexKzP4rbb2 -JycMwQUrsA9AIQ24lfsNq2izsN22BIFxOPvodM7nURV5v7NMlw/CzD2v6MpTbw/J -axK1SigjROGLn1QHIuGhq1ykSX+fKVztzPXyAxpjvnZOrsVMM9BYRv/FtejSQnLF -dKuxwxdg5GqizY4QKDwvgZp1EtECgYEA7UdkVbhr6aRZwQHWE2R9jCccgCzwimSC -nXtje+vFTfKzRdtJ6U4VVY3vIy7BehpVgPZ0p/GjYzh6qLEqHgRVi53Botsedpmg -/oQSqFQrmn/Vob7saUy8B3tOMll1FoEU92YrQEYonrBhyTFMuzfIiwcQwRgUtMR4 -8JCWxbvwjEECgYEAjRHP7oaHh6ytVQR+EIi+f5g8kJLjHHbapSTEpu6014YHsIHo -oWKloboWyvvFmg7hkj9rvUASueq11mh0TmLmVZQBUu6lLlfmXI61TFFy8RQSRouX -NLEsY/DU5as+FWbFOX37en6o4nHiqBWhTeRGomGwCojlxFY6zS/kT+tEyvECgYBJ -ik72omoPx/hpcYBAEm02+whCUatbuTsiRBPZXIGSXx5hEE4gGStTkOIFLYCZr3/A -sKIHS0Uwg1jA3+gF1aIN258gMnmGmKblO1ntAelhwS0dLGdpW3cLepQJ1uALUYaG -Bwxwp03/oPstuDHn9KobLN1se2IvhJVXOfkA3/b2AQKBgQCqkZxAPnfOrN2ethtV -w/jsYzBNfhqTk9/B4G4j/I3GTfltk64JFBZud8ci4e1DJEkchWQZlIbiX9Fnx4+M -CFFmDo2Tn40tQdi50m8BgbMoes9vlXCtSFFgoJUQBLTJ/n8N0y7nN2Gw40/jLmag -mkFdV/iE29uEMgFLDLgcrH6/jw== ------END PRIVATE KEY----- diff --git a/.ddev/traefik/config/geo.yaml b/.ddev/traefik/config/geo.yaml deleted file mode 100644 index b628029..0000000 --- a/.ddev/traefik/config/geo.yaml +++ /dev/null @@ -1,77 +0,0 @@ -#ddev-generated -# If you remove the ddev-generated line above you -# are responsible for maintaining this file. DDEV will not then -# update it, for example if you add `additional_hostnames`, etc. - -http: - routers: - geo-web-80-http: - entrypoints: - - http-80 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-80" - ruleSyntax: v3 - tls: false - # middlewares: - # - "geo-redirectHttps" - geo-web-8025-http: - entrypoints: - - http-8025 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-8025" - ruleSyntax: v3 - tls: false - # middlewares: - # - "geo-redirectHttps" - - - - geo-web-80-https: - entrypoints: - - http-443 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-80" - ruleSyntax: v3 - - tls: true - - geo-web-8025-https: - entrypoints: - - http-8026 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-8025" - ruleSyntax: v3 - - tls: true - - - - middlewares: - geo-redirectHttps: - redirectScheme: - scheme: https - permanent: true - - services: - geo-web-80: - loadbalancer: - servers: - - url: http://ddev-geo-web:80 - - geo-web-8025: - loadbalancer: - servers: - - url: http://ddev-geo-web:8025 - - - - - -tls: - certificates: - - certFile: /mnt/ddev-global-cache/traefik/certs/geo.crt - keyFile: /mnt/ddev-global-cache/traefik/certs/geo.key \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8c45cc4..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "configurations": [ - { - "name": "Listen for Xdebug", - "type": "php", - "request": "launch", - "hostname": "0.0.0.0", - "port": 9003, - "pathMappings": { - "/var/www/html": "${workspaceFolder}" - }, - "preLaunchTask": "DDEV: Enable Xdebug", - "postDebugTask": "DDEV: Disable Xdebug" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f8df0f8..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "intelephense.environment.phpVersion": "8.1" -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 128c7cf..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "DDEV: Enable Xdebug", - "type": "shell", - "command": "ddev xdebug on", - "presentation": { - "reveal": "silent", - "close": true - } - }, - { - "label": "DDEV: Disable Xdebug", - "type": "shell", - "command": "ddev xdebug off", - "presentation": { - "reveal": "silent", - "close": true - } - } - ] -} \ No newline at end of file diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index a991491..6e089c6 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -1,19 +1,18 @@ -Set up +Set up Make sure all your code is pushed, including an updated composer.lock file if you've made any changes to modules, themes, or libraries brought in that way. -```shell +``` cd ~/Projects/drutopia-platform/drutopia_host/hosting_private/ -just git-pull-all -just docker -just deploy-build test news -just deploy-site test geo_test +ahoy git-pull-all +ahoy deploy-build news +ahoy deploy-site geo_test ``` When you're absolutely certain and ready to do a force override quickly: ``` -just deploy-build-and-site-force test news geo_test +ahoy deploy-build news && ahoy deploy-site-force geo_test ``` And same for `_live` of course. diff --git a/README.md b/README.md index f667e81..e28c16d 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,16 @@ Drutopia for special functionality, however. See [DEPLOYMENT.md](DEPLOYMENT.md) for easy deploy instructions with Ahoy. +## Temporary upgrade notes + +There's an error in the update hooks about url alias table not found, but confirmed that all the entries in `old_5ebc14_url_alias` also exist in the new `path_alias` table, so whatever happened there, nothing is lost in the upgrade. + ## Getting started One time: -```shell -mkdir -p ~/Projects/geo -cd ~/Projects/geo -git clone git@git.agaric.com:geo/geo-coop.git +``` +git clone git@gitlab.com:agaric/sites/geo.git cd geo ``` @@ -22,30 +24,84 @@ the following steps to work. Whenever you want a fresh start: -```shell + +``` git pull ddev start ddev composer update -ddev drush -y site:install minimal --existing-config +ddev . drush -y site:install minimal --existing-config ``` Note: If you receive a `Permission denied (publickey).` error it means you need to copy your key into the DDEV container by running `ddev auth ssh`. ## Pull live content down for development -```shell -ddev drush sql-sync @live @self -ddev drush -y rsync --exclude-paths=css:js:php --verbose @live:%files/ @self:%files +``` +drush sql-sync @live @self +drush -y rsync --exclude-paths=css:js:php --verbose @live:%files/ @self:%files ``` -## Compile CSS -```shell -ddev npm run sass-dev +## Running the migration in development + +Download the D7 files via the Backup and Migrate module. + +Put the D7 files in the following location: ``` +<Project Root>/d7/sites/default/files/ +``` +There is a reference to the `sites/default/files` in the database so that structure is mandatory for the migration. -Or when ready to commit for production deploy: +The path in the `upgrade_d7_file.yml` migration file is different because this is executed inside the docker container so in the docker container the <Project Root> is: `/var/www/html/` but no need to re-create those folders in the host machine. + +Download a database dump of the D7 site via the Backup and Migrate module. + +Create a database called `drupal7`: + +Use `ddev describe` to see what the host and port are for your local environment, and use that in the first line here: ``` -ddev npm run sass-prod +mysql --host=127.0.0.1 --port=32779 --user=root --password=root --database=db +CREATE DATABASE drupal7; +GRANT ALL ON drupal7.* to 'db'@'%' IDENTIFIED BY 'db'; ``` + +Now `ctrl+c` out of there, and, again substituting the host and port for your own, import your file from whereever you placed and named your db SQL dump: + +``` +mysql --host=127.0.0.1 --port=32779 --user=root --password=root --database=drupal7 < data/db.mysql +``` + +(Above per [instructions for creating another database in ddev](https://stackoverflow.com/a/49785024/1943924).) + +Once the files are in the correct place and the database has been created we can run the following to run all the migrations: + +``` +ddev . drush mim --group="migrate_drupal_7_geo" +``` +Note: The migration will partially fail because of missing files. For now, re-run the migration command and it will complete the migration. + +## Running the migration on the hosted instance + +1. Refresh files and database from live. + - Obtain the latest from the prior site via [Migrate and Backup](http://geo.coop/admin/config/system/backup_migrate): database, and public files, as two separate downloads. The following commands assume the files saved as `files.tar.gz` and `database.sql.gz` + - Upload these to the server: `scp *.gz geo_live@drutopia.org:` + - SSH to server: `ssh geo_live@drutopia.org` + - Unzip the uploaded database file: `gunzip database.sql.gz` + - Drop the existing tables: `drop-tables.sh geo_legacy` + - Reload the uploaded database: `mysql geo_legacy < database.sql` + - Change to the files folder and untar them: `cd site/d7/sites/default/files/` and then: `tar xzf ~/files.tar.gz` (this will take a couple minutes). + - The server side is ready! Log off by typing `ctrl+d` +1. Now perform a deployment with drutopia_hosting. This will install the site using the minimal profile and existing config. Set the vars accordingly (drupal_install and drupal_forceinstall must be True), if needed: `ahoy vault-edit` + - Deploy a new build, as needed: `ahoy deploy-build news` + - Deploy the site. With a forced re-install, a migration will be performed automatically: `ahoy deploy-site geo_live` + +## Post go-live tasks + +1. Remove all d7 files: `rm -rf site/d7` and `rm geo_legacy.sql`, etc. +1. Change the site settings in hosting: + - config_import -> True + - php_settings_code -> blank +1. Change the news build settings in hosting: + - remove custom build commands (i.e. sed) +1. At this point, the deploy should be typical (deploy-build/deploy-site as normal) diff --git a/UPGRADE.md b/UPGRADE.md index 4375345..0f4d00c 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -1,22 +1,15 @@ ## Uninstall - ### The following will be uninstalled automatically on deploy to D9-latest (now merged into master branch) - - Color - Quick Edit - Seven - ### The following can be removed manually after the D10 upgrade is complete - - Stable (uninstall and remove from composer.json) - Geo upgrade (this one is actually now used during the upgrade, and it may not hurt to keep it around, though it can be uninstalled at the end) - ### Migration related modules - -Modules related to the migration from D7 to D8 are still enabled, they can probably be disabled, but this can be done after the upgrade is finished. +modules related to the migration from D7 to D8 are still enabled, they can probably be disabled, but this can be done after the upgrade is finished. ## Drupal 9.3.3 -> Drupal 9 latest - 1. Add the following to the vault member: ``` post_deploy: @@ -25,10 +18,7 @@ post_deploy: ``` 2. Deploy master branch to site 3. Remove the post_deploy command from the vault member - ## Drupal 9 latest -> Drupal 10 - -1. Deploy drupal10-rebased branch to site +1. Deploy drupal10 branch to site 2. Edit media items and apply cropping where needed (likely the hero blocks in header and footer will be tiny) 3. Uninstall Stable theme and Geo Upgrade custom module (remember to commit this change) -4. After finally deployed to live, remove the root composer dependency on honeypot (this was there because honeypot needed a constraint in order to apply database updates correctly) diff --git a/composer.json b/composer.json index cc6ae2b..134fcd7 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,11 @@ { "name": "agaric-sites/geo", "description": "Drutopia-based site for the Grassroots Economic Organizing collective and potentially other news sites.", - "homepage": "https://geo.coop", "type": "project", "license": "GPL-2.0-or-later", "minimum-stability": "dev", "prefer-stable": true, + "homepage": "https://drutopia.org", "support": { "docs": "http://docs.drutopia.org/en/latest", "issues": "https://gitlab.com/drutopia/drutopia/-/issues" @@ -15,6 +15,10 @@ "type": "git", "url": "git@git.drupal.org:issue/empty_page-3287186.git" }, + "drupal/google_analytics": { + "type": "git", + "url": "git@git.drupal.org:issue/google_analytics-3357831.git" + }, "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" @@ -24,15 +28,12 @@ "composer/installers": "^2", "cweagans/composer-patches": "^1.7", "drupal/admin_toolbar": "^3", + "drupal/allowed_formats": "^2", "drupal/antibot": "^2", "drupal/asset_injector": "^2", - "drupal/auto_entitylabel": "^3", + "drupal/auto_entitylabel": "^3.0@beta", "drupal/backup_migrate": "^5", - "drupal/better_exposed_filters": "^6", - "drupal/block_class": "^4", - "drupal/bpmn_io": "^1", - "drupal/cancel_button": "^1", - "drupal/ckeditor_iframe": "^3.0@beta", + "drupal/block_class": "^2", "drupal/ckeditorheight": "^1", "drupal/classitup": "^1", "drupal/comment_notify": "^1", @@ -50,7 +51,6 @@ "drupal/drd_agent": "^4", "drupal/drutopia_collection": "2.0.x-dev@dev", "drupal/drutopia_core": "2.0.x-dev@dev", - "drupal/drutopia_organization": "2.0.x-dev@dev", "drupal/drutopia_paragraph_title": "^1", "drupal/drutopia_site": "2.0.x-dev@dev", "drupal/easy_breadcrumb": "^2", @@ -64,26 +64,26 @@ "drupal/environment_indicator": "^4", "drupal/eva": "^3", "drupal/exif_orientation": "^1", - "drupal/facet_bot_blocker": "^1.0", "drupal/facets": "dev-3.0.x as 2.0.x-dev", - "drupal/fakeobjects": "^2", "drupal/field_defaults": "^2", "drupal/field_formatter_class": "^1", "drupal/field_token_value": "^3", "drupal/filter_perms": "^1", "drupal/fitvids": "^2", "drupal/fixed_block_content": "^1", - "drupal/footnotes": "^4", + "drupal/footnotes": "^3", "drupal/geolocation": "^3", + "drupal/gin": "^3", "drupal/gin_gutenberg": "^1", "drupal/gin_login": "^2", - "drupal/givebutter": "1.0.x-dev@dev", - "drupal/google_analytics": "^4", + "drupal/gin_toolbar": "^1", + "drupal/google_analytics": "dev-3357831-php-8.2-compatibility", "drupal/gutenberg": "^2", "drupal/http_cache_control": "^2", "drupal/http_client_error_status": "^3", "drupal/ief_complex_open": "^1", "drupal/indieweb": "^1", + "drupal/inline_entity_form": "^1.0@RC", "drupal/inotherwords": "^3", "drupal/insert": "^3", "drupal/key": "^1.14", @@ -110,25 +110,19 @@ "drupal/plausible": "^2.0@beta", "drupal/prepopulate": "^2", "drupal/preview_link": "^2", - "drupal/printable": "^3", "drupal/r4032login": "^2", "drupal/rabbit_hole": "^1.0@beta", - "drupal/regionincontent": "^1", - "drupal/registration_role": "^2", - "drupal/require_on_publish": "^1", "drupal/role_delegation": "^1", - "drupal/scheduler": "^1", - "drupal/schema_metatag": "^3", + "drupal/schema_metatag": "^2", "drupal/scn": "^2", "drupal/search404": "^2", "drupal/search_api_autocomplete": "^1.6", "drupal/search_api_saved_searches": "^1", - "drupal/seckit": "^2", + "drupal/seckit": "^2.0", "drupal/select_or_other": "^4.0", "drupal/shield": "^1.4", - "drupal/simple_sitemap": "^4.1", - "drupal/smart_date": "^4", - "drupal/sms": "^2", + "drupal/smart_date": "^4.0", + "drupal/sms": "^2.0", "drupal/social_post_facebook": "3.0.x-dev@dev", "drupal/social_post_twitter": "3.x-dev@dev", "drupal/stable": "^2.0", @@ -139,18 +133,16 @@ "drupal/textarea_widget_for_text": "^1.1", "drupal/tomselect": "1.0.x-dev@dev", "drupal/trim": "^2", - "drupal/twig_tweak": "^3", - "drupal/ui_patterns": "^1", - "drupal/unique_content_field_validation": "^1.1", + "drupal/twig_tweak": "^3.2", + "drupal/twigsuggest": "^1", "drupal/view_password": "^6", "drupal/view_unpublished": "^1.0", "drupal/viewsreference": "^1", "drupal/visitors": "^2.17", "drupal/webform": "^6.0", "drupal/weight": "^3.3", - "drupal/workflow_buttons": "1.x-dev", "drupal/wysiwyg_linebreaks": "^2", - "drush/drush": "*", + "drush/drush": "^12", "drutopia/drutopia": "2.0.x-dev", "league/commonmark": "^1.0", "vlucas/phpdotenv": "^5.1", @@ -202,8 +194,9 @@ "patches": { "drupal/core": { "Adding attributes to views-view-list.html.twig doesn't work if Views List class Style option is empty": "https://www.drupal.org/files/issues/2023-03-16/2845400-24.patch", - "Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2024-08-21/2648950-284.patch", - "Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch" + "Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2021-12-01/2648950-257.patch", + "Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch", + "Entity reference filter for all entity reference fields 3347343": "https://www.drupal.org/files/issues/2024-04-19/drupal-3347343-MR4053--20240419-167.diff" }, "drupal/ds": { "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" diff --git a/composer.lock b/composer.lock index ba7688e..a1e32f7 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": "6bd753978fb10f60c53d2cc9ad07ba28", + "content-hash": "04bfd4e0ee89f80e2855dd74de6f1283", "packages": [ { "name": "abraham/twitteroauth", @@ -279,16 +279,16 @@ }, { "name": "caxy/php-htmldiff", - "version": "v0.1.16", + "version": "v0.1.15", "source": { "type": "git", "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "5c580b4f09285c078f0c5cb261573412a736a8cb" + "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/5c580b4f09285c078f0c5cb261573412a736a8cb", - "reference": "5c580b4f09285c078f0c5cb261573412a736a8cb", + "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/6342b02ddb86fd36093ad7e2db2efc21f01ab7cd", + "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd", "shasum": "" }, "require": { @@ -334,9 +334,9 @@ ], "support": { "issues": "https://github.com/caxy/php-htmldiff/issues", - "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.16" + "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.15" }, - "time": "2025-01-22T17:03:45+00:00" + "time": "2023-11-05T23:49:04+00:00" }, { "name": "cebe/markdown", @@ -404,16 +404,16 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "3.6.1", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab" + "reference": "7794c268309a6fd7aeecfd1246a01238c14384c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab", - "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/7794c268309a6fd7aeecfd1246a01238c14384c4", + "reference": "7794c268309a6fd7aeecfd1246a01238c14384c4", "shasum": "" }, "require": { @@ -458,34 +458,34 @@ "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/3.6.1" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.0" }, - "time": "2024-06-06T17:36:37+00:00" + "time": "2024-05-20T12:50:42+00:00" }, { "name": "commerceguys/addressing", - "version": "v2.2.4", + "version": "v1.4.2", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda" + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda", - "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", "shasum": "" }, "require": { - "doctrine/collections": "^1.6 || ^2.0", - "php": ">=8.0" + "doctrine/collections": "^1.2 || ^2.0", + "php": ">=7.3" }, "require-dev": { "ext-json": "*", - "mikey179/vfsstream": "^1.6.11", - "phpunit/phpunit": "^9.6", - "squizlabs/php_codesniffer": "^3.7", - "symfony/validator": "^5.4 || ^6.3 || ^7.0" + "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" @@ -493,7 +493,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -522,22 +522,22 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v2.2.4" + "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" }, - "time": "2025-01-13T16:03:24+00:00" + "time": "2023-02-15T10:11:14+00:00" }, { "name": "composer/ca-bundle", - "version": "1.5.6", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "f65c239c970e7f072f067ab78646e9f0b2935175" + "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175", - "reference": "f65c239c970e7f072f067ab78646e9f0b2935175", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", + "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", "shasum": "" }, "require": { @@ -547,8 +547,8 @@ }, "require-dev": { "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8 || ^9", - "psr/log": "^1.0 || ^2.0 || ^3.0", + "psr/log": "^1.0", + "symfony/phpunit-bridge": "^4.2 || ^5", "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", @@ -584,7 +584,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.5.6" + "source": "https://github.com/composer/ca-bundle/tree/1.5.0" }, "funding": [ { @@ -600,20 +600,20 @@ "type": "tidelift" } ], - "time": "2025-03-06T14:30:56+00:00" + "time": "2024-03-15T14:00:32+00:00" }, { "name": "composer/installers", - "version": "v2.3.0", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e" + "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e", - "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e", + "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35", + "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35", "shasum": "" }, "require": { @@ -621,12 +621,12 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "composer/composer": "^1.10.27 || ^2.7", - "composer/semver": "^1.7.2 || ^3.4.0", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-phpunit": "^1", - "symfony/phpunit-bridge": "^7.1.1", - "symfony/process": "^5 || ^6 || ^7" + "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": { @@ -683,7 +683,6 @@ "cockpit", "codeigniter", "concrete5", - "concreteCMS", "croogo", "dokuwiki", "drupal", @@ -730,7 +729,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v2.3.0" + "source": "https://github.com/composer/installers/tree/v2.2.0" }, "funding": [ { @@ -746,28 +745,28 @@ "type": "tidelift" } ], - "time": "2024-06-24T20:46:46+00:00" + "time": "2022-08-20T06:45:11+00:00" }, { "name": "composer/semver", - "version": "3.4.3", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^1.11", - "symfony/phpunit-bridge": "^3 || ^7" + "phpstan/phpstan": "^1.4", + "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", "extra": { @@ -811,7 +810,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.3" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -827,20 +826,20 @@ "type": "tidelift" } ], - "time": "2024-09-19T14:15:21+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "consolidation/annotated-command", - "version": "4.10.1", + "version": "4.10.0", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b" + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/362310b13ececa9f6f0a4a880811fa08fecc348b", - "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c", + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c", "shasum": "" }, "require": { @@ -881,9 +880,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.10.1" + "source": "https://github.com/consolidation/annotated-command/tree/4.10.0" }, - "time": "2024-12-13T19:55:40+00:00" + "time": "2024-04-05T21:05:39+00:00" }, { "name": "consolidation/config", @@ -1049,16 +1048,16 @@ }, { "name": "consolidation/output-formatters", - "version": "4.6.0", + "version": "4.5.0", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe" + "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5fd5656718d7068a02d046f418a7ba873d5abbfe", - "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/7a611b01eb48eb19cd54672339fc08c0985bf540", + "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540", "shasum": "" }, "require": { @@ -1097,9 +1096,9 @@ "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.6.0" + "source": "https://github.com/consolidation/output-formatters/tree/4.5.0" }, - "time": "2024-10-18T14:02:48+00:00" + "time": "2024-04-02T15:18:52+00:00" }, { "name": "consolidation/robo", @@ -1231,16 +1230,16 @@ }, { "name": "consolidation/site-alias", - "version": "4.1.1", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40" + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", "shasum": "" }, "require": { @@ -1284,22 +1283,22 @@ "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.1.1" + "source": "https://github.com/consolidation/site-alias/tree/4.1.0" }, - "time": "2024-12-13T19:05:11+00:00" + "time": "2024-04-05T15:58:04+00:00" }, { "name": "consolidation/site-process", - "version": "5.4.2", + "version": "5.4.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da" + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", "shasum": "" }, "require": { @@ -1341,9 +1340,9 @@ "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.4.2" + "source": "https://github.com/consolidation/site-process/tree/5.4.0" }, - "time": "2024-12-13T19:25:56+00:00" + "time": "2024-04-06T00:00:28+00:00" }, { "name": "cweagans/composer-patches", @@ -1395,16 +1394,16 @@ }, { "name": "dflydev/dot-access-data", - "version": "v3.0.3", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + "reference": "f41715465d65213d644d3141a6a93081be5d3549" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", - "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", "shasum": "" }, "require": { @@ -1464,22 +1463,67 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" }, - "time": "2024-07-08T12:26:09+00:00" + "time": "2022-10-27T11:44:00+00:00" }, { - "name": "doctrine/annotations", - "version": "1.14.4", + "name": "dg/twitter-php", + "version": "v3.8", "source": { "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915" + "url": "https://github.com/dg/twitter-php.git", + "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915", - "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915", + "url": "https://api.github.com/repos/dg/twitter-php/zipball/d9370c9759138200a77ca86abcb0c5ddfe857c68", + "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.4.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + } + ], + "description": "Small and easy Twitter library for PHP", + "homepage": "https://github.com/dg/twitter-php", + "keywords": [ + "oauth", + "twitter" + ], + "support": { + "source": "https://github.com/dg/twitter-php/tree/v3.8" + }, + "time": "2019-02-08T16:20:01+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": { @@ -1490,11 +1534,11 @@ }, "require-dev": { "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "~1.4.10 || ^1.10.28", + "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.4 || ^7", - "vimeo/psalm": "^4.30 || ^5.14" + "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" @@ -1540,35 +1584,35 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.14.4" + "source": "https://github.com/doctrine/annotations/tree/1.14.3" }, - "time": "2024-09-05T10:15:52+00:00" + "time": "2023-02-01T09:20:38+00:00" }, { "name": "doctrine/collections", - "version": "2.3.0", + "version": "2.2.2", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d" + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d", - "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d", + "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59", + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59", "shasum": "" }, "require": { "doctrine/deprecations": "^1", - "php": "^8.1", - "symfony/polyfill-php84": "^1.30" + "php": "^8.1" }, "require-dev": { "doctrine/coding-standard": "^12", "ext-json": "*", "phpstan/phpstan": "^1.8", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^10.5" + "phpunit/phpunit": "^10.5", + "vimeo/psalm": "^5.11" }, "type": "library", "autoload": { @@ -1612,7 +1656,7 @@ ], "support": { "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/2.3.0" + "source": "https://github.com/doctrine/collections/tree/2.2.2" }, "funding": [ { @@ -1628,34 +1672,33 @@ "type": "tidelift" } ], - "time": "2025-03-22T10:17:19+00:00" + "time": "2024-04-18T06:56:21+00:00" }, { "name": "doctrine/deprecations", - "version": "1.1.5", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, - "conflict": { - "phpunit/phpunit": "<=7.5 || >=13" - }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12 || ^13", - "phpstan/phpstan": "1.4.10 || 2.1.11", - "phpstan/phpstan-phpunit": "^1.0 || ^2", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", - "psr/log": "^1 || ^2 || ^3" + "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" @@ -1663,7 +1706,7 @@ "type": "library", "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "src" + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" } }, "notification-url": "https://packagist.org/downloads/", @@ -1674,9 +1717,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.5" + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" }, - "time": "2025-04-07T20:06:18+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/lexer", @@ -1756,173 +1799,18 @@ ], "time": "2024-02-05T11:35:39+00:00" }, - { - "name": "dompdf/dompdf", - "version": "v3.1.0", - "source": { - "type": "git", - "url": "https://github.com/dompdf/dompdf.git", - "reference": "a51bd7a063a65499446919286fb18b518177155a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/a51bd7a063a65499446919286fb18b518177155a", - "reference": "a51bd7a063a65499446919286fb18b518177155a", - "shasum": "" - }, - "require": { - "dompdf/php-font-lib": "^1.0.0", - "dompdf/php-svg-lib": "^1.0.0", - "ext-dom": "*", - "ext-mbstring": "*", - "masterminds/html5": "^2.0", - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "ext-gd": "*", - "ext-json": "*", - "ext-zip": "*", - "mockery/mockery": "^1.3", - "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11", - "squizlabs/php_codesniffer": "^3.5", - "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0" - }, - "suggest": { - "ext-gd": "Needed to process images", - "ext-gmagick": "Improves image processing performance", - "ext-imagick": "Improves image processing performance", - "ext-zlib": "Needed for pdf stream compression" - }, - "type": "library", - "autoload": { - "psr-4": { - "Dompdf\\": "src/" - }, - "classmap": [ - "lib/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1" - ], - "authors": [ - { - "name": "The Dompdf Community", - "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" - } - ], - "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", - "homepage": "https://github.com/dompdf/dompdf", - "support": { - "issues": "https://github.com/dompdf/dompdf/issues", - "source": "https://github.com/dompdf/dompdf/tree/v3.1.0" - }, - "time": "2025-01-15T14:09:04+00:00" - }, - { - "name": "dompdf/php-font-lib", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/dompdf/php-font-lib.git", - "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", - "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" - }, - "type": "library", - "autoload": { - "psr-4": { - "FontLib\\": "src/FontLib" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1-or-later" - ], - "authors": [ - { - "name": "The FontLib Community", - "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md" - } - ], - "description": "A library to read, parse, export and make subsets of different types of font files.", - "homepage": "https://github.com/dompdf/php-font-lib", - "support": { - "issues": "https://github.com/dompdf/php-font-lib/issues", - "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1" - }, - "time": "2024-12-02T14:37:59+00:00" - }, - { - "name": "dompdf/php-svg-lib", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/dompdf/php-svg-lib.git", - "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/eb045e518185298eb6ff8d80d0d0c6b17aecd9af", - "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": "^7.1 || ^8.0", - "sabberworm/php-css-parser": "^8.4" - }, - "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Svg\\": "src/Svg" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "authors": [ - { - "name": "The SvgLib Community", - "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md" - } - ], - "description": "A library to read, parse and export to PDF SVG files.", - "homepage": "https://github.com/dompdf/php-svg-lib", - "support": { - "issues": "https://github.com/dompdf/php-svg-lib/issues", - "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.0" - }, - "time": "2024-04-29T13:26:35+00:00" - }, { "name": "dragonmantank/cron-expression", - "version": "v3.4.0", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "8c784d071debd117328803d86b2097615b457500" + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", - "reference": "8c784d071debd117328803d86b2097615b457500", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", "shasum": "" }, "require": { @@ -1935,14 +1823,10 @@ "require-dev": { "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", "phpunit/phpunit": "^7.0|^8.0|^9.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, "autoload": { "psr-4": { "Cron\\": "src/Cron/" @@ -1966,7 +1850,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" }, "funding": [ { @@ -1974,71 +1858,35 @@ "type": "github" } ], - "time": "2024-10-09T13:47:03+00:00" - }, - { - "name": "drupal-ckeditor-libraries-group/fakeobjects", - "version": "4.22.1", - "source": { - "type": "git", - "url": "https://github.com/drupal-ckeditor-libraries-group/fakeobjects.git", - "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal-ckeditor-libraries-group/fakeobjects/zipball/a1de732aa3dbc63349f8b4653b1c7788c93ae25c", - "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c", - "shasum": "" - }, - "type": "drupal-library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later", - "LGPL-2.1-or-later", - "MPL-1.1" - ], - "description": "CKEditor 4 fakeobjects plugin", - "homepage": "https://ckeditor.com/cke4/addon/fakeobjects", - "keywords": [ - "CKEditor", - "fakeobjects", - "plugin" - ], - "support": { - "issues": "https://github.com/ckeditor/ckeditor4/issues", - "source": "https://github.com/ckeditor/ckeditor4/tree/master/plugins/fakeobjects" - }, - "time": "2023-02-08T14:53:49+00:00" + "time": "2023-08-10T19:36:49+00:00" }, { "name": "drupal/address", - "version": "2.0.4", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "2.0.4" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip", - "reference": "2.0.4", - "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" }, "require": { - "commerceguys/addressing": "^2.1.1", - "drupal/core": "^9.5 || ^10 || ^11", - "php": "^8.0" + "commerceguys/addressing": "^1.4.2", + "drupal/core": "^9.2 || ^10", + "php": "^7.3 || ^8.0" }, "require-dev": { - "drupal/diff": "^1", - "drupal/feeds": "^3", - "drupal/token": "^1" + "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1746462054", + "version": "8.x-1.12", + "datestamp": "1684710176", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2055,7 +1903,7 @@ "homepage": "https://www.drupal.org/user/86106" }, { - "name": "centarro", + "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" }, { @@ -2079,20 +1927,20 @@ }, { "name": "drupal/admin_toolbar", - "version": "3.5.3", + "version": "3.4.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "3.5.3" + "reference": "3.4.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.3.zip", - "reference": "3.5.3", - "shasum": "363cdd6e6ca47983900f40793edf9a8b26f132bb" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip", + "reference": "3.4.2", + "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "require-dev": { "drupal/admin_toolbar_tools": "*" @@ -2100,8 +1948,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.5.3", - "datestamp": "1740156799", + "version": "3.4.2", + "datestamp": "1696006195", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2134,20 +1982,12 @@ "homepage": "https://www.drupal.org/u/matio89", "role": "Maintainer" }, - { - "name": "fethi.krout", - "homepage": "https://www.drupal.org/user/3206765" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, { "name": "matio89", "homepage": "https://www.drupal.org/user/2320090" }, { - "name": "musa.thomas", + "name": "Musa.thomas", "homepage": "https://www.drupal.org/user/1213824" }, { @@ -2168,10 +2008,10 @@ }, { "name": "drupal/admin_toolbar-admin_toolbar_search", - "version": "3.5.3", + "version": "3.4.2", "require": { "drupal/admin_toolbar": "^3", - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "require-dev": { "drupal/admin_toolbar_tools": "*" @@ -2179,8 +2019,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "3.5.3", - "datestamp": "1740156799", + "version": "3.4.2", + "datestamp": "1696006195", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2200,10 +2040,6 @@ "name": "bolbol", "homepage": "https://www.drupal.org/user/3400070" }, - { - "name": "dydave", - "homepage": "https://www.drupal.org/user/467284" - }, { "name": "eme", "homepage": "https://www.drupal.org/user/542492" @@ -2212,16 +2048,12 @@ "name": "fethi.krout", "homepage": "https://www.drupal.org/user/3206765" }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, { "name": "matio89", "homepage": "https://www.drupal.org/user/2320090" }, { - "name": "musa.thomas", + "name": "Musa.thomas", "homepage": "https://www.drupal.org/user/1213824" }, { @@ -2235,17 +2067,17 @@ } }, { - "name": "drupal/admin_toolbar_tools", - "version": "3.5.3", + "name": "drupal/admin_toolbar_links_access_filter", + "version": "3.4.2", "require": { "drupal/admin_toolbar": "*", - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.5.3", - "datestamp": "1740156799", + "version": "3.4.2", + "datestamp": "1696006195", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2266,8 +2098,62 @@ "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "dydave", - "homepage": "https://www.drupal.org/user/467284" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" + }, + { + "name": "fethi.krout", + "homepage": "https://www.drupal.org/user/3206765" + }, + { + "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 workaround for the common problem that users with 'Use the administration pages and help' permission see menu links they don't have access permission for. Once the issue <a href='https://www.drupal.org/node/296693'>https://www.drupal.org/node/296693</a> be solved, this module will be deprecated.", + "homepage": "https://www.drupal.org/project/admin_toolbar", + "support": { + "source": "https://git.drupalcode.org/project/admin_toolbar" + } + }, + { + "name": "drupal/admin_toolbar_tools", + "version": "3.4.2", + "require": { + "drupal/admin_toolbar": "*", + "drupal/core": "^9.2 || ^10" + }, + "type": "metapackage", + "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": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" + }, + { + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { "name": "eme", @@ -2277,16 +2163,12 @@ "name": "fethi.krout", "homepage": "https://www.drupal.org/user/3206765" }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, { "name": "matio89", "homepage": "https://www.drupal.org/user/2320090" }, { - "name": "musa.thomas", + "name": "Musa.thomas", "homepage": "https://www.drupal.org/user/1213824" }, { @@ -2302,29 +2184,26 @@ }, { "name": "drupal/allowed_formats", - "version": "3.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "3.0.1" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-3.0.1.zip", - "reference": "3.0.1", - "shasum": "9dfaed3ab8425ee94146914fdb492cefc6c6bb4d" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-2.0.0.zip", + "reference": "2.0.0", + "shasum": "ac6c6d398f303608ced7e9cd9d4556a728dc41f0" }, "require": { - "drupal/core": "^10.1 || ^11" - }, - "conflict": { - "drupal/core": "<10.1.0" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.1", - "datestamp": "1723158950", + "version": "2.0.0", + "datestamp": "1669170410", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2357,7 +2236,7 @@ "role": "Maintainer" } ], - "description": "Hides info about the selected text format. The 'allowed formats' functionality has been moved to core since Drupal 10.1.0.", + "description": "Limit which text formats are available for each field instance.", "homepage": "https://www.drupal.org/project/allowed_formats", "support": { "source": "http://cgit.drupalcode.org/allowed_formats", @@ -2366,26 +2245,26 @@ }, { "name": "drupal/antibot", - "version": "2.0.4", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/antibot.git", - "reference": "2.0.4" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/antibot-2.0.4.zip", - "reference": "2.0.4", - "shasum": "58b215291b250ea410194693cbac2da6f54a8530" + "url": "https://ftp.drupal.org/files/projects/antibot-2.0.3.zip", + "reference": "2.0.3", + "shasum": "b26b603299ee3067e0aa3875ff752815f21d2f0b" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1723819813", + "version": "2.0.3", + "datestamp": "1708358087", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2418,26 +2297,26 @@ }, { "name": "drupal/asset_injector", - "version": "2.21.0", + "version": "2.20.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/asset_injector.git", - "reference": "8.x-2.21" + "reference": "8.x-2.20" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/asset_injector-8.x-2.21.zip", - "reference": "8.x-2.21", - "shasum": "24dc111e995d6a33cb9f11f106b0d1e716e92767" + "url": "https://ftp.drupal.org/files/projects/asset_injector-8.x-2.20.zip", + "reference": "8.x-2.20", + "shasum": "dc60e96bd4873419be591e8b28f75a8f869f59b5" }, "require": { - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.3 || ^10.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.21", - "datestamp": "1723044656", + "version": "8.x-2.20", + "datestamp": "1714727611", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2467,30 +2346,29 @@ }, { "name": "drupal/auto_entitylabel", - "version": "3.4.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.4" + "reference": "8.x-3.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "9b3d7bc8e450ae008b3f48fed0dd9dace03ddbb5" + "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "c2aad97b43bdda72bdd25d4cbc2e877efe53fcf0" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^9.3 || ^10" }, "require-dev": { - "drupal/book": "^1.0", "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1736308389", + "version": "8.x-3.1", + "datestamp": "1717510049", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2519,11 +2397,7 @@ "homepage": "https://www.drupal.org/user/45640" }, { - "name": "mandclu", - "homepage": "https://www.drupal.org/user/52136" - }, - { - "name": "pravin ajaaz", + "name": "Pravin Ajaaz", "homepage": "https://www.drupal.org/user/2910049" }, { @@ -2535,7 +2409,7 @@ "homepage": "https://www.drupal.org/user/3326031" }, { - "name": "vladimiraus", + "name": "VladimirAus", "homepage": "https://www.drupal.org/user/673120" } ], @@ -2548,27 +2422,27 @@ }, { "name": "drupal/automated_crop", - "version": "4.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/automated_crop.git", - "reference": "4.0.2" + "reference": "3.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/automated_crop-4.0.2.zip", - "reference": "4.0.2", - "shasum": "9126a9965c4159fc05c4c473aa311cf7f88a1418" + "url": "https://ftp.drupal.org/files/projects/automated_crop-3.0.3.zip", + "reference": "3.0.3", + "shasum": "36bad203747db7b94f8e334a6e44e06231bce5b7" }, "require": { - "drupal/core": "^10.1 || ^11", + "drupal/core": "^9 || ^10", "drupal/crop": "^2.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.2", - "datestamp": "1738584452", + "version": "3.0.3", + "datestamp": "1711631660", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2602,29 +2476,26 @@ }, { "name": "drupal/autosave_form", - "version": "1.10.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/autosave_form.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "99e270c30bf09a2688a5b23814beced13f8f7ba4" + "reference": "7fe6cc5dd44ce23272878204c613ae3dfd112e86" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.10", - "datestamp": "1738605622", + "version": "8.x-1.4+1-dev", + "datestamp": "1698662713", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -2646,20 +2517,20 @@ }, { "name": "drupal/backup_migrate", - "version": "5.1.0", + "version": "5.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/backup_migrate.git", - "reference": "5.1.0" + "reference": "5.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.1.0.zip", - "reference": "5.1.0", - "shasum": "bfc523c4d01f2f5dcbb2a612455b8f0a84d651b2" + "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip", + "reference": "5.0.3", + "shasum": "bc263f601f7a21248d4000a372d04a417df7e326" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "suggest": { "defuse/php-encryption": "Optional encryption of saved backups." @@ -2667,8 +2538,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "5.1.0", - "datestamp": "1732034636", + "version": "5.0.3", + "datestamp": "1671366510", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2686,7 +2557,7 @@ "role": "Developer" }, { - "name": "damienmckenna", + "name": "DamienMcKenna", "homepage": "https://www.drupal.org/user/108450" }, { @@ -2710,105 +2581,28 @@ "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/" } }, - { - "name": "drupal/better_exposed_filters", - "version": "6.0.6", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/better_exposed_filters.git", - "reference": "6.0.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip", - "reference": "6.0.6", - "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/jquery_ui": "*", - "drupal/jquery_ui_datepicker": "*", - "drupal/jquery_ui_slider": "*", - "drupal/jquery_ui_touch_punch": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.0.6", - "datestamp": "1716397541", - "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" - }, - { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" - } - ], - "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_class", - "version": "4.0.1", + "version": "2.0.11", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_class.git", - "reference": "4.0.1" + "reference": "2.0.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip", - "reference": "4.0.1", - "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb" + "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip", + "reference": "2.0.11", + "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.1", - "datestamp": "1745427425", + "version": "2.0.11", + "datestamp": "1672065313", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2889,26 +2683,26 @@ }, { "name": "drupal/block_visibility_groups", - "version": "2.0.4", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "2.0.4" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.4.zip", - "reference": "2.0.4", - "shasum": "40ad2b557d610ea9aff3b81be6d6867287b6f34d" + "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.1.zip", + "reference": "2.0.1", + "shasum": "ae268cc3a5821205832b66069dcb8f60b8f20ab9" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1737112821", + "version": "2.0.1", + "datestamp": "1676002877", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2917,11 +2711,11 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "damienmckenna", + "name": "DamienMcKenna", "homepage": "https://www.drupal.org/user/108450" }, { @@ -2947,77 +2741,25 @@ "issues": "https://www.drupal.org/project/issues/block_visibility_groups" } }, - { - "name": "drupal/bpmn_io", - "version": "1.1.5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/bpmn_io.git", - "reference": "1.1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bpmn_io-1.1.5.zip", - "reference": "1.1.5", - "shasum": "02dc10526d1e83195bd2a93b1fb28835755c7527" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "^1.0", - "drupal/eca_modeller_bpmn": "*", - "php": ">=7.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.5", - "datestamp": "1744192147", - "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": "boromino", - "homepage": "https://www.drupal.org/user/859722" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "BPMN modeller for ECA, integrated into Drupal's admin UI.", - "homepage": "https://www.drupal.org/project/bpmn_io", - "support": { - "source": "https://drupal.org/project/bpmn_io", - "issues": "https://drupal.org/project/issues/bpmn_io" - } - }, { "name": "drupal/bulma", - "version": "dev-1.x", + "version": "dev-3.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bulma.git", - "reference": "56483c2ff11e8f925af20a15b0cc7636fc74ad45" + "reference": "7c03ba35b30299ca6d74a7af5c1f77172fe5b6d6" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^9.2 || ^10 || ^11" }, "type": "drupal-theme", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-3.0.x": "3.0.x-dev" }, "drupal": { - "version": "8.x-1.1+13-dev", - "datestamp": "1721362481", + "version": "3.0.x-dev", + "datestamp": "1715637064", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -3030,15 +2772,11 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "g4mbini", - "homepage": "https://www.drupal.org/user/2533498" - }, - { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -3119,84 +2857,28 @@ "source": "https://git.drupalcode.org/project/bulma_components" } }, - { - "name": "drupal/cancel_button", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/cancel_button.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cancel_button-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "07ce620c57cdd16ac751f78d9c3397ea9350d1f8" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1732804482", - "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": "danmuzyka", - "homepage": "https://www.drupal.org/user/48685" - }, - { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, - { - "name": "kevin.dutra", - "homepage": "https://www.drupal.org/user/1312744" - }, - { - "name": "sukanya.ramakrishnan", - "homepage": "https://www.drupal.org/user/3320069" - } - ], - "description": "This small module adds a Cancel button to Entity forms.", - "homepage": "https://www.drupal.org/project/cancel_button", - "support": { - "source": "https://git.drupalcode.org/project/cancel_button" - } - }, { "name": "drupal/captcha", - "version": "2.0.7", + "version": "2.0.5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "2.0.7" + "reference": "2.0.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-2.0.7.zip", - "reference": "2.0.7", - "shasum": "8e97ba41810811bcd5d7e8b714cdc0b664dd8eec" + "url": "https://ftp.drupal.org/files/projects/captcha-2.0.5.zip", + "reference": "2.0.5", + "shasum": "0c39d27a99b53f6517ef25ceef1ac5e333964547" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": ">=9.4 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.7", - "datestamp": "1732250192", + "version": "2.0.5", + "datestamp": "1691598525", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3212,7 +2894,7 @@ ], "authors": [ { - "name": "anybody", + "name": "Anybody", "homepage": "https://www.drupal.org/user/291091" }, { @@ -3220,7 +2902,7 @@ "homepage": "https://www.drupal.org/user/1021502" }, { - "name": "grevil", + "name": "Grevil", "homepage": "https://www.drupal.org/user/3668491" }, { @@ -3236,7 +2918,7 @@ "homepage": "https://www.drupal.org/user/116002" }, { - "name": "robloach", + "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" }, { @@ -3255,125 +2937,6 @@ "issues": "https://www.drupal.org/project/issues/captcha" } }, - { - "name": "drupal/charts", - "version": "5.1.5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/charts.git", - "reference": "5.1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/charts-5.1.5.zip", - "reference": "5.1.5", - "shasum": "e0ef459623556ef3d9faa5656df9e35bfe4b2876" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "5.1.5", - "datestamp": "1744408472", - "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": "Daniel Cothran (andileco)", - "homepage": "https://www.drupal.org/u/andileco", - "role": "Maintainer" - }, - { - "name": "Nia Kathoni (nikathone)", - "homepage": "https://www.drupal.org/u/nikathone", - "role": "Maintainer" - }, - { - "name": "Nate Lampton (quicksketch)", - "homepage": "https://www.drupal.org/u/quicksketch", - "role": "Maintainer" - }, - { - "name": "brmassa", - "homepage": "https://www.drupal.org/u/brmassa", - "role": "Maintainer" - }, - { - "name": "Rafal W (kenorb)", - "homepage": "https://www.drupal.org/u/kenorb", - "role": "Maintainer" - }, - { - "name": "Pierre Vriens (pierrevriens)", - "homepage": "https://www.drupal.org/u/pierrevriens", - "role": "Maintainer" - }, - { - "name": "Majali (rashad612)", - "homepage": "https://www.drupal.org/u/rashad612", - "role": "Maintainer" - } - ], - "description": "A charting API for Drupal that provides chart elements and integration with Views", - "homepage": "https://drupal.org/project/charts", - "support": { - "source": "https://git.drupalcode.org/project/charts", - "issues": "https://www.drupal.org/project/issues/charts?version=all_5.1.*", - "docs": "https://www.drupal.org/docs/contributed-modules/charts" - } - }, - { - "name": "drupal/charts_chartjs", - "version": "5.1.5", - "require": { - "drupal/charts": "*", - "drupal/core": "^10.3 || ^11" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "5.1.5", - "datestamp": "1744408472", - "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": "andileco", - "homepage": "https://www.drupal.org/user/2054544" - }, - { - "name": "nikathone", - "homepage": "https://www.drupal.org/user/2421800" - }, - { - "name": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" - } - ], - "description": "Charts module integration with Chart.js.", - "homepage": "https://www.drupal.org/project/charts", - "support": { - "source": "https://git.drupalcode.org/project/charts" - } - }, { "name": "drupal/checklistapi", "version": "2.1.6", @@ -3419,15 +2982,15 @@ "email": "travis.carden@gmail.com" }, { - "name": "rajeshreeputra", + "name": "Rajeshreeputra", "homepage": "https://www.drupal.org/user/3418561" }, { - "name": "traviscarden", + "name": "TravisCarden", "homepage": "https://www.drupal.org/user/236758" }, { - "name": "vladimiraus", + "name": "VladimirAus", "homepage": "https://www.drupal.org/user/673120" } ], @@ -3464,8 +3027,8 @@ "version": "1.0.2", "datestamp": "1695740655", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -3474,6 +3037,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "dczepierga", + "homepage": "https://www.drupal.org/user/911466" + }, { "name": "hass", "homepage": "https://www.drupal.org/user/85918" @@ -3491,9 +3058,13 @@ "homepage": "https://www.drupal.org/user/1078742" }, { - "name": "magnus", + "name": "Magnus", "homepage": "https://www.drupal.org/user/73919" }, + { + "name": "mkesicki", + "homepage": "https://www.drupal.org/user/922884" + }, { "name": "nod_", "homepage": "https://www.drupal.org/user/598310" @@ -3507,7 +3078,7 @@ "homepage": "https://www.drupal.org/user/2793801" }, { - "name": "wim leers", + "name": "Wim Leers", "homepage": "https://www.drupal.org/user/99777" }, { @@ -3525,60 +3096,6 @@ "source": "https://git.drupalcode.org/project/ckeditor" } }, - { - "name": "drupal/ckeditor_iframe", - "version": "3.0.0-beta3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ckeditor_iframe.git", - "reference": "3.0.0-beta3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditor_iframe-3.0.0-beta3.zip", - "reference": "3.0.0-beta3", - "shasum": "4df0f006a218c1f40c833a5afa30ee52321ed2e1" - }, - "require": { - "drupal/core": "^9 || ^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.0-beta3", - "datestamp": "1743012017", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Kevin Quillen (kevinquillen)", - "homepage": "https://www.drupal.org/u/kevinquillen", - "role": "Maintainer" - }, - { - "name": "Brian Osborne (bkosborne)", - "homepage": "https://www.drupal.org/u/bkosborne", - "role": "Maintainer" - } - ], - "description": "Adds the iFrame dialog plugin to CKEditor.", - "homepage": "http://drupal.org/project/ckeditor_iframe", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/ckeditor_iframe", - "issues": "https://drupal.org/project/issues/ckeditor_iframe" - } - }, { "name": "drupal/ckeditorheight", "version": "1.9.0", @@ -3620,6 +3137,10 @@ { "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" + }, + { + "name": "heliogabal", + "homepage": "https://www.drupal.org/user/998658" } ], "description": "Adjusts CKEditor height to field row setting until we have https://www.drupal.org/node/2788905.", @@ -3807,29 +3328,29 @@ }, { "name": "drupal/components", - "version": "3.1.0", + "version": "3.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/components.git", - "reference": "3.1.0" + "reference": "3.0.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/components-3.1.0.zip", - "reference": "3.1.0", - "shasum": "a9d9f7517f54038d0d6fa68185d80e26d2ad1d8d" + "url": "https://ftp.drupal.org/files/projects/components-3.0.0-beta3.zip", + "reference": "3.0.0-beta3", + "shasum": "47ced4332f0a655ca38ae1b54e97a8e78d59f0bc" }, "require": { - "drupal/core": "^10.2 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.0", - "datestamp": "1725921122", + "version": "3.0.0-beta3", + "datestamp": "1651759488", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -3840,15 +3361,11 @@ "authors": [ { "name": "JohnAlbin", - "homepage": "https://www.drupal.org/user/1036766", + "homepage": "https://www.drupal.org/user/32095", "email": "virtually.johnalbin@gmail.com" }, { - "name": "johnalbin", - "homepage": "https://www.drupal.org/user/32095" - }, - { - "name": "robloach", + "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" } ], @@ -3984,21 +3501,21 @@ }, { "name": "drupal/config_distro", - "version": "2.1.0-alpha1", + "version": "2.0.0-alpha2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "2.1.0-alpha1" + "reference": "2.0.0-alpha2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_distro-2.1.0-alpha1.zip", - "reference": "2.1.0-alpha1", - "shasum": "913fa76468e19b730bd23955ef3640b3dab56481" + "url": "https://ftp.drupal.org/files/projects/config_distro-2.0.0-alpha2.zip", + "reference": "2.0.0-alpha2", + "shasum": "8341305e0eb86208fb71a351e8c922300141a804" }, "require": { "drupal/config_filter": "*", - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.3 || ^10" }, "require-dev": { "drupal/config_distro_filter": "*", @@ -4011,8 +3528,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0-alpha1", - "datestamp": "1743102880", + "version": "2.0.0-alpha2", + "datestamp": "1691786887", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4059,17 +3576,17 @@ }, { "name": "drupal/config_distro_filter", - "version": "2.1.0-alpha1", + "version": "2.0.0-alpha2", "require": { "drupal/config_distro": "*", "drupal/config_filter": "*", - "drupal/core": "^10.3 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.1.0-alpha1", - "datestamp": "1743102880", + "version": "2.0.0-alpha2", + "datestamp": "1691786887", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4110,20 +3627,20 @@ }, { "name": "drupal/config_filter", - "version": "2.7.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-2.7" + "reference": "8.x-2.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip", - "reference": "8.x-2.7", - "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50" + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "conflict": { "drush/drush": "<10" @@ -4134,8 +3651,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.7", - "datestamp": "1727472458", + "version": "8.x-2.6", + "datestamp": "1698308577", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4179,20 +3696,20 @@ }, { "name": "drupal/config_merge", - "version": "2.0.0-alpha2", + "version": "2.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_merge.git", - "reference": "2.0.0-alpha2" + "reference": "2.0.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_merge-2.0.0-alpha2.zip", - "reference": "2.0.0-alpha2", - "shasum": "a0183d548daafe52b2b271f3502766bb519f824f" + "url": "https://ftp.drupal.org/files/projects/config_merge-2.0.0-alpha1.zip", + "reference": "2.0.0-alpha1", + "shasum": "704f856a7e2f11006d0f74336f9260bbcb060cef" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11", + "drupal/core": "^9.3 || ^10", "php": ">=8.0" }, "require-dev": { @@ -4201,8 +3718,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1743089777", + "version": "2.0.0-alpha1", + "datestamp": "1682377160", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4222,10 +3739,6 @@ "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" @@ -4234,6 +3747,10 @@ "name": "joegraduate", "homepage": "https://www.drupal.org/user/789384" }, + { + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -4255,26 +3772,27 @@ }, { "name": "drupal/config_normalizer", - "version": "1.0.0-beta2", + "version": "1.0.0-beta1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_normalizer.git", - "reference": "8.x-1.0-beta2" + "reference": "8.x-1.0-beta1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "98916cdca633176698b62236a6f7b2d5e0c12e45" + "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "f69ffbdf947553c717775c94f30272d67a1a2e83" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/config_filter": "*", + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1743088690", + "version": "8.x-1.0-beta1", + "datestamp": "1683148813", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -4287,75 +3805,62 @@ ], "authors": [ { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "role": "Original author" + "name": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" }, { - "name": "Fabian Bircher (bircher)", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" + "name": "bircher", + "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "Benjamin Melançon (mlncn)", - "homepage": "https://www.drupal.org/u/mlncn", - "role": "Maintainer" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "Joe Parsons (joegraduate)", - "homepage": "https://www.drupal.org/u/joegraduate", - "role": "Maintainer" + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" }, { "name": "tadean", - "homepage": "https://www.drupal.org/u/tadean", - "role": "Maintainer" + "homepage": "https://www.drupal.org/user/3608919" }, { - "name": "Artem Dmitriiev (a.dmitriiev)", - "homepage": "https://www.drupal.org/u/a.dmitriiev", - "role": "Maintainer" - }, - { - "name": "Merlin Axel Rutz (geek-merlin)", - "homepage": "https://www.drupal.org/u/geek-merlin", - "role": "Maintainer" - }, - { - "name": "Campus Web Services The University of Arizona (uarizona)", - "homepage": "https://www.drupal.org/u/uarizona", - "role": "Maintainer" + "name": "uarizona", + "homepage": "https://www.drupal.org/user/3763238" } ], "description": "Normalizes configuration for comparison.", "homepage": "https://www.drupal.org/project/config_normalizer", "support": { - "source": "https://git.drupal.org/project/config_normalizer.git", - "issues": "https://www.drupal.org/project/issues/config_normalizer" + "source": "https://git.drupalcode.org/project/config_normalizer" } }, { "name": "drupal/config_perms", - "version": "2.3.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_perms.git", - "reference": "8.x-2.3" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.3.zip", - "reference": "8.x-2.3", - "shasum": "6ec87b91b7ff23a41c5ee266b507e882851b7828" + "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "06bc0d6587fba76149b4de7ccc32f6c6b8bc382a" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.3", - "datestamp": "1746157140", + "version": "8.x-2.1", + "datestamp": "1685589568", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4375,20 +3880,20 @@ "name": "Docc", "homepage": "https://www.drupal.org/user/310132" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { - "name": "megakeegman", + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, + { + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -4412,26 +3917,26 @@ }, { "name": "drupal/config_provider", - "version": "3.0.0-alpha2", + "version": "3.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "3.0.0-alpha2" + "reference": "3.0.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-3.0.0-alpha2.zip", - "reference": "3.0.0-alpha2", - "shasum": "b6f80827f37ba1170530907bdda584c27ffe981d" + "url": "https://ftp.drupal.org/files/projects/config_provider-3.0.0-alpha1.zip", + "reference": "3.0.0-alpha1", + "shasum": "0d0ba67f65d34fae7529d7a390f3d34d827f0595" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha2", - "datestamp": "1743107961", + "version": "3.0.0-alpha1", + "datestamp": "1682387859", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4444,93 +3949,73 @@ ], "authors": [ { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "role": "Original author" + "name": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" }, { - "name": "Fabian Bircher (bircher)", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" + "name": "bircher", + "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "Pieter Frenssen (pfrenssen)", - "homepage": "https://www.drupal.org/u/pfrenssen", - "role": "Maintainer" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "Keegan Rankin (megakeegman)", - "homepage": "https://www.drupal.org/u/megakeegman", - "role": "Maintainer" + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" }, { - "name": "Benjamin Melançon (mlncn)", - "homepage": "https://www.drupal.org/u/mlncn", - "role": "Maintainer" + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" }, { - "name": "Joe Parsons (joegraduate)", - "homepage": "https://www.drupal.org/u/joegraduate", - "role": "Maintainer" + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, + { + "name": "pfrenssen", + "homepage": "https://www.drupal.org/user/382067" }, { "name": "tadean", - "homepage": "https://www.drupal.org/u/tadean", - "role": "Maintainer" - }, - { - "name": "David Valdez (gnuget)", - "homepage": "https://www.drupal.org/u/gnuget", - "role": "Maintainer" - }, - { - "name": "Merlin Axel Rutz (geek-merlin)", - "homepage": "https://www.drupal.org/u/geek-merlin", - "role": "Maintainer" - }, - { - "name": "Artem Dmitriiev (a.dmitriiev)", - "homepage": "https://www.drupal.org/u/a.dmitriiev", - "role": "Maintainer" - }, - { - "name": "Campus Web Services The University of Arizona (uarizona)", - "homepage": "https://www.drupal.org/u/uarizona", - "role": "Maintainer" + "homepage": "https://www.drupal.org/user/3608919" } ], "description": "Enables provision of configuration by extensions.", "homepage": "https://www.drupal.org/project/config_provider", "support": { - "source": "https://git.drupal.org/project/config_provider.git", - "issues": "https://www.drupal.org/project/issues/config_provider" + "source": "https://git.drupalcode.org/project/config_provider" } }, { "name": "drupal/config_snapshot", - "version": "2.0.0", + "version": "2.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_snapshot.git", - "reference": "2.0.0" + "reference": "2.0.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0.zip", - "reference": "2.0.0", - "shasum": "183e6f293e7ef142290c5e69cbca986895e12a2d" + "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0-alpha1.zip", + "reference": "2.0.0-alpha1", + "shasum": "35cb1bb74f07c8973cee19eac71aa4124ea3dd0f" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1736287398", + "version": "2.0.0-alpha1", + "datestamp": "1682448084", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -4580,34 +4065,34 @@ }, { "name": "drupal/config_sync", - "version": "3.0.0-alpha4", + "version": "3.0.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "3.0.0-alpha4" + "reference": "3.0.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha4.zip", - "reference": "3.0.0-alpha4", - "shasum": "d49536d18be2162b2069c50c444a6745d5c9e8d7" + "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha3.zip", + "reference": "3.0.0-alpha3", + "shasum": "8664153679b63fe1c0b84702374122a149fc3846" }, "require": { "drupal/config_distro": "^2.0.0-alpha2", "drupal/config_distro_filter": "*", - "drupal/config_filter": "^2.7", - "drupal/config_merge": "^2.0.0-alpha2", - "drupal/config_normalizer": "^1.0-beta2", - "drupal/config_provider": "^3.0.0-alpha2", - "drupal/config_snapshot": "^2.0", - "drupal/config_update": "^2.0.0-alpha4", - "drupal/core": "^9 || ^10 || ^11" + "drupal/config_filter": "^1.10||^2.4", + "drupal/config_merge": "^2.0.0-alpha1", + "drupal/config_normalizer": "^1.0-beta1", + "drupal/config_provider": "^3.0.0-alpha1", + "drupal/config_snapshot": "^2.0.0-alpha1", + "drupal/config_update": "^2.0.0-alpha2", + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha4", - "datestamp": "1743110767", + "version": "3.0.0-alpha3", + "datestamp": "1692125273", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4671,26 +4156,26 @@ }, { "name": "drupal/config_update", - "version": "2.0.0-alpha4", + "version": "2.0.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_update.git", - "reference": "2.0.0-alpha4" + "reference": "2.0.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip", - "reference": "2.0.0-alpha4", - "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e" + "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip", + "reference": "2.0.0-alpha3", + "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11" + "drupal/core": "^9.4 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha4", - "datestamp": "1724596931", + "version": "2.0.0-alpha3", + "datestamp": "1683807608", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4707,12 +4192,8 @@ "homepage": "https://www.drupal.org/user/3573206" }, { - "name": "pasqualle", + "name": "Pasqualle", "homepage": "https://www.drupal.org/user/80733" - }, - { - "name": "vishalkhode", - "homepage": "https://www.drupal.org/user/2439156" } ], "description": "Provides basic revert and update functionality for other modules.", @@ -4758,10 +4239,6 @@ "name": "alexpott", "homepage": "https://www.drupal.org/user/157725" }, - { - "name": "astonvictor", - "homepage": "https://www.drupal.org/user/3466615" - }, { "name": "chr.fritsch", "homepage": "https://www.drupal.org/user/2103716" @@ -4889,16 +4366,16 @@ }, { "name": "drupal/core", - "version": "10.4.7", + "version": "10.2.6", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "547fa74348dda2ecb4a3e752f88a5c40be675d64" + "reference": "cec9bc9e829e53e667da844edd5f4897be88d860" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/547fa74348dda2ecb4a3e752f88a5c40be675d64", - "reference": "547fa74348dda2ecb4a3e752f88a5c40be675d64", + "url": "https://api.github.com/repos/drupal/core/zipball/cec9bc9e829e53e667da844edd5f4897be88d860", + "reference": "cec9bc9e829e53e667da844edd5f4897be88d860", "shasum": "" }, "require": { @@ -4944,7 +4421,7 @@ "symfony/serializer": "^6.4", "symfony/validator": "^6.4", "symfony/yaml": "^6.4", - "twig/twig": "^3.15.0" + "twig/twig": "^3.5.0" }, "conflict": { "drush/drush": "<12.4.3" @@ -4982,29 +4459,29 @@ "extra": { "drupal-scaffold": { "file-mapping": { - "[web-root]/.htaccess": "assets/scaffold/files/htaccess", - "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", - "[web-root]/index.php": "assets/scaffold/files/index.php", + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", - "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", - "[web-root]/update.php": "assets/scaffold/files/update.php", - "[web-root]/web.config": "assets/scaffold/files/web.config", - "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", - "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", - "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[web-root]/.htaccess": "assets/scaffold/files/htaccess", "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", - "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt", - "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", - "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", - "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", - "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", + "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", + "[web-root]/update.php": "assets/scaffold/files/update.php", + "[web-root]/web.config": "assets/scaffold/files/web.config", + "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", - "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php" + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" } } }, @@ -5037,8 +4514,7 @@ "lib/Drupal/Core/DrupalKernel.php", "lib/Drupal/Core/DrupalKernelInterface.php", "lib/Drupal/Core/Installer/InstallerRedirectTrait.php", - "lib/Drupal/Core/Site/Settings.php", - "lib/Drupal/Component/Datetime/Time.php" + "lib/Drupal/Core/Site/Settings.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -5047,22 +4523,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.4.7" + "source": "https://github.com/drupal/core/tree/10.2.6" }, - "time": "2025-05-08T04:06:41+00:00" + "time": "2024-05-01T21:00:24+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.4.7", + "version": "10.2.6", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55" + "reference": "adc702b6ef38a0446abe90267acb96aa806995cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55", - "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/adc702b6ef38a0446abe90267acb96aa806995cf", + "reference": "adc702b6ef38a0446abe90267acb96aa806995cf", "shasum": "" }, "require": { @@ -5097,80 +4573,80 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.4.7" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.6" }, - "time": "2024-08-22T14:31:30+00:00" + "time": "2024-04-09T07:27:23+00:00" }, { "name": "drupal/core-recommended", - "version": "10.4.7", + "version": "10.2.6", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "308b63fa05111c15f4a36919718b7c2d016af892" + "reference": "6fbff9a26e06c047ec4a2313fc423a7a1c51c850" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/308b63fa05111c15f4a36919718b7c2d016af892", - "reference": "308b63fa05111c15f4a36919718b7c2d016af892", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/6fbff9a26e06c047ec4a2313fc423a7a1c51c850", + "reference": "6fbff9a26e06c047ec4a2313fc423a7a1c51c850", "shasum": "" }, "require": { "asm89/stack-cors": "~v2.2.0", - "composer/semver": "~3.4.3", - "doctrine/annotations": "~1.14.4", - "doctrine/deprecations": "~1.1.3", - "doctrine/lexer": "~2.1.1", - "drupal/core": "10.4.7", + "composer/semver": "~3.4.0", + "doctrine/annotations": "~1.14.3", + "doctrine/deprecations": "~1.1.2", + "doctrine/lexer": "~2.1.0", + "drupal/core": "10.2.6", "egulias/email-validator": "~4.0.2", - "guzzlehttp/guzzle": "~7.9.2", - "guzzlehttp/promises": "~2.0.4", - "guzzlehttp/psr7": "~2.7.0", - "masterminds/html5": "~2.9.0", - "mck89/peast": "~v1.16.3", - "pear/archive_tar": "~1.5.0", + "guzzlehttp/guzzle": "~7.8.1", + "guzzlehttp/promises": "~2.0.2", + "guzzlehttp/psr7": "~2.6.2", + "masterminds/html5": "~2.8.1", + "mck89/peast": "~v1.15.4", + "pear/archive_tar": "~1.4.14", "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.16", + "pear/pear-core-minimal": "~v1.10.14", "pear/pear_exception": "~v1.0.2", "psr/cache": "~3.0.0", "psr/container": "~2.0.2", "psr/event-dispatcher": "~1.0.0", "psr/http-client": "~1.0.3", - "psr/http-factory": "~1.1.0", - "psr/log": "~3.0.2", + "psr/http-factory": "~1.0.2", + "psr/log": "~3.0.0", "ralouphie/getallheaders": "~3.0.3", - "sebastian/diff": "~4.0.6", - "symfony/console": "~v6.4.15", - "symfony/dependency-injection": "~v6.4.16", - "symfony/deprecation-contracts": "~v3.5.1", - "symfony/error-handler": "~v6.4.14", - "symfony/event-dispatcher": "~v6.4.13", - "symfony/event-dispatcher-contracts": "~v3.5.1", - "symfony/filesystem": "~v6.4.13", - "symfony/finder": "~v6.4.13", - "symfony/http-foundation": "~v6.4.16", - "symfony/http-kernel": "~v6.4.16", - "symfony/mailer": "~v6.4.13", - "symfony/mime": "~v6.4.13", - "symfony/polyfill-ctype": "~v1.31.0", - "symfony/polyfill-iconv": "~v1.31.0", - "symfony/polyfill-intl-grapheme": "~v1.31.0", - "symfony/polyfill-intl-idn": "~v1.31.0", - "symfony/polyfill-intl-normalizer": "~v1.31.0", - "symfony/polyfill-mbstring": "~v1.31.0", - "symfony/polyfill-php83": "~v1.31.0", - "symfony/process": "~v6.4.15", - "symfony/psr-http-message-bridge": "~v6.4.13", - "symfony/routing": "~v6.4.16", - "symfony/serializer": "~v6.4.15", - "symfony/service-contracts": "~v3.5.1", - "symfony/string": "~v6.4.15", - "symfony/translation-contracts": "~v3.5.1", - "symfony/validator": "~v6.4.16", - "symfony/var-dumper": "~v6.4.15", - "symfony/var-exporter": "~v6.4.13", - "symfony/yaml": "~v6.4.13", - "twig/twig": "~v3.19.0" + "sebastian/diff": "~4.0.5", + "symfony/console": "~v6.4.1", + "symfony/dependency-injection": "~v6.4.1", + "symfony/deprecation-contracts": "~v3.4.0", + "symfony/error-handler": "~v6.4.0", + "symfony/event-dispatcher": "~v6.4.0", + "symfony/event-dispatcher-contracts": "~v3.4.0", + "symfony/filesystem": "~v6.4.0", + "symfony/finder": "~v6.4.0", + "symfony/http-foundation": "~v6.4.0", + "symfony/http-kernel": "~v6.4.1", + "symfony/mailer": "~v6.4.0", + "symfony/mime": "~v6.4.0", + "symfony/polyfill-ctype": "~v1.28.0", + "symfony/polyfill-iconv": "~v1.28.0", + "symfony/polyfill-intl-grapheme": "~v1.28.0", + "symfony/polyfill-intl-idn": "~v1.28.0", + "symfony/polyfill-intl-normalizer": "~v1.28.0", + "symfony/polyfill-mbstring": "~v1.28.0", + "symfony/polyfill-php83": "~v1.28.0", + "symfony/process": "~v6.4.0", + "symfony/psr-http-message-bridge": "~v6.4.0", + "symfony/routing": "~v6.4.1", + "symfony/serializer": "~v6.4.1", + "symfony/service-contracts": "~v3.4.0", + "symfony/string": "~v6.4.0", + "symfony/translation-contracts": "~v3.4.0", + "symfony/validator": "~v6.4.0", + "symfony/var-dumper": "~v6.4.0", + "symfony/var-exporter": "~v6.4.1", + "symfony/yaml": "~v6.4.0", + "twig/twig": "~v3.8.0" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -5182,32 +4658,32 @@ ], "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.4.7" + "source": "https://github.com/drupal/core-recommended/tree/10.2.6" }, - "time": "2025-05-08T04:06:41+00:00" + "time": "2024-05-01T21:00:24+00:00" }, { "name": "drupal/crop", - "version": "2.4.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-2.4" + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "be11fad0abf1d53544d35cb4ca6cedd8e91d2542" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "8e109cf60077f4c605c4d1f895cb3dc28613a23a" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.4", - "datestamp": "1720455738", + "version": "8.x-2.3", + "datestamp": "1665437894", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5245,27 +4721,27 @@ }, { "name": "drupal/cshs", - "version": "4.0.3", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/cshs.git", - "reference": "4.0.3" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cshs-4.0.3.zip", - "reference": "4.0.3", - "shasum": "0e637ddae6b6217c6c7dca36c3fd232f25fb2495" + "url": "https://ftp.drupal.org/files/projects/cshs-4.0.2.zip", + "reference": "4.0.2", + "shasum": "dc936684e50770d1c4ca541eccffba7d348a4a1c" }, "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.2 || ^10", "php": ">=8.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.3", - "datestamp": "1732597582", + "version": "4.0.2", + "datestamp": "1710037257", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5311,27 +4787,27 @@ }, { "name": "drupal/csp", - "version": "1.40.0", + "version": "1.31.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/csp.git", - "reference": "8.x-1.40" + "reference": "8.x-1.31" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.40.zip", - "reference": "8.x-1.40", - "shasum": "37f39e13f9afce4ac4a67c207ae0659b924c1e99" + "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.31.zip", + "reference": "8.x-1.31", + "shasum": "f5279b78f2edac89d5cb2a731a246da9d429573a" }, "require": { - "drupal/core": "^10.1.3 || ^11", + "drupal/core": "~10.0.0 || ^10.1.3 || ^11", "ext-json": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.40", - "datestamp": "1741745877", + "version": "8.x-1.31", + "datestamp": "1714819870", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5360,26 +4836,26 @@ }, { "name": "drupal/ctools", - "version": "4.1.0", + "version": "3.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "4.1.0" + "reference": "8.x-3.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip", - "reference": "4.1.0", - "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip", + "reference": "8.x-3.14", + "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.0", - "datestamp": "1718144949", + "version": "8.x-3.14", + "datestamp": "1684299793", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5513,41 +4989,33 @@ }, { "name": "drupal/dashboards", - "version": "2.1.10", + "version": "2.1.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dashboards.git", - "reference": "2.1.10" + "reference": "2.1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.10.zip", - "reference": "2.1.10", - "shasum": "5b2df04b0138ea0d6213bb2df1b6636de9dcf6c7" + "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.7.zip", + "reference": "2.1.7", + "shasum": "e45de9cffd19640061ecad69adfa8450f0182ea5" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", + "drupal/core": "^9.4 || ^10", "laminas/laminas-feed": "^2.17" }, "require-dev": { - "drupal/layout_builder_restrictions": "*", "drupal/matomo": "*", "drupal/matomo_reporting_api": "*", "drupal/statistics": "*", "drupal/webform": "*" }, - "suggest": { - "drupal/layout_builder_restrictions": "Manage which fields & layouts are available in Layout Builder.", - "drupal/matomo": "Reports site visitor analytics to a Matomo instance.", - "drupal/matomo_reporting_api": "Allows to retrieve reports from the Matomo API.", - "drupal/statistics": "Logs how many times content is viewed.", - "drupal/webform": "Enables the creation of webforms and questionnaires." - }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.10", - "datestamp": "1737573144", + "version": "2.1.7", + "datestamp": "1710850211", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5560,12 +5028,8 @@ ], "authors": [ { - "name": "erik seifert", + "name": "Erik Seifert", "homepage": "https://www.drupal.org/user/161429" - }, - { - "name": "leymannx", - "homepage": "https://www.drupal.org/user/2482808" } ], "description": "Dashboards based on Layout Builder.", @@ -5580,26 +5044,26 @@ }, { "name": "drupal/date_popup", - "version": "2.0.2", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/date_popup.git", - "reference": "2.0.2" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/date_popup-2.0.2.zip", - "reference": "2.0.2", - "shasum": "fc40e429d927b80aaf75093a4458d9cddbf7f921" + "url": "https://ftp.drupal.org/files/projects/date_popup-2.0.1.zip", + "reference": "2.0.1", + "shasum": "15cab5f339d60569c2380545b6e16b5f3612b98f" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1721718242", + "version": "2.0.1", + "datestamp": "1694567369", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5628,26 +5092,26 @@ }, { "name": "drupal/datetimehideseconds", - "version": "1.5.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/datetimehideseconds.git", - "reference": "8.x-1.5" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/datetimehideseconds-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "81857730eb3a610d00d1119f337222005b0bc1a0" + "url": "https://ftp.drupal.org/files/projects/datetimehideseconds-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "fdfa8eeb35ec9577bf95caf49473c71d2ff011c0" }, "require": { - "drupal/core": "^8.7.7 || ^9 || ^10 || ^11" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1730329777", + "version": "8.x-1.4", + "datestamp": "1703164799", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5660,54 +5124,50 @@ ], "authors": [ { - "name": "Andi Rüther (anruether)", - "homepage": "https://www.drupal.org/u/anruether", - "role": "Maintainer" + "name": "anruether", + "homepage": "https://www.drupal.org/user/894458" }, { - "name": "Merlin Axel Rutz (geek-merlin)", - "homepage": "https://www.drupal.org/u/geek-merlin", - "role": "Maintainer" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "Rainer Halbmann (heliogabal)", - "homepage": "https://www.drupal.org/u/heliogabal", - "role": "Maintainer" + "name": "heliogabal", + "homepage": "https://www.drupal.org/user/998658" } ], "description": "Provides the option to hide seconds in datetime fields.", "homepage": "https://www.drupal.org/project/datetimehideseconds", "support": { - "source": "https://git.drupalcode.org/project/datetimehideseconds", - "issues": "https://www.drupal.org/project/issues/datetimehideseconds" + "source": "https://git.drupalcode.org/project/datetimehideseconds" } }, { "name": "drupal/default_content", - "version": "2.0.0-alpha3", + "version": "2.0.0-alpha2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/default_content.git", - "reference": "2.0.0-alpha3" + "reference": "2.0.0-alpha2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha3.zip", - "reference": "2.0.0-alpha3", - "shasum": "fdd90c70bd91896835f6ba5ec42c260c1a144a2b" + "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha2.zip", + "reference": "2.0.0-alpha2", + "shasum": "5c365ea21b0be63dc00ec2db50179291d6fb3d89" }, "require": { - "drupal/core": "^9.1 || ^10 || ^11" + "drupal/core": "^9.1 || ^10" }, "require-dev": { - "drupal/hal": "^1 || ^2", + "drupal/hal": " ^9 || ^1 || ^2", "drupal/paragraphs": "^1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha3", - "datestamp": "1724492420", + "version": "2.0.0-alpha2", + "datestamp": "1659466706", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -5715,7 +5175,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10 || ^11 || ^12" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -5733,7 +5193,7 @@ "homepage": "https://www.drupal.org/user/1852732" }, { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -5749,7 +5209,7 @@ "homepage": "https://www.drupal.org/user/395439" }, { - "name": "sam152", + "name": "Sam152", "homepage": "https://www.drupal.org/user/1485048" } ], @@ -5761,20 +5221,20 @@ }, { "name": "drupal/diff", - "version": "1.8.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/diff.git", - "reference": "8.x-1.8" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "a104bf731a282f06ff0d5a7fb861c01b5b933765" + "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "8f1e95e6c7f576999c5b2880023de2c2aaaf99b3" }, "require": { - "drupal/core": "^10 || ^11", + "drupal/core": "^9.3 || ^10 || ^11", "mkalkbrenner/php-htmldiff-advanced": "~0.0.8", "php": "^8.1" }, @@ -5786,13 +5246,13 @@ "phpstan/phpstan-deprecation-rules": "*", "phpstan/phpstan-phpunit": "1.4.x-dev", "phpstan/phpstan-strict-rules": "^1@stable", - "previousnext/coding-standard": "1.0.1" + "previousnext/coding-standard": "^1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1727892285", + "version": "8.x-1.4", + "datestamp": "1717130431", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5868,24 +5328,24 @@ }, { "name": "drupal/drd_agent", - "version": "4.1.3", + "version": "4.1.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drd_agent.git", - "reference": "4.1.3" + "reference": "4.1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.3.zip", - "reference": "4.1.3", - "shasum": "1120c6b6a06ff9de6a55f294ea0468233cba12ee" + "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.2.zip", + "reference": "4.1.2", + "shasum": "e49c008c71ce0bf9bf0af8d714625be4853968b7" }, "require": { "drupal/core": "^10 || ^11", "php": ">=8.1" }, "require-dev": { - "drupal/hacked": "^2.0", + "drupal/hacked": "^2.0@beta", "drupal/job_scheduler": "^4.0", "drupal/monitoring": "^1.13", "drupal/security_review": "^3.0" @@ -5898,8 +5358,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.3", - "datestamp": "1741249954", + "version": "4.1.2", + "datestamp": "1710680502", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5987,11 +5447,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6023,48 +5483,51 @@ }, { "name": "drupal/drutopia_article", - "version": "dev-2.0.x", + "version": "2.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_article.git", - "reference": "0c4d5f0f695914e154282fc4d6bb0d866675fb1a" + "reference": "2.0.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_article-2.0.0-rc2.zip", + "reference": "2.0.0-rc2", + "shasum": "e51b860d49240eba2bdeb696c7b1e068f5f0b2fe" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/config_snapshot": "*", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", "drupal/drutopia_people": "*", "drupal/drutopia_seo": "^2", "drupal/drutopia_site": "*", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", + "drupal/facets": "^2", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/rdf": "*", "drupal/search_api": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, "drupal": { - "version": "2.0.0-rc2+4-dev", - "datestamp": "1738966837", + "version": "2.0.0-rc2", + "datestamp": "1698093781", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -6082,11 +5545,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6110,46 +5573,49 @@ }, { "name": "drupal/drutopia_blog", - "version": "dev-2.0.x", + "version": "2.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_blog.git", - "reference": "2a9b1a9c8fb87d799b118e95a22af9167bc5d5d2" + "reference": "2.0.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_blog-2.0.0-rc2.zip", + "reference": "2.0.0-rc2", + "shasum": "71720613f7a0b4f6437f4bf1fd29dc0cb210ed7a" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", "drupal/drutopia_people": "*", "drupal/drutopia_seo": "^2", "drupal/drutopia_site": "*", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", + "drupal/facets": "^2", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, "drupal": { - "version": "2.0.0-rc2+4-dev", - "datestamp": "1738966933", + "version": "2.0.0-rc2", + "datestamp": "1698094057", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -6167,11 +5633,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6257,11 +5723,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6296,20 +5762,20 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_collection.git", - "reference": "6a56ad10454f362422cc232a4bfe0ddd32ae7586" + "reference": "6f25bea1f255a34322622ecf876637429f023c43" }, "require": { - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.0", "drupal/core": "^8 || ^9 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.0", "drupal/drutopia_article": "^2", "drupal/drutopia_blog": "^2", "drupal/drutopia_core": "*", "drupal/drutopia_people": "^2", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.1", "drupal/entity_reference_revisions": "*", - "drupal/metatag": "^2.1", + "drupal/metatag": "^1.9", "drupal/paragraphs": "*" }, "type": "drupal-module", @@ -6319,7 +5785,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965303", + "datestamp": "1694686396", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6332,11 +5798,11 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6402,11 +5868,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6441,34 +5907,34 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_core.git", - "reference": "ecbcab8ee9779dbcb8f86bd731192842e8da14e0" + "reference": "e0f8dea849da0f6b0853d67707dec04cd528b98d" }, "require": { - "drupal/automated_crop": "^4.0", - "drupal/config_actions": "^1.4", - "drupal/config_perms": "^2.1", + "drupal/automated_crop": "^3.0", + "drupal/config_actions": "^1.3", + "drupal/config_perms": "^2.0", "drupal/core": "^9.4 || ^10", "drupal/crop": "^2.1", - "drupal/ds": "^3.28", + "drupal/ds": "^3.12", "drupal/exclude_node_title": "*", - "drupal/facets": "^3", - "drupal/faqfield": "^7.1", - "drupal/focal_point": "^2.1", - "drupal/image_field_to_media": "^3.0", + "drupal/facets": "^2", + "drupal/faqfield": "^7.0", + "drupal/focal_point": "^2.0", + "drupal/image_field_to_media": "^2.0", "drupal/image_widget_crop": "^2", - "drupal/media_contextual_crop": "^2.1", - "drupal/media_contextual_crop_field_formatter": "^2.0", - "drupal/media_contextual_crop_fp_adapter": "^2.0", - "drupal/media_contextual_crop_iwc_adapter": "^2.0", - "drupal/media_library_media_modify": "^1.0", - "drupal/media_responsive_thumbnail": "^1.5", - "drupal/metatag": "^2.1", - "drupal/paragraphs": "^1.18", + "drupal/media_contextual_crop": "1.2.x-dev@dev", + "drupal/media_contextual_crop_field_formatter": "^1.3", + "drupal/media_contextual_crop_fp_adapter": "^1", + "drupal/media_contextual_crop_iwc_adapter": "^1", + "drupal/media_library_media_modify": "^1.0@beta", + "drupal/media_responsive_thumbnail": "^1", + "drupal/metatag": "^1.16", + "drupal/paragraphs": "^1.12", "drupal/pathauto": "*", "drupal/rdf": "*", - "drupal/search_api": "^1.37", + "drupal/search_api": "^1.19", "drupal/search_api_db": "*", - "drupal/video_embed_field": "^2.5" + "drupal/video_embed_field": "^2.4" }, "type": "drupal-module", "extra": { @@ -6477,7 +5943,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738964608", + "datestamp": "1711149650", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6503,11 +5969,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6541,27 +6007,27 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_event.git", - "reference": "493e86fe85f947aca945fe8e91cda4e781bb9513" + "reference": "049ebe8b42a04481d637ec7bb30194b5af9c58e5" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", + "drupal/facets": "^2", "drupal/field_group": "*", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { @@ -6570,7 +6036,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738966631", + "datestamp": "1701465986", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6591,11 +6057,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6630,10 +6096,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_group.git", - "reference": "f744305a5f93fa85eab281f7e001f84fe6d1cb35" + "reference": "13c6e8b04b29b594562a21690047342ce386f64f" }, "require": { - "drupal/address": "^2.0", + "drupal/address": "^1.8", "drupal/config_actions": "*", "drupal/config_perms": "*", "drupal/core": "^9.4 || ^10", @@ -6644,7 +6110,7 @@ "drupal/gnode": "*", "drupal/group": "^3", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13" + "drupal/pathauto": "^1.8" }, "type": "drupal-module", "extra": { @@ -6653,7 +6119,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738967926", + "datestamp": "1694685946", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6674,21 +6140,29 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" }, + { + "name": "rosemarymann", + "homepage": "https://www.drupal.org/user/837536" + }, { "name": "wolcen", "homepage": "https://www.drupal.org/user/3099655" @@ -6713,23 +6187,23 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", - "reference": "6c9fed4cbb476a99e1536aaee94dc8182c82e387" + "reference": "fa3e5874142fffdd757aca5665e5414cf07e416c" }, "require": { - "cweagans/composer-patches": "^1", - "drupal/config_actions": "^1", + "cweagans/composer-patches": "^1.5.0", + "drupal/config_actions": "^1.1", "drupal/config_snapshot": "*", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/exclude_node_title": "^1", + "drupal/exclude_node_title": "^1.0-beta1", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1", - "drupal/token": "^1" + "drupal/pathauto": "^1.8", + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { @@ -6738,7 +6212,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738971149", + "datestamp": "1701465249", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6759,11 +6233,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6792,111 +6266,27 @@ "issues": "https://www.drupal.org/project/issues/drutopia_landing_page" } }, - { - "name": "drupal/drutopia_organization", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_organization.git", - "reference": "28ddc437632547dfcb991cf3b639510951bf9949" - }, - "require": { - "drupal/block_visibility_groups": "*", - "drupal/config_actions": "^1", - "drupal/config_snapshot": "*", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "*", - "drupal/drutopia_core": "^2", - "drupal/drutopia_event": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "*", - "drupal/field_group": "^3", - "drupal/focal_point": "*", - "drupal/ief_complex_open": "^1", - "drupal/inline_entity_form": "^3.0@RC", - "drupal/metatag": "*", - "drupal/paragraphs": "^1", - "drupal/pathauto": "^1", - "drupal/search_api": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738968329", - "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+" - ], - "authors": [ - { - "name": "dinarcon", - "homepage": "https://www.drupal.org/user/909522" - }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "megakeegman", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Organization provides an Organization content type for showing visitors information about organizations (groups, nonprofits, businesses) that are part of the site and can be associated with blogs, resources, events, etc.", - "homepage": "https://www.drupal.org/project/drutopia_organization", - "keywords": [ - "business", - "content", - "drutopia", - "group", - "nonprofit", - "organization" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_organization/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_organization" - } - }, { "name": "drupal/drutopia_page", "version": "dev-2.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_page.git", - "reference": "86d7bbe6241184a5b820bbca2cc706defa4da033" + "reference": "ac4fece72920bfb181c50fb4c9bbcb35849d4408" }, "require": { - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/rdf": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { @@ -6905,7 +6295,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965862", + "datestamp": "1701465224", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6926,11 +6316,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6964,16 +6354,16 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_paragraph_title.git", - "reference": "d74353db8e3c92e9fb4a469e86b9c979d48f1297" + "reference": "8bd77a9b1bce1ea44201d4b3ae0252f81601486a" }, "require": { - "drupal/allowed_formats": "^3", + "drupal/allowed_formats": "^2", "drupal/core": "^8.8.3 || ^9 || ^10", "drupal/drutopia_core": "^1 || ^2", "drupal/entity_reference_revisions": "*", "drupal/minimalhtml": "^2", "drupal/minimalhtmltitle": "*", - "drupal/paragraphs": "^1", + "drupal/paragraphs": "^1.15", "drupal/ui_patterns": "*", "drupal/ui_patterns_ds": "*", "drupal/ui_patterns_layouts": "*", @@ -6985,8 +6375,8 @@ "dev-1.0.x": "1.0.x-dev" }, "drupal": { - "version": "1.0.0+9-dev", - "datestamp": "1738968607", + "version": "1.0.0+8-dev", + "datestamp": "1688129764", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6999,11 +6389,11 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7034,21 +6424,21 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_people.git", - "reference": "338484dc18c27ddc3cdfc0adbe7af2532fef6dc4" + "reference": "60aa239bf374421011a88e0adfdf0e23e1e88453" }, "require": { - "drupal/config_actions": "^1", + "drupal/config_actions": "^1.1", "drupal/core": "^8.9 || ^9 || ^10", "drupal/ctools": "*", "drupal/drutopia_core": "^2", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/metatag": "*", - "drupal/paragraphs": "^1", - "drupal/pathauto": "^1", + "drupal/paragraphs": "^1.12", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", "drupal/views_plain": "^1" }, @@ -7059,7 +6449,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738968707", + "datestamp": "1701465205", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7080,11 +6470,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7161,11 +6551,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7200,30 +6590,28 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_resource.git", - "reference": "0907b1f514b7361c78085bfefc1ce0ed4d83c062" + "reference": "123b61f62d8368e914b7371dd882bfe9b37212b5" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", + "drupal/facets": "^2", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", - "drupal/rabbit_hole": "*", - "drupal/rh_node": "*", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", - "drupal/token": "^1.15", - "drupal/video_embed_field": "^2.5" + "drupal/token": "^1.7", + "drupal/video_embed_field": "^2.4" }, "type": "drupal-module", "extra": { @@ -7232,7 +6620,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965704", + "datestamp": "1701465181", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7253,11 +6641,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7375,14 +6763,14 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_seo.git", - "reference": "e92b8ff100dd06b1eb1cf88a4761416f26381dc8" + "reference": "b7d254541bf37c06e973250476ef40523d8b18f7" }, "require": { - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^8.9 || ^9 || ^10", "drupal/drutopia_core": "*", - "drupal/metatag": "^2.1", - "drupal/redirect": "^1.11", + "drupal/metatag": "^1.13", + "drupal/redirect": "^1.6", "drupal/redirect_404": "*" }, "type": "drupal-module", @@ -7392,7 +6780,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965074", + "datestamp": "1697826547", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7413,11 +6801,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7455,22 +6843,23 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "da5e9dfb288a0ae17b424dfe1c704fd521dd556a" + "reference": "55fae682ea8541260fd2a13ac6e0157e232154c3" }, "require": { - "drupal/admin_toolbar": "^3", + "drupal/admin_toolbar": "^3.0", "drupal/admin_toolbar-admin_toolbar_search": "*", + "drupal/admin_toolbar_links_access_filter": "*", "drupal/admin_toolbar_tools": "*", - "drupal/autosave_form": "^1", - "drupal/config_actions": "^1", + "drupal/autosave_form": "1.x-dev", + "drupal/config_actions": "^1.1", "drupal/config_snapshot": "*", "drupal/core": "^9.4 || ^10", "drupal/drutopia_core": "^2", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", - "drupal/menu_admin_per_menu": "^1", + "drupal/menu_admin_per_menu": "^1.1", "drupal/paragraphs": "*", - "drupal/role_delegation": "^1", + "drupal/role_delegation": "^1.1", "drupal/workflow_buttons": "^1", "drupal/workflow_buttons_trash": "*", "drupal/wysiwyg_linebreaks": "^2" @@ -7482,11 +6871,16 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738969316", + "datestamp": "1701461795", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches": { + "drupal/autosave_form": { + "PHP 8.2 deprecation issue with AutosaveFormBuilder": "https://www.drupal.org/files/issues/2023-04-20/autosave_form-dynamic-property-deprecation.patch" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -7503,11 +6897,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7541,11 +6935,11 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_social.git", - "reference": "0922fd6688d5b49903c30bb626d03c0df36d65c8" + "reference": "b0af0f7828df04aadc2f4b897793a170e55d09d7" }, "require": { "drupal/core": "^8.9 || ^9 || ^10", - "drupal/social_media_links": "^2" + "drupal/social_media_links": "^2.6" }, "type": "drupal-module", "extra": { @@ -7554,7 +6948,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738969425", + "datestamp": "1687306332", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7575,21 +6969,29 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" }, + { + "name": "rosemarymann", + "homepage": "https://www.drupal.org/user/837536" + }, { "name": "wolcen", "homepage": "https://www.drupal.org/user/3099655" @@ -7607,7 +7009,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_storyline.git", - "reference": "bf79a2124dd2b0429403e22f2abae55cbd4b0224" + "reference": "fb32c3b3f2c3007dcb28bf55e9a0e72299e4b77a" }, "require": { "drupal/config_actions": "*", @@ -7615,7 +7017,7 @@ "drupal/drutopia_core": "^2", "drupal/drutopia_page": "^2", "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3", + "drupal/field_group": "^3.0", "drupal/paragraphs": "*" }, "require-dev": { @@ -7629,7 +7031,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738969481", + "datestamp": "1694684949", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7650,21 +7052,29 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" }, + { + "name": "rosemarymann", + "homepage": "https://www.drupal.org/user/837536" + }, { "name": "wolcen", "homepage": "https://www.drupal.org/user/3099655" @@ -7766,20 +7176,20 @@ }, { "name": "drupal/ds", - "version": "3.30.0", + "version": "3.22.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.30" + "reference": "8.x-3.22" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.30.zip", - "reference": "8.x-3.30", - "shasum": "9022852edfbb540726338b018915c4d7fedfd989" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.22.zip", + "reference": "8.x-3.22", + "shasum": "4f14bbc3dd966372947fec079e19e1c3ac961b57" }, "require": { - "drupal/core": "^10.2 || ^11" + "drupal/core": "^10" }, "require-dev": { "drupal/devel": "5.x-dev", @@ -7788,8 +7198,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.30", - "datestamp": "1746467919", + "version": "8.x-3.22", + "datestamp": "1715854314", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7836,17 +7246,17 @@ }, { "name": "drupal/dynamic_entity_reference", - "version": "3.2.1", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", - "reference": "3.2.1" + "reference": "3.2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.1.zip", - "reference": "3.2.1", - "shasum": "051c565f6580f512cbc7ddc3f49fdd6ba8d406af" + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.0.zip", + "reference": "3.2.0", + "shasum": "a265f7f0723fb085bd729e7624d644475900cf94" }, "require": { "drupal/core": "^10 || ^11", @@ -7861,8 +7271,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.2.1", - "datestamp": "1740521060", + "version": "3.2.0", + "datestamp": "1706486865", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7899,26 +7309,26 @@ }, { "name": "drupal/easy_breadcrumb", - "version": "2.0.9", + "version": "2.0.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/easy_breadcrumb.git", - "reference": "2.0.9" + "reference": "2.0.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.9.zip", - "reference": "2.0.9", - "shasum": "9e7c33e2ec0637d37d509776795a476f2f2d9bb8" + "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.6.zip", + "reference": "2.0.6", + "shasum": "622f31fb071dea25735cfc4eaab4cf96bde917ab" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.9", - "datestamp": "1732752214", + "version": "2.0.6", + "datestamp": "1707084295", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7945,7 +7355,7 @@ "homepage": "https://www.drupal.org/user/430714" }, { - "name": "greg boggs", + "name": "Greg Boggs", "homepage": "https://www.drupal.org/user/153069" }, { @@ -7957,17 +7367,13 @@ "homepage": "https://www.drupal.org/user/717290" }, { - "name": "neslee canil pinto", + "name": "Neslee Canil Pinto", "homepage": "https://www.drupal.org/user/3580850" }, { - "name": "nickdickinsonwilde", + "name": "NickDickinsonWilde", "homepage": "https://www.drupal.org/user/3094661" }, - { - "name": "rakesh.gectcr", - "homepage": "https://www.drupal.org/user/1177822" - }, { "name": "renatog", "homepage": "https://www.drupal.org/user/3326031" @@ -7976,10 +7382,6 @@ "name": "sonemonu", "homepage": "https://www.drupal.org/user/1667988" }, - { - "name": "spuky", - "homepage": "https://www.drupal.org/user/209353" - }, { "name": "tatarbj", "homepage": "https://www.drupal.org/user/649590" @@ -7994,17 +7396,17 @@ }, { "name": "drupal/eca", - "version": "1.1.12", + "version": "1.1.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eca.git", - "reference": "1.1.12" + "reference": "1.1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eca-1.1.12.zip", - "reference": "1.1.12", - "shasum": "90e7cf7d15b384be2f145f0f3ce28a73ae4ad102" + "url": "https://ftp.drupal.org/files/projects/eca-1.1.6.zip", + "reference": "1.1.6", + "shasum": "3db1a23f95b4702b4ac922a182677e9b69c06c97" }, "require": { "dragonmantank/cron-expression": "^3.1", @@ -8029,8 +7431,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.12", - "datestamp": "1744218137", + "version": "1.1.6", + "datestamp": "1715269931", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8115,107 +7517,22 @@ "issues": "https://drupal.org/project/issues/eca_context" } }, - { - "name": "drupal/eca_modeller_bpmn", - "version": "1.1.12", - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "^1", - "drupal/eca_ui": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "1.1.12", - "datestamp": "1744218137", - "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": "boromino", - "homepage": "https://www.drupal.org/user/859722" - }, - { - "name": "danielspeicher", - "homepage": "https://www.drupal.org/user/3621778" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "Common functionality for all BPMN based modeller implementations.", - "homepage": "https://www.drupal.org/project/eca", - "support": { - "source": "https://git.drupalcode.org/project/eca" - } - }, - { - "name": "drupal/eca_ui", - "version": "2.1.7", - "require": { - "drupal/core": "^10.3 || ^11", - "drupal/eca": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.1.7", - "datestamp": "1744222322", - "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": "boromino", - "homepage": "https://www.drupal.org/user/859722" - }, - { - "name": "danielspeicher", - "homepage": "https://www.drupal.org/user/3621778" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "Provides a user interface for managing ECA models.", - "homepage": "https://www.drupal.org/project/eca", - "support": { - "source": "https://git.drupalcode.org/project/eca" - } - }, { "name": "drupal/editor_advanced_link", - "version": "2.2.6", + "version": "2.2.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/editor_advanced_link.git", - "reference": "2.2.6" + "reference": "2.2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.2.6.zip", - "reference": "2.2.6", - "shasum": "f6d7c437900f288b1e735b4faf2decc99bdd30e8" + "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.2.4.zip", + "reference": "2.2.4", + "shasum": "cd0db397827f2e21ec8a68211e8a153463a6c89b" }, "require": { - "drupal/core": "^10.2 || ^11.0" + "drupal/core": "^9.2 || ^10" }, "require-dev": { "drupal/ckeditor": "*", @@ -8224,8 +7541,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.6", - "datestamp": "1723183019", + "version": "2.2.4", + "datestamp": "1688040059", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8238,12 +7555,8 @@ ], "authors": [ { - "name": "duaelfr", + "name": "DuaelFr", "homepage": "https://www.drupal.org/user/931394" - }, - { - "name": "vladimiraus", - "homepage": "https://www.drupal.org/user/673120" } ], "description": "Editor Advanced link", @@ -8254,17 +7567,17 @@ }, { "name": "drupal/editoria11y", - "version": "2.2.8", + "version": "2.1.18", "source": { "type": "git", "url": "https://git.drupalcode.org/project/editoria11y.git", - "reference": "2.2.8" + "reference": "2.1.18" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editoria11y-2.2.8.zip", - "reference": "2.2.8", - "shasum": "a3d0b016131140c276822ffef128b267c640a4d2" + "url": "https://ftp.drupal.org/files/projects/editoria11y-2.1.18.zip", + "reference": "2.1.18", + "shasum": "ebdb25f92c2d77681661216ca3abebbc710b662a" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -8275,8 +7588,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.8", - "datestamp": "1746713863", + "version": "2.1.18", + "datestamp": "1716399461", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8322,7 +7635,7 @@ "source": { "type": "git", "url": "git@git.drupal.org:issue/empty_page-3287186.git", - "reference": "cb8e4a1b3c7d4b45d8e4c8c470413022ca616fab" + "reference": "17e9cef3eba8cd7409135ef68016f6df8eb4d1b4" }, "type": "drupal-module", "license": [ @@ -8334,30 +7647,30 @@ "issues": "https://www.drupal.org/project/issues/empty_page", "source": "https://git.drupalcode.org/project/empty_page" }, - "time": "2024-10-22T10:44:11+00:00" + "time": "2024-02-23T20:50:52+00:00" }, { "name": "drupal/entity", - "version": "1.6.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.6" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "dfb214fd45bd6ad79604d23a39a96b3d4c38f8e1" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^9.2|^10.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1740006812", + "version": "8.x-1.4", + "datestamp": "1661898023", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8370,7 +7683,7 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -8394,7 +7707,7 @@ "homepage": "https://www.drupal.org/user/2416470" }, { - "name": "tr", + "name": "TR", "homepage": "https://www.drupal.org/user/202830" } ], @@ -8407,30 +7720,29 @@ }, { "name": "drupal/entity_reference_override", - "version": "2.0.0-beta4", + "version": "2.0.0-beta2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_override.git", - "reference": "2.0.0-beta4" + "reference": "2.0.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "14a223de91d34bfdc52f0ad73f84825c47e2a2e9" + "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta2.zip", + "reference": "2.0.0-beta2", + "shasum": "8df72b040baee530fbf2186c8007c12b19f1286f" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "require-dev": { - "drupal/entity_browser": "*", - "drupal/entity_reference_revisions": "*" + "drupal/entity_browser": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1744343662", + "version": "2.0.0-beta2", + "datestamp": "1689262248", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -8439,12 +7751,12 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "alexpott", - "homepage": "https://www.drupal.org/user/157725" + "name": "See contributors", + "homepage": "https://www.drupal.org/node/2809033/committers" }, { "name": "dawehner", @@ -8455,7 +7767,7 @@ "homepage": "https://www.drupal.org/user/16496" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { @@ -8467,38 +7779,38 @@ "homepage": "https://www.drupal.org/user/51132" } ], - "description": "Entity reference with overridable title", + "description": "Display referenced entities with optional field overrides.", "homepage": "https://www.drupal.org/project/entity_reference_override", "support": { "source": "https://git.drupalcode.org/project/entity_reference_override", - "error": "funding.opencollective : should be an array, string given" + "issues": "https://www.drupal.org/project/issues/entity_reference_override" } }, { "name": "drupal/entity_reference_revisions", - "version": "1.12.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.12" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26" + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "require-dev": { - "drupal/diff": "^1 || ^2" + "drupal/diff": "1.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1722804497", + "version": "8.x-1.11", + "datestamp": "1705140721", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8516,7 +7828,7 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -8595,26 +7907,26 @@ }, { "name": "drupal/environment_indicator", - "version": "4.0.21", + "version": "4.0.18", "source": { "type": "git", "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "4.0.21" + "reference": "4.0.18" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.21.zip", - "reference": "4.0.21", - "shasum": "e4d4de7060fb10156c44d27a3b9ec80929eb17b3" + "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.18.zip", + "reference": "4.0.18", + "shasum": "1dcf7beb1c23be49edbad04dd6e2a127714c4ea2" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.21", - "datestamp": "1734428244", + "version": "4.0.18", + "datestamp": "1717143727", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8637,16 +7949,12 @@ "email": "nacho@isholgueras.com" }, { - "name": "lullabot", + "name": "Lullabot", "homepage": "https://www.drupal.org/user/3815489" }, { "name": "mrfelton", "homepage": "https://www.drupal.org/user/305669" - }, - { - "name": "trackleft2", - "homepage": "https://www.drupal.org/user/2860655" } ], "description": "Environment Indicator adds some visual cuest to indicate which copy of the site are you interacting with", @@ -8657,26 +7965,26 @@ }, { "name": "drupal/eu_cookie_compliance", - "version": "1.25.0", + "version": "1.24.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git", - "reference": "8.x-1.25" + "reference": "8.x-1.24" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.25.zip", - "reference": "8.x-1.25", - "shasum": "13797a009ba899db0d9bd9a5c5ad0eb4b2bedfb1" + "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.24.zip", + "reference": "8.x-1.24", + "shasum": "ab8dcd866e5ad95cde6fdf9cbca509c7f399bd23" }, "require": { - "drupal/core": "^8.9 || ^9 || ^10 || ^11" + "drupal/core": "^8.9 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.25", - "datestamp": "1728547905", + "version": "8.x-1.24", + "datestamp": "1665158185", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8706,6 +8014,10 @@ { "name": "See other contributors", "homepage": "https://www.drupal.org/node/1538032/committers" + }, + { + "name": "svenryen", + "homepage": "https://www.drupal.org/user/667244" } ], "description": "This module aims at making the website compliant with the new EU cookie regulation.", @@ -8726,20 +8038,20 @@ }, { "name": "drupal/eva", - "version": "3.1.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eva.git", - "reference": "3.1.1" + "reference": "3.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eva-3.1.1.zip", - "reference": "3.1.1", - "shasum": "11df2285cc479033637b9aac2fe65f681e5ed38b" + "url": "https://ftp.drupal.org/files/projects/eva-3.0.0.zip", + "reference": "3.0.0", + "shasum": "51b56ed55ab6edb7376afc34c88825b6373d4a80" }, "require": { - "drupal/core": "^9.5.11 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "suggest": { "drupal/token": "Enable the argument token browser" @@ -8747,8 +8059,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.1", - "datestamp": "1732295600", + "version": "3.0.0", + "datestamp": "1667476964", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8830,12 +8142,8 @@ "homepage": "https://www.drupal.org/user/279352" }, { - "name": "neslee canil pinto", + "name": "Neslee Canil Pinto", "homepage": "https://www.drupal.org/user/3580850" - }, - { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" } ], "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.", @@ -8847,26 +8155,26 @@ }, { "name": "drupal/exif_orientation", - "version": "1.5.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/exif_orientation.git", - "reference": "8.x-1.5" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exif_orientation-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "9e5a9d06f974835ea7eee2da64a4b073099b6639" + "url": "https://ftp.drupal.org/files/projects/exif_orientation-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "692d04b1ce662a204b335135a1dadaca9b6efc7b" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1732132295", + "version": "8.x-1.4", + "datestamp": "1694623445", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8887,7 +8195,7 @@ "homepage": "https://www.drupal.org/user/2416470" }, { - "name": "nickdickinsonwilde", + "name": "NickDickinsonWilde", "homepage": "https://www.drupal.org/user/3094661" } ], @@ -8897,75 +8205,26 @@ "source": "https://git.drupalcode.org/project/exif_orientation" } }, - { - "name": "drupal/facet_bot_blocker", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/facet_bot_blocker.git", - "reference": "1.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facet_bot_blocker-1.0.1.zip", - "reference": "1.0.1", - "shasum": "59c852972cbb804d5f63c4bc0f4542a56c333b4a" - }, - "require": { - "drupal/core": "^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.1", - "datestamp": "1744231176", - "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": "bburg", - "homepage": "https://www.drupal.org/user/1867900" - } - ], - "description": "Block requests for excessive faceted search URLs.", - "homepage": "https://www.drupal.org/project/facet_bot_blocker", - "support": { - "source": "https://git.drupalcode.org/project/facet_bot_blocker" - } - }, { "name": "drupal/facets", "version": "dev-3.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "3a5dd4df8d7b16d150fe5a2f7370f133a93a4fe4" + "reference": "b578813ca5c4567584dfb8d5b8d2218c6b3591d6" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^10.1" }, "conflict": { "drupal/core": "<10.1.0", "drupal/search_api": "<1.14" }, "require-dev": { - "drupal/better_exposed_filters": "~7.0", - "drupal/default_content": "*", - "drupal/facets_exposed_filters": "*", - "drupal/jquery_ui_slider": "~2.1", + "drupal/better_exposed_filters": "*", + "drupal/jquery_ui_slider": "~2.0", "drupal/jquery_ui_touch_punch": "~1.1", - "drupal/search_api": "1.x-dev", - "drupal/search_api_db": "*", - "drupal/views_ajax_history": "*", - "drupal/views_filters_summary": "*" + "drupal/search_api": "^1.28||1.x-dev" }, "suggest": { "drupal/better_exposed_filters": "Required for AJAX support for facets rendered as views exposed filters", @@ -8978,8 +8237,8 @@ "dev-3.0.x": "3.0.x-dev" }, "drupal": { - "version": "3.0.0+7-dev", - "datestamp": "1741877379", + "version": "3.0.0-beta1+25-dev", + "datestamp": "1710744523", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -9004,11 +8263,11 @@ "homepage": "https://www.drupal.org/user/124705" }, { - "name": "nick_vh", + "name": "Nick_vh", "homepage": "https://www.drupal.org/user/122682" }, { - "name": "strykaizer", + "name": "StryKaizer", "homepage": "https://www.drupal.org/user/462700" } ], @@ -9022,27 +8281,27 @@ }, { "name": "drupal/fakeobjects", - "version": "2.0.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fakeobjects.git", - "reference": "2.0.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fakeobjects-2.0.1.zip", - "reference": "2.0.1", - "shasum": "a11cac7fa7fd2d511048ba0ff3d18321e767b296" + "url": "https://ftp.drupal.org/files/projects/fakeobjects-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "a49094752f972e7db51ef5ec7abade1a4eba48f5" }, "require": { - "drupal-ckeditor-libraries-group/fakeobjects": "^4.5.11", - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/ckeditor": "*", + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1740094419", + "version": "8.x-1.2", + "datestamp": "1674760765", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9062,10 +8321,6 @@ { "name": "kevinquillen", "homepage": "https://www.drupal.org/user/317279" - }, - { - "name": "xmacinfo", - "homepage": "https://www.drupal.org/user/12131" } ], "description": "Adds the FakeObjects plugin to CKEditor. This plugin is a utility plugin that is required by certain user-facing CKEditor plugins.", @@ -9225,26 +8480,26 @@ }, { "name": "drupal/field_defaults", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_defaults.git", - "reference": "2.1.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_defaults-2.1.0.zip", - "reference": "2.1.0", - "shasum": "ca90ca6814ff05457ec8ec0be6a976b0315c28a4" + "url": "https://ftp.drupal.org/files/projects/field_defaults-2.0.0.zip", + "reference": "2.0.0", + "shasum": "692d6b760271d3b3a711e781018f3a6e3f10e60d" }, "require": { - "drupal/core": "^10.0 || ^11.0" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1745506968", + "version": "2.0.0", + "datestamp": "1709319388", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9252,7 +8507,7 @@ }, "drush": { "services": { - "drush.services.yml": "^11 || ^12" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -9280,26 +8535,26 @@ }, { "name": "drupal/field_formatter_class", - "version": "1.8.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_formatter_class.git", - "reference": "8.x-1.8" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_formatter_class-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "66f39802ac8ef43f362b7e3530280f751788f169" + "url": "https://ftp.drupal.org/files/projects/field_formatter_class-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "11682ba40db28aeac4319428db01590fbf2f4c6c" }, "require": { - "drupal/core": "^10.2 || ^11.0" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1724880268", + "version": "8.x-1.6", + "datestamp": "1667840724", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9322,7 +8577,7 @@ "role": "maintainer" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -9343,29 +8598,26 @@ }, { "name": "drupal/field_group", - "version": "3.6.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.6" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip", - "reference": "8.x-3.6", - "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "require-dev": { - "drupal/jquery_ui_accordion": "*" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.6", - "datestamp": "1722672510", + "version": "8.x-3.4", + "datestamp": "1667241979", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9378,21 +8630,13 @@ ], "authors": [ { - "name": "anybody", + "name": "Anybody", "homepage": "https://www.drupal.org/user/291091" }, { - "name": "grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "hydra", + "name": "Hydra", "homepage": "https://www.drupal.org/user/647364" }, - { - "name": "joevagyok", - "homepage": "https://www.drupal.org/user/2876343" - }, { "name": "jyve", "homepage": "https://www.drupal.org/user/591438" @@ -9419,37 +8663,31 @@ }, { "name": "drupal/field_token_value", - "version": "3.1.0", + "version": "3.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_token_value.git", - "reference": "3.1.0" + "reference": "3.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_token_value-3.1.0.zip", - "reference": "3.1.0", - "shasum": "af17b023855bedf070e42a750fa60700b24be9af" + "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip", + "reference": "3.0.2", + "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad" }, "require": { - "drupal/core": "^10 || ^11", - "drupal/token": "^1.15", - "php": ">=8.1.0" + "drupal/core": "^8 || ^9 || ^10", + "drupal/token": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.0", - "datestamp": "1740522009", + "version": "3.0.2", + "datestamp": "1696584829", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^10 || ^11" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9459,14 +8697,13 @@ "authors": [ { "name": "haydent", - "homepage": "https://www.drupal.org/u/haydent" + "homepage": "https://www.drupal.org/user/2763191" } ], - "description": "Allows you to use a Views to display an entity or entities for an entity_reference field display.", + "description": "Provides a field allowing the value to be set using a string containing tokens.", "homepage": "https://www.drupal.org/project/field_token_value", "support": { - "source": "https://git.drupalcode.org/project/field_token_value", - "issues": "https://www.drupal.org/project/issues/field_token_value" + "source": "https://git.drupalcode.org/project/field_token_value" } }, { @@ -9503,7 +8740,7 @@ ], "authors": [ { - "name": "cyu", + "name": "cYu", "homepage": "https://www.drupal.org/user/202205" }, { @@ -9522,10 +8759,6 @@ "name": "mgbellaire", "homepage": "https://www.drupal.org/user/1831932" }, - { - "name": "scott_euser", - "homepage": "https://www.drupal.org/user/3267594" - }, { "name": "willzyx", "homepage": "https://www.drupal.org/user/1043862" @@ -9540,26 +8773,26 @@ }, { "name": "drupal/fitvids", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fitvids.git", - "reference": "2.1.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fitvids-2.1.0.zip", - "reference": "2.1.0", - "shasum": "9bdc84fb6a7c0f03f9172ac7cf2274ccf11ce127" + "url": "https://ftp.drupal.org/files/projects/fitvids-2.0.0.zip", + "reference": "2.0.0", + "shasum": "0fb02d633ca144abee0bfca7b52457c89aba0414" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1729218906", + "version": "2.0.0", + "datestamp": "1669606300", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9576,40 +8809,39 @@ "homepage": "https://www.drupal.org/user/167927" }, { - "name": "nickdickinsonwilde", + "name": "NickDickinsonWilde", "homepage": "https://www.drupal.org/user/3094661" } ], - "description": "Uses the FitVids.js library for fluid width video embeds.", + "description": "jQuery plugin for fluid width video embeds.", "homepage": "https://www.drupal.org/project/fitvids", "support": { - "source": "https://git.drupalcode.org/project/fitvids", - "issues": "https://www.drupal.org/project/issues/fitvids" + "source": "https://git.drupalcode.org/project/fitvids" } }, { "name": "drupal/fixed_block_content", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fixed_block_content.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "bf5035846418156857bd94bc6139aea339a884bb" + "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "30488b4a57f02b27e63e9249be3e1f9f67a19f64" }, "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "drupal/hal": "^1.0 || ^2.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1743628825", + "version": "8.x-1.3", + "datestamp": "1702646682", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9639,29 +8871,27 @@ }, { "name": "drupal/flexible_permissions", - "version": "2.0.1", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/flexible_permissions.git", - "reference": "2.0.1" + "reference": "1.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/flexible_permissions-2.0.1.zip", - "reference": "2.0.1", - "shasum": "382ad20c674a6c07974d411e767310166851a0a8" + "url": "https://ftp.drupal.org/files/projects/flexible_permissions-1.1.0.zip", + "reference": "1.1.0", + "shasum": "cfda615388131e96a5cf3fce1f24b1c220f91fce" }, "require": { - "drupal/core": "^10.3 || ^11" - }, - "require-dev": { - "jangregor/phpstan-prophecy": "^1.0" + "drupal/core": "^9.5 || ^10", + "drupal/variationcache": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1726835397", + "version": "1.1.0", + "datestamp": "1697027409", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9693,20 +8923,20 @@ }, { "name": "drupal/focal_point", - "version": "2.1.2", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "2.1.2" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-2.1.2.zip", - "reference": "2.1.2", - "shasum": "5f8ffadd37748506c8f00314b1d45c947eb27cf7" + "url": "https://ftp.drupal.org/files/projects/focal_point-2.1.0.zip", + "reference": "2.1.0", + "shasum": "f5be307039e226953598932d30a4eb6b2e9ac7d9" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11", + "drupal/core": "^9.3 || ^10", "drupal/crop": "^2.3" }, "require-dev": { @@ -9715,8 +8945,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.2", - "datestamp": "1731556344", + "version": "2.1.0", + "datestamp": "1715085292", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9734,7 +8964,7 @@ "role": "Maintainer" }, { - "name": "rajeshreeputra", + "name": "Rajeshreeputra", "homepage": "https://www.drupal.org/user/3418561" } ], @@ -9748,32 +8978,33 @@ }, { "name": "drupal/footnotes", - "version": "4.0.0-beta6", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/footnotes.git", - "reference": "4.0.0-beta6" + "reference": "3.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/footnotes-4.0.0-beta6.zip", - "reference": "4.0.0-beta6", - "shasum": "a7a3ac4a91e2f2967262ce5e1bef36a9541a877b" + "url": "https://ftp.drupal.org/files/projects/footnotes-3.1.0.zip", + "reference": "3.1.0", + "shasum": "6cc51af0d8cd50628b5a7e9cc75255a657e2aa62" }, "require": { - "drupal/core": ">=10.0" + "drupal/core": ">=8.6", + "drupal/fakeobjects": "^1.0" }, "require-dev": { - "drupal/metatag": "^2.0" + "drupal/fakeobjects": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.0-beta6", - "datestamp": "1741851876", + "version": "3.1.0", + "datestamp": "1691752661", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -9803,9 +9034,8 @@ "role": "Maintainer" }, { - "name": "Scott Euser (scott_euser)", - "homepage": "https://www.drupal.org/u/scott_euser", - "role": "Maintainer" + "name": "scott_euser", + "homepage": "https://www.drupal.org/user/3267594" }, { "name": "smulvih2", @@ -9825,27 +9055,25 @@ }, { "name": "drupal/gdpr", - "version": "3.1.2", + "version": "3.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "3.1.2" + "reference": "3.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gdpr-3.1.2.zip", - "reference": "3.1.2", - "shasum": "61efb7ebc167e9ed38894920fb4850b8d940e06c" + "url": "https://ftp.drupal.org/files/projects/gdpr-3.0.0.zip", + "reference": "3.0.0", + "shasum": "1fd27a189761d8b70bfe73580f2dfd3ddde607b7" }, "require": { "drupal/checklistapi": "^2.1", - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "drupal/entity": "^1.4", - "drupal/entity_reference_revisions": "^1.11", - "drupal/message": "^1.5", - "drupal/token": "^1.14", - "fakerphp/faker": "^1 || ^2", - "php": ">=8.1" + "drupal/entity_reference_revisions": "^1.10", + "drupal/message": "^1.4", + "drupal/token": "^1.11" }, "require-dev": { "drupal/anonymizer": "*", @@ -9857,13 +9085,14 @@ }, "suggest": { "drush/drush": "GDPR Dump requires Drush ^9 || ^10", - "ext-zip": "GDPR Tasks requires the PHP zip extension" + "ext-zip": "GDPR Tasks requires the PHP zip extension", + "fzaninotto/faker": "Required for the anonymizer submodule (which is required by multiple submodules)." }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.2", - "datestamp": "1740594868", + "version": "3.0.0", + "datestamp": "1681377086", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9885,7 +9114,11 @@ "homepage": "https://www.drupal.org/user/655282" }, { - "name": "baluertl", + "name": "back-2-95", + "homepage": "https://www.drupal.org/user/327328" + }, + { + "name": "Balu Ertl", "homepage": "https://www.drupal.org/user/1086292" }, { @@ -9901,7 +9134,7 @@ "homepage": "https://www.drupal.org/user/2723471" }, { - "name": "kosa ilma", + "name": "Kosa Ilma", "homepage": "https://www.drupal.org/user/3435475" }, { @@ -9909,19 +9142,19 @@ "homepage": "https://www.drupal.org/user/2626013" }, { - "name": "mhavelant", - "homepage": "https://www.drupal.org/user/3331139" + "name": "leymannx", + "homepage": "https://www.drupal.org/user/2482808" }, { - "name": "norman.lol", - "homepage": "https://www.drupal.org/user/2482808" + "name": "mhavelant", + "homepage": "https://www.drupal.org/user/3331139" }, { "name": "pedrop", "homepage": "https://www.drupal.org/user/1043368" }, { - "name": "rajeshreeputra", + "name": "Rajeshreeputra", "homepage": "https://www.drupal.org/user/3418561" }, { @@ -9941,23 +9174,23 @@ }, { "name": "drupal/geolocation", - "version": "3.14.0", + "version": "3.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.14" + "reference": "8.x-3.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.14.zip", - "reference": "8.x-3.14", - "shasum": "2f7cda9ce6ca1c03e30405f892714ae6f6a04bfd" + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.13.zip", + "reference": "8.x-3.13", + "shasum": "49029950bc0927f14b1d0ce01f93e03cdd131ee6" }, "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.3 || ^10", "drupal/jquery_ui": "*", "drupal/jquery_ui_autocomplete": "^2.0", - "php": "^8.0" + "php": "^7.3 || ^8.0" }, "require-dev": { "drupal/address": "*", @@ -9977,8 +9210,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.14", - "datestamp": "1729420964", + "version": "8.x-3.13", + "datestamp": "1714403539", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10008,30 +9241,30 @@ }, { "name": "drupal/gin", - "version": "4.0.6", + "version": "3.0.0-rc10", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin.git", - "reference": "4.0.6" + "reference": "8.x-3.0-rc10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin-4.0.6.zip", - "reference": "4.0.6", - "shasum": "c68a0fb646c439e1eea3f31f282e59be36eadab2" + "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-rc10.zip", + "reference": "8.x-3.0-rc10", + "shasum": "f79fd895dd1f16c3af457bfaed5527f5b5bc752c" }, "require": { - "drupal/core": "^10 || ^11", - "drupal/gin_toolbar": "^2.0" + "drupal/core": "^9 || ^10", + "drupal/gin_toolbar": "^1.0@beta" }, "type": "drupal-theme", "extra": { "drupal": { - "version": "4.0.6", - "datestamp": "1740739176", + "version": "8.x-3.0-rc10", + "datestamp": "1712686345", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -10049,10 +9282,6 @@ "name": "Sascha Eggenberger (saschaeggi)", "homepage": "https://www.drupal.org/u/saschaeggi", "role": "Maintainer" - }, - { - "name": "saschaeggi", - "homepage": "https://www.drupal.org/user/1999056" } ], "description": "For a better Admin and Content Editor Experience.", @@ -10074,27 +9303,27 @@ }, { "name": "drupal/gin_gutenberg", - "version": "1.1.16", + "version": "1.1.8", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_gutenberg.git", - "reference": "1.1.16" + "reference": "1.1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.16.zip", - "reference": "1.1.16", - "shasum": "5a39790f1038f733a0177808ec64e6ff38843a15" + "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.8.zip", + "reference": "1.1.8", + "shasum": "b82b677df72454ec59a8d9403baab31d7271b18a" }, "require": { "drupal/core": "^8 || ^9.3 || ^10 || ^11", - "drupal/gutenberg": "*" + "drupal/gutenberg": "^2.0 || ^3.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.16", - "datestamp": "1742293958", + "version": "1.1.8", + "datestamp": "1715754893", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10112,7 +9341,7 @@ "role": "Maintainer" }, { - "name": "hosisam", + "name": "Hosisam", "homepage": "https://www.drupal.org/user/3449435" }, { @@ -10137,26 +9366,26 @@ }, { "name": "drupal/gin_login", - "version": "2.1.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_login.git", - "reference": "2.1.3" + "reference": "2.0.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_login-2.1.3.zip", - "reference": "2.1.3", - "shasum": "4fd1a4f36205f511ab7c222f3543aa15ad2331c6" + "url": "https://ftp.drupal.org/files/projects/gin_login-2.0.4.zip", + "reference": "2.0.4", + "shasum": "7b67b50ebba7e69ec690e1f2557fdbae431d4638" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^8.9 || ^9 || ^10 || ^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.3", - "datestamp": "1719750649", + "version": "2.0.4", + "datestamp": "1712687134", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10196,29 +9425,29 @@ }, { "name": "drupal/gin_toolbar", - "version": "2.0.0", + "version": "1.0.0-rc5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_toolbar.git", - "reference": "2.0.0" + "reference": "8.x-1.0-rc5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_toolbar-2.0.0.zip", - "reference": "2.0.0", - "shasum": "2befeab2de9f7953b76b1a36c9bfb6a7e3987b11" + "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-rc5.zip", + "reference": "8.x-1.0-rc5", + "shasum": "523b565244440a16fa447065a98841770992bd2e" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1734698921", + "version": "8.x-1.0-rc5", + "datestamp": "1702727588", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -10231,10 +9460,6 @@ "name": "Sascha Eggenberger (saschaeggi)", "homepage": "https://www.drupal.org/u/saschaeggi", "role": "Maintainer" - }, - { - "name": "saschaeggi", - "homepage": "https://www.drupal.org/user/1999056" } ], "description": "Gin Toolbar for Frontend use", @@ -10257,59 +9482,18 @@ } ] }, - { - "name": "drupal/givebutter", - "version": "dev-1.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/givebutter.git", - "reference": "eb4ec6fb1a6b372e7608673009834bd5c1f37e2f" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, - "drupal": { - "version": "1.0.x-dev", - "datestamp": "1746809768", - "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": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Allows your site to include the standard Givebutter script.", - "homepage": "https://www.drupal.org/project/givebutter", - "support": { - "source": "https://git.drupalcode.org/project/givebutter" - } - }, { "name": "drupal/gnode", - "version": "3.3.5", + "version": "3.2.2", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.5 || ^10", "drupal/group": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.3.5", - "datestamp": "1746519542", + "version": "3.2.2", + "datestamp": "1701886939", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10338,39 +9522,21 @@ }, { "name": "drupal/google_analytics", - "version": "4.0.3", + "version": "dev-3357831-php-8.2-compatibility", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/google_analytics.git", - "reference": "4.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.3.zip", - "reference": "4.0.3", - "shasum": "faaae65a3b52d842ceef78fd2b2ef6344f3a21a0" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "url": "git@git.drupal.org:issue/google_analytics-3357831.git", + "reference": "6e1250f00dd9942a91cdff4e2d44f1779019e191" }, "require-dev": { "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { - "drupal": { - "version": "4.0.3", - "datestamp": "1734385014", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "branch-alias": { "dev-4.x": "4.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0-or-later" ], @@ -10378,63 +9544,40 @@ { "name": "See contributors", "homepage": "https://www.drupal.org/node/49388/committers" - }, - { - "name": "budda", - "homepage": "https://www.drupal.org/user/13164" - }, - { - "name": "ixismark", - "homepage": "https://www.drupal.org/user/3632333" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, - { - "name": "roberto.rivera.ixis", - "homepage": "https://www.drupal.org/user/3632325" } ], "description": "Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.", "homepage": "https://www.drupal.org/project/google_analytics", "support": { - "source": "https://git.drupalcode.org/project/google_analytics", - "issues": "https://www.drupal.org/project/issues/google_analytics" - } + "issues": "https://www.drupal.org/project/issues/google_analytics", + "source": "https://git.drupalcode.org/project/google_analytics" + }, + "time": "2023-05-03T10:39:55+00:00" }, { "name": "drupal/group", - "version": "3.3.5", + "version": "3.2.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/group.git", - "reference": "3.3.5" + "reference": "3.2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-3.3.5.zip", - "reference": "3.3.5", - "shasum": "5e8df19cf48ef171bbe042e4d4b2f8107a339530" + "url": "https://ftp.drupal.org/files/projects/group-3.2.2.zip", + "reference": "3.2.2", + "shasum": "d44d51828ca6554c32aa2d27e3a898e1d38b9efa" }, "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.5 || ^10", "drupal/entity": "^1.2", - "drupal/flexible_permissions": "^2.0" - }, - "require-dev": { - "drupal/variationcache": "^1.5", - "jangregor/phpstan-prophecy": "^1.0" + "drupal/flexible_permissions": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.3.5", - "datestamp": "1746519542", + "version": "3.2.2", + "datestamp": "1701886939", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10465,20 +9608,20 @@ }, { "name": "drupal/gutenberg", - "version": "2.14.0", + "version": "2.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gutenberg.git", - "reference": "8.x-2.14" + "reference": "8.x-2.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gutenberg-8.x-2.14.zip", - "reference": "8.x-2.14", - "shasum": "c6610a940797ad6eadc19d1a279467a36560c9bd" + "url": "https://ftp.drupal.org/files/projects/gutenberg-8.x-2.9.zip", + "reference": "8.x-2.9", + "shasum": "9a486aa88bcc1c0f14cb40e5f843974753b1e108" }, "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "ext-json": "*", "php": ">=7.4" }, @@ -10488,8 +9631,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.14", - "datestamp": "1728499573", + "version": "8.x-2.9", + "datestamp": "1717234886", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10555,32 +9698,31 @@ }, { "name": "drupal/hal", - "version": "2.0.4", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/hal.git", - "reference": "2.0.4" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/hal-2.0.4.zip", - "reference": "2.0.4", - "shasum": "5d98f2ebbc7952d183278351d24d3e51ea18c8ee" + "url": "https://ftp.drupal.org/files/projects/hal-2.0.2.zip", + "reference": "2.0.2", + "shasum": "9ec3ad376678941bae2e0eae0c980c42cddfc8b2" }, "require": { - "drupal/core": "^10 || ^11" + "drupal/core": "^10" }, "require-dev": { "drupal/aggregator": "2.x-dev", "drupal/entity_reference_revisions": "1.x-dev", - "drupal/rdf": "^2.1 || 3.0.x-dev", - "drupal/tour": "^1" + "drupal/rdf": "2.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1738532063", + "version": "2.0.2", + "datestamp": "1700523711", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10609,30 +9751,29 @@ }, { "name": "drupal/honeypot", - "version": "2.2.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "2.2.2" + "reference": "2.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip", - "reference": "2.2.2", - "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66" + "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip", + "reference": "2.1.3", + "shasum": "101105029a10a574ef6017824182500ab9905856" }, "require": { - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.2 || ^10" }, "require-dev": { - "drupal/rules": "^4.0", - "drupal/webform": "^6.2" + "drupal/rules": "^3.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.2", - "datestamp": "1739854442", + "version": "2.1.3", + "datestamp": "1695604754", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10650,11 +9791,11 @@ "email": "geerlingguy@mac.com" }, { - "name": "manuel garcia", + "name": "Manuel Garcia", "homepage": "https://www.drupal.org/user/213194" }, { - "name": "tr", + "name": "TR", "homepage": "https://www.drupal.org/user/202830" }, { @@ -10679,26 +9820,26 @@ }, { "name": "drupal/http_cache_control", - "version": "2.6.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_cache_control.git", - "reference": "8.x-2.6" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "dce070dff18c0298949e432713616df0841d7182" + "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "6a6864ab39fc2110cc8705e51f5106aa90362df5" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1740741248", + "version": "8.x-2.1", + "datestamp": "1666053697", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10711,11 +9852,7 @@ ], "authors": [ { - "name": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, - { - "name": "josh waihi", + "name": "Josh Waihi", "homepage": "https://www.drupal.org/user/188162" } ], @@ -10727,29 +9864,26 @@ }, { "name": "drupal/http_client_error_status", - "version": "3.1.3", + "version": "3.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_client_error_status.git", - "reference": "3.1.3" + "reference": "3.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_client_error_status-3.1.3.zip", - "reference": "3.1.3", - "shasum": "4880388d93182e98a716790d05440b18c47edb2e" + "url": "https://ftp.drupal.org/files/projects/http_client_error_status-3.1.1.zip", + "reference": "3.1.1", + "shasum": "5e7b5727ebbac05cc2e399d642ce9b42c2c6bbb2" }, "require": { "drupal/core": "^10.2 || ^11" }, - "require-dev": { - "drush/drush": "^12.5.2 || ^13" - }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.3", - "datestamp": "1720219453", + "version": "3.1.1", + "datestamp": "1717281695", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10777,27 +9911,30 @@ }, { "name": "drupal/ief_complex_open", - "version": "dev-1.0.x", + "version": "1.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ief_complex_open.git", - "reference": "01cb7751694172aee46d9f0726f728ac758cf330" + "reference": "1.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ief_complex_open-1.0.1.zip", + "reference": "1.0.1", + "shasum": "abac70022e17d7a2b007ac1587826822433b0346" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "drupal/inline_entity_form": "^1 || ^3" + "drupal/core": "^8.8 || ^9 || ^10", + "drupal/inline_entity_form": "^1" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, "drupal": { - "version": "1.0.1+15-dev", - "datestamp": "1739677426", + "version": "1.0.1", + "datestamp": "1687803317", "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -10810,14 +9947,6 @@ "name": "drpldrp", "homepage": "https://www.drupal.org/user/3630968" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "megakeegman", - "homepage": "https://www.drupal.org/user/3620027" - }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -10835,26 +9964,26 @@ }, { "name": "drupal/image_field_to_media", - "version": "3.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/image_field_to_media.git", - "reference": "3.0.0" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/image_field_to_media-3.0.0.zip", - "reference": "3.0.0", - "shasum": "abc66c620438ce6f5ba073b2c0003fcaf61d21a3" + "url": "https://ftp.drupal.org/files/projects/image_field_to_media-2.0.2.zip", + "reference": "2.0.2", + "shasum": "7026c58a18c8bf9f02e631a5365c2b898916f478" }, "require": { - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0", - "datestamp": "1733757129", + "version": "2.0.2", + "datestamp": "1696623512", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10870,10 +9999,6 @@ "name": "Andrey Vitushkin (wombatbuddy)", "homepage": "https://www.drupal.org/u/wombatbuddy", "role": "Maintainer" - }, - { - "name": "wombatbuddy", - "homepage": "https://www.drupal.org/user/3547848" } ], "description": "Enables to convert existing image fields to Media image fields.", @@ -10929,10 +10054,6 @@ "homepage": "https://github.com/woprrr", "role": "Maintainer" }, - { - "name": "Drupal media CI", - "homepage": "https://www.drupal.org/user/3057985" - }, { "name": "Drupal Media Team", "homepage": "https://www.drupal.org/user/3260690" @@ -10965,36 +10086,38 @@ }, { "name": "drupal/indieweb", - "version": "1.26.0", + "version": "1.22.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "8.x-1.26" + "reference": "8.x-1.22" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.26.zip", - "reference": "8.x-1.26", - "shasum": "5393c42a9c11ffed9026a70439454f9a20aff408" + "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.22.zip", + "reference": "8.x-1.22", + "shasum": "ce9f45da2f9aaca979f50950f06670d79d4d6ded" }, "require": { - "drupal/core": "^10 || ^11", + "drupal/core": "^9 || ^10", "indieauth/client": "^1.1", "indieweb/mention-client": "^1.2", - "lcobucci/jwt": "4.3.0", + "lcobucci/jwt": "4.0.*", "p3k/micropub": "^0.0.3", "p3k/websub": "^0.0.1", "p3k/xray": "^1.12" }, "require-dev": { - "drupal/externalauth": "^2.0", - "drupal/indieweb_indieauth": "*" + "drupal/classy": "*", + "drupal/externalauth": "*", + "drupal/indieweb_indieauth": "*", + "drupal/stable": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.26", - "datestamp": "1740916115", + "version": "8.x-1.22", + "datestamp": "1708867488", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11026,21 +10149,20 @@ }, { "name": "drupal/inline_entity_form", - "version": "3.0.0-rc21", + "version": "1.0.0-rc17", "source": { "type": "git", "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "3.0.0-rc21" + "reference": "8.x-1.0-rc17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inline_entity_form-3.0.0-rc21.zip", - "reference": "3.0.0-rc21", - "shasum": "bbfb99be0ee35ad197556b2aa02f6e181e34ff1f" + "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip", + "reference": "8.x-1.0-rc17", + "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "drupal/rat": "^1.0.0@stable", + "drupal/core": "^8.8 || ^9 || ^10", "php": ">=7.1" }, "require-dev": { @@ -11049,8 +10171,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-rc21", - "datestamp": "1746459780", + "version": "8.x-1.0-rc17", + "datestamp": "1703020130", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -11067,7 +10189,7 @@ "homepage": "https://www.drupal.org/user/86106" }, { - "name": "centarro", + "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" }, { @@ -11189,20 +10311,20 @@ }, { "name": "drupal/insert", - "version": "3.0.2", + "version": "3.0.0-beta7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/insert.git", - "reference": "3.0.2" + "reference": "3.0.0-beta7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/insert-3.0.2.zip", - "reference": "3.0.2", - "shasum": "df73a01b20be742b53c95b3b5a8424894d2ce703" + "url": "https://ftp.drupal.org/files/projects/insert-3.0.0-beta7.zip", + "reference": "3.0.0-beta7", + "shasum": "5387763d30e4dd15142617ce826df572689ec99a" }, "require": { - "drupal/core": "^10 || ^11" + "drupal/core": "^10" }, "require-dev": { "drupal/colorbox": "*" @@ -11210,11 +10332,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.2", - "datestamp": "1739545285", + "version": "3.0.0-beta7", + "datestamp": "1717265062", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -11228,7 +10350,7 @@ "homepage": "https://www.drupal.org/user/35821" }, { - "name": "snater", + "name": "Snater", "homepage": "https://www.drupal.org/user/3513717" } ], @@ -11453,71 +10575,6 @@ "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" } }, - { - "name": "drupal/jquery_ui_datepicker", - "version": "2.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", - "reference": "2.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip", - "reference": "2.1.1", - "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.1", - "datestamp": "1730932612", - "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": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "jrockowitz", - "homepage": "https://www.drupal.org/user/371407" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Datepicker library.", - "homepage": "https://www.drupal.org/project/jquery_ui_datepicker", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_datepicker" - } - }, { "name": "drupal/jquery_ui_menu", "version": "2.1.0", @@ -11583,143 +10640,28 @@ "source": "https://git.drupalcode.org/project/jquery_ui_menu" } }, - { - "name": "drupal/jquery_ui_slider", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_slider.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip", - "reference": "2.1.0", - "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1717031321", - "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": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Slider library.", - "homepage": "https://www.drupal.org/project/jquery_ui_slider", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_slider" - } - }, - { - "name": "drupal/jquery_ui_touch_punch", - "version": "1.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git", - "reference": "1.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip", - "reference": "1.1.1", - "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.0", - "politsin/jquery-ui-touch-punch": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.1", - "datestamp": "1717663479", - "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": "Naveen Valecha", - "homepage": "https://drupal.org/u/naveenvalecha", - "role": "Maintainer" - }, - { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" - } - ], - "description": "Provides jQuery UI Touch Punch library.", - "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch", - "keywords": [ - "Drupal", - "jquery_ui_touch_punch" - ], - "support": { - "source": "https://www.drupal.org/project/jquery_ui_touch_punch", - "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch" - } - }, { "name": "drupal/key", - "version": "1.20.0", + "version": "1.18.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.20" + "reference": "8.x-1.18" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "f45415552de129e9976af72224393cd1d1f2ea65" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.18.zip", + "reference": "8.x-1.18", + "shasum": "5075295390be486ba9e372efff70f90fde764c40" }, "require": { "drupal/core": ">=8.9 <12" }, - "require-dev": { - "drush/drush": ">=9" - }, - "suggest": { - "drush/drush": ">=11" - }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1744582168", + "version": "8.x-1.18", + "datestamp": "1717376699", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11737,7 +10679,7 @@ ], "authors": [ { - "name": "cellar door", + "name": "Cellar Door", "homepage": "https://www.drupal.org/user/658076" }, { @@ -11813,17 +10755,17 @@ }, { "name": "drupal/linkit", - "version": "6.1.6", + "version": "6.1.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "6.1.6" + "reference": "6.1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-6.1.6.zip", - "reference": "6.1.6", - "shasum": "113d8e569cfb92f8d7feb0a2f7713953c0715e92" + "url": "https://ftp.drupal.org/files/projects/linkit-6.1.4.zip", + "reference": "6.1.4", + "shasum": "f5544a39d691af5efd1532bd5403862a7153f60b" }, "require": { "drupal/core": "^10.1" @@ -11835,8 +10777,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.1.6", - "datestamp": "1729189029", + "version": "6.1.4", + "datestamp": "1715203830", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11872,17 +10814,17 @@ }, { "name": "drupal/mailchimp", - "version": "2.2.5", + "version": "2.2.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/mailchimp.git", - "reference": "2.2.5" + "reference": "2.2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.5.zip", - "reference": "2.2.5", - "shasum": "e8764ee98a2a0185a6889277d0f9a9cd27c9d6ef" + "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.3.zip", + "reference": "2.2.3", + "shasum": "a8f1b7de05db41e493e14ebfa50feb8be14255f3" }, "require": { "drupal/core": "^8.7.7 || ^9 || ^10", @@ -11895,8 +10837,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.5", - "datestamp": "1728582242", + "version": "2.2.3", + "datestamp": "1715883765", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12027,10 +10969,6 @@ { "name": "markdorison", "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "megachriz", - "homepage": "https://www.drupal.org/user/654114" } ], "description": "Provides Markdown integration for Drupal and allows content to be formatted in a simple plain-text syntax that is transformed into valid HTML.", @@ -12042,42 +10980,29 @@ }, { "name": "drupal/media_contextual_crop", - "version": "2.1.5", + "version": "dev-1.2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop.git", - "reference": "2.1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop-2.1.5.zip", - "reference": "2.1.5", - "shasum": "d511e031ec5b13c93fe5e1352ee455a902a3ec73" + "reference": "3193fb963b46a5c9d045cd61acba78fc8ae0e88e" }, "require": { - "composer/installers": "^1.9 || ^2.0", - "cweagans/composer-patches": "^1.7 || ^2.0", - "drupal/core": "^10 || ^11", - "drupal/crop": "^2.3", - "drush/drush": ">11" + "drupal/core": "^9.4 || ^10" + }, + "require-dev": { + "drupal/advanced_help": "^1" }, "type": "drupal-module", "extra": { - "drupal": { - "version": "2.1.5", - "datestamp": "1736325942", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-1.2.x": "1.2.x-dev" }, - "enable-patching": true, - "patches": { - "drupal/crop": { - "provide_contextual_capability_to_crops": "https://www.drupal.org/files/issues/2024-01-21/2617818-32-provide_contextual_capability_to_crops.patch" - }, - "drupal/core": { - "Refactor ImageStyleDownloadController": "https://www.drupal.org/files/issues/2024-09-04/2685905-35-factorizeImageDeliver.patch" + "drupal": { + "version": "1.2.1+5-dev", + "datestamp": "1697791918", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -12087,7 +11012,7 @@ ], "authors": [ { - "name": "drdam", + "name": "DrDam", "homepage": "https://www.drupal.org/user/1555440" } ], @@ -12102,24 +11027,24 @@ }, { "name": "drupal/media_contextual_crop_field_formatter", - "version": "2.0.7", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter.git", - "reference": "2.0.7" + "reference": "1.3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_field_formatter-2.0.7.zip", - "reference": "2.0.7", - "shasum": "f3409352b36dfd6ae3936536e76cfc618c92712c" + "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_field_formatter-1.3.0.zip", + "reference": "1.3.0", + "shasum": "7e09a051247c22e83a665ab9538c7e18779d93d2" }, "require": { "composer/installers": "^1.9 || ^2.0", "cweagans/composer-patches": "^1.7", - "drupal/core": "^10 || ^11", - "drupal/media_contextual_crop": "~2.0", - "drupal/media_library_media_modify": "^1.0.0 || ^2.0.0@beta" + "drupal/core": "^9.4 || ^10", + "drupal/media_contextual_crop": "~1.2", + "drupal/media_library_media_modify": "^1.0@beta" }, "require-dev": { "drupal/advanced_help": "^1" @@ -12127,8 +11052,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.7", - "datestamp": "1728401162", + "version": "1.3.0", + "datestamp": "1692266180", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12137,7 +11062,7 @@ "enable-patching": true, "patches": { "drupal/media_library_media_modify": { - "#3270150 Add alteration": "https://git.drupalcode.org/project/media_library_media_modify/-/merge_requests/65.patch" + "#3270150 Add alteration": "https://www.drupal.org/files/issues/2022-06-08/manage_crops_3270150-7.patch" } } }, @@ -12147,7 +11072,7 @@ ], "authors": [ { - "name": "drdam", + "name": "DrDam", "homepage": "https://www.drupal.org/user/1555440" } ], @@ -12162,22 +11087,22 @@ }, { "name": "drupal/media_contextual_crop_fp_adapter", - "version": "2.0.2", + "version": "1.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter.git", - "reference": "2.0.2" + "reference": "1.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_fp_adapter-2.0.2.zip", - "reference": "2.0.2", - "shasum": "ec729a10cda85f3f01428eff80f50102e7aa07c6" + "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_fp_adapter-1.1.1.zip", + "reference": "1.1.1", + "shasum": "b42f7d09e270becdc317bf832156b00cc1b90d12" }, "require": { - "drupal/core": "^10 || ^11", + "drupal/core": "^9.4 || ^10", "drupal/focal_point": "^1.5 || ^2.0@alpha", - "drupal/media_contextual_crop": "~2.0" + "drupal/media_contextual_crop": "~1.2" }, "require-dev": { "drupal/advanced_help": "^1" @@ -12185,8 +11110,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1725437111", + "version": "1.1.1", + "datestamp": "1692689051", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12199,7 +11124,7 @@ ], "authors": [ { - "name": "drdam", + "name": "DrDam", "homepage": "https://www.drupal.org/user/1555440" } ], @@ -12214,22 +11139,22 @@ }, { "name": "drupal/media_contextual_crop_iwc_adapter", - "version": "2.0.2", + "version": "1.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter.git", - "reference": "2.0.2" + "reference": "1.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_iwc_adapter-2.0.2.zip", - "reference": "2.0.2", - "shasum": "49bae2a762dfb5197fcc23e280ce58b4f6963c4a" + "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_iwc_adapter-1.1.1.zip", + "reference": "1.1.1", + "shasum": "7f8e58070560b675cca8eb5b32b8f967532f72b0" }, "require": { - "drupal/core": "^10", + "drupal/core": "^9.4 || ^10", "drupal/image_widget_crop": "^2.3", - "drupal/media_contextual_crop": "~2.0" + "drupal/media_contextual_crop": "~1.2" }, "require-dev": { "drupal/advanced_help": "^1" @@ -12237,8 +11162,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1706001866", + "version": "1.1.1", + "datestamp": "1692689056", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12251,7 +11176,7 @@ ], "authors": [ { - "name": "drdam", + "name": "DrDam", "homepage": "https://www.drupal.org/user/1555440" } ], @@ -12266,17 +11191,17 @@ }, { "name": "drupal/media_library_media_modify", - "version": "1.0.0", + "version": "1.0.0-beta16", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_library_media_modify.git", - "reference": "1.0.0" + "reference": "1.0.0-beta16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_library_media_modify-1.0.0.zip", - "reference": "1.0.0", - "shasum": "62386e5b8f9ec926fc58ecff1145aae6f835808a" + "url": "https://ftp.drupal.org/files/projects/media_library_media_modify-1.0.0-beta16.zip", + "reference": "1.0.0-beta16", + "shasum": "762ee5b7c065454fd50e616872441d44435ca045" }, "require": { "drupal/core": "^9.5 || ^10" @@ -12289,11 +11214,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.0", - "datestamp": "1723624265", + "version": "1.0.0-beta16", + "datestamp": "1715677060", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } }, "patches": { @@ -12301,7 +11226,7 @@ "Issue #3263397-10: Simplify form logic in media library": "https://www.drupal.org/files/issues/2023-01-19/3263397-16.patch" }, "drupal/inline_entity_form": { - "Issue #3271293: Changes are lost when collapsing a paragraphs subform including an inline_entity_form": "https://www.drupal.org/files/issues/2022-09-22/47-8.diff" + "Changes are lost when collapsing a paragraphs subform including an inline_entity_form": "https://www.drupal.org/files/issues/2022-09-22/47-8.diff" } } }, @@ -12367,10 +11292,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "tunic", - "homepage": "https://www.drupal.org/user/397132" - }, { "name": "yoruvo", "homepage": "https://www.drupal.org/user/2989799" @@ -12384,26 +11305,26 @@ }, { "name": "drupal/menu_admin_per_menu", - "version": "1.6.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.6" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a" + "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6" }, "require": { - "drupal/core": "^10.2 || ^11.0" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1726150514", + "version": "8.x-1.5", + "datestamp": "1660918821", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12420,7 +11341,7 @@ "homepage": "https://www.drupal.org/user/410199" }, { - "name": "jeroent", + "name": "JeroenT", "homepage": "https://www.drupal.org/user/2228934" }, { @@ -12434,36 +11355,32 @@ ], "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.", "homepage": "https://www.drupal.org/project/menu_admin_per_menu", - "keywords": [ - "Drupal" - ], "support": { - "source": "https://git.drupalcode.org/project/menu_admin_per_menu", - "issues": "https://drupal.org/project/issues/menu_admin_per_menu" + "source": "https://git.drupalcode.org/project/menu_admin_per_menu" } }, { "name": "drupal/menu_block", - "version": "1.14.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.14" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4" + "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "7b2dec26a81177094860b1f884cca5c40b60fa85" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^9.1 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1740624449", + "version": "8.x-1.11", + "datestamp": "1715036334", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12476,7 +11393,7 @@ ], "authors": [ { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -12484,7 +11401,7 @@ "homepage": "https://www.drupal.org/user/160302" }, { - "name": "johnalbin", + "name": "JohnAlbin", "homepage": "https://www.drupal.org/user/32095" }, { @@ -12508,26 +11425,26 @@ }, { "name": "drupal/menu_link_config", - "version": "1.0.0-alpha9", + "version": "1.0.0-alpha8", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_link_config.git", - "reference": "8.x-1.0-alpha9" + "reference": "8.x-1.0-alpha8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha9.zip", - "reference": "8.x-1.0-alpha9", - "shasum": "de8dc902de9fea403240c6371b9aaa309c5f8077" + "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha8.zip", + "reference": "8.x-1.0-alpha8", + "shasum": "864799692dc6eb310cd90e50aaa2cc88c954d7ec" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha9", - "datestamp": "1741211826", + "version": "8.x-1.0-alpha8", + "datestamp": "1677846082", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -12548,7 +11465,7 @@ "homepage": "https://www.drupal.org/user/229048" }, { - "name": "hydra", + "name": "Hydra", "homepage": "https://www.drupal.org/user/647364" }, { @@ -12572,26 +11489,26 @@ }, { "name": "drupal/menu_trail_by_path", - "version": "2.1.1", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_trail_by_path.git", - "reference": "2.1.1" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.1.1.zip", - "reference": "2.1.1", - "shasum": "cd636347d775e986aa7d05af7783db860fbac27a" + "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.0.1.zip", + "reference": "2.0.1", + "shasum": "3c2c1b0ee669c26e6ccba8a345605b7c932be2bf" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^8.8 || ^9.0 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.1", - "datestamp": "1736754552", + "version": "2.0.1", + "datestamp": "1701298206", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12604,7 +11521,7 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -12632,29 +11549,29 @@ }, { "name": "drupal/message", - "version": "1.8.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/message.git", - "reference": "8.x-1.8" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/message-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "461a00b425c9d8907f489e8109fb6b20871c463e" + "url": "https://ftp.drupal.org/files/projects/message-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "e2da6ff2f098fbb9ff9b2faf7a576d5e421db172" }, "require": { "drupal/core": "^9.2 || ^10 || ^11" }, "require-dev": { - "drupal/token": "^1.14" + "drupal/token": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1739744268", + "version": "8.x-1.5", + "datestamp": "1710105159", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12695,46 +11612,42 @@ }, { "name": "drupal/metatag", - "version": "2.1.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "2.1.0" + "reference": "8.x-1.26" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-2.1.0.zip", - "reference": "2.1.0", - "shasum": "c28fe2fdac68a9370a6af6cbafff4425dd5148f3" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip", + "reference": "8.x-1.26", + "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/token": "^1.0", - "php": ">=8.0" + "drupal/core": "^9.3 || ^10", + "drupal/token": "^1.0" }, "require-dev": { - "drupal/forum": "*", - "drupal/hal": "^1 || ^2 || ^9", + "drupal/devel": "^4.0 || ^5.0", + "drupal/hal": "^9 || ^1 || ^2", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", "drupal/page_manager": "^4.0", + "drupal/panelizer": "^4.0", "drupal/redirect": "^1.0", - "ergebnis/composer-normalize": "*", + "drupal/webprofiler": "^9 || ^10", "mpyw/phpunit-patch-serializable-comparison": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1731004042", + "version": "8.x-1.26", + "datestamp": "1687856123", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "composer-normalize": { - "indent-size": 2, - "indent-style": "space" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -12748,7 +11661,7 @@ "role": "Developer" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" } ], @@ -12820,17 +11733,17 @@ }, { "name": "drupal/migrate_plus", - "version": "6.0.5", + "version": "6.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "6.0.5" + "reference": "6.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.5.zip", - "reference": "6.0.5", - "shasum": "441e91086feaca7a6f1acf1735023fff0dfc5e1e" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.2.zip", + "reference": "6.0.2", + "shasum": "4315bc293aa75ea9247582d5d1925b075865e467" }, "require": { "drupal/core": ">=9.1", @@ -12847,8 +11760,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.5", - "datestamp": "1732124623", + "version": "6.0.2", + "datestamp": "1705424638", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12885,17 +11798,17 @@ }, { "name": "drupal/migrate_source_csv", - "version": "3.7.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.7" + "reference": "8.x-3.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "d952a58003a4616176050ce4d486f9df9c6c59c9" + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.6.zip", + "reference": "8.x-3.6", + "shasum": "60b5e7dcb5d7a68ed0a43693fe67e7d26b1a9d83" }, "require": { "drupal/core": ">=9.1", @@ -12908,8 +11821,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1735314551", + "version": "8.x-3.6", + "datestamp": "1702995930", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12936,17 +11849,17 @@ }, { "name": "drupal/migrate_tools", - "version": "6.0.5", + "version": "6.0.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "6.0.5" + "reference": "6.0.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.0.5.zip", - "reference": "6.0.5", - "shasum": "c82519b366f43827818b04bfbc0009a6e028b835" + "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.0.4.zip", + "reference": "6.0.4", + "shasum": "63c571aefece96b199ce8b8f90da648186502be4" }, "require": { "drupal/core": ">=9.1", @@ -12964,8 +11877,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.5", - "datestamp": "1730824457", + "version": "6.0.4", + "datestamp": "1707330330", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13007,17 +11920,17 @@ }, { "name": "drupal/migrate_upgrade", - "version": "4.0.2", + "version": "4.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_upgrade.git", - "reference": "4.0.2" + "reference": "4.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.2.zip", - "reference": "4.0.2", - "shasum": "358f3cea91411b179a1c78841f1cc3166a947088" + "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.1.zip", + "reference": "4.0.1", + "shasum": "e9507affa61ae27adb1ea6e0d55f3bb32506ddfc" }, "require": { "drupal/core": ">=9", @@ -13028,8 +11941,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.2", - "datestamp": "1719350600", + "version": "4.0.1", + "datestamp": "1672260874", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13066,7 +11979,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/migration_helpers.git", - "reference": "8fb26e7b1221690a93637500d6876e02eea182ce" + "reference": "f9cdba038fc78cf9d777b072700f6ad0f48b3488" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -13078,7 +11991,7 @@ }, "drupal": { "version": "1.0.x-dev", - "datestamp": "1721919021", + "datestamp": "1712904965", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -13328,10 +12241,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/notfoundpassthrough.git", - "reference": "8561838b0636eec6a452b7f35bcec3c673a90a92" + "reference": "0482dc146ebfbc842274ac9513d675efee8b8f6d" }, "require": { - "drupal/core": "^10 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { @@ -13339,8 +12252,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "1.0.0-beta5+2-dev", - "datestamp": "1736206027", + "version": "1.0.0-beta4+1-dev", + "datestamp": "1682098409", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -13391,14 +12304,14 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/octavia.git", - "reference": "23b696b1a43ea4b0f07ab6233128b528ffde4170" + "reference": "ba8cee423b1f4e749c3db4608dac6bb2f36b07ee" }, "require": { - "drupal/bulma": "1.x-dev@dev", + "drupal/bulma": "^3.0", "drupal/components": "^3", "drupal/core": "^9 || ^10", - "drupal/skins": "^2", - "drupal/twigsuggest": "^2" + "drupal/skins": "^2.0-alpha1", + "drupal/twigsuggest": "^1.0-beta2" }, "type": "drupal-theme", "extra": { @@ -13406,8 +12319,8 @@ "dev-2.0.x": "2.0.x-dev" }, "drupal": { - "version": "2.0.0-alpha1+23-dev", - "datestamp": "1738971348", + "version": "2.0.0-alpha1+20-dev", + "datestamp": "1705514242", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -13428,11 +12341,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -13477,7 +12390,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/octavia_camouflage.git", - "reference": "500185349412e67ba9c0cc60e3e6d9befa17748c" + "reference": "671a1c423e1cfcb5a46ce81de4b03080308d5906" }, "require": { "drupal/core": "^9 || ^10", @@ -13490,7 +12403,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1744746689", + "datestamp": "1717001807", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -13506,16 +12419,16 @@ "name": "drutopia", "homepage": "https://www.drupal.org/user/3763727" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "freescholar", "homepage": "https://www.drupal.org/user/69463" }, { - "name": "megakeegman", + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, + { + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -13545,20 +12458,20 @@ }, { "name": "drupal/paragraphs", - "version": "1.19.0", + "version": "1.17.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.19" + "reference": "8.x-1.17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip", - "reference": "8.x-1.19", - "shasum": "831a81a11eac419e8410db45efef5b283c4d117c" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip", + "reference": "8.x-1.17", + "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72" }, "require": { - "drupal/core": "^10.2 || ^11", + "drupal/core": "^9.3 || ^10", "drupal/entity_reference_revisions": "~1.3" }, "require-dev": { @@ -13566,9 +12479,8 @@ "drupal/diff": "1.x-dev", "drupal/entity_browser": "2.x-dev", "drupal/entity_usage": "2.x-dev", - "drupal/feeds": "^3", "drupal/field_group": "3.x-dev", - "drupal/inline_entity_form": "3.x-dev", + "drupal/inline_entity_form": "1.x-dev", "drupal/paragraphs-paragraphs_library": "*", "drupal/replicate": "1.x-dev", "drupal/search_api": "^1", @@ -13580,8 +12492,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.19", - "datestamp": "1740907076", + "version": "8.x-1.17", + "datestamp": "1709804220", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13594,11 +12506,11 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "frans", + "name": "Frans", "homepage": "https://www.drupal.org/user/514222" }, { @@ -13614,7 +12526,7 @@ "homepage": "https://www.drupal.org/user/227761" }, { - "name": "primsi", + "name": "Primsi", "homepage": "https://www.drupal.org/user/282629" } ], @@ -13626,20 +12538,20 @@ }, { "name": "drupal/paragraphs_features", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "2.1.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.1.0.zip", - "reference": "2.1.0", - "shasum": "1e82c20d5fdcbff8615af7d6797f272e85610496" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.0.0.zip", + "reference": "2.0.0", + "shasum": "3f4856f2c6ade242855f5311ff26e8951b8a53a7" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11", + "drupal/core": "^9.2 || ^10", "drupal/paragraphs": "^1.13" }, "require-dev": { @@ -13648,8 +12560,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1736258966", + "version": "2.0.0", + "datestamp": "1713956979", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13754,26 +12666,26 @@ }, { "name": "drupal/password_policy", - "version": "4.0.3", + "version": "4.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/password_policy.git", - "reference": "4.0.3" + "reference": "4.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/password_policy-4.0.3.zip", - "reference": "4.0.3", - "shasum": "f583ede0ebd749459538d02dd527028d57a4e1ac" + "url": "https://ftp.drupal.org/files/projects/password_policy-4.0.1.zip", + "reference": "4.0.1", + "shasum": "a132988f77d02c28d5c0f8f6c84a2d37eaa36c1f" }, "require": { - "drupal/core": "^9.1 || ^10 || ^11" + "drupal/core": "^9.1 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.3", - "datestamp": "1723552706", + "version": "4.0.1", + "datestamp": "1712532453", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13812,10 +12724,6 @@ { "name": "shrop", "homepage": "https://www.drupal.org/user/14767" - }, - { - "name": "vishalkhode", - "homepage": "https://www.drupal.org/user/2439156" } ], "description": "Sets up constraints and expiration of passwords.", @@ -13827,34 +12735,31 @@ }, { "name": "drupal/pathauto", - "version": "1.13.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.13" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", + "drupal/core": "^9.3 || ^10", "drupal/ctools": "*", "drupal/token": "*" }, - "require-dev": { - "drupal/forum": "*" - }, "suggest": { "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability." }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1739552840", + "version": "8.x-1.12", + "datestamp": "1712319355", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13872,11 +12777,11 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -13896,84 +12801,28 @@ "documentation": "https://www.drupal.org/docs/8/modules/pathauto" } }, - { - "name": "drupal/pdf_api", - "version": "2.4.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/pdf_api.git", - "reference": "2.4.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pdf_api-2.4.4.zip", - "reference": "2.4.4", - "shasum": "345309e4f1e0864ecded71c8226b4de0db95a505" - }, - "require": { - "dompdf/dompdf": ">=2.0.4", - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "mikehaertl/phpwkhtmltopdf": "^2.3", - "mpdf/mpdf": "^8.2.0", - "tecnickcom/tcpdf": "^6.8 || ^6.7.5" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.4.4", - "datestamp": "1722646728", - "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": "markdorison", - "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "Nigel Cunningham", - "homepage": "https://www.drupal.org/user/250105" - }, - { - "name": "Sutharsan", - "homepage": "https://www.drupal.org/user/73854" - } - ], - "description": "Provides an API for generating PDFs.", - "homepage": "https://www.drupal.org/project/pdf_api", - "support": { - "source": "https://git.drupalcode.org/project/pdf_api" - } - }, { "name": "drupal/plausible", - "version": "2.1.1", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/plausible.git", - "reference": "2.1.1" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/plausible-2.1.1.zip", - "reference": "2.1.1", - "shasum": "cf355cb4bb1820fad8b2cc3991e2521612ec0bbb" + "url": "https://ftp.drupal.org/files/projects/plausible-2.1.0.zip", + "reference": "2.1.0", + "shasum": "7c9ab067bf07882aad4a2f8236050efc8376d66a" }, "require": { - "drupal/core": "^8.8.6 || ^9 || ^10 || ^11" + "drupal/core": "^8.8.6 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.1", - "datestamp": "1732534895", + "version": "2.1.0", + "datestamp": "1687203441", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13986,7 +12835,7 @@ ], "authors": [ { - "name": "dieterholvoet", + "name": "DieterHolvoet", "homepage": "https://www.drupal.org/user/3567222" }, { @@ -14006,30 +12855,30 @@ }, { "name": "drupal/prepopulate", - "version": "2.5.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/prepopulate.git", - "reference": "8.x-2.5" + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "9efbac5cba063c79b0cfc4f82bcd87a31e0b123d" + "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "5e82bd6cbbaafc8320e8b3e48bc3862de4964e00" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "require-dev": { - "drupal/inline_entity_form": "^3.0@rc", - "drupal/og": "^1.x-dev" + "drupal/inline_entity_form": "^1.0@beta", + "drupal/og": "^1.0@alpha" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.5", - "datestamp": "1732903418", + "version": "8.x-2.4", + "datestamp": "1678728834", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14074,22 +12923,22 @@ }, { "name": "drupal/preview_link", - "version": "2.2.0-alpha2", + "version": "2.1.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "2.2.0-alpha2" + "reference": "2.1.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-2.2.0-alpha2.zip", - "reference": "2.2.0-alpha2", - "shasum": "7a2fd37b7b8d038919f31cfd4fb4b2c43168b6e0" + "url": "https://ftp.drupal.org/files/projects/preview_link-2.1.0-alpha3.zip", + "reference": "2.1.0-alpha3", + "shasum": "5cd3f1d991568c648f313f69fbd4c3bb0f1d0f0c" }, "require": { - "drupal/core": "^10.2 || ^11", - "drupal/dynamic_entity_reference": "^3 || ^4", - "php": ">=8.1" + "drupal/core": "^9.4 || ^10", + "drupal/dynamic_entity_reference": "^1 || ^2 || ^3 || ^4", + "php": ">=8.0" }, "require-dev": { "drupal/entity_reference_revisions": "*", @@ -14098,8 +12947,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.0-alpha2", - "datestamp": "1736820546", + "version": "2.1.0-alpha3", + "datestamp": "1712010948", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -14132,7 +12981,7 @@ "homepage": "https://www.drupal.org/user/314289" }, { - "name": "sam152", + "name": "Sam152", "homepage": "https://www.drupal.org/user/1485048" } ], @@ -14146,84 +12995,28 @@ "issues": "https://www.drupal.org/project/issues/preview_link" } }, - { - "name": "drupal/printable", - "version": "3.1.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/printable.git", - "reference": "3.1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/printable-3.1.3.zip", - "reference": "3.1.3", - "shasum": "da44665d16bc2445fba519cbcc7dc448208d8f46" - }, - "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/pdf_api": "^2.4.0", - "wa72/htmlpagedom": "^1.3 || ^2.0 || 3.0" - }, - "require-dev": { - "drupal/pdf_api": "*", - "smalot/pdfparser": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.3", - "datestamp": "1720679594", - "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": "Nigel Cunningham", - "homepage": "https://www.drupal.org/user/346106", - "email": "nigel@nigelcunningham.com.au" - }, - { - "name": "Nigel Cunningham", - "homepage": "https://www.drupal.org/user/250105" - } - ], - "description": "Generates printer friendly version of nodes", - "homepage": "https://www.drupal.org/project/printable", - "support": { - "source": "https://git.drupalcode.org/project/printable", - "issues": "https://www.drupal.org/project/issues/printable" - } - }, { "name": "drupal/r4032login", - "version": "2.2.3", + "version": "2.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/r4032login.git", - "reference": "2.2.3" + "reference": "2.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.3.zip", - "reference": "2.2.3", - "shasum": "6309c01b42ff6605cb6dd8f24ddde0c493f0fa2a" + "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.1.zip", + "reference": "2.2.1", + "shasum": "b1ee040ec84a1feee28ed9ac6c8576f6e9edfd3a" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.3", - "datestamp": "1737623532", + "version": "2.2.1", + "datestamp": "1680284411", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14248,11 +13041,7 @@ "homepage": "https://www.drupal.org/user/972" }, { - "name": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, - { - "name": "grayle", + "name": "Grayle", "homepage": "https://www.drupal.org/user/3145497" }, { @@ -14268,7 +13057,7 @@ "homepage": "https://www.drupal.org/user/108440" }, { - "name": "nixou", + "name": "Nixou", "homepage": "https://www.drupal.org/user/2304734" }, { @@ -14276,7 +13065,7 @@ "homepage": "https://www.drupal.org/user/49851" }, { - "name": "robloach", + "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" }, { @@ -14300,23 +13089,23 @@ }, { "name": "drupal/rabbit_hole", - "version": "1.0.0", + "version": "1.0.0-beta11", "source": { "type": "git", "url": "https://git.drupalcode.org/project/rabbit_hole.git", - "reference": "8.x-1.0" + "reference": "8.x-1.0-beta11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/rabbit_hole-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "9fd3129b27cd10e23a775719770bf2bda977c234" + "url": "https://ftp.drupal.org/files/projects/rabbit_hole-8.x-1.0-beta11.zip", + "reference": "8.x-1.0-beta11", + "shasum": "a5c3bd5d1a190e25bb4d339525dd71918015fea2" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "require-dev": { - "drupal/commerce": "^2.39", + "drupal/commerce": "*", "drupal/commerce_product": "*", "drupal/file_entity": "*", "drupal/group": "*", @@ -14325,11 +13114,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1721413113", + "version": "8.x-1.0-beta11", + "datestamp": "1670668459", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -14347,15 +13136,11 @@ "homepage": "https://www.drupal.org/user/289861" }, { - "name": "dylan donkersgoed", + "name": "Dylan Donkersgoed", "homepage": "https://www.drupal.org/user/2803351" }, { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "matroskeen", + "name": "Matroskeen", "homepage": "https://www.drupal.org/user/3426249" }, { @@ -14377,48 +13162,6 @@ "source": "https://git.drupalcode.org/project/rabbit_hole" } }, - { - "name": "drupal/rat", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/rat.git", - "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71" - }, - "dist": { - "type": "zip", - "url": "https://git.drupalcode.org/api/v4/projects/project%2Frat/repository/archive.zip?sha=28202b02262a39ac8dbbfd43696b67c0c8c46b71", - "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0" - }, - "require-dev": { - "drupal/core": "^9.4", - "drupal/core-dev": "^9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Drupal\\rat\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "gpl-2.0-or-later" - ], - "authors": [ - { - "name": "Merlin", - "email": "merlin@geeks4change.net" - } - ], - "support": { - "source": "https://git.drupalcode.org/project/rat/-/tree/1.0.0" - }, - "time": "2023-07-19T22:22:22+00:00" - }, { "name": "drupal/rdf", "version": "2.1.1", @@ -14498,26 +13241,26 @@ }, { "name": "drupal/redirect", - "version": "1.11.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.11" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "7df8b3524bbde07d254216039636947a689140ef" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1737382886", + "version": "8.x-1.9", + "datestamp": "1693393506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14530,15 +13273,15 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { @@ -14554,16 +13297,16 @@ }, { "name": "drupal/redirect_404", - "version": "1.11.0", + "version": "1.9.0", "require": { - "drupal/core": "^9.2 || ^10 || ^11", + "drupal/core": "^9.2 || ^10", "drupal/redirect": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1737382886", + "version": "8.x-1.9", + "datestamp": "1693393506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14576,15 +13319,15 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { @@ -14598,264 +13341,29 @@ "source": "https://git.drupalcode.org/project/redirect" } }, - { - "name": "drupal/regionincontent", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/regionincontent.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/regionincontent-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "3323c1215c4cfc3da3580e8d382c7cc0f691a513" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.1", - "datestamp": "1699306875", - "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": "MegaKeegMan", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Provides the ability to print regions (the building block of Drupal site building— where blocks are placed) within content (node) templates.", - "homepage": "https://www.drupal.org/project/regionincontent", - "support": { - "source": "https://git.drupalcode.org/project/regionincontent" - } - }, - { - "name": "drupal/registration_role", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/registration_role.git", - "reference": "2.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/registration_role-2.0.2.zip", - "reference": "2.0.2", - "shasum": "3dcace022bae8fdbc4c66c86fa5b9b0274298a8b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1739480619", - "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": "karthikeyan-manivasagam", - "homepage": "https://www.drupal.org/user/1494424" - }, - { - "name": "melon", - "homepage": "https://www.drupal.org/user/32875" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "pfournier", - "homepage": "https://www.drupal.org/user/160468" - }, - { - "name": "pignaz", - "homepage": "https://www.drupal.org/user/471908" - }, - { - "name": "yogen.prasad", - "homepage": "https://www.drupal.org/user/2115328" - } - ], - "description": "Automatically assign a role to all new users who register.", - "homepage": "https://www.drupal.org/project/registration_role", - "support": { - "source": "https://git.drupalcode.org/project/registration_role" - } - }, - { - "name": "drupal/require_on_publish", - "version": "1.10.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/require_on_publish.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/require_on_publish-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "4ff1a062cceff6fb100d080cb59a6489e664920a" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.10", - "datestamp": "1706803317", - "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": "Mike Priscella", - "homepage": "https://drupal.org/u/mpriscella", - "role": "Maintainer" - }, - { - "name": "mpriscella", - "homepage": "https://www.drupal.org/user/2354820" - }, - { - "name": "pfunklange", - "homepage": "https://www.drupal.org/user/566588" - } - ], - "description": "Adds ability to designate fields as required for publishing only.", - "homepage": "https://www.drupal.org/project/require_on_publish", - "keywords": [ - "field", - "publish", - "require", - "require on publish", - "required field" - ], - "support": { - "source": "https://git.drupalcode.org/project/require_on_publish", - "issues": "https://www.drupal.org/project/issues/require_on_publish" - } - }, - { - "name": "drupal/rh_node", - "version": "1.0.0", - "require": { - "drupal/core": "^9.5 || ^10 || ^11", - "drupal/rabbit_hole": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.0", - "datestamp": "1721413113", - "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": "aleksey.tk", - "homepage": "https://www.drupal.org/user/22093" - }, - { - "name": "bohart", - "homepage": "https://www.drupal.org/user/289861" - }, - { - "name": "dylan donkersgoed", - "homepage": "https://www.drupal.org/user/2803351" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "matroskeen", - "homepage": "https://www.drupal.org/user/3426249" - }, - { - "name": "mparker17", - "homepage": "https://www.drupal.org/user/536298" - }, - { - "name": "Odd Hill", - "homepage": "https://www.drupal.org/user/789934" - }, - { - "name": "olofbokedal", - "homepage": "https://www.drupal.org/user/1198438" - } - ], - "description": "Adds Rabbit Hole functionality for nodes.", - "homepage": "https://www.drupal.org/project/rabbit_hole", - "support": { - "source": "https://git.drupalcode.org/project/rabbit_hole" - } - }, { "name": "drupal/riddler", - "version": "3.0.2", + "version": "3.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/riddler.git", - "reference": "3.0.2" + "reference": "3.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/riddler-3.0.2.zip", - "reference": "3.0.2", - "shasum": "c4342ada86895cdb68c8fc83d1229f1e51cd8ecf" + "url": "https://ftp.drupal.org/files/projects/riddler-3.0.1.zip", + "reference": "3.0.1", + "shasum": "dc758aece996787a3429c61aa534df87ccf770a3" }, "require": { "drupal/captcha": "^2", - "drupal/core": "^10 || ^11" + "drupal/core": "^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.2", - "datestamp": "1738255331", + "version": "3.0.1", + "datestamp": "1686732873", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14872,7 +13380,7 @@ "homepage": "https://www.drupal.org/user/3317601" }, { - "name": "anybody", + "name": "Anybody", "homepage": "https://www.drupal.org/user/291091" }, { @@ -14880,7 +13388,7 @@ "homepage": "https://www.drupal.org/user/277371" }, { - "name": "grevil", + "name": "Grevil", "homepage": "https://www.drupal.org/user/3668491" }, { @@ -14904,29 +13412,26 @@ }, { "name": "drupal/role_delegation", - "version": "1.3.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.3" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "e03d9c82d509a2630750e50a3452bd70ca1c55a6" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" }, "require": { - "drupal/core": "^10.3 || ^11" - }, - "require-dev": { - "drupal/action": "^0.2" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1726236826", + "version": "8.x-1.2", + "datestamp": "1644487627", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14944,11 +13449,7 @@ "role": "Maintainer" }, { - "name": "benjy", - "homepage": "https://www.drupal.org/user/1852732" - }, - { - "name": "jeroent", + "name": "JeroenT", "homepage": "https://www.drupal.org/user/2228934" } ], @@ -14959,118 +13460,40 @@ "issues": "http://drupal.org/project/role_delegation" } }, - { - "name": "drupal/scheduler", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/scheduler.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "206a9b6e348273aa2cf97ba429d437112b47469b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "require-dev": { - "drupal/devel_generate": "^2.0 || >=4", - "drupal/rules": "^3", - "drush/drush": ">=9" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1683719323", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Eric Schaefer (Eric Schaefer)", - "homepage": "https://www.drupal.org/u/eric-schaefer", - "role": "Maintainer" - }, - { - "name": "Jonathan Smith (jonathan1055)", - "homepage": "https://www.drupal.org/u/jonathan1055", - "role": "Maintainer" - }, - { - "name": "Pieter Frenssen (pfrenssen)", - "homepage": "https://www.drupal.org/u/pfrenssen", - "role": "Maintainer" - }, - { - "name": "Rick Manelius (rickmanelius)", - "homepage": "https://www.drupal.org/u/rickmanelius", - "role": "Maintainer" - } - ], - "description": "Automatically publish and unpublish content at specified dates and times.", - "homepage": "https://drupal.org/project/scheduler", - "support": { - "source": "https://git.drupalcode.org/project/scheduler", - "issues": "https://www.drupal.org/project/issues/scheduler" - } - }, { "name": "drupal/schema_metatag", - "version": "3.0.3", + "version": "2.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/schema_metatag.git", - "reference": "3.0.3" + "reference": "8.x-2.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/schema_metatag-3.0.3.zip", - "reference": "3.0.3", - "shasum": "54fadabe0b56cb3a5f48a48ff438e8ad5883423c" + "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip", + "reference": "8.x-2.5", + "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87" }, "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/metatag": "^2.0", - "php": ">=8.0" + "drupal/core": "^9.0 || ^10", + "drupal/metatag": "^1.0" }, "require-dev": { "drupal/coder": "^8.3", "drupal/metatag_views": "*", "drupal/schema_article": "*", "drupal/schema_organization": "*", - "ergebnis/composer-normalize": "*", - "mpyw/phpunit-patch-serializable-comparison": "*", "phpcompatibility/php-compatibility": "^9.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.3", - "datestamp": "1721141808", + "version": "8.x-2.5", + "datestamp": "1687460392", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "composer-normalize": { - "indent-size": 2, - "indent-style": "space" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -15185,7 +13608,7 @@ "homepage": "https://www.drupal.org/user/188049" }, { - "name": "anybody", + "name": "Anybody", "homepage": "https://www.drupal.org/user/291091" }, { @@ -15197,7 +13620,7 @@ "homepage": "https://www.drupal.org/user/2921997" }, { - "name": "grevil", + "name": "Grevil", "homepage": "https://www.drupal.org/user/3668491" }, { @@ -15229,20 +13652,20 @@ }, { "name": "drupal/search_api", - "version": "1.38.0", + "version": "1.34.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.38" + "reference": "8.x-1.34" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip", - "reference": "8.x-1.38", - "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.34.zip", + "reference": "8.x-1.34", + "shasum": "dd08166888f90adaf01cc1a759266097709efe7c" }, "require": { - "drupal/core": "^10.2 || ^11" + "drupal/core": "^10.1 || ^11" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -15260,12 +13683,17 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", + "version": "8.x-1.34", + "datestamp": "1714899074", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10 || ^11" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -15296,20 +13724,20 @@ }, { "name": "drupal/search_api_autocomplete", - "version": "1.10.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_autocomplete.git", - "reference": "8.x-1.10" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "bd7d4a35a595efb866f6f5e2230d62d93b074927" + "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "80f75774776cee193624fe5731906e35bff160f6" }, "require": { - "drupal/core": "^10.2 || ^11", + "drupal/core": "^9.2 || ^10", "drupal/search_api": "^1.0" }, "require-dev": { @@ -15318,8 +13746,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1736941746", + "version": "8.x-1.8", + "datestamp": "1697366383", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15350,16 +13778,16 @@ }, { "name": "drupal/search_api_db", - "version": "1.38.0", + "version": "1.34.0", "require": { - "drupal/core": "^10.2 || ^11", + "drupal/core": "^10.1 || ^11", "drupal/search_api": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", + "version": "8.x-1.34", + "datestamp": "1714899074", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15380,7 +13808,7 @@ "homepage": "https://www.drupal.org/user/205582" }, { - "name": "nick_vh", + "name": "Nick_vh", "homepage": "https://www.drupal.org/user/122682" } ], @@ -15392,17 +13820,17 @@ }, { "name": "drupal/search_api_saved_searches", - "version": "1.1.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_saved_searches.git", - "reference": "8.x-1.1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "c5bc1de8f15143344fe2bad2d5589ec05ea280db" + "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "761211352810805b2f3d6a96cdfe79a2f1354c7b" }, "require": { "drupal/core": "^10.1 || ^11", @@ -15415,8 +13843,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1740299097", + "version": "8.x-1.0", + "datestamp": "1713699951", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15447,26 +13875,26 @@ }, { "name": "drupal/seckit", - "version": "2.0.3", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/seckit.git", - "reference": "2.0.3" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/seckit-2.0.3.zip", - "reference": "2.0.3", - "shasum": "34d38f2daaf99781ef6b7e7fbe2eeabc73a7ca16" + "url": "https://ftp.drupal.org/files/projects/seckit-2.0.1.zip", + "reference": "2.0.1", + "shasum": "2eee3b9719bdd5951c2b78f419c86f4765010439" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1726075930", + "version": "2.0.1", + "datestamp": "1671195208", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15475,7 +13903,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -15502,32 +13930,32 @@ "security" ], "support": { - "source": "https://git.drupalcode.org/project/seckit", + "source": "http://cgit.drupalcode.org/seckit", "issues": "http://drupal.org/project/issues/seckit" } }, { "name": "drupal/select_or_other", - "version": "4.2.0", + "version": "4.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/select_or_other.git", - "reference": "4.2.0" + "reference": "4.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/select_or_other-4.2.0.zip", - "reference": "4.2.0", - "shasum": "1e33d196a7bc6116c66d5e77b53e2fee6f1e62d9" + "url": "https://ftp.drupal.org/files/projects/select_or_other-4.1.0.zip", + "reference": "4.1.0", + "shasum": "ff73f610623c16ee27ac2afdc2f18e3d3d934081" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.0", - "datestamp": "1733203728", + "version": "4.1.0", + "datestamp": "1686871176", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15555,10 +13983,6 @@ "name": "hmendes", "homepage": "https://www.drupal.org/user/3673677" }, - { - "name": "ivnish", - "homepage": "https://www.drupal.org/user/3547706" - }, { "name": "legolasbo", "homepage": "https://www.drupal.org/user/2480548" @@ -15580,20 +14004,20 @@ }, { "name": "drupal/shield", - "version": "1.8.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/shield.git", - "reference": "8.x-1.8" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "709b5580790a3b5bd8dda26f722cdb5a9c3911c5" + "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "dcb77778aaffd39a9bb80c123f086358ad1c8bf9" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "drupal/core": "^9.2 || ^10" }, "require-dev": { "drupal/key": "^1.16" @@ -15601,8 +14025,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1719947682", + "version": "8.x-1.7", + "datestamp": "1661968920", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15654,26 +14078,26 @@ }, { "name": "drupal/similarterms", - "version": "1.9.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/similarterms.git", - "reference": "8.x-1.9" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "73aab93a7de4ed6a9fc2f18181b2eeee34324b6d" + "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "12a28514dfee98bb723e6eed772f5eeeb525de54" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1722872728", + "version": "8.x-1.8", + "datestamp": "1699725697", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15704,64 +14128,6 @@ "source": "https://git.drupalcode.org/project/similarterms" } }, - { - "name": "drupal/simple_sitemap", - "version": "4.2.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/simple_sitemap.git", - "reference": "4.2.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.2.zip", - "reference": "4.2.2", - "shasum": "1f9c9197d37450fb347a4fa3f10191f5f4b5ef13" - }, - "require": { - "drupal/core": "^10.2 || ^11", - "ext-xmlwriter": "*" - }, - "conflict": { - "drush/drush": "<12.5.1" - }, - "require-dev": { - "drupal/paragraphs": "^1.18" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.2.2", - "datestamp": "1732485885", - "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": "Pawel Ginalski (gbyte)", - "homepage": "https://www.drupal.org/u/gbyte", - "email": "contact@gbyte.dev", - "role": "Maintainer" - }, - { - "name": "walkingdexter", - "homepage": "https://www.drupal.org/user/3251330" - } - ], - "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", - "homepage": "https://drupal.org/project/simple_sitemap", - "support": { - "source": "https://cgit.drupalcode.org/simple_sitemap", - "issues": "https://drupal.org/project/issues/simple_sitemap" - } - }, { "name": "drupal/skins", "version": "2.0.0-alpha1", @@ -15828,17 +14194,17 @@ }, { "name": "drupal/smart_date", - "version": "4.2.3", + "version": "4.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smart_date.git", - "reference": "4.2.3" + "reference": "4.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_date-4.2.3.zip", - "reference": "4.2.3", - "shasum": "f4e97acce3bd666cf553b85c87b466eb172da69c" + "url": "https://ftp.drupal.org/files/projects/smart_date-4.1.3.zip", + "reference": "4.1.3", + "shasum": "13b86c7a386eaf240ef4fd7bdd94df7528880c09" }, "require": { "drupal/core": "^9 || ^10 || ^11", @@ -15854,8 +14220,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.3", - "datestamp": "1740856565", + "version": "4.1.3", + "datestamp": "1716307674", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15894,31 +14260,21 @@ }, { "name": "drupal/sms", - "version": "2.3.0", + "version": "2.2.0-rc1", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.5 || ^10", "drupal/dynamic_entity_reference": "^3 || ^4", "drupal/smsframework": "^2", - "php": ">=8.1" - }, - "conflict": { - "drupal/coder": "<8.3.26" - }, - "require-dev": { - "mglaman/phpstan-drupal": "^1", - "phpstan/extension-installer": "^1.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-deprecation-rules": "*", - "previousnext/coding-standard": "^1.0" + "php": ">=8" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.3.0", - "datestamp": "1733714927", + "version": "2.2.0-rc1", + "datestamp": "1670241566", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -15951,46 +14307,30 @@ }, { "name": "drupal/smsframework", - "version": "2.3.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smsframework.git", - "reference": "2.3.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smsframework-2.3.0.zip", - "reference": "2.3.0", - "shasum": "37e24980f7478eeef38b7a811fba7175606df235" + "url": "https://ftp.drupal.org/files/projects/smsframework-2.1.0.zip", + "reference": "2.1.0", + "shasum": "a929db8db5ed2b82b87d371e36d746bd1270a7e3" }, "require": { - "drupal/core": "^10.3 || ^11", - "drupal/dynamic_entity_reference": "^3 || ^4", - "php": ">=8.1" - }, - "conflict": { - "drupal/coder": "<8.3.26" - }, - "replace": { - "drupal/sms_blast": "self.version", - "drupal/sms_devel": "self.version", - "drupal/sms_sendtophone": "self.version", - "drupal/sms_user": "self.version" + "drupal/core": ">=9.2" }, "require-dev": { "drupal/dynamic_entity_reference": "*", - "drupal/sms": "*", - "mglaman/phpstan-drupal": "^1", - "phpstan/extension-installer": "^1.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-deprecation-rules": "*", - "previousnext/coding-standard": "^1.0" + "drupal/sms": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.3.0", - "datestamp": "1733714927", + "version": "2.1.0", + "datestamp": "1670240395", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16003,43 +14343,39 @@ ], "authors": [ { - "name": "Aniebiet Udoh", - "homepage": "https://www.drupal.org/u/almaudoh", - "role": "Maintainer" + "name": "almaudoh", + "homepage": "https://www.drupal.org/user/488082" }, { - "name": "Daniel Phin", - "homepage": "http://danielph.in", - "role": "Maintainer" + "name": "batje", + "homepage": "https://www.drupal.org/user/2696" }, { "name": "dpi", "homepage": "https://www.drupal.org/user/81431" } ], - "description": "Provides an extensible API that facilitates communication between Drupal and various SMS gateways.", - "homepage": "http://drupal.org/project/smsframework", + "homepage": "https://www.drupal.org/project/smsframework", "support": { - "source": "https://git.drupalcode.org/project/smsframework", - "issues": "https://www.drupal.org/project/issues/smsframework" + "source": "https://git.drupalcode.org/project/smsframework" } }, { "name": "drupal/social_api", - "version": "4.0.2", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_api.git", - "reference": "4.0.2" + "reference": "3.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_api-4.0.2.zip", - "reference": "4.0.2", - "shasum": "8da084f0262080b2dfbbaa0ffb72cc386c6221dc" + "url": "https://ftp.drupal.org/files/projects/social_api-3.1.0.zip", + "reference": "3.1.0", + "shasum": "ceb8b35f718657a8f3d67d2e9a8384d4b35687ea" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11", + "drupal/core": "^9.1 || ^10", "ext-openssl": "*", "league/oauth2-client": "^2.0" }, @@ -16050,8 +14386,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.2", - "datestamp": "1725453406", + "version": "3.1.0", + "datestamp": "1660188487", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16103,26 +14439,26 @@ }, { "name": "drupal/social_media_links", - "version": "2.10.0", + "version": "2.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_media_links.git", - "reference": "8.x-2.10" + "reference": "8.x-2.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.10.zip", - "reference": "8.x-2.10", - "shasum": "dd329d44f88112d2fe83f54331502738c5f2810b" + "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip", + "reference": "8.x-2.9", + "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.10", - "datestamp": "1724736719", + "version": "8.x-2.9", + "datestamp": "1665768361", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16143,10 +14479,6 @@ "name": "Christian Beier", "homepage": "https://www.drupal.org/u/cbeier", "role": "Maintainer" - }, - { - "name": "neslee canil pinto", - "homepage": "https://www.drupal.org/user/3580850" } ], "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.", @@ -16158,22 +14490,21 @@ }, { "name": "drupal/social_post", - "version": "3.0.2", + "version": "3.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_post.git", - "reference": "3.0.2" + "reference": "3.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_post-3.0.2.zip", - "reference": "3.0.2", - "shasum": "616ce8d6c3f507b9ecf83434ccbd150e795cde77" + "url": "https://ftp.drupal.org/files/projects/social_post-3.0.1.zip", + "reference": "3.0.1", + "shasum": "9976ba61dcba635f09d5d499ea6cb4ee9122cbe6" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/social_api": "^4", - "php": ">=8.1" + "drupal/core": "^8.8 || ^9.0 || ^10", + "drupal/social_api": "^3" }, "require-dev": { "drupal/coder": "^8.3", @@ -16182,8 +14513,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.2", - "datestamp": "1725763360", + "version": "3.0.1", + "datestamp": "1665165035", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16227,7 +14558,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_post_facebook.git", - "reference": "eddf359ba9177adb81b63fa6c84e591b35603b51" + "reference": "6286f5bc5891c08665b5a14390b746634435e1f5" }, "require": { "agaric/php-facebook": "dev-main", @@ -16241,7 +14572,7 @@ }, "drupal": { "version": "3.0.x-dev", - "datestamp": "1745366639", + "datestamp": "1707335201", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -16268,7 +14599,7 @@ "homepage": "https://www.drupal.org/user/3513954" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -16296,7 +14627,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_post_twitter.git", - "reference": "13a10bf5c0cc6debe196b67163f2825e6ef3392e" + "reference": "18ade93bd62d2ceaf0d9dc927371fd847e37a0b7" }, "require": { "abraham/twitteroauth": ">=2", @@ -16314,8 +14645,8 @@ "dev-3.x": "3.x-dev" }, "drupal": { - "version": "3.0.0+1-dev", - "datestamp": "1720959231", + "version": "3.0.0-beta4+1-dev", + "datestamp": "1665164947", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -16350,26 +14681,26 @@ }, { "name": "drupal/stable", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/stable.git", - "reference": "2.1.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip", - "reference": "2.1.0", - "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb" + "url": "https://ftp.drupal.org/files/projects/stable-2.0.0.zip", + "reference": "2.0.0", + "shasum": "1d1ba799280bd6b9a3c46a158e6026663e080f3f" }, "require": { - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-theme", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1721202956", + "version": "2.0.0", + "datestamp": "1663102967", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16385,20 +14716,16 @@ "name": "bnjmnm", "homepage": "https://www.drupal.org/user/2369194" }, + { + "name": "Cottser", + "homepage": "https://www.drupal.org/user/1167326" + }, { "name": "lauriii", "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "Rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" - }, - { - "name": "star-szr", - "homepage": "https://www.drupal.org/user/1167326" } ], - "description": "A base theme using Drupal core markup and CSS.", + "description": "A base theme using Drupal 8.0.0's core markup and CSS.", "homepage": "https://www.drupal.org/project/stable", "support": { "source": "https://git.drupalcode.org/project/stable" @@ -16482,20 +14809,20 @@ }, { "name": "drupal/subpathauto", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/subpathauto.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "fa9a737da79d396ee8019c944e0239865762ce48" + "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "require-dev": { "drupal/redirect": "*" @@ -16503,8 +14830,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1729470928", + "version": "8.x-1.3", + "datestamp": "1676316639", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16517,7 +14844,7 @@ ], "authors": [ { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -16525,7 +14852,7 @@ "homepage": "https://www.drupal.org/user/1078742" }, { - "name": "nickdickinsonwilde", + "name": "NickDickinsonWilde", "homepage": "https://www.drupal.org/user/3094661" } ], @@ -16638,7 +14965,7 @@ ], "authors": [ { - "name": "aswathyajish", + "name": "AswathyAjish", "homepage": "https://www.drupal.org/user/2584696" }, { @@ -16654,7 +14981,7 @@ "homepage": "https://www.drupal.org/user/2603884" }, { - "name": "tolstoydotcom", + "name": "TolstoyDotCom", "homepage": "https://www.drupal.org/user/103055" }, { @@ -16676,34 +15003,30 @@ }, { "name": "drupal/taxonomy_manager", - "version": "2.0.20", + "version": "2.0.11", "source": { "type": "git", "url": "https://git.drupalcode.org/project/taxonomy_manager.git", - "reference": "2.0.20" + "reference": "2.0.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.20.zip", - "reference": "2.0.20", - "shasum": "69079226ff05c19087829319c99c06714759cfac" + "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.11.zip", + "reference": "2.0.11", + "shasum": "03d50c2702dcf1c2f744ad735ab2037adc422fb1" }, "require": { - "drupal/core": "^10.3 || ^11.0", - "drupal/jquery_ui": "^1.7" + "drupal/core": "^9.3 || ^10", + "drupal/jquery_ui": "^1.4" }, "require-dev": { - "drupal/term_merge": "^2.0", - "drupal/term_reference_change": "^2.0" - }, - "suggest": { - "fancytree/fancytree": "The fancytree library is required to use the drupal/taxonomy_manager module." + "drupal/term_merge": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.20", - "datestamp": "1745967696", + "version": "2.0.11", + "datestamp": "1715239473", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16712,7 +15035,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -16720,7 +15043,7 @@ "homepage": "https://www.drupal.org/user/3558110" }, { - "name": "andriy khomych", + "name": "Andriy Khomych", "homepage": "https://www.drupal.org/user/3287133" }, { @@ -16752,39 +15075,42 @@ "homepage": "https://www.drupal.org/user/59747" }, { - "name": "vladimiraus", + "name": "VladimirAus", "homepage": "https://www.drupal.org/user/673120" } ], - "description": "Tool for administrating taxonomy terms", + "description": "This module provides a powerful interface for managing taxonomies.", "homepage": "https://www.drupal.org/project/taxonomy_manager", + "keywords": [ + "Drupal" + ], "support": { - "source": "https://drupal.org/project/taxonomy_manager", - "issues": "https://drupal.org/project/issues/taxonomy_manager" + "source": "https://git.drupalcode.org/project/taxonomy_manager", + "issues": "https://www.drupal.org/project/issues/taxonomy_manager" } }, { "name": "drupal/textarea_widget_for_text", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "8d77a7330cc12f0f54f239a42baa8c28ff8280e0" + "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "4bd7c1b0eb25574efa1b959636eb7445f6ba5596" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1745957094", + "version": "8.x-1.3", + "datestamp": "1699891368", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16817,29 +15143,26 @@ }, { "name": "drupal/token", - "version": "1.15.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.15" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip", - "reference": "8.x-1.15", - "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "df3cae709fcc1a99ac1111ce67a0d6af56d287d7" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "require-dev": { - "drupal/book": "*" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.15", - "datestamp": "1722206211", + "version": "8.x-1.14", + "datestamp": "1713009399", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16857,11 +15180,11 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -16893,10 +15216,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/tomselect.git", - "reference": "502a5f6b3ec4bacbf8f749de11456d868c12aee8" + "reference": "745ac18bc0ff358574891e875026923dcae563b8" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { @@ -16904,11 +15227,11 @@ "dev-1.0.x": "1.0.x-dev" }, "drupal": { - "version": "1.0.0-alpha1+2-dev", - "datestamp": "1729730530", + "version": "1.0.0-alpha1+1-dev", + "datestamp": "1704733540", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -16918,7 +15241,7 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { @@ -16934,26 +15257,26 @@ }, { "name": "drupal/trim", - "version": "2.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/trim.git", - "reference": "2.0.1" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/trim-2.0.1.zip", - "reference": "2.0.1", - "shasum": "18bf8975e915b845ec470652510ba1e03230d1e0" + "url": "https://ftp.drupal.org/files/projects/trim-2.0.0.zip", + "reference": "2.0.0", + "shasum": "7550d1c93c4694e4e1221d3cbd5577db31fabace" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1730171770", + "version": "2.0.0", + "datestamp": "1695245036", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16986,23 +15309,24 @@ }, { "name": "drupal/twig_tweak", - "version": "3.4.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/twig_tweak.git", - "reference": "3.4.0" + "reference": "3.3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.4.0.zip", - "reference": "3.4.0", - "shasum": "1f47f71b4cfbad97fff11db1adc72c311bb1645e" + "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.3.0.zip", + "reference": "3.3.0", + "shasum": "a029ab1775b62f08e573e5ad1ab27bc833e7f5b9" }, "require": { - "drupal/core": "^10.3 || ^11.0", + "drupal/core": "^9.3 || ^10.0", "ext-json": "*", - "php": ">=8.1", - "twig/twig": "^3.10.3" + "php": ">=7.3", + "symfony/polyfill-php80": "^1.17", + "twig/twig": "^2.15.3 || ^3.4.3" }, "suggest": { "symfony/var-dumper": "Better dump() function for debugging Twig variables" @@ -17010,8 +15334,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.4.0", - "datestamp": "1721562308", + "version": "3.3.0", + "datestamp": "1708670116", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17019,7 +15343,7 @@ }, "drush": { "services": { - "drush.services.yml": "^10 || ^11" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -17029,7 +15353,7 @@ ], "authors": [ { - "name": "chi", + "name": "Chi", "homepage": "https://www.drupal.org/user/556138" } ], @@ -17046,26 +15370,26 @@ }, { "name": "drupal/twigsuggest", - "version": "2.0.0-rc4", + "version": "1.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "2.0.0-rc4" + "reference": "8.x-1.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twigsuggest-2.0.0-rc4.zip", - "reference": "2.0.0-rc4", - "shasum": "e629ff389a2d5380c9e43bd2fc770fe443d7711d" + "url": "https://ftp.drupal.org/files/projects/twigsuggest-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "69d765e40b9eb2e423d63378c69acf8a0248bffb" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-rc4", - "datestamp": "1734604997", + "version": "8.x-1.0-rc2", + "datestamp": "1682360823", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -17086,7 +15410,7 @@ "homepage": "https://www.drupal.org/user/2482808" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -17110,20 +15434,20 @@ }, { "name": "drupal/ui_patterns", - "version": "1.10.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ui_patterns.git", - "reference": "8.x-1.10" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "bdb6f84ae8b82679380641cdc3d78b0fafe98614" + "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "120d90db34296500a1ae8094cd0cc23983e951ab" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "require-dev": { "drupal/ds": "^3.18", @@ -17132,8 +15456,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1729182058", + "version": "8.x-1.8", + "datestamp": "1706780549", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17154,25 +15478,21 @@ "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "christian.wiedemann", + "name": "Christian.wiedemann", "homepage": "https://www.drupal.org/user/861002" }, { - "name": "duaelfr", + "name": "DuaelFr", "homepage": "https://www.drupal.org/user/931394" }, { - "name": "g4mbini", + "name": "G4MBINI", "homepage": "https://www.drupal.org/user/2533498" }, { - "name": "grimreaper", + "name": "Grimreaper", "homepage": "https://www.drupal.org/user/2388214" }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, { "name": "pdureau", "homepage": "https://www.drupal.org/user/1903334" @@ -17190,17 +15510,17 @@ }, { "name": "drupal/ui_patterns_ds", - "version": "1.10.0", + "version": "1.8.0", "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "drupal/ds": "*", "drupal/ui_patterns": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1729182058", + "version": "8.x-1.8", + "datestamp": "1706780549", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17221,25 +15541,21 @@ "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "christian.wiedemann", + "name": "Christian.wiedemann", "homepage": "https://www.drupal.org/user/861002" }, { - "name": "duaelfr", + "name": "DuaelFr", "homepage": "https://www.drupal.org/user/931394" }, { - "name": "g4mbini", + "name": "G4MBINI", "homepage": "https://www.drupal.org/user/2533498" }, { - "name": "grimreaper", + "name": "Grimreaper", "homepage": "https://www.drupal.org/user/2388214" }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, { "name": "pdureau", "homepage": "https://www.drupal.org/user/1903334" @@ -17257,16 +15573,16 @@ }, { "name": "drupal/ui_patterns_layouts", - "version": "2.0.3", + "version": "1.8.0", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9 || ^10", "drupal/ui_patterns": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1742801289", + "version": "8.x-1.8", + "datestamp": "1706780549", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17287,25 +15603,21 @@ "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "christian.wiedemann", + "name": "Christian.wiedemann", "homepage": "https://www.drupal.org/user/861002" }, { - "name": "duaelfr", + "name": "DuaelFr", "homepage": "https://www.drupal.org/user/931394" }, { - "name": "g4mbini", + "name": "G4MBINI", "homepage": "https://www.drupal.org/user/2533498" }, { - "name": "grimreaper", + "name": "Grimreaper", "homepage": "https://www.drupal.org/user/2388214" }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, { "name": "pdureau", "homepage": "https://www.drupal.org/user/1903334" @@ -17315,7 +15627,7 @@ "homepage": "https://www.drupal.org/user/436244" } ], - "description": "Use UI components as layouts plugins.", + "description": "Use patterns as layouts via the Layout Discovery module.", "homepage": "https://www.drupal.org/project/ui_patterns", "support": { "source": "https://git.drupalcode.org/project/ui_patterns" @@ -17323,16 +15635,16 @@ }, { "name": "drupal/ui_patterns_library", - "version": "2.0.3", + "version": "1.8.0", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9 || ^10", "drupal/ui_patterns": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1742801289", + "version": "8.x-1.8", + "datestamp": "1706780549", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17353,25 +15665,21 @@ "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "christian.wiedemann", + "name": "Christian.wiedemann", "homepage": "https://www.drupal.org/user/861002" }, { - "name": "duaelfr", + "name": "DuaelFr", "homepage": "https://www.drupal.org/user/931394" }, { - "name": "g4mbini", + "name": "G4MBINI", "homepage": "https://www.drupal.org/user/2533498" }, { - "name": "grimreaper", + "name": "Grimreaper", "homepage": "https://www.drupal.org/user/2388214" }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, { "name": "pdureau", "homepage": "https://www.drupal.org/user/1903334" @@ -17381,34 +15689,34 @@ "homepage": "https://www.drupal.org/user/436244" } ], - "description": "Browse UI components in library pages.", + "description": "Exposed patterns in you modules and themes and display them in a pattern library page.", "homepage": "https://www.drupal.org/project/ui_patterns", "support": { "source": "https://git.drupalcode.org/project/ui_patterns" } }, { - "name": "drupal/unique_content_field_validation", - "version": "1.1.1", + "name": "drupal/variationcache", + "version": "1.5.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/unique_content_field_validation.git", - "reference": "1.1.1" + "url": "https://git.drupalcode.org/project/variationcache.git", + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/unique_content_field_validation-1.1.1.zip", - "reference": "1.1.1", - "shasum": "a6fdc0b33e3a022fbc8f2decc8b0488ebe79cb82" + "url": "https://ftp.drupal.org/files/projects/variationcache-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "6165baee8c6fe5a7773f3499896e8fb464607a32" }, "require": { - "drupal/core": "^9.1 || ^10" + "drupal/core": "^9.5 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.1", - "datestamp": "1688169108", + "version": "8.x-1.5", + "datestamp": "1705485386", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17417,24 +15725,25 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "Fabian Sierra", - "homepage": "https://www.drupal.org/u/fabiansierra5191", + "name": "Kristiaan Van den Eynde", + "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", "role": "Maintainer" }, { - "name": "mably", - "homepage": "https://www.drupal.org/user/3375160" + "name": "Brad Jones", + "homepage": "https://www.drupal.org/u/bradjones1", + "role": "Maintainer" } ], - "description": "Validate the uniqueness of the entities fields or title.", - "homepage": "http://drupal.org/project/unique_content_field_validation", + "description": "This project provides VariationCache, a redirect-aware caching implementation.", + "homepage": "http://drupal.org/project/variationcache", "support": { - "source": "https://cgit.drupalcode.org/unique_content_field_validation", - "issues": "https://drupal.org/project/issues/unique_content_field_validation" + "source": "https://git.drupalcode.org/project/variationcache", + "issues": "https://drupal.org/project/issues/variationcache" } }, { @@ -17483,16 +15792,12 @@ "name": "jec006", "homepage": "https://www.drupal.org/user/855980" }, - { - "name": "mably", - "homepage": "https://www.drupal.org/user/3375160" - }, { "name": "plopesc", "homepage": "https://www.drupal.org/user/282415" }, { - "name": "sam152", + "name": "Sam152", "homepage": "https://www.drupal.org/user/1485048" } ], @@ -17504,26 +15809,26 @@ }, { "name": "drupal/view_password", - "version": "6.0.5", + "version": "6.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/view_password.git", - "reference": "6.0.5" + "reference": "6.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_password-6.0.5.zip", - "reference": "6.0.5", - "shasum": "a1f160e5ea7cbac4aa592692eba3bfd2b9527ee7" + "url": "https://ftp.drupal.org/files/projects/view_password-6.0.3.zip", + "reference": "6.0.3", + "shasum": "e1a3fb300f7ce22d003eadd22a30a02b51417c5f" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.5", - "datestamp": "1723228512", + "version": "6.0.3", + "datestamp": "1677609028", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17560,20 +15865,20 @@ }, { "name": "drupal/view_unpublished", - "version": "1.3.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/view_unpublished.git", - "reference": "8.x-1.3" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "7dd4411c53866585ac6319d147ab11d214d55877" + "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "14374dd56d841270207e21974c7b7cf8aa1804f7" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11" + "drupal/core": "^9.4 || ^10" }, "require-dev": { "drupal/coder": "^8.3.18", @@ -17582,8 +15887,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1724503131", + "version": "8.x-1.2", + "datestamp": "1709383642", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17735,11 +16040,7 @@ "homepage": "https://www.drupal.org/user/93571" }, { - "name": "scott_euser", - "homepage": "https://www.drupal.org/user/3267594" - }, - { - "name": "seanb", + "name": "seanB", "homepage": "https://www.drupal.org/user/545912" } ], @@ -17755,34 +16056,28 @@ }, { "name": "drupal/visitors", - "version": "2.28.0", + "version": "2.17.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/visitors.git", - "reference": "8.x-2.28" + "reference": "8.x-2.17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/visitors-8.x-2.28.zip", - "reference": "8.x-2.28", - "shasum": "e97fc91dceec531ea95bbf337f7d13cd0126f802" + "url": "https://ftp.drupal.org/files/projects/visitors-8.x-2.17.zip", + "reference": "8.x-2.17", + "shasum": "7697679ef2fb1f33847c16622a45a77c3d260db1" }, "require": { - "drupal/charts": "^5", - "drupal/charts_chartjs": "*", - "drupal/core": "^10 || ^11", + "drupal/core": "^9.5 || ^10", "geoip2/geoip2": "~2.0", "matomo/device-detector": "^6.1" }, - "require-dev": { - "drupal/statistics": "~1", - "drush/drush": "^12 || ^13" - }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.28", - "datestamp": "1743466090", + "version": "8.x-2.17", + "datestamp": "1716995579", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17816,20 +16111,20 @@ }, { "name": "drupal/webform", - "version": "6.2.9", + "version": "6.2.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.2.9" + "reference": "6.2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip", - "reference": "6.2.9", - "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600" + "url": "https://ftp.drupal.org/files/projects/webform-6.2.2.zip", + "reference": "6.2.2", + "shasum": "cfd766802232dfdf39edd5a1acf7c738d14dc6eb" }, "require": { - "drupal/core": "^10.2", + "drupal/core": "^9.4 || ^10", "php": ">=8.1" }, "require-dev": { @@ -17846,7 +16141,6 @@ "drupal/group": "1.x-dev", "drupal/hal": "1 - 2", "drupal/jquery_ui": "1.x-dev", - "drupal/jquery_ui_button": "2.x-dev", "drupal/jquery_ui_checkboxradio": "2.x-dev", "drupal/jquery_ui_datepicker": "2.x-dev", "drupal/mailsystem": "4.x-dev", @@ -17870,14 +16164,14 @@ "drupal/webform_ui": "*" }, "suggest": { - "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.", + "drupal/jquery_ui_checkboxradio": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.", "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained." }, "type": "drupal-module", "extra": { "drupal": { - "version": "6.2.9", - "datestamp": "1733851063", + "version": "6.2.2", + "datestamp": "1701948363", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17905,16 +16199,16 @@ "role": "Contributor" }, { - "name": "liam morland", + "name": "Liam Morland", "homepage": "https://www.drupal.org/user/493050" }, - { - "name": "mandclu", - "homepage": "https://www.drupal.org/user/52136" - }, { "name": "quicksketch", "homepage": "https://www.drupal.org/user/35821" + }, + { + "name": "torotil", + "homepage": "https://www.drupal.org/user/865256" } ], "description": "Enables the creation of webforms and questionnaires.", @@ -17928,29 +16222,26 @@ }, { "name": "drupal/weight", - "version": "3.6.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/weight.git", - "reference": "8.x-3.6" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/weight-8.x-3.6.zip", - "reference": "8.x-3.6", - "shasum": "071c378a6f4887b15a9e68c1414c94735282e20c" + "url": "https://ftp.drupal.org/files/projects/weight-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "d53f3df1643993e87e2265953d8aea43b7cc041a" }, "require": { - "drupal/core": "^9.5 || ^10.2 || ^11.0" - }, - "require-dev": { - "drupal/feeds": "*" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.6", - "datestamp": "1729637541", + "version": "8.x-3.4", + "datestamp": "1676997696", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17975,11 +16266,11 @@ "homepage": "https://www.drupal.org/user/101412" }, { - "name": "neslee canil pinto", + "name": "Neslee Canil Pinto", "homepage": "https://www.drupal.org/user/3580850" }, { - "name": "vladimiraus", + "name": "VladimirAus", "homepage": "https://www.drupal.org/user/673120" } ], @@ -17995,26 +16286,29 @@ }, { "name": "drupal/workflow_buttons", - "version": "dev-1.x", + "version": "1.0.0-beta6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workflow_buttons.git", - "reference": "422ec4a3910b7ed9bb47c3e476f9f64caaab6c49" + "reference": "8.x-1.0-beta6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/workflow_buttons-8.x-1.0-beta6.zip", + "reference": "8.x-1.0-beta6", + "shasum": "3becb7ccfd7946cfd6448caae32a6f8aa8d89d33" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-beta6+6-dev", - "datestamp": "1746664033", + "version": "8.x-1.0-beta6", + "datestamp": "1702440893", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -18027,17 +16321,13 @@ "name": "beunerd", "homepage": "https://www.drupal.org/user/1312798" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "kelly.m.jacobs", - "homepage": "https://www.drupal.org/user/3397374" + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" }, { "name": "mlncn", @@ -18066,16 +16356,16 @@ }, { "name": "drupal/workflow_buttons_trash", - "version": "1.0.0-beta7", + "version": "1.0.0-beta6", "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "drupal/workflow_buttons": "^1" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.0-beta7", - "datestamp": "1746664585", + "version": "8.x-1.0-beta6", + "datestamp": "1702440893", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -18091,17 +16381,13 @@ "name": "beunerd", "homepage": "https://www.drupal.org/user/1312798" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "kelly.m.jacobs", - "homepage": "https://www.drupal.org/user/3397374" + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" }, { "name": "mlncn", @@ -18124,10 +16410,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git", - "reference": "e5b669ddcbc7115e862f08b38e4f379f1e8f7c60" + "reference": "b21621d823865c28584dbe0f876a16e00d9050ee" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { @@ -18135,8 +16421,8 @@ "dev-2.0.x": "2.0.x-dev" }, "drupal": { - "version": "2.0.0+4-dev", - "datestamp": "1724196081", + "version": "2.0.0+1-dev", + "datestamp": "1672022257", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -18225,16 +16511,16 @@ }, { "name": "drush/drush", - "version": "12.5.3", + "version": "12.5.2", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6" + "reference": "4aebed85dc818ff762f2e24a85b023d2a52050df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6", - "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/4aebed85dc818ff762f2e24a85b023d2a52050df", + "reference": "4aebed85dc818ff762f2e24a85b023d2a52050df", "shasum": "" }, "require": { @@ -18287,23 +16573,23 @@ "sut/libraries/{$name}": [ "type:drupal-library" ], - "sut/themes/unish/{$name}": [ - "drupal/empty_theme" - ], - "sut/drush/contrib/{$name}": [ - "type:drupal-drush" - ], "sut/modules/unish/{$name}": [ "drupal/devel" ], - "sut/themes/contrib/{$name}": [ - "type:drupal-theme" + "sut/themes/unish/{$name}": [ + "drupal/empty_theme" ], "sut/modules/contrib/{$name}": [ "type:drupal-module" ], "sut/profiles/contrib/{$name}": [ "type:drupal-profile" + ], + "sut/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "sut/drush/contrib/{$name}": [ + "type:drupal-drush" ] } }, @@ -18357,7 +16643,7 @@ "issues": "https://github.com/drush-ops/drush/issues", "security": "https://github.com/drush-ops/drush/security/advisories", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/12.5.3" + "source": "https://github.com/drush-ops/drush/tree/12.5.2" }, "funding": [ { @@ -18365,27 +16651,27 @@ "type": "github" } ], - "time": "2024-08-02T11:57:29+00:00" + "time": "2024-05-02T17:20:48+00:00" }, { "name": "drutopia/drutopia", "version": "2.0.x-dev", "source": { "type": "git", - "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6" + "url": "git@gitlab.com:drutopia/drutopia.git", + "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=2192b03e0c0dba53dd1181c19c5c3c3ece643ba6", - "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=04f95b36c8fb2a227fd4bf4526566feacb1dd81b", + "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b", "shasum": "" }, "require": { "cweagans/composer-patches": "^1", "drupal/antibot": "^2", "drupal/block_visibility_groups": "^2", - "drupal/bulma_components": "^1", + "drupal/bulma_components": "^1.0@alpha", "drupal/config_actions_provider": "^1", "drupal/config_sync": "^3", "drupal/config_update": "^2", @@ -18409,19 +16695,19 @@ "drupal/drutopia_social": "^2", "drupal/drutopia_storyline": "^2", "drupal/drutopia_user": "^2", - "drupal/eu_cookie_compliance": "^1", + "drupal/eu_cookie_compliance": "^1.9", "drupal/features": "^3", - "drupal/gdpr": "^3", - "drupal/gin": "^4", - "drupal/gin_toolbar": "^2", - "drupal/honeypot": "^2", - "drupal/menu_block": "^1", + "drupal/gdpr": "^3.0@alpha", + "drupal/gin": "^3.0", + "drupal/gin_toolbar": "^1.0@beta", + "drupal/honeypot": "^2.0", + "drupal/menu_block": "^1.6", "drupal/octavia": "^2", - "drupal/paranoia": "^1", + "drupal/paranoia": "^1.0-rc1", "drupal/riddler": "^3", "drupal/subprofiles": "^2", - "drupal/twigsuggest": "^2", - "drupal/yaml_content": "^1", + "drupal/twigsuggest": "^1.0", + "drupal/yaml_content": "^1.0-alpha7", "geeks4change/composer-pin": "*" }, "require-dev": { @@ -18436,31 +16722,27 @@ }, "type": "drupal-profile", "extra": { - "patches": { - "drupal/ds": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" - }, - "drupal/core": { - "Invoke hook after a site install is complete": "https://git.drupalcode.org/project/drupal/-/merge_requests/1512.diff" - } - }, "drupal-scaffold": { "locations": { "web-root": "web/" } }, - "enable-patching": true + "enable-patching": true, + "patches": { + "drupal/core": { + "Invoke hook after a site install is complete": "https://git.drupalcode.org/project/drupal/-/merge_requests/1512.diff" + }, + "drupal/ds": { + "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" + } + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "support": { - "issues": "https://gitlab.com/drutopia/drutopia/-/issues", - "source": "https://gitlab.com/drutopia/drutopia/-/tree/2.0.x" - }, - "time": "2025-02-07T15:24:33+00:00" + "time": "2023-11-30T23:44:28+00:00" }, { "name": "easyrdf/easyrdf", @@ -18539,16 +16821,16 @@ }, { "name": "egulias/email-validator", - "version": "4.0.4", + "version": "4.0.2", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", "shasum": "" }, "require": { @@ -18594,7 +16876,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" }, "funding": [ { @@ -18602,24 +16884,24 @@ "type": "github" } ], - "time": "2025-03-06T22:45:56+00:00" + "time": "2023-10-06T06:47:41+00:00" }, { "name": "ezyang/htmlpurifier", - "version": "v4.18.0", + "version": "v4.17.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "cb56001e54359df7ae76dc522d08845dc741621b" + "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b", - "reference": "cb56001e54359df7ae76dc522d08845dc741621b", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c", + "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c", "shasum": "" }, "require": { - "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" }, "require-dev": { "cerdic/css-tidy": "^1.7 || ^2.0", @@ -18661,72 +16943,9 @@ ], "support": { "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0" + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0" }, - "time": "2024-11-01T03:51:45+00:00" - }, - { - "name": "fakerphp/faker", - "version": "v1.24.1", - "source": { - "type": "git", - "url": "https://github.com/FakerPHP/Faker.git", - "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", - "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "psr/container": "^1.0 || ^2.0", - "symfony/deprecation-contracts": "^2.2 || ^3.0" - }, - "conflict": { - "fzaninotto/faker": "*" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "doctrine/persistence": "^1.3 || ^2.0", - "ext-intl": "*", - "phpunit/phpunit": "^9.5.26", - "symfony/phpunit-bridge": "^5.4.16" - }, - "suggest": { - "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", - "ext-curl": "Required by Faker\\Provider\\Image to download images.", - "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", - "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", - "ext-mbstring": "Required for multibyte Unicode string functionality." - }, - "type": "library", - "autoload": { - "psr-4": { - "Faker\\": "src/Faker/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "François Zaninotto" - } - ], - "description": "Faker is a PHP library that generates fake data for you.", - "keywords": [ - "data", - "faker", - "fixtures" - ], - "support": { - "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" - }, - "time": "2024-11-21T13:46:39+00:00" + "time": "2023-11-17T15:01:25+00:00" }, { "name": "geeks4change/composer-pin", @@ -18829,24 +17048,24 @@ }, { "name": "graham-campbell/result-type", - "version": "v1.1.3", + "version": "v1.1.2", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "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.3" + "phpoption/phpoption": "^1.9.2" }, "require-dev": { - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "type": "library", "autoload": { @@ -18875,7 +17094,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" }, "funding": [ { @@ -18887,20 +17106,20 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:45:45+00:00" + "time": "2023-11-12T22:16:48+00:00" }, { "name": "grasmash/expander", - "version": "3.0.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4" + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", "shasum": "" }, "require": { @@ -18937,9 +17156,9 @@ "description": "Expands internal property references in PHP arrays file.", "support": { "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/3.0.1" + "source": "https://github.com/grasmash/expander/tree/3.0.0" }, - "time": "2024-11-25T23:28:05+00:00" + "time": "2022-05-10T13:14:49+00:00" }, { "name": "grasmash/yaml-cli", @@ -18999,22 +17218,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "version": "7.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -19025,9 +17244,9 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "guzzle/client-integration-tests": "3.0.2", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -19105,7 +17324,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + "source": "https://github.com/guzzle/guzzle/tree/7.8.1" }, "funding": [ { @@ -19121,20 +17340,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:37:11+00:00" + "time": "2023-12-03T20:35:24+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.0.4", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", - "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", "shasum": "" }, "require": { @@ -19142,7 +17361,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "type": "library", "extra": { @@ -19188,7 +17407,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.4" + "source": "https://github.com/guzzle/promises/tree/2.0.2" }, "funding": [ { @@ -19204,20 +17423,20 @@ "type": "tidelift" } ], - "time": "2024-10-17T10:06:22+00:00" + "time": "2023-12-03T20:19:20+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.1", + "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", "shasum": "" }, "require": { @@ -19232,8 +17451,8 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -19304,7 +17523,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" + "source": "https://github.com/guzzle/psr7/tree/2.6.2" }, "funding": [ { @@ -19320,7 +17539,7 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2023-12-03T20:05:35+00:00" }, { "name": "indieauth/client", @@ -19574,32 +17793,33 @@ }, { "name": "laminas/laminas-escaper", - "version": "2.17.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba" + "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba", - "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba", + "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba", "shasum": "" }, "require": { "ext-ctype": "*", "ext-mbstring": "*", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "conflict": { "zendframework/zend-escaper": "*" }, "require-dev": { - "infection/infection": "^0.29.8", - "laminas/laminas-coding-standard": "~3.0.1", - "phpunit/phpunit": "^10.5.45", - "psalm/plugin-phpunit": "^0.19.2", - "vimeo/psalm": "^6.6.2" + "infection/infection": "^0.27.0", + "laminas/laminas-coding-standard": "~2.5.0", + "maglnet/composer-require-checker": "^3.8.0", + "phpunit/phpunit": "^9.6.7", + "psalm/plugin-phpunit": "^0.18.4", + "vimeo/psalm": "^5.9" }, "type": "library", "autoload": { @@ -19631,20 +17851,20 @@ "type": "community_bridge" } ], - "time": "2025-05-06T19:29:36+00:00" + "time": "2023-10-10T08:35:13+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.23.0", + "version": "2.22.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "23807e692b3174750b426143bd93572b71b6739a" + "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/23807e692b3174750b426143bd93572b71b6739a", - "reference": "23807e692b3174750b426143bd93572b71b6739a", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141", + "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141", "shasum": "" }, "require": { @@ -19652,24 +17872,24 @@ "ext-libxml": "*", "laminas/laminas-escaper": "^2.9", "laminas/laminas-stdlib": "^3.6", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "conflict": { "laminas/laminas-servicemanager": "<3.3", "zendframework/zend-feed": "*" }, "require-dev": { - "laminas/laminas-cache": "^2.13.2 || ^3.12", - "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3", + "laminas/laminas-cache": "^2.13.2 || ^3.11", + "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2", "laminas/laminas-coding-standard": "~2.5.0", "laminas/laminas-db": "^2.18", - "laminas/laminas-http": "^2.19", - "laminas/laminas-servicemanager": "^3.22.1", - "laminas/laminas-validator": "^2.46", - "phpunit/phpunit": "^10.5.5", - "psalm/plugin-phpunit": "^0.19.0", + "laminas/laminas-http": "^2.18", + "laminas/laminas-servicemanager": "^3.21.0", + "laminas/laminas-validator": "^2.38", + "phpunit/phpunit": "^10.3.1", + "psalm/plugin-phpunit": "^0.18.4", "psr/http-message": "^2.0", - "vimeo/psalm": "^5.18.0" + "vimeo/psalm": "^5.14.1" }, "suggest": { "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", @@ -19711,34 +17931,34 @@ "type": "community_bridge" } ], - "time": "2024-10-09T10:53:30+00:00" + "time": "2023-10-11T20:16:37+00:00" }, { "name": "laminas/laminas-stdlib", - "version": "3.20.0", + "version": "3.19.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4" + "reference": "6a192dd0882b514e45506f533b833b623b78fff3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4", - "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3", + "reference": "6a192dd0882b514e45506f533b833b623b78fff3", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "conflict": { "zendframework/zend-stdlib": "*" }, "require-dev": { - "laminas/laminas-coding-standard": "^3.0", - "phpbench/phpbench": "^1.3.1", - "phpunit/phpunit": "^10.5.38", - "psalm/plugin-phpunit": "^0.19.0", - "vimeo/psalm": "^5.26.1" + "laminas/laminas-coding-standard": "^2.5", + "phpbench/phpbench": "^1.2.15", + "phpunit/phpunit": "^10.5.8", + "psalm/plugin-phpunit": "^0.18.4", + "vimeo/psalm": "^5.20.0" }, "type": "library", "autoload": { @@ -19770,26 +17990,26 @@ "type": "community_bridge" } ], - "time": "2024-10-29T13:46:07+00:00" + "time": "2024-01-19T12:39:49+00:00" }, { "name": "laminas/laminas-xml", - "version": "1.7.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-xml.git", - "reference": "3a7850dec668a89807accfa4826a2ff11497fe74" + "reference": "c35aab57d1d0a970b53965046d535b88c3dc8bea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/3a7850dec668a89807accfa4826a2ff11497fe74", - "reference": "3a7850dec668a89807accfa4826a2ff11497fe74", + "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/c35aab57d1d0a970b53965046d535b88c3dc8bea", + "reference": "c35aab57d1d0a970b53965046d535b88c3dc8bea", "shasum": "" }, "require": { "ext-dom": "*", "ext-simplexml": "*", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "conflict": { "zendframework/zendxml": "*" @@ -19797,8 +18017,8 @@ "require-dev": { "ext-iconv": "*", "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^10.5.35 || ^11.4", - "squizlabs/php_codesniffer": "3.10.3 as 2.9999999.9999999" + "phpunit/phpunit": "^9.5.8", + "squizlabs/php_codesniffer": "3.6.1 as 2.9999999.9999999" }, "type": "library", "autoload": { @@ -19830,25 +18050,25 @@ "type": "community_bridge" } ], - "time": "2024-10-11T08:45:59+00:00" + "time": "2023-11-23T10:03:52+00:00" }, { "name": "lcobucci/clock", - "version": "3.0.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/lcobucci/clock.git", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc" + "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876", + "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876", "shasum": "" }, "require": { "php": "~8.1.0 || ~8.2.0", - "psr/clock": "^1.0" + "stella-maris/clock": "^0.1.7" }, "provide": { "psr/clock-implementation": "1.0" @@ -19882,7 +18102,7 @@ "description": "Yet another clock abstraction", "support": { "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/3.0.0" + "source": "https://github.com/lcobucci/clock/tree/2.3.0" }, "funding": [ { @@ -19894,45 +18114,47 @@ "type": "patreon" } ], - "time": "2022-12-19T15:00:24+00:00" + "time": "2022-12-19T14:38:11+00:00" }, { "name": "lcobucci/jwt", - "version": "4.3.0", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4" + "reference": "55564265fddf810504110bd68ca311932324b0e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9", + "reference": "55564265fddf810504110bd68ca311932324b0e9", "shasum": "" }, "require": { - "ext-hash": "*", - "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", - "ext-sodium": "*", - "lcobucci/clock": "^2.0 || ^3.0", + "lcobucci/clock": "^2.0", "php": "^7.4 || ^8.0" }, "require-dev": { - "infection/infection": "^0.21", + "infection/infection": "^0.20", "lcobucci/coding-standard": "^6.0", - "mikey179/vfsstream": "^1.6.7", - "phpbench/phpbench": "^1.2", + "mikey179/vfsstream": "^1.6", + "phpbench/phpbench": "^0.17", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpstan/phpstan-strict-rules": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-deprecation-rules": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", "phpunit/php-invoker": "^3.1", - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^9.4" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, "autoload": { "psr-4": { "Lcobucci\\JWT\\": "src" @@ -19956,7 +18178,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.3.0" + "source": "https://github.com/lcobucci/jwt/tree/4.0.4" }, "funding": [ { @@ -19968,7 +18190,7 @@ "type": "patreon" } ], - "time": "2023-01-02T13:28:00+00:00" + "time": "2021-09-28T19:18:28+00:00" }, { "name": "league/commonmark", @@ -20065,16 +18287,16 @@ }, { "name": "league/container", - "version": "4.2.4", + "version": "4.2.2", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec" + "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/7ea728b013b9a156c409c6f0fc3624071b742dec", - "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec", + "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88", + "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88", "shasum": "" }, "require": { @@ -20099,11 +18321,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev", - "dev-2.x": "2.x-dev", - "dev-3.x": "3.x-dev", + "dev-master": "4.x-dev", "dev-4.x": "4.x-dev", - "dev-master": "4.x-dev" + "dev-3.x": "3.x-dev", + "dev-2.x": "2.x-dev", + "dev-1.x": "1.x-dev" } }, "autoload": { @@ -20135,7 +18357,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.4" + "source": "https://github.com/thephpleague/container/tree/4.2.2" }, "funding": [ { @@ -20143,20 +18365,20 @@ "type": "github" } ], - "time": "2024-11-10T12:42:13+00:00" + "time": "2024-03-13T13:12:53+00:00" }, { "name": "league/csv", - "version": "9.23.0", + "version": "9.16.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "774008ad8a634448e4f8e288905e070e8b317ff3" + "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/774008ad8a634448e4f8e288905e070e8b317ff3", - "reference": "774008ad8a634448e4f8e288905e070e8b317ff3", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440", + "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440", "shasum": "" }, "require": { @@ -20164,25 +18386,22 @@ "php": "^8.1.2" }, "require-dev": { + "doctrine/collections": "^2.2.2", "ext-dom": "*", "ext-xdebug": "*", - "friendsofphp/php-cs-fixer": "^3.69.0", - "phpbench/phpbench": "^1.4.0", - "phpstan/phpstan": "^1.12.18", - "phpstan/phpstan-deprecation-rules": "^1.2.1", - "phpstan/phpstan-phpunit": "^1.4.2", - "phpstan/phpstan-strict-rules": "^1.6.2", - "phpunit/phpunit": "^10.5.16 || ^11.5.7", - "symfony/var-dumper": "^6.4.8 || ^7.2.3" + "friendsofphp/php-cs-fixer": "^3.57.1", + "phpbench/phpbench": "^1.2.15", + "phpstan/phpstan": "^1.11.1", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpunit/phpunit": "^10.5.16 || ^11.1.3", + "symfony/var-dumper": "^6.4.6 || ^7.0.7" }, "suggest": { "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters", - "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters", - "ext-mysqli": "Requiered to use the package with the MySQLi extension", - "ext-pdo": "Required to use the package with the PDO extension", - "ext-pgsql": "Requiered to use the package with the PgSQL extension", - "ext-sqlite3": "Required to use the package with the SQLite3 extension" + "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters" }, "type": "library", "extra": { @@ -20234,34 +18453,39 @@ "type": "github" } ], - "time": "2025-03-28T06:52:04+00:00" + "time": "2024-05-24T11:04:54+00:00" }, { "name": "league/oauth2-client", - "version": "2.8.1", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "9df2924ca644736c835fc60466a3a60390d334f9" + "reference": "160d6274b03562ebeb55ed18399281d8118b76c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/9df2924ca644736c835fc60466a3a60390d334f9", - "reference": "9df2924ca644736c835fc60466a3a60390d334f9", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8", + "reference": "160d6274b03562ebeb55ed18399281d8118b76c8", "shasum": "" }, "require": { - "ext-json": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "php": "^7.1 || >=8.0.0 <8.5.0" + "guzzlehttp/guzzle": "^6.0 || ^7.0", + "paragonie/random_compat": "^1 || ^2 || ^9.99", + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { "mockery/mockery": "^1.3.5", - "php-parallel-lint/php-parallel-lint": "^1.4", - "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11", - "squizlabs/php_codesniffer": "^3.11" + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpunit/phpunit": "^5.7 || ^6.0 || ^9.5", + "squizlabs/php_codesniffer": "^2.3 || ^3.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.0.x-dev" + } + }, "autoload": { "psr-4": { "League\\OAuth2\\Client\\": "src/" @@ -20297,9 +18521,9 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-client/issues", - "source": "https://github.com/thephpleague/oauth2-client/tree/2.8.1" + "source": "https://github.com/thephpleague/oauth2-client/tree/2.7.0" }, - "time": "2025-02-26T04:37:30+00:00" + "time": "2023-04-16T18:19:15+00:00" }, { "name": "league/oauth2-facebook", @@ -20359,16 +18583,16 @@ }, { "name": "masterminds/html5", - "version": "2.9.0", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", + "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", "shasum": "" }, "require": { @@ -20376,7 +18600,7 @@ "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" }, "type": "library", "extra": { @@ -20420,22 +18644,22 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + "source": "https://github.com/Masterminds/html5-php/tree/2.8.1" }, - "time": "2024-03-31T07:05:07+00:00" + "time": "2023-05-10T11:58:31+00:00" }, { "name": "matomo/device-detector", - "version": "6.4.5", + "version": "6.3.2", "source": { "type": "git", "url": "https://github.com/matomo-org/device-detector.git", - "reference": "270bbc41f80994e80805ac377b67324eba53c412" + "reference": "fd4042cb6a7f3f985a81aedc075dd59e0b991a51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/270bbc41f80994e80805ac377b67324eba53c412", - "reference": "270bbc41f80994e80805ac377b67324eba53c412", + "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/fd4042cb6a7f3f985a81aedc075dd59e0b991a51", + "reference": "fd4042cb6a7f3f985a81aedc075dd59e0b991a51", "shasum": "" }, "require": { @@ -20452,7 +18676,6 @@ "phpunit/phpunit": "^8.5.8", "psr/cache": "^1.0.1", "psr/simple-cache": "^1.0.1", - "slevomat/coding-standard": "<8.16.0", "symfony/yaml": "^5.1.7" }, "suggest": { @@ -20492,31 +18715,33 @@ "source": "https://github.com/matomo-org/matomo", "wiki": "https://dev.matomo.org/" }, - "time": "2025-02-26T17:37:32+00:00" + "time": "2024-05-28T10:16:19+00:00" }, { "name": "maxmind-db/reader", - "version": "v1.12.1", + "version": "v1.11.1", "source": { "type": "git", "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git", - "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4" + "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/815939e006b7e68062b540ec9e86aaa8be2b6ce4", - "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4", + "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1e66f73ffcf25e17c7a910a1317e9720a95497c7", + "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7", "shasum": "" }, "require": { "php": ">=7.2" }, "conflict": { - "ext-maxminddb": "<1.11.1 || >=2.0.0" + "ext-maxminddb": "<1.11.1,>=2.0.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "3.*", + "php-coveralls/php-coveralls": "^2.1", "phpstan/phpstan": "*", + "phpunit/phpcov": ">=6.0.0", "phpunit/phpunit": ">=8.0.0,<10.0.0", "squizlabs/php_codesniffer": "3.*" }, @@ -20553,29 +18778,29 @@ ], "support": { "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues", - "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.12.1" + "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.1" }, - "time": "2025-05-05T20:56:32+00:00" + "time": "2023-12-02T00:09:23+00:00" }, { "name": "maxmind/web-service-common", - "version": "v0.10.0", + "version": "v0.9.0", "source": { "type": "git", "url": "https://github.com/maxmind/web-service-common-php.git", - "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4" + "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4", - "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4", + "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53", + "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53", "shasum": "" }, "require": { "composer/ca-bundle": "^1.0.3", "ext-curl": "*", "ext-json": "*", - "php": ">=8.1" + "php": ">=7.2" }, "require-dev": { "friendsofphp/php-cs-fixer": "3.*", @@ -20604,22 +18829,22 @@ "homepage": "https://github.com/maxmind/web-service-common-php", "support": { "issues": "https://github.com/maxmind/web-service-common-php/issues", - "source": "https://github.com/maxmind/web-service-common-php/tree/v0.10.0" + "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0" }, - "time": "2024-11-14T23:14:52+00:00" + "time": "2022-03-28T17:43:20+00:00" }, { "name": "mck89/peast", - "version": "v1.16.3", + "version": "v1.15.4", "source": { "type": "git", "url": "https://github.com/mck89/peast.git", - "reference": "645ec21b650bc2aced18285c85f220d22afc1430" + "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430", - "reference": "645ec21b650bc2aced18285c85f220d22afc1430", + "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18", + "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18", "shasum": "" }, "require": { @@ -20632,7 +18857,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.16.3-dev" + "dev-master": "1.15.4-dev" } }, "autoload": { @@ -20653,9 +18878,9 @@ "description": "Peast is PHP library that generates AST for JavaScript code", "support": { "issues": "https://github.com/mck89/peast/issues", - "source": "https://github.com/mck89/peast/tree/v1.16.3" + "source": "https://github.com/mck89/peast/tree/v1.15.4" }, - "time": "2024-07-23T14:00:32+00:00" + "time": "2023-08-12T08:29:29+00:00" }, { "name": "mf2/mf2", @@ -20719,147 +18944,6 @@ }, "time": "2022-02-10T01:05:27+00:00" }, - { - "name": "mikehaertl/php-shellcommand", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/php-shellcommand.git", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "shasum": "" - }, - "require": { - "php": ">= 5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">4.0 <=9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\shellcommand\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "An object oriented interface to shell commands", - "keywords": [ - "shell" - ], - "support": { - "issues": "https://github.com/mikehaertl/php-shellcommand/issues", - "source": "https://github.com/mikehaertl/php-shellcommand/tree/1.7.0" - }, - "time": "2023-04-19T08:25:22+00:00" - }, - { - "name": "mikehaertl/php-tmpfile", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/php-tmpfile.git", - "reference": "a5392bed91f67e2849a7cb24075d346468e1b1a8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-tmpfile/zipball/a5392bed91f67e2849a7cb24075d346468e1b1a8", - "reference": "a5392bed91f67e2849a7cb24075d346468e1b1a8", - "shasum": "" - }, - "require-dev": { - "php": ">=5.3.0", - "phpunit/phpunit": ">4.0 <=9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\tmp\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "A convenience class for temporary files", - "keywords": [ - "files" - ], - "support": { - "issues": "https://github.com/mikehaertl/php-tmpfile/issues", - "source": "https://github.com/mikehaertl/php-tmpfile/tree/1.3.0" - }, - "time": "2024-10-14T16:12:48+00:00" - }, - { - "name": "mikehaertl/phpwkhtmltopdf", - "version": "2.5.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/phpwkhtmltopdf.git", - "reference": "17ee71341591415d942774eda2c98d8ba7ea9e90" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/phpwkhtmltopdf/zipball/17ee71341591415d942774eda2c98d8ba7ea9e90", - "reference": "17ee71341591415d942774eda2c98d8ba7ea9e90", - "shasum": "" - }, - "require": { - "mikehaertl/php-shellcommand": "^1.5.0", - "mikehaertl/php-tmpfile": "^1.2.1", - "php": ">=5.0.0" - }, - "require-dev": { - "phpunit/phpunit": ">4.0 <9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\wkhtmlto\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Haertl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interface", - "homepage": "http://mikehaertl.github.com/phpwkhtmltopdf/", - "keywords": [ - "pdf", - "wkhtmltoimage", - "wkhtmltopdf" - ], - "support": { - "issues": "https://github.com/mikehaertl/phpwkhtmltopdf/issues", - "source": "https://github.com/mikehaertl/phpwkhtmltopdf/tree/2.5.0" - }, - "time": "2021-03-01T19:41:06+00:00" - }, { "name": "mkalkbrenner/php-htmldiff-advanced", "version": "0.0.8", @@ -20901,179 +18985,6 @@ }, "time": "2016-07-25T17:07:32+00:00" }, - { - "name": "mpdf/mpdf", - "version": "v8.2.5", - "source": { - "type": "git", - "url": "https://github.com/mpdf/mpdf.git", - "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f", - "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f", - "shasum": "" - }, - "require": { - "ext-gd": "*", - "ext-mbstring": "*", - "mpdf/psr-http-message-shim": "^1.0 || ^2.0", - "mpdf/psr-log-aware-trait": "^2.0 || ^3.0", - "myclabs/deep-copy": "^1.7", - "paragonie/random_compat": "^1.4|^2.0|^9.99.99", - "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", - "psr/http-message": "^1.0 || ^2.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "setasign/fpdi": "^2.1" - }, - "require-dev": { - "mockery/mockery": "^1.3.0", - "mpdf/qrcode": "^1.1.0", - "squizlabs/php_codesniffer": "^3.5.0", - "tracy/tracy": "~2.5", - "yoast/phpunit-polyfills": "^1.0" - }, - "suggest": { - "ext-bcmath": "Needed for generation of some types of barcodes", - "ext-xml": "Needed mainly for SVG manipulation", - "ext-zlib": "Needed for compression of embedded resources, such as fonts" - }, - "type": "library", - "autoload": { - "files": [ - "src/functions.php" - ], - "psr-4": { - "Mpdf\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-only" - ], - "authors": [ - { - "name": "Matěj Humpál", - "role": "Developer, maintainer" - }, - { - "name": "Ian Back", - "role": "Developer (retired)" - } - ], - "description": "PHP library generating PDF files from UTF-8 encoded HTML", - "homepage": "https://mpdf.github.io", - "keywords": [ - "pdf", - "php", - "utf-8" - ], - "support": { - "docs": "https://mpdf.github.io", - "issues": "https://github.com/mpdf/mpdf/issues", - "source": "https://github.com/mpdf/mpdf" - }, - "funding": [ - { - "url": "https://www.paypal.me/mpdf", - "type": "custom" - } - ], - "time": "2024-11-18T15:30:42+00:00" - }, - { - "name": "mpdf/psr-http-message-shim", - "version": "v2.0.1", - "source": { - "type": "git", - "url": "https://github.com/mpdf/psr-http-message-shim.git", - "reference": "f25a0153d645e234f9db42e5433b16d9b113920f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f", - "reference": "f25a0153d645e234f9db42e5433b16d9b113920f", - "shasum": "" - }, - "require": { - "psr/http-message": "^2.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Mpdf\\PsrHttpMessageShim\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mark Dorison", - "email": "mark@chromatichq.com" - }, - { - "name": "Kristofer Widholm", - "email": "kristofer@chromatichq.com" - }, - { - "name": "Nigel Cunningham", - "email": "nigel.cunningham@technocrat.com.au" - } - ], - "description": "Shim to allow support of different psr/message versions.", - "support": { - "issues": "https://github.com/mpdf/psr-http-message-shim/issues", - "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1" - }, - "time": "2023-10-02T14:34:03+00:00" - }, - { - "name": "mpdf/psr-log-aware-trait", - "version": "v3.0.0", - "source": { - "type": "git", - "url": "https://github.com/mpdf/psr-log-aware-trait.git", - "reference": "a633da6065e946cc491e1c962850344bb0bf3e78" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78", - "reference": "a633da6065e946cc491e1c962850344bb0bf3e78", - "shasum": "" - }, - "require": { - "psr/log": "^3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Mpdf\\PsrLogAwareTrait\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mark Dorison", - "email": "mark@chromatichq.com" - }, - { - "name": "Kristofer Widholm", - "email": "kristofer@chromatichq.com" - } - ], - "description": "Trait to allow support of different psr/log versions.", - "support": { - "issues": "https://github.com/mpdf/psr-log-aware-trait/issues", - "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0" - }, - "time": "2023-05-03T06:19:36+00:00" - }, { "name": "mtownsend/xml-to-array", "version": "2.0.0", @@ -21181,78 +19092,18 @@ }, "time": "2019-09-10T13:16:29+00:00" }, - { - "name": "myclabs/deep-copy", - "version": "1.13.1", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c", - "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "conflict": { - "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3 <3.2.2" - }, - "require-dev": { - "doctrine/collections": "^1.6.8", - "doctrine/common": "^2.13.3 || ^3.2.2", - "phpspec/prophecy": "^1.10", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" - }, - "type": "library", - "autoload": { - "files": [ - "src/DeepCopy/deep_copy.php" - ], - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], - "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", - "type": "tidelift" - } - ], - "time": "2025-04-29T12:36:36+00:00" - }, { "name": "nikic/php-parser", - "version": "v5.4.0", + "version": "v5.0.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13", "shasum": "" }, "require": { @@ -21263,7 +19114,7 @@ }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -21295,22 +19146,22 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2" }, - "time": "2024-12-30T11:07:19+00:00" + "time": "2024-03-05T20:51:40+00:00" }, { "name": "p3k/http", - "version": "0.1.13", + "version": "0.1.12", "source": { "type": "git", "url": "https://github.com/aaronpk/p3k-http.git", - "reference": "ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a" + "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a", - "reference": "ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a", + "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b", + "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b", "shasum": "" }, "require": { @@ -21337,9 +19188,9 @@ "homepage": "https://github.com/aaronpk/p3k-http", "support": { "issues": "https://github.com/aaronpk/p3k-http/issues", - "source": "https://github.com/aaronpk/p3k-http/tree/0.1.13" + "source": "https://github.com/aaronpk/p3k-http/tree/0.1.12" }, - "time": "2024-10-20T19:46:46+00:00" + "time": "2021-10-12T14:12:29+00:00" }, { "name": "p3k/micropub", @@ -21601,20 +19452,21 @@ }, { "name": "p3k/xray", - "version": "v1.15.1", + "version": "v1.14.1", "source": { "type": "git", "url": "https://github.com/aaronpk/XRay.git", - "reference": "a4cda273d34c56317197511d0f4799f5f00465e9" + "reference": "7b9adcc4e72c10f4749f937d6709c6a9c6d89e0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/XRay/zipball/a4cda273d34c56317197511d0f4799f5f00465e9", - "reference": "a4cda273d34c56317197511d0f4799f5f00465e9", + "url": "https://api.github.com/repos/aaronpk/XRay/zipball/7b9adcc4e72c10f4749f937d6709c6a9c6d89e0d", + "reference": "7b9adcc4e72c10f4749f937d6709c6a9c6d89e0d", "shasum": "" }, "require": { "cebe/markdown": "^1.1.0", + "dg/twitter-php": "^3.0.0", "ezyang/htmlpurifier": "^4.10", "indieweb/link-rel-parser": "^0.1.0", "masterminds/html5": "^2.3", @@ -21646,9 +19498,9 @@ "homepage": "https://github.com/aaronpk/XRay", "support": { "issues": "https://github.com/aaronpk/XRay/issues", - "source": "https://github.com/aaronpk/XRay/tree/v1.15.1" + "source": "https://github.com/aaronpk/XRay/tree/v1.14.1" }, - "time": "2024-08-31T16:21:43+00:00" + "time": "2024-03-10T21:39:30+00:00" }, { "name": "paragonie/random_compat", @@ -21702,16 +19554,16 @@ }, { "name": "pear/archive_tar", - "version": "1.5.0", + "version": "1.4.14", "source": { "type": "git", "url": "https://github.com/pear/Archive_Tar.git", - "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602" + "reference": "4d761c5334c790e45ef3245f0864b8955c562caa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602", - "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa", + "reference": "4d761c5334c790e45ef3245f0864b8955c562caa", "shasum": "" }, "require": { @@ -21742,7 +19594,7 @@ "./" ], "license": [ - "BSD-2-Clause" + "BSD-3-Clause" ], "authors": [ { @@ -21768,7 +19620,17 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", "source": "https://github.com/pear/Archive_Tar" }, - "time": "2024-03-16T16:21:40+00:00" + "funding": [ + { + "url": "https://github.com/mrook", + "type": "github" + }, + { + "url": "https://www.patreon.com/michielrook", + "type": "patreon" + } + ], + "time": "2021-07-20T13:53:39+00:00" }, { "name": "pear/console_getopt", @@ -21823,16 +19685,16 @@ }, { "name": "pear/pear-core-minimal", - "version": "v1.10.16", + "version": "v1.10.15", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033" + "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033", - "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c", + "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c", "shasum": "" }, "require": { @@ -21868,7 +19730,7 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", "source": "https://github.com/pear/pear-core-minimal" }, - "time": "2024-11-24T22:27:58+00:00" + "time": "2024-03-16T18:41:45+00:00" }, { "name": "pear/pear_exception", @@ -21931,7 +19793,7 @@ }, { "name": "phootwork/collection", - "version": "v3.2.3", + "version": "v3.2.2", "source": { "type": "git", "url": "https://github.com/phootwork/collection.git", @@ -21980,22 +19842,22 @@ ], "support": { "issues": "https://github.com/phootwork/phootwork/issues", - "source": "https://github.com/phootwork/collection/tree/v3.2.3" + "source": "https://github.com/phootwork/collection/tree/v3.2.2" }, "time": "2022-08-27T12:51:24+00:00" }, { "name": "phootwork/lang", - "version": "v3.2.3", + "version": "v3.2.2", "source": { "type": "git", "url": "https://github.com/phootwork/lang.git", - "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e" + "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", - "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", + "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597", + "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597", "shasum": "" }, "require": { @@ -22029,22 +19891,22 @@ ], "support": { "issues": "https://github.com/phootwork/phootwork/issues", - "source": "https://github.com/phootwork/lang/tree/v3.2.3" + "source": "https://github.com/phootwork/lang/tree/v3.2.2" }, - "time": "2024-10-03T13:43:19+00:00" + "time": "2023-05-26T05:37:59+00:00" }, { "name": "phpoption/phpoption", - "version": "1.9.3", + "version": "1.9.2", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", "shasum": "" }, "require": { @@ -22052,13 +19914,13 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "type": "library", "extra": { "bamarni-bin": { "bin-links": true, - "forward-command": false + "forward-command": true }, "branch-alias": { "dev-master": "1.9-dev" @@ -22094,7 +19956,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" }, "funding": [ { @@ -22106,7 +19968,7 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:41:07+00:00" + "time": "2023-11-12T21:59:55+00:00" }, { "name": "phpowermove/docblock", @@ -22160,44 +20022,6 @@ }, "time": "2021-09-22T16:57:06+00:00" }, - { - "name": "politsin/jquery-ui-touch-punch", - "version": "1.0", - "source": { - "type": "git", - "url": "https://github.com/politsin/jquery-ui-touch-punch.git", - "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd", - "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd", - "shasum": "" - }, - "type": "drupal-library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Dave Furfero", - "email": "furf@furf.com" - } - ], - "description": "Extension to jQuery UI for mobile touch event support.", - "homepage": "http://touchpunch.furf.com/", - "keywords": [ - "gestures", - "mobile", - "touch" - ], - "support": { - "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues", - "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0" - }, - "time": "2020-12-15T10:26:18+00:00" - }, { "name": "psr/cache", "version": "3.0.0", @@ -22452,20 +20276,20 @@ }, { "name": "psr/http-factory", - "version": "1.1.0", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + "reference": "e616d01114759c4c489f93b099585439f795fe35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", - "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", "shasum": "" }, "require": { - "php": ">=7.1", + "php": ">=7.0.0", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -22489,7 +20313,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "description": "Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -22501,9 +20325,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory" + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" }, - "time": "2024-04-15T12:06:14+00:00" + "time": "2023-04-10T20:10:41+00:00" }, { "name": "psr/http-message", @@ -22560,16 +20384,16 @@ }, { "name": "psr/log", - "version": "3.0.2", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", "shasum": "" }, "require": { @@ -22604,22 +20428,22 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.2" + "source": "https://github.com/php-fig/log/tree/3.0.0" }, - "time": "2024-09-11T13:17:53+00:00" + "time": "2021-07-14T16:46:02+00:00" }, { "name": "psy/psysh", - "version": "v0.12.8", + "version": "v0.12.3", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73", + "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73", "shasum": "" }, "require": { @@ -22646,12 +20470,12 @@ ], "type": "library", "extra": { + "branch-alias": { + "dev-main": "0.12.x-dev" + }, "bamarni-bin": { "bin-links": false, "forward-command": false - }, - "branch-alias": { - "dev-main": "0.12.x-dev" } }, "autoload": { @@ -22683,9 +20507,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.3" }, - "time": "2025-03-16T03:05:19+00:00" + "time": "2024-04-02T15:57:53+00:00" }, { "name": "ralouphie/getallheaders", @@ -22731,71 +20555,6 @@ }, "time": "2019-03-08T08:55:37+00:00" }, - { - "name": "sabberworm/php-css-parser", - "version": "v8.8.0", - "source": { - "type": "git", - "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", - "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/3de493bdddfd1f051249af725c7e0d2c38fed740", - "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740", - "shasum": "" - }, - "require": { - "ext-iconv": "*", - "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" - }, - "require-dev": { - "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41" - }, - "suggest": { - "ext-mbstring": "for parsing UTF-8 CSS" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "9.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Sabberworm\\CSS\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Raphael Schweikert" - }, - { - "name": "Oliver Klee", - "email": "github@oliverklee.de" - }, - { - "name": "Jake Hotson", - "email": "jake.github@qzdesign.co.uk" - } - ], - "description": "Parser for CSS Files written in PHP", - "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", - "keywords": [ - "css", - "parser", - "stylesheet" - ], - "support": { - "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", - "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.8.0" - }, - "time": "2025-03-23T17:59:05+00:00" - }, { "name": "sebastian/diff", "version": "4.0.6", @@ -22862,90 +20621,18 @@ ], "time": "2024-03-02T06:30:58+00:00" }, - { - "name": "setasign/fpdi", - "version": "v2.6.3", - "source": { - "type": "git", - "url": "https://github.com/Setasign/FPDI.git", - "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Setasign/FPDI/zipball/67c31f5e50c93c20579ca9e23035d8c540b51941", - "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941", - "shasum": "" - }, - "require": { - "ext-zlib": "*", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "setasign/tfpdf": "<1.31" - }, - "require-dev": { - "phpunit/phpunit": "^7", - "setasign/fpdf": "~1.8.6", - "setasign/tfpdf": "~1.33", - "squizlabs/php_codesniffer": "^3.5", - "tecnickcom/tcpdf": "^6.2" - }, - "suggest": { - "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured." - }, - "type": "library", - "autoload": { - "psr-4": { - "setasign\\Fpdi\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jan Slabon", - "email": "jan.slabon@setasign.com", - "homepage": "https://www.setasign.com" - }, - { - "name": "Maximilian Kresse", - "email": "maximilian.kresse@setasign.com", - "homepage": "https://www.setasign.com" - } - ], - "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.", - "homepage": "https://www.setasign.com/fpdi", - "keywords": [ - "fpdf", - "fpdi", - "pdf" - ], - "support": { - "issues": "https://github.com/Setasign/FPDI/issues", - "source": "https://github.com/Setasign/FPDI/tree/v2.6.3" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi", - "type": "tidelift" - } - ], - "time": "2025-02-05T13:22:35+00:00" - }, { "name": "simshaun/recurr", - "version": "v5.0.3", + "version": "v5.0.2", "source": { "type": "git", "url": "https://github.com/simshaun/recurr.git", - "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1" + "reference": "1aff62e6e0ee875b3f2487352542605123ee9172" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simshaun/recurr/zipball/7b136768d64f257065e38a804ee6d2f9af6ba6d1", - "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/1aff62e6e0ee875b3f2487352542605123ee9172", + "reference": "1aff62e6e0ee875b3f2487352542605123ee9172", "shasum": "" }, "require": { @@ -22989,22 +20676,69 @@ ], "support": { "issues": "https://github.com/simshaun/recurr/issues", - "source": "https://github.com/simshaun/recurr/tree/v5.0.3" + "source": "https://github.com/simshaun/recurr/tree/v5.0.2" }, - "time": "2024-12-12T15:39:24+00:00" + "time": "2023-09-26T20:31:33+00:00" }, { - "name": "symfony/console", - "version": "v6.4.21", + "name": "stella-maris/clock", + "version": "0.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719" + "url": "https://github.com/stella-maris-solutions/clock.git", + "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719", - "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719", + "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8", + "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8", + "shasum": "" + }, + "require": { + "php": "^7.0|^8.0", + "psr/clock": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "StellaMaris\\Clock\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Heigl", + "role": "Maintainer" + } + ], + "description": "A pre-release of the proposed PSR-20 Clock-Interface", + "homepage": "https://gitlab.com/stella-maris/clock", + "keywords": [ + "clock", + "datetime", + "point in time", + "psr20" + ], + "support": { + "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7" + }, + "time": "2022-11-25T16:15:06+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91", + "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91", "shasum": "" }, "require": { @@ -23069,7 +20803,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.21" + "source": "https://github.com/symfony/console/tree/v6.4.8" }, "funding": [ { @@ -23085,85 +20819,20 @@ "type": "tidelift" } ], - "time": "2025-04-07T15:42:41+00:00" - }, - { - "name": "symfony/css-selector", - "version": "v6.4.13", - "source": { - "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e", - "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Converts CSS selectors to XPath expressions", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.4.13" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.20", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "c49796a9184a532843e78e50df9e55708b92543a" + "reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c49796a9184a532843e78e50df9e55708b92543a", - "reference": "c49796a9184a532843e78e50df9e55708b92543a", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d3b618176e8c3a9e5772151c51eba0c52a0c771c", + "reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c", "shasum": "" }, "require": { @@ -23171,7 +20840,7 @@ "psr/container": "^1.1|^2.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^6.4.20|^7.2.5" + "symfony/var-exporter": "^6.2.10|^7.0" }, "conflict": { "ext-psr": "<1.1|>=2", @@ -23215,7 +20884,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.4.20" + "source": "https://github.com/symfony/dependency-injection/tree/v6.4.8" }, "funding": [ { @@ -23231,20 +20900,20 @@ "type": "tidelift" } ], - "time": "2025-03-13T09:55:08+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", "shasum": "" }, "require": { @@ -23252,12 +20921,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -23282,7 +20951,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" }, "funding": [ { @@ -23298,87 +20967,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" - }, - { - "name": "symfony/dom-crawler", - "version": "v6.4.19", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "19073e3e0bb50cbc1cb286077069b3107085206f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19073e3e0bb50cbc1cb286077069b3107085206f", - "reference": "19073e3e0bb50cbc1cb286077069b3107085206f", - "shasum": "" - }, - "require": { - "masterminds/html5": "^2.6", - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" - }, - "require-dev": { - "symfony/css-selector": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Eases DOM navigation for HTML and XML documents", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v6.4.19" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-02-14T17:58:34+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/error-handler", - "version": "v6.4.20", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "aa3bcf4f7674719df078e61cc8062e5b7f752031" + "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/aa3bcf4f7674719df078e61cc8062e5b7f752031", - "reference": "aa3bcf4f7674719df078e61cc8062e5b7f752031", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc", + "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc", "shasum": "" }, "require": { @@ -23424,7 +21026,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.20" + "source": "https://github.com/symfony/error-handler/tree/v6.4.8" }, "funding": [ { @@ -23440,20 +21042,20 @@ "type": "tidelift" } ], - "time": "2025-03-01T13:00:38+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.4.13", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e" + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b", + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b", "shasum": "" }, "require": { @@ -23504,7 +21106,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.4.13" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8" }, "funding": [ { @@ -23520,20 +21122,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.1", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + "reference": "4e64b49bf370ade88e567de29465762e316e4224" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224", + "reference": "4e64b49bf370ade88e567de29465762e316e4224", "shasum": "" }, "require": { @@ -23542,12 +21144,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -23580,7 +21182,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.2" }, "funding": [ { @@ -23596,20 +21198,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/filesystem", - "version": "v6.4.13", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3" + "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3", - "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3", + "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3", "shasum": "" }, "require": { @@ -23646,7 +21248,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.13" + "source": "https://github.com/symfony/filesystem/tree/v6.4.8" }, "funding": [ { @@ -23662,20 +21264,20 @@ "type": "tidelift" } ], - "time": "2024-10-25T15:07:50+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/finder", - "version": "v6.4.17", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" + "reference": "3ef977a43883215d560a2cecb82ec8e62131471c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c", + "reference": "3ef977a43883215d560a2cecb82ec8e62131471c", "shasum": "" }, "require": { @@ -23710,7 +21312,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.17" + "source": "https://github.com/symfony/finder/tree/v6.4.8" }, "funding": [ { @@ -23726,20 +21328,20 @@ "type": "tidelift" } ], - "time": "2024-12-29T13:51:37+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99" + "reference": "27de8cc95e11db7a50b027e71caaab9024545947" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99", - "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947", + "reference": "27de8cc95e11db7a50b027e71caaab9024545947", "shasum": "" }, "require": { @@ -23749,12 +21351,12 @@ "symfony/polyfill-php83": "^1.27" }, "conflict": { - "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + "symfony/cache": "<6.3" }, "require-dev": { "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.4.12|^7.1.5", + "symfony/cache": "^6.3|^7.0", "symfony/dependency-injection": "^5.4|^6.0|^7.0", "symfony/expression-language": "^5.4|^6.0|^7.0", "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", @@ -23787,7 +21389,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.4.21" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.8" }, "funding": [ { @@ -23803,20 +21405,20 @@ "type": "tidelift" } ], - "time": "2025-04-27T13:27:38+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "983ca05eec6623920d24ec0f1005f487d3734a0c" + "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/983ca05eec6623920d24ec0f1005f487d3734a0c", - "reference": "983ca05eec6623920d24ec0f1005f487d3734a0c", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1", + "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1", "shasum": "" }, "require": { @@ -23901,7 +21503,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.4.21" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.8" }, "funding": [ { @@ -23917,20 +21519,20 @@ "type": "tidelift" } ], - "time": "2025-05-02T08:46:38+00:00" + "time": "2024-06-02T16:06:25+00:00" }, { "name": "symfony/mailer", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "ada2809ccd4ec27aba9fc344e3efdaec624c6438" + "reference": "76326421d44c07f7824b19487cfbf87870b37efc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/ada2809ccd4ec27aba9fc344e3efdaec624c6438", - "reference": "ada2809ccd4ec27aba9fc344e3efdaec624c6438", + "url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc", + "reference": "76326421d44c07f7824b19487cfbf87870b37efc", "shasum": "" }, "require": { @@ -23981,7 +21583,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.4.21" + "source": "https://github.com/symfony/mailer/tree/v6.4.8" }, "funding": [ { @@ -23997,20 +21599,20 @@ "type": "tidelift" } ], - "time": "2025-04-26T23:47:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/mime", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "fec8aa5231f3904754955fad33c2db50594d22d1" + "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1", - "reference": "fec8aa5231f3904754955fad33c2db50594d22d1", + "url": "https://api.github.com/repos/symfony/mime/zipball/618597ab8b78ac86d1c75a9d0b35540cda074f33", + "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33", "shasum": "" }, "require": { @@ -24024,7 +21626,7 @@ "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<5.4", - "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + "symfony/serializer": "<6.3.2" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1|^4", @@ -24034,7 +21636,7 @@ "symfony/process": "^5.4|^6.4|^7.0", "symfony/property-access": "^5.4|^6.0|^7.0", "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.4.3|^7.0.3" + "symfony/serializer": "^6.3.2|^7.0" }, "type": "library", "autoload": { @@ -24066,7 +21668,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.21" + "source": "https://github.com/symfony/mime/tree/v6.4.8" }, "funding": [ { @@ -24082,24 +21684,24 @@ "type": "tidelift" } ], - "time": "2025-04-27T13:27:38+00:00" + "time": "2024-06-01T07:50:16+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "provide": { "ext-ctype": "*" @@ -24109,9 +21711,12 @@ }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24145,7 +21750,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" }, "funding": [ { @@ -24161,24 +21766,24 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "provide": { "ext-iconv": "*" @@ -24188,9 +21793,12 @@ }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24225,7 +21833,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0" }, "funding": [ { @@ -24241,33 +21849,36 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + "reference": "875e90aeea2777b6f135677f618529449334a612" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24303,7 +21914,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" }, "funding": [ { @@ -24319,34 +21930,38 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/polyfill-intl-normalizer": "^1.10" + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24386,7 +22001,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" }, "funding": [ { @@ -24402,33 +22017,36 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2023-01-26T09:30:37+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "3833d7255cc303546435cb650316bff708a1c75c" + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", - "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24467,7 +22085,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" }, "funding": [ { @@ -24483,24 +22101,24 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "reference": "42292d99c55abe617799667f454222c54c60e229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "provide": { "ext-mbstring": "*" @@ -24510,9 +22128,12 @@ }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24547,7 +22168,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" }, "funding": [ { @@ -24563,30 +22184,103 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2023-07-28T09:04:16+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.32.0", + "name": "symfony/polyfill-php72", + "version": "v1.29.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24627,7 +22321,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" }, "funding": [ { @@ -24643,30 +22337,30 @@ "type": "tidelift" } ], - "time": "2025-01-02T08:10:11+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.32.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24703,7 +22397,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0" }, "funding": [ { @@ -24719,30 +22413,34 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.31.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24779,7 +22477,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" }, "funding": [ { @@ -24795,96 +22493,20 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-php84", - "version": "v1.32.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php84.git", - "reference": "000df7860439609837bbe28670b0be15783b7fbf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf", - "reference": "000df7860439609837bbe28670b0be15783b7fbf", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php84\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-02-20T12:04:08+00:00" + "time": "2023-08-16T06:22:46+00:00" }, { "name": "symfony/process", - "version": "v6.4.20", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20" + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20", + "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5", + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5", "shasum": "" }, "require": { @@ -24916,7 +22538,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.20" + "source": "https://github.com/symfony/process/tree/v6.4.8" }, "funding": [ { @@ -24932,20 +22554,20 @@ "type": "tidelift" } ], - "time": "2025-03-10T17:11:00+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.13", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec" + "reference": "23a162bd446b93948a2c2f6909d80ad06195be10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9cf83326a1074f83a738fc5320945abf7fb7fec", - "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/23a162bd446b93948a2c2f6909d80ad06195be10", + "reference": "23a162bd446b93948a2c2f6909d80ad06195be10", "shasum": "" }, "require": { @@ -24999,7 +22621,7 @@ "psr-7" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.13" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.8" }, "funding": [ { @@ -25015,20 +22637,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2024-05-31T14:51:39+00:00" }, { "name": "symfony/routing", - "version": "v6.4.18", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68" + "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/e9bfc94953019089acdfb9be51c1b9142c4afa68", - "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68", + "url": "https://api.github.com/repos/symfony/routing/zipball/8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58", + "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58", "shasum": "" }, "require": { @@ -25082,7 +22704,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.18" + "source": "https://github.com/symfony/routing/tree/v6.4.8" }, "funding": [ { @@ -25098,20 +22720,20 @@ "type": "tidelift" } ], - "time": "2025-01-09T08:51:02+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/serializer", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "c45f8f7763afb11e85772c0c1debb8f272c17f51" + "reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/c45f8f7763afb11e85772c0c1debb8f272c17f51", - "reference": "c45f8f7763afb11e85772c0c1debb8f272c17f51", + "url": "https://api.github.com/repos/symfony/serializer/zipball/d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c", + "reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c", "shasum": "" }, "require": { @@ -25180,7 +22802,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.4.21" + "source": "https://github.com/symfony/serializer/tree/v6.4.8" }, "funding": [ { @@ -25196,38 +22818,37 @@ "type": "tidelift" } ], - "time": "2025-04-27T13:27:38+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.5.1", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e", + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^1.1|^2.0", - "symfony/deprecation-contracts": "^2.5|^3" + "psr/container": "^1.1|^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -25263,7 +22884,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.2" }, "funding": [ { @@ -25279,20 +22900,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2023-12-19T21:51:00+00:00" }, { "name": "symfony/string", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6" + "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6", + "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d", + "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d", "shasum": "" }, "require": { @@ -25349,7 +22970,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.21" + "source": "https://github.com/symfony/string/tree/v6.4.8" }, "funding": [ { @@ -25365,20 +22986,20 @@ "type": "tidelift" } ], - "time": "2025-04-18T15:23:29+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.1", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/43810bdb2ddb5400e5c5e778e27b210a0ca83b6b", + "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b", "shasum": "" }, "require": { @@ -25386,12 +23007,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -25427,7 +23048,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.2" }, "funding": [ { @@ -25443,20 +23064,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/validator", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "47610116f476595b90c368ff2a22514050712785" + "reference": "dab2781371d54c86f6b25623ab16abb2dde2870c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/47610116f476595b90c368ff2a22514050712785", - "reference": "47610116f476595b90c368ff2a22514050712785", + "url": "https://api.github.com/repos/symfony/validator/zipball/dab2781371d54c86f6b25623ab16abb2dde2870c", + "reference": "dab2781371d54c86f6b25623ab16abb2dde2870c", "shasum": "" }, "require": { @@ -25524,7 +23145,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.4.21" + "source": "https://github.com/symfony/validator/tree/v6.4.8" }, "funding": [ { @@ -25540,20 +23161,20 @@ "type": "tidelift" } ], - "time": "2025-04-30T18:50:04+00:00" + "time": "2024-06-02T15:48:50+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "22560f80c0c5cd58cc0bcaf73455ffd81eb380d5" + "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/22560f80c0c5cd58cc0bcaf73455ffd81eb380d5", - "reference": "22560f80c0c5cd58cc0bcaf73455ffd81eb380d5", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad23ca4312395f0a8a8633c831ef4c4ee542ed25", + "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25", "shasum": "" }, "require": { @@ -25609,7 +23230,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.21" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.8" }, "funding": [ { @@ -25625,20 +23246,20 @@ "type": "tidelift" } ], - "time": "2025-04-09T07:34:50+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "717e7544aa99752c54ecba5c0e17459c48317472" + "reference": "792ca836f99b340f2e9ca9497c7953948c49a504" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/717e7544aa99752c54ecba5c0e17459c48317472", - "reference": "717e7544aa99752c54ecba5c0e17459c48317472", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/792ca836f99b340f2e9ca9497c7953948c49a504", + "reference": "792ca836f99b340f2e9ca9497c7953948c49a504", "shasum": "" }, "require": { @@ -25686,7 +23307,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.21" + "source": "https://github.com/symfony/var-exporter/tree/v6.4.8" }, "funding": [ { @@ -25702,20 +23323,20 @@ "type": "tidelift" } ], - "time": "2025-04-27T21:06:26+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.21", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "f01987f45676778b474468aa266fe2eda1f2bc7e" + "reference": "52903de178d542850f6f341ba92995d3d63e60c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/f01987f45676778b474468aa266fe2eda1f2bc7e", - "reference": "f01987f45676778b474468aa266fe2eda1f2bc7e", + "url": "https://api.github.com/repos/symfony/yaml/zipball/52903de178d542850f6f341ba92995d3d63e60c9", + "reference": "52903de178d542850f6f341ba92995d3d63e60c9", "shasum": "" }, "require": { @@ -25758,7 +23379,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.21" + "source": "https://github.com/symfony/yaml/tree/v6.4.8" }, "funding": [ { @@ -25774,78 +23395,7 @@ "type": "tidelift" } ], - "time": "2025-04-04T09:48:44+00:00" - }, - { - "name": "tecnickcom/tcpdf", - "version": "6.9.3", - "source": { - "type": "git", - "url": "https://github.com/tecnickcom/TCPDF.git", - "reference": "d0e8dd17f8a1df3c97b94b9af8356e88e811ed59" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/d0e8dd17f8a1df3c97b94b9af8356e88e811ed59", - "reference": "d0e8dd17f8a1df3c97b94b9af8356e88e811ed59", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "php": ">=7.1.0" - }, - "type": "library", - "autoload": { - "classmap": [ - "config", - "include", - "tcpdf.php", - "tcpdf_barcodes_1d.php", - "tcpdf_barcodes_2d.php", - "include/tcpdf_colors.php", - "include/tcpdf_filters.php", - "include/tcpdf_font_data.php", - "include/tcpdf_fonts.php", - "include/tcpdf_images.php", - "include/tcpdf_static.php", - "include/barcodes/datamatrix.php", - "include/barcodes/pdf417.php", - "include/barcodes/qrcode.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "authors": [ - { - "name": "Nicola Asuni", - "email": "info@tecnick.com", - "role": "lead" - } - ], - "description": "TCPDF is a PHP class for generating PDF documents and barcodes.", - "homepage": "http://www.tcpdf.org/", - "keywords": [ - "PDFD32000-2008", - "TCPDF", - "barcodes", - "datamatrix", - "pdf", - "pdf417", - "qrcode" - ], - "support": { - "issues": "https://github.com/tecnickcom/TCPDF/issues", - "source": "https://github.com/tecnickcom/TCPDF/tree/6.9.3" - }, - "funding": [ - { - "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations¤cy_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project", - "type": "custom" - } - ], - "time": "2025-04-20T15:52:50+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "thinkshout/mailchimp-api-php", @@ -25893,38 +23443,30 @@ }, { "name": "twig/twig", - "version": "v3.19.0", + "version": "v3.8.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "d4f8c2b86374f08efc859323dbcd95c590f7124e" + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/d4f8c2b86374f08efc859323dbcd95c590f7124e", - "reference": "d4f8c2b86374f08efc859323dbcd95c590f7124e", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", "shasum": "" }, "require": { - "php": ">=8.0.2", - "symfony/deprecation-contracts": "^2.5|^3", + "php": ">=7.2.5", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php81": "^1.29" + "symfony/polyfill-php80": "^1.22" }, "require-dev": { - "phpstan/phpstan": "^2.0", "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" + "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" }, "type": "library", "autoload": { - "files": [ - "src/Resources/core.php", - "src/Resources/debug.php", - "src/Resources/escaper.php", - "src/Resources/string_loader.php" - ], "psr-4": { "Twig\\": "src/" } @@ -25957,7 +23499,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.19.0" + "source": "https://github.com/twigphp/Twig/tree/v3.8.0" }, "funding": [ { @@ -25969,27 +23511,27 @@ "type": "tidelift" } ], - "time": "2025-01-29T07:06:14+00:00" + "time": "2023-11-21T18:54:41+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.2", + "version": "v5.6.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.3", + "graham-campbell/result-type": "^1.1.2", "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3", + "phpoption/phpoption": "^1.9.2", "symfony/polyfill-ctype": "^1.24", "symfony/polyfill-mbstring": "^1.24", "symfony/polyfill-php80": "^1.24" @@ -26006,7 +23548,7 @@ "extra": { "bamarni-bin": { "bin-links": true, - "forward-command": false + "forward-command": true }, "branch-alias": { "dev-master": "5.6-dev" @@ -26041,7 +23583,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" }, "funding": [ { @@ -26053,86 +23595,20 @@ "type": "tidelift" } ], - "time": "2025-04-30T23:37:27+00:00" - }, - { - "name": "wa72/htmlpagedom", - "version": "v3.0.0", - "source": { - "type": "git", - "url": "https://github.com/wasinger/htmlpagedom.git", - "reference": "568a7379e66c3a8cf973885b7811900487f11fbb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/wasinger/htmlpagedom/zipball/568a7379e66c3a8cf973885b7811900487f11fbb", - "reference": "568a7379e66c3a8cf973885b7811900487f11fbb", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "php": "^8.0", - "symfony/css-selector": "^6", - "symfony/dom-crawler": "^6" - }, - "require-dev": { - "mikey179/vfsstream": "^1.6.10", - "phpunit/phpunit": "^9", - "scrutinizer/ocular": "^1.9", - "wa72/html-pretty-min": "~0.1" - }, - "suggest": { - "wa72/html-pretty-min": "Minify or indent HTML documents" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "autoload": { - "psr-4": { - "Wa72\\HtmlPageDom\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christoph Singer", - "email": "singer@webagentur72.de", - "homepage": "http://www.webagentur72.de" - } - ], - "description": "jQuery-inspired DOM manipulation extension for Symfony's Crawler", - "homepage": "http://github.com/wasinger/htmlpagedom", - "keywords": [ - "crawler", - "dom", - "html" - ], - "support": { - "issues": "https://github.com/wasinger/htmlpagedom/issues", - "source": "https://github.com/wasinger/htmlpagedom/tree/v3.0.0" - }, - "time": "2022-04-13T15:28:55+00:00" + "time": "2023-11-12T22:43:29+00:00" }, { "name": "webflo/drupal-finder", - "version": "1.3.1", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/webflo/drupal-finder.git", - "reference": "73045060b0894c77962a10cff047f72872d8810c" + "reference": "1fa65484857c7a2e4dcf0d9e0b47198fe0681b8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c", - "reference": "73045060b0894c77962a10cff047f72872d8810c", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/1fa65484857c7a2e4dcf0d9e0b47198fe0681b8a", + "reference": "1fa65484857c7a2e4dcf0d9e0b47198fe0681b8a", "shasum": "" }, "require": { @@ -26141,8 +23617,7 @@ }, "require-dev": { "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^10.4", - "symfony/process": "^6.4" + "phpunit/phpunit": "^10.4" }, "type": "library", "autoload": { @@ -26163,9 +23638,9 @@ "description": "Helper class to locate a Drupal installation.", "support": { "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.3.1" + "source": "https://github.com/webflo/drupal-finder/tree/1.3.0" }, - "time": "2024-06-28T13:45:36+00:00" + "time": "2024-05-08T21:22:39+00:00" }, { "name": "webmozart/assert", @@ -26229,40 +23704,37 @@ "packages-dev": [ { "name": "behat/behat", - "version": "v3.22.0", + "version": "v3.14.0", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93" + "reference": "2a3832d9cb853a794af3a576f9e524ae460f3340" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/a93098a77753c3cfdc4c485d75141924a78ceb93", - "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93", + "url": "https://api.github.com/repos/Behat/Behat/zipball/2a3832d9cb853a794af3a576f9e524ae460f3340", + "reference": "2a3832d9cb853a794af3a576f9e524ae460f3340", "shasum": "" }, "require": { - "behat/gherkin": "^4.12.0", - "composer-runtime-api": "^2.2", - "composer/xdebug-handler": "^3.0", + "behat/gherkin": "^4.9.0", + "behat/transliterator": "^1.2", "ext-mbstring": "*", - "nikic/php-parser": "^5.2", - "php": "8.1.* || 8.2.* || 8.3.* || 8.4.* ", + "php": "^7.2 || ^8.0", "psr/container": "^1.0 || ^2.0", - "symfony/config": "^5.4 || ^6.4 || ^7.0", - "symfony/console": "^5.4 || ^6.4 || ^7.0", - "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", - "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", - "symfony/translation": "^5.4 || ^6.4 || ^7.0", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + "symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/translation": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.68", - "phpstan/phpstan": "^2.0", - "phpunit/phpunit": "^9.6", - "sebastian/diff": "^4.0", - "symfony/polyfill-php84": "^1.31", - "symfony/process": "^5.4 || ^6.4 || ^7.0" + "herrera-io/box": "~1.6.1", + "phpspec/prophecy": "^1.15", + "phpunit/phpunit": "^8.5 || ^9.0", + "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "vimeo/psalm": "^4.8" }, "suggest": { "ext-dom": "Needed to output test results in JUnit format." @@ -26281,9 +23753,7 @@ "Behat\\Hook\\": "src/Behat/Hook/", "Behat\\Step\\": "src/Behat/Step/", "Behat\\Behat\\": "src/Behat/Behat/", - "Behat\\Config\\": "src/Behat/Config/", - "Behat\\Testwork\\": "src/Behat/Testwork/", - "Behat\\Transformation\\": "src/Behat/Transformation/" + "Behat\\Testwork\\": "src/Behat/Testwork/" } }, "notification-url": "https://packagist.org/downloads/", @@ -26298,7 +23768,7 @@ } ], "description": "Scenario-oriented BDD framework for PHP", - "homepage": "https://behat.org/", + "homepage": "http://behat.org/", "keywords": [ "Agile", "BDD", @@ -26315,36 +23785,31 @@ ], "support": { "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.22.0" + "source": "https://github.com/Behat/Behat/tree/v3.14.0" }, - "time": "2025-05-06T15:25:03+00:00" + "time": "2023-12-09T13:55:02+00:00" }, { "name": "behat/gherkin", - "version": "v4.13.0", + "version": "v4.9.0", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70" + "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/9294d26bb75f1718441b89f3a10e15ecb2c67f70", - "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4", + "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4", "shasum": "" }, "require": { - "composer-runtime-api": "^2.2", - "php": "8.1.* || 8.2.* || 8.3.* || 8.4.*" + "php": "~7.2|~8.0" }, "require-dev": { - "cucumber/gherkin-monorepo": "dev-gherkin-v32.1.1", - "friendsofphp/php-cs-fixer": "^3.65", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^2", - "phpstan/phpstan-phpunit": "^2", - "phpunit/phpunit": "^10.5", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + "cucumber/cucumber": "dev-gherkin-22.0.0", + "phpunit/phpunit": "~8|~9", + "symfony/yaml": "~3|~4|~5" }, "suggest": { "symfony/yaml": "If you want to parse features, represented in YAML files" @@ -26356,8 +23821,8 @@ } }, "autoload": { - "psr-4": { - "Behat\\Gherkin\\": "src/" + "psr-0": { + "Behat\\Gherkin": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -26368,11 +23833,11 @@ { "name": "Konstantin Kudryashov", "email": "ever.zet@gmail.com", - "homepage": "https://everzet.com" + "homepage": "http://everzet.com" } ], "description": "Gherkin DSL parser for PHP", - "homepage": "https://behat.org/", + "homepage": "http://behat.org/", "keywords": [ "BDD", "Behat", @@ -26383,22 +23848,22 @@ ], "support": { "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.13.0" + "source": "https://github.com/Behat/Gherkin/tree/v4.9.0" }, - "time": "2025-05-06T15:26:21+00:00" + "time": "2021-10-12T13:05:09+00:00" }, { "name": "behat/mink", - "version": "v1.12.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/minkphp/Mink.git", - "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a" + "reference": "d8527fdf8785aad38455fb426af457ab9937aece" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/7e4edec6c335937029cb3569ce7ef81182804d0a", - "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/d8527fdf8785aad38455fb426af457ab9937aece", + "reference": "d8527fdf8785aad38455fb426af457ab9937aece", "shasum": "" }, "require": { @@ -26449,154 +23914,58 @@ ], "support": { "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.12.0" + "source": "https://github.com/minkphp/Mink/tree/v1.11.0" }, - "time": "2024-10-30T18:48:14+00:00" + "time": "2023-12-09T11:23:23+00:00" }, { - "name": "composer/pcre", - "version": "3.3.2", + "name": "behat/transliterator", + "version": "v1.5.0", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + "url": "https://github.com/Behat/Transliterator.git", + "reference": "baac5873bac3749887d28ab68e2f74db3a4408af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af", + "reference": "baac5873bac3749887d28ab68e2f74db3a4408af", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<1.11.10" + "php": ">=7.2" }, "require-dev": { - "phpstan/phpstan": "^1.12 || ^2", - "phpstan/phpstan-strict-rules": "^1 || ^2", - "phpunit/phpunit": "^8 || ^9" + "chuyskywalker/rolling-curl": "^3.1", + "php-yaoi/php-yaoi": "^1.0", + "phpunit/phpunit": "^8.5.25 || ^9.5.19" }, "type": "library", "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - }, "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" + "Behat\\Transliterator\\": "src/Behat/Transliterator" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "Artistic-1.0" ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "description": "String transliterator", "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" + "i18n", + "slug", + "transliterator" ], "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.3.2" + "issues": "https://github.com/Behat/Transliterator/issues", + "source": "https://github.com/Behat/Transliterator/tree/v1.5.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": "2024-11-12T16:29:46+00:00" - }, - { - "name": "composer/xdebug-handler", - "version": "3.0.5", - "source": { - "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", - "shasum": "" - }, - "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" - }, - "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Composer\\XdebugHandler\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" - } - ], - "description": "Restarts a process without Xdebug.", - "keywords": [ - "Xdebug", - "performance" - ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" - }, - "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": "2024-05-06T16:37:16+00:00" + "time": "2022-03-30T09:27:43+00:00" }, { "name": "dekor/php-array-table", @@ -26649,35 +24018,35 @@ }, { "name": "drupal/upgrade_status", - "version": "4.3.7", + "version": "4.3.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/upgrade_status.git", - "reference": "4.3.7" + "reference": "4.3.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.7.zip", - "reference": "4.3.7", - "shasum": "062d43be89caf5f4b2a463fe9bd35ab155ad714d" + "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.2.zip", + "reference": "4.3.2", + "shasum": "4e8cbeb7632933105fb2e16c639a9ecf026bc141" }, "require": { "dekor/php-array-table": "^2.0", - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "mglaman/phpstan-drupal": "^1.2.11", "nikic/php-parser": "^4.0.0|^5.0.0", "phpstan/phpstan-deprecation-rules": "^1.0.0", - "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0", + "symfony/process": "^3.4|^4.0|^5.0|^6.0", "webflo/drupal-finder": "^1.2" }, "require-dev": { - "drush/drush": "^11|^12|^13" + "drush/drush": "^11|^12" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.3.7", - "datestamp": "1746203409", + "version": "4.3.2", + "datestamp": "1717069210", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -26695,8 +24064,28 @@ ], "authors": [ { - "name": "gábor hojtsy", + "name": "colan", + "homepage": "https://www.drupal.org/user/58704" + }, + { + "name": "Gábor Hojtsy", "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "herczogzoltan", + "homepage": "https://www.drupal.org/user/3528391" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" } ], "description": "Review Drupal major upgrade readiness of the environment and components of the site.", @@ -26707,25 +24096,25 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.3.7", + "version": "1.2.11", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "91cb3860d816316dd98503ef258bc386f5fc22b7" + "reference": "e624a4b64de5b91a0c56852635af2115e9a6e08c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/91cb3860d816316dd98503ef258bc386f5fc22b7", - "reference": "91cb3860d816316dd98503ef258bc386f5fc22b7", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/e624a4b64de5b91a0c56852635af2115e9a6e08c", + "reference": "e624a4b64de5b91a0c56852635af2115e9a6e08c", "shasum": "" }, "require": { - "php": "^8.1", - "phpstan/phpstan": "^1.12", + "php": "^7.4 || ^8.0", + "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", - "webflo/drupal-finder": "^1.3.1" + "webflo/drupal-finder": "^1.2" }, "require-dev": { "behat/mink": "^1.8", @@ -26746,12 +24135,6 @@ }, "type": "phpstan-extension", "extra": { - "phpstan": { - "includes": [ - "extension.neon", - "rules.neon" - ] - }, "branch-alias": { "dev-main": "1.0-dev" }, @@ -26762,14 +24145,20 @@ "tests/fixtures/drupal/libraries/{$name}": [ "type:drupal-library" ], - "tests/fixtures/drupal/themes/contrib/{$name}": [ - "type:drupal-theme" - ], "tests/fixtures/drupal/modules/contrib/{$name}": [ "type:drupal-module" ], "tests/fixtures/drupal/profiles/contrib/{$name}": [ "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" ] } }, @@ -26791,7 +24180,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.3.7" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.11" }, "funding": [ { @@ -26807,20 +24196,20 @@ "type": "tidelift" } ], - "time": "2025-04-15T16:10:17+00:00" + "time": "2024-05-10T17:22:10+00:00" }, { "name": "phpstan/phpstan", - "version": "1.12.25", + "version": "1.11.3", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "e310849a19e02b8bfcbb63147f495d8f872dd96f" + "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e310849a19e02b8bfcbb63147f495d8f872dd96f", - "reference": "e310849a19e02b8bfcbb63147f495d8f872dd96f", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5", + "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5", "shasum": "" }, "require": { @@ -26865,25 +24254,25 @@ "type": "github" } ], - "time": "2025-04-27T12:20:45+00:00" + "time": "2024-05-31T13:53:37+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "1.2.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82" + "reference": "fa8cce7720fa782899a0aa97b6a41225d1bb7b26" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82", - "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/fa8cce7720fa782899a0aa97b6a41225d1bb7b26", + "reference": "fa8cce7720fa782899a0aa97b6a41225d1bb7b26", "shasum": "" }, "require": { "php": "^7.2 || ^8.0", - "phpstan/phpstan": "^1.12" + "phpstan/phpstan": "^1.11" }, "require-dev": { "php-parallel-lint/php-parallel-lint": "^1.2", @@ -26910,22 +24299,22 @@ "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", "support": { "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1" + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.0" }, - "time": "2024-09-11T15:52:35+00:00" + "time": "2024-04-20T06:39:48+00:00" }, { "name": "symfony/config", - "version": "v6.4.14", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef" + "reference": "12e7e52515ce37191b193cf3365903c4f3951e35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/4e55e7e4ffddd343671ea972216d4509f46c22ef", - "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef", + "url": "https://api.github.com/repos/symfony/config/zipball/12e7e52515ce37191b193cf3365903c4f3951e35", + "reference": "12e7e52515ce37191b193cf3365903c4f3951e35", "shasum": "" }, "require": { @@ -26971,7 +24360,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v6.4.14" + "source": "https://github.com/symfony/config/tree/v6.4.8" }, "funding": [ { @@ -26987,20 +24376,85 @@ "type": "tidelift" } ], - "time": "2024-11-04T11:33:53+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { - "name": "symfony/translation", - "version": "v6.4.21", + "name": "symfony/css-selector", + "version": "v6.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c" + "url": "https://github.com/symfony/css-selector.git", + "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c", - "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4b61b02fe15db48e3687ce1c45ea385d1780fe08", + "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a", + "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a", "shasum": "" }, "require": { @@ -27066,7 +24520,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.21" + "source": "https://github.com/symfony/translation/tree/v6.4.8" }, "funding": [ { @@ -27082,7 +24536,7 @@ "type": "tidelift" } ], - "time": "2025-04-07T19:02:30+00:00" + "time": "2024-05-31T14:49:08+00:00" } ], "aliases": [ @@ -27095,14 +24549,14 @@ ], "minimum-stability": "dev", "stability-flags": { - "drupal/ckeditor_iframe": 10, + "drupal/auto_entitylabel": 10, "drupal/drutopia_collection": 20, "drupal/drutopia_core": 20, - "drupal/drutopia_organization": 20, "drupal/drutopia_site": 20, "drupal/empty_page": 20, "drupal/facets": 20, - "drupal/givebutter": 20, + "drupal/google_analytics": 20, + "drupal/inline_entity_form": 5, "drupal/menu_link_config": 15, "drupal/migration_helpers": 20, "drupal/notfoundpassthrough": 20, @@ -27114,12 +24568,11 @@ "drupal/social_post_twitter": 20, "drupal/subpathauto": 5, "drupal/tomselect": 20, - "drupal/workflow_buttons": 20, "drutopia/drutopia": 20 }, "prefer-stable": true, "prefer-lowest": false, - "platform": {}, - "platform-dev": {}, + "platform": [], + "platform-dev": [], "plugin-api-version": "2.6.0" } diff --git a/config/sync/autosave_form.settings.yml b/config/sync/autosave_form.settings.yml index 9c6abe9..15b8142 100644 --- a/config/sync/autosave_form.settings.yml +++ b/config/sync/autosave_form.settings.yml @@ -1,6 +1,5 @@ _core: default_config_hash: NX6_WyjygzZfQY-9SZq6_5fmh_KUK7L0XlOqaAXkRCQ -langcode: en interval: 60000 only_on_form_change: false active_on: diff --git a/config/sync/block.block.exposedformsearchpage_1.yml b/config/sync/block.block.exposedformsearchpage_1.yml index 6117e9c..9bb853c 100644 --- a/config/sync/block.block.exposedformsearchpage_1.yml +++ b/config/sync/block.block.exposedformsearchpage_1.yml @@ -5,14 +5,10 @@ dependencies: config: - views.view.search module: - - block_class - block_visibility_groups - views theme: - geofresco -third_party_settings: - block_class: - classes: is-hidden-mobile id: exposedformsearchpage_1 theme: geofresco region: header_search diff --git a/config/sync/block.block.geofresco_page_title.yml b/config/sync/block.block.geofresco_page_title.yml index 13cee8f..901cf9a 100644 --- a/config/sync/block.block.geofresco_page_title.yml +++ b/config/sync/block.block.geofresco_page_title.yml @@ -2,13 +2,8 @@ uuid: aeb3ab6f-f30b-48d1-85ab-97a6dfde8e3a langcode: en status: true dependencies: - module: - - block_class theme: - geofresco -third_party_settings: - block_class: - classes: column _core: default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM id: geofresco_page_title diff --git a/config/sync/block_class.settings.yml b/config/sync/block_class.settings.yml deleted file mode 100644 index 269925f..0000000 --- a/config/sync/block_class.settings.yml +++ /dev/null @@ -1,24 +0,0 @@ -_core: - default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0 -maxlength_block_class_field: 255 -field_type: multiple_textfields -default_case: lowercase -block_classes_stored: - - is-hidden-mobile - - column -enable_attributes: true -enable_auto_complete: true -qty_classes_per_block: 10 -items_per_page: 50 -enable_special_chars: false -qty_attributes_per_block: 10 -enable_id_replacement: true -weight_attributes: null -weight_class: null -weight_id: null -filter_html_clean_css_identifier: '' -maxlength_attributes: 255 -maxlength_id: 255 -attribute_keys_stored: '[]' -attribute_value_stored: '[]' -attributes_inline: '[]' diff --git a/config/sync/block_content.type.slide.yml b/config/sync/block_content.type.slide.yml index 29afbff..d1cfaf2 100644 --- a/config/sync/block_content.type.slide.yml +++ b/config/sync/block_content.type.slide.yml @@ -6,5 +6,5 @@ _core: default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw id: slide label: Slide -revision: true +revision: 1 description: '' diff --git a/config/sync/captcha.settings.yml b/config/sync/captcha.settings.yml index bd7904b..6ef7b7f 100644 --- a/config/sync/captcha.settings.yml +++ b/config/sync/captcha.settings.yml @@ -1,11 +1,11 @@ -_core: null -langcode: en +_core: + default_config_hash: QDFjOXYIYVwCPQYHY4wAx4DUqOEkNaZokIx6DGApR9I enable_globally: 0 enable_globally_on_admin_routes: false default_challenge: riddler/Riddler description: 'This question is to verify that you are a human visitor and to prevent automated spam.' title: CAPTCHA -administration_mode: false +administration_mode: true administration_mode_on_admin_routes: false whitelist_ips: '' wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct.' @@ -13,4 +13,3 @@ default_validation: 1 persistence: 1 enable_stats: false log_wrong_responses: true -default_config_hash: QDFjOXYIYVwCPQYHY4wAx4DUqOEkNaZokIx6DGApR9I diff --git a/config/sync/charts.settings.yml b/config/sync/charts.settings.yml deleted file mode 100644 index afcef16..0000000 --- a/config/sync/charts.settings.yml +++ /dev/null @@ -1,75 +0,0 @@ -_core: - default_config_hash: wZ5T1cqvSG3zUPxdtz_BgdBiNjgy1K1Al-L3iT7sPh8 -dependencies: { } -charts_default_settings: - library: '' - type: line - display: - title: '' - subtitle: '' - colors: - - '#006fb0' - - '#f07c33' - - '#342e9c' - - '#579b17' - - '#3f067a' - - '#cbde67' - - '#7643b6' - - '#738d00' - - '#c157c7' - - '#02dab1' - - '#ed56b4' - - '#d8d981' - - '#004695' - - '#736000' - - '#a5a5ff' - - '#833a00' - - '#ff9ee9' - - '#684507' - - '#fe4f85' - - '#5d0011' - - '#ffa67b' - - '#88005c' - - '#ff9b8f' - - '#85000f' - - '#ff7581' - color_changer: false - title_position: out - tooltips: true - tooltips_use_html: false - data_markers: false - data_labels: false - legend: false - legend_position: right - background: '' - three_dimensional: 0 - polar: 0 - dimensions: - width: '' - width_units: '%' - height: '' - height_units: '' - gauge: - max: '100' - min: '0' - green_from: '85' - green_to: '100' - yellow_from: '50' - yellow_to: '85' - red_from: '0' - red_to: '50' - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' -advanced: - debug: false - requirements: - cdn: true diff --git a/config/sync/ckeditorheight.settings.yml b/config/sync/ckeditorheight.settings.yml new file mode 100644 index 0000000..0a9b52d --- /dev/null +++ b/config/sync/ckeditorheight.settings.yml @@ -0,0 +1,6 @@ +_core: + default_config_hash: ocjcQr-U0K6oGgiak8JMZVD9LAKNesDbQ9nRfTsq5ks +offset: 1.0 +line_height: 1.5 +unit: em +disable_autogrow: false diff --git a/config/sync/comment_notify.settings.yml b/config/sync/comment_notify.settings.yml index 07551c0..9aeb214 100644 --- a/config/sync/comment_notify.settings.yml +++ b/config/sync/comment_notify.settings.yml @@ -1,6 +1,5 @@ _core: default_config_hash: y7oCzsZ-B0R-nyeSFO1f2h9BEChUQGSZT-3cqXd-sLE -langcode: en bundle_types: { } available_alerts: 1: true diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_links_access_filter.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_links_access_filter.yml new file mode 100644 index 0000000..00dddc4 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_links_access_filter.yml @@ -0,0 +1,11 @@ +uuid: 7d22051c-41f5-432d-9dd4-89e810796d7a +langcode: en +status: true +dependencies: + module: + - admin_toolbar_links_access_filter +id: config_sync.module.admin_toolbar_links_access_filter +snapshotSet: config_sync +extensionType: module +extensionName: admin_toolbar_links_access_filter +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml deleted file mode 100644 index 9d5d34b..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml +++ /dev/null @@ -1,34 +0,0 @@ -uuid: 0efe4cf0-2aff-4c18-a3ef-0f7fd8879cbb -langcode: en -status: true -dependencies: - module: - - block_class -id: config_sync.module.block_class -snapshotSet: config_sync -extensionType: module -extensionName: block_class -items: - - - collection: '' - name: block_class.settings - data: - block_classes_stored: { } - default_case: standard - enable_attributes: true - enable_auto_complete: true - enable_id_replacement: true - enable_special_chars: false - field_type: multiple_textfields - filter_html_clean_css_identifier: '' - items_per_page: 50 - qty_attributes_per_block: 10 - qty_classes_per_block: 10 - maxlength_attributes: 255 - maxlength_block_class_field: 255 - maxlength_id: 255 - weight_attributes: 0 - weight_class: 0 - weight_id: 0 - _core: - default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml b/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml deleted file mode 100644 index 20a070c..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml +++ /dev/null @@ -1,90 +0,0 @@ -uuid: 9e67a143-2ccc-4837-aaf4-9ebdb0889b7b -langcode: en -status: true -dependencies: - module: - - charts -id: config_sync.module.charts -snapshotSet: config_sync -extensionType: module -extensionName: charts -items: - - - collection: '' - name: charts.settings - data: - dependencies: { } - charts_default_settings: - library: '' - type: line - display: - title: '' - subtitle: '' - colors: - - '#006fb0' - - '#f07c33' - - '#342e9c' - - '#579b17' - - '#3f067a' - - '#cbde67' - - '#7643b6' - - '#738d00' - - '#c157c7' - - '#02dab1' - - '#ed56b4' - - '#d8d981' - - '#004695' - - '#736000' - - '#a5a5ff' - - '#833a00' - - '#ff9ee9' - - '#684507' - - '#fe4f85' - - '#5d0011' - - '#ffa67b' - - '#88005c' - - '#ff9b8f' - - '#85000f' - - '#ff7581' - color_changer: false - title_position: out - tooltips: true - tooltips_use_html: false - data_markers: false - data_labels: false - legend: false - legend_position: right - background: '' - three_dimensional: 0 - polar: 0 - dimensions: - width: '' - width_units: '%' - height: '' - height_units: '' - gauge: - max: '100' - min: '0' - green_from: '85' - green_to: '100' - yellow_from: '50' - yellow_to: '85' - red_from: '0' - red_to: '50' - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - advanced: - debug: false - requirements: - cdn: true - _core: - default_config_hash: wZ5T1cqvSG3zUPxdtz_BgdBiNjgy1K1Al-L3iT7sPh8 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml new file mode 100644 index 0000000..37a903c --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml @@ -0,0 +1,11 @@ +uuid: fea0c8df-8eb3-416d-85c5-6d33138ecd85 +langcode: en +status: true +dependencies: + module: + - ckeditor +id: config_sync.module.ckeditor +snapshotSet: config_sync +extensionType: module +extensionName: ckeditor +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditorheight.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditorheight.yml new file mode 100644 index 0000000..ab29164 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditorheight.yml @@ -0,0 +1,21 @@ +uuid: 33e8f083-bfe1-405c-bd32-53a7ca7b6891 +langcode: en +status: true +dependencies: + module: + - ckeditorheight +id: config_sync.module.ckeditorheight +snapshotSet: config_sync +extensionType: module +extensionName: ckeditorheight +items: + - + collection: '' + name: ckeditorheight.settings + data: + offset: 1 + line_height: 1.5 + unit: em + disable_autogrow: false + _core: + default_config_hash: ocjcQr-U0K6oGgiak8JMZVD9LAKNesDbQ9nRfTsq5ks diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.fakeobjects.yml b/config/sync/config_snapshot.snapshot.config_sync.module.fakeobjects.yml new file mode 100644 index 0000000..72e7efb --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.fakeobjects.yml @@ -0,0 +1,11 @@ +uuid: a0c90e3e-c767-43bf-b5f8-3e2b1c7e258a +langcode: en +status: true +dependencies: + module: + - fakeobjects +id: config_sync.module.fakeobjects +snapshotSet: config_sync +extensionType: module +extensionName: fakeobjects +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml b/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml index 2caa2f9..becad0e 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml @@ -8,57 +8,4 @@ id: config_sync.module.footnotes snapshotSet: config_sync extensionType: module extensionName: footnotes -items: - - - collection: '' - name: editor.editor.footnote - data: - status: true - dependencies: - config: - - filter.format.footnote - module: - - ckeditor5 - format: footnote - editor: ckeditor5 - settings: - toolbar: - items: - - bold - - italic - - link - image_upload: { } - _core: - default_config_hash: SyHxfjreOgdyYXaIXOlKvLazJjPl6X-6ywdJeSruOzg - - - collection: '' - name: filter.format.footnote - data: - status: true - dependencies: - module: - - footnotes - name: Footnote - format: footnote - filters: - filter_html: - id: filter_html - provider: filter - status: true - weight: -10 - settings: - allowed_html: '<br> <p> <strong> <em> <a href>' - filter_html_help: true - filter_html_nofollow: false - filter_footnotes: - id: filter_footnotes - provider: footnotes - status: false - weight: 0 - settings: - footnotes_collapse: false - footnotes_css: true - footnotes_dialog: false - footnotes_footer_disable: false - _core: - default_config_hash: SYAah-i4HbJnc3ZnKC9NmY4M0UAFYpfobYzxg0eMunM +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml b/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml deleted file mode 100644 index 21e8036..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml +++ /dev/null @@ -1,33 +0,0 @@ -uuid: d968c39b-76d9-4fde-87c2-98597304e1c0 -langcode: en -status: true -dependencies: - module: - - plausible -id: config_sync.module.plausible -snapshotSet: config_sync -extensionType: module -extensionName: plausible -items: - - - collection: '' - name: plausible.settings - data: - script: - domain: '' - api: '' - src: 'https://plausible.io/js/plausible.js' - dashboard: - shared_link: '' - visibility: - enable: true - admin_route_mode: 0 - request_path_mode: 0 - request_path_pages: '' - user_role_mode: 0 - user_role_roles: { } - events: - 403: false - 404: false - _core: - default_config_hash: 7ITcwwShhS7SG3SJdIqRQkzXEcEPNejdEnbeDVDeDY0 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml b/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml index b55e7e7..55054ba 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml @@ -8,140 +8,4 @@ id: config_sync.module.tour snapshotSet: config_sync extensionType: module extensionName: tour -items: - - - collection: '' - name: tour.tour.block-layout - data: - langcode: en - status: true - dependencies: - module: - - block - 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.' - _core: - default_config_hash: pG6QAggTrD7RQWb79PT3NH48GSvTiePly_l53f3OENs - - - collection: '' - name: tour.tour.views-ui - data: - langcode: en - status: true - dependencies: - module: - - views_ui - 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 <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> 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 <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.' - 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.' - _core: - default_config_hash: XIYL1KF7ND2XQRa5AxvEcp8vgCN2kUGiuBNhCgxrPME +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.visitors.yml b/config/sync/config_snapshot.snapshot.config_sync.module.visitors.yml deleted file mode 100644 index dfb573e..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.visitors.yml +++ /dev/null @@ -1,8542 +0,0 @@ -uuid: b1593280-86e7-4d02-8c68-f115cbf12a40 -langcode: en -status: true -dependencies: - module: - - visitors -id: config_sync.module.visitors -snapshotSet: config_sync -extensionType: module -extensionName: visitors -items: - - - collection: '' - name: views.view.visitors - data: - langcode: en - status: true - dependencies: - module: - - charts - - charts_chartjs - - visitors - id: visitors - label: Visitors - module: views - description: 'Visitors web analytics reports.' - tag: '' - base_table: visitors - base_field: '' - display: - default: - id: default - display_title: Default - display_plugin: default - position: 0 - display_options: - title: '' - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 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: none - options: { } - empty: { } - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: { } - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - route: route - visitor_id: visitor_id - default: visitor_id - info: - route: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - 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: { } - use_ajax: true - group_by: true - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_engine_pie: - id: browser_engine_pie - display_title: 'Engine Pie' - display_plugin: embed - position: 8 - display_options: - title: 'Browser Engines' - fields: - config_browser_engine: - id: config_browser_engine - table: visitors - field: config_browser_engine - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Engine - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: pie - fields: - label: config_browser_engine - stacking: false - data_providers: - config_browser_engine: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#000000' - weight: 2 - display: - title: 'Browser Engines' - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '60' - width_units: '' - height: '60' - height_units: '%' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: browser_engine_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_engine_table: - id: browser_engine_table - display_title: 'Engine Table' - display_plugin: embed - position: 8 - display_options: - title: 'Browser Engines' - fields: - config_browser_engine: - id: config_browser_engine - table: visitors - field: config_browser_engine - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Engine - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: browser_engine_pie - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_name_table: - id: browser_name_table - display_title: 'Browser Name' - display_plugin: embed - position: 6 - display_options: - title: Browser - fields: - config_browser_name: - id: config_browser_name - table: visitors - field: config_browser_name - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_browser - label: Browser - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Browser version' - empty: false - display_id: browser_version_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_version_table: - id: browser_version_table - display_title: 'Browser Version' - display_plugin: embed - position: 7 - display_options: - title: 'Browser Version' - fields: - config_browser_name: - id: config_browser_name - table: visitors - field: config_browser_name - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_browser - label: 'Browser 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 - icon: true - config_browser_version: - id: config_browser_version - table: visitors - field: config_browser_version - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Browser Version' - exclude: false - alter: - alter_text: true - text: '{{ config_browser_name }} {{ config_browser_version }} ' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Browser - empty: false - display_id: browser_name_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - continent_pie: - id: continent_pie - display_title: 'Continent Pie' - display_plugin: embed - position: 1 - display_options: - title: Continent - fields: - location_continent: - id: location_continent - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_continent - label: Continent - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: pie - fields: - label: location_continent - stacking: false - data_providers: - location_continent: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#000000' - weight: 2 - display: - title: Continent - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '60' - width_units: '%' - height: '60' - height_units: '%' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: continent_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - continent_table: - id: continent_table - display_title: 'Continent Table' - display_plugin: embed - position: 1 - display_options: - title: Continent - fields: - location_continent_1: - id: location_continent_1 - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_continent - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_continent_1|lower }}' - 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 - abbreviation: true - location_continent: - id: location_continent - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_continent - label: Continent - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/location/continent/{{ location_continent_1 }}' - 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 - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: continent_pie - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - country_table: - id: country_table - display_title: Country - display_plugin: embed - position: 2 - display_options: - title: Country - fields: - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_1|lower }}' - make_link: false - path: 'internal:/visitors/location/region/{{ location_country_1 }}' - 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 - icon: false - text: false - abbreviation: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Country - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/location/country/{{location_country_1}}' - 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 - icon: true - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - arguments: - location_continent: - id: location_continent - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - title: false - fields: false - arguments: false - filters: true - filter_groups: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - daily_column: - id: daily_column - display_title: 'Daily Column' - display_plugin: embed - position: 26 - display_options: - fields: - visitors_day: - id: visitors_day - table: visitors - field: visitors_day - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day - label: Day - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day - stacking: false - data_providers: - visitors_day: - enabled: false - color: '#006fb0' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: Daily - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - day_of_month_column: - id: day_of_month_column - display_title: 'Day of Month Column' - display_plugin: embed - position: 28 - display_options: - fields: - visitors_day_of_month: - id: visitors_day_of_month - table: visitors - field: visitors_day_of_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_month - label: 'Day of Month' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day_of_month - stacking: false - data_providers: - visitors_day_of_month: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: 'Day of Month' - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: day_of_month_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - day_of_month_table: - id: day_of_month_table - display_title: 'Day of Month Table' - display_plugin: embed - position: 28 - display_options: - title: 'Day of Month' - fields: - visitors_day_of_month: - id: visitors_day_of_month - table: visitors - field: visitors_day_of_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_month - label: 'Day of Month' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_day_of_month: visitors_day_of_month - visitor_id: visitor_id - default: '-1' - info: - visitors_day_of_month: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: 'Day of Month' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: day_of_month_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - day_of_week_column: - id: day_of_week_column - display_title: 'Day of Week Column' - display_plugin: embed - position: 30 - display_options: - fields: - visitors_day_of_week: - id: visitors_day_of_week - table: visitors - field: visitors_day_of_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_week - label: 'Day of Week' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day_of_week - stacking: false - data_providers: - visitors_day_of_week: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: 'Day of Week' - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: day_of_week_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - day_of_week_table: - id: day_of_week_table - display_title: 'Day of Week Table' - display_plugin: embed - position: 30 - display_options: - title: 'Day of Week' - fields: - visitors_day_of_week: - id: visitors_day_of_week - table: visitors - field: visitors_day_of_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_week - label: 'Day of Week' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_day_of_week: visitors_day_of_week - visitor_id: visitor_id - default: '-1' - info: - visitors_day_of_week: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: 'Day of Week' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: day_of_week_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_brand_table: - id: device_brand_table - display_title: 'Device Brand' - display_plugin: embed - position: 10 - display_options: - title: 'Device Brand' - fields: - config_device_brand: - id: config_device_brand - table: visitors - field: config_device_brand - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_brand - label: Brand - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_config_table: - id: device_config_table - display_title: Configuration - display_plugin: embed - position: 13 - display_options: - title: Configuration - fields: - config_os: - id: config_os - table: visitors - field: config_os - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_operating_system - label: 'Operating System' - 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 - icon: false - config_browser_name: - id: config_browser_name - table: visitors - field: config_browser_name - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_browser - label: 'Browser 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 - icon: false - config_resolution: - id: config_resolution - table: visitors - field: config_resolution - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Configurations - exclude: false - alter: - alter_text: true - text: '{{ config_os }} / {{ config_browser_name }} / {{ config_resolution }} ' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Resolution - empty: false - display_id: device_resolution_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_model_table: - id: device_model_table - display_title: 'Device Model' - display_plugin: embed - position: 11 - display_options: - title: Model - fields: - config_device_brand: - id: config_device_brand - table: visitors - field: config_device_brand - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_brand - label: 'Device brand' - exclude: true - alter: - alter_text: true - text: '{{ config_device_brand }} - ' - 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 - icon: false - config_device_model: - id: config_device_model - table: visitors - field: config_device_model - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Device model' - 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: Generic - hide_empty: false - empty_zero: false - hide_alter_empty: true - config_device_type: - id: config_device_type - table: visitors - field: config_device_type - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_device - label: 'Device model' - exclude: false - alter: - alter_text: true - text: '{{ config_device_brand }}{{ config_device_model }} {{ config_device_type }} ' - 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 - icon: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_resolution_table: - id: device_resolution_table - display_title: Resolution - display_plugin: embed - position: 12 - display_options: - title: Resolution - fields: - config_resolution: - id: config_resolution - table: visitors - field: config_resolution - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Resolution - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Configurations - empty: false - display_id: device_config_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_type_table: - id: device_type_table - display_title: 'Device Type' - display_plugin: embed - position: 9 - display_options: - title: 'Device Type' - fields: - config_device_type: - id: config_device_type - table: visitors - field: config_device_type - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_device - label: Device - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - distinct_countries_list: - id: distinct_countries_list - display_title: 'Distinct Countries' - display_plugin: embed - position: 3 - display_options: - title: 'Distinct Countries' - fields: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: visitors_country - label: '' - exclude: false - alter: - alter_text: false - text: '{{ location_country }} distinct countries' - 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 - icon: false - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: true - format_plural_string: !!binary MSBkaXN0aW5jdCBjb3VudHJ5A0Bjb3VudCBkaXN0aW5jdCBjb3VudHJpZXM= - prefix: '' - suffix: '' - sorts: { } - style: - type: default - options: - grouping: { } - row_class: '' - default_row_class: true - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - sorts: false - filters: true - filter_groups: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - hour_column: - id: hour_column - display_title: 'Hour Column' - display_plugin: embed - position: 24 - display_options: - fields: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_hour - stacking: false - data_providers: - visitors_hour: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: 'Your time' - title_position: top - subtitle: '' - data_labels: false - data_markers: false - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: false - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: hour_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - hour_table: - id: hour_table - display_title: 'Hour Table' - display_plugin: embed - position: 24 - display_options: - title: 'Your time' - fields: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_hour: visitors_hour - visitor_id: visitor_id - default: '-1' - info: - visitors_hour: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: 'Your time' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: hour_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - language_code_table: - id: language_code_table - display_title: 'Language Code' - display_plugin: embed - position: 5 - display_options: - title: 'Language Code' - fields: - language: - id: language - table: visitors - field: language - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_language - label: Language - 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 - code: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - filters: true - filter_groups: true - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Language - empty: false - display_id: language_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - language_table: - id: language_table - display_title: Language - display_plugin: embed - position: 4 - display_options: - title: Language - fields: - language: - id: language - table: visitors - field: language - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Language - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - filters: true - filter_groups: true - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Language Code' - empty: false - display_id: language_code_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - local_hour_column: - id: local_hour_column - display_title: 'Local Column' - display_plugin: embed - position: 22 - display_options: - fields: - visitor_localtime: - id: visitor_localtime - table: visitors - field: visitor_localtime - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_local_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitor_localtime - stacking: false - data_providers: - visitor_localtime: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: "Visitor's time" - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '0' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: local_hour_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - local_hour_table: - id: local_hour_table - display_title: 'Local Table' - display_plugin: embed - position: 22 - display_options: - title: "Visitor's time" - fields: - visitor_localtime: - id: visitor_localtime - table: visitors - field: visitor_localtime - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_local_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitor_localtime: visitor_localtime - visitor_id: visitor_id - default: '-1' - info: - visitor_localtime: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: "Visitor's time" - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: local_hour_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - monthly_column: - id: monthly_column - display_title: 'Monthly Column' - display_plugin: embed - position: 26 - display_options: - fields: - visitors_month: - id: visitors_month - table: visitors - field: visitors_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_month - label: Month - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_month - stacking: false - data_providers: - visitors_month: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: Monthly - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: monthly_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - monthly_table: - id: monthly_table - display_title: 'Monthly Table' - display_plugin: embed - position: 26 - display_options: - title: Monthly - fields: - visitors_month: - id: visitors_month - table: visitors - field: visitors_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_month - label: Month - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_month: visitors_month - visitor_id: visitor_id - default: '-1' - info: - visitors_month: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: Monthly - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: monthly_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - os_family_table: - id: os_family_table - display_title: 'OS Family' - display_plugin: embed - position: 14 - display_options: - title: 'OS Family' - fields: - config_os: - id: config_os - table: visitors - field: config_os - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_operating_system - label: 'Operating System families' - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Operating System versions' - empty: false - display_id: os_version_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - os_version_table: - id: os_version_table - display_title: 'OS Version' - display_plugin: embed - position: 15 - display_options: - title: 'OS Version' - fields: - config_os_version: - id: config_os_version - table: visitors - field: config_os_version - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'OS version' - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - config_os: - id: config_os - table: visitors - field: config_os - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_operating_system - label: 'Operating System' - exclude: false - alter: - alter_text: true - text: '{{ config_os }} {{ config_os_version }}' - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Operating System families' - empty: false - display_id: os_family_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - performance_daily_column: - id: performance_daily_column - display_title: 'Performance Daily' - display_plugin: embed - position: 21 - display_options: - fields: - network: - id: network - table: visitors_performance - field: network - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Network - 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: '' - server: - id: server - table: visitors_performance - field: server - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Server - 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: '' - transfer: - id: transfer - table: visitors_performance - field: transfer - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Transfer - 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: '' - dom_processing: - id: dom_processing - table: visitors_performance - field: dom_processing - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Processing' - 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: '' - dom_complete: - id: dom_complete - table: visitors_performance - field: dom_complete - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Complete' - 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: '' - on_load: - id: on_load - table: visitors_performance - field: on_load - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'On Load' - 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: '' - visitors_day: - id: visitors_day - table: visitors - field: visitors_day - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day - label: Day - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day - stacking: true - data_providers: - network: - enabled: true - color: '#0277bd' - weight: 7 - server: - enabled: true - color: '#ff8f00' - weight: 7 - transfer: - enabled: true - color: '#ad1457' - weight: 7 - dom_processing: - enabled: true - color: '#6a1b9a' - weight: 7 - dom_complete: - enabled: true - color: '#558b2f' - weight: 7 - on_load: - enabled: true - color: '#00838f' - weight: 7 - visitors_day: - enabled: false - color: '#7643b6' - weight: 7 - display: - title: '' - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - relationships: false - fields: false - sorts: false - relationships: - visitors_performance: - id: visitors_performance - table: visitors - field: visitors_performance - relationship: none - group_type: group - admin_label: 'Visitor performance' - plugin_id: standard - required: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - performance_hourly_column: - id: performance_hourly_column - display_title: 'Performance Hourly' - display_plugin: embed - position: 21 - display_options: - fields: - network: - id: network - table: visitors_performance - field: network - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Network - 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: '' - server: - id: server - table: visitors_performance - field: server - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Server - 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: '' - transfer: - id: transfer - table: visitors_performance - field: transfer - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Transfer - 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: '' - dom_processing: - id: dom_processing - table: visitors_performance - field: dom_processing - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Processing' - 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: '' - dom_complete: - id: dom_complete - table: visitors_performance - field: dom_complete - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Complete' - 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: '' - on_load: - id: on_load - table: visitors_performance - field: on_load - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'On Load' - 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: '' - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_hour - label: Hour - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_hour - stacking: true - data_providers: - network: - enabled: true - color: '#0277bd' - weight: 7 - server: - enabled: true - color: '#ff8f00' - weight: 7 - transfer: - enabled: true - color: '#ad1457' - weight: 7 - dom_processing: - enabled: true - color: '#6a1b9a' - weight: 7 - dom_complete: - enabled: true - color: '#558b2f' - weight: 7 - on_load: - enabled: true - color: '#00838f' - weight: 7 - visitors_hour: - enabled: false - color: '#7643b6' - weight: 7 - display: - title: '' - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - relationships: false - fields: false - sorts: false - relationships: - visitors_performance: - id: visitors_performance - table: visitors - field: visitors_performance - relationship: none - group_type: group - admin_label: 'Visitor performance' - plugin_id: standard - required: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - performance_weekly_column: - id: performance_weekly_column - display_title: 'Performance Weekly' - display_plugin: embed - position: 21 - display_options: - fields: - network: - id: network - table: visitors_performance - field: network - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Network - 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: '' - server: - id: server - table: visitors_performance - field: server - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Server - 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: '' - transfer: - id: transfer - table: visitors_performance - field: transfer - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: Transfer - 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: '' - dom_processing: - id: dom_processing - table: visitors_performance - field: dom_processing - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Processing' - 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: '' - dom_complete: - id: dom_complete - table: visitors_performance - field: dom_complete - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Complete' - 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: '' - on_load: - id: on_load - table: visitors_performance - field: on_load - relationship: visitors_performance - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'On Load' - 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: '' - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_week - label: Week - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_week - stacking: true - data_providers: - network: - enabled: true - color: '#0277bd' - weight: 7 - server: - enabled: true - color: '#ff8f00' - weight: 7 - transfer: - enabled: true - color: '#ad1457' - weight: 7 - dom_processing: - enabled: true - color: '#6a1b9a' - weight: 7 - dom_complete: - enabled: true - color: '#558b2f' - weight: 7 - on_load: - enabled: true - color: '#00838f' - weight: 7 - visitors_week: - enabled: false - color: '#7643b6' - weight: 7 - display: - title: '' - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - relationships: false - fields: false - sorts: false - relationships: - visitors_performance: - id: visitors_performance - table: visitors - field: visitors_performance - relationship: none - group_type: group - admin_label: 'Visitor performance' - plugin_id: standard - required: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - recent_view_table: - id: recent_view_table - display_title: 'Recent views' - display_plugin: embed - position: 19 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors 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 - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - visitors_url: - id: visitors_url - table: visitors - field: visitors_url - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: URL - 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 - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - 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: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - 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 - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_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: false - pager: - type: full - options: - offset: 0 - items_per_page: 10 - 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 - sorts: { } - arguments: - route: - id: route - table: visitors - field: route - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - visitors_ip: - id: visitors_ip - table: visitors - field: visitors_ip - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: upper - path_case: none - transform_dash: false - break_phrase: false - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: visitors_path_op - label: Path - description: '' - use_operator: false - operator: visitors_path_op - operator_limit_selection: false - operator_list: { } - identifier: visitors_path - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '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: { } - filter_groups: - operator: AND - groups: - 1: AND - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_id: visitors_id - visitors_url: visitors_url - visitors_date_time: visitors_date_time - visitor_id: visitor_id - nothing: nothing - default: visitors_date_time - info: - visitors_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_url: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_date_time: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: false - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - nothing: - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: '' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - group_by: false - style: false - row: false - relationships: false - fields: false - sorts: false - arguments: false - filters: false - filter_groups: false - header: false - relationships: { } - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - referrer_table: - id: referrer_table - display_title: 'Referrer views' - display_plugin: embed - position: 19 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors 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 - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - visitors_referer: - id: visitors_referer - table: visitors - field: visitors_referer - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Referrer - 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: '(Direct Entry)' - hide_empty: false - empty_zero: false - hide_alter_empty: true - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - 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: fallback - custom_date_format: '' - timezone: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - 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 - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_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: false - pager: - type: full - options: - offset: 0 - items_per_page: 10 - 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 - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: default - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: visitors_path - default_argument_options: - pop: 1 - route: 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - pager: false - group_by: false - relationships: false - fields: false - sorts: false - arguments: false - header: false - relationships: { } - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - top_host_table: - id: top_host_table - display_title: 'Top Host' - display_plugin: embed - position: 18 - display_options: - fields: - visitors_ip: - id: visitors_ip - table: visitors - field: visitors_ip - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Host - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/host/{{ visitors_ip }}' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - fields: false - header: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - top_path_table: - id: top_path_table - display_title: 'Top Path' - display_plugin: embed - position: 16 - display_options: - title: Path - fields: - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Path - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - defaults: - title: false - fields: false - sorts: false - header: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - top_route_table: - id: top_route_table - display_title: 'Top Route' - display_plugin: embed - position: 17 - display_options: - fields: - route: - id: route - table: visitors - field: route - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Route - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/route/{{ route }}' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - route: - id: route - table: visitors - field: route - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: route_op - label: Route - description: '' - use_operator: false - operator: route_op - operator_limit_selection: false - operator_list: { } - identifier: route - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '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: { } - filter_groups: - operator: AND - groups: - 1: AND - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - route: route - visitor_id: visitor_id - default: visitor_id - info: - route: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: '' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - style: false - row: false - fields: false - sorts: false - filters: false - filter_groups: false - header: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - weekly_column: - id: weekly_column - display_title: 'Weekly Column' - display_plugin: embed - position: 26 - display_options: - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_week - label: Week - 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: none - options: - offset: 0 - sorts: { } - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_week - stacking: false - data_providers: - visitor_id: - enabled: true - color: '#0277bd' - weight: -1 - visitors_week: - enabled: false - color: '#0277bd' - weight: -2 - display: - title: Weekly - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - weekly_table: - id: weekly_table - display_title: 'Weekly Table' - display_plugin: embed - position: 26 - display_options: - fields: - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_week - label: Week - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitor_id: visitor_id - visitors_week: visitors_week - default: '-1' - info: - visitor_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_week: - 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 - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - _core: - default_config_hash: bz_czAL179TZlsG0i7NIgro4xD5_VVSavU-mGA5PPNY - - - collection: '' - name: visitors.config - data: - flush_log_timer: 0 - bot_retention_log: 0 - items_per_page: 10 - theme: admin - disable_tracking: false - status_codes_disabled: { } - domain_mode: 0 - track: - userid: true - counter: - enabled: true - entity_types: - - node - display_max_age: 3600 - privacy: - disablecookies: false - visibility: - request_path_mode: 0 - request_path_pages: |- - /admin - /admin/* - /batch - /node/add* - /node/*/* - /user/*/* - user_role_mode: 0 - user_role_roles: { } - user_account_mode: 1 - exclude_user1: false - codesnippet: - before: '' - after: '' - performance: false - script_type: minified - _core: - default_config_hash: 3TMRvOFlA3eT_Vk11OHppz1qwBLFyZt4OcA4mFniMfE diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml b/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml deleted file mode 100644 index 0b54404..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml +++ /dev/null @@ -1,1724 +0,0 @@ -uuid: 57d44644-2760-4239-926d-829cb5e3d2bd -langcode: en -status: true -dependencies: - module: - - visitors_geoip -id: config_sync.module.visitors_geoip -snapshotSet: config_sync -extensionType: module -extensionName: visitors_geoip -items: - - - collection: '' - name: views.view.visitors_geoip - data: - langcode: en - status: true - dependencies: - module: - - visitors - enforced: - module: - - visitors_geoip - id: visitors_geoip - label: 'Visitors GeoIP' - module: views - description: 'Region and City location reports.' - tag: '' - base_table: visitors - base_field: '' - display: - default: - id: default - display_title: Default - display_plugin: default - position: 0 - display_options: - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 0 - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - 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: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: { } - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - location_region_1: location_region_1 - location_country_2: location_country_2 - location_country: location_country - location_region: location_region - location_country_1: location_country_1 - visitor_id: visitor_id - default: visitor_id - info: - location_region_1: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_country_2: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_country: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_region: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_country_1: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - 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: { } - group_by: true - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - city_table: - id: city_table - display_title: City - display_plugin: embed - position: 3 - display_options: - fields: - location_country_2: - id: location_country_2 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_2|lower }}' - 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 - icon: false - text: false - abbreviation: true - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Region url' - 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: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_city_1: - id: location_city_1 - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'City url' - 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: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_city: - id: location_city - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: City - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Country - 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 - icon: true - text: false - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: City - exclude: false - alter: - alter_text: true - text: '{{ location_country }} {{ location_city }}, {{ location_country_1 }}' - make_link: true - path: 'internal:/visitors/location/city/{{ location_country_2 }}/{{ location_region }}/{{ location_city_1 }}' - 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 - icon: false - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 0 - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - fields: false - arguments: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - recent_view_table: - id: recent_view_table - display_title: 'Recent Views' - display_plugin: embed - position: 3 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors 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 - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - visitors_url: - id: visitors_url - table: visitors - field: visitors_url - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: URL - 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 - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - 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: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - 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 - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_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: false - pager: - type: full - options: - offset: 0 - items_per_page: 10 - 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 - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: lower - path_case: none - transform_dash: false - break_phrase: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_city: - id: location_city - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: visitors_path_op - label: Path - description: '' - use_operator: false - operator: visitors_path_op - operator_limit_selection: false - operator_list: { } - identifier: visitors_path - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '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: { } - filter_groups: - operator: AND - groups: - 1: AND - defaults: - pager: false - group_by: false - fields: false - sorts: false - arguments: false - filters: false - filter_groups: false - header: false - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - region_table: - id: region_table - display_title: Region - display_plugin: embed - position: 2 - display_options: - fields: - location_region_1: - id: location_region_1 - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Region link' - 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: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country_2: - id: location_country_2 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_2|lower }}' - make_link: false - path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region }}' - 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 - icon: false - text: false - abbreviation: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Flag - 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 - icon: true - text: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Region - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Region - exclude: false - alter: - alter_text: true - text: '{{location_country }} {{ location_region }}, {{ location_country_1 }} ' - make_link: true - path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region_1 }}' - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: false - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 0 - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - fields: false - arguments: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - _core: - default_config_hash: xSLp7qH6ygL6WYOeKvgeihL8VlZYZnZFbRsvYGLGsGk - - - collection: '' - name: visitors_geoip.settings - data: - geoip_path: ../ - license: '' - _core: - default_config_hash: O9-sVp7oOgWfsRZB65TyOT-R2o4IJBha_ud5Ar9oOtw diff --git a/config/sync/core.entity_view_display.node.article.card.yml b/config/sync/core.entity_view_display.node.article.card.yml index 33858d5..353e7ff 100644 --- a/config/sync/core.entity_view_display.node.article.card.yml +++ b/config/sync/core.entity_view_display.node.article.card.yml @@ -20,7 +20,7 @@ dependencies: - field.field.node.article.field_topics - field.field.node.article.field_upload - node.type.article - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - datetime - ds @@ -120,11 +120,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: content image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content field_publication_date: diff --git a/config/sync/core.entity_view_display.node.article.rss.yml b/config/sync/core.entity_view_display.node.article.rss.yml index cc2a5d3..d9f9840 100644 --- a/config/sync/core.entity_view_display.node.article.rss.yml +++ b/config/sync/core.entity_view_display.node.article.rss.yml @@ -19,7 +19,6 @@ dependencies: - field.field.node.article.field_tags - field.field.node.article.field_topics - field.field.node.article.field_upload - - image.style.drutopia_wide_large - node.type.article module: - ds @@ -35,7 +34,6 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' classes: layout_class: { } ds_content: { } @@ -45,12 +43,25 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' + label: '' regions: ds_content: - - field_summary - field_media_image + - node_title + - field_summary - field_topics - links + - geo_citation + fields: + node_title: + plugin_id: node_title + weight: 1 + label: hidden + formatter: default + settings: + link: true + wrapper: h2 + class: '' _core: default_config_hash: qkZsE06xoZ42p5C0rjPL_VqIm82SI6KuwaQJwHEycTg id: node.article.rss @@ -60,33 +71,38 @@ mode: rss content: field_media_image: type: media_thumbnail - label: hidden + label: above settings: image_link: '' - image_style: drutopia_wide_large + image_style: '' image_loading: - attribute: eager + attribute: lazy third_party_settings: { } - weight: 1 + weight: 0 region: ds_content field_summary: type: text_default label: hidden settings: { } third_party_settings: { } - weight: 0 + weight: 2 region: ds_content field_topics: type: entity_reference_rss_category label: inline settings: { } third_party_settings: { } - weight: 2 + weight: 3 + region: ds_content + geo_citation: + settings: { } + third_party_settings: { } + weight: 90 region: ds_content links: settings: { } third_party_settings: { } - weight: 3 + weight: 4 region: ds_content hidden: body: true @@ -107,6 +123,4 @@ hidden: field_tags: true field_upload: true field_visions_models: true - footnotes_group: true - geo_citation: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.article.teaser.yml b/config/sync/core.entity_view_display.node.article.teaser.yml index ee01e0e..56e0961 100644 --- a/config/sync/core.entity_view_display.node.article.teaser.yml +++ b/config/sync/core.entity_view_display.node.article.teaser.yml @@ -34,7 +34,6 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: - label: '' classes: layout_class: { } left: { } @@ -46,9 +45,11 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' + label: '' regions: left: - field_media_image + - geo_citation right: - node_post_date - node_title @@ -111,6 +112,11 @@ content: third_party_settings: { } weight: 5 region: right + geo_citation: + settings: { } + third_party_settings: { } + weight: 90 + region: left hidden: body: true comment: true @@ -129,7 +135,5 @@ hidden: field_tags: true field_upload: true field_visions_models: true - footnotes_group: true - geo_citation: true links: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.blog.card.yml b/config/sync/core.entity_view_display.node.blog.card.yml index b4b02ab..a1ad24b 100644 --- a/config/sync/core.entity_view_display.node.blog.card.yml +++ b/config/sync/core.entity_view_display.node.blog.card.yml @@ -17,7 +17,7 @@ dependencies: - field.field.node.blog.field_topics - field.field.node.blog.field_upload - node.type.blog - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - ds - field_group @@ -114,11 +114,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: '' image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content hidden: diff --git a/config/sync/core.entity_view_display.node.blog.default.yml b/config/sync/core.entity_view_display.node.blog.default.yml index 2d66a33..9e1deee 100644 --- a/config/sync/core.entity_view_display.node.blog.default.yml +++ b/config/sync/core.entity_view_display.node.blog.default.yml @@ -8,7 +8,6 @@ dependencies: - field.field.node.blog.field_authors - field.field.node.blog.field_body_paragraph - field.field.node.blog.field_image - - field.field.node.blog.field_media_image - field.field.node.blog.field_meta_tags - field.field.node.blog.field_publication_date - field.field.node.blog.field_summary @@ -20,7 +19,6 @@ dependencies: - datetime - ds - file - - text - user third_party_settings: ds: @@ -30,22 +28,16 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' classes: layout_class: { } - ds_content: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - regions: - ds_content: - - field_authors - - body - - field_upload - - field_publication_date + label: '' + regions: { } _core: default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM id: node.blog.default @@ -53,40 +45,27 @@ targetEntityType: node bundle: blog mode: default content: - body: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 1 - region: ds_content - field_authors: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 0 - region: ds_content field_publication_date: type: datetime_default - label: hidden + label: above settings: timezone_override: '' format_type: medium third_party_settings: { } - weight: 3 - region: ds_content + weight: 2 + region: content field_upload: type: file_default - label: hidden + label: above settings: use_description_as_link_text: true third_party_settings: { } - weight: 2 - region: ds_content + weight: 1 + region: content hidden: + body: true comment: true + field_authors: true field_body_paragraph: true field_image: true field_media_image: true @@ -94,6 +73,5 @@ hidden: field_summary: true field_tags: true field_topics: true - footnotes_group: true links: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.blog.rss.yml b/config/sync/core.entity_view_display.node.blog.rss.yml deleted file mode 100644 index 333c578..0000000 --- a/config/sync/core.entity_view_display.node.blog.rss.yml +++ /dev/null @@ -1,99 +0,0 @@ -uuid: 8e99bb76-debd-4372-9416-cd97dfc4ed13 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.rss - - field.field.node.blog.body - - field.field.node.blog.comment - - field.field.node.blog.field_authors - - field.field.node.blog.field_body_paragraph - - field.field.node.blog.field_image - - field.field.node.blog.field_media_image - - field.field.node.blog.field_meta_tags - - field.field.node.blog.field_publication_date - - field.field.node.blog.field_summary - - field.field.node.blog.field_tags - - field.field.node.blog.field_topics - - field.field.node.blog.field_upload - - node.type.blog - module: - - datetime - - ds - - taxonomy - - text - - user -third_party_settings: - ds: - layout: - id: ds_1col - library: null - disable_css: false - entity_classes: all_classes - settings: - label: '' - classes: - layout_class: { } - ds_content: { } - wrappers: - ds_content: div - outer_wrapper: div - attributes: '' - link_attribute: '' - link_custom: '' - regions: - ds_content: - - field_publication_date - - field_authors - - field_summary - - field_topics -_core: - default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM -id: node.blog.rss -targetEntityType: node -bundle: blog -mode: rss -content: - field_authors: - type: entity_reference_label - label: inline - settings: - link: true - third_party_settings: { } - weight: 1 - region: ds_content - field_publication_date: - type: datetime_default - label: hidden - settings: - timezone_override: '' - format_type: medium - third_party_settings: { } - weight: 0 - region: ds_content - field_summary: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 2 - region: ds_content - field_topics: - type: entity_reference_rss_category - label: inline - settings: { } - third_party_settings: { } - weight: 3 - region: ds_content -hidden: - body: true - comment: true - field_body_paragraph: true - field_image: true - field_media_image: true - field_meta_tags: true - field_tags: true - field_upload: true - footnotes_group: true - links: true - search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.collection.card.yml b/config/sync/core.entity_view_display.node.collection.card.yml index 2808ef9..1880059 100644 --- a/config/sync/core.entity_view_display.node.collection.card.yml +++ b/config/sync/core.entity_view_display.node.collection.card.yml @@ -18,7 +18,7 @@ dependencies: - field.field.node.collection.field_tags - field.field.node.collection.field_topics - node.type.collection - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - ds - field_group @@ -107,11 +107,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: '' image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content hidden: diff --git a/config/sync/core.entity_view_display.node.gleaning.card.yml b/config/sync/core.entity_view_display.node.gleaning.card.yml index 3c60b97..f1f3ec0 100644 --- a/config/sync/core.entity_view_display.node.gleaning.card.yml +++ b/config/sync/core.entity_view_display.node.gleaning.card.yml @@ -11,7 +11,7 @@ dependencies: - field.field.node.gleaning.field_publication_date - field.field.node.gleaning.field_upload - node.type.gleaning - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - datetime - ds @@ -83,11 +83,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: '' image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content field_publication_date: diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index e165419..affe984 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -3,22 +3,21 @@ _core: module: action: 0 admin_toolbar: 0 + admin_toolbar_links_access_filter: 0 admin_toolbar_search: 0 admin_toolbar_tools: 0 antibot: 0 automated_cron: 0 autosave_form: 0 block: 0 - block_class: 0 block_content: 0 block_visibility_groups: 0 breakpoint: 0 captcha: 0 - charts: 0 - charts_chartjs: 0 checklistapi: 0 + ckeditor: 0 ckeditor5: 0 - ckeditor_iframe: 0 + ckeditorheight: 0 classitup: 0 comment: 0 components: 0 @@ -62,6 +61,7 @@ module: entity_reference_revisions: 0 exclude_node_title: 0 facets: 0 + fakeobjects: 0 faqfield: 0 field: 0 field_group: 0 @@ -76,7 +76,6 @@ module: gdpr: 0 geo_citation: 0 geo_upgrade: 0 - givebutter: 0 google_analytics: 0 hal: 0 help: 0 @@ -96,8 +95,6 @@ module: menu_block: 0 menu_ui: 0 metatag: 0 - metatag_open_graph: 0 - metatag_twitter_cards: 0 migrate: 0 migrate_drupal: 0 migrate_plus: 0 @@ -113,7 +110,6 @@ module: path: 0 path_alias: 0 phpass: 0 - plausible: 0 rdf: 0 redirect: 0 responsive_image: 0 diff --git a/config/sync/editor.editor.basic_html.yml b/config/sync/editor.editor.basic_html.yml index 9717ba8..2916801 100644 --- a/config/sync/editor.editor.basic_html.yml +++ b/config/sync/editor.editor.basic_html.yml @@ -62,13 +62,11 @@ settings: enabled_attributes: { } linkit_extension: linkit_enabled: false - wysiwyg_linebreaks_extension: - method: force image_upload: status: true scheme: public directory: inline-images - max_size: null + max_size: '' max_dimensions: - width: null - height: null + width: 0 + height: 0 diff --git a/config/sync/editor.editor.footnote.yml b/config/sync/editor.editor.footnote.yml deleted file mode 100644 index c94cb82..0000000 --- a/config/sync/editor.editor.footnote.yml +++ /dev/null @@ -1,15 +0,0 @@ -status: true -dependencies: - config: - - filter.format.footnote - module: - - ckeditor5 -format: footnote -editor: ckeditor5 -settings: - toolbar: - items: - - bold - - italic - - link -image_upload: { } diff --git a/config/sync/editor.editor.full_html.yml b/config/sync/editor.editor.full_html.yml index 0420352..12ec2f9 100644 --- a/config/sync/editor.editor.full_html.yml +++ b/config/sync/editor.editor.full_html.yml @@ -18,24 +18,17 @@ settings: - superscript - subscript - removeFormat - - alignment - - footnotes + - Footnotes - link - bulletedList - numberedList - blockQuote - drupalMedia - insertTable - - iframeEmbed - horizontalLine - showBlocks - sourceEditing plugins: - ckeditor5_alignment: - enabled_alignments: - - center - - left - - right ckeditor5_heading: enabled_headings: - heading2 @@ -50,25 +43,11 @@ settings: multiBlock: true ckeditor5_sourceEditing: allowed_tags: { } - ckeditor_iframe_embed_iframeembed: - enabled_optional_attributes: - - height - - width - - name - - tabindex - - title - - allowfullscreen editor_advanced_link_link: - enabled_attributes: - - aria-label - - target - - title + enabled_attributes: { } linkit_extension: linkit_enabled: true linkit_profile: default media_media: allow_view_mode_override: false - wysiwyg_linebreaks_extension: - method: force -image_upload: - status: false +image_upload: { } diff --git a/config/sync/editor.editor.minimalhtml.yml b/config/sync/editor.editor.minimalhtml.yml index 1806fd5..c3a792f 100644 --- a/config/sync/editor.editor.minimalhtml.yml +++ b/config/sync/editor.editor.minimalhtml.yml @@ -1,51 +1,50 @@ -uuid: 544510b1-f241-4456-83a3-f602c111c46e +uuid: c627e429-1f81-4d6d-87a1-402d40f43c6b langcode: en status: true dependencies: config: - filter.format.minimalhtml module: - - ckeditor5 + - ckeditor +_core: + default_config_hash: kP3r4Ns9C1XIg5vFA9a0mteIKThq8E_eL43z7VIZUTY format: minimalhtml -editor: ckeditor5 +editor: ckeditor settings: toolbar: - items: - - bold - - italic - - '|' - - link - - '|' - - bulletedList - - numberedList - - '|' - - blockQuote - - '|' - - sourceEditing - - '|' - - code + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Links + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - + name: Tools + items: + - Source plugins: - ckeditor5_list: - properties: - reversed: false - startIndex: true - multiBlock: true - ckeditor5_sourceEditing: - allowed_tags: - - '<cite>' - - '<dl>' - - '<dt>' - - '<dd>' - - '<abbr title>' - - '<a hreflang>' - - '<blockquote cite>' - - '<ul type>' - - '<ol type>' - editor_advanced_link_link: - enabled_attributes: { } - linkit_extension: - linkit_enabled: false - wysiwyg_linebreaks_extension: + linebreaks: method: force image_upload: status: false + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/config/sync/filter.format.basic_html.yml b/config/sync/filter.format.basic_html.yml index 4ada830..43450dd 100644 --- a/config/sync/filter.format.basic_html.yml +++ b/config/sync/filter.format.basic_html.yml @@ -4,6 +4,7 @@ status: true dependencies: module: - editor + - footnotes - linkit _core: default_config_hash: 73bBl0mQ4I5Md9_FoI1V9MErX_I6ykC9gNKwLqb80Ko @@ -29,13 +30,22 @@ filters: status: true weight: 8 settings: { } + filter_footnotes: + id: filter_footnotes + provider: footnotes + status: false + weight: 0 + settings: + footnotes_collapse: '0' + footnotes_html: '0' + footnotes_css: '1' filter_html: id: filter_html provider: filter status: true weight: -10 settings: - allowed_html: '<br> <p> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <cite> <dl> <dt> <dd> <a hreflang href class data-insert-attach data-insert-type title> <blockquote cite> <ul type> <ol type start> <strong> <em> <code> <li> <img src alt height width data-entity-uuid data-entity-type data-caption data-align class data-insert-attach data-insert-type sizes srcset title> <audio contenteditable controls data-insert-attach data-insert-type src type> <span class data-insert-attach data-insert-type> <video contenteditable controls data-insert-attach data-insert-type src type>' + allowed_html: '<br> <p> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <cite> <dl> <dt> <dd> <a hreflang href> <blockquote cite> <ul type> <ol type start> <strong> <em> <code> <li> <img src alt height width data-entity-uuid data-entity-type data-caption data-align>' filter_html_help: false filter_html_nofollow: false filter_html_image_secure: diff --git a/config/sync/filter.format.footnote.yml b/config/sync/filter.format.footnote.yml deleted file mode 100644 index 7533cde..0000000 --- a/config/sync/filter.format.footnote.yml +++ /dev/null @@ -1,26 +0,0 @@ -status: true -dependencies: - module: - - footnotes -name: Footnote -format: footnote -filters: - filter_html: - id: filter_html - provider: filter - status: true - weight: -10 - settings: - allowed_html: '<br> <p> <strong> <em> <a href>' - filter_html_help: true - filter_html_nofollow: false - filter_footnotes: - id: filter_footnotes - provider: footnotes - status: false - weight: 0 - settings: - footnotes_collapse: false - footnotes_css: true - footnotes_dialog: false - footnotes_footer_disable: false diff --git a/config/sync/filter.format.full_html.yml b/config/sync/filter.format.full_html.yml index 141e791..3e9d078 100644 --- a/config/sync/filter.format.full_html.yml +++ b/config/sync/filter.format.full_html.yml @@ -44,10 +44,9 @@ filters: status: true weight: -42 settings: - footnotes_collapse: true - footnotes_css: true - footnotes_dialog: false - footnotes_footer_disable: false + footnotes_collapse: '0' + footnotes_html: '1' + footnotes_css: '1' filter_html: id: filter_html provider: filter diff --git a/config/sync/filter.format.minimalhtml.yml b/config/sync/filter.format.minimalhtml.yml index 5aa5eb3..ec0763f 100644 --- a/config/sync/filter.format.minimalhtml.yml +++ b/config/sync/filter.format.minimalhtml.yml @@ -20,7 +20,7 @@ filters: status: true weight: -10 settings: - allowed_html: '<br> <p> <cite> <dl> <dt> <dd> <abbr title> <a hreflang href> <blockquote cite> <ul type> <ol type start> <strong> <em> <code> <li>' + allowed_html: '<a href hreflang> <abbr title> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd>' filter_html_help: true filter_html_nofollow: false filter_htmlcorrector: diff --git a/config/sync/filter.format.plain_text.yml b/config/sync/filter.format.plain_text.yml index c89dab8..ae100f4 100644 --- a/config/sync/filter.format.plain_text.yml +++ b/config/sync/filter.format.plain_text.yml @@ -14,10 +14,6 @@ filters: status: true weight: 0 settings: { } - filter_footnotes: - settings: - footnotes_footer_disable: false - footnotes_dialog: false filter_html_escape: id: filter_html_escape provider: filter diff --git a/config/sync/filter.format.restricted_html.yml b/config/sync/filter.format.restricted_html.yml index 285ee25..7407a98 100644 --- a/config/sync/filter.format.restricted_html.yml +++ b/config/sync/filter.format.restricted_html.yml @@ -14,10 +14,6 @@ filters: status: true weight: 0 settings: { } - filter_footnotes: - settings: - footnotes_footer_disable: false - footnotes_dialog: false filter_html: id: filter_html provider: filter diff --git a/config/sync/givebutter.settings.yml b/config/sync/givebutter.settings.yml deleted file mode 100644 index 0c03c86..0000000 --- a/config/sync/givebutter.settings.yml +++ /dev/null @@ -1,6 +0,0 @@ -script: - acct: rr1fYlKKbeIogXUq -visibility: - enable: true - request_path_mode: 0 - request_path_pages: '' diff --git a/config/sync/image.style.drutopia_extra_wide_extra_small.yml b/config/sync/image.style.drutopia_extra_wide_extra_small.yml index 8448e8b..a2244cc 100644 --- a/config/sync/image.style.drutopia_extra_wide_extra_small.yml +++ b/config/sync/image.style.drutopia_extra_wide_extra_small.yml @@ -18,11 +18,11 @@ effects: data: crop_type: extra_wide_rectangle automatic_crop_provider: automated_crop_default - 1556c95b-f766-48de-ad6d-b6a75a18a632: - uuid: 1556c95b-f766-48de-ad6d-b6a75a18a632 - id: image_scale_and_crop - weight: 3 + dda19dc4-0ccc-42b1-ae8f-65df895b1075: + uuid: dda19dc4-0ccc-42b1-ae8f-65df895b1075 + id: image_scale + weight: 2 data: width: 270 - height: 135 - anchor: center-top + height: null + upscale: false diff --git a/config/sync/image.style.drutopia_extra_wide_small.yml b/config/sync/image.style.drutopia_extra_wide_small.yml index 18d4598..027e274 100644 --- a/config/sync/image.style.drutopia_extra_wide_small.yml +++ b/config/sync/image.style.drutopia_extra_wide_small.yml @@ -18,11 +18,11 @@ effects: data: crop_type: extra_wide_rectangle automatic_crop_provider: automated_crop_default - 96baa943-7908-4b3a-9dee-a9216c921aaa: - uuid: 96baa943-7908-4b3a-9dee-a9216c921aaa - id: image_scale_and_crop - weight: 3 + 9bd514b3-1894-4e9e-889c-8588c2c5b6b9: + uuid: 9bd514b3-1894-4e9e-889c-8588c2c5b6b9 + id: image_scale + weight: 2 data: width: 650 - height: 325 - anchor: center-top + height: null + upscale: false diff --git a/config/sync/mailchimp.settings.yml b/config/sync/mailchimp.settings.yml index 96f2698..06788c5 100644 --- a/config/sync/mailchimp.settings.yml +++ b/config/sync/mailchimp.settings.yml @@ -1,6 +1,5 @@ _core: default_config_hash: x8k6uOqmSHPqpp71jYGxHF3_SAs3U-Pha3YCntQIhPU -langcode: en api_key: null domain: '' use_oauth: false diff --git a/config/sync/metatag.metatag_defaults.node.yml b/config/sync/metatag.metatag_defaults.node.yml index 874b992..574fbae 100644 --- a/config/sync/metatag.metatag_defaults.node.yml +++ b/config/sync/metatag.metatag_defaults.node.yml @@ -7,19 +7,7 @@ _core: id: node label: Content tags: - canonical_url: '[node:url]' - description: '[node:summary]' image_src: '[node:field_image:0:focal_point_1300x650]' - og_description: '[node:field_summary]' - og_image: '[node:field_media_image:entity:field_media_image:focal_point_1300x650:url]' - og_image_alt: '[node:field_media_image:entity:field_media_image:alt]' - og_site_name: 'Grassroots Economic Organizing' - og_title: '[node:title]' - og_type: article - og_url: '[node:url:absolute]' + description: '[node:summary]' title: '[node:title] | [site:name]' - twitter_cards_description: '[node:field_summary]' - twitter_cards_image: '[node:field_media_image:entity:field_media_image:focal_point_325x195:url]' - twitter_cards_image_alt: '[node:field_media_image:entity:field_media_image:alt]' - twitter_cards_title: '[node:title]' - twitter_cards_type: summary_large_image + canonical_url: '[node:url]' diff --git a/config/sync/metatag.settings.yml b/config/sync/metatag.settings.yml index 9bc15ac..a47b310 100644 --- a/config/sync/metatag.settings.yml +++ b/config/sync/metatag.settings.yml @@ -1,38 +1,7 @@ _core: default_config_hash: 3mgYDspyj5REgG6ooA1izlcMzEs34kHPFUOMIXeDOco -entity_type_groups: - node: - article: - basic: basic - advanced: advanced - open_graph: open_graph - twitter_cards: twitter_cards - blog: - open_graph: open_graph - twitter_cards: twitter_cards - collection: - open_graph: open_graph - twitter_cards: twitter_cards - gleaning: - open_graph: open_graph - twitter_cards: twitter_cards - page: - open_graph: open_graph - twitter_cards: twitter_cards - people: - open_graph: open_graph - twitter_cards: twitter_cards -separator: ',' +entity_type_groups: { } tag_trim_method: beforeValue use_maxlength: true -tag_trim_maxlength: - metatag_maxlength_title: null - metatag_maxlength_description: null - metatag_maxlength_abstract: null - metatag_maxlength_og_site_name: null - metatag_maxlength_og_title: null - metatag_maxlength_og_description: null - metatag_maxlength_twitter_cards_description: null - metatag_maxlength_twitter_cards_title: null +tag_trim_maxlength: { } tag_scroll_max_height: '' -tag_trim_end: '|.,-:;/+&([{"''' diff --git a/config/sync/node.type.article.yml b/config/sync/node.type.article.yml index e3b385c..26a1f11 100644 --- a/config/sync/node.type.article.yml +++ b/config/sync/node.type.article.yml @@ -13,7 +13,7 @@ _core: name: Article type: article description: 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.' -help: null +help: '' new_revision: true preview_mode: 0 display_submitted: true diff --git a/config/sync/node.type.blog.yml b/config/sync/node.type.blog.yml index 7c1e990..485ab46 100644 --- a/config/sync/node.type.blog.yml +++ b/config/sync/node.type.blog.yml @@ -14,7 +14,7 @@ _core: name: Blog type: blog description: 'Use <em>blog</em> for personal or journal-like posts.' -help: null +help: '' new_revision: true preview_mode: 0 display_submitted: true diff --git a/config/sync/node.type.collection.yml b/config/sync/node.type.collection.yml index d285ada..2c26f5d 100644 --- a/config/sync/node.type.collection.yml +++ b/config/sync/node.type.collection.yml @@ -14,7 +14,7 @@ _core: name: Collection type: collection description: 'Create a <em>collection</em> to bring together ordered listings of Articles, Blog posts, or other content. This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people.' -help: null +help: '' new_revision: true preview_mode: 1 display_submitted: false diff --git a/config/sync/node.type.gleaning.yml b/config/sync/node.type.gleaning.yml index 1231eea..f2424a4 100644 --- a/config/sync/node.type.gleaning.yml +++ b/config/sync/node.type.gleaning.yml @@ -12,7 +12,7 @@ third_party_settings: name: Gleaning type: gleaning description: 'A gleaning is a quick link to material posted somewhere else online. It should have a title, a link, and can also have a comment. ' -help: null +help: '' new_revision: true preview_mode: 0 display_submitted: false diff --git a/config/sync/node.type.landing_page.yml b/config/sync/node.type.landing_page.yml index 2342f9f..09d82ca 100644 --- a/config/sync/node.type.landing_page.yml +++ b/config/sync/node.type.landing_page.yml @@ -14,7 +14,7 @@ _core: name: 'Landing page (DEPRECATED)' type: landing_page description: 'Use Page instead. (Landing pages can be used for custom pages such as the home page.)' -help: null +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 index 5c0cff6..8d9211b 100644 --- a/config/sync/node.type.page.yml +++ b/config/sync/node.type.page.yml @@ -15,7 +15,7 @@ _core: name: Page type: page description: "Use <em>pages</em> for your basic static content, such as an 'About us' page." -help: null +help: '' new_revision: true preview_mode: 0 display_submitted: false diff --git a/config/sync/node.type.people.yml b/config/sync/node.type.people.yml index f69cf4b..a592368 100644 --- a/config/sync/node.type.people.yml +++ b/config/sync/node.type.people.yml @@ -14,7 +14,7 @@ _core: name: Person type: people description: 'Use the <em>person</em> content type for people such as staff, volunteers, contributors.' -help: null +help: '' new_revision: true preview_mode: 0 display_submitted: false diff --git a/config/sync/plausible.settings.yml b/config/sync/plausible.settings.yml deleted file mode 100644 index a5c008e..0000000 --- a/config/sync/plausible.settings.yml +++ /dev/null @@ -1,25 +0,0 @@ -_core: - default_config_hash: 7ITcwwShhS7SG3SJdIqRQkzXEcEPNejdEnbeDVDeDY0 -script: - domain: '' - api: '' - src: 'https://plausible.io/js/script.file-downloads.hash.outbound-links.js' -dashboard: - shared_link: '' -visibility: - enable: true - admin_route_mode: 1 - request_path_mode: 0 - request_path_pages: '' - user_role_roles: - administrator: '0' - anonymous: '0' - authenticated: '0' - invited_blogger: '0' - contributor: '0' - editor: '0' - manager: '0' - user_role_mode: 0 -events: - 403: true - 404: true diff --git a/config/sync/responsive_image.styles.card_extra_wide.yml b/config/sync/responsive_image.styles.card_extra_wide.yml deleted file mode 100644 index bbbdc0f..0000000 --- a/config/sync/responsive_image.styles.card_extra_wide.yml +++ /dev/null @@ -1,75 +0,0 @@ -uuid: 1fad7383-b40e-4834-bc15-ee0377f12d58 -langcode: en -status: true -dependencies: - config: - - image.style.drutopia_extra_wide_extra_small - - image.style.drutopia_extra_wide_medium - - image.style.drutopia_extra_wide_small - module: - - drutopia_core -id: card_extra_wide -label: 'Wide Card' -image_style_mappings: - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.fullhd - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_extra_small - breakpoint_id: drutopia_core.widescreen - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.desktop - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_medium - breakpoint_id: drutopia_core.fullhd - multiplier: 2x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.widescreen - multiplier: 2x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_medium - breakpoint_id: drutopia_core.desktop - multiplier: 2x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.tablet - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_medium - breakpoint_id: drutopia_core.tablet - multiplier: 2x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.mobile - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_medium - breakpoint_id: drutopia_core.mobile - multiplier: 2x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_extra_small - breakpoint_id: drutopia_core.all - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.all - multiplier: 2x -breakpoint_group: drutopia_core -fallback_image_style: drutopia_extra_wide_extra_small diff --git a/config/sync/search_api.index.article.yml b/config/sync/search_api.index.article.yml index bde1177..a3c7a3a 100644 --- a/config/sync/search_api.index.article.yml +++ b/config/sync/search_api.index.article.yml @@ -3,16 +3,17 @@ langcode: en status: true dependencies: config: - - core.entity_view_mode.node.search_index - field.storage.node.field_article_type - field.storage.node.field_authors - field.storage.node.field_summary - field.storage.node.field_tags - field.storage.node.field_topics - search_api.server.database + - core.entity_view_mode.node.search_index module: - node - user + - search_api _core: default_config_hash: J04p8dO7JgH6HJ11pkCigWVJg-8TXjwcS4kwaVmluI8 id: article diff --git a/config/sync/search_api.index.blog.yml b/config/sync/search_api.index.blog.yml index 9b296af..7b30e2d 100644 --- a/config/sync/search_api.index.blog.yml +++ b/config/sync/search_api.index.blog.yml @@ -3,14 +3,15 @@ langcode: en status: true dependencies: config: - - core.entity_view_mode.node.search_index - field.storage.node.field_summary - field.storage.node.field_tags - field.storage.node.field_topics - search_api.server.database + - core.entity_view_mode.node.search_index module: - node - user + - search_api _core: default_config_hash: LVXH3P5V5qSiUZzvZXvCnxDkd1deRiRJxfXyTLWGOFM id: blog diff --git a/config/sync/search_api.index.collection.yml b/config/sync/search_api.index.collection.yml index 5ea11c0..ebb45b3 100644 --- a/config/sync/search_api.index.collection.yml +++ b/config/sync/search_api.index.collection.yml @@ -3,16 +3,17 @@ langcode: en status: true dependencies: config: - - core.entity_view_mode.node.search_index - field.storage.node.field_authors - field.storage.node.field_collection_type - field.storage.node.field_summary - field.storage.node.field_tags - field.storage.node.field_topics - search_api.server.database + - core.entity_view_mode.node.search_index module: - node - user + - search_api _core: default_config_hash: _QVCLp7W8HxV52MEnKkYc2bX5i3NFf4ejVOfuTApG9g id: collection diff --git a/config/sync/search_api.index.content.yml b/config/sync/search_api.index.content.yml index 3768f6c..27c5630 100644 --- a/config/sync/search_api.index.content.yml +++ b/config/sync/search_api.index.content.yml @@ -3,14 +3,15 @@ langcode: en status: true dependencies: config: - - core.entity_view_mode.node.full - field.storage.node.field_summary - field.storage.node.field_tags - field.storage.node.field_topics - search_api.server.database + - core.entity_view_mode.node.full module: - node - user + - search_api _core: default_config_hash: q4urWOU1mmYKKSBzYuwpRBTSIJnFwzapGP4bnCajbFs id: content diff --git a/config/sync/search_api.index.people.yml b/config/sync/search_api.index.people.yml index 1f9f9b8..d64e390 100644 --- a/config/sync/search_api.index.people.yml +++ b/config/sync/search_api.index.people.yml @@ -3,13 +3,14 @@ langcode: en status: true dependencies: config: - - core.entity_view_mode.node.search_index - field.storage.node.field_people_type - field.storage.node.field_summary - search_api.server.database + - core.entity_view_mode.node.search_index module: - node - user + - search_api _core: default_config_hash: MppSSFf9_oAEuTYEXp1R5nK30k5xRKvptoEDwKw9v6o id: people diff --git a/config/sync/system.cron.yml b/config/sync/system.cron.yml index 7360f55..c77ffef 100644 --- a/config/sync/system.cron.yml +++ b/config/sync/system.cron.yml @@ -3,4 +3,4 @@ _core: threshold: requirements_warning: 172800 requirements_error: 1209600 -logging: true +logging: 1 diff --git a/config/sync/system.date.yml b/config/sync/system.date.yml index 5099b6c..0912337 100644 --- a/config/sync/system.date.yml +++ b/config/sync/system.date.yml @@ -2,7 +2,7 @@ _core: default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo first_day: 0 country: - default: null + default: '' timezone: default: UTC user: diff --git a/config/sync/system.performance.yml b/config/sync/system.performance.yml index 902d668..d8dbe9a 100644 --- a/config/sync/system.performance.yml +++ b/config/sync/system.performance.yml @@ -2,7 +2,7 @@ _core: default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ cache: page: - max_age: 1800 + max_age: 0 css: preprocess: true gzip: true diff --git a/config/sync/taxonomy.vocabulary.article_type.yml b/config/sync/taxonomy.vocabulary.article_type.yml index da7370d..a548d83 100644 --- a/config/sync/taxonomy.vocabulary.article_type.yml +++ b/config/sync/taxonomy.vocabulary.article_type.yml @@ -8,4 +8,3 @@ name: 'Article type' vid: article_type description: 'For categorizing articles.' weight: 0 -new_revision: false diff --git a/config/sync/taxonomy.vocabulary.collection_type.yml b/config/sync/taxonomy.vocabulary.collection_type.yml index 4c4e432..7ac59c3 100644 --- a/config/sync/taxonomy.vocabulary.collection_type.yml +++ b/config/sync/taxonomy.vocabulary.collection_type.yml @@ -8,4 +8,3 @@ name: 'Collection type' vid: collection_type description: 'For categorizing collections on aspects unique to collections.' weight: 0 -new_revision: false diff --git a/config/sync/taxonomy.vocabulary.people_type.yml b/config/sync/taxonomy.vocabulary.people_type.yml index c94daa3..1c1bfe2 100644 --- a/config/sync/taxonomy.vocabulary.people_type.yml +++ b/config/sync/taxonomy.vocabulary.people_type.yml @@ -8,4 +8,3 @@ name: 'People type' vid: people_type description: 'For categorizing people content.' weight: 0 -new_revision: false diff --git a/config/sync/taxonomy.vocabulary.tags.yml b/config/sync/taxonomy.vocabulary.tags.yml index 876a35f..4050b22 100644 --- a/config/sync/taxonomy.vocabulary.tags.yml +++ b/config/sync/taxonomy.vocabulary.tags.yml @@ -8,4 +8,3 @@ name: Tags vid: tags description: 'Use tags to group content if you need categories beyond the given topics.' weight: 0 -new_revision: false diff --git a/config/sync/taxonomy.vocabulary.topics.yml b/config/sync/taxonomy.vocabulary.topics.yml index 1e59f38..b917557 100644 --- a/config/sync/taxonomy.vocabulary.topics.yml +++ b/config/sync/taxonomy.vocabulary.topics.yml @@ -8,4 +8,3 @@ name: Topics vid: topics description: 'Use topics to group content into categories.' weight: 0 -new_revision: false diff --git a/config/sync/user.role.authenticated.yml b/config/sync/user.role.authenticated.yml index 148f812..67d7e28 100644 --- a/config/sync/user.role.authenticated.yml +++ b/config/sync/user.role.authenticated.yml @@ -15,7 +15,6 @@ dependencies: - node - statistics - system - - visitors _core: default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI id: authenticated @@ -39,4 +38,3 @@ permissions: - 'view media' - 'view own unpublished content' - 'view post access counter' - - 'view visitors counter' diff --git a/config/sync/user.role.contributor.yml b/config/sync/user.role.contributor.yml index 6df5c96..271214c 100644 --- a/config/sync/user.role.contributor.yml +++ b/config/sync/user.role.contributor.yml @@ -3,9 +3,7 @@ langcode: en status: true dependencies: config: - - filter.format.footnote - filter.format.full_html - - media.type.image - node.type.article - node.type.blog - node.type.page @@ -16,13 +14,11 @@ dependencies: - contextual - file - filter - - media - node - shortcut - system - taxonomy - toolbar - - visitors _core: default_config_hash: wx_SmNDtHorXJ90rDiwqo6EvHgyvz6_SZFsFO77cdvY id: contributor @@ -36,7 +32,6 @@ permissions: - 'access toolbar' - 'create article content' - 'create blog content' - - 'create image media' - 'create people content' - 'delete own files' - 'edit own article content' @@ -46,8 +41,5 @@ permissions: - 'edit own people content' - 'edit terms in tags' - 'skip comment approval' - - 'update media' - - 'use text format footnote' - 'use text format full_html' - 'view the administration theme' - - 'view visitors counter' diff --git a/config/sync/user.role.editor.yml b/config/sync/user.role.editor.yml index 2dd91e5..3b2d604 100644 --- a/config/sync/user.role.editor.yml +++ b/config/sync/user.role.editor.yml @@ -3,7 +3,6 @@ langcode: en status: true dependencies: config: - - filter.format.footnote - filter.format.full_html module: - comment @@ -20,7 +19,6 @@ dependencies: - taxonomy - toolbar - tour - - visitors _core: default_config_hash: rlOWgxSj7Nc4dVgLS2xaxjHVZNv9u9Csoy8JavNvygc id: editor @@ -53,9 +51,7 @@ permissions: - 'delete own files' - 'revert all revisions' - 'skip comment approval' - - 'use text format footnote' - 'use text format full_html' - 'view all revisions' - 'view own unpublished content' - 'view the administration theme' - - 'view visitors counter' diff --git a/config/sync/user.role.invited_blogger.yml b/config/sync/user.role.invited_blogger.yml index b3f73b4..5b48fed 100644 --- a/config/sync/user.role.invited_blogger.yml +++ b/config/sync/user.role.invited_blogger.yml @@ -3,7 +3,6 @@ langcode: en status: true dependencies: config: - - filter.format.footnote - filter.format.full_html - node.type.blog module: @@ -37,7 +36,6 @@ permissions: - 'edit own comments' - 'post comments' - 'skip comment approval' - - 'use text format footnote' - 'use text format full_html' - 'view own unpublished content' - 'view the administration theme' diff --git a/config/sync/user.role.manager.yml b/config/sync/user.role.manager.yml index da56712..ac53ba2 100644 --- a/config/sync/user.role.manager.yml +++ b/config/sync/user.role.manager.yml @@ -3,7 +3,6 @@ langcode: en status: true dependencies: config: - - filter.format.footnote - filter.format.full_html module: - block @@ -49,7 +48,6 @@ permissions: - 'access help pages' - 'access shortcuts' - 'access site in maintenance mode' - - 'access site reports' - 'access toolbar' - 'access tour' - 'access user contact forms' @@ -83,7 +81,6 @@ permissions: - 'edit gdpr_checklist checklistapi checklist' - 'revert all revisions' - 'skip comment approval' - - 'use text format footnote' - 'use text format full_html' - 'view all revisions' - 'view own unpublished content' diff --git a/config/sync/views.view.archive.yml b/config/sync/views.view.archive.yml index 71cf187..d364f02 100644 --- a/config/sync/views.view.archive.yml +++ b/config/sync/views.view.archive.yml @@ -29,7 +29,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 10 total_pages: 0 id: 0 diff --git a/config/sync/views.view.article.yml b/config/sync/views.view.article.yml index d6e6802..d02e3ff 100644 --- a/config/sync/views.view.article.yml +++ b/config/sync/views.view.article.yml @@ -102,7 +102,6 @@ display: offset: false offset_label: Offset quantity: 10 - pagination_heading_level: h4 exposed_form: type: basic options: diff --git a/config/sync/views.view.block_content.yml b/config/sync/views.view.block_content.yml index 9b88870..4f9d3ff 100644 --- a/config/sync/views.view.block_content.yml +++ b/config/sync/views.view.block_content.yml @@ -273,7 +273,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: null id: 0 diff --git a/config/sync/views.view.blog.yml b/config/sync/views.view.blog.yml index 1dbda68..99b2292 100644 --- a/config/sync/views.view.blog.yml +++ b/config/sync/views.view.blog.yml @@ -99,7 +99,6 @@ display: items_per_page_options_all_label: '- All -' offset: false offset_label: Offset - pagination_heading_level: h4 exposed_form: type: basic options: diff --git a/config/sync/views.view.blogs.yml b/config/sync/views.view.blogs.yml index 0acf2cc..9aed064 100644 --- a/config/sync/views.view.blogs.yml +++ b/config/sync/views.view.blogs.yml @@ -92,7 +92,6 @@ display: offset: false offset_label: Offset quantity: 9 - pagination_heading_level: h4 exposed_form: type: basic options: @@ -241,7 +240,7 @@ display: admin_label: '' entity_type: node entity_field: uid - plugin_id: entity_target_id + plugin_id: numeric default_action: default exception: value: all @@ -268,7 +267,6 @@ display: validate_options: { } break_phrase: false not: false - target_entity_type_id: user defaults: relationships: false arguments: false diff --git a/config/sync/views.view.collection.yml b/config/sync/views.view.collection.yml index 3f24ec0..c625d2c 100644 --- a/config/sync/views.view.collection.yml +++ b/config/sync/views.view.collection.yml @@ -85,7 +85,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 12 total_pages: null id: 0 diff --git a/config/sync/views.view.collection_select_content.yml b/config/sync/views.view.collection_select_content.yml index d6ec9e7..528a183 100644 --- a/config/sync/views.view.collection_select_content.yml +++ b/config/sync/views.view.collection_select_content.yml @@ -284,7 +284,6 @@ display: items_per_page_options_all_label: '- All -' offset: false offset_label: Offset - pagination_heading_level: h4 exposed_form: type: basic options: diff --git a/config/sync/views.view.comment.yml b/config/sync/views.view.comment.yml index 13f3371..e9a105b 100644 --- a/config/sync/views.view.comment.yml +++ b/config/sync/views.view.comment.yml @@ -533,7 +533,6 @@ display: type: full options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: null id: 0 diff --git a/config/sync/views.view.content.yml b/config/sync/views.view.content.yml index 0c9bbf9..c794dd6 100644 --- a/config/sync/views.view.content.yml +++ b/config/sync/views.view.content.yml @@ -249,7 +249,6 @@ display: pager: type: full options: - pagination_heading_level: h4 items_per_page: 50 tags: next: 'Next ›' diff --git a/config/sync/views.view.content_by_author.yml b/config/sync/views.view.content_by_author.yml index 6a75e0c..7ba5d2b 100644 --- a/config/sync/views.view.content_by_author.yml +++ b/config/sync/views.view.content_by_author.yml @@ -242,26 +242,3 @@ display: - 'user.node_grants:view' - user.permissions tags: { } - feed: - id: feed - display_title: Feed - display_plugin: feed - position: 2 - display_options: - row: - type: node_rss - options: { } - display_extenders: { } - path: people/%/rss.xml - displays: - block_author: block_author - default: '0' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - 'user.node_grants:view' - - user.permissions - tags: { } diff --git a/config/sync/views.view.files.yml b/config/sync/views.view.files.yml index b3b3735..a8fa7a5 100644 --- a/config/sync/views.view.files.yml +++ b/config/sync/views.view.files.yml @@ -521,7 +521,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: 0 id: 0 @@ -1057,7 +1056,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 10 total_pages: 0 id: 0 diff --git a/config/sync/views.view.frontpage.yml b/config/sync/views.view.frontpage.yml index ac40ca8..05eddd1 100644 --- a/config/sync/views.view.frontpage.yml +++ b/config/sync/views.view.frontpage.yml @@ -30,7 +30,6 @@ display: type: full options: offset: 0 - pagination_heading_level: h4 items_per_page: 10 total_pages: 0 id: 0 diff --git a/config/sync/views.view.gleanings_new.yml b/config/sync/views.view.gleanings_new.yml index fbd3579..6b21ea6 100644 --- a/config/sync/views.view.gleanings_new.yml +++ b/config/sync/views.view.gleanings_new.yml @@ -90,7 +90,6 @@ display: items_per_page_options_all_label: '- All -' offset: false offset_label: Offset - pagination_heading_level: h4 exposed_form: type: basic options: @@ -302,7 +301,6 @@ display: offset: false offset_label: Offset quantity: 9 - pagination_heading_level: h4 defaults: pager: false display_extenders: { } diff --git a/config/sync/views.view.glossary.yml b/config/sync/views.view.glossary.yml index 6c75d63..c13affa 100644 --- a/config/sync/views.view.glossary.yml +++ b/config/sync/views.view.glossary.yml @@ -196,7 +196,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 36 total_pages: 0 id: 0 diff --git a/config/sync/views.view.media.yml b/config/sync/views.view.media.yml index 4c8b890..96eda33 100644 --- a/config/sync/views.view.media.yml +++ b/config/sync/views.view.media.yml @@ -522,7 +522,6 @@ display: type: full options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: null id: 0 diff --git a/config/sync/views.view.media_library.yml b/config/sync/views.view.media_library.yml index 2cdc53c..7f599e4 100644 --- a/config/sync/views.view.media_library.yml +++ b/config/sync/views.view.media_library.yml @@ -139,7 +139,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 24 total_pages: null id: 0 diff --git a/config/sync/views.view.moderated_content.yml b/config/sync/views.view.moderated_content.yml index 64087b5..22b4283 100644 --- a/config/sync/views.view.moderated_content.yml +++ b/config/sync/views.view.moderated_content.yml @@ -415,7 +415,6 @@ display: type: full options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: null id: 0 diff --git a/config/sync/views.view.redirect.yml b/config/sync/views.view.redirect.yml index 09bec09..fb7736f 100644 --- a/config/sync/views.view.redirect.yml +++ b/config/sync/views.view.redirect.yml @@ -243,7 +243,6 @@ display: offset: false offset_label: Offset quantity: 9 - pagination_heading_level: h4 exposed_form: type: basic options: diff --git a/config/sync/views.view.search.yml b/config/sync/views.view.search.yml index 84aa598..4dd007b 100644 --- a/config/sync/views.view.search.yml +++ b/config/sync/views.view.search.yml @@ -115,7 +115,6 @@ display: offset: false offset_label: Offset quantity: 9 - pagination_heading_level: h4 exposed_form: type: basic options: diff --git a/config/sync/views.view.taxonomy_term.yml b/config/sync/views.view.taxonomy_term.yml index ba0d82a..b8dbcce 100644 --- a/config/sync/views.view.taxonomy_term.yml +++ b/config/sync/views.view.taxonomy_term.yml @@ -29,7 +29,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 10 total_pages: 0 id: 0 diff --git a/config/sync/views.view.user_admin_people.yml b/config/sync/views.view.user_admin_people.yml index a5134d6..77b3850 100644 --- a/config/sync/views.view.user_admin_people.yml +++ b/config/sync/views.view.user_admin_people.yml @@ -463,7 +463,6 @@ display: type: full options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: 0 id: 0 diff --git a/config/sync/views.view.visitors.yml b/config/sync/views.view.visitors.yml deleted file mode 100644 index 618ba60..0000000 --- a/config/sync/views.view.visitors.yml +++ /dev/null @@ -1,8745 +0,0 @@ -uuid: da9ebb3b-8801-42a1-abe1-0ca150ffdad0 -langcode: en -status: true -dependencies: - module: - - charts - - charts_chartjs - - visitors -_core: - default_config_hash: bz_czAL179TZlsG0i7NIgro4xD5_VVSavU-mGA5PPNY -id: visitors -label: Visitors -module: views -description: 'Visitors web analytics reports.' -tag: '' -base_table: visitors -base_field: '' -display: - default: - id: default - display_title: Default - display_plugin: default - position: 0 - display_options: - title: '' - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - pagination_heading_level: h4 - 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: none - options: { } - empty: { } - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: { } - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - route: route - visitor_id: visitor_id - default: visitor_id - info: - route: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - 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: { } - use_ajax: true - group_by: true - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_engine_pie: - id: browser_engine_pie - display_title: 'Engine Pie' - display_plugin: embed - position: 8 - display_options: - title: 'Browser Engines' - fields: - config_browser_engine: - id: config_browser_engine - table: visitors - field: config_browser_engine - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Engine - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: pie - fields: - label: config_browser_engine - stacking: false - data_providers: - config_browser_engine: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#000000' - weight: 2 - display: - title: 'Browser Engines' - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '60' - width_units: '' - height: '60' - height_units: '%' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: browser_engine_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_engine_table: - id: browser_engine_table - display_title: 'Engine Table' - display_plugin: embed - position: 8 - display_options: - title: 'Browser Engines' - fields: - config_browser_engine: - id: config_browser_engine - table: visitors - field: config_browser_engine - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Engine - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: browser_engine_pie - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_name_table: - id: browser_name_table - display_title: 'Browser Name' - display_plugin: embed - position: 6 - display_options: - title: Browser - fields: - config_browser_name: - id: config_browser_name - table: visitors - field: config_browser_name - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_browser - label: Browser - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Browser version' - empty: false - display_id: browser_version_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - browser_version_table: - id: browser_version_table - display_title: 'Browser Version' - display_plugin: embed - position: 7 - display_options: - title: 'Browser Version' - fields: - config_browser_name: - id: config_browser_name - table: visitors - field: config_browser_name - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_browser - label: 'Browser 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 - icon: true - config_browser_version: - id: config_browser_version - table: visitors - field: config_browser_version - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Browser Version' - exclude: false - alter: - alter_text: true - text: '{{ config_browser_name }} {{ config_browser_version }} ' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Browser - empty: false - display_id: browser_name_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - continent_pie: - id: continent_pie - display_title: 'Continent Pie' - display_plugin: embed - position: 1 - display_options: - title: Continent - fields: - location_continent: - id: location_continent - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_continent - label: Continent - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: pie - fields: - label: location_continent - stacking: false - data_providers: - location_continent: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#000000' - weight: 2 - display: - title: Continent - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '60' - width_units: '%' - height: '60' - height_units: '%' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: continent_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - continent_table: - id: continent_table - display_title: 'Continent Table' - display_plugin: embed - position: 1 - display_options: - title: Continent - fields: - location_continent_1: - id: location_continent_1 - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_continent - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_continent_1|lower }}' - 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 - abbreviation: true - location_continent: - id: location_continent - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_continent - label: Continent - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/location/continent/{{ location_continent_1 }}' - 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 - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: continent_pie - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - country_table: - id: country_table - display_title: Country - display_plugin: embed - position: 2 - display_options: - title: Country - fields: - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_1|lower }}' - make_link: false - path: 'internal:/visitors/location/region/{{ location_country_1 }}' - 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 - icon: false - text: false - abbreviation: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Country - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/location/country/{{location_country_1}}' - 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 - icon: true - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - arguments: - location_continent: - id: location_continent - table: visitors - field: location_continent - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - title: false - fields: false - arguments: false - filters: true - filter_groups: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - daily_column: - id: daily_column - display_title: 'Daily Column' - display_plugin: embed - position: 26 - display_options: - fields: - visitors_day: - id: visitors_day - table: visitors - field: visitors_day - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day - label: Day - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_day: - id: visitors_day - table: visitors - field: visitors_day - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day - stacking: false - data_providers: - visitors_day: - enabled: false - color: '#006fb0' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: Daily - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - day_of_month_column: - id: day_of_month_column - display_title: 'Day of Month Column' - display_plugin: embed - position: 28 - display_options: - fields: - visitors_day_of_month: - id: visitors_day_of_month - table: visitors - field: visitors_day_of_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_month - label: 'Day of Month' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_day_of_month: - id: visitors_day_of_month - table: visitors - field: visitors_day_of_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day_of_month - stacking: false - data_providers: - visitors_day_of_month: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: 'Day of Month' - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: day_of_month_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - day_of_month_table: - id: day_of_month_table - display_title: 'Day of Month Table' - display_plugin: embed - position: 28 - display_options: - title: 'Day of Month' - fields: - visitors_day_of_month: - id: visitors_day_of_month - table: visitors - field: visitors_day_of_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_month - label: 'Day of Month' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_day_of_month: - id: visitors_day_of_month - table: visitors - field: visitors_day_of_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_day_of_month: visitors_day_of_month - visitor_id: visitor_id - default: '-1' - info: - visitors_day_of_month: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: 'Day of Month' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: day_of_month_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - day_of_week_column: - id: day_of_week_column - display_title: 'Day of Week Column' - display_plugin: embed - position: 30 - display_options: - fields: - visitors_day_of_week: - id: visitors_day_of_week - table: visitors - field: visitors_day_of_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_week - label: 'Day of Week' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_day_of_week: - id: visitors_day_of_week - table: visitors - field: visitors_day_of_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day_of_week - stacking: false - data_providers: - visitors_day_of_week: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: 'Day of Week' - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: day_of_week_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - day_of_week_table: - id: day_of_week_table - display_title: 'Day of Week Table' - display_plugin: embed - position: 30 - display_options: - title: 'Day of Week' - fields: - visitors_day_of_week: - id: visitors_day_of_week - table: visitors - field: visitors_day_of_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day_of_week - label: 'Day of Week' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_day_of_week: - id: visitors_day_of_week - table: visitors - field: visitors_day_of_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_day_of_week: visitors_day_of_week - visitor_id: visitor_id - default: '-1' - info: - visitors_day_of_week: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: 'Day of Week' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: day_of_week_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_brand_table: - id: device_brand_table - display_title: 'Device Brand' - display_plugin: embed - position: 10 - display_options: - title: 'Device Brand' - fields: - config_device_brand: - id: config_device_brand - table: visitors - field: config_device_brand - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_brand - label: Brand - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_config_table: - id: device_config_table - display_title: Configuration - display_plugin: embed - position: 13 - display_options: - title: Configuration - fields: - config_os: - id: config_os - table: visitors - field: config_os - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_operating_system - label: 'Operating System' - 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 - icon: false - config_browser_name: - id: config_browser_name - table: visitors - field: config_browser_name - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_browser - label: 'Browser 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 - icon: false - config_resolution: - id: config_resolution - table: visitors - field: config_resolution - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Configurations - exclude: false - alter: - alter_text: true - text: '{{ config_os }} / {{ config_browser_name }} / {{ config_resolution }} ' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Resolution - empty: false - display_id: device_resolution_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_model_table: - id: device_model_table - display_title: 'Device Model' - display_plugin: embed - position: 11 - display_options: - title: Model - fields: - config_device_brand: - id: config_device_brand - table: visitors - field: config_device_brand - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_brand - label: 'Device brand' - exclude: true - alter: - alter_text: true - text: '{{ config_device_brand }} - ' - 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 - icon: false - config_device_model: - id: config_device_model - table: visitors - field: config_device_model - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Device model' - 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: Generic - hide_empty: false - empty_zero: false - hide_alter_empty: true - config_device_type: - id: config_device_type - table: visitors - field: config_device_type - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_device - label: 'Device model' - exclude: false - alter: - alter_text: true - text: '{{ config_device_brand }}{{ config_device_model }} {{ config_device_type }} ' - 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 - icon: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_resolution_table: - id: device_resolution_table - display_title: Resolution - display_plugin: embed - position: 12 - display_options: - title: Resolution - fields: - config_resolution: - id: config_resolution - table: visitors - field: config_resolution - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Resolution - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Configurations - empty: false - display_id: device_config_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - device_type_table: - id: device_type_table - display_title: 'Device Type' - display_plugin: embed - position: 9 - display_options: - title: 'Device Type' - fields: - config_device_type: - id: config_device_type - table: visitors - field: config_device_type - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_device - label: Device - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - distinct_countries_list: - id: distinct_countries_list - display_title: 'Distinct Countries' - display_plugin: embed - position: 3 - display_options: - title: 'Distinct Countries' - fields: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: visitors_country - label: '' - exclude: false - alter: - alter_text: false - text: '{{ location_country }} distinct countries' - 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 - icon: false - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: true - format_plural_string: !!binary MSBkaXN0aW5jdCBjb3VudHJ5A0Bjb3VudCBkaXN0aW5jdCBjb3VudHJpZXM= - prefix: '' - suffix: '' - sorts: { } - style: - type: default - options: - grouping: { } - row_class: '' - default_row_class: true - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - style: false - row: false - fields: false - sorts: false - filters: true - filter_groups: true - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - hour_column: - id: hour_column - display_title: 'Hour Column' - display_plugin: embed - position: 24 - display_options: - fields: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_hour - stacking: false - data_providers: - visitors_hour: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: 'Your time' - title_position: top - subtitle: '' - data_labels: false - data_markers: false - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: hour_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - hour_table: - id: hour_table - display_title: 'Hour Table' - display_plugin: embed - position: 24 - display_options: - title: 'Your time' - fields: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_hour: visitors_hour - visitor_id: visitor_id - default: '-1' - info: - visitors_hour: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: 'Your time' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: hour_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - language_code_table: - id: language_code_table - display_title: 'Language Code' - display_plugin: embed - position: 5 - display_options: - title: 'Language Code' - fields: - language: - id: language - table: visitors - field: language - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_language - label: Language - 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 - code: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - filters: true - filter_groups: true - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: Language - empty: false - display_id: language_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - language_table: - id: language_table - display_title: Language - display_plugin: embed - position: 4 - display_options: - title: Language - fields: - language: - id: language - table: visitors - field: language - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Language - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - filters: true - filter_groups: true - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Language Code' - empty: false - display_id: language_code_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - local_hour_column: - id: local_hour_column - display_title: 'Local Column' - display_plugin: embed - position: 22 - display_options: - fields: - visitor_localtime: - id: visitor_localtime - table: visitors - field: visitor_localtime - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_local_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitor_localtime: - id: visitor_localtime - table: visitors - field: visitor_localtime - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitor_localtime - stacking: false - data_providers: - visitor_localtime: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: "Visitor's time" - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '0' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: local_hour_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - local_hour_table: - id: local_hour_table - display_title: 'Local Table' - display_plugin: embed - position: 22 - display_options: - title: "Visitor's time" - fields: - visitor_localtime: - id: visitor_localtime - table: visitors - field: visitor_localtime - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_local_hour - label: Hour - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitor_localtime: - id: visitor_localtime - table: visitors - field: visitor_localtime - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitor_localtime: visitor_localtime - visitor_id: visitor_id - default: '-1' - info: - visitor_localtime: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: "Visitor's time" - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: local_hour_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - monthly_column: - id: monthly_column - display_title: 'Monthly Column' - display_plugin: embed - position: 26 - display_options: - fields: - visitors_month: - id: visitors_month - table: visitors - field: visitors_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_month - label: Month - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_month: - id: visitors_month - table: visitors - field: visitors_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_month - stacking: false - data_providers: - visitors_month: - enabled: false - color: '#000000' - weight: 2 - visitor_id: - enabled: true - color: '#0277bd' - weight: 2 - display: - title: Monthly - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: table - empty: false - display_id: monthly_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - monthly_table: - id: monthly_table - display_title: 'Monthly Table' - display_plugin: embed - position: 26 - display_options: - title: Monthly - fields: - visitors_month: - id: visitors_month - table: visitors - field: visitors_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_month - label: Month - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_month: - id: visitors_month - table: visitors - field: visitors_month - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_month: visitors_month - visitor_id: visitor_id - default: '-1' - info: - visitors_month: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: views-align-right - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: Monthly - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - title: false - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: chart - empty: false - display_id: monthly_column - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - os_family_table: - id: os_family_table - display_title: 'OS Family' - display_plugin: embed - position: 14 - display_options: - title: 'OS Family' - fields: - config_os: - id: config_os - table: visitors - field: config_os - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_operating_system - label: 'Operating System families' - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Operating System versions' - empty: false - display_id: os_version_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - os_version_table: - id: os_version_table - display_title: 'OS Version' - display_plugin: embed - position: 15 - display_options: - title: 'OS Version' - fields: - config_os_version: - id: config_os_version - table: visitors - field: config_os_version - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'OS version' - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - config_os: - id: config_os - table: visitors - field: config_os - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_operating_system - label: 'Operating System' - exclude: false - alter: - alter_text: true - text: '{{ config_os }} {{ config_os_version }}' - 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 - icon: true - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - title: false - fields: false - footer: false - display_description: '' - footer: - visitors_display_link: - id: visitors_display_link - table: visitors - field: visitors_display_link - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_display_link - label: 'Operating System families' - empty: false - display_id: os_family_table - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - performance_daily_column: - id: performance_daily_column - display_title: 'Performance Daily' - display_plugin: embed - position: 21 - display_options: - fields: - pf_network: - id: pf_network - table: visitors - field: pf_network - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Network - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_server: - id: pf_server - table: visitors - field: pf_server - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Server - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_transfer: - id: pf_transfer - table: visitors - field: pf_transfer - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Transfer - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_dom_processing: - id: pf_dom_processing - table: visitors - field: pf_dom_processing - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Processing' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_dom_complete: - id: pf_dom_complete - table: visitors - field: pf_dom_complete - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Complete' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_on_load: - id: pf_on_load - table: visitors - field: pf_on_load - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'On Load' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - visitors_day: - id: visitors_day - table: visitors - field: visitors_day - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_day - label: Day - 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: none - options: - offset: 0 - sorts: - visitors_day: - id: visitors_day - table: visitors - field: visitors_day - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_day - stacking: true - data_providers: - pf_network: - enabled: true - color: '#0277bd' - weight: 7 - pf_server: - enabled: true - color: '#ff8f00' - weight: 7 - pf_transfer: - enabled: true - color: '#ad1457' - weight: 7 - pf_dom_processing: - enabled: true - color: '#6a1b9a' - weight: 7 - pf_dom_complete: - enabled: true - color: '#558b2f' - weight: 7 - pf_on_load: - enabled: true - color: '#00838f' - weight: 7 - visitors_day: - enabled: false - color: '#7643b6' - weight: 7 - display: - title: '' - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - relationships: false - fields: false - sorts: false - relationships: { } - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - performance_hourly_column: - id: performance_hourly_column - display_title: 'Performance Hourly' - display_plugin: embed - position: 21 - display_options: - fields: - pf_network: - id: pf_network - table: visitors - field: pf_network - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Network - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_server: - id: pf_server - table: visitors - field: pf_server - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Server - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_transfer: - id: pf_transfer - table: visitors - field: pf_transfer - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Transfer - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_dom_processing: - id: pf_dom_processing - table: visitors - field: pf_dom_processing - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Processing' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_dom_complete: - id: pf_dom_complete - table: visitors - field: pf_dom_complete - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Complete' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_on_load: - id: pf_on_load - table: visitors - field: pf_on_load - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'On Load' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_hour - label: Hour - 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: none - options: - offset: 0 - sorts: - visitors_hour: - id: visitors_hour - table: visitors - field: visitors_hour - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_hour - stacking: true - data_providers: - pf_network: - enabled: true - color: '#0277bd' - weight: 7 - pf_server: - enabled: true - color: '#ff8f00' - weight: 7 - pf_transfer: - enabled: true - color: '#ad1457' - weight: 7 - pf_dom_processing: - enabled: true - color: '#6a1b9a' - weight: 7 - pf_dom_complete: - enabled: true - color: '#558b2f' - weight: 7 - pf_on_load: - enabled: true - color: '#00838f' - weight: 7 - visitors_hour: - enabled: false - color: '#7643b6' - weight: 7 - display: - title: '' - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - relationships: false - fields: false - sorts: false - relationships: { } - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - performance_weekly_column: - id: performance_weekly_column - display_title: 'Performance Weekly' - display_plugin: embed - position: 21 - display_options: - fields: - pf_network: - id: pf_network - table: visitors - field: pf_network - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Network - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_server: - id: pf_server - table: visitors - field: pf_server - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Server - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_transfer: - id: pf_transfer - table: visitors - field: pf_transfer - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: Transfer - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_dom_processing: - id: pf_dom_processing - table: visitors - field: pf_dom_processing - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Processing' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_dom_complete: - id: pf_dom_complete - table: visitors - field: pf_dom_complete - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'DOM Complete' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pf_on_load: - id: pf_on_load - table: visitors - field: pf_on_load - relationship: none - group_type: avg - admin_label: '' - plugin_id: numeric - label: 'On Load' - 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: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_week - label: Week - 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: none - options: - offset: 0 - sorts: - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_week - stacking: true - data_providers: - pf_network: - enabled: true - color: '#0277bd' - weight: 7 - pf_server: - enabled: true - color: '#ff8f00' - weight: 7 - pf_transfer: - enabled: true - color: '#ad1457' - weight: 7 - pf_dom_processing: - enabled: true - color: '#6a1b9a' - weight: 7 - pf_dom_complete: - enabled: true - color: '#558b2f' - weight: 7 - pf_on_load: - enabled: true - color: '#00838f' - weight: 7 - visitors_week: - enabled: false - color: '#7643b6' - weight: 7 - display: - title: '' - title_position: '' - subtitle: '' - data_labels: false - data_markers: true - legend_position: bottom - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - relationships: false - fields: false - sorts: false - relationships: { } - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - recent_view_table: - id: recent_view_table - display_title: 'Recent views' - display_plugin: embed - position: 19 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors 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 - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - visitors_url: - id: visitors_url - table: visitors - field: visitors_url - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: URL - 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 - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - 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: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - 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 - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_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: false - pager: - type: full - options: - offset: 0 - pagination_heading_level: h4 - items_per_page: 10 - 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 - sorts: { } - arguments: - route: - id: route - table: visitors - field: route - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - visitors_ip: - id: visitors_ip - table: visitors - field: visitors_ip - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: upper - path_case: none - transform_dash: false - break_phrase: false - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: visitors_path_op - label: Path - description: '' - use_operator: false - operator: visitors_path_op - operator_limit_selection: false - operator_list: { } - identifier: visitors_path - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '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: { } - filter_groups: - operator: AND - groups: - 1: AND - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_id: visitors_id - visitors_url: visitors_url - visitors_date_time: visitors_date_time - visitor_id: visitor_id - nothing: nothing - default: visitors_date_time - info: - visitors_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_url: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_date_time: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: false - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - nothing: - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: '' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - group_by: false - style: false - row: false - relationships: false - fields: false - sorts: false - arguments: false - filters: false - filter_groups: false - header: false - relationships: { } - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - referrer_table: - id: referrer_table - display_title: 'Referrer views' - display_plugin: embed - position: 19 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors 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 - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - visitors_referer: - id: visitors_referer - table: visitors - field: visitors_referer - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Referrer - 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: '(Direct Entry)' - hide_empty: false - empty_zero: false - hide_alter_empty: true - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - 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: fallback - custom_date_format: '' - timezone: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - 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 - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_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: false - pager: - type: full - options: - offset: 0 - pagination_heading_level: h4 - items_per_page: 10 - 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 - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: default - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: visitors_path - default_argument_options: - pop: 1 - route: 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - pager: false - group_by: false - relationships: false - fields: false - sorts: false - arguments: false - header: false - relationships: { } - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.path - - url.query_args - tags: { } - top_host_table: - id: top_host_table - display_title: 'Top Host' - display_plugin: embed - position: 18 - display_options: - fields: - visitors_ip: - id: visitors_ip - table: visitors - field: visitors_ip - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Host - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/host/{{ visitors_ip }}' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - defaults: - fields: false - header: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - top_path_table: - id: top_path_table - display_title: 'Top Path' - display_plugin: embed - position: 16 - display_options: - title: Path - fields: - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Path - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - defaults: - title: false - fields: false - sorts: false - header: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - top_route_table: - id: top_route_table - display_title: 'Top Route' - display_plugin: embed - position: 17 - display_options: - fields: - route: - id: route - table: visitors - field: route - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Route - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'internal:/visitors/route/{{ route }}' - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - sorts: { } - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - route: - id: route - table: visitors - field: route - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: route_op - label: Route - description: '' - use_operator: false - operator: route_op - operator_limit_selection: false - operator_list: { } - identifier: route - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '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: { } - filter_groups: - operator: AND - groups: - 1: AND - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - route: route - visitor_id: visitor_id - default: visitor_id - info: - route: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: false - caption: '' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - style: false - row: false - fields: false - sorts: false - filters: false - filter_groups: false - header: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - weekly_column: - id: weekly_column - display_title: 'Weekly Column' - display_plugin: embed - position: 26 - display_options: - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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 - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_week - label: Week - 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: none - options: - offset: 0 - sorts: - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: chart - options: - grouping: { } - chart_settings: - library: chartjs - type: column - fields: - label: visitors_week - stacking: false - data_providers: - visitor_id: - enabled: true - color: '#0277bd' - weight: -1 - visitors_week: - enabled: false - color: '#0277bd' - weight: -2 - display: - title: Weekly - title_position: top - subtitle: '' - data_labels: false - data_markers: true - legend_position: '' - background: '' - three_dimensional: 0 - polar: 0 - tooltips: true - dimensions: - width: '' - width_units: '' - height: '' - height_units: '' - gauge: - max: '' - min: '' - green_from: '' - green_to: '' - yellow_from: '' - yellow_to: '' - red_from: '' - red_to: '' - color_changer: false - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } - weekly_table: - id: weekly_table - display_title: 'Weekly Table' - display_plugin: embed - position: 26 - display_options: - fields: - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_week - label: Week - 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 - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: none - options: - offset: 0 - sorts: - visitors_week: - id: visitors_week - table: visitors - field: visitors_week - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_timestamp - order: ASC - expose: - label: '' - field_identifier: '' - exposed: false - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitor_id: visitor_id - visitors_week: visitors_week - default: '-1' - info: - visitor_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_week: - 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 - defaults: - pager: false - style: false - row: false - fields: false - sorts: false - header: false - footer: false - display_description: '' - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - tags: { } diff --git a/config/sync/views.view.visitors_geoip.yml b/config/sync/views.view.visitors_geoip.yml deleted file mode 100644 index be100a6..0000000 --- a/config/sync/views.view.visitors_geoip.yml +++ /dev/null @@ -1,1691 +0,0 @@ -uuid: d028a187-430a-4e0d-a027-bda06beffc7d -langcode: en -status: true -dependencies: - module: - - visitors - enforced: - module: - - visitors_geoip -id: visitors_geoip -label: 'Visitors GeoIP' -module: views -description: 'Region and City location reports.' -tag: '' -base_table: visitors -base_field: '' -display: - default: - id: default - display_title: Default - display_plugin: default - position: 0 - display_options: - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 0 - format_plural_string: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - pager: - type: mini - options: - offset: 0 - pagination_heading_level: h4 - 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: none - options: { } - empty: { } - sorts: { } - arguments: { } - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - visitors_id: visitors_id - visitors_url: visitors_url - visitors_date_time: visitors_date_time - visitor_id: visitor_id - nothing: nothing - default: '-1' - info: - visitors_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_url: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitors_date_time: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: false - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - nothing: - 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: { } - group_by: true - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - city_table: - id: city_table - display_title: City - display_plugin: embed - position: 3 - display_options: - fields: - location_country_2: - id: location_country_2 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_2|lower }}' - 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 - icon: false - text: false - abbreviation: true - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Region url' - 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: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_city_1: - id: location_city_1 - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'City url' - 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: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_city: - id: location_city - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: City - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Country - 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 - icon: true - text: false - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: City - exclude: false - alter: - alter_text: true - text: '{{ location_country }} {{ location_city }}, {{ location_country_1 }}' - make_link: true - path: 'internal:/visitors/location/city/{{ location_country_2 }}/{{ location_region }}/{{ location_city_1 }}' - 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 - icon: false - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 0 - format_plural_string: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - fields: false - arguments: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - recent_view_table: - id: recent_view_table - display_title: 'Recent Views' - display_plugin: embed - position: 3 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors 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 - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - visitors_url: - id: visitors_url - table: visitors - field: visitors_url - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: URL - 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 - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - 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: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - 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 - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_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: false - pager: - type: full - options: - offset: 0 - pagination_heading_level: h4 - items_per_page: 10 - 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 - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: lower - path_case: none - transform_dash: false - break_phrase: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_city: - id: location_city - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - filters: - bot: - id: bot - table: visitors - field: bot - 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: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - 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 - min_placeholder: '' - max_placeholder: '' - 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: { } - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: visitors_path_op - label: Path - description: '' - use_operator: false - operator: visitors_path_op - operator_limit_selection: false - operator_list: { } - identifier: visitors_path - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '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: { } - filter_groups: - operator: AND - groups: - 1: AND - defaults: - pager: false - group_by: false - fields: false - sorts: false - arguments: false - filters: false - filter_groups: false - header: false - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - region_table: - id: region_table - display_title: Region - display_plugin: embed - position: 2 - display_options: - fields: - location_region_1: - id: location_region_1 - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Region link' - 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: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country_2: - id: location_country_2 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_2|lower }}' - make_link: false - path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region }}' - 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 - icon: false - text: false - abbreviation: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Flag - 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 - icon: true - text: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Region - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Region - exclude: false - alter: - alter_text: true - text: '{{location_country }} {{ location_region }}, {{ location_country_1 }} ' - make_link: true - path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region_1 }}' - 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: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: false - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - 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: 0 - format_plural_string: |- - 1 - \x03 - @count - prefix: '' - suffix: '' - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - 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: '' - 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: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - fields: false - arguments: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } diff --git a/config/sync/views.view.visitors_recent_visits.yml b/config/sync/views.view.visitors_recent_visits.yml new file mode 100644 index 0000000..1a379a1 --- /dev/null +++ b/config/sync/views.view.visitors_recent_visits.yml @@ -0,0 +1,603 @@ +uuid: 0879c0fb-b44b-44f9-8ba5-11f5fc5fb7d4 +langcode: en +status: true +dependencies: + module: + - user + - visitors +_core: + default_config_hash: PkfifZUxhfn8hGbu2AUSXWOPzoGfJ1cLv4GK3BkF0AY +id: visitors_recent_visits +label: 'Recent Visits' +module: views +description: '' +tag: '' +base_table: visitors +base_field: '' +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + fields: + visitors_id: + id: visitors_id + table: visitors + field: visitors_id + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: null + plugin_id: numeric + 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 + set_precision: false + precision: 0 + decimal: . + separator: '' + format_plural: false + format_plural_string: !!binary MQNAY291bnQ= + prefix: '' + suffix: '' + visitors_date_time: + id: visitors_date_time + table: visitors + field: visitors_date_time + 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: '' + visitors_url: + id: visitors_url + table: visitors + field: visitors_url + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: URL + 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: visitors_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 + nothing: + id: nothing + table: views + field: nothing + relationship: none + group_type: group + admin_label: '' + plugin_id: custom + label: Details + exclude: false + alter: + alter_text: true + text: details + make_link: true + path: 'internal:/visitors/hits/{{ visitors_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: false + pager: + type: full + options: + offset: 0 + items_per_page: 10 + 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: 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: none + options: { } + empty: { } + sorts: { } + arguments: + route: + id: route + table: visitors + field: route + relationship: none + group_type: group + admin_label: '' + 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: '' + 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: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + filters: + visitors_date_time: + id: visitors_date_time + table: visitors + field: visitors_date_time + relationship: none + group_type: group + admin_label: '' + plugin_id: visitors_date + operator: between + value: + min: from + max: to + value: '' + type: global + 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 + min_placeholder: '' + max_placeholder: '' + 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: { } + bot: + id: bot + table: visitors + field: bot + relationship: none + group_type: group + admin_label: '' + 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: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + visitors_id: visitors_id + default: visitors_id + info: + visitors_id: + sortable: true + default_sort_order: desc + 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: + visitors_uid: + id: visitors_uid + table: visitors + field: visitors_uid + relationship: none + group_type: group + admin_label: uid + plugin_id: standard + required: false + use_ajax: true + header: + result: + id: result + table: views + field: result + relationship: none + group_type: group + admin_label: '' + plugin_id: result + empty: false + content: 'Displaying @start - @end of @total' + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } + host: + id: host + display_title: Host + display_plugin: embed + position: 2 + display_options: + arguments: + visitors_ip: + id: visitors_ip + table: visitors + field: visitors_ip + relationship: none + group_type: group + admin_label: '' + 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: '' + 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: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + defaults: + arguments: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + tags: { } + recent: + id: recent + display_title: Route + display_plugin: embed + position: 1 + display_options: + display_description: '' + 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.visitors_top_visits.yml b/config/sync/views.view.visitors_top_visits.yml new file mode 100644 index 0000000..92d570b --- /dev/null +++ b/config/sync/views.view.visitors_top_visits.yml @@ -0,0 +1,628 @@ +uuid: da24ea8c-fe72-403b-993c-cdb86f67c850 +langcode: en +status: true +dependencies: + module: + - visitors +_core: + default_config_hash: cTLBGAStQ2AurD9E0bTRb3gehMNf9MJvf2AD5y6Mb7o +id: visitors_top_visits +label: 'Top Visits' +module: views +description: '' +tag: '' +base_table: visitors +base_field: '' +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + fields: + visitors_path: + id: visitors_path + table: visitors + field: visitors_path + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: Path + 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 + visitors_id: + id: visitors_id + table: visitors + field: visitors_id + relationship: none + group_type: count + admin_label: '' + entity_type: null + entity_field: null + plugin_id: numeric + label: Visits + 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: 1\x03@count + prefix: '' + suffix: '' + pager: + type: full + options: + offset: 0 + items_per_page: 10 + 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: 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: none + options: { } + empty: { } + sorts: { } + arguments: { } + filters: + visitors_date_time: + id: visitors_date_time + table: visitors + field: visitors_date_time + relationship: none + group_type: group + admin_label: '' + plugin_id: visitors_date + operator: between + value: + min: from + max: to + value: '' + type: global + 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 + min_placeholder: '' + max_placeholder: '' + 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: { } + bot: + id: bot + table: visitors + field: bot + relationship: none + group_type: group + admin_label: '' + 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: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + visitors_ip: visitors_ip + visitors_id: visitors_id + default: visitors_id + info: + visitors_ip: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + visitors_id: + sortable: true + default_sort_order: desc + 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: { } + use_ajax: true + group_by: true + header: + result: + id: result + table: views + field: result + relationship: none + group_type: group + admin_label: '' + plugin_id: result + empty: false + content: 'Displaying @start - @end of @total' + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url.query_args + tags: { } + host: + id: host + display_title: Hosts + display_plugin: embed + position: 3 + display_options: + fields: + visitors_ip: + id: visitors_ip + table: visitors + field: visitors_ip + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: Host + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'internal:/visitors/hosts/{{ visitors_ip }}' + 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 + visitors_id: + id: visitors_id + table: visitors + field: visitors_id + relationship: none + group_type: count + admin_label: '' + entity_type: null + entity_field: null + plugin_id: numeric + label: Visits + 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: 1\x03@count + prefix: '' + suffix: '' + defaults: + fields: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url.query_args + tags: { } + path: + id: path + display_title: Paths + display_plugin: embed + position: 1 + display_options: + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + visitors_path: visitors_path + visitors_id: visitors_id + default: visitors_id + info: + visitors_path: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + visitors_id: + sortable: true + default_sort_order: desc + 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 + defaults: + style: false + row: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url.query_args + tags: { } + route: + id: route + display_title: Routes + display_plugin: embed + position: 2 + display_options: + fields: + route: + id: route + table: visitors + field: route + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + label: Route + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'internal:/visitors/route/{{ route }}' + 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 + visitors_id: + id: visitors_id + table: visitors + field: visitors_id + relationship: none + group_type: count + admin_label: '' + entity_type: null + entity_field: null + plugin_id: numeric + label: Visits + 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: 1\x03@count + prefix: '' + suffix: '' + defaults: + fields: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url.query_args + tags: { } diff --git a/config/sync/views.view.watchdog.yml b/config/sync/views.view.watchdog.yml index 9502757..ca08102 100644 --- a/config/sync/views.view.watchdog.yml +++ b/config/sync/views.view.watchdog.yml @@ -440,7 +440,6 @@ display: type: mini options: offset: 0 - pagination_heading_level: h4 items_per_page: 50 total_pages: null id: 0 diff --git a/config/sync/visitors.config.yml b/config/sync/visitors.config.yml index d341315..9aa91c3 100644 --- a/config/sync/visitors.config.yml +++ b/config/sync/visitors.config.yml @@ -1,10 +1,14 @@ _core: default_config_hash: 9EvDriR0owqXpyJGQ9jcg2YlrreIuyI2j4Hxh7Cdx3c +chart_height: 430 +chart_width: 700 flush_log_timer: 0 bot_retention_log: 0 items_per_page: 10 theme: admin disable_tracking: false +status_codes_disabled: { } +domain_mode: 0 track: userid: true counter: @@ -12,6 +16,8 @@ counter: entity_types: - node display_max_age: 3600 +privacy: + disablecookies: false visibility: request_path_mode: 0 request_path_pages: |- @@ -25,5 +31,7 @@ visibility: user_role_roles: { } user_account_mode: 1 exclude_user1: false -script_type: minified -domain_mode: 0 +codesnippet: + before: '' + after: '' +performance: false diff --git a/drush/sites/self.site.yml b/drush/sites/self.site.yml index ca09312..0675e22 100644 --- a/drush/sites/self.site.yml +++ b/drush/sites/self.site.yml @@ -6,7 +6,7 @@ live: uri: 'https://geo.coop/' user: geo_live test: - host: testopia.agaric.com + host: drutopia.org paths: drush-script: /home/geo_test/site/vendor/bin/drush root: /home/geo_test/site/web diff --git a/geo-coop.code-workspace b/geo-coop.code-workspace deleted file mode 100644 index 07d3e69..0000000 --- a/geo-coop.code-workspace +++ /dev/null @@ -1,10 +0,0 @@ -{ - "folders": [ - { - "path": "." - } - ], - "settings": { - "intelephense.environment.phpVersion": "8.1" - } -} \ No newline at end of file diff --git a/scripts/retain-custom-htaccess.sh b/scripts/retain-custom-htaccess.sh deleted file mode 100755 index 41dd644..0000000 --- a/scripts/retain-custom-htaccess.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -if [ -f ./web/.htaccess.custom ] -then - cd web && mv .htaccess .htaccess.default && cp .htaccess.custom .htaccess - git diff -s --exit-code .htaccess.default || echo 'NOTE: .htaccess.default file has changed! Be sure to integrate latest updates into .htaccess and .htaccess.custom, then commit all three files. For example, meld web/.htaccess.custom web/.htaccess.default' -fi diff --git a/web/libraries/fakeobjects/lang/af.js b/web/libraries/fakeobjects/lang/af.js new file mode 100644 index 0000000..56fe23d --- /dev/null +++ b/web/libraries/fakeobjects/lang/af.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'af', { + anchor: 'Anker', + flash: 'Flash animasie', + hiddenfield: 'Verborge veld', + iframe: 'IFrame', + unknown: 'Onbekende objek' +} ); diff --git a/web/libraries/fakeobjects/lang/ar.js b/web/libraries/fakeobjects/lang/ar.js new file mode 100644 index 0000000..196f00a --- /dev/null +++ b/web/libraries/fakeobjects/lang/ar.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ar', { + anchor: 'إرساء', + flash: 'رسم متحرك بالفلاش', + hiddenfield: 'إدراج حقل خفي', + iframe: 'iframe', + unknown: 'عنصر غير معروف' +} ); diff --git a/web/libraries/fakeobjects/lang/az.js b/web/libraries/fakeobjects/lang/az.js new file mode 100644 index 0000000..74c2e40 --- /dev/null +++ b/web/libraries/fakeobjects/lang/az.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'az', { + anchor: 'Lövbər', + flash: 'Flash animasiya', + hiddenfield: 'Gizli xana', + iframe: 'IFrame', + unknown: 'Tanımamış obyekt' +} ); diff --git a/web/libraries/fakeobjects/lang/bg.js b/web/libraries/fakeobjects/lang/bg.js new file mode 100644 index 0000000..de9ca65 --- /dev/null +++ b/web/libraries/fakeobjects/lang/bg.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'bg', { + anchor: 'Кука', + flash: 'Флаш анимация', + hiddenfield: 'Скрито поле', + iframe: 'IFrame', + unknown: 'Неизвестен обект' +} ); diff --git a/web/libraries/fakeobjects/lang/bn.js b/web/libraries/fakeobjects/lang/bn.js new file mode 100644 index 0000000..6983485 --- /dev/null +++ b/web/libraries/fakeobjects/lang/bn.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'bn', { + anchor: 'Anchor', // MISSING + flash: 'Flash Animation', // MISSING + hiddenfield: 'Hidden Field', // MISSING + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/bs.js b/web/libraries/fakeobjects/lang/bs.js new file mode 100644 index 0000000..cb92ea2 --- /dev/null +++ b/web/libraries/fakeobjects/lang/bs.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'bs', { + anchor: 'Anchor', + flash: 'Flash Animation', // MISSING + hiddenfield: 'Hidden Field', // MISSING + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/ca.js b/web/libraries/fakeobjects/lang/ca.js new file mode 100644 index 0000000..e0a4efd --- /dev/null +++ b/web/libraries/fakeobjects/lang/ca.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ca', { + anchor: 'Àncora', + flash: 'Animació Flash', + hiddenfield: 'Camp ocult', + iframe: 'IFrame', + unknown: 'Objecte desconegut' +} ); diff --git a/web/libraries/fakeobjects/lang/cs.js b/web/libraries/fakeobjects/lang/cs.js new file mode 100644 index 0000000..f4e531c --- /dev/null +++ b/web/libraries/fakeobjects/lang/cs.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'cs', { + anchor: 'Záložka', + flash: 'Flash animace', + hiddenfield: 'Skryté pole', + iframe: 'IFrame', + unknown: 'Neznámý objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/cy.js b/web/libraries/fakeobjects/lang/cy.js new file mode 100644 index 0000000..84325aa --- /dev/null +++ b/web/libraries/fakeobjects/lang/cy.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'cy', { + anchor: 'Angor', + flash: 'Animeiddiant Flash', + hiddenfield: 'Maes Cudd', + iframe: 'IFrame', + unknown: 'Gwrthrych Anhysbys' +} ); diff --git a/web/libraries/fakeobjects/lang/da.js b/web/libraries/fakeobjects/lang/da.js new file mode 100644 index 0000000..19d416c --- /dev/null +++ b/web/libraries/fakeobjects/lang/da.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'da', { + anchor: 'Anker', + flash: 'Flashanimation', + hiddenfield: 'Skjult felt', + iframe: 'Iframe', + unknown: 'Ukendt objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/de-ch.js b/web/libraries/fakeobjects/lang/de-ch.js new file mode 100644 index 0000000..b2b1871 --- /dev/null +++ b/web/libraries/fakeobjects/lang/de-ch.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'de-ch', { + anchor: 'Anker', + flash: 'Flash-Animation', + hiddenfield: 'Verstecktes Feld', + iframe: 'IFrame', + unknown: 'Unbekanntes Objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/de.js b/web/libraries/fakeobjects/lang/de.js new file mode 100644 index 0000000..93e7420 --- /dev/null +++ b/web/libraries/fakeobjects/lang/de.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'de', { + anchor: 'Anker', + flash: 'Flash-Animation', + hiddenfield: 'Verstecktes Feld', + iframe: 'IFrame', + unknown: 'Unbekanntes Objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/el.js b/web/libraries/fakeobjects/lang/el.js new file mode 100644 index 0000000..84efc13 --- /dev/null +++ b/web/libraries/fakeobjects/lang/el.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'el', { + anchor: 'Άγκυρα', + flash: 'Ταινία Flash', + hiddenfield: 'Κρυφό Πεδίο', + iframe: 'IFrame', + unknown: 'Άγνωστο Αντικείμενο' +} ); diff --git a/web/libraries/fakeobjects/lang/en-au.js b/web/libraries/fakeobjects/lang/en-au.js new file mode 100644 index 0000000..6ef42e5 --- /dev/null +++ b/web/libraries/fakeobjects/lang/en-au.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'en-au', { + anchor: 'Anchor', + flash: 'Flash Animation', + hiddenfield: 'Hidden Field', + iframe: 'IFrame', + unknown: 'Unknown Object' +} ); diff --git a/web/libraries/fakeobjects/lang/en-ca.js b/web/libraries/fakeobjects/lang/en-ca.js new file mode 100644 index 0000000..d30cada --- /dev/null +++ b/web/libraries/fakeobjects/lang/en-ca.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'en-ca', { + anchor: 'Anchor', // MISSING + flash: 'Flash Animation', // MISSING + hiddenfield: 'Hidden Field', // MISSING + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/en-gb.js b/web/libraries/fakeobjects/lang/en-gb.js new file mode 100644 index 0000000..601d658 --- /dev/null +++ b/web/libraries/fakeobjects/lang/en-gb.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'en-gb', { + anchor: 'Anchor', + flash: 'Flash Animation', + hiddenfield: 'Hidden Field', + iframe: 'IFrame', + unknown: 'Unknown Object' +} ); diff --git a/web/libraries/fakeobjects/lang/en.js b/web/libraries/fakeobjects/lang/en.js new file mode 100644 index 0000000..b959193 --- /dev/null +++ b/web/libraries/fakeobjects/lang/en.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'en', { + anchor: 'Anchor', + flash: 'Flash Animation', + hiddenfield: 'Hidden Field', + iframe: 'IFrame', + unknown: 'Unknown Object' +} ); diff --git a/web/libraries/fakeobjects/lang/eo.js b/web/libraries/fakeobjects/lang/eo.js new file mode 100644 index 0000000..dc91899 --- /dev/null +++ b/web/libraries/fakeobjects/lang/eo.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'eo', { + anchor: 'Ankro', + flash: 'FlaŝAnimacio', + hiddenfield: 'Kaŝita kampo', + iframe: 'Enlinia Kadro (IFrame)', + unknown: 'Nekonata objekto' +} ); diff --git a/web/libraries/fakeobjects/lang/es-mx.js b/web/libraries/fakeobjects/lang/es-mx.js new file mode 100644 index 0000000..ed1afba --- /dev/null +++ b/web/libraries/fakeobjects/lang/es-mx.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'es-mx', { + anchor: 'Ancla', + flash: 'Animación flash', + hiddenfield: 'Campo oculto', + iframe: 'IFrame', + unknown: 'Objeto desconocido' +} ); diff --git a/web/libraries/fakeobjects/lang/es.js b/web/libraries/fakeobjects/lang/es.js new file mode 100644 index 0000000..431879a --- /dev/null +++ b/web/libraries/fakeobjects/lang/es.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'es', { + anchor: 'Ancla', + flash: 'Animación flash', + hiddenfield: 'Campo oculto', + iframe: 'IFrame', + unknown: 'Objeto desconocido' +} ); diff --git a/web/libraries/fakeobjects/lang/et.js b/web/libraries/fakeobjects/lang/et.js new file mode 100644 index 0000000..1ccf54e --- /dev/null +++ b/web/libraries/fakeobjects/lang/et.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'et', { + anchor: 'Ankur', + flash: 'Flashi animatsioon', + hiddenfield: 'Varjatud väli', + iframe: 'IFrame', + unknown: 'Tundmatu objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/eu.js b/web/libraries/fakeobjects/lang/eu.js new file mode 100644 index 0000000..5fb9646 --- /dev/null +++ b/web/libraries/fakeobjects/lang/eu.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'eu', { + anchor: 'Aingura', + flash: 'Flash animazioa', + hiddenfield: 'Ezkutuko eremua', + iframe: 'IFrame-a', + unknown: 'Objektu ezezaguna' +} ); diff --git a/web/libraries/fakeobjects/lang/fa.js b/web/libraries/fakeobjects/lang/fa.js new file mode 100644 index 0000000..f0a51f2 --- /dev/null +++ b/web/libraries/fakeobjects/lang/fa.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'fa', { + anchor: 'لنگر', + flash: 'انیمشن فلش', + hiddenfield: 'فیلد پنهان', + iframe: 'IFrame', + unknown: 'شیء ناشناخته' +} ); diff --git a/web/libraries/fakeobjects/lang/fi.js b/web/libraries/fakeobjects/lang/fi.js new file mode 100644 index 0000000..7441b0f --- /dev/null +++ b/web/libraries/fakeobjects/lang/fi.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'fi', { + anchor: 'Ankkuri', + flash: 'Flash animaatio', + hiddenfield: 'Piilokenttä', + iframe: 'IFrame-kehys', + unknown: 'Tuntematon objekti' +} ); diff --git a/web/libraries/fakeobjects/lang/fo.js b/web/libraries/fakeobjects/lang/fo.js new file mode 100644 index 0000000..dd596d8 --- /dev/null +++ b/web/libraries/fakeobjects/lang/fo.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'fo', { + anchor: 'Anchor', + flash: 'Flash Animation', + hiddenfield: 'Fjaldur teigur', + iframe: 'IFrame', + unknown: 'Ókent Object' +} ); diff --git a/web/libraries/fakeobjects/lang/fr-ca.js b/web/libraries/fakeobjects/lang/fr-ca.js new file mode 100644 index 0000000..61c5362 --- /dev/null +++ b/web/libraries/fakeobjects/lang/fr-ca.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'fr-ca', { + anchor: 'Ancre', + flash: 'Animation Flash', + hiddenfield: 'Champ caché', + iframe: 'IFrame', + unknown: 'Objet inconnu' +} ); diff --git a/web/libraries/fakeobjects/lang/fr.js b/web/libraries/fakeobjects/lang/fr.js new file mode 100644 index 0000000..2346e62 --- /dev/null +++ b/web/libraries/fakeobjects/lang/fr.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'fr', { + anchor: 'Ancre', + flash: 'Animation Flash', + hiddenfield: 'Champ invisible', + iframe: 'Cadre de contenu incorporé', + unknown: 'Objet inconnu' +} ); diff --git a/web/libraries/fakeobjects/lang/gl.js b/web/libraries/fakeobjects/lang/gl.js new file mode 100644 index 0000000..88c5ff2 --- /dev/null +++ b/web/libraries/fakeobjects/lang/gl.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'gl', { + anchor: 'Ancoraxe', + flash: 'Animación «Flash»', + hiddenfield: 'Campo agochado', + iframe: 'IFrame', + unknown: 'Obxecto descoñecido' +} ); diff --git a/web/libraries/fakeobjects/lang/gu.js b/web/libraries/fakeobjects/lang/gu.js new file mode 100644 index 0000000..640db0d --- /dev/null +++ b/web/libraries/fakeobjects/lang/gu.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'gu', { + anchor: 'અનકર', + flash: 'ફ્લેશ ', + hiddenfield: 'હિડન ', + iframe: 'IFrame', + unknown: 'અનનોન ઓબ્જેક્ટ' +} ); diff --git a/web/libraries/fakeobjects/lang/he.js b/web/libraries/fakeobjects/lang/he.js new file mode 100644 index 0000000..adb420c --- /dev/null +++ b/web/libraries/fakeobjects/lang/he.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'he', { + anchor: 'עוגן', + flash: 'סרטון פלאש', + hiddenfield: 'שדה חבוי', + iframe: 'חלון פנימי (iframe)', + unknown: 'אובייקט לא ידוע' +} ); diff --git a/web/libraries/fakeobjects/lang/hi.js b/web/libraries/fakeobjects/lang/hi.js new file mode 100644 index 0000000..4a59e18 --- /dev/null +++ b/web/libraries/fakeobjects/lang/hi.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'hi', { + anchor: 'ऐंकर इन्सर्ट/संपादन', + flash: 'Flash Animation', // MISSING + hiddenfield: 'गुप्त फ़ील्ड', + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/hr.js b/web/libraries/fakeobjects/lang/hr.js new file mode 100644 index 0000000..5a56cf3 --- /dev/null +++ b/web/libraries/fakeobjects/lang/hr.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'hr', { + anchor: 'Sidro', + flash: 'Flash animacija', + hiddenfield: 'Sakriveno polje', + iframe: 'IFrame', + unknown: 'Nepoznati objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/hu.js b/web/libraries/fakeobjects/lang/hu.js new file mode 100644 index 0000000..47199cd --- /dev/null +++ b/web/libraries/fakeobjects/lang/hu.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'hu', { + anchor: 'Horgony', + flash: 'Flash animáció', + hiddenfield: 'Rejtett mezõ', + iframe: 'IFrame', + unknown: 'Ismeretlen objektum' +} ); diff --git a/web/libraries/fakeobjects/lang/id.js b/web/libraries/fakeobjects/lang/id.js new file mode 100644 index 0000000..717ca54 --- /dev/null +++ b/web/libraries/fakeobjects/lang/id.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'id', { + anchor: 'Anchor', // MISSING + flash: 'Animasi Flash', + hiddenfield: 'Kolom Tersembunyi', + iframe: 'IFrame', + unknown: 'Obyek Tak Dikenal' +} ); diff --git a/web/libraries/fakeobjects/lang/is.js b/web/libraries/fakeobjects/lang/is.js new file mode 100644 index 0000000..0d878a1 --- /dev/null +++ b/web/libraries/fakeobjects/lang/is.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'is', { + anchor: 'Anchor', // MISSING + flash: 'Flash Animation', // MISSING + hiddenfield: 'Hidden Field', // MISSING + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/it.js b/web/libraries/fakeobjects/lang/it.js new file mode 100644 index 0000000..bcc9f9e --- /dev/null +++ b/web/libraries/fakeobjects/lang/it.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'it', { + anchor: 'Ancora', + flash: 'Animazione Flash', + hiddenfield: 'Campo Nascosto', + iframe: 'IFrame', + unknown: 'Oggetto sconosciuto' +} ); diff --git a/web/libraries/fakeobjects/lang/ja.js b/web/libraries/fakeobjects/lang/ja.js new file mode 100644 index 0000000..1128caf --- /dev/null +++ b/web/libraries/fakeobjects/lang/ja.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ja', { + anchor: 'アンカー', + flash: 'Flash Animation', + hiddenfield: '不可視フィールド', + iframe: 'IFrame', + unknown: 'Unknown Object' +} ); diff --git a/web/libraries/fakeobjects/lang/ka.js b/web/libraries/fakeobjects/lang/ka.js new file mode 100644 index 0000000..6f98bdd --- /dev/null +++ b/web/libraries/fakeobjects/lang/ka.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ka', { + anchor: 'ღუზა', + flash: 'Flash ანიმაცია', + hiddenfield: 'მალული ველი', + iframe: 'IFrame', + unknown: 'უცნობი ობიექტი' +} ); diff --git a/web/libraries/fakeobjects/lang/km.js b/web/libraries/fakeobjects/lang/km.js new file mode 100644 index 0000000..79027ea --- /dev/null +++ b/web/libraries/fakeobjects/lang/km.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'km', { + anchor: 'យុថ្កា', + flash: 'Flash មានចលនា', + hiddenfield: 'វាលកំបាំង', + iframe: 'IFrame', + unknown: 'វត្ថុមិនស្គាល់' +} ); diff --git a/web/libraries/fakeobjects/lang/ko.js b/web/libraries/fakeobjects/lang/ko.js new file mode 100644 index 0000000..5bd8d0c --- /dev/null +++ b/web/libraries/fakeobjects/lang/ko.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ko', { + anchor: '책갈피', + flash: '플래시 애니메이션', + hiddenfield: '숨은 입력 칸', + iframe: '아이프레임', + unknown: '알 수 없는 객체' +} ); diff --git a/web/libraries/fakeobjects/lang/ku.js b/web/libraries/fakeobjects/lang/ku.js new file mode 100644 index 0000000..a2df75c --- /dev/null +++ b/web/libraries/fakeobjects/lang/ku.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ku', { + anchor: 'لەنگەر', + flash: 'فلاش', + hiddenfield: 'شاردنەوەی خانه', + iframe: 'لەچوارچێوە', + unknown: 'بەرکارێکی نەناسراو' +} ); diff --git a/web/libraries/fakeobjects/lang/lt.js b/web/libraries/fakeobjects/lang/lt.js new file mode 100644 index 0000000..bc4292c --- /dev/null +++ b/web/libraries/fakeobjects/lang/lt.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'lt', { + anchor: 'Žymė', + flash: 'Flash animacija', + hiddenfield: 'Paslėptas laukas', + iframe: 'IFrame', + unknown: 'Nežinomas objektas' +} ); diff --git a/web/libraries/fakeobjects/lang/lv.js b/web/libraries/fakeobjects/lang/lv.js new file mode 100644 index 0000000..6877cd1 --- /dev/null +++ b/web/libraries/fakeobjects/lang/lv.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'lv', { + anchor: 'Iezīme', + flash: 'Flash animācija', + hiddenfield: 'Slēpts lauks', + iframe: 'Iframe', + unknown: 'Nezināms objekts' +} ); diff --git a/web/libraries/fakeobjects/lang/mk.js b/web/libraries/fakeobjects/lang/mk.js new file mode 100644 index 0000000..dc11789 --- /dev/null +++ b/web/libraries/fakeobjects/lang/mk.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'mk', { + anchor: 'Anchor', + flash: 'Flash Animation', // MISSING + hiddenfield: 'Скриено поле', + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/mn.js b/web/libraries/fakeobjects/lang/mn.js new file mode 100644 index 0000000..67a28b2 --- /dev/null +++ b/web/libraries/fakeobjects/lang/mn.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'mn', { + anchor: 'Зангуу', + flash: 'Flash Animation', // MISSING + hiddenfield: 'Нууц талбар', + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/ms.js b/web/libraries/fakeobjects/lang/ms.js new file mode 100644 index 0000000..011e664 --- /dev/null +++ b/web/libraries/fakeobjects/lang/ms.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ms', { + anchor: 'Anchor', // MISSING + flash: 'Flash Animation', // MISSING + hiddenfield: 'Hidden Field', // MISSING + iframe: 'IFrame', // MISSING + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/nb.js b/web/libraries/fakeobjects/lang/nb.js new file mode 100644 index 0000000..9d2d4e9 --- /dev/null +++ b/web/libraries/fakeobjects/lang/nb.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'nb', { + anchor: 'Anker', + flash: 'Flash-animasjon', + hiddenfield: 'Skjult felt', + iframe: 'IFrame', + unknown: 'Ukjent objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/nl.js b/web/libraries/fakeobjects/lang/nl.js new file mode 100644 index 0000000..5e9cbd8 --- /dev/null +++ b/web/libraries/fakeobjects/lang/nl.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'nl', { + anchor: 'Interne link', + flash: 'Flash animatie', + hiddenfield: 'Verborgen veld', + iframe: 'IFrame', + unknown: 'Onbekend object' +} ); diff --git a/web/libraries/fakeobjects/lang/no.js b/web/libraries/fakeobjects/lang/no.js new file mode 100644 index 0000000..4e440cf --- /dev/null +++ b/web/libraries/fakeobjects/lang/no.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'no', { + anchor: 'Anker', + flash: 'Flash-animasjon', + hiddenfield: 'Skjult felt', + iframe: 'IFrame', + unknown: 'Ukjent objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/oc.js b/web/libraries/fakeobjects/lang/oc.js new file mode 100644 index 0000000..71d0dd1 --- /dev/null +++ b/web/libraries/fakeobjects/lang/oc.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'oc', { + anchor: 'Ancòra', + flash: 'Animacion Flash', + hiddenfield: 'Camp invisible', + iframe: 'Quadre de contengut incorporat', + unknown: 'Objècte desconegut' +} ); diff --git a/web/libraries/fakeobjects/lang/pl.js b/web/libraries/fakeobjects/lang/pl.js new file mode 100644 index 0000000..1e41a60 --- /dev/null +++ b/web/libraries/fakeobjects/lang/pl.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'pl', { + anchor: 'Kotwica', + flash: 'Animacja Flash', + hiddenfield: 'Pole ukryte', + iframe: 'IFrame', + unknown: 'Nieznany obiekt' +} ); diff --git a/web/libraries/fakeobjects/lang/pt-br.js b/web/libraries/fakeobjects/lang/pt-br.js new file mode 100644 index 0000000..92bf089 --- /dev/null +++ b/web/libraries/fakeobjects/lang/pt-br.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'pt-br', { + anchor: 'Âncora', + flash: 'Animação em Flash', + hiddenfield: 'Campo Oculto', + iframe: 'IFrame', + unknown: 'Objeto desconhecido' +} ); diff --git a/web/libraries/fakeobjects/lang/pt.js b/web/libraries/fakeobjects/lang/pt.js new file mode 100644 index 0000000..2d02e28 --- /dev/null +++ b/web/libraries/fakeobjects/lang/pt.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'pt', { + anchor: ' Inserir/Editar âncora', + flash: 'Animação Flash', + hiddenfield: 'Campo oculto', + iframe: 'IFrame', + unknown: 'Objeto desconhecido' +} ); diff --git a/web/libraries/fakeobjects/lang/ro.js b/web/libraries/fakeobjects/lang/ro.js new file mode 100644 index 0000000..d69fee1 --- /dev/null +++ b/web/libraries/fakeobjects/lang/ro.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ro', { + anchor: 'Inserează/Editează ancoră', + flash: 'Element Flash', + hiddenfield: 'Câmp ascuns (HiddenField)', + iframe: 'Fereastră în fereastră (iframe)', + unknown: 'Necunoscut' +} ); diff --git a/web/libraries/fakeobjects/lang/ru.js b/web/libraries/fakeobjects/lang/ru.js new file mode 100644 index 0000000..086a1d3 --- /dev/null +++ b/web/libraries/fakeobjects/lang/ru.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ru', { + anchor: 'Якорь', + flash: 'Flash анимация', + hiddenfield: 'Скрытое поле', + iframe: 'iFrame', + unknown: 'Неизвестный объект' +} ); diff --git a/web/libraries/fakeobjects/lang/si.js b/web/libraries/fakeobjects/lang/si.js new file mode 100644 index 0000000..452d19c --- /dev/null +++ b/web/libraries/fakeobjects/lang/si.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'si', { + anchor: 'ආධාරය', + flash: 'Flash Animation', // MISSING + hiddenfield: 'සැඟවුණු ප්රදේශය', + iframe: 'IFrame', + unknown: 'Unknown Object' // MISSING +} ); diff --git a/web/libraries/fakeobjects/lang/sk.js b/web/libraries/fakeobjects/lang/sk.js new file mode 100644 index 0000000..f69ef25 --- /dev/null +++ b/web/libraries/fakeobjects/lang/sk.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'sk', { + anchor: 'Kotva', + flash: 'Flash animácia', + hiddenfield: 'Skryté pole', + iframe: 'IFrame', + unknown: 'Neznámy objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/sl.js b/web/libraries/fakeobjects/lang/sl.js new file mode 100644 index 0000000..28a9fc4 --- /dev/null +++ b/web/libraries/fakeobjects/lang/sl.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'sl', { + anchor: 'Sidro', + flash: 'Animacija flash', + hiddenfield: 'Skrito polje', + iframe: 'IFrame', + unknown: 'Neznan objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/sq.js b/web/libraries/fakeobjects/lang/sq.js new file mode 100644 index 0000000..4991988 --- /dev/null +++ b/web/libraries/fakeobjects/lang/sq.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'sq', { + anchor: 'Spirancë', + flash: 'Objekt flash', + hiddenfield: 'Fushë e fshehur', + iframe: 'IFrame', + unknown: 'Objekt i Panjohur' +} ); diff --git a/web/libraries/fakeobjects/lang/sr-latn.js b/web/libraries/fakeobjects/lang/sr-latn.js new file mode 100644 index 0000000..264ad7f --- /dev/null +++ b/web/libraries/fakeobjects/lang/sr-latn.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'sr-latn', { + anchor: 'Sidro', + flash: 'Fleš animacija', + hiddenfield: 'Skriveno polje', + iframe: 'IFrame', + unknown: 'Nepoznat objekat' +} ); diff --git a/web/libraries/fakeobjects/lang/sr.js b/web/libraries/fakeobjects/lang/sr.js new file mode 100644 index 0000000..700b200 --- /dev/null +++ b/web/libraries/fakeobjects/lang/sr.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'sr', { + anchor: 'Сидро', + flash: 'Флеш анимација', + hiddenfield: 'Скривено полје', + iframe: 'IFrame', + unknown: 'Непознат објекат' +} ); diff --git a/web/libraries/fakeobjects/lang/sv.js b/web/libraries/fakeobjects/lang/sv.js new file mode 100644 index 0000000..c9f2b5f --- /dev/null +++ b/web/libraries/fakeobjects/lang/sv.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'sv', { + anchor: 'Ankare', + flash: 'Flashanimation', + hiddenfield: 'Gömt fält', + iframe: 'iFrame', + unknown: 'Okänt objekt' +} ); diff --git a/web/libraries/fakeobjects/lang/th.js b/web/libraries/fakeobjects/lang/th.js new file mode 100644 index 0000000..19b888e --- /dev/null +++ b/web/libraries/fakeobjects/lang/th.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'th', { + anchor: 'แทรก/แก้ไข Anchor', + flash: 'ภาพอนิเมชั่นแฟลช', + hiddenfield: 'ฮิดเดนฟิลด์', + iframe: 'IFrame', + unknown: 'วัตถุไม่ทราบชนิด' +} ); diff --git a/web/libraries/fakeobjects/lang/tr.js b/web/libraries/fakeobjects/lang/tr.js new file mode 100644 index 0000000..91cdc4f --- /dev/null +++ b/web/libraries/fakeobjects/lang/tr.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'tr', { + anchor: 'Bağlantı', + flash: 'Flash Animasyonu', + hiddenfield: 'Gizli Alan', + iframe: 'IFrame', + unknown: 'Bilinmeyen Nesne' +} ); diff --git a/web/libraries/fakeobjects/lang/tt.js b/web/libraries/fakeobjects/lang/tt.js new file mode 100644 index 0000000..1f37fac --- /dev/null +++ b/web/libraries/fakeobjects/lang/tt.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'tt', { + anchor: 'Якорь', + flash: 'Флеш анимациясы', + hiddenfield: 'Яшерен кыр', + iframe: 'IFrame', + unknown: 'Танылмаган объект' +} ); diff --git a/web/libraries/fakeobjects/lang/ug.js b/web/libraries/fakeobjects/lang/ug.js new file mode 100644 index 0000000..593c085 --- /dev/null +++ b/web/libraries/fakeobjects/lang/ug.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'ug', { + anchor: 'لەڭگەرلىك نۇقتا', + flash: 'Flash جانلاندۇرۇم', + hiddenfield: 'يوشۇرۇن دائىرە', + iframe: 'IFrame', + unknown: 'يوچۇن نەڭ' +} ); diff --git a/web/libraries/fakeobjects/lang/uk.js b/web/libraries/fakeobjects/lang/uk.js new file mode 100644 index 0000000..819dacf --- /dev/null +++ b/web/libraries/fakeobjects/lang/uk.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'uk', { + anchor: 'Якір', + flash: 'Flash-анімація', + hiddenfield: 'Приховані Поля', + iframe: 'IFrame', + unknown: 'Невідомий об\'єкт' +} ); diff --git a/web/libraries/fakeobjects/lang/vi.js b/web/libraries/fakeobjects/lang/vi.js new file mode 100644 index 0000000..2831d70 --- /dev/null +++ b/web/libraries/fakeobjects/lang/vi.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'vi', { + anchor: 'Điểm neo', + flash: 'Flash', + hiddenfield: 'Trường ẩn', + iframe: 'IFrame', + unknown: 'Đối tượng không rõ ràng' +} ); diff --git a/web/libraries/fakeobjects/lang/zh-cn.js b/web/libraries/fakeobjects/lang/zh-cn.js new file mode 100644 index 0000000..a999469 --- /dev/null +++ b/web/libraries/fakeobjects/lang/zh-cn.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'zh-cn', { + anchor: '锚点', + flash: 'Flash 动画', + hiddenfield: '隐藏域', + iframe: 'IFrame', + unknown: '未知对象' +} ); diff --git a/web/libraries/fakeobjects/lang/zh.js b/web/libraries/fakeobjects/lang/zh.js new file mode 100644 index 0000000..b9e9df3 --- /dev/null +++ b/web/libraries/fakeobjects/lang/zh.js @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang( 'fakeobjects', 'zh', { + anchor: '錨點', + flash: 'Flash 動畫', + hiddenfield: '隱藏欄位', + iframe: 'IFrame', + unknown: '無法辨識的物件' +} ); diff --git a/web/libraries/fakeobjects/plugin.js b/web/libraries/fakeobjects/plugin.js new file mode 100644 index 0000000..51e5575 --- /dev/null +++ b/web/libraries/fakeobjects/plugin.js @@ -0,0 +1,199 @@ +/** + * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ + +( function() { + var cssStyle = CKEDITOR.htmlParser.cssStyle, + cssLength = CKEDITOR.tools.cssLength; + + var cssLengthRegex = /^((?:\d*(?:\.\d+))|(?:\d+))(.*)?$/i; + + // Replacing the former CSS length value with the later one, with + // adjustment to the length unit. + function replaceCssLength( length1, length2 ) { + var parts1 = cssLengthRegex.exec( length1 ), + parts2 = cssLengthRegex.exec( length2 ); + + // Omit pixel length unit when necessary, + // e.g. replaceCssLength( 10, '20px' ) -> 20 + if ( parts1 ) { + if ( !parts1[ 2 ] && parts2[ 2 ] == 'px' ) + return parts2[ 1 ]; + if ( parts1[ 2 ] == 'px' && !parts2[ 2 ] ) + return parts2[ 1 ] + 'px'; + } + + return length2; + } + + var htmlFilterRules = { + elements: { + $: function( element ) { + var attributes = element.attributes, + realHtml = attributes && attributes[ 'data-cke-realelement' ], + realFragment = realHtml && new CKEDITOR.htmlParser.fragment.fromHtml( decodeURIComponent( realHtml ) ), + realElement = realFragment && realFragment.children[ 0 ]; + + // Width/height in the fake object are subjected to clone into the real element. + if ( realElement && element.attributes[ 'data-cke-resizable' ] ) { + var styles = new cssStyle( element ).rules, + realAttrs = realElement.attributes, + width = styles.width, + height = styles.height; + + width && ( realAttrs.width = replaceCssLength( realAttrs.width, width ) ); + height && ( realAttrs.height = replaceCssLength( realAttrs.height, height ) ); + } + + return realElement; + } + } + }; + + CKEDITOR.plugins.add( 'fakeobjects', { + // jscs:disable maximumLineLength + lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,es-mx,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% + // jscs:enable maximumLineLength + + init: function( editor ) { + // Allow image with all styles and classes plus src, alt and title attributes. + // We need them when fakeobject is pasted. + editor.filter.allow( 'img[!data-cke-realelement,src,alt,title](*){*}', 'fakeobjects' ); + }, + + afterInit: function( editor ) { + var dataProcessor = editor.dataProcessor, + htmlFilter = dataProcessor && dataProcessor.htmlFilter; + + if ( htmlFilter ) { + htmlFilter.addRules( htmlFilterRules, { + applyToAll: true + } ); + } + } + } ); + + /** + * Creates fake {@link CKEDITOR.dom.element} based on real element. + * Fake element is an img with special attributes, which keep real element properties. + * + * @member CKEDITOR.editor + * @param {CKEDITOR.dom.element} realElement Real element to transform. + * @param {String} className Class name which will be used as class of fake element. + * @param {String} realElementType Stores type of fake element. + * @param {Boolean} isResizable Keeps information if element is resizable. + * @returns {CKEDITOR.dom.element} Fake element. + */ + CKEDITOR.editor.prototype.createFakeElement = function( realElement, className, realElementType, isResizable ) { + var lang = this.lang.fakeobjects, + label = lang[ realElementType ] || lang.unknown; + + var attributes = { + 'class': className, + 'data-cke-realelement': encodeURIComponent( realElement.getOuterHtml() ), + 'data-cke-real-node-type': realElement.type, + alt: label, + title: label, + align: realElement.getAttribute( 'align' ) || '' + }; + + // Do not set "src" on high-contrast so the alt text is displayed. (https://dev.ckeditor.com/ticket/8945) + if ( !CKEDITOR.env.hc ) + attributes.src = CKEDITOR.tools.transparentImageData; + + if ( realElementType ) + attributes[ 'data-cke-real-element-type' ] = realElementType; + + if ( isResizable ) { + attributes[ 'data-cke-resizable' ] = isResizable; + + var fakeStyle = new cssStyle(); + + var width = realElement.getAttribute( 'width' ), + height = realElement.getAttribute( 'height' ); + + width && ( fakeStyle.rules.width = cssLength( width ) ); + height && ( fakeStyle.rules.height = cssLength( height ) ); + fakeStyle.populate( attributes ); + } + + return this.document.createElement( 'img', { attributes: attributes } ); + }; + + /** + * Creates fake {@link CKEDITOR.htmlParser.element} based on real element. + * + * @member CKEDITOR.editor + * @param {CKEDITOR.dom.element} realElement Real element to transform. + * @param {String} className Class name which will be used as class of fake element. + * @param {String} realElementType Store type of fake element. + * @param {Boolean} isResizable Keep information if element is resizable. + * @returns {CKEDITOR.htmlParser.element} Fake htmlParser element. + */ + CKEDITOR.editor.prototype.createFakeParserElement = function( realElement, className, realElementType, isResizable ) { + var lang = this.lang.fakeobjects, + label = lang[ realElementType ] || lang.unknown, + html; + + var writer = new CKEDITOR.htmlParser.basicWriter(); + realElement.writeHtml( writer ); + html = writer.getHtml(); + + var attributes = { + 'class': className, + 'data-cke-realelement': encodeURIComponent( html ), + 'data-cke-real-node-type': realElement.type, + alt: label, + title: label, + align: realElement.attributes.align || '' + }; + + // Do not set "src" on high-contrast so the alt text is displayed. (https://dev.ckeditor.com/ticket/8945) + if ( !CKEDITOR.env.hc ) + attributes.src = CKEDITOR.tools.transparentImageData; + + if ( realElementType ) + attributes[ 'data-cke-real-element-type' ] = realElementType; + + if ( isResizable ) { + attributes[ 'data-cke-resizable' ] = isResizable; + var realAttrs = realElement.attributes, + fakeStyle = new cssStyle(); + + var width = realAttrs.width, + height = realAttrs.height; + + width !== undefined && ( fakeStyle.rules.width = cssLength( width ) ); + height !== undefined && ( fakeStyle.rules.height = cssLength( height ) ); + fakeStyle.populate( attributes ); + } + + return new CKEDITOR.htmlParser.element( 'img', attributes ); + }; + + /** + * Creates {@link CKEDITOR.dom.element} from fake element. + * + * @member CKEDITOR.editor + * @param {CKEDITOR.dom.element} fakeElement Fake element to transform. + * @returns {CKEDITOR.dom.element/null} Returns real element or `null` if transformed element wasn't fake. + */ + CKEDITOR.editor.prototype.restoreRealElement = function( fakeElement ) { + if ( fakeElement.data( 'cke-real-node-type' ) != CKEDITOR.NODE_ELEMENT ) + return null; + + var element = CKEDITOR.dom.element.createFromHtml( decodeURIComponent( fakeElement.data( 'cke-realelement' ) ), this.document ); + + if ( fakeElement.data( 'cke-resizable' ) ) { + var width = fakeElement.getStyle( 'width' ), + height = fakeElement.getStyle( 'height' ); + + width && element.setAttribute( 'width', replaceCssLength( element.getAttribute( 'width' ), width ) ); + height && element.setAttribute( 'height', replaceCssLength( element.getAttribute( 'height' ), height ) ); + } + + return element; + }; + +} )(); diff --git a/web/themes/custom/geofresco/README.md b/web/themes/custom/geofresco/README.md index a202a5c..dcad156 100644 --- a/web/themes/custom/geofresco/README.md +++ b/web/themes/custom/geofresco/README.md @@ -45,19 +45,12 @@ Autoprefixer & Babel is set to support: These can be updated at any time within the `package.json`. -### Run the following command from the theme directory - -`ddev npm install` - -### Alternat non-DDEV - -Run the following command from the theme directory (that's the folder where this README is). - -#### Use the right version of node with: - +### Run the following commands from the theme directory If you haven't yet, install nvm: https://github.com/creationix/nvm +#### Use the right version of node with: + `nvm use` _This command will look at your `.nvmrc` file and use the version node.js specified in it. This ensures all developers use the same version of node for consistency._ diff --git a/web/themes/custom/geofresco/dist/css/global.css b/web/themes/custom/geofresco/dist/css/global.css index 996f3c5..2de7949 100644 --- a/web/themes/custom/geofresco/dist/css/global.css +++ b/web/themes/custom/geofresco/dist/css/global.css @@ -1,43 +1,212 @@ -@charset "UTF-8"; -/* Bulma Utilities */ -:root { - --bulma-control-radius: var(--bulma-radius); - --bulma-control-radius-small: var(--bulma-radius-small); - --bulma-control-border-width: 1px; - --bulma-control-height: 2.5em; - --bulma-control-line-height: 1.5; - --bulma-control-padding-vertical: calc(0.5em - 1px); - --bulma-control-padding-horizontal: calc(0.75em - 1px); - --bulma-control-size: var(--bulma-size-normal); - --bulma-control-focus-shadow-l: 50%; -} +@keyframes spinAround { + from { + transform: rotate(0deg); } + to { + transform: rotate(359deg); } } + +.tabs, .pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis, .breadcrumb, .file, .button, .is-unselectable, .modal-close, .delete { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + +.navbar-link:not(.is-arrowless)::after, .select:not(.is-multiple):not(.is-loading)::after { + border: 3px solid transparent; + border-radius: 2px; + border-right: 0; + border-top: 0; + content: " "; + display: block; + height: 0.625em; + margin-top: -0.4375em; + pointer-events: none; + position: absolute; + top: 50%; + transform: rotate(-45deg); + transform-origin: center; + width: 0.625em; } + +.tabs:not(:last-child), .message:not(:last-child), .list:not(:last-child), .level:not(:last-child), .breadcrumb:not(:last-child), .highlight:not(:last-child), .block:not(:last-child), .title:not(:last-child), +.subtitle:not(:last-child), .table-container:not(:last-child), .table:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .box:not(:last-child) { + margin-bottom: 1.5rem; } + +.modal-close, .delete { + -moz-appearance: none; + -webkit-appearance: none; + background-color: rgba(10, 10, 10, 0.2); + border: none; + border-radius: 290486px; + cursor: pointer; + pointer-events: auto; + display: inline-block; + flex-grow: 0; + flex-shrink: 0; + font-size: 0; + height: 20px; + max-height: 20px; + max-width: 20px; + min-height: 20px; + min-width: 20px; + outline: none; + position: relative; + vertical-align: top; + width: 20px; } + .modal-close::before, .delete::before, .modal-close::after, .delete::after { + background-color: white; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; } + .modal-close::before, .delete::before { + height: 2px; + width: 50%; } + .modal-close::after, .delete::after { + height: 50%; + width: 2px; } + .modal-close:hover, .delete:hover, .modal-close:focus, .delete:focus { + background-color: rgba(10, 10, 10, 0.3); } + .modal-close:active, .delete:active { + background-color: rgba(10, 10, 10, 0.4); } + .is-small.modal-close, .is-small.delete { + height: 16px; + max-height: 16px; + max-width: 16px; + min-height: 16px; + min-width: 16px; + width: 16px; } + .is-medium.modal-close, .is-medium.delete { + height: 24px; + max-height: 24px; + max-width: 24px; + min-height: 24px; + min-width: 24px; + width: 24px; } + .is-large.modal-close, .is-large.delete { + height: 32px; + max-height: 32px; + max-width: 32px; + min-height: 32px; + min-width: 32px; + width: 32px; } + +.control.is-loading::after, .select.is-loading::after, .loader, .button.is-loading::after { + animation: spinAround 500ms infinite linear; + border: 2px solid #dbdbdb; + border-radius: 290486px; + border-right-color: transparent; + border-top-color: transparent; + content: ""; + display: block; + height: 1em; + position: relative; + width: 1em; } + +.hero-video, .modal-background, .modal, .image.is-square img, +.image.is-square .has-ratio, .image.is-1by1 img, +.image.is-1by1 .has-ratio, .image.is-5by4 img, +.image.is-5by4 .has-ratio, .image.is-4by3 img, +.image.is-4by3 .has-ratio, .image.is-3by2 img, +.image.is-3by2 .has-ratio, .image.is-5by3 img, +.image.is-5by3 .has-ratio, .image.is-16by9 img, +.image.is-16by9 .has-ratio, .image.is-2by1 img, +.image.is-2by1 .has-ratio, .image.is-3by1 img, +.image.is-3by1 .has-ratio, .image.is-4by5 img, +.image.is-4by5 .has-ratio, .image.is-3by4 img, +.image.is-3by4 .has-ratio, .image.is-2by3 img, +.image.is-2by3 .has-ratio, .image.is-3by5 img, +.image.is-3by5 .has-ratio, .image.is-9by16 img, +.image.is-9by16 .has-ratio, .image.is-1by2 img, +.image.is-1by2 .has-ratio, .image.is-1by3 img, +.image.is-1by3 .has-ratio, .is-overlay { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; } + +.pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis, .file-cta, +.file-name, .select select, .textarea, .input, .button { + -moz-appearance: none; + -webkit-appearance: none; + align-items: center; + border: 1px solid transparent; + border-radius: 4px; + box-shadow: none; + display: inline-flex; + font-size: 1rem; + height: 2.25em; + justify-content: flex-start; + line-height: 1.5; + padding-bottom: calc(0.375em - 1px); + padding-left: calc(0.625em - 1px); + padding-right: calc(0.625em - 1px); + padding-top: calc(0.375em - 1px); + position: relative; + vertical-align: top; } + .pagination-previous:focus, + .pagination-next:focus, + .pagination-link:focus, + .pagination-ellipsis:focus, .file-cta:focus, + .file-name:focus, .select select:focus, .textarea:focus, .input:focus, .button:focus, .is-focused.pagination-previous, + .is-focused.pagination-next, + .is-focused.pagination-link, + .is-focused.pagination-ellipsis, .is-focused.file-cta, + .is-focused.file-name, .select select.is-focused, .is-focused.textarea, .is-focused.input, .is-focused.button, .pagination-previous:active, + .pagination-next:active, + .pagination-link:active, + .pagination-ellipsis:active, .file-cta:active, + .file-name:active, .select select:active, .textarea:active, .input:active, .button:active, .is-active.pagination-previous, + .is-active.pagination-next, + .is-active.pagination-link, + .is-active.pagination-ellipsis, .is-active.file-cta, + .is-active.file-name, .select select.is-active, .is-active.textarea, .is-active.input, .is-active.button { + outline: none; } + [disabled].pagination-previous, + [disabled].pagination-next, + [disabled].pagination-link, + [disabled].pagination-ellipsis, [disabled].file-cta, + [disabled].file-name, .select select[disabled], [disabled].textarea, [disabled].input, [disabled].button, fieldset[disabled] .pagination-previous, + fieldset[disabled] .pagination-next, + fieldset[disabled] .pagination-link, + fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .file-cta, + fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input, fieldset[disabled] .button { + cursor: not-allowed; } @font-face { - font-family: "Ocan"; + font-family: 'Ocan'; src: url("../../fonts/OcanSansStd-Book.woff") format("woff"); font-weight: normal; - font-style: normal; -} + font-style: normal; } + @font-face { - font-family: "Ocan"; + font-family: 'Ocan'; src: url("../../fonts/OcanSansStd-Bold.woff") format("woff"); font-weight: 700; - font-style: normal; -} + font-style: normal; } + @font-face { - font-family: "Ocan"; + font-family: 'Ocan'; src: url("../../fonts/OcanSansStd-BookIta.woff") format("woff"); font-weight: normal; - font-style: italic; -} + font-style: italic; } + @font-face { - font-family: "Ocan"; + font-family: 'Ocan'; src: url("../../fonts/OcanSansStd-BoldIta.woff") format("woff"); font-weight: 700; - font-style: italic; -} -/* Bulma Base */ -/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */ + font-style: italic; } + +/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */ html, body, p, @@ -62,8 +231,7 @@ h4, h5, h6 { margin: 0; - padding: 0; -} + padding: 0; } h1, h2, @@ -72,90 +240,58 @@ h4, h5, h6 { font-size: 100%; - font-weight: normal; -} + font-weight: normal; } ul { - list-style: none; -} + list-style: none; } button, input, select, textarea { - margin: 0; -} + margin: 0; } html { - box-sizing: border-box; -} + box-sizing: border-box; } *, *::before, *::after { - box-sizing: inherit; -} + box-sizing: inherit; } img, +embed, +iframe, +object, video { height: auto; - max-width: 100%; -} + max-width: 100%; } + +audio { + max-width: 100%; } iframe { - border: 0; -} + border: 0; } table { border-collapse: collapse; - border-spacing: 0; -} + border-spacing: 0; } td, th { - padding: 0; -} -td:not([align]), -th:not([align]) { - text-align: inherit; -} - -:root { - --bulma-body-background-color: var(--bulma-scheme-main); - --bulma-body-size: 1em; - --bulma-body-min-width: 300px; - --bulma-body-rendering: optimizeLegibility; - --bulma-body-family: var(--bulma-family-primary); - --bulma-body-overflow-x: hidden; - --bulma-body-overflow-y: scroll; - --bulma-body-color: var(--bulma-text); - --bulma-body-font-size: 1em; - --bulma-body-weight: var(--bulma-weight-normal); - --bulma-body-line-height: 1.5; - --bulma-code-family: var(--bulma-family-code); - --bulma-code-padding: 0.25em 0.5em 0.25em; - --bulma-code-weight: normal; - --bulma-code-size: 0.875em; - --bulma-small-font-size: 0.875em; - --bulma-hr-background-color: var(--bulma-background); - --bulma-hr-height: 2px; - --bulma-hr-margin: 1.5rem 0; - --bulma-strong-color: var(--bulma-text-strong); - --bulma-strong-weight: var(--bulma-weight-semibold); - --bulma-pre-font-size: 0.875em; - --bulma-pre-padding: 1.25rem 1.5rem; - --bulma-pre-code-font-size: 1em; -} + padding: 0; } + td:not([align]), + th:not([align]) { + text-align: left; } html { - background-color: var(--bulma-body-background-color); - font-size: var(--bulma-body-size); + background-color: white; + font-size: 16px; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; - min-width: var(--bulma-body-min-width); - overflow-x: var(--bulma-body-overflow-x); - overflow-y: var(--bulma-body-overflow-y); - text-rendering: var(--bulma-body-rendering); - text-size-adjust: 100%; -} + min-width: 300px; + overflow-x: hidden; + overflow-y: scroll; + text-rendering: optimizeLegibility; + text-size-adjust: 100%; } article, aside, @@ -164,168 +300,868 @@ footer, header, hgroup, section { - display: block; -} + display: block; } body, button, input, -optgroup, select, textarea { - font-family: var(--bulma-body-family); -} + font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } code, pre { -moz-osx-font-smoothing: auto; -webkit-font-smoothing: auto; - font-family: var(--bulma-code-family); -} + font-family: monospace; } body { - color: var(--bulma-body-color); - font-size: var(--bulma-body-font-size); - font-weight: var(--bulma-body-weight); - line-height: var(--bulma-body-line-height); -} - -a, -button { - cursor: pointer; -} -a:focus-visible, -button:focus-visible { - outline-color: hsl(var(--bulma-focus-h), var(--bulma-focus-s), var(--bulma-focus-l)); - outline-offset: var(--bulma-focus-offset); - outline-style: var(--bulma-focus-style); - outline-width: var(--bulma-focus-width); -} -a:focus-visible:active, -button:focus-visible:active { - outline-width: 1px; -} -a:active, -button:active { - outline-width: 1px; -} + color: #4a4a4a; + font-size: 1em; + font-weight: 400; + line-height: 1.5; } a { - color: var(--bulma-link-text); + color: #4391E0; cursor: pointer; - text-decoration: none; - transition-duration: var(--bulma-duration); - transition-property: background-color, border-color, color; -} -a strong { - color: currentColor; -} - -button { - appearance: none; - background: none; - border: none; - color: inherit; - font-family: inherit; - font-size: 1em; - margin: 0; - padding: 0; - transition-duration: var(--bulma-duration); - transition-property: background-color, border-color, color; -} + text-decoration: none; } + a strong { + color: currentColor; } + a:hover { + color: #363636; } code { - background-color: var(--bulma-code-background); - border-radius: 0.5em; - color: var(--bulma-code); - font-size: var(--bulma-code-size); - font-weight: var(--bulma-code-weight); - padding: var(--bulma-code-padding); -} + background-color: whitesmoke; + color: #a70c20; + font-size: 0.875em; + font-weight: normal; + padding: 0.25em 0.5em 0.25em; } hr { - background-color: var(--bulma-hr-background-color); + background-color: whitesmoke; border: none; display: block; - height: var(--bulma-hr-height); - margin: var(--bulma-hr-margin); -} + height: 2px; + margin: 1.5rem 0; } img { height: auto; - max-width: 100%; -} + max-width: 100%; } -input[type=checkbox], -input[type=radio] { - vertical-align: baseline; -} +input[type="checkbox"], +input[type="radio"] { + vertical-align: baseline; } small { - font-size: var(--bulma-small-font-size); -} + font-size: 0.875em; } span { font-style: inherit; - font-weight: inherit; -} + font-weight: inherit; } strong { - color: var(--bulma-strong-color); - font-weight: var(--bulma-strong-weight); -} - -svg { - height: auto; - width: auto; -} + color: #363636; + font-weight: 700; } fieldset { - border: none; -} + border: none; } pre { -webkit-overflow-scrolling: touch; - background-color: var(--bulma-pre-background); - color: var(--bulma-pre); - font-size: var(--bulma-pre-font-size); + background-color: whitesmoke; + color: #4a4a4a; + font-size: 0.875em; overflow-x: auto; - padding: var(--bulma-pre-padding); + padding: 1.25rem 1.5rem; white-space: pre; - word-wrap: normal; -} -pre code { - background-color: transparent; - color: currentColor; - font-size: var(--bulma-pre-code-font-size); - padding: 0; -} + word-wrap: normal; } + pre code { + background-color: transparent; + color: currentColor; + font-size: 1em; + padding: 0; } table td, table th { - vertical-align: top; -} -table td:not([align]), -table th:not([align]) { - text-align: inherit; -} -table th { - color: var(--bulma-text-strong); -} + vertical-align: top; } + table td:not([align]), + table th:not([align]) { + text-align: left; } + +table th { + color: #363636; } + +.is-clearfix::after { + clear: both; + content: " "; + display: table; } + +.is-pulled-left { + float: left !important; } + +.is-pulled-right { + float: right !important; } + +.is-clipped { + overflow: hidden !important; } + +.is-size-1 { + font-size: 3rem !important; } + +.is-size-2 { + font-size: 2.5rem !important; } + +.is-size-3 { + font-size: 2rem !important; } + +.is-size-4 { + font-size: 1.5rem !important; } + +.is-size-5 { + font-size: 1.25rem !important; } + +.is-size-6 { + font-size: 1rem !important; } + +.is-size-7 { + font-size: 0.75rem !important; } + +@media screen and (max-width: 768px) { + .is-size-1-mobile { + font-size: 3rem !important; } + .is-size-2-mobile { + font-size: 2.5rem !important; } + .is-size-3-mobile { + font-size: 2rem !important; } + .is-size-4-mobile { + font-size: 1.5rem !important; } + .is-size-5-mobile { + font-size: 1.25rem !important; } + .is-size-6-mobile { + font-size: 1rem !important; } + .is-size-7-mobile { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 769px), print { + .is-size-1-tablet { + font-size: 3rem !important; } + .is-size-2-tablet { + font-size: 2.5rem !important; } + .is-size-3-tablet { + font-size: 2rem !important; } + .is-size-4-tablet { + font-size: 1.5rem !important; } + .is-size-5-tablet { + font-size: 1.25rem !important; } + .is-size-6-tablet { + font-size: 1rem !important; } + .is-size-7-tablet { + font-size: 0.75rem !important; } } + +@media screen and (max-width: 1023px) { + .is-size-1-touch { + font-size: 3rem !important; } + .is-size-2-touch { + font-size: 2.5rem !important; } + .is-size-3-touch { + font-size: 2rem !important; } + .is-size-4-touch { + font-size: 1.5rem !important; } + .is-size-5-touch { + font-size: 1.25rem !important; } + .is-size-6-touch { + font-size: 1rem !important; } + .is-size-7-touch { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 1024px) { + .is-size-1-desktop { + font-size: 3rem !important; } + .is-size-2-desktop { + font-size: 2.5rem !important; } + .is-size-3-desktop { + font-size: 2rem !important; } + .is-size-4-desktop { + font-size: 1.5rem !important; } + .is-size-5-desktop { + font-size: 1.25rem !important; } + .is-size-6-desktop { + font-size: 1rem !important; } + .is-size-7-desktop { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 1216px) { + .is-size-1-widescreen { + font-size: 3rem !important; } + .is-size-2-widescreen { + font-size: 2.5rem !important; } + .is-size-3-widescreen { + font-size: 2rem !important; } + .is-size-4-widescreen { + font-size: 1.5rem !important; } + .is-size-5-widescreen { + font-size: 1.25rem !important; } + .is-size-6-widescreen { + font-size: 1rem !important; } + .is-size-7-widescreen { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 1408px) { + .is-size-1-fullhd { + font-size: 3rem !important; } + .is-size-2-fullhd { + font-size: 2.5rem !important; } + .is-size-3-fullhd { + font-size: 2rem !important; } + .is-size-4-fullhd { + font-size: 1.5rem !important; } + .is-size-5-fullhd { + font-size: 1.25rem !important; } + .is-size-6-fullhd { + font-size: 1rem !important; } + .is-size-7-fullhd { + font-size: 0.75rem !important; } } + +.has-text-centered { + text-align: center !important; } + +.has-text-justified { + text-align: justify !important; } + +.has-text-left { + text-align: left !important; } + +.has-text-right { + text-align: right !important; } + +@media screen and (max-width: 768px) { + .has-text-centered-mobile { + text-align: center !important; } } + +@media screen and (min-width: 769px), print { + .has-text-centered-tablet { + text-align: center !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .has-text-centered-tablet-only { + text-align: center !important; } } + +@media screen and (max-width: 1023px) { + .has-text-centered-touch { + text-align: center !important; } } + +@media screen and (min-width: 1024px) { + .has-text-centered-desktop { + text-align: center !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .has-text-centered-desktop-only { + text-align: center !important; } } + +@media screen and (min-width: 1216px) { + .has-text-centered-widescreen { + text-align: center !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .has-text-centered-widescreen-only { + text-align: center !important; } } + +@media screen and (min-width: 1408px) { + .has-text-centered-fullhd { + text-align: center !important; } } + +@media screen and (max-width: 768px) { + .has-text-justified-mobile { + text-align: justify !important; } } + +@media screen and (min-width: 769px), print { + .has-text-justified-tablet { + text-align: justify !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .has-text-justified-tablet-only { + text-align: justify !important; } } + +@media screen and (max-width: 1023px) { + .has-text-justified-touch { + text-align: justify !important; } } + +@media screen and (min-width: 1024px) { + .has-text-justified-desktop { + text-align: justify !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .has-text-justified-desktop-only { + text-align: justify !important; } } + +@media screen and (min-width: 1216px) { + .has-text-justified-widescreen { + text-align: justify !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .has-text-justified-widescreen-only { + text-align: justify !important; } } + +@media screen and (min-width: 1408px) { + .has-text-justified-fullhd { + text-align: justify !important; } } + +@media screen and (max-width: 768px) { + .has-text-left-mobile { + text-align: left !important; } } + +@media screen and (min-width: 769px), print { + .has-text-left-tablet { + text-align: left !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .has-text-left-tablet-only { + text-align: left !important; } } + +@media screen and (max-width: 1023px) { + .has-text-left-touch { + text-align: left !important; } } + +@media screen and (min-width: 1024px) { + .has-text-left-desktop { + text-align: left !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .has-text-left-desktop-only { + text-align: left !important; } } + +@media screen and (min-width: 1216px) { + .has-text-left-widescreen { + text-align: left !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .has-text-left-widescreen-only { + text-align: left !important; } } + +@media screen and (min-width: 1408px) { + .has-text-left-fullhd { + text-align: left !important; } } + +@media screen and (max-width: 768px) { + .has-text-right-mobile { + text-align: right !important; } } + +@media screen and (min-width: 769px), print { + .has-text-right-tablet { + text-align: right !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .has-text-right-tablet-only { + text-align: right !important; } } + +@media screen and (max-width: 1023px) { + .has-text-right-touch { + text-align: right !important; } } + +@media screen and (min-width: 1024px) { + .has-text-right-desktop { + text-align: right !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .has-text-right-desktop-only { + text-align: right !important; } } + +@media screen and (min-width: 1216px) { + .has-text-right-widescreen { + text-align: right !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .has-text-right-widescreen-only { + text-align: right !important; } } + +@media screen and (min-width: 1408px) { + .has-text-right-fullhd { + text-align: right !important; } } + +.is-capitalized { + text-transform: capitalize !important; } + +.is-lowercase { + text-transform: lowercase !important; } + +.is-uppercase { + text-transform: uppercase !important; } + +.is-italic { + font-style: italic !important; } + +.has-text-white { + color: white !important; } + +a.has-text-white:hover, a.has-text-white:focus { + color: #e6e6e6 !important; } + +.has-background-white { + background-color: white !important; } + +.has-text-black { + color: #0a0a0a !important; } + +a.has-text-black:hover, a.has-text-black:focus { + color: black !important; } + +.has-background-black { + background-color: #0a0a0a !important; } + +.has-text-light { + color: whitesmoke !important; } + +a.has-text-light:hover, a.has-text-light:focus { + color: #dbdbdb !important; } + +.has-background-light { + background-color: whitesmoke !important; } + +.has-text-dark { + color: #363636 !important; } + +a.has-text-dark:hover, a.has-text-dark:focus { + color: #1c1c1c !important; } + +.has-background-dark { + background-color: #363636 !important; } + +.has-text-primary { + color: #478D00 !important; } + +a.has-text-primary:hover, a.has-text-primary:focus { + color: #2d5a00 !important; } + +.has-background-primary { + background-color: #478D00 !important; } + +.has-text-link { + color: #4391E0 !important; } + +a.has-text-link:hover, a.has-text-link:focus { + color: #2277ce !important; } + +.has-background-link { + background-color: #4391E0 !important; } + +.has-text-info { + color: #209cee !important; } + +a.has-text-info:hover, a.has-text-info:focus { + color: #0f81cc !important; } + +.has-background-info { + background-color: #209cee !important; } + +.has-text-success { + color: #478D00 !important; } + +a.has-text-success:hover, a.has-text-success:focus { + color: #2d5a00 !important; } + +.has-background-success { + background-color: #478D00 !important; } + +.has-text-warning { + color: #ffdd57 !important; } + +a.has-text-warning:hover, a.has-text-warning:focus { + color: #ffd324 !important; } + +.has-background-warning { + background-color: #ffdd57 !important; } + +.has-text-danger { + color: #a70c20 !important; } + +a.has-text-danger:hover, a.has-text-danger:focus { + color: #770917 !important; } + +.has-background-danger { + background-color: #a70c20 !important; } + +.has-text-black-bis { + color: #121212 !important; } + +.has-background-black-bis { + background-color: #121212 !important; } + +.has-text-black-ter { + color: #242424 !important; } + +.has-background-black-ter { + background-color: #242424 !important; } + +.has-text-grey-darker { + color: #363636 !important; } + +.has-background-grey-darker { + background-color: #363636 !important; } + +.has-text-grey-dark { + color: #4a4a4a !important; } + +.has-background-grey-dark { + background-color: #4a4a4a !important; } + +.has-text-grey { + color: #7a7a7a !important; } + +.has-background-grey { + background-color: #7a7a7a !important; } + +.has-text-grey-light { + color: #b5b5b5 !important; } + +.has-background-grey-light { + background-color: #b5b5b5 !important; } + +.has-text-grey-lighter { + color: #dbdbdb !important; } + +.has-background-grey-lighter { + background-color: #dbdbdb !important; } + +.has-text-white-ter { + color: whitesmoke !important; } + +.has-background-white-ter { + background-color: whitesmoke !important; } + +.has-text-white-bis { + color: #fafafa !important; } + +.has-background-white-bis { + background-color: #fafafa !important; } + +.has-text-weight-light { + font-weight: 300 !important; } + +.has-text-weight-normal { + font-weight: 400 !important; } + +.has-text-weight-medium { + font-weight: 500 !important; } + +.has-text-weight-semibold { + font-weight: 600 !important; } + +.has-text-weight-bold { + font-weight: 700 !important; } + +.is-family-primary { + font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } + +.is-family-secondary { + font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } + +.is-family-sans-serif { + font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } + +.is-family-monospace { + font-family: monospace !important; } + +.is-family-code { + font-family: monospace !important; } + +.is-block { + display: block !important; } + +@media screen and (max-width: 768px) { + .is-block-mobile { + display: block !important; } } + +@media screen and (min-width: 769px), print { + .is-block-tablet { + display: block !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-block-tablet-only { + display: block !important; } } + +@media screen and (max-width: 1023px) { + .is-block-touch { + display: block !important; } } + +@media screen and (min-width: 1024px) { + .is-block-desktop { + display: block !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-block-desktop-only { + display: block !important; } } + +@media screen and (min-width: 1216px) { + .is-block-widescreen { + display: block !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-block-widescreen-only { + display: block !important; } } + +@media screen and (min-width: 1408px) { + .is-block-fullhd { + display: block !important; } } + +.is-flex { + display: flex !important; } + +@media screen and (max-width: 768px) { + .is-flex-mobile { + display: flex !important; } } + +@media screen and (min-width: 769px), print { + .is-flex-tablet { + display: flex !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-flex-tablet-only { + display: flex !important; } } + +@media screen and (max-width: 1023px) { + .is-flex-touch { + display: flex !important; } } + +@media screen and (min-width: 1024px) { + .is-flex-desktop { + display: flex !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-flex-desktop-only { + display: flex !important; } } + +@media screen and (min-width: 1216px) { + .is-flex-widescreen { + display: flex !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-flex-widescreen-only { + display: flex !important; } } + +@media screen and (min-width: 1408px) { + .is-flex-fullhd { + display: flex !important; } } + +.is-inline { + display: inline !important; } + +@media screen and (max-width: 768px) { + .is-inline-mobile { + display: inline !important; } } + +@media screen and (min-width: 769px), print { + .is-inline-tablet { + display: inline !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-inline-tablet-only { + display: inline !important; } } + +@media screen and (max-width: 1023px) { + .is-inline-touch { + display: inline !important; } } + +@media screen and (min-width: 1024px) { + .is-inline-desktop { + display: inline !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-inline-desktop-only { + display: inline !important; } } + +@media screen and (min-width: 1216px) { + .is-inline-widescreen { + display: inline !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-inline-widescreen-only { + display: inline !important; } } + +@media screen and (min-width: 1408px) { + .is-inline-fullhd { + display: inline !important; } } + +.is-inline-block { + display: inline-block !important; } + +@media screen and (max-width: 768px) { + .is-inline-block-mobile { + display: inline-block !important; } } + +@media screen and (min-width: 769px), print { + .is-inline-block-tablet { + display: inline-block !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-inline-block-tablet-only { + display: inline-block !important; } } + +@media screen and (max-width: 1023px) { + .is-inline-block-touch { + display: inline-block !important; } } + +@media screen and (min-width: 1024px) { + .is-inline-block-desktop { + display: inline-block !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-inline-block-desktop-only { + display: inline-block !important; } } + +@media screen and (min-width: 1216px) { + .is-inline-block-widescreen { + display: inline-block !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-inline-block-widescreen-only { + display: inline-block !important; } } + +@media screen and (min-width: 1408px) { + .is-inline-block-fullhd { + display: inline-block !important; } } + +.is-inline-flex { + display: inline-flex !important; } + +@media screen and (max-width: 768px) { + .is-inline-flex-mobile { + display: inline-flex !important; } } + +@media screen and (min-width: 769px), print { + .is-inline-flex-tablet { + display: inline-flex !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-inline-flex-tablet-only { + display: inline-flex !important; } } + +@media screen and (max-width: 1023px) { + .is-inline-flex-touch { + display: inline-flex !important; } } + +@media screen and (min-width: 1024px) { + .is-inline-flex-desktop { + display: inline-flex !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-inline-flex-desktop-only { + display: inline-flex !important; } } + +@media screen and (min-width: 1216px) { + .is-inline-flex-widescreen { + display: inline-flex !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-inline-flex-widescreen-only { + display: inline-flex !important; } } + +@media screen and (min-width: 1408px) { + .is-inline-flex-fullhd { + display: inline-flex !important; } } + +.is-hidden { + display: none !important; } + +.is-sr-only { + border: none !important; + clip: rect(0, 0, 0, 0) !important; + height: 0.01em !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + white-space: nowrap !important; + width: 0.01em !important; } + +@media screen and (max-width: 768px) { + .is-hidden-mobile { + display: none !important; } } + +@media screen and (min-width: 769px), print { + .is-hidden-tablet { + display: none !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-hidden-tablet-only { + display: none !important; } } + +@media screen and (max-width: 1023px) { + .is-hidden-touch { + display: none !important; } } + +@media screen and (min-width: 1024px) { + .is-hidden-desktop { + display: none !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-hidden-desktop-only { + display: none !important; } } + +@media screen and (min-width: 1216px) { + .is-hidden-widescreen { + display: none !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-hidden-widescreen-only { + display: none !important; } } + +@media screen and (min-width: 1408px) { + .is-hidden-fullhd { + display: none !important; } } + +.is-invisible { + visibility: hidden !important; } + +@media screen and (max-width: 768px) { + .is-invisible-mobile { + visibility: hidden !important; } } + +@media screen and (min-width: 769px), print { + .is-invisible-tablet { + visibility: hidden !important; } } + +@media screen and (min-width: 769px) and (max-width: 1023px) { + .is-invisible-tablet-only { + visibility: hidden !important; } } + +@media screen and (max-width: 1023px) { + .is-invisible-touch { + visibility: hidden !important; } } + +@media screen and (min-width: 1024px) { + .is-invisible-desktop { + visibility: hidden !important; } } + +@media screen and (min-width: 1024px) and (max-width: 1215px) { + .is-invisible-desktop-only { + visibility: hidden !important; } } + +@media screen and (min-width: 1216px) { + .is-invisible-widescreen { + visibility: hidden !important; } } + +@media screen and (min-width: 1216px) and (max-width: 1407px) { + .is-invisible-widescreen-only { + visibility: hidden !important; } } + +@media screen and (min-width: 1408px) { + .is-invisible-fullhd { + visibility: hidden !important; } } + +.is-marginless { + margin: 0 !important; } + +.is-paddingless { + padding: 0 !important; } + +.is-radiusless { + border-radius: 0 !important; } + +.is-shadowless { + box-shadow: none !important; } + +.is-relative { + position: relative !important; } -@keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@keyframes pulsate { - 50% { - opacity: 0.5; - } -} .title, .subtitle, .content h1, @@ -335,886 +1171,841 @@ table th { .content h5, .content h6, .menu { - font-family: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif; -} + font-family: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif; } .image.no-upscale img { - width: intrinsic; /* Safari/WebKit uses a non-standard name */ - width: -moz-max-content; /* Firefox/Gecko */ - width: -webkit-max-content; /* Chrome */ -} + width: intrinsic; + /* Safari/WebKit uses a non-standard name */ + width: -moz-max-content; + /* Firefox/Gecko */ + width: -webkit-max-content; + /* Chrome */ } .green { - color: #478D00; -} + color: #478D00; } .yellow { - color: #ffdd57; -} - -/* Bulma Elements */ -.navbar-link:not(.is-arrowless)::after, .select:not(.is-multiple):not(.is-loading)::after { - border: 0.125em solid var(--bulma-arrow-color); - border-right: 0; - border-top: 0; - content: " "; - display: block; - height: 0.625em; - margin-top: -0.4375em; - pointer-events: none; - position: absolute; - top: 50%; - transform: rotate(-45deg); - transform-origin: center; - transition-duration: var(--bulma-duration); - transition-property: border-color; - width: 0.625em; -} - -.media:not(:last-child), .level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .tabs:not(:last-child), .pagination:not(:last-child), .message:not(:last-child), .card:not(:last-child), .breadcrumb:not(:last-child), .field:not(:last-child), .file:not(:last-child), .title:not(:last-child), -.subtitle:not(:last-child), .tags:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .buttons:not(:last-child), .box:not(:last-child), .block:not(:last-child) { - margin-bottom: var(--bulma-block-spacing); -} - -.pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis, .file-cta, -.file-name, .select select, .input, .textarea, .button { - align-items: center; - appearance: none; - border-color: transparent; - border-style: solid; - border-width: var(--bulma-control-border-width); - border-radius: var(--bulma-control-radius); - box-shadow: none; - display: inline-flex; - font-size: var(--bulma-control-size); - height: var(--bulma-control-height); - justify-content: flex-start; - line-height: var(--bulma-control-line-height); - padding-bottom: var(--bulma-control-padding-vertical); - padding-left: var(--bulma-control-padding-horizontal); - padding-right: var(--bulma-control-padding-horizontal); - padding-top: var(--bulma-control-padding-vertical); - position: relative; - transition-duration: var(--bulma-duration); - transition-property: background-color, border-color, box-shadow, color; - vertical-align: top; -} -.pagination-previous:focus, -.pagination-next:focus, -.pagination-link:focus, -.pagination-ellipsis:focus, .file-cta:focus, -.file-name:focus, .select select:focus, .input:focus, .textarea:focus, .button:focus, .pagination-previous:focus-visible, -.pagination-next:focus-visible, -.pagination-link:focus-visible, -.pagination-ellipsis:focus-visible, .file-cta:focus-visible, -.file-name:focus-visible, .select select:focus-visible, .input:focus-visible, .textarea:focus-visible, .button:focus-visible, .pagination-previous:focus-within, -.pagination-next:focus-within, -.pagination-link:focus-within, -.pagination-ellipsis:focus-within, .file-cta:focus-within, -.file-name:focus-within, .select select:focus-within, .input:focus-within, .textarea:focus-within, .button:focus-within, .is-focused.pagination-previous, -.is-focused.pagination-next, -.is-focused.pagination-link, -.is-focused.pagination-ellipsis, .is-focused.file-cta, -.is-focused.file-name, .select select.is-focused, .is-focused.input, .is-focused.textarea, .is-focused.button, .pagination-previous:active, -.pagination-next:active, -.pagination-link:active, -.pagination-ellipsis:active, .file-cta:active, -.file-name:active, .select select:active, .input:active, .textarea:active, .button:active, .is-active.pagination-previous, -.is-active.pagination-next, -.is-active.pagination-link, -.is-active.pagination-ellipsis, .is-active.file-cta, -.is-active.file-name, .select select.is-active, .is-active.input, .is-active.textarea, .is-active.button { - outline: none; -} -[disabled].pagination-previous, -[disabled].pagination-next, -[disabled].pagination-link, -[disabled].pagination-ellipsis, [disabled].file-cta, -[disabled].file-name, .select select[disabled], [disabled].input, [disabled].textarea, [disabled].button, fieldset[disabled] .pagination-previous, -fieldset[disabled] .pagination-next, -fieldset[disabled] .pagination-link, -fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .file-cta, -fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .input, fieldset[disabled] .textarea, fieldset[disabled] .button { - cursor: not-allowed; -} - -.modal-close { - --bulma-delete-dimensions: 1.25rem; - --bulma-delete-background-l: 0%; - --bulma-delete-background-alpha: 0.5; - --bulma-delete-color: var(--bulma-white); - appearance: none; - background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-delete-background-l), var(--bulma-delete-background-alpha)); - border: none; - border-radius: var(--bulma-radius-rounded); - cursor: pointer; - pointer-events: auto; - display: inline-flex; - flex-grow: 0; - flex-shrink: 0; - font-size: 1em; - height: var(--bulma-delete-dimensions); - max-height: var(--bulma-delete-dimensions); - max-width: var(--bulma-delete-dimensions); - min-height: var(--bulma-delete-dimensions); - min-width: var(--bulma-delete-dimensions); - outline: none; - position: relative; - vertical-align: top; - width: var(--bulma-delete-dimensions); -} -.modal-close::before, .modal-close::after { - background-color: var(--bulma-delete-color); - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; -} -.modal-close::before { - height: 2px; - width: 50%; -} -.modal-close::after { - height: 50%; - width: 2px; -} -.modal-close:hover, .modal-close:focus { - --bulma-delete-background-alpha: 0.4; -} -.modal-close:active { - --bulma-delete-background-alpha: 0.5; -} -.is-small.modal-close { - --bulma-delete-dimensions: 1rem; -} -.is-medium.modal-close { - --bulma-delete-dimensions: 1.5rem; -} -.is-large.modal-close { - --bulma-delete-dimensions: 2rem; -} - -.control.is-loading::after, .select.is-loading::after, .button.is-loading::after { - animation: spinAround 500ms infinite linear; - border: 2px solid var(--bulma-loading-color); - border-radius: var(--bulma-radius-rounded); - border-right-color: transparent; - border-top-color: transparent; - content: ""; - display: block; - height: 1em; - position: relative; - width: 1em; -} - -.hero-video, .modal, .modal-background { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; -} - -.navbar-burger, .menu-list a, -.menu-list button, -.menu-list .menu-item { - appearance: none; - background: none; - border: none; - color: inherit; - font-family: inherit; - font-size: 1em; - margin: 0; - padding: 0; -} - -.tabs, .pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis, .breadcrumb, .file, .button { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} + color: #ffdd57; } .box { - --bulma-box-background-color: var(--bulma-scheme-main); - --bulma-box-color: var(--bulma-text); - --bulma-box-radius: var(--bulma-radius-large); - --bulma-box-shadow: var(--bulma-shadow); - --bulma-box-padding: 1.25rem; - --bulma-box-link-hover-shadow: 0 0.5em 1em -0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1), 0 0 0 1px var(--bulma-link); - --bulma-box-link-active-shadow: inset 0 1px 2px hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.2), 0 0 0 1px var(--bulma-link); -} - -.box { - background-color: var(--bulma-box-background-color); - border-radius: var(--bulma-box-radius); - box-shadow: var(--bulma-box-shadow); - color: var(--bulma-box-color); + background-color: white; + border-radius: 6px; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + color: #4a4a4a; display: block; - padding: var(--bulma-box-padding); -} + padding: 1.25rem; } a.box:hover, a.box:focus { - box-shadow: var(--bulma-box-link-hover-shadow); -} + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #4391E0; } + a.box:active { - box-shadow: var(--bulma-box-link-active-shadow); -} + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #4391E0; } .button { - --bulma-button-family: false; - --bulma-button-weight: var(--bulma-weight-medium); - --bulma-button-border-color: var(--bulma-border); - --bulma-button-border-style: solid; - --bulma-button-border-width: var(--bulma-control-border-width); - --bulma-button-padding-vertical: 0.5em; - --bulma-button-padding-horizontal: 1em; - --bulma-button-focus-border-color: var(--bulma-link-focus-border); - --bulma-button-focus-box-shadow-size: 0 0 0 0.125em; - --bulma-button-focus-box-shadow-color: hsla(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-link-on-scheme-l), 0.25); - --bulma-button-active-color: var(--bulma-link-active); - --bulma-button-active-border-color: var(--bulma-link-active-border); - --bulma-button-text-color: var(--bulma-text); - --bulma-button-text-decoration: underline; - --bulma-button-text-hover-background-color: var(--bulma-background); - --bulma-button-text-hover-color: var(--bulma-text-strong); - --bulma-button-ghost-background: none; - --bulma-button-ghost-border-color: transparent; - --bulma-button-ghost-color: var(--bulma-link-text); - --bulma-button-ghost-decoration: none; - --bulma-button-ghost-hover-color: var(--bulma-link); - --bulma-button-ghost-hover-decoration: underline; - --bulma-button-disabled-background-color: var(--bulma-scheme-main); - --bulma-button-disabled-border-color: var(--bulma-border); - --bulma-button-disabled-shadow: none; - --bulma-button-disabled-opacity: 0.5; - --bulma-button-static-color: var(--bulma-text-weak); - --bulma-button-static-background-color: var(--bulma-scheme-main-ter); - --bulma-button-static-border-color: var(--bulma-border); -} - -.button { - --bulma-button-h: var(--bulma-scheme-h); - --bulma-button-s: var(--bulma-scheme-s); - --bulma-button-l: var(--bulma-scheme-main-l); - --bulma-button-background-l: var(--bulma-scheme-main-l); - --bulma-button-background-l-delta: 0%; - --bulma-button-hover-background-l-delta: var(--bulma-hover-background-l-delta); - --bulma-button-active-background-l-delta: var(--bulma-active-background-l-delta); - --bulma-button-color-l: var(--bulma-text-strong-l); - --bulma-button-border-l: var(--bulma-border-l); - --bulma-button-border-l-delta: 0%; - --bulma-button-hover-border-l-delta: var(--bulma-hover-border-l-delta); - --bulma-button-active-border-l-delta: var(--bulma-active-border-l-delta); - --bulma-button-focus-border-l-delta: var(--bulma-focus-border-l-delta); - --bulma-button-outer-shadow-h: 0; - --bulma-button-outer-shadow-s: 0%; - --bulma-button-outer-shadow-l: 20%; - --bulma-button-outer-shadow-a: 0.05; - --bulma-loading-color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-color-l)); - background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-background-l) + var(--bulma-button-background-l-delta))); - border-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-border-l) + var(--bulma-button-border-l-delta))); - border-style: var(--bulma-button-border-style); - border-width: var(--bulma-button-border-width); - box-shadow: 0px 0.0625em 0.125em hsla(var(--bulma-button-outer-shadow-h), var(--bulma-button-outer-shadow-s), var(--bulma-button-outer-shadow-l), var(--bulma-button-outer-shadow-a)), 0px 0.125em 0.25em hsla(var(--bulma-button-outer-shadow-h), var(--bulma-button-outer-shadow-s), var(--bulma-button-outer-shadow-l), var(--bulma-button-outer-shadow-a)); - color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-color-l)); + background-color: white; + border-color: #dbdbdb; + border-width: 1px; + color: #363636; cursor: pointer; - font-weight: var(--bulma-button-weight); - height: auto; justify-content: center; - padding-bottom: calc(var(--bulma-button-padding-vertical) - var(--bulma-button-border-width)); - padding-left: calc(var(--bulma-button-padding-horizontal) - var(--bulma-button-border-width)); - padding-right: calc(var(--bulma-button-padding-horizontal) - var(--bulma-button-border-width)); - padding-top: calc(var(--bulma-button-padding-vertical) - var(--bulma-button-border-width)); + padding-bottom: calc(0.375em - 1px); + padding-left: 0.75em; + padding-right: 0.75em; + padding-top: calc(0.375em - 1px); text-align: center; - white-space: nowrap; -} -.button strong { - color: inherit; -} -.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { - height: 1.5em; - width: 1.5em; -} -.button .icon:first-child:not(:last-child) { - margin-inline-start: calc(-0.5 * var(--bulma-button-padding-horizontal)); - margin-inline-end: calc(var(--bulma-button-padding-horizontal) * 0.25); -} -.button .icon:last-child:not(:first-child) { - margin-inline-start: calc(var(--bulma-button-padding-horizontal) * 0.25); - margin-inline-end: calc(-0.5 * var(--bulma-button-padding-horizontal)); -} -.button .icon:first-child:last-child { - margin-inline-start: calc(-0.5 * var(--bulma-button-padding-horizontal)); - margin-inline-end: calc(-0.5 * var(--bulma-button-padding-horizontal)); -} -.button:hover, .button.is-hovered { - --bulma-button-background-l-delta: var(--bulma-button-hover-background-l-delta); - --bulma-button-border-l-delta: var(--bulma-button-hover-border-l-delta); -} -.button:focus-visible, .button.is-focused { - --bulma-button-border-width: 1px; - border-color: hsl(var(--bulma-focus-h), var(--bulma-focus-s), var(--bulma-focus-l)); - box-shadow: var(--bulma-focus-shadow-size) hsla(var(--bulma-focus-h), var(--bulma-focus-s), var(--bulma-focus-l), var(--bulma-focus-shadow-alpha)); -} -.button:active, .button.is-active { - --bulma-button-background-l-delta: var(--bulma-button-active-background-l-delta); - --bulma-button-border-l-delta: var(--bulma-button-active-border-l-delta); - --bulma-button-outer-shadow-a: 0; -} -.button[disabled], fieldset[disabled] .button { - background-color: var(--bulma-button-disabled-background-color); - border-color: var(--bulma-button-disabled-border-color); - box-shadow: var(--bulma-button-disabled-shadow); - opacity: var(--bulma-button-disabled-opacity); -} -.button.is-white { - --bulma-button-h: var(--bulma-white-h); - --bulma-button-s: var(--bulma-white-s); - --bulma-button-l: var(--bulma-white-l); - --bulma-button-background-l: var(--bulma-white-l); - --bulma-button-border-l: var(--bulma-white-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-white-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-white:focus-visible, .button.is-white.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-white.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-white.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-white[disabled], fieldset[disabled] .button.is-white { - background-color: var(--bulma-white); - border-color: var(--bulma-white); - box-shadow: none; -} -.button.is-black { - --bulma-button-h: var(--bulma-black-h); - --bulma-button-s: var(--bulma-black-s); - --bulma-button-l: var(--bulma-black-l); - --bulma-button-background-l: var(--bulma-black-l); - --bulma-button-border-l: var(--bulma-black-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-black-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-black:focus-visible, .button.is-black.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-black.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-black.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-black[disabled], fieldset[disabled] .button.is-black { - background-color: var(--bulma-black); - border-color: var(--bulma-black); - box-shadow: none; -} -.button.is-light { - --bulma-button-h: var(--bulma-light-h); - --bulma-button-s: var(--bulma-light-s); - --bulma-button-l: var(--bulma-light-l); - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-border-l: var(--bulma-light-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-light-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-light:focus-visible, .button.is-light.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-light.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-light.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-light[disabled], fieldset[disabled] .button.is-light { - background-color: var(--bulma-light); - border-color: var(--bulma-light); - box-shadow: none; -} -.button.is-dark { - --bulma-button-h: var(--bulma-dark-h); - --bulma-button-s: var(--bulma-dark-s); - --bulma-button-l: var(--bulma-dark-l); - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-border-l: var(--bulma-dark-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-dark-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-dark:focus-visible, .button.is-dark.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-dark.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-dark.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-dark[disabled], fieldset[disabled] .button.is-dark { - background-color: var(--bulma-dark); - border-color: var(--bulma-dark); - box-shadow: none; -} -.button.is-text { - --bulma-button-h: var(--bulma-text-h); - --bulma-button-s: var(--bulma-text-s); - --bulma-button-l: var(--bulma-text-l); - --bulma-button-background-l: var(--bulma-text-l); - --bulma-button-border-l: var(--bulma-text-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-text-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-text:focus-visible, .button.is-text.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-text.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-text-light-invert-l); -} -.button.is-text.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-text-dark-invert-l); -} -.button.is-text.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-text.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-text[disabled], fieldset[disabled] .button.is-text { - background-color: var(--bulma-text); - border-color: var(--bulma-text); - box-shadow: none; -} -.button.is-primary { - --bulma-button-h: var(--bulma-primary-h); - --bulma-button-s: var(--bulma-primary-s); - --bulma-button-l: var(--bulma-primary-l); - --bulma-button-background-l: var(--bulma-primary-l); - --bulma-button-border-l: var(--bulma-primary-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-primary-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-primary:focus-visible, .button.is-primary.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-primary.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-primary-light-invert-l); -} -.button.is-primary.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-primary-dark-invert-l); -} -.button.is-primary.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-primary.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-primary[disabled], fieldset[disabled] .button.is-primary { - background-color: var(--bulma-primary); - border-color: var(--bulma-primary); - box-shadow: none; -} -.button.is-link { - --bulma-button-h: var(--bulma-link-h); - --bulma-button-s: var(--bulma-link-s); - --bulma-button-l: var(--bulma-link-l); - --bulma-button-background-l: var(--bulma-link-l); - --bulma-button-border-l: var(--bulma-link-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-link-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-link:focus-visible, .button.is-link.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-link.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-link-light-invert-l); -} -.button.is-link.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-link-dark-invert-l); -} -.button.is-link.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-link.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-link[disabled], fieldset[disabled] .button.is-link { - background-color: var(--bulma-link); - border-color: var(--bulma-link); - box-shadow: none; -} -.button.is-info { - --bulma-button-h: var(--bulma-info-h); - --bulma-button-s: var(--bulma-info-s); - --bulma-button-l: var(--bulma-info-l); - --bulma-button-background-l: var(--bulma-info-l); - --bulma-button-border-l: var(--bulma-info-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-info-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-info:focus-visible, .button.is-info.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-info.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-info-light-invert-l); -} -.button.is-info.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-info-dark-invert-l); -} -.button.is-info.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-info.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-info[disabled], fieldset[disabled] .button.is-info { - background-color: var(--bulma-info); - border-color: var(--bulma-info); - box-shadow: none; -} -.button.is-success { - --bulma-button-h: var(--bulma-success-h); - --bulma-button-s: var(--bulma-success-s); - --bulma-button-l: var(--bulma-success-l); - --bulma-button-background-l: var(--bulma-success-l); - --bulma-button-border-l: var(--bulma-success-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-success-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-success:focus-visible, .button.is-success.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-success.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-success-light-invert-l); -} -.button.is-success.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-success-dark-invert-l); -} -.button.is-success.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-success.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-success[disabled], fieldset[disabled] .button.is-success { - background-color: var(--bulma-success); - border-color: var(--bulma-success); - box-shadow: none; -} -.button.is-warning { - --bulma-button-h: var(--bulma-warning-h); - --bulma-button-s: var(--bulma-warning-s); - --bulma-button-l: var(--bulma-warning-l); - --bulma-button-background-l: var(--bulma-warning-l); - --bulma-button-border-l: var(--bulma-warning-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-warning-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-warning:focus-visible, .button.is-warning.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-warning.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-warning-light-invert-l); -} -.button.is-warning.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-warning-dark-invert-l); -} -.button.is-warning.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-warning.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-warning[disabled], fieldset[disabled] .button.is-warning { - background-color: var(--bulma-warning); - border-color: var(--bulma-warning); - box-shadow: none; -} -.button.is-danger { - --bulma-button-h: var(--bulma-danger-h); - --bulma-button-s: var(--bulma-danger-s); - --bulma-button-l: var(--bulma-danger-l); - --bulma-button-background-l: var(--bulma-danger-l); - --bulma-button-border-l: var(--bulma-danger-l); - --bulma-button-border-width: 0px; - --bulma-button-color-l: var(--bulma-danger-invert-l); - --bulma-button-outer-shadow-a: 0; -} -.button.is-danger:focus-visible, .button.is-danger.is-focused { - --bulma-button-border-width: 1px; -} -.button.is-danger.is-light { - --bulma-button-background-l: var(--bulma-light-l); - --bulma-button-color-l: var(--bulma-danger-light-invert-l); -} -.button.is-danger.is-dark { - --bulma-button-background-l: var(--bulma-dark-l); - --bulma-button-color-l: var(--bulma-danger-dark-invert-l); -} -.button.is-danger.is-soft { - --bulma-button-background-l: var(--bulma-soft-l); - --bulma-button-color-l: var(--bulma-soft-invert-l); -} -.button.is-danger.is-bold { - --bulma-button-background-l: var(--bulma-bold-l); - --bulma-button-color-l: var(--bulma-bold-invert-l); -} -.button.is-danger[disabled], fieldset[disabled] .button.is-danger { - background-color: var(--bulma-danger); - border-color: var(--bulma-danger); - box-shadow: none; -} -.button.is-outlined { - --bulma-button-border-width: max(1px, 0.0625em); - background-color: transparent; - border-color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-l)); - color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-l)); -} -.button.is-outlined:hover { - --bulma-button-border-width: max(2px, 0.125em); - --bulma-button-outer-shadow-alpha: 1; -} -.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined { - background-color: transparent; - box-shadow: none; -} -.button.is-inverted { - background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta))); - color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l)); -} -.button.is-text { - background-color: transparent; - border-color: transparent; - color: var(--bulma-button-text-color); - text-decoration: var(--bulma-button-text-decoration); -} -.button.is-text:hover, .button.is-text.is-hovered { - background-color: var(--bulma-button-text-hover-background-color); - color: var(--bulma-button-text-hover-color); -} -.button.is-text:active, .button.is-text.is-active { - color: var(--bulma-button-text-hover-color); -} -.button.is-text[disabled], fieldset[disabled] .button.is-text { - background-color: transparent; - border-color: transparent; - box-shadow: none; -} -.button.is-ghost { - background: var(--bulma-button-ghost-background); - border-color: var(--bulma-button-ghost-border-color); - box-shadow: none; - color: var(--bulma-button-ghost-color); - text-decoration: var(--bulma-button-ghost-decoration); -} -.button.is-ghost:hover, .button.is-ghost.is-hovered { - color: var(--bulma-button-ghost-hover-color); - text-decoration: var(--bulma-button-ghost-hover-decoration); -} -.button.is-small { - --bulma-control-size: var(--bulma-size-small); - --bulma-control-radius: var(--bulma-radius-small); -} -.button.is-normal { - --bulma-control-size: var(--bulma-size-normal); - --bulma-control-radius: var(--bulma-radius); -} -.button.is-medium { - --bulma-control-size: var(--bulma-size-medium); - --bulma-control-radius: var(--bulma-radius-medium); -} -.button.is-large { - --bulma-control-size: var(--bulma-size-large); - --bulma-control-radius: var(--bulma-radius-medium); -} -.button.is-fullwidth { - display: flex; - width: 100%; -} -.button.is-loading { - box-shadow: none; - color: transparent !important; - pointer-events: none; -} -.button.is-loading::after { - position: absolute; - left: calc(50% - 1em * 0.5); - top: calc(50% - 1em * 0.5); - position: absolute !important; -} -.button.is-static { - background-color: var(--bulma-button-static-background-color); - border-color: var(--bulma-button-static-border-color); - color: var(--bulma-button-static-color); - box-shadow: none; - pointer-events: none; -} -.button.is-rounded { - border-radius: var(--bulma-radius-rounded); - padding-left: calc(var(--bulma-button-padding-horizontal) + 0.25em - var(--bulma-button-border-width)); - padding-right: calc(var(--bulma-button-padding-horizontal) + 0.25em - var(--bulma-button-border-width)); -} + white-space: nowrap; } + .button strong { + color: inherit; } + .button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { + height: 1.5em; + width: 1.5em; } + .button .icon:first-child:not(:last-child) { + margin-left: calc(-0.375em - 1px); + margin-right: 0.1875em; } + .button .icon:last-child:not(:first-child) { + margin-left: 0.1875em; + margin-right: calc(-0.375em - 1px); } + .button .icon:first-child:last-child { + margin-left: calc(-0.375em - 1px); + margin-right: calc(-0.375em - 1px); } + .button:hover, .button.is-hovered { + border-color: #b5b5b5; + color: #363636; } + .button:focus, .button.is-focused { + border-color: #4391E0; + color: #363636; } + .button:focus:not(:active), .button.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); } + .button:active, .button.is-active { + border-color: #4a4a4a; + color: #363636; } + .button.is-text { + background-color: transparent; + border-color: transparent; + color: #4a4a4a; + text-decoration: underline; } + .button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused { + background-color: whitesmoke; + color: #363636; } + .button.is-text:active, .button.is-text.is-active { + background-color: #e8e8e8; + color: #363636; } + .button.is-text[disabled], fieldset[disabled] .button.is-text { + background-color: transparent; + border-color: transparent; + box-shadow: none; } + .button.is-white { + background-color: white; + border-color: transparent; + color: #0a0a0a; } + .button.is-white:hover, .button.is-white.is-hovered { + background-color: #f9f9f9; + border-color: transparent; + color: #0a0a0a; } + .button.is-white:focus, .button.is-white.is-focused { + border-color: transparent; + color: #0a0a0a; } + .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } + .button.is-white:active, .button.is-white.is-active { + background-color: #f2f2f2; + border-color: transparent; + color: #0a0a0a; } + .button.is-white[disabled], fieldset[disabled] .button.is-white { + background-color: white; + border-color: transparent; + box-shadow: none; } + .button.is-white.is-inverted { + background-color: #0a0a0a; + color: white; } + .button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered { + background-color: black; } + .button.is-white.is-inverted[disabled], fieldset[disabled] .button.is-white.is-inverted { + background-color: #0a0a0a; + border-color: transparent; + box-shadow: none; + color: white; } + .button.is-white.is-loading::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; } + .button.is-white.is-outlined { + background-color: transparent; + border-color: white; + color: white; } + .button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused { + background-color: white; + border-color: white; + color: #0a0a0a; } + .button.is-white.is-outlined.is-loading::after { + border-color: transparent transparent white white !important; } + .button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; } + .button.is-white.is-outlined[disabled], fieldset[disabled] .button.is-white.is-outlined { + background-color: transparent; + border-color: white; + box-shadow: none; + color: white; } + .button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + color: #0a0a0a; } + .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused { + background-color: #0a0a0a; + color: white; } + .button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent white white !important; } + .button.is-white.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + box-shadow: none; + color: #0a0a0a; } + .button.is-black { + background-color: #0a0a0a; + border-color: transparent; + color: white; } + .button.is-black:hover, .button.is-black.is-hovered { + background-color: #040404; + border-color: transparent; + color: white; } + .button.is-black:focus, .button.is-black.is-focused { + border-color: transparent; + color: white; } + .button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } + .button.is-black:active, .button.is-black.is-active { + background-color: black; + border-color: transparent; + color: white; } + .button.is-black[disabled], fieldset[disabled] .button.is-black { + background-color: #0a0a0a; + border-color: transparent; + box-shadow: none; } + .button.is-black.is-inverted { + background-color: white; + color: #0a0a0a; } + .button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered { + background-color: #f2f2f2; } + .button.is-black.is-inverted[disabled], fieldset[disabled] .button.is-black.is-inverted { + background-color: white; + border-color: transparent; + box-shadow: none; + color: #0a0a0a; } + .button.is-black.is-loading::after { + border-color: transparent transparent white white !important; } + .button.is-black.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + color: #0a0a0a; } + .button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; } + .button.is-black.is-outlined.is-loading::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; } + .button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent white white !important; } + .button.is-black.is-outlined[disabled], fieldset[disabled] .button.is-black.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + box-shadow: none; + color: #0a0a0a; } + .button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: white; + color: white; } + .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused { + background-color: white; + color: #0a0a0a; } + .button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; } + .button.is-black.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: white; + box-shadow: none; + color: white; } + .button.is-light { + background-color: whitesmoke; + border-color: transparent; + color: #363636; } + .button.is-light:hover, .button.is-light.is-hovered { + background-color: #eeeeee; + border-color: transparent; + color: #363636; } + .button.is-light:focus, .button.is-light.is-focused { + border-color: transparent; + color: #363636; } + .button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } + .button.is-light:active, .button.is-light.is-active { + background-color: #e8e8e8; + border-color: transparent; + color: #363636; } + .button.is-light[disabled], fieldset[disabled] .button.is-light { + background-color: whitesmoke; + border-color: transparent; + box-shadow: none; } + .button.is-light.is-inverted { + background-color: #363636; + color: whitesmoke; } + .button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered { + background-color: #292929; } + .button.is-light.is-inverted[disabled], fieldset[disabled] .button.is-light.is-inverted { + background-color: #363636; + border-color: transparent; + box-shadow: none; + color: whitesmoke; } + .button.is-light.is-loading::after { + border-color: transparent transparent #363636 #363636 !important; } + .button.is-light.is-outlined { + background-color: transparent; + border-color: whitesmoke; + color: whitesmoke; } + .button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused { + background-color: whitesmoke; + border-color: whitesmoke; + color: #363636; } + .button.is-light.is-outlined.is-loading::after { + border-color: transparent transparent whitesmoke whitesmoke !important; } + .button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #363636 #363636 !important; } + .button.is-light.is-outlined[disabled], fieldset[disabled] .button.is-light.is-outlined { + background-color: transparent; + border-color: whitesmoke; + box-shadow: none; + color: whitesmoke; } + .button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: #363636; + color: #363636; } + .button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused { + background-color: #363636; + color: whitesmoke; } + .button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent whitesmoke whitesmoke !important; } + .button.is-light.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: #363636; + box-shadow: none; + color: #363636; } + .button.is-dark { + background-color: #363636; + border-color: transparent; + color: whitesmoke; } + .button.is-dark:hover, .button.is-dark.is-hovered { + background-color: #2f2f2f; + border-color: transparent; + color: whitesmoke; } + .button.is-dark:focus, .button.is-dark.is-focused { + border-color: transparent; + color: whitesmoke; } + .button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } + .button.is-dark:active, .button.is-dark.is-active { + background-color: #292929; + border-color: transparent; + color: whitesmoke; } + .button.is-dark[disabled], fieldset[disabled] .button.is-dark { + background-color: #363636; + border-color: transparent; + box-shadow: none; } + .button.is-dark.is-inverted { + background-color: whitesmoke; + color: #363636; } + .button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered { + background-color: #e8e8e8; } + .button.is-dark.is-inverted[disabled], fieldset[disabled] .button.is-dark.is-inverted { + background-color: whitesmoke; + border-color: transparent; + box-shadow: none; + color: #363636; } + .button.is-dark.is-loading::after { + border-color: transparent transparent whitesmoke whitesmoke !important; } + .button.is-dark.is-outlined { + background-color: transparent; + border-color: #363636; + color: #363636; } + .button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused { + background-color: #363636; + border-color: #363636; + color: whitesmoke; } + .button.is-dark.is-outlined.is-loading::after { + border-color: transparent transparent #363636 #363636 !important; } + .button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent whitesmoke whitesmoke !important; } + .button.is-dark.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-outlined { + background-color: transparent; + border-color: #363636; + box-shadow: none; + color: #363636; } + .button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: whitesmoke; + color: whitesmoke; } + .button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused { + background-color: whitesmoke; + color: #363636; } + .button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #363636 #363636 !important; } + .button.is-dark.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: whitesmoke; + box-shadow: none; + color: whitesmoke; } + .button.is-primary { + background-color: #478D00; + border-color: transparent; + color: #fff; } + .button.is-primary:hover, .button.is-primary.is-hovered { + background-color: #418000; + border-color: transparent; + color: #fff; } + .button.is-primary:focus, .button.is-primary.is-focused { + border-color: transparent; + color: #fff; } + .button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); } + .button.is-primary:active, .button.is-primary.is-active { + background-color: #3a7400; + border-color: transparent; + color: #fff; } + .button.is-primary[disabled], fieldset[disabled] .button.is-primary { + background-color: #478D00; + border-color: transparent; + box-shadow: none; } + .button.is-primary.is-inverted { + background-color: #fff; + color: #478D00; } + .button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered { + background-color: #f2f2f2; } + .button.is-primary.is-inverted[disabled], fieldset[disabled] .button.is-primary.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #478D00; } + .button.is-primary.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-primary.is-outlined { + background-color: transparent; + border-color: #478D00; + color: #478D00; } + .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused { + background-color: #478D00; + border-color: #478D00; + color: #fff; } + .button.is-primary.is-outlined.is-loading::after { + border-color: transparent transparent #478D00 #478D00 !important; } + .button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-primary.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-outlined { + background-color: transparent; + border-color: #478D00; + box-shadow: none; + color: #478D00; } + .button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #478D00; } + .button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #478D00 #478D00 !important; } + .button.is-primary.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-link { + background-color: #4391E0; + border-color: transparent; + color: #fff; } + .button.is-link:hover, .button.is-link.is-hovered { + background-color: #388bde; + border-color: transparent; + color: #fff; } + .button.is-link:focus, .button.is-link.is-focused { + border-color: transparent; + color: #fff; } + .button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); } + .button.is-link:active, .button.is-link.is-active { + background-color: #2d84dc; + border-color: transparent; + color: #fff; } + .button.is-link[disabled], fieldset[disabled] .button.is-link { + background-color: #4391E0; + border-color: transparent; + box-shadow: none; } + .button.is-link.is-inverted { + background-color: #fff; + color: #4391E0; } + .button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered { + background-color: #f2f2f2; } + .button.is-link.is-inverted[disabled], fieldset[disabled] .button.is-link.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #4391E0; } + .button.is-link.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-link.is-outlined { + background-color: transparent; + border-color: #4391E0; + color: #4391E0; } + .button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused { + background-color: #4391E0; + border-color: #4391E0; + color: #fff; } + .button.is-link.is-outlined.is-loading::after { + border-color: transparent transparent #4391E0 #4391E0 !important; } + .button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-link.is-outlined[disabled], fieldset[disabled] .button.is-link.is-outlined { + background-color: transparent; + border-color: #4391E0; + box-shadow: none; + color: #4391E0; } + .button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #4391E0; } + .button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #4391E0 #4391E0 !important; } + .button.is-link.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-info { + background-color: #209cee; + border-color: transparent; + color: #fff; } + .button.is-info:hover, .button.is-info.is-hovered { + background-color: #1496ed; + border-color: transparent; + color: #fff; } + .button.is-info:focus, .button.is-info.is-focused { + border-color: transparent; + color: #fff; } + .button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } + .button.is-info:active, .button.is-info.is-active { + background-color: #118fe4; + border-color: transparent; + color: #fff; } + .button.is-info[disabled], fieldset[disabled] .button.is-info { + background-color: #209cee; + border-color: transparent; + box-shadow: none; } + .button.is-info.is-inverted { + background-color: #fff; + color: #209cee; } + .button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered { + background-color: #f2f2f2; } + .button.is-info.is-inverted[disabled], fieldset[disabled] .button.is-info.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #209cee; } + .button.is-info.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-info.is-outlined { + background-color: transparent; + border-color: #209cee; + color: #209cee; } + .button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused { + background-color: #209cee; + border-color: #209cee; + color: #fff; } + .button.is-info.is-outlined.is-loading::after { + border-color: transparent transparent #209cee #209cee !important; } + .button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-info.is-outlined[disabled], fieldset[disabled] .button.is-info.is-outlined { + background-color: transparent; + border-color: #209cee; + box-shadow: none; + color: #209cee; } + .button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #209cee; } + .button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #209cee #209cee !important; } + .button.is-info.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-success { + background-color: #478D00; + border-color: transparent; + color: #fff; } + .button.is-success:hover, .button.is-success.is-hovered { + background-color: #418000; + border-color: transparent; + color: #fff; } + .button.is-success:focus, .button.is-success.is-focused { + border-color: transparent; + color: #fff; } + .button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); } + .button.is-success:active, .button.is-success.is-active { + background-color: #3a7400; + border-color: transparent; + color: #fff; } + .button.is-success[disabled], fieldset[disabled] .button.is-success { + background-color: #478D00; + border-color: transparent; + box-shadow: none; } + .button.is-success.is-inverted { + background-color: #fff; + color: #478D00; } + .button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered { + background-color: #f2f2f2; } + .button.is-success.is-inverted[disabled], fieldset[disabled] .button.is-success.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #478D00; } + .button.is-success.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-success.is-outlined { + background-color: transparent; + border-color: #478D00; + color: #478D00; } + .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused { + background-color: #478D00; + border-color: #478D00; + color: #fff; } + .button.is-success.is-outlined.is-loading::after { + border-color: transparent transparent #478D00 #478D00 !important; } + .button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-success.is-outlined[disabled], fieldset[disabled] .button.is-success.is-outlined { + background-color: transparent; + border-color: #478D00; + box-shadow: none; + color: #478D00; } + .button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #478D00; } + .button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #478D00 #478D00 !important; } + .button.is-success.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-warning { + background-color: #ffdd57; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning:hover, .button.is-warning.is-hovered { + background-color: #ffda4a; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning:focus, .button.is-warning.is-focused { + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } + .button.is-warning:active, .button.is-warning.is-active { + background-color: #ffd83e; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning[disabled], fieldset[disabled] .button.is-warning { + background-color: #ffdd57; + border-color: transparent; + box-shadow: none; } + .button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + color: #ffdd57; } + .button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered { + background-color: rgba(0, 0, 0, 0.7); } + .button.is-warning.is-inverted[disabled], fieldset[disabled] .button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + border-color: transparent; + box-shadow: none; + color: #ffdd57; } + .button.is-warning.is-loading::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; } + .button.is-warning.is-outlined { + background-color: transparent; + border-color: #ffdd57; + color: #ffdd57; } + .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused { + background-color: #ffdd57; + border-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning.is-outlined.is-loading::after { + border-color: transparent transparent #ffdd57 #ffdd57 !important; } + .button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; } + .button.is-warning.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-outlined { + background-color: transparent; + border-color: #ffdd57; + box-shadow: none; + color: #ffdd57; } + .button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + color: rgba(0, 0, 0, 0.7); } + .button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused { + background-color: rgba(0, 0, 0, 0.7); + color: #ffdd57; } + .button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #ffdd57 #ffdd57 !important; } + .button.is-warning.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + box-shadow: none; + color: rgba(0, 0, 0, 0.7); } + .button.is-danger { + background-color: #a70c20; + border-color: transparent; + color: #fff; } + .button.is-danger:hover, .button.is-danger.is-hovered { + background-color: #9b0b1e; + border-color: transparent; + color: #fff; } + .button.is-danger:focus, .button.is-danger.is-focused { + border-color: transparent; + color: #fff; } + .button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25); } + .button.is-danger:active, .button.is-danger.is-active { + background-color: #8f0a1b; + border-color: transparent; + color: #fff; } + .button.is-danger[disabled], fieldset[disabled] .button.is-danger { + background-color: #a70c20; + border-color: transparent; + box-shadow: none; } + .button.is-danger.is-inverted { + background-color: #fff; + color: #a70c20; } + .button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered { + background-color: #f2f2f2; } + .button.is-danger.is-inverted[disabled], fieldset[disabled] .button.is-danger.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #a70c20; } + .button.is-danger.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-danger.is-outlined { + background-color: transparent; + border-color: #a70c20; + color: #a70c20; } + .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused { + background-color: #a70c20; + border-color: #a70c20; + color: #fff; } + .button.is-danger.is-outlined.is-loading::after { + border-color: transparent transparent #a70c20 #a70c20 !important; } + .button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-danger.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-outlined { + background-color: transparent; + border-color: #a70c20; + box-shadow: none; + color: #a70c20; } + .button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #a70c20; } + .button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #a70c20 #a70c20 !important; } + .button.is-danger.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-small { + border-radius: 2px; + font-size: 0.75rem; } + .button.is-normal { + font-size: 1rem; } + .button.is-medium { + font-size: 1.25rem; } + .button.is-large { + font-size: 1.5rem; } + .button[disabled], fieldset[disabled] .button { + background-color: white; + border-color: #dbdbdb; + box-shadow: none; + opacity: 0.5; } + .button.is-fullwidth { + display: flex; + width: 100%; } + .button.is-loading { + color: transparent !important; + pointer-events: none; } + .button.is-loading::after { + position: absolute; + left: calc(50% - (1em / 2)); + top: calc(50% - (1em / 2)); + position: absolute !important; } + .button.is-static { + background-color: whitesmoke; + border-color: #dbdbdb; + color: #7a7a7a; + box-shadow: none; + pointer-events: none; } + .button.is-rounded { + border-radius: 290486px; + padding-left: 1em; + padding-right: 1em; } .buttons { align-items: center; display: flex; flex-wrap: wrap; - gap: 0.75rem; - justify-content: flex-start; -} -.buttons.are-small { - --bulma-control-size: var(--bulma-size-small); - --bulma-control-radius: var(--bulma-radius-small); -} -.buttons.are-medium { - --bulma-control-size: var(--bulma-size-medium); - --bulma-control-radius: var(--bulma-radius-medium); -} -.buttons.are-large { - --bulma-control-size: var(--bulma-size-large); - --bulma-control-radius: var(--bulma-radius-large); -} -.buttons.has-addons { - gap: 0; -} -.buttons.has-addons .button:not(:first-child) { - border-end-start-radius: 0; - border-start-start-radius: 0; -} -.buttons.has-addons .button:not(:last-child) { - border-end-end-radius: 0; - border-start-end-radius: 0; - margin-inline-end: -1px; -} -.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered { - z-index: 2; -} -.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected { - z-index: 3; -} -.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover { - z-index: 4; -} -.buttons.has-addons .button.is-expanded { + justify-content: flex-start; } + .buttons .button { + margin-bottom: 0.5rem; } + .buttons .button:not(:last-child):not(.is-fullwidth) { + margin-right: 0.5rem; } + .buttons:last-child { + margin-bottom: -0.5rem; } + .buttons:not(:last-child) { + margin-bottom: 1rem; } + .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { + border-radius: 2px; + font-size: 0.75rem; } + .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { + font-size: 1.25rem; } + .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { + font-size: 1.5rem; } + .buttons.has-addons .button:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .buttons.has-addons .button:not(:last-child) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; + margin-right: -1px; } + .buttons.has-addons .button:last-child { + margin-right: 0; } + .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered { + z-index: 2; } + .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected { + z-index: 3; } + .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover { + z-index: 4; } + .buttons.has-addons .button.is-expanded { + flex-grow: 1; + flex-shrink: 1; } + .buttons.is-centered { + justify-content: center; } + .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) { + margin-left: 0.25rem; + margin-right: 0.25rem; } + .buttons.is-right { + justify-content: flex-end; } + .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) { + margin-left: 0.25rem; + margin-right: 0.25rem; } + +.container { flex-grow: 1; - flex-shrink: 1; -} -.buttons.is-centered { - justify-content: center; -} -.buttons.is-right { - justify-content: flex-end; -} - -@media screen and (max-width: 768px) { - .button.is-responsive.is-small { - font-size: calc(var(--bulma-size-small) * 0.75); - } - .button.is-responsive, - .button.is-responsive.is-normal { - font-size: calc(var(--bulma-size-small) * 0.875); - } - .button.is-responsive.is-medium { - font-size: var(--bulma-size-small); - } - .button.is-responsive.is-large { - font-size: var(--bulma-size-normal); - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .button.is-responsive.is-small { - font-size: calc(var(--bulma-size-small) * 0.875); - } - .button.is-responsive, - .button.is-responsive.is-normal { - font-size: var(--bulma-size-small); - } - .button.is-responsive.is-medium { - font-size: var(--bulma-size-normal); - } - .button.is-responsive.is-large { - font-size: var(--bulma-size-medium); - } -} -.content { - --bulma-content-heading-color: var(--bulma-text-strong); - --bulma-content-heading-weight: var(--bulma-weight-extrabold); - --bulma-content-heading-line-height: 1.125; - --bulma-content-block-margin-bottom: 1em; - --bulma-content-blockquote-background-color: var(--bulma-background); - --bulma-content-blockquote-border-left: 5px solid var(--bulma-border); - --bulma-content-blockquote-padding: 1.25em 1.5em; - --bulma-content-pre-padding: 1.25em 1.5em; - --bulma-content-table-cell-border: 1px solid var(--bulma-border); - --bulma-content-table-cell-border-width: 0 0 1px; - --bulma-content-table-cell-padding: 0.5em 0.75em; - --bulma-content-table-cell-heading-color: var(--bulma-text-strong); - --bulma-content-table-head-cell-border-width: 0 0 2px; - --bulma-content-table-head-cell-color: var(--bulma-text-strong); - --bulma-content-table-body-last-row-cell-border-bottom-width: 0; - --bulma-content-table-foot-cell-border-width: 2px 0 0; - --bulma-content-table-foot-cell-color: var(--bulma-text-strong); -} - + margin: 0 auto; + position: relative; + width: auto; } + @media screen and (min-width: 1024px) { + .container { + max-width: 960px; } + .container.is-fluid { + margin-left: 32px; + margin-right: 32px; + max-width: none; } } + @media screen and (max-width: 1215px) { + .container.is-widescreen { + max-width: 1152px; } } + @media screen and (max-width: 1407px) { + .container.is-fullhd { + max-width: 1344px; } } + @media screen and (min-width: 1216px) { + .container { + max-width: 1152px; } } + @media screen and (min-width: 1408px) { + .container { + max-width: 1344px; } } .content li + li { - margin-top: 0.25em; -} + margin-top: 0.25em; } + .content p:not(:last-child), .content dl:not(:last-child), .content ol:not(:last-child), @@ -1222,2193 +2013,1323 @@ a.box:active { .content blockquote:not(:last-child), .content pre:not(:last-child), .content table:not(:last-child) { - margin-bottom: var(--bulma-content-block-margin-bottom); -} + margin-bottom: 1em; } + .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 { - color: var(--bulma-content-heading-color); - font-weight: var(--bulma-content-heading-weight); - line-height: var(--bulma-content-heading-line-height); -} + color: #363636; + font-weight: 600; + line-height: 1.125; } + .content h1 { font-size: 2em; - margin-bottom: 0.5em; -} -.content h1:not(:first-child) { - margin-top: 1em; -} + margin-bottom: 0.5em; } + .content h1:not(:first-child) { + margin-top: 1em; } + .content h2 { font-size: 1.75em; - margin-bottom: 0.5714em; -} -.content h2:not(:first-child) { - margin-top: 1.1428em; -} + margin-bottom: 0.5714em; } + .content h2:not(:first-child) { + margin-top: 1.1428em; } + .content h3 { font-size: 1.5em; - margin-bottom: 0.6666em; -} -.content h3:not(:first-child) { - margin-top: 1.3333em; -} + margin-bottom: 0.6666em; } + .content h3:not(:first-child) { + margin-top: 1.3333em; } + .content h4 { font-size: 1.25em; - margin-bottom: 0.8em; -} + margin-bottom: 0.8em; } + .content h5 { font-size: 1.125em; - margin-bottom: 0.8888em; -} + margin-bottom: 0.8888em; } + .content h6 { font-size: 1em; - margin-bottom: 1em; -} + margin-bottom: 1em; } + .content blockquote { - background-color: var(--bulma-content-blockquote-background-color); - border-inline-start: var(--bulma-content-blockquote-border-left); - padding: var(--bulma-content-blockquote-padding); -} + background-color: whitesmoke; + border-left: 5px solid #dbdbdb; + padding: 1.25em 1.5em; } + .content ol { list-style-position: outside; - margin-inline-start: 2em; -} -.content ol:not(:first-child) { - margin-top: 1em; -} -.content ol:not([type]) { - list-style-type: decimal; -} -.content ol:not([type]).is-lower-alpha { - list-style-type: lower-alpha; -} -.content ol:not([type]).is-lower-roman { - list-style-type: lower-roman; -} -.content ol:not([type]).is-upper-alpha { - list-style-type: upper-alpha; -} -.content ol:not([type]).is-upper-roman { - list-style-type: upper-roman; -} + margin-left: 2em; + margin-top: 1em; } + .content ol:not([type]) { + list-style-type: decimal; } + .content ol:not([type]).is-lower-alpha { + list-style-type: lower-alpha; } + .content ol:not([type]).is-lower-roman { + list-style-type: lower-roman; } + .content ol:not([type]).is-upper-alpha { + list-style-type: upper-alpha; } + .content ol:not([type]).is-upper-roman { + list-style-type: upper-roman; } + .content ul { list-style: disc outside; - margin-inline-start: 2em; -} -.content ul:not(:first-child) { - margin-top: 1em; -} -.content ul ul { - list-style-type: circle; - margin-bottom: 0.25em; - margin-top: 0.25em; -} -.content ul ul ul { - list-style-type: square; -} + margin-left: 2em; + margin-top: 1em; } + .content ul ul { + list-style-type: circle; + margin-top: 0.5em; } + .content ul ul ul { + list-style-type: square; } + .content dd { - margin-inline-start: 2em; -} -.content figure:not([class]) { + margin-left: 2em; } + +.content figure { margin-left: 2em; margin-right: 2em; - text-align: center; -} -.content figure:not([class]):not(:first-child) { - margin-top: 2em; -} -.content figure:not([class]):not(:last-child) { - margin-bottom: 2em; -} -.content figure:not([class]) img { - display: inline-block; -} -.content figure:not([class]) figcaption { - font-style: italic; -} + text-align: center; } + .content figure:not(:first-child) { + margin-top: 2em; } + .content figure:not(:last-child) { + margin-bottom: 2em; } + .content figure img { + display: inline-block; } + .content figure figcaption { + font-style: italic; } + .content pre { -webkit-overflow-scrolling: touch; overflow-x: auto; - padding: var(--bulma-content-pre-padding); + padding: 1.25em 1.5em; white-space: pre; - word-wrap: normal; -} + word-wrap: normal; } + .content sup, .content sub { - font-size: 75%; -} -.content table td, -.content table th { - border: var(--bulma-content-table-cell-border); - border-width: var(--bulma-content-table-cell-border-width); - padding: var(--bulma-content-table-cell-padding); - vertical-align: top; -} -.content table th { - color: var(--bulma-content-table-cell-heading-color); -} -.content table th:not([align]) { - text-align: inherit; -} -.content table thead td, -.content table thead th { - border-width: var(--bulma-content-table-head-cell-border-width); - color: var(--bulma-content-table-head-cell-color); -} -.content table tfoot td, -.content table tfoot th { - border-width: var(--bulma-content-table-foot-cell-border-width); - color: var(--bulma-content-table-foot-cell-color); -} -.content table tbody tr:last-child td, -.content table tbody tr:last-child th { - border-bottom-width: var(--bulma-content-table-body-last-row-cell-border-bottom-width); -} + font-size: 75%; } + +.content table { + width: 100%; } + .content table td, + .content table th { + border: 1px solid #dbdbdb; + border-width: 0 0 1px; + padding: 0.5em 0.75em; + vertical-align: top; } + .content table th { + color: #363636; } + .content table th:not([align]) { + text-align: left; } + .content table thead td, + .content table thead th { + border-width: 0 0 2px; + color: #363636; } + .content table tfoot td, + .content table tfoot th { + border-width: 2px 0 0; + color: #363636; } + .content table tbody tr:last-child td, + .content table tbody tr:last-child th { + border-bottom-width: 0; } + .content .tabs li + li { - margin-top: 0; -} + margin-top: 0; } + .content.is-small { - font-size: var(--bulma-size-small); -} -.content.is-normal { - font-size: var(--bulma-size-normal); -} + font-size: 0.75rem; } + .content.is-medium { - font-size: var(--bulma-size-medium); -} + font-size: 1.25rem; } + .content.is-large { - font-size: var(--bulma-size-large); -} - -.delete { - --bulma-delete-dimensions: 1.25rem; - --bulma-delete-background-l: 0%; - --bulma-delete-background-alpha: 0.5; - --bulma-delete-color: var(--bulma-white); - appearance: none; - background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-delete-background-l), var(--bulma-delete-background-alpha)); - border: none; - border-radius: var(--bulma-radius-rounded); - cursor: pointer; - pointer-events: auto; - display: inline-flex; - flex-grow: 0; - flex-shrink: 0; - font-size: 1em; - height: var(--bulma-delete-dimensions); - max-height: var(--bulma-delete-dimensions); - max-width: var(--bulma-delete-dimensions); - min-height: var(--bulma-delete-dimensions); - min-width: var(--bulma-delete-dimensions); - outline: none; - position: relative; - vertical-align: top; - width: var(--bulma-delete-dimensions); -} -.delete::before, .delete::after { - background-color: var(--bulma-delete-color); - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; -} -.delete::before { - height: 2px; - width: 50%; -} -.delete::after { - height: 50%; - width: 2px; -} -.delete:hover, .delete:focus { - --bulma-delete-background-alpha: 0.4; -} -.delete:active { - --bulma-delete-background-alpha: 0.5; -} -.delete.is-small { - --bulma-delete-dimensions: 1rem; -} -.delete.is-medium { - --bulma-delete-dimensions: 1.5rem; -} -.delete.is-large { - --bulma-delete-dimensions: 2rem; -} - -.icon, -.icon-text { - --bulma-icon-dimensions: 1.5rem; - --bulma-icon-dimensions-small: 1rem; - --bulma-icon-dimensions-medium: 2rem; - --bulma-icon-dimensions-large: 3rem; - --bulma-icon-text-spacing: 0.25em; -} + font-size: 1.5rem; } .icon { align-items: center; display: inline-flex; - flex-shrink: 0; justify-content: center; - height: var(--bulma-icon-dimensions); - transition-duration: var(--bulma-duration); - transition-property: color; - width: var(--bulma-icon-dimensions); -} -.icon.is-small { - height: var(--bulma-icon-dimensions-small); - width: var(--bulma-icon-dimensions-small); -} -.icon.is-medium { - height: var(--bulma-icon-dimensions-medium); - width: var(--bulma-icon-dimensions-medium); -} -.icon.is-large { - height: var(--bulma-icon-dimensions-large); - width: var(--bulma-icon-dimensions-large); -} - -.icon-text { - align-items: flex-start; - color: inherit; - display: inline-flex; - flex-wrap: wrap; - gap: var(--bulma-icon-text-spacing); - line-height: var(--bulma-icon-dimensions); - vertical-align: top; -} -.icon-text .icon { - flex-grow: 0; - flex-shrink: 0; -} - -div.icon-text { - display: flex; -} + height: 1.5rem; + width: 1.5rem; } + .icon.is-small { + height: 1rem; + width: 1rem; } + .icon.is-medium { + height: 2rem; + width: 2rem; } + .icon.is-large { + height: 3rem; + width: 3rem; } .image { display: block; - position: relative; -} -.image img { - display: block; - height: auto; - width: 100%; -} -.image img.is-rounded { - border-radius: var(--bulma-radius-rounded); -} -.image.is-fullwidth { - width: 100%; -} -.image.is-square img, -.image.is-square .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-square { - aspect-ratio: 1; -} -.image.is-1by1 { - aspect-ratio: 1/1; -} -.image.is-1by1 img, -.image.is-1by1 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-5by4 { - aspect-ratio: 5/4; -} -.image.is-5by4 img, -.image.is-5by4 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-4by3 { - aspect-ratio: 4/3; -} -.image.is-4by3 img, -.image.is-4by3 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-3by2 { - aspect-ratio: 3/2; -} -.image.is-3by2 img, -.image.is-3by2 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-5by3 { - aspect-ratio: 5/3; -} -.image.is-5by3 img, -.image.is-5by3 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-16by9 { - aspect-ratio: 16/9; -} -.image.is-16by9 img, -.image.is-16by9 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-2by1 { - aspect-ratio: 2/1; -} -.image.is-2by1 img, -.image.is-2by1 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-3by1 { - aspect-ratio: 3/1; -} -.image.is-3by1 img, -.image.is-3by1 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-4by5 { - aspect-ratio: 4/5; -} -.image.is-4by5 img, -.image.is-4by5 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-3by4 { - aspect-ratio: 3/4; -} -.image.is-3by4 img, -.image.is-3by4 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-2by3 { - aspect-ratio: 2/3; -} -.image.is-2by3 img, -.image.is-2by3 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-3by5 { - aspect-ratio: 3/5; -} -.image.is-3by5 img, -.image.is-3by5 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-9by16 { - aspect-ratio: 9/16; -} -.image.is-9by16 img, -.image.is-9by16 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-1by2 { - aspect-ratio: 1/2; -} -.image.is-1by2 img, -.image.is-1by2 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-1by3 { - aspect-ratio: 1/3; -} -.image.is-1by3 img, -.image.is-1by3 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - height: 100%; - width: 100%; -} -.image.is-16x16 { - height: 16px; - width: 16px; -} -.image.is-24x24 { - height: 24px; - width: 24px; -} -.image.is-32x32 { - height: 32px; - width: 32px; -} -.image.is-48x48 { - height: 48px; - width: 48px; -} -.image.is-64x64 { - height: 64px; - width: 64px; -} -.image.is-96x96 { - height: 96px; - width: 96px; -} -.image.is-128x128 { - height: 128px; - width: 128px; -} - -.loader { - animation: spinAround 500ms infinite linear; - border: 2px solid var(--bulma-border); - border-radius: var(--bulma-radius-rounded); - border-right-color: transparent; - border-top-color: transparent; - content: ""; - display: block; - height: 1em; - position: relative; - width: 1em; -} + position: relative; } + .image img { + display: block; + height: auto; + width: 100%; } + .image img.is-rounded { + border-radius: 290486px; } + .image.is-square img, + .image.is-square .has-ratio, .image.is-1by1 img, + .image.is-1by1 .has-ratio, .image.is-5by4 img, + .image.is-5by4 .has-ratio, .image.is-4by3 img, + .image.is-4by3 .has-ratio, .image.is-3by2 img, + .image.is-3by2 .has-ratio, .image.is-5by3 img, + .image.is-5by3 .has-ratio, .image.is-16by9 img, + .image.is-16by9 .has-ratio, .image.is-2by1 img, + .image.is-2by1 .has-ratio, .image.is-3by1 img, + .image.is-3by1 .has-ratio, .image.is-4by5 img, + .image.is-4by5 .has-ratio, .image.is-3by4 img, + .image.is-3by4 .has-ratio, .image.is-2by3 img, + .image.is-2by3 .has-ratio, .image.is-3by5 img, + .image.is-3by5 .has-ratio, .image.is-9by16 img, + .image.is-9by16 .has-ratio, .image.is-1by2 img, + .image.is-1by2 .has-ratio, .image.is-1by3 img, + .image.is-1by3 .has-ratio { + height: 100%; + width: 100%; } + .image.is-square, .image.is-1by1 { + padding-top: 100%; } + .image.is-5by4 { + padding-top: 80%; } + .image.is-4by3 { + padding-top: 75%; } + .image.is-3by2 { + padding-top: 66.6666%; } + .image.is-5by3 { + padding-top: 60%; } + .image.is-16by9 { + padding-top: 56.25%; } + .image.is-2by1 { + padding-top: 50%; } + .image.is-3by1 { + padding-top: 33.3333%; } + .image.is-4by5 { + padding-top: 125%; } + .image.is-3by4 { + padding-top: 133.3333%; } + .image.is-2by3 { + padding-top: 150%; } + .image.is-3by5 { + padding-top: 166.6666%; } + .image.is-9by16 { + padding-top: 177.7777%; } + .image.is-1by2 { + padding-top: 200%; } + .image.is-1by3 { + padding-top: 300%; } + .image.is-16x16 { + height: 16px; + width: 16px; } + .image.is-24x24 { + height: 24px; + width: 24px; } + .image.is-32x32 { + height: 32px; + width: 32px; } + .image.is-48x48 { + height: 48px; + width: 48px; } + .image.is-64x64 { + height: 64px; + width: 64px; } + .image.is-96x96 { + height: 96px; + width: 96px; } + .image.is-128x128 { + height: 128px; + width: 128px; } .notification { - --bulma-notification-h: var(--bulma-scheme-h); - --bulma-notification-s: var(--bulma-scheme-s); - --bulma-notification-background-l: var(--bulma-background-l); - --bulma-notification-color-l: var(--bulma-text-strong-l); - --bulma-notification-code-background-color: var(--bulma-scheme-main); - --bulma-notification-radius: var(--bulma-radius); - --bulma-notification-padding: 1.375em 1.5em; -} - -.notification { - background-color: hsl(var(--bulma-notification-h), var(--bulma-notification-s), var(--bulma-notification-background-l)); - border-radius: var(--bulma-notification-radius); - color: hsl(var(--bulma-notification-h), var(--bulma-notification-s), var(--bulma-notification-color-l)); - padding: var(--bulma-notification-padding); - position: relative; -} -.notification a:not(.button):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; -} -.notification strong { - color: currentColor; -} -.notification code, -.notification pre { - background: var(--bulma-notification-code-background-color); -} -.notification pre code { - background: transparent; -} -.notification > .delete { - position: absolute; - inset-inline-end: 1rem; - top: 1rem; -} -.notification .title, -.notification .subtitle, -.notification .content { - color: currentColor; -} -.notification.is-white { - --bulma-notification-h: var(--bulma-white-h); - --bulma-notification-s: var(--bulma-white-s); - --bulma-notification-background-l: var(--bulma-white-l); - --bulma-notification-color-l: var(--bulma-white-invert-l); -} -.notification.is-white.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-white-light-invert-l); -} -.notification.is-white.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-white-dark-invert-l); -} -.notification.is-black { - --bulma-notification-h: var(--bulma-black-h); - --bulma-notification-s: var(--bulma-black-s); - --bulma-notification-background-l: var(--bulma-black-l); - --bulma-notification-color-l: var(--bulma-black-invert-l); -} -.notification.is-black.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-black-light-invert-l); -} -.notification.is-black.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-black-dark-invert-l); -} -.notification.is-light { - --bulma-notification-h: var(--bulma-light-h); - --bulma-notification-s: var(--bulma-light-s); - --bulma-notification-background-l: var(--bulma-light-l); - --bulma-notification-color-l: var(--bulma-light-invert-l); -} -.notification.is-light.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-light-light-invert-l); -} -.notification.is-light.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-light-dark-invert-l); -} -.notification.is-dark { - --bulma-notification-h: var(--bulma-dark-h); - --bulma-notification-s: var(--bulma-dark-s); - --bulma-notification-background-l: var(--bulma-dark-l); - --bulma-notification-color-l: var(--bulma-dark-invert-l); -} -.notification.is-dark.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-dark-light-invert-l); -} -.notification.is-dark.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-dark-dark-invert-l); -} -.notification.is-text { - --bulma-notification-h: var(--bulma-text-h); - --bulma-notification-s: var(--bulma-text-s); - --bulma-notification-background-l: var(--bulma-text-l); - --bulma-notification-color-l: var(--bulma-text-invert-l); -} -.notification.is-text.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-text-light-invert-l); -} -.notification.is-text.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-text-dark-invert-l); -} -.notification.is-primary { - --bulma-notification-h: var(--bulma-primary-h); - --bulma-notification-s: var(--bulma-primary-s); - --bulma-notification-background-l: var(--bulma-primary-l); - --bulma-notification-color-l: var(--bulma-primary-invert-l); -} -.notification.is-primary.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-primary-light-invert-l); -} -.notification.is-primary.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-primary-dark-invert-l); -} -.notification.is-link { - --bulma-notification-h: var(--bulma-link-h); - --bulma-notification-s: var(--bulma-link-s); - --bulma-notification-background-l: var(--bulma-link-l); - --bulma-notification-color-l: var(--bulma-link-invert-l); -} -.notification.is-link.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-link-light-invert-l); -} -.notification.is-link.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-link-dark-invert-l); -} -.notification.is-info { - --bulma-notification-h: var(--bulma-info-h); - --bulma-notification-s: var(--bulma-info-s); - --bulma-notification-background-l: var(--bulma-info-l); - --bulma-notification-color-l: var(--bulma-info-invert-l); -} -.notification.is-info.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-info-light-invert-l); -} -.notification.is-info.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-info-dark-invert-l); -} -.notification.is-success { - --bulma-notification-h: var(--bulma-success-h); - --bulma-notification-s: var(--bulma-success-s); - --bulma-notification-background-l: var(--bulma-success-l); - --bulma-notification-color-l: var(--bulma-success-invert-l); -} -.notification.is-success.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-success-light-invert-l); -} -.notification.is-success.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-success-dark-invert-l); -} -.notification.is-warning { - --bulma-notification-h: var(--bulma-warning-h); - --bulma-notification-s: var(--bulma-warning-s); - --bulma-notification-background-l: var(--bulma-warning-l); - --bulma-notification-color-l: var(--bulma-warning-invert-l); -} -.notification.is-warning.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-warning-light-invert-l); -} -.notification.is-warning.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-warning-dark-invert-l); -} -.notification.is-danger { - --bulma-notification-h: var(--bulma-danger-h); - --bulma-notification-s: var(--bulma-danger-s); - --bulma-notification-background-l: var(--bulma-danger-l); - --bulma-notification-color-l: var(--bulma-danger-invert-l); -} -.notification.is-danger.is-light { - --bulma-notification-background-l: 90%; - --bulma-notification-color-l: var(--bulma-danger-light-invert-l); -} -.notification.is-danger.is-dark { - --bulma-notification-background-l: 20%; - --bulma-notification-color-l: var(--bulma-danger-dark-invert-l); -} + background-color: whitesmoke; + border-radius: 4px; + padding: 1.25rem 2.5rem 1.25rem 1.5rem; + position: relative; } + .notification a:not(.button):not(.dropdown-item) { + color: currentColor; + text-decoration: underline; } + .notification strong { + color: currentColor; } + .notification code, + .notification pre { + background: white; } + .notification pre code { + background: transparent; } + .notification > .delete { + position: absolute; + right: 0.5rem; + top: 0.5rem; } + .notification .title, + .notification .subtitle, + .notification .content { + color: currentColor; } + .notification.is-white { + background-color: white; + color: #0a0a0a; } + .notification.is-black { + background-color: #0a0a0a; + color: white; } + .notification.is-light { + background-color: whitesmoke; + color: #363636; } + .notification.is-dark { + background-color: #363636; + color: whitesmoke; } + .notification.is-primary { + background-color: #478D00; + color: #fff; } + .notification.is-link { + background-color: #4391E0; + color: #fff; } + .notification.is-info { + background-color: #209cee; + color: #fff; } + .notification.is-success { + background-color: #478D00; + color: #fff; } + .notification.is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .notification.is-danger { + background-color: #a70c20; + color: #fff; } .progress { - --bulma-progress-border-radius: var(--bulma-radius-rounded); - --bulma-progress-bar-background-color: var(--bulma-border-weak); - --bulma-progress-value-background-color: var(--bulma-text); - --bulma-progress-indeterminate-duration: 1.5s; -} - -.progress { - appearance: none; + -moz-appearance: none; + -webkit-appearance: none; border: none; - border-radius: var(--bulma-progress-border-radius); + border-radius: 290486px; display: block; - height: var(--bulma-size-normal); + height: 1rem; overflow: hidden; padding: 0; - width: 100%; -} -.progress::-webkit-progress-bar { - background-color: var(--bulma-progress-bar-background-color); -} -.progress::-webkit-progress-value { - background-color: var(--bulma-progress-value-background-color); -} -.progress::-moz-progress-bar { - background-color: var(--bulma-progress-value-background-color); -} -.progress::-ms-fill { - background-color: var(--bulma-progress-value-background-color); - border: none; -} -.progress.is-white { - --bulma-progress-value-background-color: var(--bulma-white); -} -.progress.is-black { - --bulma-progress-value-background-color: var(--bulma-black); -} -.progress.is-light { - --bulma-progress-value-background-color: var(--bulma-light); -} -.progress.is-dark { - --bulma-progress-value-background-color: var(--bulma-dark); -} -.progress.is-text { - --bulma-progress-value-background-color: var(--bulma-text); -} -.progress.is-primary { - --bulma-progress-value-background-color: var(--bulma-primary); -} -.progress.is-link { - --bulma-progress-value-background-color: var(--bulma-link); -} -.progress.is-info { - --bulma-progress-value-background-color: var(--bulma-info); -} -.progress.is-success { - --bulma-progress-value-background-color: var(--bulma-success); -} -.progress.is-warning { - --bulma-progress-value-background-color: var(--bulma-warning); -} -.progress.is-danger { - --bulma-progress-value-background-color: var(--bulma-danger); -} -.progress:indeterminate { - animation-duration: var(--bulma-progress-indeterminate-duration); - animation-iteration-count: infinite; - animation-name: moveIndeterminate; - animation-timing-function: linear; - background-color: var(--bulma-progress-bar-background-color); - background-image: linear-gradient(to right, var(--bulma-progress-value-background-color) 30%, var(--bulma-progress-bar-background-color) 30%); - background-position: top left; - background-repeat: no-repeat; - background-size: 150% 150%; -} -.progress:indeterminate::-webkit-progress-bar { - background-color: transparent; -} -.progress:indeterminate::-moz-progress-bar { - background-color: transparent; -} -.progress:indeterminate::-ms-fill { - animation-name: none; -} -.progress.is-small { - height: var(--bulma-size-small); -} -.progress.is-medium { - height: var(--bulma-size-medium); -} -.progress.is-large { - height: var(--bulma-size-large); -} + width: 100%; } + .progress::-webkit-progress-bar { + background-color: #dbdbdb; } + .progress::-webkit-progress-value { + background-color: #4a4a4a; } + .progress::-moz-progress-bar { + background-color: #4a4a4a; } + .progress::-ms-fill { + background-color: #4a4a4a; + border: none; } + .progress.is-white::-webkit-progress-value { + background-color: white; } + .progress.is-white::-moz-progress-bar { + background-color: white; } + .progress.is-white::-ms-fill { + background-color: white; } + .progress.is-white:indeterminate { + background-image: linear-gradient(to right, white 30%, #dbdbdb 30%); } + .progress.is-black::-webkit-progress-value { + background-color: #0a0a0a; } + .progress.is-black::-moz-progress-bar { + background-color: #0a0a0a; } + .progress.is-black::-ms-fill { + background-color: #0a0a0a; } + .progress.is-black:indeterminate { + background-image: linear-gradient(to right, #0a0a0a 30%, #dbdbdb 30%); } + .progress.is-light::-webkit-progress-value { + background-color: whitesmoke; } + .progress.is-light::-moz-progress-bar { + background-color: whitesmoke; } + .progress.is-light::-ms-fill { + background-color: whitesmoke; } + .progress.is-light:indeterminate { + background-image: linear-gradient(to right, whitesmoke 30%, #dbdbdb 30%); } + .progress.is-dark::-webkit-progress-value { + background-color: #363636; } + .progress.is-dark::-moz-progress-bar { + background-color: #363636; } + .progress.is-dark::-ms-fill { + background-color: #363636; } + .progress.is-dark:indeterminate { + background-image: linear-gradient(to right, #363636 30%, #dbdbdb 30%); } + .progress.is-primary::-webkit-progress-value { + background-color: #478D00; } + .progress.is-primary::-moz-progress-bar { + background-color: #478D00; } + .progress.is-primary::-ms-fill { + background-color: #478D00; } + .progress.is-primary:indeterminate { + background-image: linear-gradient(to right, #478D00 30%, #dbdbdb 30%); } + .progress.is-link::-webkit-progress-value { + background-color: #4391E0; } + .progress.is-link::-moz-progress-bar { + background-color: #4391E0; } + .progress.is-link::-ms-fill { + background-color: #4391E0; } + .progress.is-link:indeterminate { + background-image: linear-gradient(to right, #4391E0 30%, #dbdbdb 30%); } + .progress.is-info::-webkit-progress-value { + background-color: #209cee; } + .progress.is-info::-moz-progress-bar { + background-color: #209cee; } + .progress.is-info::-ms-fill { + background-color: #209cee; } + .progress.is-info:indeterminate { + background-image: linear-gradient(to right, #209cee 30%, #dbdbdb 30%); } + .progress.is-success::-webkit-progress-value { + background-color: #478D00; } + .progress.is-success::-moz-progress-bar { + background-color: #478D00; } + .progress.is-success::-ms-fill { + background-color: #478D00; } + .progress.is-success:indeterminate { + background-image: linear-gradient(to right, #478D00 30%, #dbdbdb 30%); } + .progress.is-warning::-webkit-progress-value { + background-color: #ffdd57; } + .progress.is-warning::-moz-progress-bar { + background-color: #ffdd57; } + .progress.is-warning::-ms-fill { + background-color: #ffdd57; } + .progress.is-warning:indeterminate { + background-image: linear-gradient(to right, #ffdd57 30%, #dbdbdb 30%); } + .progress.is-danger::-webkit-progress-value { + background-color: #a70c20; } + .progress.is-danger::-moz-progress-bar { + background-color: #a70c20; } + .progress.is-danger::-ms-fill { + background-color: #a70c20; } + .progress.is-danger:indeterminate { + background-image: linear-gradient(to right, #a70c20 30%, #dbdbdb 30%); } + .progress:indeterminate { + animation-duration: 1.5s; + animation-iteration-count: infinite; + animation-name: moveIndeterminate; + animation-timing-function: linear; + background-color: #dbdbdb; + background-image: linear-gradient(to right, #4a4a4a 30%, #dbdbdb 30%); + background-position: top left; + background-repeat: no-repeat; + background-size: 150% 150%; } + .progress:indeterminate::-webkit-progress-bar { + background-color: transparent; } + .progress:indeterminate::-moz-progress-bar { + background-color: transparent; } + .progress.is-small { + height: 0.75rem; } + .progress.is-medium { + height: 1.25rem; } + .progress.is-large { + height: 1.5rem; } @keyframes moveIndeterminate { from { - background-position: 200% 0; - } + background-position: 200% 0; } to { - background-position: -200% 0; - } -} -.table { - --bulma-table-color: var(--bulma-text-strong); - --bulma-table-background-color: var(--bulma-scheme-main); - --bulma-table-cell-border-color: var(--bulma-border); - --bulma-table-cell-border-style: solid; - --bulma-table-cell-border-width: 0 0 1px; - --bulma-table-cell-padding: 0.5em 0.75em; - --bulma-table-cell-heading-color: var(--bulma-text-strong); - --bulma-table-cell-text-align: left; - --bulma-table-head-cell-border-width: 0 0 2px; - --bulma-table-head-cell-color: var(--bulma-text-strong); - --bulma-table-foot-cell-border-width: 2px 0 0; - --bulma-table-foot-cell-color: var(--bulma-text-strong); - --bulma-table-head-background-color: transparent; - --bulma-table-body-background-color: transparent; - --bulma-table-foot-background-color: transparent; - --bulma-table-row-hover-background-color: var(--bulma-scheme-main-bis); - --bulma-table-row-active-background-color: var(--bulma-primary); - --bulma-table-row-active-color: var(--bulma-primary-invert); - --bulma-table-striped-row-even-background-color: var(--bulma-scheme-main-bis); - --bulma-table-striped-row-even-hover-background-color: var(--bulma-scheme-main-ter); -} + background-position: -200% 0; } } .table { - background-color: var(--bulma-table-background-color); - color: var(--bulma-table-color); -} -.table td, -.table th { - background-color: var(--bulma-table-cell-background-color); - border-color: var(--bulma-table-cell-border-color); - border-style: var(--bulma-table-cell-border-style); - border-width: var(--bulma-table-cell-border-width); - color: var(--bulma-table-color); - padding: var(--bulma-table-cell-padding); - vertical-align: top; -} -.table td.is-white, -.table th.is-white { - --bulma-table-color: var(--bulma-white-invert); - --bulma-table-cell-heading-color: var(--bulma-white-invert); - --bulma-table-cell-background-color: var(--bulma-white); - --bulma-table-cell-border-color: var(--bulma-white); -} -.table td.is-black, -.table th.is-black { - --bulma-table-color: var(--bulma-black-invert); - --bulma-table-cell-heading-color: var(--bulma-black-invert); - --bulma-table-cell-background-color: var(--bulma-black); - --bulma-table-cell-border-color: var(--bulma-black); -} -.table td.is-light, -.table th.is-light { - --bulma-table-color: var(--bulma-light-invert); - --bulma-table-cell-heading-color: var(--bulma-light-invert); - --bulma-table-cell-background-color: var(--bulma-light); - --bulma-table-cell-border-color: var(--bulma-light); -} -.table td.is-dark, -.table th.is-dark { - --bulma-table-color: var(--bulma-dark-invert); - --bulma-table-cell-heading-color: var(--bulma-dark-invert); - --bulma-table-cell-background-color: var(--bulma-dark); - --bulma-table-cell-border-color: var(--bulma-dark); -} -.table td.is-text, -.table th.is-text { - --bulma-table-color: var(--bulma-text-invert); - --bulma-table-cell-heading-color: var(--bulma-text-invert); - --bulma-table-cell-background-color: var(--bulma-text); - --bulma-table-cell-border-color: var(--bulma-text); -} -.table td.is-primary, -.table th.is-primary { - --bulma-table-color: var(--bulma-primary-invert); - --bulma-table-cell-heading-color: var(--bulma-primary-invert); - --bulma-table-cell-background-color: var(--bulma-primary); - --bulma-table-cell-border-color: var(--bulma-primary); -} -.table td.is-link, -.table th.is-link { - --bulma-table-color: var(--bulma-link-invert); - --bulma-table-cell-heading-color: var(--bulma-link-invert); - --bulma-table-cell-background-color: var(--bulma-link); - --bulma-table-cell-border-color: var(--bulma-link); -} -.table td.is-info, -.table th.is-info { - --bulma-table-color: var(--bulma-info-invert); - --bulma-table-cell-heading-color: var(--bulma-info-invert); - --bulma-table-cell-background-color: var(--bulma-info); - --bulma-table-cell-border-color: var(--bulma-info); -} -.table td.is-success, -.table th.is-success { - --bulma-table-color: var(--bulma-success-invert); - --bulma-table-cell-heading-color: var(--bulma-success-invert); - --bulma-table-cell-background-color: var(--bulma-success); - --bulma-table-cell-border-color: var(--bulma-success); -} -.table td.is-warning, -.table th.is-warning { - --bulma-table-color: var(--bulma-warning-invert); - --bulma-table-cell-heading-color: var(--bulma-warning-invert); - --bulma-table-cell-background-color: var(--bulma-warning); - --bulma-table-cell-border-color: var(--bulma-warning); -} -.table td.is-danger, -.table th.is-danger { - --bulma-table-color: var(--bulma-danger-invert); - --bulma-table-cell-heading-color: var(--bulma-danger-invert); - --bulma-table-cell-background-color: var(--bulma-danger); - --bulma-table-cell-border-color: var(--bulma-danger); -} -.table td.is-narrow, -.table th.is-narrow { - white-space: nowrap; - width: 1%; -} -.table td.is-selected, -.table th.is-selected { - background-color: var(--bulma-table-row-active-background-color); - color: var(--bulma-table-row-active-color); -} -.table td.is-selected a, -.table td.is-selected strong, -.table th.is-selected a, -.table th.is-selected strong { - color: currentColor; -} -.table td.is-vcentered, -.table th.is-vcentered { - vertical-align: middle; -} -.table th { - color: var(--bulma-table-cell-heading-color); -} -.table th:not([align]) { - text-align: var(--bulma-table-cell-text-align); -} -.table tr.is-selected { - background-color: var(--bulma-table-row-active-background-color); - color: var(--bulma-table-row-active-color); -} -.table tr.is-selected a, -.table tr.is-selected strong { - color: currentColor; -} -.table tr.is-selected td, -.table tr.is-selected th { - border-color: var(--bulma-table-row-active-color); - color: currentColor; -} -.table tr.is-white { - --bulma-table-color: var(--bulma-white-invert); - --bulma-table-cell-heading-color: var(--bulma-white-invert); - --bulma-table-cell-background-color: var(--bulma-white); - --bulma-table-cell-border-color: var(--bulma-white); -} -.table tr.is-black { - --bulma-table-color: var(--bulma-black-invert); - --bulma-table-cell-heading-color: var(--bulma-black-invert); - --bulma-table-cell-background-color: var(--bulma-black); - --bulma-table-cell-border-color: var(--bulma-black); -} -.table tr.is-light { - --bulma-table-color: var(--bulma-light-invert); - --bulma-table-cell-heading-color: var(--bulma-light-invert); - --bulma-table-cell-background-color: var(--bulma-light); - --bulma-table-cell-border-color: var(--bulma-light); -} -.table tr.is-dark { - --bulma-table-color: var(--bulma-dark-invert); - --bulma-table-cell-heading-color: var(--bulma-dark-invert); - --bulma-table-cell-background-color: var(--bulma-dark); - --bulma-table-cell-border-color: var(--bulma-dark); -} -.table tr.is-text { - --bulma-table-color: var(--bulma-text-invert); - --bulma-table-cell-heading-color: var(--bulma-text-invert); - --bulma-table-cell-background-color: var(--bulma-text); - --bulma-table-cell-border-color: var(--bulma-text); -} -.table tr.is-primary { - --bulma-table-color: var(--bulma-primary-invert); - --bulma-table-cell-heading-color: var(--bulma-primary-invert); - --bulma-table-cell-background-color: var(--bulma-primary); - --bulma-table-cell-border-color: var(--bulma-primary); -} -.table tr.is-link { - --bulma-table-color: var(--bulma-link-invert); - --bulma-table-cell-heading-color: var(--bulma-link-invert); - --bulma-table-cell-background-color: var(--bulma-link); - --bulma-table-cell-border-color: var(--bulma-link); -} -.table tr.is-info { - --bulma-table-color: var(--bulma-info-invert); - --bulma-table-cell-heading-color: var(--bulma-info-invert); - --bulma-table-cell-background-color: var(--bulma-info); - --bulma-table-cell-border-color: var(--bulma-info); -} -.table tr.is-success { - --bulma-table-color: var(--bulma-success-invert); - --bulma-table-cell-heading-color: var(--bulma-success-invert); - --bulma-table-cell-background-color: var(--bulma-success); - --bulma-table-cell-border-color: var(--bulma-success); -} -.table tr.is-warning { - --bulma-table-color: var(--bulma-warning-invert); - --bulma-table-cell-heading-color: var(--bulma-warning-invert); - --bulma-table-cell-background-color: var(--bulma-warning); - --bulma-table-cell-border-color: var(--bulma-warning); -} -.table tr.is-danger { - --bulma-table-color: var(--bulma-danger-invert); - --bulma-table-cell-heading-color: var(--bulma-danger-invert); - --bulma-table-cell-background-color: var(--bulma-danger); - --bulma-table-cell-border-color: var(--bulma-danger); -} -.table thead { - background-color: var(--bulma-table-head-background-color); -} -.table thead td, -.table thead th { - border-width: var(--bulma-table-head-cell-border-width); - color: var(--bulma-table-head-cell-color); -} -.table tfoot { - background-color: var(--bulma-table-foot-background-color); -} -.table tfoot td, -.table tfoot th { - border-width: var(--bulma-table-foot-cell-border-width); - color: var(--bulma-table-foot-cell-color); -} -.table tbody { - background-color: var(--bulma-table-body-background-color); -} -.table tbody tr:last-child td, -.table tbody tr:last-child th { - border-bottom-width: 0; -} -.table.is-bordered td, -.table.is-bordered th { - border-width: 1px; -} -.table.is-bordered tr:last-child td, -.table.is-bordered tr:last-child th { - border-bottom-width: 1px; -} -.table.is-fullwidth { - width: 100%; -} -.table.is-hoverable tbody tr:not(.is-selected):hover { - background-color: var(--bulma-table-row-hover-background-color); -} -.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover { - background-color: var(--bulma-table-row-hover-background-color); -} -.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) { - background-color: var(--bulma-table-striped-row-even-hover-background-color); -} -.table.is-narrow td, -.table.is-narrow th { - padding: 0.25em 0.5em; -} -.table.is-striped tbody tr:not(.is-selected):nth-child(even) { - background-color: var(--bulma-table-striped-row-even-background-color); -} + background-color: white; + color: #363636; } + .table td, + .table th { + border: 1px solid #dbdbdb; + border-width: 0 0 1px; + padding: 0.5em 0.75em; + vertical-align: top; } + .table td.is-white, + .table th.is-white { + background-color: white; + border-color: white; + color: #0a0a0a; } + .table td.is-black, + .table th.is-black { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; } + .table td.is-light, + .table th.is-light { + background-color: whitesmoke; + border-color: whitesmoke; + color: #363636; } + .table td.is-dark, + .table th.is-dark { + background-color: #363636; + border-color: #363636; + color: whitesmoke; } + .table td.is-primary, + .table th.is-primary { + background-color: #478D00; + border-color: #478D00; + color: #fff; } + .table td.is-link, + .table th.is-link { + background-color: #4391E0; + border-color: #4391E0; + color: #fff; } + .table td.is-info, + .table th.is-info { + background-color: #209cee; + border-color: #209cee; + color: #fff; } + .table td.is-success, + .table th.is-success { + background-color: #478D00; + border-color: #478D00; + color: #fff; } + .table td.is-warning, + .table th.is-warning { + background-color: #ffdd57; + border-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .table td.is-danger, + .table th.is-danger { + background-color: #a70c20; + border-color: #a70c20; + color: #fff; } + .table td.is-narrow, + .table th.is-narrow { + white-space: nowrap; + width: 1%; } + .table td.is-selected, + .table th.is-selected { + background-color: #478D00; + color: #fff; } + .table td.is-selected a, + .table td.is-selected strong, + .table th.is-selected a, + .table th.is-selected strong { + color: currentColor; } + .table th { + color: #363636; } + .table th:not([align]) { + text-align: left; } + .table tr.is-selected { + background-color: #478D00; + color: #fff; } + .table tr.is-selected a, + .table tr.is-selected strong { + color: currentColor; } + .table tr.is-selected td, + .table tr.is-selected th { + border-color: #fff; + color: currentColor; } + .table thead { + background-color: transparent; } + .table thead td, + .table thead th { + border-width: 0 0 2px; + color: #363636; } + .table tfoot { + background-color: transparent; } + .table tfoot td, + .table tfoot th { + border-width: 2px 0 0; + color: #363636; } + .table tbody { + background-color: transparent; } + .table tbody tr:last-child td, + .table tbody tr:last-child th { + border-bottom-width: 0; } + .table.is-bordered td, + .table.is-bordered th { + border-width: 1px; } + .table.is-bordered tr:last-child td, + .table.is-bordered tr:last-child th { + border-bottom-width: 1px; } + .table.is-fullwidth { + width: 100%; } + .table.is-hoverable tbody tr:not(.is-selected):hover { + background-color: #fafafa; } + .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover { + background-color: #fafafa; } + .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) { + background-color: whitesmoke; } + .table.is-narrow td, + .table.is-narrow th { + padding: 0.25em 0.5em; } + .table.is-striped tbody tr:not(.is-selected):nth-child(even) { + background-color: #fafafa; } .table-container { -webkit-overflow-scrolling: touch; overflow: auto; overflow-y: hidden; - max-width: 100%; -} + max-width: 100%; } .tags { align-items: center; - color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l)); display: flex; flex-wrap: wrap; - gap: 0.5rem; - justify-content: flex-start; -} -.tags.are-medium .tag:not(.is-normal):not(.is-large) { - font-size: var(--bulma-size-normal); -} -.tags.are-large .tag:not(.is-normal):not(.is-medium) { - font-size: var(--bulma-size-medium); -} -.tags.is-centered { - gap: 0.25rem; - justify-content: center; -} -.tags.is-right { - justify-content: flex-end; -} -.tags.has-addons { - gap: 0; -} -.tags.has-addons .tag:not(:first-child) { - border-start-start-radius: 0; - border-end-start-radius: 0; -} -.tags.has-addons .tag:not(:last-child) { - border-start-end-radius: 0; - border-end-end-radius: 0; -} + justify-content: flex-start; } + .tags .tag { + margin-bottom: 0.5rem; } + .tags .tag:not(:last-child) { + margin-right: 0.5rem; } + .tags:last-child { + margin-bottom: -0.5rem; } + .tags:not(:last-child) { + margin-bottom: 1rem; } + .tags.are-medium .tag:not(.is-normal):not(.is-large) { + font-size: 1rem; } + .tags.are-large .tag:not(.is-normal):not(.is-medium) { + font-size: 1.25rem; } + .tags.is-centered { + justify-content: center; } + .tags.is-centered .tag { + margin-right: 0.25rem; + margin-left: 0.25rem; } + .tags.is-right { + justify-content: flex-end; } + .tags.is-right .tag:not(:first-child) { + margin-left: 0.5rem; } + .tags.is-right .tag:not(:last-child) { + margin-right: 0; } + .tags.has-addons .tag { + margin-right: 0; } + .tags.has-addons .tag:not(:first-child) { + margin-left: 0; + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .tags.has-addons .tag:not(:last-child) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } -.tag { - --bulma-tag-h: var(--bulma-scheme-h); - --bulma-tag-s: var(--bulma-scheme-s); - --bulma-tag-background-l: var(--bulma-background-l); - --bulma-tag-background-l-delta: 0%; - --bulma-tag-hover-background-l-delta: var(--bulma-hover-background-l-delta); - --bulma-tag-active-background-l-delta: var(--bulma-active-background-l-delta); - --bulma-tag-color-l: var(--bulma-text-l); - --bulma-tag-radius: var(--bulma-radius); - --bulma-tag-delete-margin: 1px; +.tag:not(body) { align-items: center; - background-color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), calc(var(--bulma-tag-background-l) + var(--bulma-tag-background-l-delta))); - border-radius: var(--bulma-radius); - color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l)); + background-color: whitesmoke; + border-radius: 4px; + color: #4a4a4a; display: inline-flex; - font-size: var(--bulma-size-small); + font-size: 0.75rem; height: 2em; justify-content: center; line-height: 1.5; padding-left: 0.75em; padding-right: 0.75em; - white-space: nowrap; -} -.tag .delete { - margin-inline-start: 0.25rem; - margin-inline-end: -0.375rem; -} -.tag.is-white { - --bulma-tag-h: var(--bulma-white-h); - --bulma-tag-s: var(--bulma-white-s); - --bulma-tag-background-l: var(--bulma-white-l); - --bulma-tag-color-l: var(--bulma-white-invert-l); -} -.tag.is-white.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-white-light-invert-l); -} -.tag.is-black { - --bulma-tag-h: var(--bulma-black-h); - --bulma-tag-s: var(--bulma-black-s); - --bulma-tag-background-l: var(--bulma-black-l); - --bulma-tag-color-l: var(--bulma-black-invert-l); -} -.tag.is-black.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-black-light-invert-l); -} -.tag.is-light { - --bulma-tag-h: var(--bulma-light-h); - --bulma-tag-s: var(--bulma-light-s); - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-light-invert-l); -} -.tag.is-light.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-light-light-invert-l); -} -.tag.is-dark { - --bulma-tag-h: var(--bulma-dark-h); - --bulma-tag-s: var(--bulma-dark-s); - --bulma-tag-background-l: var(--bulma-dark-l); - --bulma-tag-color-l: var(--bulma-dark-invert-l); -} -.tag.is-dark.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-dark-light-invert-l); -} -.tag.is-text { - --bulma-tag-h: var(--bulma-text-h); - --bulma-tag-s: var(--bulma-text-s); - --bulma-tag-background-l: var(--bulma-text-l); - --bulma-tag-color-l: var(--bulma-text-invert-l); -} -.tag.is-text.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-text-light-invert-l); -} -.tag.is-primary { - --bulma-tag-h: var(--bulma-primary-h); - --bulma-tag-s: var(--bulma-primary-s); - --bulma-tag-background-l: var(--bulma-primary-l); - --bulma-tag-color-l: var(--bulma-primary-invert-l); -} -.tag.is-primary.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-primary-light-invert-l); -} -.tag.is-link { - --bulma-tag-h: var(--bulma-link-h); - --bulma-tag-s: var(--bulma-link-s); - --bulma-tag-background-l: var(--bulma-link-l); - --bulma-tag-color-l: var(--bulma-link-invert-l); -} -.tag.is-link.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-link-light-invert-l); -} -.tag.is-info { - --bulma-tag-h: var(--bulma-info-h); - --bulma-tag-s: var(--bulma-info-s); - --bulma-tag-background-l: var(--bulma-info-l); - --bulma-tag-color-l: var(--bulma-info-invert-l); -} -.tag.is-info.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-info-light-invert-l); -} -.tag.is-success { - --bulma-tag-h: var(--bulma-success-h); - --bulma-tag-s: var(--bulma-success-s); - --bulma-tag-background-l: var(--bulma-success-l); - --bulma-tag-color-l: var(--bulma-success-invert-l); -} -.tag.is-success.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-success-light-invert-l); -} -.tag.is-warning { - --bulma-tag-h: var(--bulma-warning-h); - --bulma-tag-s: var(--bulma-warning-s); - --bulma-tag-background-l: var(--bulma-warning-l); - --bulma-tag-color-l: var(--bulma-warning-invert-l); -} -.tag.is-warning.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-warning-light-invert-l); -} -.tag.is-danger { - --bulma-tag-h: var(--bulma-danger-h); - --bulma-tag-s: var(--bulma-danger-s); - --bulma-tag-background-l: var(--bulma-danger-l); - --bulma-tag-color-l: var(--bulma-danger-invert-l); -} -.tag.is-danger.is-light { - --bulma-tag-background-l: var(--bulma-light-l); - --bulma-tag-color-l: var(--bulma-danger-light-invert-l); -} -.tag.is-normal { - font-size: var(--bulma-size-small); -} -.tag.is-medium { - font-size: var(--bulma-size-normal); -} -.tag.is-large { - font-size: var(--bulma-size-medium); -} -.tag .icon:first-child:not(:last-child) { - margin-inline-start: -0.375em; - margin-inline-end: 0.1875em; -} -.tag .icon:last-child:not(:first-child) { - margin-inline-start: 0.1875em; - margin-inline-end: -0.375em; -} -.tag .icon:first-child:last-child { - margin-inline-start: -0.375em; - margin-inline-end: -0.375em; -} -.tag.is-delete { - margin-inline-start: var(--bulma-tag-delete-margin); - padding: 0; - position: relative; - width: 2em; -} -.tag.is-delete::before, .tag.is-delete::after { - background-color: currentColor; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; -} -.tag.is-delete::before { - height: 1px; - width: 50%; -} -.tag.is-delete::after { - height: 50%; - width: 1px; -} -.tag.is-rounded { - border-radius: var(--bulma-radius-rounded); -} + white-space: nowrap; } + .tag:not(body) .delete { + margin-left: 0.25rem; + margin-right: -0.375rem; } + .tag:not(body).is-white { + background-color: white; + color: #0a0a0a; } + .tag:not(body).is-black { + background-color: #0a0a0a; + color: white; } + .tag:not(body).is-light { + background-color: whitesmoke; + color: #363636; } + .tag:not(body).is-dark { + background-color: #363636; + color: whitesmoke; } + .tag:not(body).is-primary { + background-color: #478D00; + color: #fff; } + .tag:not(body).is-link { + background-color: #4391E0; + color: #fff; } + .tag:not(body).is-info { + background-color: #209cee; + color: #fff; } + .tag:not(body).is-success { + background-color: #478D00; + color: #fff; } + .tag:not(body).is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .tag:not(body).is-danger { + background-color: #a70c20; + color: #fff; } + .tag:not(body).is-normal { + font-size: 0.75rem; } + .tag:not(body).is-medium { + font-size: 1rem; } + .tag:not(body).is-large { + font-size: 1.25rem; } + .tag:not(body) .icon:first-child:not(:last-child) { + margin-left: -0.375em; + margin-right: 0.1875em; } + .tag:not(body) .icon:last-child:not(:first-child) { + margin-left: 0.1875em; + margin-right: -0.375em; } + .tag:not(body) .icon:first-child:last-child { + margin-left: -0.375em; + margin-right: -0.375em; } + .tag:not(body).is-delete { + margin-left: 1px; + padding: 0; + position: relative; + width: 2em; } + .tag:not(body).is-delete::before, .tag:not(body).is-delete::after { + background-color: currentColor; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; } + .tag:not(body).is-delete::before { + height: 1px; + width: 50%; } + .tag:not(body).is-delete::after { + height: 50%; + width: 1px; } + .tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus { + background-color: #e8e8e8; } + .tag:not(body).is-delete:active { + background-color: #dbdbdb; } + .tag:not(body).is-rounded { + border-radius: 290486px; } -a.tag, -button.tag, -.tag.is-hoverable { - cursor: pointer; -} -a.tag:hover, -button.tag:hover, -.tag.is-hoverable:hover { - --bulma-tag-background-l-delta: var(--bulma-tag-hover-background-l-delta); -} -a.tag:active, -button.tag:active, -.tag.is-hoverable:active { - --bulma-tag-background-l-delta: var(--bulma-tag-active-background-l-delta); -} +a.tag:hover { + text-decoration: underline; } .title, .subtitle { - --bulma-title-color: var(--bulma-text-strong); - --bulma-title-family: false; - --bulma-title-size: var(--bulma-size-3); - --bulma-title-weight: var(--bulma-weight-extrabold); - --bulma-title-line-height: 1.125; - --bulma-title-strong-color: inherit; - --bulma-title-strong-weight: inherit; - --bulma-title-sub-size: 0.75em; - --bulma-title-sup-size: 0.75em; - --bulma-subtitle-color: var(--bulma-text); - --bulma-subtitle-family: false; - --bulma-subtitle-size: var(--bulma-size-5); - --bulma-subtitle-weight: var(--bulma-weight-normal); - --bulma-subtitle-line-height: 1.25; - --bulma-subtitle-strong-color: var(--bulma-text-strong); - --bulma-subtitle-strong-weight: var(--bulma-weight-semibold); -} - -.title, -.subtitle { - word-break: break-word; -} -.title em, -.title span, -.subtitle em, -.subtitle span { - font-weight: inherit; -} -.title sub, -.subtitle sub { - font-size: var(--bulma-title-sub-size); -} -.title sup, -.subtitle sup { - font-size: var(--bulma-title-sup-size); -} -.title .tag, -.subtitle .tag { - vertical-align: middle; -} + word-break: break-word; } + .title em, + .title span, + .subtitle em, + .subtitle span { + font-weight: inherit; } + .title sub, + .subtitle sub { + font-size: 0.75em; } + .title sup, + .subtitle sup { + font-size: 0.75em; } + .title .tag, + .subtitle .tag { + vertical-align: middle; } .title { - color: var(--bulma-title-color); - font-size: var(--bulma-title-size); - font-weight: var(--bulma-title-weight); - line-height: var(--bulma-title-line-height); -} -.title strong { - color: var(--bulma-title-strong-color); - font-weight: var(--bulma-title-strong-weight); -} -.title:not(.is-spaced):has(+ .subtitle) { - margin-bottom: 0; -} -.title.is-1 { - font-size: 3rem; -} -.title.is-2 { - font-size: 2.5rem; -} -.title.is-3 { + color: #363636; font-size: 2rem; -} -.title.is-4 { - font-size: 1.5rem; -} -.title.is-5 { - font-size: 1.25rem; -} -.title.is-6 { - font-size: 1rem; -} -.title.is-7 { - font-size: 0.75rem; -} + font-weight: 600; + line-height: 1.125; } + .title strong { + color: inherit; + font-weight: inherit; } + .title + .highlight { + margin-top: -0.75rem; } + .title:not(.is-spaced) + .subtitle { + margin-top: -1.25rem; } + .title.is-1 { + font-size: 3rem; } + .title.is-2 { + font-size: 2.5rem; } + .title.is-3 { + font-size: 2rem; } + .title.is-4 { + font-size: 1.5rem; } + .title.is-5 { + font-size: 1.25rem; } + .title.is-6 { + font-size: 1rem; } + .title.is-7 { + font-size: 0.75rem; } .subtitle { - color: var(--bulma-subtitle-color); - font-size: var(--bulma-subtitle-size); - font-weight: var(--bulma-subtitle-weight); - line-height: var(--bulma-subtitle-line-height); -} -.subtitle strong { - color: var(--bulma-subtitle-strong-color); - font-weight: var(--bulma-subtitle-strong-weight); -} -.subtitle:not(.is-spaced):has(+ .title) { - margin-bottom: 0; -} -.subtitle.is-1 { - font-size: 3rem; -} -.subtitle.is-2 { - font-size: 2.5rem; -} -.subtitle.is-3 { - font-size: 2rem; -} -.subtitle.is-4 { - font-size: 1.5rem; -} -.subtitle.is-5 { + color: #4a4a4a; font-size: 1.25rem; -} -.subtitle.is-6 { - font-size: 1rem; -} -.subtitle.is-7 { - font-size: 0.75rem; -} + font-weight: 400; + line-height: 1.25; } + .subtitle strong { + color: #363636; + font-weight: 600; } + .subtitle:not(.is-spaced) + .title { + margin-top: -1.25rem; } + .subtitle.is-1 { + font-size: 3rem; } + .subtitle.is-2 { + font-size: 2.5rem; } + .subtitle.is-3 { + font-size: 2rem; } + .subtitle.is-4 { + font-size: 1.5rem; } + .subtitle.is-5 { + font-size: 1.25rem; } + .subtitle.is-6 { + font-size: 1rem; } + .subtitle.is-7 { + font-size: 0.75rem; } + +.heading { + display: block; + font-size: 11px; + letter-spacing: 1px; + margin-bottom: 5px; + text-transform: uppercase; } + +.highlight { + font-weight: 400; + max-width: 100%; + overflow: hidden; + padding: 0; } + .highlight pre { + overflow: auto; + max-width: 100%; } + +.number { + align-items: center; + background-color: whitesmoke; + border-radius: 290486px; + display: inline-flex; + font-size: 1.25rem; + height: 2em; + justify-content: center; + margin-right: 1.5rem; + min-width: 2.5em; + padding: 0.25rem 0.5rem; + text-align: center; + vertical-align: top; } /* Extend or override Bulma's elements ../../node_modules/bulma/sass/elements */ .site-title { display: inline-block; width: 4.6em; - word-break: keep-all; /* Shouldn't be needed but Chrome needs it. */ + word-break: keep-all; + /* Shouldn't be needed but Chrome needs it. */ font-size: 37px; - line-height: 38px; -} + line-height: 38px; } .user-account-menu li { display: inline-block; - padding: 0.1rem 0.6rem; -} + padding: .1rem .6rem; } /* Add a gradient across only a portion of the vertical width of the navbar. */ .header, .sitename { - background: linear-gradient(hsl(221, 14%, 96%), hsl(221, 14%, 96%) 74px, #65AB1F 74px, #478D00 120px, hsl(221, 14%, 96%) 120px, hsl(221, 14%, 96%)); -} + background: linear-gradient(white, white 74px, #65AB1F 74px, #478D00 120px, white 120px, white); } #navbar-menu .navbar-item { - font-size: 22px; -} + font-size: 22px; } .slogan { box-shadow: 0 2px 0 0 whitesmoke; - margin-bottom: 2px; /* Needed to see the boxshadow when we have the featured image directly below. */ - padding-bottom: 4px; /* Give just a little extra space at the bottom for the *appearance* of balance. */ -} -.slogan .title { - color: #8FB489; - font-size: 1.2rem; -} + margin-bottom: 2px; + /* Needed to see the boxshadow when we have the featured image directly below. */ + padding-bottom: 4px; + /* Give just a little extra space at the bottom for the *appearance* of balance. */ } + .slogan .title { + color: #8FB489; + font-size: 1.2rem; } /* Give some space above the subtitle. */ .featured-image { - margin-bottom: 0.5rem; -} + margin-bottom: 0.5rem; } .image-inline { - margin: 1em; -} + margin: 1em; } .drum { - margin-bottom: 1.2rem; -} + margin-bottom: 1.2rem; } /* Remove empty gap from featured homepage image, to match look of content. */ .block--highlighted { - margin-top: -1.5rem; -} + margin-top: -1.5rem; } /* I know this is wrong but it seems to work flawlessly across sizes. */ .more-link { float: right; position: relative; - top: -0.333rem; -} + top: -0.333rem; } -/* Bulma Form */ -.control, -.input, -.textarea, -.select { - --bulma-input-h: var(--bulma-scheme-h); - --bulma-input-s: var(--bulma-scheme-s); - --bulma-input-l: var(--bulma-scheme-main-l); - --bulma-input-border-style: solid; - --bulma-input-border-width: var(--bulma-control-border-width); - --bulma-input-border-l: var(--bulma-border-l); - --bulma-input-border-l-delta: 0%; - --bulma-input-border-color: hsl(var(--bulma-input-h), var(--bulma-input-s), calc(var(--bulma-input-border-l) + var(--bulma-input-border-l-delta))); - --bulma-input-hover-border-l-delta: var(--bulma-hover-border-l-delta); - --bulma-input-active-border-l-delta: var(--bulma-active-border-l-delta); - --bulma-input-focus-h: var(--bulma-focus-h); - --bulma-input-focus-s: var(--bulma-focus-s); - --bulma-input-focus-l: var(--bulma-focus-l); - --bulma-input-focus-shadow-size: var(--bulma-focus-shadow-size); - --bulma-input-focus-shadow-alpha: var(--bulma-focus-shadow-alpha); - --bulma-input-color-l: var(--bulma-text-strong-l); - --bulma-input-background-l: var(--bulma-scheme-main-l); - --bulma-input-background-l-delta: 0%; - --bulma-input-height: var(--bulma-control-height); - --bulma-input-shadow: inset 0 0.0625em 0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.05); - --bulma-input-placeholder-color: hsla(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-text-strong-l), 0.3); - --bulma-input-disabled-color: var(--bulma-text-weak); - --bulma-input-disabled-background-color: var(--bulma-background); - --bulma-input-disabled-border-color: var(--bulma-background); - --bulma-input-disabled-placeholder-color: hsla(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-text-weak-l), 0.3); - --bulma-input-arrow: var(--bulma-link); - --bulma-input-icon-color: var(--bulma-text-light); - --bulma-input-icon-hover-color: var(--bulma-text-weak); - --bulma-input-icon-focus-color: var(--bulma-link); - --bulma-input-radius: var(--bulma-radius); -} +.select select, .textarea, .input { + background-color: white; + border-color: #dbdbdb; + border-radius: 4px; + color: #363636; } + .select select::-moz-placeholder, .textarea::-moz-placeholder, .input::-moz-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .input::-webkit-input-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select:-moz-placeholder, .textarea:-moz-placeholder, .input:-moz-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .input:-ms-input-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select:hover, .textarea:hover, .input:hover, .select select.is-hovered, .is-hovered.textarea, .is-hovered.input { + border-color: #b5b5b5; } + .select select:focus, .textarea:focus, .input:focus, .select select.is-focused, .is-focused.textarea, .is-focused.input, .select select:active, .textarea:active, .input:active, .select select.is-active, .is-active.textarea, .is-active.input { + border-color: #4391E0; + box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); } + .select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input { + background-color: whitesmoke; + border-color: whitesmoke; + box-shadow: none; + color: #7a7a7a; } + .select select[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, [disabled].input::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, [disabled].input:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder { + color: rgba(122, 122, 122, 0.3); } -.select select, .input, .textarea { - background-color: hsl(var(--bulma-input-h), var(--bulma-input-s), calc(var(--bulma-input-background-l) + var(--bulma-input-background-l-delta))); - border-color: var(--bulma-input-border-color); - border-radius: var(--bulma-input-radius); - color: hsl(var(--bulma-input-h), var(--bulma-input-s), var(--bulma-input-color-l)); -} -.select select::-moz-placeholder, .input::-moz-placeholder, .textarea::-moz-placeholder { - color: var(--bulma-input-placeholder-color); -} -.select select::-webkit-input-placeholder, .input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder { - color: var(--bulma-input-placeholder-color); -} -.select select:-moz-placeholder, .input:-moz-placeholder, .textarea:-moz-placeholder { - color: var(--bulma-input-placeholder-color); -} -.select select:-ms-input-placeholder, .input:-ms-input-placeholder, .textarea:-ms-input-placeholder { - color: var(--bulma-input-placeholder-color); -} -.select select:hover, .input:hover, .textarea:hover, .select select.is-hovered, .is-hovered.input, .is-hovered.textarea { - --bulma-input-border-l-delta: var(--bulma-input-hover-border-l-delta); -} -.select select:active, .input:active, .textarea:active, .select select.is-active, .is-active.input, .is-active.textarea { - --bulma-input-border-l-delta: var(--bulma-input-active-border-l-delta); -} -.select select:focus, .input:focus, .textarea:focus, .select select:focus-within, .input:focus-within, .textarea:focus-within, .select select.is-focused, .is-focused.input, .is-focused.textarea { - border-color: hsl(var(--bulma-input-focus-h), var(--bulma-input-focus-s), var(--bulma-input-focus-l)); - box-shadow: var(--bulma-input-focus-shadow-size) hsla(var(--bulma-input-focus-h), var(--bulma-input-focus-s), var(--bulma-input-focus-l), var(--bulma-input-focus-shadow-alpha)); -} -.select select[disabled], [disabled].input, [disabled].textarea, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .input, fieldset[disabled] .textarea { - background-color: var(--bulma-input-disabled-background-color); - border-color: var(--bulma-input-disabled-border-color); - box-shadow: none; - color: var(--bulma-input-disabled-color); -} -.select select[disabled]::-moz-placeholder, [disabled].input::-moz-placeholder, [disabled].textarea::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder { - color: var(--bulma-input-disabled-placeholder-color); -} -.select select[disabled]::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder { - color: var(--bulma-input-disabled-placeholder-color); -} -.select select[disabled]:-moz-placeholder, [disabled].input:-moz-placeholder, [disabled].textarea:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder { - color: var(--bulma-input-disabled-placeholder-color); -} -.select select[disabled]:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder { - color: var(--bulma-input-disabled-placeholder-color); -} - -/* Bulma Form */ .textarea, .input { - box-shadow: inset 0 0.0625em 0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.05); + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); max-width: 100%; - width: 100%; -} -[readonly].textarea, [readonly].input { - box-shadow: none; -} -.is-white.textarea, .is-white.input { - --bulma-input-h: var(--bulma-white-h); - --bulma-input-s: var(--bulma-white-s); - --bulma-input-l: var(--bulma-white-l); - --bulma-input-focus-h: var(--bulma-white-h); - --bulma-input-focus-s: var(--bulma-white-s); - --bulma-input-focus-l: var(--bulma-white-l); - --bulma-input-border-l: var(--bulma-white-l); -} -.is-black.textarea, .is-black.input { - --bulma-input-h: var(--bulma-black-h); - --bulma-input-s: var(--bulma-black-s); - --bulma-input-l: var(--bulma-black-l); - --bulma-input-focus-h: var(--bulma-black-h); - --bulma-input-focus-s: var(--bulma-black-s); - --bulma-input-focus-l: var(--bulma-black-l); - --bulma-input-border-l: var(--bulma-black-l); -} -.is-light.textarea, .is-light.input { - --bulma-input-h: var(--bulma-light-h); - --bulma-input-s: var(--bulma-light-s); - --bulma-input-l: var(--bulma-light-l); - --bulma-input-focus-h: var(--bulma-light-h); - --bulma-input-focus-s: var(--bulma-light-s); - --bulma-input-focus-l: var(--bulma-light-l); - --bulma-input-border-l: var(--bulma-light-l); -} -.is-dark.textarea, .is-dark.input { - --bulma-input-h: var(--bulma-dark-h); - --bulma-input-s: var(--bulma-dark-s); - --bulma-input-l: var(--bulma-dark-l); - --bulma-input-focus-h: var(--bulma-dark-h); - --bulma-input-focus-s: var(--bulma-dark-s); - --bulma-input-focus-l: var(--bulma-dark-l); - --bulma-input-border-l: var(--bulma-dark-l); -} -.is-text.textarea, .is-text.input { - --bulma-input-h: var(--bulma-text-h); - --bulma-input-s: var(--bulma-text-s); - --bulma-input-l: var(--bulma-text-l); - --bulma-input-focus-h: var(--bulma-text-h); - --bulma-input-focus-s: var(--bulma-text-s); - --bulma-input-focus-l: var(--bulma-text-l); - --bulma-input-border-l: var(--bulma-text-l); -} -.is-primary.textarea, .is-primary.input { - --bulma-input-h: var(--bulma-primary-h); - --bulma-input-s: var(--bulma-primary-s); - --bulma-input-l: var(--bulma-primary-l); - --bulma-input-focus-h: var(--bulma-primary-h); - --bulma-input-focus-s: var(--bulma-primary-s); - --bulma-input-focus-l: var(--bulma-primary-l); - --bulma-input-border-l: var(--bulma-primary-l); -} -.is-link.textarea, .is-link.input { - --bulma-input-h: var(--bulma-link-h); - --bulma-input-s: var(--bulma-link-s); - --bulma-input-l: var(--bulma-link-l); - --bulma-input-focus-h: var(--bulma-link-h); - --bulma-input-focus-s: var(--bulma-link-s); - --bulma-input-focus-l: var(--bulma-link-l); - --bulma-input-border-l: var(--bulma-link-l); -} -.is-info.textarea, .is-info.input { - --bulma-input-h: var(--bulma-info-h); - --bulma-input-s: var(--bulma-info-s); - --bulma-input-l: var(--bulma-info-l); - --bulma-input-focus-h: var(--bulma-info-h); - --bulma-input-focus-s: var(--bulma-info-s); - --bulma-input-focus-l: var(--bulma-info-l); - --bulma-input-border-l: var(--bulma-info-l); -} -.is-success.textarea, .is-success.input { - --bulma-input-h: var(--bulma-success-h); - --bulma-input-s: var(--bulma-success-s); - --bulma-input-l: var(--bulma-success-l); - --bulma-input-focus-h: var(--bulma-success-h); - --bulma-input-focus-s: var(--bulma-success-s); - --bulma-input-focus-l: var(--bulma-success-l); - --bulma-input-border-l: var(--bulma-success-l); -} -.is-warning.textarea, .is-warning.input { - --bulma-input-h: var(--bulma-warning-h); - --bulma-input-s: var(--bulma-warning-s); - --bulma-input-l: var(--bulma-warning-l); - --bulma-input-focus-h: var(--bulma-warning-h); - --bulma-input-focus-s: var(--bulma-warning-s); - --bulma-input-focus-l: var(--bulma-warning-l); - --bulma-input-border-l: var(--bulma-warning-l); -} -.is-danger.textarea, .is-danger.input { - --bulma-input-h: var(--bulma-danger-h); - --bulma-input-s: var(--bulma-danger-s); - --bulma-input-l: var(--bulma-danger-l); - --bulma-input-focus-h: var(--bulma-danger-h); - --bulma-input-focus-s: var(--bulma-danger-s); - --bulma-input-focus-l: var(--bulma-danger-l); - --bulma-input-border-l: var(--bulma-danger-l); -} -.is-small.textarea, .is-small.input { - border-radius: var(--bulma-radius-small); - font-size: var(--bulma-size-small); -} -.is-medium.textarea, .is-medium.input { - font-size: var(--bulma-size-medium); -} -.is-large.textarea, .is-large.input { - font-size: var(--bulma-size-large); -} -.is-fullwidth.textarea, .is-fullwidth.input { - display: block; - width: 100%; -} -.is-inline.textarea, .is-inline.input { - display: inline; - width: auto; -} + width: 100%; } + [readonly].textarea, [readonly].input { + box-shadow: none; } + .is-white.textarea, .is-white.input { + border-color: white; } + .is-white.textarea:focus, .is-white.input:focus, .is-white.is-focused.textarea, .is-white.is-focused.input, .is-white.textarea:active, .is-white.input:active, .is-white.is-active.textarea, .is-white.is-active.input { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } + .is-black.textarea, .is-black.input { + border-color: #0a0a0a; } + .is-black.textarea:focus, .is-black.input:focus, .is-black.is-focused.textarea, .is-black.is-focused.input, .is-black.textarea:active, .is-black.input:active, .is-black.is-active.textarea, .is-black.is-active.input { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } + .is-light.textarea, .is-light.input { + border-color: whitesmoke; } + .is-light.textarea:focus, .is-light.input:focus, .is-light.is-focused.textarea, .is-light.is-focused.input, .is-light.textarea:active, .is-light.input:active, .is-light.is-active.textarea, .is-light.is-active.input { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } + .is-dark.textarea, .is-dark.input { + border-color: #363636; } + .is-dark.textarea:focus, .is-dark.input:focus, .is-dark.is-focused.textarea, .is-dark.is-focused.input, .is-dark.textarea:active, .is-dark.input:active, .is-dark.is-active.textarea, .is-dark.is-active.input { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } + .is-primary.textarea, .is-primary.input { + border-color: #478D00; } + .is-primary.textarea:focus, .is-primary.input:focus, .is-primary.is-focused.textarea, .is-primary.is-focused.input, .is-primary.textarea:active, .is-primary.input:active, .is-primary.is-active.textarea, .is-primary.is-active.input { + box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); } + .is-link.textarea, .is-link.input { + border-color: #4391E0; } + .is-link.textarea:focus, .is-link.input:focus, .is-link.is-focused.textarea, .is-link.is-focused.input, .is-link.textarea:active, .is-link.input:active, .is-link.is-active.textarea, .is-link.is-active.input { + box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); } + .is-info.textarea, .is-info.input { + border-color: #209cee; } + .is-info.textarea:focus, .is-info.input:focus, .is-info.is-focused.textarea, .is-info.is-focused.input, .is-info.textarea:active, .is-info.input:active, .is-info.is-active.textarea, .is-info.is-active.input { + box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } + .is-success.textarea, .is-success.input { + border-color: #478D00; } + .is-success.textarea:focus, .is-success.input:focus, .is-success.is-focused.textarea, .is-success.is-focused.input, .is-success.textarea:active, .is-success.input:active, .is-success.is-active.textarea, .is-success.is-active.input { + box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); } + .is-warning.textarea, .is-warning.input { + border-color: #ffdd57; } + .is-warning.textarea:focus, .is-warning.input:focus, .is-warning.is-focused.textarea, .is-warning.is-focused.input, .is-warning.textarea:active, .is-warning.input:active, .is-warning.is-active.textarea, .is-warning.is-active.input { + box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } + .is-danger.textarea, .is-danger.input { + border-color: #a70c20; } + .is-danger.textarea:focus, .is-danger.input:focus, .is-danger.is-focused.textarea, .is-danger.is-focused.input, .is-danger.textarea:active, .is-danger.input:active, .is-danger.is-active.textarea, .is-danger.is-active.input { + box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25); } + .is-small.textarea, .is-small.input { + border-radius: 2px; + font-size: 0.75rem; } + .is-medium.textarea, .is-medium.input { + font-size: 1.25rem; } + .is-large.textarea, .is-large.input { + font-size: 1.5rem; } + .is-fullwidth.textarea, .is-fullwidth.input { + display: block; + width: 100%; } + .is-inline.textarea, .is-inline.input { + display: inline; + width: auto; } .input.is-rounded { - border-radius: var(--bulma-radius-rounded); - padding-left: calc(calc(0.75em - 1px) + 0.375em); - padding-right: calc(calc(0.75em - 1px) + 0.375em); -} + border-radius: 290486px; + padding-left: 1em; + padding-right: 1em; } + .input.is-static { background-color: transparent; border-color: transparent; box-shadow: none; padding-left: 0; - padding-right: 0; -} + padding-right: 0; } .textarea { - --bulma-textarea-padding: var(--bulma-control-padding-horizontal); - --bulma-textarea-max-height: 40em; - --bulma-textarea-min-height: 8em; display: block; max-width: 100%; min-width: 100%; - padding: var(--bulma-textarea-padding); - resize: vertical; -} -.textarea:not([rows]) { - max-height: var(--bulma-textarea-max-height); - min-height: var(--bulma-textarea-min-height); -} -.textarea[rows] { - height: initial; -} -.textarea.has-fixed-size { - resize: none; -} + padding: 0.625em; + resize: vertical; } + .textarea:not([rows]) { + max-height: 600px; + min-height: 120px; } + .textarea[rows] { + height: initial; } + .textarea.has-fixed-size { + resize: none; } -/* Bulma Form */ .radio, .checkbox { cursor: pointer; display: inline-block; line-height: 1.25; - position: relative; -} -.radio input, .checkbox input { - cursor: pointer; -} -[disabled].radio, [disabled].checkbox, fieldset[disabled] .radio, fieldset[disabled] .checkbox, -.radio input[disabled], -.checkbox input[disabled] { - color: var(--bulma-text-weak); - cursor: not-allowed; -} + position: relative; } + .radio input, .checkbox input { + cursor: pointer; } + .radio:hover, .checkbox:hover { + color: #363636; } + [disabled].radio, [disabled].checkbox, fieldset[disabled] .radio, fieldset[disabled] .checkbox { + color: #7a7a7a; + cursor: not-allowed; } -.checkboxes, -.radios { - display: flex; - flex-wrap: wrap; - column-gap: 1em; - row-gap: 0.5em; -} +.radio + .radio { + margin-left: 0.5em; } -/* Bulma Form */ .select { - --bulma-input-h: var(--bulma-scheme-h); - --bulma-input-s: var(--bulma-scheme-s); - --bulma-input-border-style: solid; - --bulma-input-border-width: 1px; - --bulma-input-border-l: var(--bulma-border-l); display: inline-block; max-width: 100%; position: relative; - vertical-align: top; -} -.select:not(.is-multiple) { - height: var(--bulma-control-height); -} -.select:not(.is-multiple):not(.is-loading)::after { - inset-inline-end: 1.125em; - z-index: 4; -} -.select.is-rounded select { - border-radius: var(--bulma-radius-rounded); - padding-inline-start: 1em; -} -.select select { - cursor: pointer; - display: block; - font-size: 1em; - max-width: 100%; - outline: none; -} -.select select::-ms-expand { - display: none; -} -.select select[disabled]:hover, fieldset[disabled] .select select:hover { - border-color: var(--bulma-background); -} -.select select:not([multiple]) { - padding-inline-end: 2.5em; -} -.select select[multiple] { - height: auto; - padding: 0; -} -.select select[multiple] option { - padding: 0.5em 1em; -} -.select.is-white { - --bulma-input-h: var(--bulma-white-h); - --bulma-input-s: var(--bulma-white-s); - --bulma-input-l: var(--bulma-white-l); - --bulma-input-focus-h: var(--bulma-white-h); - --bulma-input-focus-s: var(--bulma-white-s); - --bulma-input-focus-l: var(--bulma-white-l); - --bulma-input-border-l: var(--bulma-white-l); - --bulma-arrow-color: var(--bulma-white); -} -.select.is-black { - --bulma-input-h: var(--bulma-black-h); - --bulma-input-s: var(--bulma-black-s); - --bulma-input-l: var(--bulma-black-l); - --bulma-input-focus-h: var(--bulma-black-h); - --bulma-input-focus-s: var(--bulma-black-s); - --bulma-input-focus-l: var(--bulma-black-l); - --bulma-input-border-l: var(--bulma-black-l); - --bulma-arrow-color: var(--bulma-black); -} -.select.is-light { - --bulma-input-h: var(--bulma-light-h); - --bulma-input-s: var(--bulma-light-s); - --bulma-input-l: var(--bulma-light-l); - --bulma-input-focus-h: var(--bulma-light-h); - --bulma-input-focus-s: var(--bulma-light-s); - --bulma-input-focus-l: var(--bulma-light-l); - --bulma-input-border-l: var(--bulma-light-l); - --bulma-arrow-color: var(--bulma-light); -} -.select.is-dark { - --bulma-input-h: var(--bulma-dark-h); - --bulma-input-s: var(--bulma-dark-s); - --bulma-input-l: var(--bulma-dark-l); - --bulma-input-focus-h: var(--bulma-dark-h); - --bulma-input-focus-s: var(--bulma-dark-s); - --bulma-input-focus-l: var(--bulma-dark-l); - --bulma-input-border-l: var(--bulma-dark-l); - --bulma-arrow-color: var(--bulma-dark); -} -.select.is-text { - --bulma-input-h: var(--bulma-text-h); - --bulma-input-s: var(--bulma-text-s); - --bulma-input-l: var(--bulma-text-l); - --bulma-input-focus-h: var(--bulma-text-h); - --bulma-input-focus-s: var(--bulma-text-s); - --bulma-input-focus-l: var(--bulma-text-l); - --bulma-input-border-l: var(--bulma-text-l); - --bulma-arrow-color: var(--bulma-text); -} -.select.is-primary { - --bulma-input-h: var(--bulma-primary-h); - --bulma-input-s: var(--bulma-primary-s); - --bulma-input-l: var(--bulma-primary-l); - --bulma-input-focus-h: var(--bulma-primary-h); - --bulma-input-focus-s: var(--bulma-primary-s); - --bulma-input-focus-l: var(--bulma-primary-l); - --bulma-input-border-l: var(--bulma-primary-l); - --bulma-arrow-color: var(--bulma-primary); -} -.select.is-link { - --bulma-input-h: var(--bulma-link-h); - --bulma-input-s: var(--bulma-link-s); - --bulma-input-l: var(--bulma-link-l); - --bulma-input-focus-h: var(--bulma-link-h); - --bulma-input-focus-s: var(--bulma-link-s); - --bulma-input-focus-l: var(--bulma-link-l); - --bulma-input-border-l: var(--bulma-link-l); - --bulma-arrow-color: var(--bulma-link); -} -.select.is-info { - --bulma-input-h: var(--bulma-info-h); - --bulma-input-s: var(--bulma-info-s); - --bulma-input-l: var(--bulma-info-l); - --bulma-input-focus-h: var(--bulma-info-h); - --bulma-input-focus-s: var(--bulma-info-s); - --bulma-input-focus-l: var(--bulma-info-l); - --bulma-input-border-l: var(--bulma-info-l); - --bulma-arrow-color: var(--bulma-info); -} -.select.is-success { - --bulma-input-h: var(--bulma-success-h); - --bulma-input-s: var(--bulma-success-s); - --bulma-input-l: var(--bulma-success-l); - --bulma-input-focus-h: var(--bulma-success-h); - --bulma-input-focus-s: var(--bulma-success-s); - --bulma-input-focus-l: var(--bulma-success-l); - --bulma-input-border-l: var(--bulma-success-l); - --bulma-arrow-color: var(--bulma-success); -} -.select.is-warning { - --bulma-input-h: var(--bulma-warning-h); - --bulma-input-s: var(--bulma-warning-s); - --bulma-input-l: var(--bulma-warning-l); - --bulma-input-focus-h: var(--bulma-warning-h); - --bulma-input-focus-s: var(--bulma-warning-s); - --bulma-input-focus-l: var(--bulma-warning-l); - --bulma-input-border-l: var(--bulma-warning-l); - --bulma-arrow-color: var(--bulma-warning); -} -.select.is-danger { - --bulma-input-h: var(--bulma-danger-h); - --bulma-input-s: var(--bulma-danger-s); - --bulma-input-l: var(--bulma-danger-l); - --bulma-input-focus-h: var(--bulma-danger-h); - --bulma-input-focus-s: var(--bulma-danger-s); - --bulma-input-focus-l: var(--bulma-danger-l); - --bulma-input-border-l: var(--bulma-danger-l); - --bulma-arrow-color: var(--bulma-danger); -} -.select.is-small { - border-radius: var(--bulma-radius-small); - font-size: var(--bulma-size-small); -} -.select.is-medium { - font-size: var(--bulma-size-medium); -} -.select.is-large { - font-size: var(--bulma-size-large); -} -.select.is-disabled::after { - border-color: var(--bulma-text-weak) !important; - opacity: 0.5; -} -.select.is-fullwidth { - width: 100%; -} -.select.is-fullwidth select { - width: 100%; -} -.select.is-loading::after { - inset-inline-end: 0.625em; - margin-top: 0; - position: absolute; - top: 0.625em; - transform: none; -} -.select.is-loading.is-small:after { - font-size: var(--bulma-size-small); -} -.select.is-loading.is-medium:after { - font-size: var(--bulma-size-medium); -} -.select.is-loading.is-large:after { - font-size: var(--bulma-size-large); -} + vertical-align: top; } + .select:not(.is-multiple) { + height: 2.25em; } + .select:not(.is-multiple):not(.is-loading)::after { + border-color: #4391E0; + right: 1.125em; + z-index: 4; } + .select.is-rounded select { + border-radius: 290486px; + padding-left: 1em; } + .select select { + cursor: pointer; + display: block; + font-size: 1em; + max-width: 100%; + outline: none; } + .select select::-ms-expand { + display: none; } + .select select[disabled]:hover, fieldset[disabled] .select select:hover { + border-color: whitesmoke; } + .select select:not([multiple]) { + padding-right: 2.5em; } + .select select[multiple] { + height: auto; + padding: 0; } + .select select[multiple] option { + padding: 0.5em 1em; } + .select:not(.is-multiple):not(.is-loading):hover::after { + border-color: #363636; } + .select.is-white:not(:hover)::after { + border-color: white; } + .select.is-white select { + border-color: white; } + .select.is-white select:hover, .select.is-white select.is-hovered { + border-color: #f2f2f2; } + .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } + .select.is-black:not(:hover)::after { + border-color: #0a0a0a; } + .select.is-black select { + border-color: #0a0a0a; } + .select.is-black select:hover, .select.is-black select.is-hovered { + border-color: black; } + .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } + .select.is-light:not(:hover)::after { + border-color: whitesmoke; } + .select.is-light select { + border-color: whitesmoke; } + .select.is-light select:hover, .select.is-light select.is-hovered { + border-color: #e8e8e8; } + .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } + .select.is-dark:not(:hover)::after { + border-color: #363636; } + .select.is-dark select { + border-color: #363636; } + .select.is-dark select:hover, .select.is-dark select.is-hovered { + border-color: #292929; } + .select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } + .select.is-primary:not(:hover)::after { + border-color: #478D00; } + .select.is-primary select { + border-color: #478D00; } + .select.is-primary select:hover, .select.is-primary select.is-hovered { + border-color: #3a7400; } + .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active { + box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); } + .select.is-link:not(:hover)::after { + border-color: #4391E0; } + .select.is-link select { + border-color: #4391E0; } + .select.is-link select:hover, .select.is-link select.is-hovered { + border-color: #2d84dc; } + .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active { + box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); } + .select.is-info:not(:hover)::after { + border-color: #209cee; } + .select.is-info select { + border-color: #209cee; } + .select.is-info select:hover, .select.is-info select.is-hovered { + border-color: #118fe4; } + .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active { + box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } + .select.is-success:not(:hover)::after { + border-color: #478D00; } + .select.is-success select { + border-color: #478D00; } + .select.is-success select:hover, .select.is-success select.is-hovered { + border-color: #3a7400; } + .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active { + box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); } + .select.is-warning:not(:hover)::after { + border-color: #ffdd57; } + .select.is-warning select { + border-color: #ffdd57; } + .select.is-warning select:hover, .select.is-warning select.is-hovered { + border-color: #ffd83e; } + .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } + .select.is-danger:not(:hover)::after { + border-color: #a70c20; } + .select.is-danger select { + border-color: #a70c20; } + .select.is-danger select:hover, .select.is-danger select.is-hovered { + border-color: #8f0a1b; } + .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active { + box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25); } + .select.is-small { + border-radius: 2px; + font-size: 0.75rem; } + .select.is-medium { + font-size: 1.25rem; } + .select.is-large { + font-size: 1.5rem; } + .select.is-disabled::after { + border-color: #7a7a7a; } + .select.is-fullwidth { + width: 100%; } + .select.is-fullwidth select { + width: 100%; } + .select.is-loading::after { + margin-top: 0; + position: absolute; + right: 0.625em; + top: 0.625em; + transform: none; } + .select.is-loading.is-small:after { + font-size: 0.75rem; } + .select.is-loading.is-medium:after { + font-size: 1.25rem; } + .select.is-loading.is-large:after { + font-size: 1.5rem; } -/* Bulma Form */ .file { - --bulma-file-radius: var(--bulma-radius); - --bulma-file-name-border-color: var(--bulma-border); - --bulma-file-name-border-style: solid; - --bulma-file-name-border-width: 1px 1px 1px 0; - --bulma-file-name-max-width: 16em; - --bulma-file-h: var(--bulma-scheme-h); - --bulma-file-s: var(--bulma-scheme-s); - --bulma-file-background-l: var(--bulma-scheme-main-ter-l); - --bulma-file-background-l-delta: 0%; - --bulma-file-hover-background-l-delta: -5%; - --bulma-file-active-background-l-delta: -10%; - --bulma-file-border-l: var(--bulma-border-l); - --bulma-file-border-l-delta: 0%; - --bulma-file-hover-border-l-delta: -10%; - --bulma-file-active-border-l-delta: -20%; - --bulma-file-cta-color-l: var(--bulma-text-strong-l); - --bulma-file-name-color-l: var(--bulma-text-strong-l); - --bulma-file-color-l-delta: 0%; - --bulma-file-hover-color-l-delta: -5%; - --bulma-file-active-color-l-delta: -10%; align-items: stretch; display: flex; justify-content: flex-start; - position: relative; -} -.file.is-white { - --bulma-file-h: var(--bulma-white-h); - --bulma-file-s: var(--bulma-white-s); - --bulma-file-background-l: var(--bulma-white-l); - --bulma-file-border-l: var(--bulma-white-l); - --bulma-file-cta-color-l: var(--bulma-white-invert-l); - --bulma-file-name-color-l: var(--bulma-white-on-scheme-l); -} -.file.is-black { - --bulma-file-h: var(--bulma-black-h); - --bulma-file-s: var(--bulma-black-s); - --bulma-file-background-l: var(--bulma-black-l); - --bulma-file-border-l: var(--bulma-black-l); - --bulma-file-cta-color-l: var(--bulma-black-invert-l); - --bulma-file-name-color-l: var(--bulma-black-on-scheme-l); -} -.file.is-light { - --bulma-file-h: var(--bulma-light-h); - --bulma-file-s: var(--bulma-light-s); - --bulma-file-background-l: var(--bulma-light-l); - --bulma-file-border-l: var(--bulma-light-l); - --bulma-file-cta-color-l: var(--bulma-light-invert-l); - --bulma-file-name-color-l: var(--bulma-light-on-scheme-l); -} -.file.is-dark { - --bulma-file-h: var(--bulma-dark-h); - --bulma-file-s: var(--bulma-dark-s); - --bulma-file-background-l: var(--bulma-dark-l); - --bulma-file-border-l: var(--bulma-dark-l); - --bulma-file-cta-color-l: var(--bulma-dark-invert-l); - --bulma-file-name-color-l: var(--bulma-dark-on-scheme-l); -} -.file.is-text { - --bulma-file-h: var(--bulma-text-h); - --bulma-file-s: var(--bulma-text-s); - --bulma-file-background-l: var(--bulma-text-l); - --bulma-file-border-l: var(--bulma-text-l); - --bulma-file-cta-color-l: var(--bulma-text-invert-l); - --bulma-file-name-color-l: var(--bulma-text-on-scheme-l); -} -.file.is-primary { - --bulma-file-h: var(--bulma-primary-h); - --bulma-file-s: var(--bulma-primary-s); - --bulma-file-background-l: var(--bulma-primary-l); - --bulma-file-border-l: var(--bulma-primary-l); - --bulma-file-cta-color-l: var(--bulma-primary-invert-l); - --bulma-file-name-color-l: var(--bulma-primary-on-scheme-l); -} -.file.is-link { - --bulma-file-h: var(--bulma-link-h); - --bulma-file-s: var(--bulma-link-s); - --bulma-file-background-l: var(--bulma-link-l); - --bulma-file-border-l: var(--bulma-link-l); - --bulma-file-cta-color-l: var(--bulma-link-invert-l); - --bulma-file-name-color-l: var(--bulma-link-on-scheme-l); -} -.file.is-info { - --bulma-file-h: var(--bulma-info-h); - --bulma-file-s: var(--bulma-info-s); - --bulma-file-background-l: var(--bulma-info-l); - --bulma-file-border-l: var(--bulma-info-l); - --bulma-file-cta-color-l: var(--bulma-info-invert-l); - --bulma-file-name-color-l: var(--bulma-info-on-scheme-l); -} -.file.is-success { - --bulma-file-h: var(--bulma-success-h); - --bulma-file-s: var(--bulma-success-s); - --bulma-file-background-l: var(--bulma-success-l); - --bulma-file-border-l: var(--bulma-success-l); - --bulma-file-cta-color-l: var(--bulma-success-invert-l); - --bulma-file-name-color-l: var(--bulma-success-on-scheme-l); -} -.file.is-warning { - --bulma-file-h: var(--bulma-warning-h); - --bulma-file-s: var(--bulma-warning-s); - --bulma-file-background-l: var(--bulma-warning-l); - --bulma-file-border-l: var(--bulma-warning-l); - --bulma-file-cta-color-l: var(--bulma-warning-invert-l); - --bulma-file-name-color-l: var(--bulma-warning-on-scheme-l); -} -.file.is-danger { - --bulma-file-h: var(--bulma-danger-h); - --bulma-file-s: var(--bulma-danger-s); - --bulma-file-background-l: var(--bulma-danger-l); - --bulma-file-border-l: var(--bulma-danger-l); - --bulma-file-cta-color-l: var(--bulma-danger-invert-l); - --bulma-file-name-color-l: var(--bulma-danger-on-scheme-l); -} -.file.is-small { - font-size: var(--bulma-size-small); -} -.file.is-normal { - font-size: var(--bulma-size-normal); -} -.file.is-medium { - font-size: var(--bulma-size-medium); -} -.file.is-medium .file-icon .fa { - font-size: 1.5rem; -} -.file.is-large { - font-size: var(--bulma-size-large); -} -.file.is-large .file-icon .fa { - font-size: 2rem; -} -.file.has-name .file-cta { - border-end-end-radius: 0; - border-start-end-radius: 0; -} -.file.has-name .file-name { - border-end-start-radius: 0; - border-start-start-radius: 0; -} -.file.has-name.is-empty .file-cta { - border-radius: var(--bulma-file-radius); -} -.file.has-name.is-empty .file-name { - display: none; -} -.file.is-boxed .file-label { - flex-direction: column; -} -.file.is-boxed .file-cta { - flex-direction: column; - height: auto; - padding: 1em 3em; -} -.file.is-boxed .file-name { - border-width: 0 1px 1px; -} -.file.is-boxed .file-icon { - height: 1.5em; - width: 1.5em; -} -.file.is-boxed .file-icon .fa { - font-size: 1.5rem; -} -.file.is-boxed.is-small .file-icon .fa { - font-size: 1rem; -} -.file.is-boxed.is-medium .file-icon .fa { - font-size: 2rem; -} -.file.is-boxed.is-large .file-icon .fa { - font-size: 2.5rem; -} -.file.is-boxed.has-name .file-cta { - border-end-end-radius: 0; - border-end-start-radius: 0; - border-start-end-radius: var(--bulma-file-radius); - border-start-start-radius: var(--bulma-file-radius); -} -.file.is-boxed.has-name .file-name { - border-end-end-radius: var(--bulma-file-radius); - border-end-start-radius: var(--bulma-file-radius); - border-start-end-radius: 0; - border-start-start-radius: 0; - border-width: 0 1px 1px; -} -.file.is-centered { - justify-content: center; -} -.file.is-fullwidth .file-label { - width: 100%; -} -.file.is-fullwidth .file-name { - flex-grow: 1; - max-width: none; -} -.file.is-right { - justify-content: flex-end; -} -.file.is-right .file-cta { - border-radius: 0 var(--bulma-file-radius) var(--bulma-file-radius) 0; -} -.file.is-right .file-name { - border-radius: var(--bulma-file-radius) 0 0 var(--bulma-file-radius); - border-width: 1px 0 1px 1px; - order: -1; -} + position: relative; } + .file.is-white .file-cta { + background-color: white; + border-color: transparent; + color: #0a0a0a; } + .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta { + background-color: #f9f9f9; + border-color: transparent; + color: #0a0a0a; } + .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); + color: #0a0a0a; } + .file.is-white:active .file-cta, .file.is-white.is-active .file-cta { + background-color: #f2f2f2; + border-color: transparent; + color: #0a0a0a; } + .file.is-black .file-cta { + background-color: #0a0a0a; + border-color: transparent; + color: white; } + .file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta { + background-color: #040404; + border-color: transparent; + color: white; } + .file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); + color: white; } + .file.is-black:active .file-cta, .file.is-black.is-active .file-cta { + background-color: black; + border-color: transparent; + color: white; } + .file.is-light .file-cta { + background-color: whitesmoke; + border-color: transparent; + color: #363636; } + .file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta { + background-color: #eeeeee; + border-color: transparent; + color: #363636; } + .file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); + color: #363636; } + .file.is-light:active .file-cta, .file.is-light.is-active .file-cta { + background-color: #e8e8e8; + border-color: transparent; + color: #363636; } + .file.is-dark .file-cta { + background-color: #363636; + border-color: transparent; + color: whitesmoke; } + .file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta { + background-color: #2f2f2f; + border-color: transparent; + color: whitesmoke; } + .file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25); + color: whitesmoke; } + .file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta { + background-color: #292929; + border-color: transparent; + color: whitesmoke; } + .file.is-primary .file-cta { + background-color: #478D00; + border-color: transparent; + color: #fff; } + .file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta { + background-color: #418000; + border-color: transparent; + color: #fff; } + .file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(71, 141, 0, 0.25); + color: #fff; } + .file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta { + background-color: #3a7400; + border-color: transparent; + color: #fff; } + .file.is-link .file-cta { + background-color: #4391E0; + border-color: transparent; + color: #fff; } + .file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta { + background-color: #388bde; + border-color: transparent; + color: #fff; } + .file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(67, 145, 224, 0.25); + color: #fff; } + .file.is-link:active .file-cta, .file.is-link.is-active .file-cta { + background-color: #2d84dc; + border-color: transparent; + color: #fff; } + .file.is-info .file-cta { + background-color: #209cee; + border-color: transparent; + color: #fff; } + .file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta { + background-color: #1496ed; + border-color: transparent; + color: #fff; } + .file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25); + color: #fff; } + .file.is-info:active .file-cta, .file.is-info.is-active .file-cta { + background-color: #118fe4; + border-color: transparent; + color: #fff; } + .file.is-success .file-cta { + background-color: #478D00; + border-color: transparent; + color: #fff; } + .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta { + background-color: #418000; + border-color: transparent; + color: #fff; } + .file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(71, 141, 0, 0.25); + color: #fff; } + .file.is-success:active .file-cta, .file.is-success.is-active .file-cta { + background-color: #3a7400; + border-color: transparent; + color: #fff; } + .file.is-warning .file-cta { + background-color: #ffdd57; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta { + background-color: #ffda4a; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25); + color: rgba(0, 0, 0, 0.7); } + .file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta { + background-color: #ffd83e; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .file.is-danger .file-cta { + background-color: #a70c20; + border-color: transparent; + color: #fff; } + .file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta { + background-color: #9b0b1e; + border-color: transparent; + color: #fff; } + .file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(167, 12, 32, 0.25); + color: #fff; } + .file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta { + background-color: #8f0a1b; + border-color: transparent; + color: #fff; } + .file.is-small { + font-size: 0.75rem; } + .file.is-medium { + font-size: 1.25rem; } + .file.is-medium .file-icon .fa { + font-size: 21px; } + .file.is-large { + font-size: 1.5rem; } + .file.is-large .file-icon .fa { + font-size: 28px; } + .file.has-name .file-cta { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + .file.has-name .file-name { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .file.has-name.is-empty .file-cta { + border-radius: 4px; } + .file.has-name.is-empty .file-name { + display: none; } + .file.is-boxed .file-label { + flex-direction: column; } + .file.is-boxed .file-cta { + flex-direction: column; + height: auto; + padding: 1em 3em; } + .file.is-boxed .file-name { + border-width: 0 1px 1px; } + .file.is-boxed .file-icon { + height: 1.5em; + width: 1.5em; } + .file.is-boxed .file-icon .fa { + font-size: 21px; } + .file.is-boxed.is-small .file-icon .fa { + font-size: 14px; } + .file.is-boxed.is-medium .file-icon .fa { + font-size: 28px; } + .file.is-boxed.is-large .file-icon .fa { + font-size: 35px; } + .file.is-boxed.has-name .file-cta { + border-radius: 4px 4px 0 0; } + .file.is-boxed.has-name .file-name { + border-radius: 0 0 4px 4px; + border-width: 0 1px 1px; } + .file.is-centered { + justify-content: center; } + .file.is-fullwidth .file-label { + width: 100%; } + .file.is-fullwidth .file-name { + flex-grow: 1; + max-width: none; } + .file.is-right { + justify-content: flex-end; } + .file.is-right .file-cta { + border-radius: 0 4px 4px 0; } + .file.is-right .file-name { + border-radius: 4px 0 0 4px; + border-width: 1px 0 1px 1px; + order: -1; } .file-label { align-items: stretch; @@ -3416,18 +3337,17 @@ button.tag:active, cursor: pointer; justify-content: flex-start; overflow: hidden; - position: relative; -} -.file-label:hover { - --bulma-file-background-l-delta: var(--bulma-file-hover-background-l-delta); - --bulma-file-border-l-delta: var(--bulma-file-hover-border-l-delta); - --bulma-file-color-l-delta: var(--bulma-file-hover-color-l-delta); -} -.file-label:active { - --bulma-file-background-l-delta: var(--bulma-file-active-background-l-delta); - --bulma-file-border-l-delta: var(--bulma-file-active-border-l-delta); - --bulma-file-color-l-delta: var(--bulma-file-active-color-l-delta); -} + position: relative; } + .file-label:hover .file-cta { + background-color: #eeeeee; + color: #363636; } + .file-label:hover .file-name { + border-color: #d5d5d5; } + .file-label:active .file-cta { + background-color: #e8e8e8; + color: #363636; } + .file-label:active .file-name { + border-color: #cfcfcf; } .file-input { height: 100%; @@ -3436,518 +3356,360 @@ button.tag:active, outline: none; position: absolute; top: 0; - width: 100%; -} + width: 100%; } .file-cta, .file-name { - border-color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-border-l) + var(--bulma-file-border-l-delta))); - border-radius: var(--bulma-file-radius); + border-color: #dbdbdb; + border-radius: 4px; font-size: 1em; padding-left: 1em; padding-right: 1em; - white-space: nowrap; -} + white-space: nowrap; } .file-cta { - background-color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-background-l) + var(--bulma-file-background-l-delta))); - color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-cta-color-l) + var(--bulma-file-color-l-delta))); -} + background-color: whitesmoke; + color: #4a4a4a; } .file-name { - border-color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-border-l) + var(--bulma-file-color-l-delta))); - border-style: var(--bulma-file-name-border-style); - border-width: var(--bulma-file-name-border-width); - color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-name-color-l) + var(--bulma-file-color-l-delta))); + border-color: #dbdbdb; + border-style: solid; + border-width: 1px 1px 1px 0; display: block; - max-width: var(--bulma-file-name-max-width); + max-width: 16em; overflow: hidden; - text-align: inherit; - text-overflow: ellipsis; -} + text-align: left; + text-overflow: ellipsis; } .file-icon { align-items: center; display: flex; height: 1em; justify-content: center; - margin-inline-end: 0.5em; - width: 1em; -} -.file-icon .fa { - font-size: 1rem; -} - -/* Bulma Form */ -:root { - --bulma-label-color: var(--bulma-text-strong); - --bulma-label-spacing: 0.5em; - --bulma-label-weight: var(--bulma-weight-semibold); - --bulma-help-size: var(--bulma-size-small); - --bulma-field-block-spacing: 0.75rem; -} + margin-right: 0.5em; + width: 1em; } + .file-icon .fa { + font-size: 14px; } .label { - color: var(--bulma-label-color); + color: #363636; display: block; - font-size: var(--bulma-size-normal); - font-weight: var(--bulma-weight-semibold); -} -.label:not(:last-child) { - margin-bottom: var(--bulma-label-spacing); -} -.label.is-small { - font-size: var(--bulma-size-small); -} -.label.is-medium { - font-size: var(--bulma-size-medium); -} -.label.is-large { - font-size: var(--bulma-size-large); -} + font-size: 1rem; + font-weight: 700; } + .label:not(:last-child) { + margin-bottom: 0.5em; } + .label.is-small { + font-size: 0.75rem; } + .label.is-medium { + font-size: 1.25rem; } + .label.is-large { + font-size: 1.5rem; } .help { display: block; - font-size: var(--bulma-help-size); - margin-top: 0.25rem; -} -.help.is-white { - color: hsl(var(--bulma-white-h), var(--bulma-white-s), var(--bulma-white-on-scheme-l)); -} -.help.is-black { - color: hsl(var(--bulma-black-h), var(--bulma-black-s), var(--bulma-black-on-scheme-l)); -} -.help.is-light { - color: hsl(var(--bulma-light-h), var(--bulma-light-s), var(--bulma-light-on-scheme-l)); -} -.help.is-dark { - color: hsl(var(--bulma-dark-h), var(--bulma-dark-s), var(--bulma-dark-on-scheme-l)); -} -.help.is-text { - color: hsl(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-text-on-scheme-l)); -} -.help.is-primary { - color: hsl(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-primary-on-scheme-l)); -} -.help.is-link { - color: hsl(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-link-on-scheme-l)); -} -.help.is-info { - color: hsl(var(--bulma-info-h), var(--bulma-info-s), var(--bulma-info-on-scheme-l)); -} -.help.is-success { - color: hsl(var(--bulma-success-h), var(--bulma-success-s), var(--bulma-success-on-scheme-l)); -} -.help.is-warning { - color: hsl(var(--bulma-warning-h), var(--bulma-warning-s), var(--bulma-warning-on-scheme-l)); -} -.help.is-danger { - color: hsl(var(--bulma-danger-h), var(--bulma-danger-s), var(--bulma-danger-on-scheme-l)); -} + font-size: 0.75rem; + margin-top: 0.25rem; } + .help.is-white { + color: white; } + .help.is-black { + color: #0a0a0a; } + .help.is-light { + color: whitesmoke; } + .help.is-dark { + color: #363636; } + .help.is-primary { + color: #478D00; } + .help.is-link { + color: #4391E0; } + .help.is-info { + color: #209cee; } + .help.is-success { + color: #478D00; } + .help.is-warning { + color: #ffdd57; } + .help.is-danger { + color: #a70c20; } + +.field:not(:last-child) { + margin-bottom: 0.75rem; } -.field { - --bulma-block-spacing: var(--bulma-field-block-spacing); -} .field.has-addons { display: flex; - justify-content: flex-start; -} -.field.has-addons .control:not(:last-child) { - margin-inline-end: -1px; -} -.field.has-addons .control:not(:first-child):not(:last-child) .button, -.field.has-addons .control:not(:first-child):not(:last-child) .input, -.field.has-addons .control:not(:first-child):not(:last-child) .select select { - border-radius: 0; -} -.field.has-addons .control:first-child:not(:only-child) .button, -.field.has-addons .control:first-child:not(:only-child) .input, -.field.has-addons .control:first-child:not(:only-child) .select select { - border-start-end-radius: 0; - border-end-end-radius: 0; -} -.field.has-addons .control:last-child:not(:only-child) .button, -.field.has-addons .control:last-child:not(:only-child) .input, -.field.has-addons .control:last-child:not(:only-child) .select select { - border-start-start-radius: 0; - border-end-start-radius: 0; -} -.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, -.field.has-addons .control .input:not([disabled]):hover, -.field.has-addons .control .input:not([disabled]).is-hovered, -.field.has-addons .control .select select:not([disabled]):hover, -.field.has-addons .control .select select:not([disabled]).is-hovered { - z-index: 2; -} -.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, -.field.has-addons .control .input:not([disabled]):focus, -.field.has-addons .control .input:not([disabled]).is-focused, -.field.has-addons .control .input:not([disabled]):active, -.field.has-addons .control .input:not([disabled]).is-active, -.field.has-addons .control .select select:not([disabled]):focus, -.field.has-addons .control .select select:not([disabled]).is-focused, -.field.has-addons .control .select select:not([disabled]):active, -.field.has-addons .control .select select:not([disabled]).is-active { - z-index: 3; -} -.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, -.field.has-addons .control .input:not([disabled]):focus:hover, -.field.has-addons .control .input:not([disabled]).is-focused:hover, -.field.has-addons .control .input:not([disabled]):active:hover, -.field.has-addons .control .input:not([disabled]).is-active:hover, -.field.has-addons .control .select select:not([disabled]):focus:hover, -.field.has-addons .control .select select:not([disabled]).is-focused:hover, -.field.has-addons .control .select select:not([disabled]):active:hover, -.field.has-addons .control .select select:not([disabled]).is-active:hover { - z-index: 4; -} -.field.has-addons .control.is-expanded { - flex-grow: 1; - flex-shrink: 1; -} -.field.has-addons.has-addons-centered { - justify-content: center; -} -.field.has-addons.has-addons-right { - justify-content: flex-end; -} -.field.has-addons.has-addons-fullwidth .control { - flex-grow: 1; - flex-shrink: 0; -} + justify-content: flex-start; } + .field.has-addons .control:not(:last-child) { + margin-right: -1px; } + .field.has-addons .control:not(:first-child):not(:last-child) .button, + .field.has-addons .control:not(:first-child):not(:last-child) .input, + .field.has-addons .control:not(:first-child):not(:last-child) .select select { + border-radius: 0; } + .field.has-addons .control:first-child:not(:only-child) .button, + .field.has-addons .control:first-child:not(:only-child) .input, + .field.has-addons .control:first-child:not(:only-child) .select select { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + .field.has-addons .control:last-child:not(:only-child) .button, + .field.has-addons .control:last-child:not(:only-child) .input, + .field.has-addons .control:last-child:not(:only-child) .select select { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, + .field.has-addons .control .input:not([disabled]):hover, + .field.has-addons .control .input:not([disabled]).is-hovered, + .field.has-addons .control .select select:not([disabled]):hover, + .field.has-addons .control .select select:not([disabled]).is-hovered { + z-index: 2; } + .field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, + .field.has-addons .control .input:not([disabled]):focus, + .field.has-addons .control .input:not([disabled]).is-focused, + .field.has-addons .control .input:not([disabled]):active, + .field.has-addons .control .input:not([disabled]).is-active, + .field.has-addons .control .select select:not([disabled]):focus, + .field.has-addons .control .select select:not([disabled]).is-focused, + .field.has-addons .control .select select:not([disabled]):active, + .field.has-addons .control .select select:not([disabled]).is-active { + z-index: 3; } + .field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, + .field.has-addons .control .input:not([disabled]):focus:hover, + .field.has-addons .control .input:not([disabled]).is-focused:hover, + .field.has-addons .control .input:not([disabled]):active:hover, + .field.has-addons .control .input:not([disabled]).is-active:hover, + .field.has-addons .control .select select:not([disabled]):focus:hover, + .field.has-addons .control .select select:not([disabled]).is-focused:hover, + .field.has-addons .control .select select:not([disabled]):active:hover, + .field.has-addons .control .select select:not([disabled]).is-active:hover { + z-index: 4; } + .field.has-addons .control.is-expanded { + flex-grow: 1; + flex-shrink: 1; } + .field.has-addons.has-addons-centered { + justify-content: center; } + .field.has-addons.has-addons-right { + justify-content: flex-end; } + .field.has-addons.has-addons-fullwidth .control { + flex-grow: 1; + flex-shrink: 0; } + .field.is-grouped { display: flex; - gap: 0.75rem; - justify-content: flex-start; -} -.field.is-grouped > .control { - flex-shrink: 0; -} -.field.is-grouped > .control.is-expanded { - flex-grow: 1; - flex-shrink: 1; -} -.field.is-grouped.is-grouped-centered { - justify-content: center; -} -.field.is-grouped.is-grouped-right { - justify-content: flex-end; -} -.field.is-grouped.is-grouped-multiline { - flex-wrap: wrap; -} + justify-content: flex-start; } + .field.is-grouped > .control { + flex-shrink: 0; } + .field.is-grouped > .control:not(:last-child) { + margin-bottom: 0; + margin-right: 0.75rem; } + .field.is-grouped > .control.is-expanded { + flex-grow: 1; + flex-shrink: 1; } + .field.is-grouped.is-grouped-centered { + justify-content: center; } + .field.is-grouped.is-grouped-right { + justify-content: flex-end; } + .field.is-grouped.is-grouped-multiline { + flex-wrap: wrap; } + .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) { + margin-bottom: 0.75rem; } + .field.is-grouped.is-grouped-multiline:last-child { + margin-bottom: -0.75rem; } + .field.is-grouped.is-grouped-multiline:not(:last-child) { + margin-bottom: 0; } + @media screen and (min-width: 769px), print { .field.is-horizontal { - display: flex; - } -} + display: flex; } } .field-label .label { - font-size: inherit; -} + font-size: inherit; } + @media screen and (max-width: 768px) { .field-label { - margin-bottom: 0.5rem; - } -} + margin-bottom: 0.5rem; } } + @media screen and (min-width: 769px), print { .field-label { flex-basis: 0; flex-grow: 1; flex-shrink: 0; - margin-inline-end: 1.5rem; - text-align: right; - } - .field-label.is-small { - font-size: var(--bulma-size-small); - padding-top: 0.375em; - } - .field-label.is-normal { - padding-top: 0.375em; - } - .field-label.is-medium { - font-size: var(--bulma-size-medium); - padding-top: 0.375em; - } - .field-label.is-large { - font-size: var(--bulma-size-large); - padding-top: 0.375em; - } -} + margin-right: 1.5rem; + text-align: right; } + .field-label.is-small { + font-size: 0.75rem; + padding-top: 0.375em; } + .field-label.is-normal { + padding-top: 0.375em; } + .field-label.is-medium { + font-size: 1.25rem; + padding-top: 0.375em; } + .field-label.is-large { + font-size: 1.5rem; + padding-top: 0.375em; } } .field-body .field .field { - margin-bottom: 0; -} + margin-bottom: 0; } + @media screen and (min-width: 769px), print { .field-body { display: flex; flex-basis: 0; flex-grow: 5; - flex-shrink: 1; - } - .field-body .field { - margin-bottom: 0; - } - .field-body > .field { - flex-shrink: 1; - } - .field-body > .field:not(.is-narrow) { - flex-grow: 1; - } - .field-body > .field:not(:last-child) { - margin-inline-end: 0.75rem; - } -} + flex-shrink: 1; } + .field-body .field { + margin-bottom: 0; } + .field-body > .field { + flex-shrink: 1; } + .field-body > .field:not(.is-narrow) { + flex-grow: 1; } + .field-body > .field:not(:last-child) { + margin-right: 0.75rem; } } .control { box-sizing: border-box; clear: both; - font-size: var(--bulma-size-normal); + font-size: 1rem; position: relative; - text-align: inherit; -} -.control.has-icons-left .input:hover ~ .icon, -.control.has-icons-left .select:hover ~ .icon, .control.has-icons-right .input:hover ~ .icon, -.control.has-icons-right .select:hover ~ .icon { - color: var(--bulma-input-icon-hover-color); -} -.control.has-icons-left .input:focus ~ .icon, -.control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, -.control.has-icons-right .select:focus ~ .icon { - color: var(--bulma-input-icon-focus-color); -} -.control.has-icons-left .input.is-small ~ .icon, -.control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, -.control.has-icons-right .select.is-small ~ .icon { - font-size: var(--bulma-size-small); -} -.control.has-icons-left .input.is-medium ~ .icon, -.control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, -.control.has-icons-right .select.is-medium ~ .icon { - font-size: var(--bulma-size-medium); -} -.control.has-icons-left .input.is-large ~ .icon, -.control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, -.control.has-icons-right .select.is-large ~ .icon { - font-size: var(--bulma-size-large); -} -.control.has-icons-left .icon, .control.has-icons-right .icon { - color: var(--bulma-input-icon-color); - height: var(--bulma-input-height); - pointer-events: none; - position: absolute; - top: 0; - width: var(--bulma-input-height); - z-index: 4; -} -.control.has-icons-left .input, -.control.has-icons-left .select select { - padding-left: var(--bulma-input-height); -} -.control.has-icons-left .icon.is-left { - left: 0; -} -.control.has-icons-right .input, -.control.has-icons-right .select select { - padding-right: var(--bulma-input-height); -} -.control.has-icons-right .icon.is-right { - right: 0; -} -.control.is-loading::after { - inset-inline-end: 0.75em; - position: absolute !important; - top: 0.75em; - z-index: 4; -} -.control.is-loading.is-small:after { - font-size: var(--bulma-size-small); -} -.control.is-loading.is-medium:after { - font-size: var(--bulma-size-medium); -} -.control.is-loading.is-large:after { - font-size: var(--bulma-size-large); -} - -/* Bulma Components */ -.breadcrumb { - --bulma-breadcrumb-item-color: var(--bulma-link-text); - --bulma-breadcrumb-item-hover-color: var(--bulma-link-text-hover); - --bulma-breadcrumb-item-active-color: var(--bulma-link-text-active); - --bulma-breadcrumb-item-padding-vertical: 0; - --bulma-breadcrumb-item-padding-horizontal: 0.75em; - --bulma-breadcrumb-item-separator-color: var(--bulma-border); -} + text-align: left; } + .control.has-icons-left .input:focus ~ .icon, + .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, + .control.has-icons-right .select:focus ~ .icon { + color: #7a7a7a; } + .control.has-icons-left .input.is-small ~ .icon, + .control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, + .control.has-icons-right .select.is-small ~ .icon { + font-size: 0.75rem; } + .control.has-icons-left .input.is-medium ~ .icon, + .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, + .control.has-icons-right .select.is-medium ~ .icon { + font-size: 1.25rem; } + .control.has-icons-left .input.is-large ~ .icon, + .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, + .control.has-icons-right .select.is-large ~ .icon { + font-size: 1.5rem; } + .control.has-icons-left .icon, .control.has-icons-right .icon { + color: #dbdbdb; + height: 2.25em; + pointer-events: none; + position: absolute; + top: 0; + width: 2.25em; + z-index: 4; } + .control.has-icons-left .input, + .control.has-icons-left .select select { + padding-left: 2.25em; } + .control.has-icons-left .icon.is-left { + left: 0; } + .control.has-icons-right .input, + .control.has-icons-right .select select { + padding-right: 2.25em; } + .control.has-icons-right .icon.is-right { + right: 0; } + .control.is-loading::after { + position: absolute !important; + right: 0.625em; + top: 0.625em; + z-index: 4; } + .control.is-loading.is-small:after { + font-size: 0.75rem; } + .control.is-loading.is-medium:after { + font-size: 1.25rem; } + .control.is-loading.is-large:after { + font-size: 1.5rem; } .breadcrumb { - font-size: var(--bulma-size-normal); - white-space: nowrap; -} -.breadcrumb a { - align-items: center; - color: var(--bulma-breadcrumb-item-color); - display: flex; - justify-content: center; - padding: var(--bulma-breadcrumb-item-padding-vertical) var(--bulma-breadcrumb-item-padding-horizontal); -} -.breadcrumb a:hover { - color: var(--bulma-breadcrumb-item-hover-color); -} -.breadcrumb li { - align-items: center; - display: flex; -} -.breadcrumb li:first-child a { - padding-inline-start: 0; -} -.breadcrumb li.is-active a { - color: var(--bulma-breadcrumb-item-active-color); - cursor: default; - pointer-events: none; -} -.breadcrumb li + li::before { - color: var(--bulma-breadcrumb-item-separator-color); - content: "/"; -} -.breadcrumb ul, -.breadcrumb ol { - align-items: flex-start; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} -.breadcrumb .icon:first-child { - margin-inline-end: 0.5em; -} -.breadcrumb .icon:last-child { - margin-inline-start: 0.5em; -} -.breadcrumb.is-centered ol, -.breadcrumb.is-centered ul { - justify-content: center; -} -.breadcrumb.is-right ol, -.breadcrumb.is-right ul { - justify-content: flex-end; -} -.breadcrumb.is-small { - font-size: var(--bulma-size-small); -} -.breadcrumb.is-medium { - font-size: var(--bulma-size-medium); -} -.breadcrumb.is-large { - font-size: var(--bulma-size-large); -} -.breadcrumb.has-arrow-separator li + li::before { - content: "→"; -} -.breadcrumb.has-bullet-separator li + li::before { - content: "•"; -} -.breadcrumb.has-dot-separator li + li::before { - content: "·"; -} -.breadcrumb.has-succeeds-separator li + li::before { - content: "≻"; -} + font-size: 1rem; + white-space: nowrap; } + .breadcrumb a { + align-items: center; + color: #4391E0; + display: flex; + justify-content: center; + padding: 0 0.75em; } + .breadcrumb a:hover { + color: #363636; } + .breadcrumb li { + align-items: center; + display: flex; } + .breadcrumb li:first-child a { + padding-left: 0; } + .breadcrumb li.is-active a { + color: #363636; + cursor: default; + pointer-events: none; } + .breadcrumb li + li::before { + color: #b5b5b5; + content: "\0002f"; } + .breadcrumb ul, + .breadcrumb ol { + align-items: flex-start; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .breadcrumb .icon:first-child { + margin-right: 0.5em; } + .breadcrumb .icon:last-child { + margin-left: 0.5em; } + .breadcrumb.is-centered ol, + .breadcrumb.is-centered ul { + justify-content: center; } + .breadcrumb.is-right ol, + .breadcrumb.is-right ul { + justify-content: flex-end; } + .breadcrumb.is-small { + font-size: 0.75rem; } + .breadcrumb.is-medium { + font-size: 1.25rem; } + .breadcrumb.is-large { + font-size: 1.5rem; } + .breadcrumb.has-arrow-separator li + li::before { + content: "\02192"; } + .breadcrumb.has-bullet-separator li + li::before { + content: "\02022"; } + .breadcrumb.has-dot-separator li + li::before { + content: "\000b7"; } + .breadcrumb.has-succeeds-separator li + li::before { + content: "\0227B"; } .card { - --bulma-card-color: var(--bulma-text); - --bulma-card-background-color: var(--bulma-scheme-main); - --bulma-card-shadow: var(--bulma-shadow); - --bulma-card-radius: 0.75rem; - --bulma-card-header-background-color: transparent; - --bulma-card-header-color: var(--bulma-text-strong); - --bulma-card-header-padding: 0.75rem 1rem; - --bulma-card-header-shadow: 0 0.125em 0.25em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); - --bulma-card-header-weight: var(--bulma-weight-bold); - --bulma-card-content-background-color: transparent; - --bulma-card-content-padding: 1.5rem; - --bulma-card-footer-background-color: transparent; - --bulma-card-footer-border-top: 1px solid var(--bulma-border-weak); - --bulma-card-footer-padding: 0.75rem; - --bulma-card-media-margin: var(--bulma-block-spacing); -} - -.card { - background-color: var(--bulma-card-background-color); - border-radius: var(--bulma-card-radius); - box-shadow: var(--bulma-card-shadow); - color: var(--bulma-card-color); + background-color: white; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + color: #4a4a4a; max-width: 100%; - position: relative; -} - -.card-footer:first-child, .card-content:first-child, .card-header:first-child { - border-start-start-radius: var(--bulma-card-radius); - border-start-end-radius: var(--bulma-card-radius); -} -.card-footer:last-child, .card-content:last-child, .card-header:last-child { - border-end-start-radius: var(--bulma-card-radius); - border-end-end-radius: var(--bulma-card-radius); -} + position: relative; } .card-header { - background-color: var(--bulma-card-header-background-color); + background-color: transparent; align-items: stretch; - box-shadow: var(--bulma-card-header-shadow); - display: flex; -} + box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1); + display: flex; } .card-header-title { align-items: center; - color: var(--bulma-card-header-color); + color: #363636; display: flex; flex-grow: 1; - font-weight: var(--bulma-card-header-weight); - padding: var(--bulma-card-header-padding); -} -.card-header-title.is-centered { - justify-content: center; -} + font-weight: 700; + padding: 0.75rem; } + .card-header-title.is-centered { + justify-content: center; } .card-header-icon { - appearance: none; - background: none; - border: none; - color: inherit; - font-family: inherit; - font-size: 1em; - margin: 0; - padding: 0; align-items: center; cursor: pointer; display: flex; justify-content: center; - padding: var(--bulma-card-header-padding); -} + padding: 0.75rem; } .card-image { display: block; - position: relative; -} -.card-image:first-child img { - border-start-start-radius: var(--bulma-card-radius); - border-start-end-radius: var(--bulma-card-radius); -} -.card-image:last-child img { - border-end-start-radius: var(--bulma-card-radius); - border-end-end-radius: var(--bulma-card-radius); -} + position: relative; } .card-content { - background-color: var(--bulma-card-content-background-color); - padding: var(--bulma-card-content-padding); -} + background-color: transparent; + padding: 1.5rem; } .card-footer { - background-color: var(--bulma-card-footer-background-color); - border-top: var(--bulma-card-footer-border-top); + background-color: transparent; + border-top: 1px solid #dbdbdb; align-items: stretch; - display: flex; -} + display: flex; } .card-footer-item { align-items: center; @@ -3956,411 +3718,377 @@ button.tag:active, flex-grow: 1; flex-shrink: 0; justify-content: center; - padding: var(--bulma-card-footer-padding); -} -.card-footer-item:not(:last-child) { - border-inline-end: var(--bulma-card-footer-border-top); -} + padding: 0.75rem; } + .card-footer-item:not(:last-child) { + border-right: 1px solid #dbdbdb; } .card .media:not(:last-child) { - margin-bottom: var(--bulma-card-media-margin); -} - -.dropdown { - --bulma-dropdown-menu-min-width: 12rem; - --bulma-dropdown-content-background-color: var(--bulma-scheme-main); - --bulma-dropdown-content-offset: 0.25rem; - --bulma-dropdown-content-padding-bottom: 0.5rem; - --bulma-dropdown-content-padding-top: 0.5rem; - --bulma-dropdown-content-radius: var(--bulma-radius); - --bulma-dropdown-content-shadow: var(--bulma-shadow); - --bulma-dropdown-content-z: 20; - --bulma-dropdown-item-h: var(--bulma-scheme-h); - --bulma-dropdown-item-s: var(--bulma-scheme-s); - --bulma-dropdown-item-l: var(--bulma-scheme-main-l); - --bulma-dropdown-item-background-l: var(--bulma-scheme-main-l); - --bulma-dropdown-item-background-l-delta: 0%; - --bulma-dropdown-item-hover-background-l-delta: var(--bulma-hover-background-l-delta); - --bulma-dropdown-item-active-background-l-delta: var(--bulma-active-background-l-delta); - --bulma-dropdown-item-color-l: var(--bulma-text-strong-l); - --bulma-dropdown-item-selected-h: var(--bulma-link-h); - --bulma-dropdown-item-selected-s: var(--bulma-link-s); - --bulma-dropdown-item-selected-l: var(--bulma-link-l); - --bulma-dropdown-item-selected-background-l: var(--bulma-link-l); - --bulma-dropdown-item-selected-color-l: var(--bulma-link-invert-l); - --bulma-dropdown-divider-background-color: var(--bulma-border-weak); -} + margin-bottom: 1.5rem; } .dropdown { display: inline-flex; position: relative; - vertical-align: top; -} -.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { - display: block; -} -.dropdown.is-right .dropdown-menu { - left: auto; - right: 0; -} -.dropdown.is-up .dropdown-menu { - bottom: 100%; - padding-bottom: var(--bulma-dropdown-content-offset); - padding-top: initial; - top: auto; -} + vertical-align: top; } + .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { + display: block; } + .dropdown.is-right .dropdown-menu { + left: auto; + right: 0; } + .dropdown.is-up .dropdown-menu { + bottom: 100%; + padding-bottom: 4px; + padding-top: initial; + top: auto; } .dropdown-menu { display: none; left: 0; - min-width: var(--bulma-dropdown-menu-min-width); - padding-top: var(--bulma-dropdown-content-offset); + min-width: 12rem; + padding-top: 4px; position: absolute; top: 100%; - z-index: var(--bulma-dropdown-content-z); -} + z-index: 20; } .dropdown-content { - background-color: var(--bulma-dropdown-content-background-color); - border-radius: var(--bulma-dropdown-content-radius); - box-shadow: var(--bulma-dropdown-content-shadow); - padding-bottom: var(--bulma-dropdown-content-padding-bottom); - padding-top: var(--bulma-dropdown-content-padding-top); -} + background-color: white; + border-radius: 4px; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + padding-bottom: 0.5rem; + padding-top: 0.5rem; } .dropdown-item { - color: hsl(var(--bulma-dropdown-item-h), var(--bulma-dropdown-item-s), var(--bulma-dropdown-item-color-l)); + color: #4a4a4a; display: block; font-size: 0.875rem; line-height: 1.5; padding: 0.375rem 1rem; -} + position: relative; } a.dropdown-item, button.dropdown-item { - background-color: hsl(var(--bulma-dropdown-item-h), var(--bulma-dropdown-item-s), calc(var(--bulma-dropdown-item-background-l) + var(--bulma-dropdown-item-background-l-delta))); - padding-inline-end: 3rem; - text-align: inherit; + padding-right: 3rem; + text-align: left; white-space: nowrap; - width: 100%; -} -a.dropdown-item:hover, -button.dropdown-item:hover { - --bulma-dropdown-item-background-l-delta: var(--bulma-dropdown-item-hover-background-l-delta); - --bulma-dropdown-item-border-l-delta: var(--bulma-dropdown-item-hover-border-l-delta); -} -a.dropdown-item:active, -button.dropdown-item:active { - --bulma-dropdown-item-background-l-delta: var(--bulma-dropdown-item-active-background-l-delta); - --bulma-dropdown-item-border-l-delta: var(--bulma-dropdown-item-active-border-l-delta); -} -a.dropdown-item.is-active, a.dropdown-item.is-selected, -button.dropdown-item.is-active, -button.dropdown-item.is-selected { - --bulma-dropdown-item-h: var(--bulma-dropdown-item-selected-h); - --bulma-dropdown-item-s: var(--bulma-dropdown-item-selected-s); - --bulma-dropdown-item-l: var(--bulma-dropdown-item-selected-l); - --bulma-dropdown-item-background-l: var(--bulma-dropdown-item-selected-background-l); - --bulma-dropdown-item-color-l: var(--bulma-dropdown-item-selected-color-l); -} + width: 100%; } + a.dropdown-item:hover, + button.dropdown-item:hover { + background-color: whitesmoke; + color: #0a0a0a; } + a.dropdown-item.is-active, + button.dropdown-item.is-active { + background-color: #4391E0; + color: #fff; } .dropdown-divider { - background-color: var(--bulma-dropdown-divider-background-color); + background-color: #dbdbdb; border: none; display: block; height: 1px; - margin: 0.5rem 0; -} + margin: 0.5rem 0; } + +.level { + align-items: center; + justify-content: space-between; } + .level code { + border-radius: 4px; } + .level img { + display: inline-block; + vertical-align: top; } + .level.is-mobile { + display: flex; } + .level.is-mobile .level-left, + .level.is-mobile .level-right { + display: flex; } + .level.is-mobile .level-left + .level-right { + margin-top: 0; } + .level.is-mobile .level-item:not(:last-child) { + margin-bottom: 0; + margin-right: 0.75rem; } + .level.is-mobile .level-item:not(.is-narrow) { + flex-grow: 1; } + @media screen and (min-width: 769px), print { + .level { + display: flex; } + .level > .level-item:not(.is-narrow) { + flex-grow: 1; } } +.level-item { + align-items: center; + display: flex; + flex-basis: auto; + flex-grow: 0; + flex-shrink: 0; + justify-content: center; } + .level-item .title, + .level-item .subtitle { + margin-bottom: 0; } + @media screen and (max-width: 768px) { + .level-item:not(:last-child) { + margin-bottom: 0.75rem; } } +.level-left, +.level-right { + flex-basis: auto; + flex-grow: 0; + flex-shrink: 0; } + .level-left .level-item.is-flexible, + .level-right .level-item.is-flexible { + flex-grow: 1; } + @media screen and (min-width: 769px), print { + .level-left .level-item:not(:last-child), + .level-right .level-item:not(:last-child) { + margin-right: 0.75rem; } } +.level-left { + align-items: center; + justify-content: flex-start; } + @media screen and (max-width: 768px) { + .level-left + .level-right { + margin-top: 1.5rem; } } + @media screen and (min-width: 769px), print { + .level-left { + display: flex; } } +.level-right { + align-items: center; + justify-content: flex-end; } + @media screen and (min-width: 769px), print { + .level-right { + display: flex; } } +.list { + background-color: white; + border-radius: 4px; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); } + +.list-item { + display: block; + padding: 0.5em 1em; } + .list-item:not(a) { + color: #4a4a4a; } + .list-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; } + .list-item:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; } + .list-item:not(:last-child) { + border-bottom: 1px solid #dbdbdb; } + .list-item.is-active { + background-color: #4391E0; + color: #fff; } + +a.list-item { + background-color: whitesmoke; + cursor: pointer; } + +.media { + align-items: flex-start; + display: flex; + text-align: left; } + .media .content:not(:last-child) { + margin-bottom: 0.75rem; } + .media .media { + border-top: 1px solid rgba(219, 219, 219, 0.5); + display: flex; + padding-top: 0.75rem; } + .media .media .content:not(:last-child), + .media .media .control:not(:last-child) { + margin-bottom: 0.5rem; } + .media .media .media { + padding-top: 0.5rem; } + .media .media .media + .media { + margin-top: 0.5rem; } + .media + .media { + border-top: 1px solid rgba(219, 219, 219, 0.5); + margin-top: 1rem; + padding-top: 1rem; } + .media.is-large + .media { + margin-top: 1.5rem; + padding-top: 1.5rem; } + +.media-left, +.media-right { + flex-basis: auto; + flex-grow: 0; + flex-shrink: 0; } + +.media-left { + margin-right: 1rem; } + +.media-right { + margin-left: 1rem; } + +.media-content { + flex-basis: auto; + flex-grow: 1; + flex-shrink: 1; + text-align: left; } + +@media screen and (max-width: 768px) { + .media-content { + overflow-x: auto; } } .menu { - --bulma-menu-item-h: var(--bulma-scheme-h); - --bulma-menu-item-s: var(--bulma-scheme-s); - --bulma-menu-item-l: var(--bulma-scheme-main-l); - --bulma-menu-item-background-l: var(--bulma-scheme-main-l); - --bulma-menu-item-background-l-delta: 0%; - --bulma-menu-item-hover-background-l-delta: var(--bulma-hover-background-l-delta); - --bulma-menu-item-active-background-l-delta: var(--bulma-active-background-l-delta); - --bulma-menu-item-color-l: var(--bulma-text-l); - --bulma-menu-item-radius: var(--bulma-radius-small); - --bulma-menu-item-selected-h: var(--bulma-link-h); - --bulma-menu-item-selected-s: var(--bulma-link-s); - --bulma-menu-item-selected-l: var(--bulma-link-l); - --bulma-menu-item-selected-background-l: var(--bulma-link-l); - --bulma-menu-item-selected-color-l: var(--bulma-link-invert-l); - --bulma-menu-list-border-left: 1px solid var(--bulma-border); - --bulma-menu-list-line-height: 1.25; - --bulma-menu-list-link-padding: 0.5em 0.75em; - --bulma-menu-nested-list-margin: 0.75em; - --bulma-menu-nested-list-padding-left: 0.75em; - --bulma-menu-label-color: var(--bulma-text-weak); - --bulma-menu-label-font-size: 0.75em; - --bulma-menu-label-letter-spacing: 0.1em; - --bulma-menu-label-spacing: 1em; -} - -.menu { - font-size: var(--bulma-size-normal); -} -.menu.is-small { - font-size: var(--bulma-size-small); -} -.menu.is-medium { - font-size: var(--bulma-size-medium); -} -.menu.is-large { - font-size: var(--bulma-size-large); -} + font-size: 1rem; } + .menu.is-small { + font-size: 0.75rem; } + .menu.is-medium { + font-size: 1.25rem; } + .menu.is-large { + font-size: 1.5rem; } .menu-list { - line-height: var(--bulma-menu-list-line-height); -} -.menu-list a, -.menu-list button, -.menu-list .menu-item { - background-color: hsl(var(--bulma-menu-item-h), var(--bulma-menu-item-s), calc(var(--bulma-menu-item-background-l) + var(--bulma-menu-item-background-l-delta))); - border-radius: var(--bulma-menu-item-radius); - color: hsl(var(--bulma-menu-item-h), var(--bulma-menu-item-s), var(--bulma-menu-item-color-l)); - display: block; - padding: var(--bulma-menu-list-link-padding); - text-align: left; - width: 100%; -} -.menu-list a:hover, -.menu-list button:hover, -.menu-list .menu-item:hover { - --bulma-menu-item-background-l-delta: var(--bulma-menu-item-hover-background-l-delta); -} -.menu-list a:active, -.menu-list button:active, -.menu-list .menu-item:active { - --bulma-menu-item-background-l-delta: var(--bulma-menu-item-active-background-l-delta); -} -.menu-list a.is-active, .menu-list a.is-selected, -.menu-list button.is-active, -.menu-list button.is-selected, -.menu-list .menu-item.is-active, -.menu-list .menu-item.is-selected { - --bulma-menu-item-h: var(--bulma-menu-item-selected-h); - --bulma-menu-item-s: var(--bulma-menu-item-selected-s); - --bulma-menu-item-l: var(--bulma-menu-item-selected-l); - --bulma-menu-item-background-l: var(--bulma-menu-item-selected-background-l); - --bulma-menu-item-color-l: var(--bulma-menu-item-selected-color-l); -} -.menu-list li ul { - border-inline-start: var(--bulma-menu-list-border-left); - margin: var(--bulma-menu-nested-list-margin); - padding-inline-start: var(--bulma-menu-nested-list-padding-left); -} + line-height: 1.25; } + .menu-list a { + border-radius: 2px; + color: #4a4a4a; + display: block; + padding: 0.5em 0.75em; } + .menu-list a:hover { + background-color: whitesmoke; + color: #363636; } + .menu-list a.is-active { + background-color: #4391E0; + color: #fff; } + .menu-list li ul { + border-left: 1px solid #dbdbdb; + margin: 0.75em; + padding-left: 0.75em; } .menu-label { - color: var(--bulma-menu-label-color); - font-size: var(--bulma-menu-label-font-size); - letter-spacing: var(--bulma-menu-label-letter-spacing); - text-transform: uppercase; -} -.menu-label:not(:first-child) { - margin-top: var(--bulma-menu-label-spacing); -} -.menu-label:not(:last-child) { - margin-bottom: var(--bulma-menu-label-spacing); -} + color: #7a7a7a; + font-size: 0.75em; + letter-spacing: 0.1em; + text-transform: uppercase; } + .menu-label:not(:first-child) { + margin-top: 1em; } + .menu-label:not(:last-child) { + margin-bottom: 1em; } .message { - --bulma-message-border-l-delta: -20%; - --bulma-message-radius: var(--bulma-radius); - --bulma-message-header-weight: var(--bulma-weight-semibold); - --bulma-message-header-padding: 1em 1.25em; - --bulma-message-header-radius: var(--bulma-radius); - --bulma-message-body-border-width: 0 0 0 4px; - --bulma-message-body-color: var(--bulma-text); - --bulma-message-body-padding: 1.25em 1.5em; - --bulma-message-body-radius: var(--bulma-radius-small); - --bulma-message-body-pre-code-background-color: transparent; - --bulma-message-header-body-border-width: 0; - --bulma-message-h: var(--bulma-scheme-h); - --bulma-message-s: var(--bulma-scheme-s); - --bulma-message-background-l: var(--bulma-background-l); - --bulma-message-border-l: var(--bulma-border-l); - --bulma-message-border-style: solid; - --bulma-message-border-width: 0.25em; - --bulma-message-color-l: var(--bulma-text-l); - --bulma-message-header-background-l: var(--bulma-dark-l); - --bulma-message-header-color-l: var(--bulma-text-dark-invert-l); -} - -.message { - border-radius: var(--bulma-message-radius); - color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-color-l)); - font-size: var(--bulma-size-normal); -} -.message strong { - color: currentColor; -} -.message a:not(.button):not(.tag):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; -} -.message.is-small { - font-size: var(--bulma-size-small); -} -.message.is-medium { - font-size: var(--bulma-size-medium); -} -.message.is-large { - font-size: var(--bulma-size-large); -} -.message.is-white { - --bulma-message-h: var(--bulma-white-h); - --bulma-message-s: var(--bulma-white-s); - --bulma-message-border-l: calc(var(--bulma-white-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-white-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-white-l); - --bulma-message-header-color-l: var(--bulma-white-invert-l); -} -.message.is-black { - --bulma-message-h: var(--bulma-black-h); - --bulma-message-s: var(--bulma-black-s); - --bulma-message-border-l: calc(var(--bulma-black-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-black-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-black-l); - --bulma-message-header-color-l: var(--bulma-black-invert-l); -} -.message.is-light { - --bulma-message-h: var(--bulma-light-h); - --bulma-message-s: var(--bulma-light-s); - --bulma-message-border-l: calc(var(--bulma-light-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-light-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-light-l); - --bulma-message-header-color-l: var(--bulma-light-invert-l); -} -.message.is-dark { - --bulma-message-h: var(--bulma-dark-h); - --bulma-message-s: var(--bulma-dark-s); - --bulma-message-border-l: calc(var(--bulma-dark-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-dark-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-dark-l); - --bulma-message-header-color-l: var(--bulma-dark-invert-l); -} -.message.is-text { - --bulma-message-h: var(--bulma-text-h); - --bulma-message-s: var(--bulma-text-s); - --bulma-message-border-l: calc(var(--bulma-text-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-text-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-text-l); - --bulma-message-header-color-l: var(--bulma-text-invert-l); -} -.message.is-primary { - --bulma-message-h: var(--bulma-primary-h); - --bulma-message-s: var(--bulma-primary-s); - --bulma-message-border-l: calc(var(--bulma-primary-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-primary-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-primary-l); - --bulma-message-header-color-l: var(--bulma-primary-invert-l); -} -.message.is-link { - --bulma-message-h: var(--bulma-link-h); - --bulma-message-s: var(--bulma-link-s); - --bulma-message-border-l: calc(var(--bulma-link-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-link-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-link-l); - --bulma-message-header-color-l: var(--bulma-link-invert-l); -} -.message.is-info { - --bulma-message-h: var(--bulma-info-h); - --bulma-message-s: var(--bulma-info-s); - --bulma-message-border-l: calc(var(--bulma-info-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-info-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-info-l); - --bulma-message-header-color-l: var(--bulma-info-invert-l); -} -.message.is-success { - --bulma-message-h: var(--bulma-success-h); - --bulma-message-s: var(--bulma-success-s); - --bulma-message-border-l: calc(var(--bulma-success-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-success-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-success-l); - --bulma-message-header-color-l: var(--bulma-success-invert-l); -} -.message.is-warning { - --bulma-message-h: var(--bulma-warning-h); - --bulma-message-s: var(--bulma-warning-s); - --bulma-message-border-l: calc(var(--bulma-warning-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-warning-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-warning-l); - --bulma-message-header-color-l: var(--bulma-warning-invert-l); -} -.message.is-danger { - --bulma-message-h: var(--bulma-danger-h); - --bulma-message-s: var(--bulma-danger-s); - --bulma-message-border-l: calc(var(--bulma-danger-l) + var(--bulma-message-border-l-delta)); - --bulma-message-color-l: var(--bulma-danger-on-scheme-l); - --bulma-message-header-background-l: var(--bulma-danger-l); - --bulma-message-header-color-l: var(--bulma-danger-invert-l); -} + background-color: whitesmoke; + border-radius: 4px; + font-size: 1rem; } + .message strong { + color: currentColor; } + .message a:not(.button):not(.tag):not(.dropdown-item) { + color: currentColor; + text-decoration: underline; } + .message.is-small { + font-size: 0.75rem; } + .message.is-medium { + font-size: 1.25rem; } + .message.is-large { + font-size: 1.5rem; } + .message.is-white { + background-color: white; } + .message.is-white .message-header { + background-color: white; + color: #0a0a0a; } + .message.is-white .message-body { + border-color: white; + color: #4d4d4d; } + .message.is-black { + background-color: #fafafa; } + .message.is-black .message-header { + background-color: #0a0a0a; + color: white; } + .message.is-black .message-body { + border-color: #0a0a0a; + color: #090909; } + .message.is-light { + background-color: #fafafa; } + .message.is-light .message-header { + background-color: whitesmoke; + color: #363636; } + .message.is-light .message-body { + border-color: whitesmoke; + color: #505050; } + .message.is-dark { + background-color: #fafafa; } + .message.is-dark .message-header { + background-color: #363636; + color: whitesmoke; } + .message.is-dark .message-body { + border-color: #363636; + color: #2a2a2a; } + .message.is-primary { + background-color: #fafff5; } + .message.is-primary .message-header { + background-color: #478D00; + color: #fff; } + .message.is-primary .message-body { + border-color: #478D00; + color: #182f02; } + .message.is-link { + background-color: #f6fafe; } + .message.is-link .message-header { + background-color: #4391E0; + color: #fff; } + .message.is-link .message-body { + border-color: #4391E0; + color: #21578d; } + .message.is-info { + background-color: #f6fbfe; } + .message.is-info .message-header { + background-color: #209cee; + color: #fff; } + .message.is-info .message-body { + border-color: #209cee; + color: #12537e; } + .message.is-success { + background-color: #fafff5; } + .message.is-success .message-header { + background-color: #478D00; + color: #fff; } + .message.is-success .message-body { + border-color: #478D00; + color: #182f02; } + .message.is-warning { + background-color: #fffdf5; } + .message.is-warning .message-header { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .message.is-warning .message-body { + border-color: #ffdd57; + color: #3c3108; } + .message.is-danger { + background-color: #fef5f7; } + .message.is-danger .message-header { + background-color: #a70c20; + color: #fff; } + .message.is-danger .message-body { + border-color: #a70c20; + color: #820c1b; } .message-header { align-items: center; - background-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-background-l)); - border-start-start-radius: var(--bulma-message-header-radius); - border-start-end-radius: var(--bulma-message-header-radius); - color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-color-l)); + background-color: #4a4a4a; + border-radius: 4px 4px 0 0; + color: #fff; display: flex; - font-weight: var(--bulma-message-header-weight); + font-weight: 700; justify-content: space-between; line-height: 1.25; - padding: var(--bulma-message-header-padding); - position: relative; -} -.message-header .delete { - flex-grow: 0; - flex-shrink: 0; - margin-inline-start: 0.75em; -} -.message-header + .message-body { - border-width: var(--bulma-message-header-body-border-width); - border-start-start-radius: 0; - border-start-end-radius: 0; -} + padding: 0.75em 1em; + position: relative; } + .message-header .delete { + flex-grow: 0; + flex-shrink: 0; + margin-left: 0.75em; } + .message-header + .message-body { + border-width: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; } .message-body { - background-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-background-l)); - border-inline-start-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-border-l)); - border-inline-start-style: var(--bulma-message-border-style); - border-inline-start-width: var(--bulma-message-border-width); - border-radius: var(--bulma-message-body-radius); - padding: var(--bulma-message-body-padding); -} -.message-body code, -.message-body pre { - background-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-color-l)); - color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-background-l)); -} -.message-body pre code { - background-color: var(--bulma-message-body-pre-code-background-color); -} - -.modal { - --bulma-modal-z: 40; - --bulma-modal-background-background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.86); - --bulma-modal-content-width: 40rem; - --bulma-modal-content-margin-mobile: 1.25rem; - --bulma-modal-content-spacing-mobile: 10rem; - --bulma-modal-content-spacing-tablet: 2.5rem; - --bulma-modal-close-dimensions: 2.5rem; - --bulma-modal-close-right: 1.25rem; - --bulma-modal-close-top: 1.25rem; - --bulma-modal-card-spacing: 2.5rem; - --bulma-modal-card-head-background-color: var(--bulma-scheme-main); - --bulma-modal-card-head-padding: 2rem; - --bulma-modal-card-head-radius: var(--bulma-radius-large); - --bulma-modal-card-title-color: var(--bulma-text-strong); - --bulma-modal-card-title-line-height: 1; - --bulma-modal-card-title-size: var(--bulma-size-4); - --bulma-modal-card-foot-background-color: var(--bulma-scheme-main-bis); - --bulma-modal-card-foot-radius: var(--bulma-radius-large); - --bulma-modal-card-body-background-color: var(--bulma-scheme-main); - --bulma-modal-card-body-padding: 2rem; -} + border-color: #dbdbdb; + border-radius: 4px; + border-style: solid; + border-width: 0 0 0 4px; + color: #4a4a4a; + padding: 1.25em 1.5em; } + .message-body code, + .message-body pre { + background-color: white; } + .message-body pre code { + background-color: transparent; } .modal { align-items: center; @@ -4369,1410 +4097,1178 @@ button.dropdown-item.is-selected { justify-content: center; overflow: hidden; position: fixed; - z-index: var(--bulma-modal-z); -} -.modal.is-active { - display: flex; -} + z-index: 40; } + .modal.is-active { + display: flex; } .modal-background { - background-color: var(--bulma-modal-background-background-color); -} + background-color: rgba(10, 10, 10, 0.86); } .modal-content, .modal-card { - margin: 0 var(--bulma-modal-content-margin-mobile); - max-height: calc(100vh - var(--bulma-modal-content-spacing-mobile)); + margin: 0 20px; + max-height: calc(100vh - 160px); overflow: auto; position: relative; - width: 100%; -} -@media screen and (min-width: 769px) { - .modal-content, - .modal-card { - margin: 0 auto; - max-height: calc(100vh - var(--bulma-modal-content-spacing-tablet)); - width: var(--bulma-modal-content-width); - } -} - + width: 100%; } + @media screen and (min-width: 769px), print { + .modal-content, + .modal-card { + margin: 0 auto; + max-height: calc(100vh - 40px); + width: 640px; } } .modal-close { background: none; - height: var(--bulma-modal-close-dimensions); - inset-inline-end: var(--bulma-modal-close-right); + height: 40px; position: fixed; - top: var(--bulma-modal-close-top); - width: var(--bulma-modal-close-dimensions); -} + right: 20px; + top: 20px; + width: 40px; } .modal-card { display: flex; flex-direction: column; - max-height: calc(100vh - var(--bulma-modal-card-spacing)); + max-height: calc(100vh - 40px); overflow: hidden; - overflow-y: visible; -} + -ms-overflow-y: visible; } .modal-card-head, .modal-card-foot { align-items: center; + background-color: whitesmoke; display: flex; flex-shrink: 0; justify-content: flex-start; - padding: var(--bulma-modal-card-head-padding); - position: relative; -} + padding: 20px; + position: relative; } .modal-card-head { - background-color: var(--bulma-modal-card-head-background-color); - border-start-start-radius: var(--bulma-modal-card-head-radius); - border-start-end-radius: var(--bulma-modal-card-head-radius); - box-shadow: var(--bulma-shadow); -} + border-bottom: 1px solid #dbdbdb; + border-top-left-radius: 6px; + border-top-right-radius: 6px; } .modal-card-title { - color: var(--bulma-modal-card-title-color); + color: #363636; flex-grow: 1; flex-shrink: 0; - font-size: var(--bulma-modal-card-title-size); - line-height: var(--bulma-modal-card-title-line-height); -} + font-size: 1.5rem; + line-height: 1; } .modal-card-foot { - background-color: var(--bulma-modal-card-foot-background-color); - border-end-start-radius: var(--bulma-modal-card-foot-radius); - border-end-end-radius: var(--bulma-modal-card-foot-radius); -} + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-top: 1px solid #dbdbdb; } + .modal-card-foot .button:not(:last-child) { + margin-right: 0.5em; } .modal-card-body { -webkit-overflow-scrolling: touch; - background-color: var(--bulma-modal-card-body-background-color); + background-color: white; flex-grow: 1; flex-shrink: 1; overflow: auto; - padding: var(--bulma-modal-card-body-padding); -} - -:root { - --bulma-navbar-height: 3.25rem; -} + padding: 20px; } .navbar { - --bulma-navbar-h: var(--bulma-scheme-h); - --bulma-navbar-s: var(--bulma-scheme-s); - --bulma-navbar-l: var(--bulma-scheme-main-l); - --bulma-navbar-background-color: var(--bulma-scheme-main); - --bulma-navbar-box-shadow-size: 0 0.125em 0 0; - --bulma-navbar-box-shadow-color: var(--bulma-background); - --bulma-navbar-padding-vertical: 1rem; - --bulma-navbar-padding-horizontal: 2rem; - --bulma-navbar-z: 30; - --bulma-navbar-fixed-z: 30; - --bulma-navbar-item-background-a: 0; - --bulma-navbar-item-background-l: var(--bulma-scheme-main-l); - --bulma-navbar-item-background-l-delta: 0%; - --bulma-navbar-item-hover-background-l-delta: var(--bulma-hover-background-l-delta); - --bulma-navbar-item-active-background-l-delta: var(--bulma-active-background-l-delta); - --bulma-navbar-item-color-l: var(--bulma-text-l); - --bulma-navbar-item-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), var(--bulma-navbar-item-color-l)); - --bulma-navbar-item-selected-h: var(--bulma-link-h); - --bulma-navbar-item-selected-s: var(--bulma-link-s); - --bulma-navbar-item-selected-l: var(--bulma-link-l); - --bulma-navbar-item-selected-background-l: var(--bulma-link-l); - --bulma-navbar-item-selected-color-l: var(--bulma-link-invert-l); - --bulma-navbar-item-img-max-height: 1.75rem; - --bulma-navbar-burger-color: var(--bulma-link); - --bulma-navbar-tab-hover-background-color: transparent; - --bulma-navbar-tab-hover-border-bottom-color: var(--bulma-link); - --bulma-navbar-tab-active-color: var(--bulma-link); - --bulma-navbar-tab-active-background-color: transparent; - --bulma-navbar-tab-active-border-bottom-color: var(--bulma-link); - --bulma-navbar-tab-active-border-bottom-style: solid; - --bulma-navbar-tab-active-border-bottom-width: 0.1875em; - --bulma-navbar-dropdown-background-color: var(--bulma-scheme-main); - --bulma-navbar-dropdown-border-l: var(--bulma-border-l); - --bulma-navbar-dropdown-border-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), var(--bulma-navbar-dropdown-border-l)); - --bulma-navbar-dropdown-border-style: solid; - --bulma-navbar-dropdown-border-width: 0.125em; - --bulma-navbar-dropdown-offset: -0.25em; - --bulma-navbar-dropdown-arrow: var(--bulma-link); - --bulma-navbar-dropdown-radius: var(--bulma-radius-large); - --bulma-navbar-dropdown-z: 20; - --bulma-navbar-dropdown-boxed-radius: var(--bulma-radius-large); - --bulma-navbar-dropdown-boxed-shadow: 0 0.5em 0.5em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1), 0 0 0 1px hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); - --bulma-navbar-dropdown-item-h: var(--bulma-scheme-h); - --bulma-navbar-dropdown-item-s: var(--bulma-scheme-s); - --bulma-navbar-dropdown-item-l: var(--bulma-scheme-main-l); - --bulma-navbar-dropdown-item-background-l: var(--bulma-scheme-main-l); - --bulma-navbar-dropdown-item-color-l: var(--bulma-text-l); - --bulma-navbar-divider-background-l: var(--bulma-background-l); - --bulma-navbar-divider-height: 0.125em; - --bulma-navbar-bottom-box-shadow-size: 0 -0.125em 0 0; -} - -.navbar { - background-color: var(--bulma-navbar-background-color); - min-height: var(--bulma-navbar-height); + background-color: white; + min-height: 3.25rem; position: relative; - z-index: var(--bulma-navbar-z); -} -.navbar.is-white { - --bulma-navbar-h: var(--bulma-white-h); - --bulma-navbar-s: var(--bulma-white-s); - --bulma-navbar-l: var(--bulma-white-l); - --bulma-burger-h: var(--bulma-white-h); - --bulma-burger-s: var(--bulma-white-s); - --bulma-burger-l: var(--bulma-white-invert-l); - --bulma-navbar-background-color: var(--bulma-white); - --bulma-navbar-item-background-l: var(--bulma-white-l); - --bulma-navbar-item-color-l: var(--bulma-white-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-white-h); - --bulma-navbar-item-selected-s: var(--bulma-white-s); - --bulma-navbar-item-selected-l: var(--bulma-white-l); - --bulma-navbar-item-selected-background-l: var(--bulma-white-l); - --bulma-navbar-item-selected-color-l: var(--bulma-white-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-white-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-white-h), var(--bulma-white-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-white-h); - --bulma-navbar-dropdown-item-s: var(--bulma-white-s); -} -.navbar.is-black { - --bulma-navbar-h: var(--bulma-black-h); - --bulma-navbar-s: var(--bulma-black-s); - --bulma-navbar-l: var(--bulma-black-l); - --bulma-burger-h: var(--bulma-black-h); - --bulma-burger-s: var(--bulma-black-s); - --bulma-burger-l: var(--bulma-black-invert-l); - --bulma-navbar-background-color: var(--bulma-black); - --bulma-navbar-item-background-l: var(--bulma-black-l); - --bulma-navbar-item-color-l: var(--bulma-black-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-black-h); - --bulma-navbar-item-selected-s: var(--bulma-black-s); - --bulma-navbar-item-selected-l: var(--bulma-black-l); - --bulma-navbar-item-selected-background-l: var(--bulma-black-l); - --bulma-navbar-item-selected-color-l: var(--bulma-black-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-black-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-black-h), var(--bulma-black-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-black-h); - --bulma-navbar-dropdown-item-s: var(--bulma-black-s); -} -.navbar.is-light { - --bulma-navbar-h: var(--bulma-light-h); - --bulma-navbar-s: var(--bulma-light-s); - --bulma-navbar-l: var(--bulma-light-l); - --bulma-burger-h: var(--bulma-light-h); - --bulma-burger-s: var(--bulma-light-s); - --bulma-burger-l: var(--bulma-light-invert-l); - --bulma-navbar-background-color: var(--bulma-light); - --bulma-navbar-item-background-l: var(--bulma-light-l); - --bulma-navbar-item-color-l: var(--bulma-light-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-light-h); - --bulma-navbar-item-selected-s: var(--bulma-light-s); - --bulma-navbar-item-selected-l: var(--bulma-light-l); - --bulma-navbar-item-selected-background-l: var(--bulma-light-l); - --bulma-navbar-item-selected-color-l: var(--bulma-light-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-light-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-light-h), var(--bulma-light-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-light-h); - --bulma-navbar-dropdown-item-s: var(--bulma-light-s); -} -.navbar.is-dark { - --bulma-navbar-h: var(--bulma-dark-h); - --bulma-navbar-s: var(--bulma-dark-s); - --bulma-navbar-l: var(--bulma-dark-l); - --bulma-burger-h: var(--bulma-dark-h); - --bulma-burger-s: var(--bulma-dark-s); - --bulma-burger-l: var(--bulma-dark-invert-l); - --bulma-navbar-background-color: var(--bulma-dark); - --bulma-navbar-item-background-l: var(--bulma-dark-l); - --bulma-navbar-item-color-l: var(--bulma-dark-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-dark-h); - --bulma-navbar-item-selected-s: var(--bulma-dark-s); - --bulma-navbar-item-selected-l: var(--bulma-dark-l); - --bulma-navbar-item-selected-background-l: var(--bulma-dark-l); - --bulma-navbar-item-selected-color-l: var(--bulma-dark-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-dark-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-dark-h), var(--bulma-dark-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-dark-h); - --bulma-navbar-dropdown-item-s: var(--bulma-dark-s); -} -.navbar.is-text { - --bulma-navbar-h: var(--bulma-text-h); - --bulma-navbar-s: var(--bulma-text-s); - --bulma-navbar-l: var(--bulma-text-l); - --bulma-burger-h: var(--bulma-text-h); - --bulma-burger-s: var(--bulma-text-s); - --bulma-burger-l: var(--bulma-text-invert-l); - --bulma-navbar-background-color: var(--bulma-text); - --bulma-navbar-item-background-l: var(--bulma-text-l); - --bulma-navbar-item-color-l: var(--bulma-text-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-text-h); - --bulma-navbar-item-selected-s: var(--bulma-text-s); - --bulma-navbar-item-selected-l: var(--bulma-text-l); - --bulma-navbar-item-selected-background-l: var(--bulma-text-l); - --bulma-navbar-item-selected-color-l: var(--bulma-text-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-text-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-text-h); - --bulma-navbar-dropdown-item-s: var(--bulma-text-s); -} -.navbar.is-primary { - --bulma-navbar-h: var(--bulma-primary-h); - --bulma-navbar-s: var(--bulma-primary-s); - --bulma-navbar-l: var(--bulma-primary-l); - --bulma-burger-h: var(--bulma-primary-h); - --bulma-burger-s: var(--bulma-primary-s); - --bulma-burger-l: var(--bulma-primary-invert-l); - --bulma-navbar-background-color: var(--bulma-primary); - --bulma-navbar-item-background-l: var(--bulma-primary-l); - --bulma-navbar-item-color-l: var(--bulma-primary-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-primary-h); - --bulma-navbar-item-selected-s: var(--bulma-primary-s); - --bulma-navbar-item-selected-l: var(--bulma-primary-l); - --bulma-navbar-item-selected-background-l: var(--bulma-primary-l); - --bulma-navbar-item-selected-color-l: var(--bulma-primary-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-primary-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-primary-h); - --bulma-navbar-dropdown-item-s: var(--bulma-primary-s); -} -.navbar.is-link { - --bulma-navbar-h: var(--bulma-link-h); - --bulma-navbar-s: var(--bulma-link-s); - --bulma-navbar-l: var(--bulma-link-l); - --bulma-burger-h: var(--bulma-link-h); - --bulma-burger-s: var(--bulma-link-s); - --bulma-burger-l: var(--bulma-link-invert-l); - --bulma-navbar-background-color: var(--bulma-link); - --bulma-navbar-item-background-l: var(--bulma-link-l); - --bulma-navbar-item-color-l: var(--bulma-link-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-link-h); - --bulma-navbar-item-selected-s: var(--bulma-link-s); - --bulma-navbar-item-selected-l: var(--bulma-link-l); - --bulma-navbar-item-selected-background-l: var(--bulma-link-l); - --bulma-navbar-item-selected-color-l: var(--bulma-link-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-link-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-link-h); - --bulma-navbar-dropdown-item-s: var(--bulma-link-s); -} -.navbar.is-info { - --bulma-navbar-h: var(--bulma-info-h); - --bulma-navbar-s: var(--bulma-info-s); - --bulma-navbar-l: var(--bulma-info-l); - --bulma-burger-h: var(--bulma-info-h); - --bulma-burger-s: var(--bulma-info-s); - --bulma-burger-l: var(--bulma-info-invert-l); - --bulma-navbar-background-color: var(--bulma-info); - --bulma-navbar-item-background-l: var(--bulma-info-l); - --bulma-navbar-item-color-l: var(--bulma-info-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-info-h); - --bulma-navbar-item-selected-s: var(--bulma-info-s); - --bulma-navbar-item-selected-l: var(--bulma-info-l); - --bulma-navbar-item-selected-background-l: var(--bulma-info-l); - --bulma-navbar-item-selected-color-l: var(--bulma-info-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-info-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-info-h), var(--bulma-info-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-info-h); - --bulma-navbar-dropdown-item-s: var(--bulma-info-s); -} -.navbar.is-success { - --bulma-navbar-h: var(--bulma-success-h); - --bulma-navbar-s: var(--bulma-success-s); - --bulma-navbar-l: var(--bulma-success-l); - --bulma-burger-h: var(--bulma-success-h); - --bulma-burger-s: var(--bulma-success-s); - --bulma-burger-l: var(--bulma-success-invert-l); - --bulma-navbar-background-color: var(--bulma-success); - --bulma-navbar-item-background-l: var(--bulma-success-l); - --bulma-navbar-item-color-l: var(--bulma-success-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-success-h); - --bulma-navbar-item-selected-s: var(--bulma-success-s); - --bulma-navbar-item-selected-l: var(--bulma-success-l); - --bulma-navbar-item-selected-background-l: var(--bulma-success-l); - --bulma-navbar-item-selected-color-l: var(--bulma-success-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-success-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-success-h), var(--bulma-success-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-success-h); - --bulma-navbar-dropdown-item-s: var(--bulma-success-s); -} -.navbar.is-warning { - --bulma-navbar-h: var(--bulma-warning-h); - --bulma-navbar-s: var(--bulma-warning-s); - --bulma-navbar-l: var(--bulma-warning-l); - --bulma-burger-h: var(--bulma-warning-h); - --bulma-burger-s: var(--bulma-warning-s); - --bulma-burger-l: var(--bulma-warning-invert-l); - --bulma-navbar-background-color: var(--bulma-warning); - --bulma-navbar-item-background-l: var(--bulma-warning-l); - --bulma-navbar-item-color-l: var(--bulma-warning-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-warning-h); - --bulma-navbar-item-selected-s: var(--bulma-warning-s); - --bulma-navbar-item-selected-l: var(--bulma-warning-l); - --bulma-navbar-item-selected-background-l: var(--bulma-warning-l); - --bulma-navbar-item-selected-color-l: var(--bulma-warning-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-warning-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-warning-h), var(--bulma-warning-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-warning-h); - --bulma-navbar-dropdown-item-s: var(--bulma-warning-s); -} -.navbar.is-danger { - --bulma-navbar-h: var(--bulma-danger-h); - --bulma-navbar-s: var(--bulma-danger-s); - --bulma-navbar-l: var(--bulma-danger-l); - --bulma-burger-h: var(--bulma-danger-h); - --bulma-burger-s: var(--bulma-danger-s); - --bulma-burger-l: var(--bulma-danger-invert-l); - --bulma-navbar-background-color: var(--bulma-danger); - --bulma-navbar-item-background-l: var(--bulma-danger-l); - --bulma-navbar-item-color-l: var(--bulma-danger-invert-l); - --bulma-navbar-item-selected-h: var(--bulma-danger-h); - --bulma-navbar-item-selected-s: var(--bulma-danger-s); - --bulma-navbar-item-selected-l: var(--bulma-danger-l); - --bulma-navbar-item-selected-background-l: var(--bulma-danger-l); - --bulma-navbar-item-selected-color-l: var(--bulma-danger-invert-l); - --bulma-navbar-dropdown-arrow: var(--bulma-danger-invert-l); - --bulma-navbar-dropdown-background-color: hsl(var(--bulma-danger-h), var(--bulma-danger-s), var(--bulma-navbar-dropdown-item-background-l)); - --bulma-navbar-dropdown-item-h: var(--bulma-danger-h); - --bulma-navbar-dropdown-item-s: var(--bulma-danger-s); -} -.navbar > .container { - align-items: stretch; - display: flex; - min-height: var(--bulma-navbar-height); - width: 100%; -} -.navbar.has-shadow { - box-shadow: var(--bulma-navbar-box-shadow-size) var(--bulma-navbar-box-shadow-color); -} -.navbar.is-fixed-bottom, .navbar.is-fixed-top { - left: 0; - position: fixed; - right: 0; - z-index: var(--bulma-navbar-fixed-z); -} -.navbar.is-fixed-bottom { - bottom: 0; -} -.navbar.is-fixed-bottom.has-shadow { - box-shadow: var(--bulma-navbar-bottom-box-shadow-size) var(--bulma-navbar-box-shadow-color); -} -.navbar.is-fixed-top { - top: 0; -} + z-index: 30; } + .navbar.is-white { + background-color: white; + color: #0a0a0a; } + .navbar.is-white .navbar-brand > .navbar-item, + .navbar.is-white .navbar-brand .navbar-link { + color: #0a0a0a; } + .navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, + .navbar.is-white .navbar-brand .navbar-link:focus, + .navbar.is-white .navbar-brand .navbar-link:hover, + .navbar.is-white .navbar-brand .navbar-link.is-active { + background-color: #f2f2f2; + color: #0a0a0a; } + .navbar.is-white .navbar-brand .navbar-link::after { + border-color: #0a0a0a; } + .navbar.is-white .navbar-burger { + color: #0a0a0a; } + @media screen and (min-width: 181.5px) { + .navbar.is-white .navbar-start > .navbar-item, + .navbar.is-white .navbar-start .navbar-link, + .navbar.is-white .navbar-end > .navbar-item, + .navbar.is-white .navbar-end .navbar-link { + color: #0a0a0a; } + .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, + .navbar.is-white .navbar-start .navbar-link:focus, + .navbar.is-white .navbar-start .navbar-link:hover, + .navbar.is-white .navbar-start .navbar-link.is-active, + .navbar.is-white .navbar-end > a.navbar-item:focus, + .navbar.is-white .navbar-end > a.navbar-item:hover, + .navbar.is-white .navbar-end > a.navbar-item.is-active, + .navbar.is-white .navbar-end .navbar-link:focus, + .navbar.is-white .navbar-end .navbar-link:hover, + .navbar.is-white .navbar-end .navbar-link.is-active { + background-color: #f2f2f2; + color: #0a0a0a; } + .navbar.is-white .navbar-start .navbar-link::after, + .navbar.is-white .navbar-end .navbar-link::after { + border-color: #0a0a0a; } + .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #f2f2f2; + color: #0a0a0a; } + .navbar.is-white .navbar-dropdown a.navbar-item.is-active { + background-color: white; + color: #0a0a0a; } } + .navbar.is-black { + background-color: #0a0a0a; + color: white; } + .navbar.is-black .navbar-brand > .navbar-item, + .navbar.is-black .navbar-brand .navbar-link { + color: white; } + .navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, + .navbar.is-black .navbar-brand .navbar-link:focus, + .navbar.is-black .navbar-brand .navbar-link:hover, + .navbar.is-black .navbar-brand .navbar-link.is-active { + background-color: black; + color: white; } + .navbar.is-black .navbar-brand .navbar-link::after { + border-color: white; } + .navbar.is-black .navbar-burger { + color: white; } + @media screen and (min-width: 181.5px) { + .navbar.is-black .navbar-start > .navbar-item, + .navbar.is-black .navbar-start .navbar-link, + .navbar.is-black .navbar-end > .navbar-item, + .navbar.is-black .navbar-end .navbar-link { + color: white; } + .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, + .navbar.is-black .navbar-start .navbar-link:focus, + .navbar.is-black .navbar-start .navbar-link:hover, + .navbar.is-black .navbar-start .navbar-link.is-active, + .navbar.is-black .navbar-end > a.navbar-item:focus, + .navbar.is-black .navbar-end > a.navbar-item:hover, + .navbar.is-black .navbar-end > a.navbar-item.is-active, + .navbar.is-black .navbar-end .navbar-link:focus, + .navbar.is-black .navbar-end .navbar-link:hover, + .navbar.is-black .navbar-end .navbar-link.is-active { + background-color: black; + color: white; } + .navbar.is-black .navbar-start .navbar-link::after, + .navbar.is-black .navbar-end .navbar-link::after { + border-color: white; } + .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link { + background-color: black; + color: white; } + .navbar.is-black .navbar-dropdown a.navbar-item.is-active { + background-color: #0a0a0a; + color: white; } } + .navbar.is-light { + background-color: whitesmoke; + color: #363636; } + .navbar.is-light .navbar-brand > .navbar-item, + .navbar.is-light .navbar-brand .navbar-link { + color: #363636; } + .navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, + .navbar.is-light .navbar-brand .navbar-link:focus, + .navbar.is-light .navbar-brand .navbar-link:hover, + .navbar.is-light .navbar-brand .navbar-link.is-active { + background-color: #e8e8e8; + color: #363636; } + .navbar.is-light .navbar-brand .navbar-link::after { + border-color: #363636; } + .navbar.is-light .navbar-burger { + color: #363636; } + @media screen and (min-width: 181.5px) { + .navbar.is-light .navbar-start > .navbar-item, + .navbar.is-light .navbar-start .navbar-link, + .navbar.is-light .navbar-end > .navbar-item, + .navbar.is-light .navbar-end .navbar-link { + color: #363636; } + .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, + .navbar.is-light .navbar-start .navbar-link:focus, + .navbar.is-light .navbar-start .navbar-link:hover, + .navbar.is-light .navbar-start .navbar-link.is-active, + .navbar.is-light .navbar-end > a.navbar-item:focus, + .navbar.is-light .navbar-end > a.navbar-item:hover, + .navbar.is-light .navbar-end > a.navbar-item.is-active, + .navbar.is-light .navbar-end .navbar-link:focus, + .navbar.is-light .navbar-end .navbar-link:hover, + .navbar.is-light .navbar-end .navbar-link.is-active { + background-color: #e8e8e8; + color: #363636; } + .navbar.is-light .navbar-start .navbar-link::after, + .navbar.is-light .navbar-end .navbar-link::after { + border-color: #363636; } + .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #e8e8e8; + color: #363636; } + .navbar.is-light .navbar-dropdown a.navbar-item.is-active { + background-color: whitesmoke; + color: #363636; } } + .navbar.is-dark { + background-color: #363636; + color: whitesmoke; } + .navbar.is-dark .navbar-brand > .navbar-item, + .navbar.is-dark .navbar-brand .navbar-link { + color: whitesmoke; } + .navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, + .navbar.is-dark .navbar-brand .navbar-link:focus, + .navbar.is-dark .navbar-brand .navbar-link:hover, + .navbar.is-dark .navbar-brand .navbar-link.is-active { + background-color: #292929; + color: whitesmoke; } + .navbar.is-dark .navbar-brand .navbar-link::after { + border-color: whitesmoke; } + .navbar.is-dark .navbar-burger { + color: whitesmoke; } + @media screen and (min-width: 181.5px) { + .navbar.is-dark .navbar-start > .navbar-item, + .navbar.is-dark .navbar-start .navbar-link, + .navbar.is-dark .navbar-end > .navbar-item, + .navbar.is-dark .navbar-end .navbar-link { + color: whitesmoke; } + .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, + .navbar.is-dark .navbar-start .navbar-link:focus, + .navbar.is-dark .navbar-start .navbar-link:hover, + .navbar.is-dark .navbar-start .navbar-link.is-active, + .navbar.is-dark .navbar-end > a.navbar-item:focus, + .navbar.is-dark .navbar-end > a.navbar-item:hover, + .navbar.is-dark .navbar-end > a.navbar-item.is-active, + .navbar.is-dark .navbar-end .navbar-link:focus, + .navbar.is-dark .navbar-end .navbar-link:hover, + .navbar.is-dark .navbar-end .navbar-link.is-active { + background-color: #292929; + color: whitesmoke; } + .navbar.is-dark .navbar-start .navbar-link::after, + .navbar.is-dark .navbar-end .navbar-link::after { + border-color: whitesmoke; } + .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #292929; + color: whitesmoke; } + .navbar.is-dark .navbar-dropdown a.navbar-item.is-active { + background-color: #363636; + color: whitesmoke; } } + .navbar.is-primary { + background-color: #478D00; + color: #fff; } + .navbar.is-primary .navbar-brand > .navbar-item, + .navbar.is-primary .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, + .navbar.is-primary .navbar-brand .navbar-link:focus, + .navbar.is-primary .navbar-brand .navbar-link:hover, + .navbar.is-primary .navbar-brand .navbar-link.is-active { + background-color: #3a7400; + color: #fff; } + .navbar.is-primary .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-primary .navbar-burger { + color: #fff; } + @media screen and (min-width: 181.5px) { + .navbar.is-primary .navbar-start > .navbar-item, + .navbar.is-primary .navbar-start .navbar-link, + .navbar.is-primary .navbar-end > .navbar-item, + .navbar.is-primary .navbar-end .navbar-link { + color: #fff; } + .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, + .navbar.is-primary .navbar-start .navbar-link:focus, + .navbar.is-primary .navbar-start .navbar-link:hover, + .navbar.is-primary .navbar-start .navbar-link.is-active, + .navbar.is-primary .navbar-end > a.navbar-item:focus, + .navbar.is-primary .navbar-end > a.navbar-item:hover, + .navbar.is-primary .navbar-end > a.navbar-item.is-active, + .navbar.is-primary .navbar-end .navbar-link:focus, + .navbar.is-primary .navbar-end .navbar-link:hover, + .navbar.is-primary .navbar-end .navbar-link.is-active { + background-color: #3a7400; + color: #fff; } + .navbar.is-primary .navbar-start .navbar-link::after, + .navbar.is-primary .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #3a7400; + color: #fff; } + .navbar.is-primary .navbar-dropdown a.navbar-item.is-active { + background-color: #478D00; + color: #fff; } } + .navbar.is-link { + background-color: #4391E0; + color: #fff; } + .navbar.is-link .navbar-brand > .navbar-item, + .navbar.is-link .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, + .navbar.is-link .navbar-brand .navbar-link:focus, + .navbar.is-link .navbar-brand .navbar-link:hover, + .navbar.is-link .navbar-brand .navbar-link.is-active { + background-color: #2d84dc; + color: #fff; } + .navbar.is-link .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-link .navbar-burger { + color: #fff; } + @media screen and (min-width: 181.5px) { + .navbar.is-link .navbar-start > .navbar-item, + .navbar.is-link .navbar-start .navbar-link, + .navbar.is-link .navbar-end > .navbar-item, + .navbar.is-link .navbar-end .navbar-link { + color: #fff; } + .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, + .navbar.is-link .navbar-start .navbar-link:focus, + .navbar.is-link .navbar-start .navbar-link:hover, + .navbar.is-link .navbar-start .navbar-link.is-active, + .navbar.is-link .navbar-end > a.navbar-item:focus, + .navbar.is-link .navbar-end > a.navbar-item:hover, + .navbar.is-link .navbar-end > a.navbar-item.is-active, + .navbar.is-link .navbar-end .navbar-link:focus, + .navbar.is-link .navbar-end .navbar-link:hover, + .navbar.is-link .navbar-end .navbar-link.is-active { + background-color: #2d84dc; + color: #fff; } + .navbar.is-link .navbar-start .navbar-link::after, + .navbar.is-link .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #2d84dc; + color: #fff; } + .navbar.is-link .navbar-dropdown a.navbar-item.is-active { + background-color: #4391E0; + color: #fff; } } + .navbar.is-info { + background-color: #209cee; + color: #fff; } + .navbar.is-info .navbar-brand > .navbar-item, + .navbar.is-info .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, + .navbar.is-info .navbar-brand .navbar-link:focus, + .navbar.is-info .navbar-brand .navbar-link:hover, + .navbar.is-info .navbar-brand .navbar-link.is-active { + background-color: #118fe4; + color: #fff; } + .navbar.is-info .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-info .navbar-burger { + color: #fff; } + @media screen and (min-width: 181.5px) { + .navbar.is-info .navbar-start > .navbar-item, + .navbar.is-info .navbar-start .navbar-link, + .navbar.is-info .navbar-end > .navbar-item, + .navbar.is-info .navbar-end .navbar-link { + color: #fff; } + .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, + .navbar.is-info .navbar-start .navbar-link:focus, + .navbar.is-info .navbar-start .navbar-link:hover, + .navbar.is-info .navbar-start .navbar-link.is-active, + .navbar.is-info .navbar-end > a.navbar-item:focus, + .navbar.is-info .navbar-end > a.navbar-item:hover, + .navbar.is-info .navbar-end > a.navbar-item.is-active, + .navbar.is-info .navbar-end .navbar-link:focus, + .navbar.is-info .navbar-end .navbar-link:hover, + .navbar.is-info .navbar-end .navbar-link.is-active { + background-color: #118fe4; + color: #fff; } + .navbar.is-info .navbar-start .navbar-link::after, + .navbar.is-info .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #118fe4; + color: #fff; } + .navbar.is-info .navbar-dropdown a.navbar-item.is-active { + background-color: #209cee; + color: #fff; } } + .navbar.is-success { + background-color: #478D00; + color: #fff; } + .navbar.is-success .navbar-brand > .navbar-item, + .navbar.is-success .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, + .navbar.is-success .navbar-brand .navbar-link:focus, + .navbar.is-success .navbar-brand .navbar-link:hover, + .navbar.is-success .navbar-brand .navbar-link.is-active { + background-color: #3a7400; + color: #fff; } + .navbar.is-success .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-success .navbar-burger { + color: #fff; } + @media screen and (min-width: 181.5px) { + .navbar.is-success .navbar-start > .navbar-item, + .navbar.is-success .navbar-start .navbar-link, + .navbar.is-success .navbar-end > .navbar-item, + .navbar.is-success .navbar-end .navbar-link { + color: #fff; } + .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, + .navbar.is-success .navbar-start .navbar-link:focus, + .navbar.is-success .navbar-start .navbar-link:hover, + .navbar.is-success .navbar-start .navbar-link.is-active, + .navbar.is-success .navbar-end > a.navbar-item:focus, + .navbar.is-success .navbar-end > a.navbar-item:hover, + .navbar.is-success .navbar-end > a.navbar-item.is-active, + .navbar.is-success .navbar-end .navbar-link:focus, + .navbar.is-success .navbar-end .navbar-link:hover, + .navbar.is-success .navbar-end .navbar-link.is-active { + background-color: #3a7400; + color: #fff; } + .navbar.is-success .navbar-start .navbar-link::after, + .navbar.is-success .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #3a7400; + color: #fff; } + .navbar.is-success .navbar-dropdown a.navbar-item.is-active { + background-color: #478D00; + color: #fff; } } + .navbar.is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-brand > .navbar-item, + .navbar.is-warning .navbar-brand .navbar-link { + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, + .navbar.is-warning .navbar-brand .navbar-link:focus, + .navbar.is-warning .navbar-brand .navbar-link:hover, + .navbar.is-warning .navbar-brand .navbar-link.is-active { + background-color: #ffd83e; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-brand .navbar-link::after { + border-color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-burger { + color: rgba(0, 0, 0, 0.7); } + @media screen and (min-width: 181.5px) { + .navbar.is-warning .navbar-start > .navbar-item, + .navbar.is-warning .navbar-start .navbar-link, + .navbar.is-warning .navbar-end > .navbar-item, + .navbar.is-warning .navbar-end .navbar-link { + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, + .navbar.is-warning .navbar-start .navbar-link:focus, + .navbar.is-warning .navbar-start .navbar-link:hover, + .navbar.is-warning .navbar-start .navbar-link.is-active, + .navbar.is-warning .navbar-end > a.navbar-item:focus, + .navbar.is-warning .navbar-end > a.navbar-item:hover, + .navbar.is-warning .navbar-end > a.navbar-item.is-active, + .navbar.is-warning .navbar-end .navbar-link:focus, + .navbar.is-warning .navbar-end .navbar-link:hover, + .navbar.is-warning .navbar-end .navbar-link.is-active { + background-color: #ffd83e; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-start .navbar-link::after, + .navbar.is-warning .navbar-end .navbar-link::after { + border-color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #ffd83e; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-dropdown a.navbar-item.is-active { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } } + .navbar.is-danger { + background-color: #a70c20; + color: #fff; } + .navbar.is-danger .navbar-brand > .navbar-item, + .navbar.is-danger .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, + .navbar.is-danger .navbar-brand .navbar-link:focus, + .navbar.is-danger .navbar-brand .navbar-link:hover, + .navbar.is-danger .navbar-brand .navbar-link.is-active { + background-color: #8f0a1b; + color: #fff; } + .navbar.is-danger .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-danger .navbar-burger { + color: #fff; } + @media screen and (min-width: 181.5px) { + .navbar.is-danger .navbar-start > .navbar-item, + .navbar.is-danger .navbar-start .navbar-link, + .navbar.is-danger .navbar-end > .navbar-item, + .navbar.is-danger .navbar-end .navbar-link { + color: #fff; } + .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, + .navbar.is-danger .navbar-start .navbar-link:focus, + .navbar.is-danger .navbar-start .navbar-link:hover, + .navbar.is-danger .navbar-start .navbar-link.is-active, + .navbar.is-danger .navbar-end > a.navbar-item:focus, + .navbar.is-danger .navbar-end > a.navbar-item:hover, + .navbar.is-danger .navbar-end > a.navbar-item.is-active, + .navbar.is-danger .navbar-end .navbar-link:focus, + .navbar.is-danger .navbar-end .navbar-link:hover, + .navbar.is-danger .navbar-end .navbar-link.is-active { + background-color: #8f0a1b; + color: #fff; } + .navbar.is-danger .navbar-start .navbar-link::after, + .navbar.is-danger .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link, + .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #8f0a1b; + color: #fff; } + .navbar.is-danger .navbar-dropdown a.navbar-item.is-active { + background-color: #a70c20; + color: #fff; } } + .navbar > .container { + align-items: stretch; + display: flex; + min-height: 3.25rem; + width: 100%; } + .navbar.has-shadow { + box-shadow: 0 2px 0 0 whitesmoke; } + .navbar.is-fixed-bottom, .navbar.is-fixed-top { + left: 0; + position: fixed; + right: 0; + z-index: 30; } + .navbar.is-fixed-bottom { + bottom: 0; } + .navbar.is-fixed-bottom.has-shadow { + box-shadow: 0 -2px 0 0 whitesmoke; } + .navbar.is-fixed-top { + top: 0; } html.has-navbar-fixed-top, body.has-navbar-fixed-top { - padding-top: var(--bulma-navbar-height); -} + padding-top: 3.25rem; } + html.has-navbar-fixed-bottom, body.has-navbar-fixed-bottom { - padding-bottom: var(--bulma-navbar-height); -} + padding-bottom: 3.25rem; } .navbar-brand, .navbar-tabs { align-items: stretch; display: flex; flex-shrink: 0; - min-height: var(--bulma-navbar-height); -} + min-height: 3.25rem; } + +.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover { + background-color: transparent; } .navbar-tabs { -webkit-overflow-scrolling: touch; max-width: 100vw; overflow-x: auto; - overflow-y: hidden; -} + overflow-y: hidden; } .navbar-burger { - align-items: center; - appearance: none; - background: none; - border: none; - border-radius: var(--bulma-burger-border-radius); - color: hsl(var(--bulma-burger-h), var(--bulma-burger-s), var(--bulma-burger-l)); + color: #4a4a4a; cursor: pointer; - display: inline-flex; - flex-direction: column; - flex-shrink: 0; - height: 2.5rem; - justify-content: center; - position: relative; - vertical-align: top; - width: 2.5rem; -} -.navbar-burger span { - background-color: currentColor; display: block; - height: var(--bulma-burger-item-height); - left: calc(50% - (var(--bulma-burger-item-width)) / 2); - position: absolute; - transform-origin: center; - transition-duration: var(--bulma-duration); - transition-property: background-color, color, opacity, transform; - transition-timing-function: var(--bulma-easing); - width: var(--bulma-burger-item-width); -} -.navbar-burger span:nth-child(1), .navbar-burger span:nth-child(2) { - top: calc(50% - (var(--bulma-burger-item-height)) / 2); -} -.navbar-burger span:nth-child(3) { - bottom: calc(50% + var(--bulma-burger-gap)); -} -.navbar-burger span:nth-child(4) { - top: calc(50% + var(--bulma-burger-gap)); -} -.navbar-burger:hover { - background-color: hsla(var(--bulma-burger-h), var(--bulma-burger-s), var(--bulma-burger-l), 0.1); -} -.navbar-burger:active { - background-color: hsla(var(--bulma-burger-h), var(--bulma-burger-s), var(--bulma-burger-l), 0.2); -} -.navbar-burger.is-active span:nth-child(1) { - transform: rotate(-45deg); -} -.navbar-burger.is-active span:nth-child(2) { - transform: rotate(45deg); -} -.navbar-burger.is-active span:nth-child(3), .navbar-burger.is-active span:nth-child(4) { - opacity: 0; -} -.navbar-burger { - align-self: center; - color: var(--bulma-navbar-burger-color); - margin-inline-start: auto; - margin-inline-end: 0.375rem; -} + height: 3.25rem; + position: relative; + width: 3.25rem; + margin-left: auto; } + .navbar-burger span { + background-color: currentColor; + display: block; + height: 1px; + left: calc(50% - 8px); + position: absolute; + transform-origin: center; + transition-duration: 86ms; + transition-property: background-color, opacity, transform; + transition-timing-function: ease-out; + width: 16px; } + .navbar-burger span:nth-child(1) { + top: calc(50% - 6px); } + .navbar-burger span:nth-child(2) { + top: calc(50% - 1px); } + .navbar-burger span:nth-child(3) { + top: calc(50% + 4px); } + .navbar-burger:hover { + background-color: rgba(0, 0, 0, 0.05); } + .navbar-burger.is-active span:nth-child(1) { + transform: translateY(5px) rotate(45deg); } + .navbar-burger.is-active span:nth-child(2) { + opacity: 0; } + .navbar-burger.is-active span:nth-child(3) { + transform: translateY(-5px) rotate(-45deg); } .navbar-menu { - display: none; -} + display: none; } .navbar-item, .navbar-link { - color: var(--bulma-navbar-item-color); + color: #4a4a4a; display: block; - gap: 0.75rem; line-height: 1.5; padding: 0.5rem 0.75rem; - position: relative; -} -.navbar-item .icon:only-child, -.navbar-link .icon:only-child { - margin-left: -0.25rem; - margin-right: -0.25rem; -} + position: relative; } + .navbar-item .icon:only-child, + .navbar-link .icon:only-child { + margin-left: -0.25rem; + margin-right: -0.25rem; } a.navbar-item, .navbar-link { - background-color: hsla(var(--bulma-navbar-h), var(--bulma-navbar-s), calc(var(--bulma-navbar-item-background-l) + var(--bulma-navbar-item-background-l-delta)), var(--bulma-navbar-item-background-a)); - cursor: pointer; -} -a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, -.navbar-link:focus, -.navbar-link:focus-within, -.navbar-link:hover { - --bulma-navbar-item-background-l-delta: var(--bulma-navbar-item-hover-background-l-delta); - --bulma-navbar-item-background-a: 1; -} -a.navbar-item:active, -.navbar-link:active { - --bulma-navbar-item-background-l-delta: var(--bulma-navbar-item-active-background-l-delta); - --bulma-navbar-item-background-a: 1; -} -a.navbar-item.is-active, a.navbar-item.is-selected, -.navbar-link.is-active, -.navbar-link.is-selected { - --bulma-navbar-h: var(--bulma-navbar-item-selected-h); - --bulma-navbar-s: var(--bulma-navbar-item-selected-s); - --bulma-navbar-l: var(--bulma-navbar-item-selected-l); - --bulma-navbar-item-background-l: var(--bulma-navbar-item-selected-background-l); - --bulma-navbar-item-background-a: 1; - --bulma-navbar-item-color-l: var(--bulma-navbar-item-selected-color-l); -} + cursor: pointer; } + a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active, + .navbar-link:focus, + .navbar-link:focus-within, + .navbar-link:hover, + .navbar-link.is-active { + background-color: #fafafa; + color: #4391E0; } .navbar-item { + display: block; flex-grow: 0; - flex-shrink: 0; -} -.navbar-item img, -.navbar-item svg { - max-height: var(--bulma-navbar-item-img-max-height); -} -.navbar-item.has-dropdown { - padding: 0; -} -.navbar-item.is-expanded { - flex-grow: 1; - flex-shrink: 1; -} -.navbar-item.is-tab { - border-bottom: 1px solid transparent; - min-height: var(--bulma-navbar-height); - padding-bottom: calc(0.5rem - 1px); -} -.navbar-item.is-tab:focus, .navbar-item.is-tab:hover { - background-color: var(--bulma-navbar-tab-hover-background-color); - border-bottom-color: var(--bulma-navbar-tab-hover-border-bottom-color); -} -.navbar-item.is-tab.is-active { - background-color: var(--bulma-navbar-tab-active-background-color); - border-bottom-color: var(--bulma-navbar-tab-active-border-bottom-color); - border-bottom-style: var(--bulma-navbar-tab-active-border-bottom-style); - border-bottom-width: var(--bulma-navbar-tab-active-border-bottom-width); - color: var(--bulma-navbar-tab-active-color); - padding-bottom: calc(0.5rem - var(--bulma-navbar-tab-active-border-bottom-width)); -} + flex-shrink: 0; } + .navbar-item img { + max-height: 1.75rem; } + .navbar-item.has-dropdown { + padding: 0; } + .navbar-item.is-expanded { + flex-grow: 1; + flex-shrink: 1; } + .navbar-item.is-tab { + border-bottom: 1px solid transparent; + min-height: 3.25rem; + padding-bottom: calc(0.5rem - 1px); } + .navbar-item.is-tab:focus, .navbar-item.is-tab:hover { + background-color: transparent; + border-bottom-color: #4391E0; } + .navbar-item.is-tab.is-active { + background-color: transparent; + border-bottom-color: #4391E0; + border-bottom-style: solid; + border-bottom-width: 3px; + color: #4391E0; + padding-bottom: calc(0.5rem - 3px); } .navbar-content { flex-grow: 1; - flex-shrink: 1; -} + flex-shrink: 1; } .navbar-link:not(.is-arrowless) { - padding-inline-end: 2.5em; -} -.navbar-link:not(.is-arrowless)::after { - border-color: var(--bulma-navbar-dropdown-arrow); - margin-top: -0.375em; - inset-inline-end: 1.125em; -} + padding-right: 2.5em; } + .navbar-link:not(.is-arrowless)::after { + border-color: #4391E0; + margin-top: -0.375em; + right: 1.125em; } .navbar-dropdown { font-size: 0.875rem; - padding-bottom: 0.75rem; - padding-top: 0.5rem; -} -.navbar-dropdown .navbar-item { - padding-left: 1.5rem; - padding-right: 1.5rem; -} -.navbar-dropdown .navbar-item:not(.is-active, .is-selected) { - background-color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), calc(var(--bulma-navbar-dropdown-item-background-l) + var(--bulma-navbar-item-background-l-delta))); - color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), var(--bulma-navbar-dropdown-item-color-l)); -} + padding-bottom: 0.5rem; + padding-top: 0.5rem; } + .navbar-dropdown .navbar-item { + padding-left: 1.5rem; + padding-right: 1.5rem; } .navbar-divider { - background-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), var(--bulma-navbar-divider-background-l)); + background-color: whitesmoke; border: none; display: none; - height: var(--bulma-navbar-divider-height); - margin: 0.5rem 0; -} + height: 2px; + margin: 0.5rem 0; } -@media screen and (max-width: 1023px) { +@media screen and (max-width: 180.5px) { .navbar > .container { - display: block; - } + display: block; } .navbar-brand .navbar-item, .navbar-tabs .navbar-item { align-items: center; - display: flex; - } + display: flex; } .navbar-link::after { - display: none; - } + display: none; } .navbar-menu { - background-color: var(--bulma-navbar-background-color); - box-shadow: 0 0.5em 1em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); - padding: 0.5rem 0; - } - .navbar-menu.is-active { - display: block; - } + background-color: white; + box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); + padding: 0.5rem 0; } + .navbar-menu.is-active { + display: block; } .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch { left: 0; position: fixed; right: 0; - z-index: var(--bulma-navbar-fixed-z); - } + z-index: 30; } .navbar.is-fixed-bottom-touch { - bottom: 0; - } - .navbar.is-fixed-bottom-touch.has-shadow { - box-shadow: 0 -0.125em 0.1875em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); - } + bottom: 0; } + .navbar.is-fixed-bottom-touch.has-shadow { + box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } .navbar.is-fixed-top-touch { - top: 0; - } + top: 0; } .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu { -webkit-overflow-scrolling: touch; - max-height: calc(100vh - var(--bulma-navbar-height)); - overflow: auto; - } + max-height: calc(100vh - 3.25rem); + overflow: auto; } html.has-navbar-fixed-top-touch, body.has-navbar-fixed-top-touch { - padding-top: var(--bulma-navbar-height); - } + padding-top: 3.25rem; } html.has-navbar-fixed-bottom-touch, body.has-navbar-fixed-bottom-touch { - padding-bottom: var(--bulma-navbar-height); - } -} -@media screen and (min-width: 1024px) { + padding-bottom: 3.25rem; } } + +@media screen and (min-width: 181.5px) { .navbar, .navbar-menu, .navbar-start, .navbar-end { align-items: stretch; - display: flex; - } + display: flex; } .navbar { - min-height: var(--bulma-navbar-height); - } - .navbar.is-spaced { - padding: var(--bulma-navbar-padding-vertical) var(--bulma-navbar-padding-horizontal); - } - .navbar.is-spaced .navbar-start, - .navbar.is-spaced .navbar-end { - align-items: center; - } - .navbar.is-spaced a.navbar-item, - .navbar.is-spaced .navbar-link { - border-radius: var(--bulma-radius); - } - .navbar.is-transparent { - --bulma-navbar-item-background-a: 0; - } - .navbar.is-transparent .navbar-dropdown a.navbar-item { - background-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), calc(var(--bulma-navbar-item-background-l) + var(--bulma-navbar-item-background-l-delta))); - } - .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active, .navbar.is-transparent .navbar-dropdown a.navbar-item.is-selected { - --bulma-navbar-h: var(--bulma-navbar-item-selected-h); - --bulma-navbar-s: var(--bulma-navbar-item-selected-s); - --bulma-navbar-l: var(--bulma-navbar-item-selected-l); - --bulma-navbar-item-background-l: var(--bulma-navbar-item-selected-background-l); - --bulma-navbar-item-color-l: var(--bulma-navbar-item-selected-color-l); - } + min-height: 3.25rem; } + .navbar.is-spaced { + padding: 1rem 2rem; } + .navbar.is-spaced .navbar-start, + .navbar.is-spaced .navbar-end { + align-items: center; } + .navbar.is-spaced a.navbar-item, + .navbar.is-spaced .navbar-link { + border-radius: 4px; } + .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active, + .navbar.is-transparent .navbar-link:focus, + .navbar.is-transparent .navbar-link:hover, + .navbar.is-transparent .navbar-link.is-active { + background-color: transparent !important; } + .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { + background-color: transparent !important; } + .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover { + background-color: whitesmoke; + color: #0a0a0a; } + .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active { + background-color: whitesmoke; + color: #4391E0; } .navbar-burger { - display: none; - } + display: none; } .navbar-item, .navbar-link { align-items: center; - display: flex; - } - .navbar-item.has-dropdown { - align-items: stretch; - } - .navbar-item.has-dropdown-up .navbar-link::after { - transform: rotate(135deg) translate(0.25em, -0.25em); - } - .navbar-item.has-dropdown-up .navbar-dropdown { - border-bottom-color: var(--bulma-navbar-dropdown-border-color); - border-bottom-style: var(--bulma-navbar-dropdown-border-style); - border-bottom-width: var(--bulma-navbar-dropdown-border-width); - border-radius: var(--bulma-navbar-dropdown-radius) var(--bulma-navbar-dropdown-radius) 0 0; - border-top: none; - bottom: 100%; - box-shadow: 0 -0.5em 0.5em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); - top: auto; - } - .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { - display: block; - } - .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { - opacity: 1; - pointer-events: auto; - transform: translateY(0); - } + display: flex; } + .navbar-item { + display: flex; } + .navbar-item.has-dropdown { + align-items: stretch; } + .navbar-item.has-dropdown-up .navbar-link::after { + transform: rotate(135deg) translate(0.25em, -0.25em); } + .navbar-item.has-dropdown-up .navbar-dropdown { + border-bottom: 2px solid #dbdbdb; + border-radius: 6px 6px 0 0; + border-top: none; + bottom: 100%; + box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); + top: auto; } + .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { + display: block; } + .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { + opacity: 1; + pointer-events: auto; + transform: translateY(0); } .navbar-menu { flex-grow: 1; - flex-shrink: 0; - } + flex-shrink: 0; } .navbar-start { justify-content: flex-start; - margin-inline-end: auto; - } + margin-right: auto; } .navbar-end { justify-content: flex-end; - margin-inline-start: auto; - } + margin-left: auto; } .navbar-dropdown { - background-color: var(--bulma-navbar-dropdown-background-color); - border-end-start-radius: var(--bulma-navbar-dropdown-radius); - border-end-end-radius: var(--bulma-navbar-dropdown-radius); - border-top-color: var(--bulma-navbar-dropdown-border-color); - border-top-style: var(--bulma-navbar-dropdown-border-style); - border-top-width: var(--bulma-navbar-dropdown-border-width); - box-shadow: 0 0.5em 0.5em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); + background-color: white; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-top: 2px solid #dbdbdb; + box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); display: none; font-size: 0.875rem; - inset-inline-start: 0; + left: 0; min-width: 100%; position: absolute; top: 100%; - z-index: var(--bulma-navbar-dropdown-z); - } - .navbar-dropdown .navbar-item { - padding: 0.375rem 1rem; - white-space: nowrap; - } - .navbar-dropdown a.navbar-item { - padding-inline-end: 3rem; - } - .navbar-dropdown a.navbar-item:not(.is-active, .is-selected) { - background-color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), calc(var(--bulma-navbar-dropdown-item-background-l) + var(--bulma-navbar-item-background-l-delta))); - color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), var(--bulma-navbar-dropdown-item-color-l)); - } - .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed { - border-radius: var(--bulma-navbar-dropdown-boxed-radius); - border-top: none; - box-shadow: var(--bulma-navbar-dropdown-boxed-shadow); - display: block; - opacity: 0; - pointer-events: none; - top: calc(100% + (var(--bulma-navbar-dropdown-offset))); - transform: translateY(-5px); - transition-duration: var(--bulma-duration); - transition-property: opacity, transform; - } - .navbar-dropdown.is-right { - left: auto; - right: 0; - } + z-index: 20; } + .navbar-dropdown .navbar-item { + padding: 0.375rem 1rem; + white-space: nowrap; } + .navbar-dropdown a.navbar-item { + padding-right: 3rem; } + .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover { + background-color: whitesmoke; + color: #0a0a0a; } + .navbar-dropdown a.navbar-item.is-active { + background-color: whitesmoke; + color: #4391E0; } + .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed { + border-radius: 6px; + border-top: none; + box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + display: block; + opacity: 0; + pointer-events: none; + top: calc(100% + (-4px)); + transform: translateY(-5px); + transition-duration: 86ms; + transition-property: opacity, transform; } + .navbar-dropdown.is-right { + left: auto; + right: 0; } .navbar-divider { - display: block; - } + display: block; } .navbar > .container .navbar-brand, .container > .navbar .navbar-brand { - margin-inline-start: -0.75rem; - } + margin-left: -.75rem; } .navbar > .container .navbar-menu, .container > .navbar .navbar-menu { - margin-inline-end: -0.75rem; - } + margin-right: -.75rem; } .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop { left: 0; position: fixed; right: 0; - z-index: var(--bulma-navbar-fixed-z); - } + z-index: 30; } .navbar.is-fixed-bottom-desktop { - bottom: 0; - } - .navbar.is-fixed-bottom-desktop.has-shadow { - box-shadow: 0 -0.125em 0.1875em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1); - } + bottom: 0; } + .navbar.is-fixed-bottom-desktop.has-shadow { + box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } .navbar.is-fixed-top-desktop { - top: 0; - } + top: 0; } html.has-navbar-fixed-top-desktop, body.has-navbar-fixed-top-desktop { - padding-top: var(--bulma-navbar-height); - } + padding-top: 3.25rem; } html.has-navbar-fixed-bottom-desktop, body.has-navbar-fixed-bottom-desktop { - padding-bottom: var(--bulma-navbar-height); - } + padding-bottom: 3.25rem; } html.has-spaced-navbar-fixed-top, body.has-spaced-navbar-fixed-top { - padding-top: calc(var(--bulma-navbar-height) + var(--bulma-navbar-padding-vertical) * 2); - } + padding-top: 5.25rem; } html.has-spaced-navbar-fixed-bottom, body.has-spaced-navbar-fixed-bottom { - padding-bottom: calc(var(--bulma-navbar-height) + var(--bulma-navbar-padding-vertical) * 2); - } -} + padding-bottom: 5.25rem; } + a.navbar-item.is-active, + .navbar-link.is-active { + color: #0a0a0a; } + a.navbar-item.is-active:not(:focus):not(:hover), + .navbar-link.is-active:not(:focus):not(:hover) { + background-color: transparent; } + .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #fafafa; } } + .hero.is-fullheight-with-navbar { - min-height: calc(100vh - var(--bulma-navbar-height)); -} + min-height: calc(100vh - 3.25rem); } .pagination { - --bulma-pagination-margin: -0.25rem; - --bulma-pagination-min-width: var(--bulma-control-height); - --bulma-pagination-item-h: var(--bulma-scheme-h); - --bulma-pagination-item-s: var(--bulma-scheme-s); - --bulma-pagination-item-l: var(--bulma-scheme-main-l); - --bulma-pagination-item-background-l-delta: 0%; - --bulma-pagination-item-hover-background-l-delta: var(--bulma-hover-background-l-delta); - --bulma-pagination-item-active-background-l-delta: var(--bulma-active-background-l-delta); - --bulma-pagination-item-border-style: solid; - --bulma-pagination-item-border-width: var(--bulma-control-border-width); - --bulma-pagination-item-border-l: var(--bulma-border-l); - --bulma-pagination-item-border-l-delta: 0%; - --bulma-pagination-item-hover-border-l-delta: var(--bulma-hover-border-l-delta); - --bulma-pagination-item-active-border-l-delta: var(--bulma-active-border-l-delta); - --bulma-pagination-item-focus-border-l-delta: var(--bulma-focus-border-l-delta); - --bulma-pagination-item-color-l: var(--bulma-text-strong-l); - --bulma-pagination-item-font-size: 1em; - --bulma-pagination-item-margin: 0.25rem; - --bulma-pagination-item-padding-left: 0.5em; - --bulma-pagination-item-padding-right: 0.5em; - --bulma-pagination-item-outer-shadow-h: 0; - --bulma-pagination-item-outer-shadow-s: 0%; - --bulma-pagination-item-outer-shadow-l: 20%; - --bulma-pagination-item-outer-shadow-a: 0.05; - --bulma-pagination-nav-padding-left: 0.75em; - --bulma-pagination-nav-padding-right: 0.75em; - --bulma-pagination-disabled-color: var(--bulma-text-weak); - --bulma-pagination-disabled-background-color: var(--bulma-border); - --bulma-pagination-disabled-border-color: var(--bulma-border); - --bulma-pagination-current-color: var(--bulma-link-invert); - --bulma-pagination-current-background-color: var(--bulma-link); - --bulma-pagination-current-border-color: var(--bulma-link); - --bulma-pagination-ellipsis-color: var(--bulma-text-weak); - --bulma-pagination-shadow-inset: inset 0 0.0625em 0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.2); - --bulma-pagination-selected-item-h: var(--bulma-link-h); - --bulma-pagination-selected-item-s: var(--bulma-link-s); - --bulma-pagination-selected-item-l: var(--bulma-link-l); - --bulma-pagination-selected-item-background-l: var(--bulma-link-l); - --bulma-pagination-selected-item-border-l: var(--bulma-link-l); - --bulma-pagination-selected-item-color-l: var(--bulma-link-invert-l); -} - -.pagination { - font-size: var(--bulma-size-normal); - margin: var(--bulma-pagination-margin); -} -.pagination.is-small { - font-size: var(--bulma-size-small); -} -.pagination.is-medium { - font-size: var(--bulma-size-medium); -} -.pagination.is-large { - font-size: var(--bulma-size-large); -} -.pagination.is-rounded .pagination-previous, -.pagination.is-rounded .pagination-next { - padding-left: 1em; - padding-right: 1em; - border-radius: var(--bulma-radius-rounded); -} -.pagination.is-rounded .pagination-link { - border-radius: var(--bulma-radius-rounded); -} + font-size: 1rem; + margin: -0.25rem; } + .pagination.is-small { + font-size: 0.75rem; } + .pagination.is-medium { + font-size: 1.25rem; } + .pagination.is-large { + font-size: 1.5rem; } + .pagination.is-rounded .pagination-previous, + .pagination.is-rounded .pagination-next { + padding-left: 1em; + padding-right: 1em; + border-radius: 290486px; } + .pagination.is-rounded .pagination-link { + border-radius: 290486px; } .pagination, .pagination-list { align-items: center; display: flex; justify-content: center; - text-align: center; -} + text-align: center; } .pagination-previous, .pagination-next, .pagination-link, .pagination-ellipsis { - color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), var(--bulma-pagination-item-color-l)); - font-size: var(--bulma-pagination-item-font-size); + font-size: 1em; justify-content: center; - margin: var(--bulma-pagination-item-margin); - padding-left: var(--bulma-pagination-item-padding-left); - padding-right: var(--bulma-pagination-item-padding-right); - text-align: center; -} + margin: 0.25rem; + padding-left: 0.5em; + padding-right: 0.5em; + text-align: center; } .pagination-previous, .pagination-next, .pagination-link { - background-color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), calc(var(--bulma-pagination-item-background-l) + var(--bulma-pagination-item-background-l-delta))); - border-color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), calc(var(--bulma-pagination-item-border-l) + var(--bulma-pagination-item-border-l-delta))); - border-style: var(--bulma-pagination-item-border-style); - border-width: var(--bulma-pagination-item-border-width); - box-shadow: 0px 0.0625em 0.125em hsla(var(--bulma-pagination-item-outer-shadow-h), var(--bulma-pagination-item-outer-shadow-s), var(--bulma-pagination-item-outer-shadow-l), var(--bulma-pagination-item-outer-shadow-a)), 0px 0.125em 0.25em hsla(var(--bulma-pagination-item-outer-shadow-h), var(--bulma-pagination-item-outer-shadow-s), var(--bulma-pagination-item-outer-shadow-l), var(--bulma-pagination-item-outer-shadow-a)); - color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), var(--bulma-pagination-item-color-l)); - min-width: var(--bulma-pagination-min-width); - transition-duration: var(--bulma-duration); - transition-property: background-color, border-color, box-shadow, color; -} -.pagination-previous:hover, -.pagination-next:hover, -.pagination-link:hover { - --bulma-pagination-item-background-l-delta: var(--bulma-pagination-item-hover-background-l-delta); - --bulma-pagination-item-border-l-delta: var(--bulma-pagination-item-hover-border-l-delta); -} -.pagination-previous:focus, -.pagination-next:focus, -.pagination-link:focus { - --bulma-pagination-item-background-l-delta: var(--bulma-pagination-item-hover-background-l-delta); - --bulma-pagination-item-border-l-delta: var(--bulma-pagination-item-hover-border-l-delta); -} -.pagination-previous:active, -.pagination-next:active, -.pagination-link:active { - box-shadow: var(--bulma-pagination-shadow-inset); -} -.pagination-previous[disabled], .pagination-previous.is-disabled, -.pagination-next[disabled], -.pagination-next.is-disabled, -.pagination-link[disabled], -.pagination-link.is-disabled { - background-color: var(--bulma-pagination-disabled-background-color); - border-color: var(--bulma-pagination-disabled-border-color); - box-shadow: none; - color: var(--bulma-pagination-disabled-color); - opacity: 0.5; -} + border-color: #dbdbdb; + color: #363636; + min-width: 2.25em; } + .pagination-previous:hover, + .pagination-next:hover, + .pagination-link:hover { + border-color: #b5b5b5; + color: #363636; } + .pagination-previous:focus, + .pagination-next:focus, + .pagination-link:focus { + border-color: #4391E0; } + .pagination-previous:active, + .pagination-next:active, + .pagination-link:active { + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); } + .pagination-previous[disabled], + .pagination-next[disabled], + .pagination-link[disabled] { + background-color: #dbdbdb; + border-color: #dbdbdb; + box-shadow: none; + color: #7a7a7a; + opacity: 0.5; } .pagination-previous, .pagination-next { - padding-left: var(--bulma-pagination-nav-padding-left); - padding-right: var(--bulma-pagination-nav-padding-right); - white-space: nowrap; -} + padding-left: 0.75em; + padding-right: 0.75em; + white-space: nowrap; } -.pagination-link.is-current, .pagination-link.is-selected { - --bulma-pagination-item-h: var(--bulma-pagination-selected-item-h); - --bulma-pagination-item-s: var(--bulma-pagination-selected-item-s); - --bulma-pagination-item-l: var(--bulma-pagination-selected-item-l); - --bulma-pagination-item-background-l: var(--bulma-pagination-selected-item-background-l); - --bulma-pagination-item-border-l: var(--bulma-pagination-selected-item-border-l); - --bulma-pagination-item-color-l: var(--bulma-pagination-selected-item-color-l); -} +.pagination-link.is-current { + background-color: #4391E0; + border-color: #4391E0; + color: #fff; } .pagination-ellipsis { - color: var(--bulma-pagination-ellipsis-color); - pointer-events: none; -} + color: #b5b5b5; + pointer-events: none; } .pagination-list { - flex-wrap: wrap; -} -.pagination-list li { - list-style: none; -} + flex-wrap: wrap; } @media screen and (max-width: 768px) { .pagination { - flex-wrap: wrap; - } + flex-wrap: wrap; } .pagination-previous, .pagination-next { flex-grow: 1; - flex-shrink: 1; - } + flex-shrink: 1; } .pagination-list li { flex-grow: 1; - flex-shrink: 1; - } -} + flex-shrink: 1; } } + @media screen and (min-width: 769px), print { .pagination-list { flex-grow: 1; flex-shrink: 1; justify-content: flex-start; - order: 1; - } - .pagination-previous, - .pagination-next, - .pagination-link, - .pagination-ellipsis { - margin-bottom: 0; - margin-top: 0; - } + order: 1; } .pagination-previous { - order: 2; - } + order: 2; } .pagination-next { - order: 3; - } + order: 3; } .pagination { - justify-content: space-between; - margin-bottom: 0; - margin-top: 0; - } - .pagination.is-centered .pagination-previous { - order: 1; - } - .pagination.is-centered .pagination-list { - justify-content: center; - order: 2; - } - .pagination.is-centered .pagination-next { - order: 3; - } - .pagination.is-right .pagination-previous { - order: 1; - } - .pagination.is-right .pagination-next { - order: 2; - } - .pagination.is-right .pagination-list { - justify-content: flex-end; - order: 3; - } -} -.panel { - --bulma-panel-margin: var(--bulma-block-spacing); - --bulma-panel-item-border: 1px solid var(--bulma-border-weak); - --bulma-panel-radius: var(--bulma-radius-large); - --bulma-panel-shadow: var(--bulma-shadow); - --bulma-panel-heading-line-height: 1.25; - --bulma-panel-heading-padding: 1em 1.25em; - --bulma-panel-heading-radius: var(--bulma-radius); - --bulma-panel-heading-size: 1.25em; - --bulma-panel-heading-weight: var(--bulma-weight-bold); - --bulma-panel-tabs-font-size: 1em; - --bulma-panel-tab-border-bottom-color: var(--bulma-border); - --bulma-panel-tab-border-bottom-style: solid; - --bulma-panel-tab-border-bottom-width: 1px; - --bulma-panel-tab-active-color: var(--bulma-link-active); - --bulma-panel-list-item-color: var(--bulma-text); - --bulma-panel-list-item-hover-color: var(--bulma-link); - --bulma-panel-block-color: var(--bulma-text-strong); - --bulma-panel-block-hover-background-color: var(--bulma-background); - --bulma-panel-block-active-border-left-color: var(--bulma-link); - --bulma-panel-block-active-color: var(--bulma-link-active); - --bulma-panel-block-active-icon-color: var(--bulma-link); - --bulma-panel-icon-color: var(--bulma-text-weak); -} + justify-content: space-between; } + .pagination.is-centered .pagination-previous { + order: 1; } + .pagination.is-centered .pagination-list { + justify-content: center; + order: 2; } + .pagination.is-centered .pagination-next { + order: 3; } + .pagination.is-right .pagination-previous { + order: 1; } + .pagination.is-right .pagination-next { + order: 2; } + .pagination.is-right .pagination-list { + justify-content: flex-end; + order: 3; } } .panel { - --bulma-panel-h: var(--bulma-scheme-h); - --bulma-panel-s: var(--bulma-scheme-s); - --bulma-panel-color-l: var(--bulma-text-l); - --bulma-panel-heading-background-l: var(--bulma-text-l); - --bulma-panel-heading-color-l: var(--bulma-text-invert-l); - border-radius: var(--bulma-panel-radius); - box-shadow: var(--bulma-panel-shadow); - font-size: var(--bulma-size-normal); -} -.panel:not(:last-child) { - margin-bottom: var(--bulma-panel-margin); -} -.panel.is-white { - --bulma-panel-h: var(--bulma-white-h); - --bulma-panel-s: var(--bulma-white-s); - --bulma-panel-color-l: var(--bulma-white-l); - --bulma-panel-heading-background-l: var(--bulma-white-l); - --bulma-panel-heading-color-l: var(--bulma-white-invert-l); -} -.panel.is-black { - --bulma-panel-h: var(--bulma-black-h); - --bulma-panel-s: var(--bulma-black-s); - --bulma-panel-color-l: var(--bulma-black-l); - --bulma-panel-heading-background-l: var(--bulma-black-l); - --bulma-panel-heading-color-l: var(--bulma-black-invert-l); -} -.panel.is-light { - --bulma-panel-h: var(--bulma-light-h); - --bulma-panel-s: var(--bulma-light-s); - --bulma-panel-color-l: var(--bulma-light-l); - --bulma-panel-heading-background-l: var(--bulma-light-l); - --bulma-panel-heading-color-l: var(--bulma-light-invert-l); -} -.panel.is-dark { - --bulma-panel-h: var(--bulma-dark-h); - --bulma-panel-s: var(--bulma-dark-s); - --bulma-panel-color-l: var(--bulma-dark-l); - --bulma-panel-heading-background-l: var(--bulma-dark-l); - --bulma-panel-heading-color-l: var(--bulma-dark-invert-l); -} -.panel.is-text { - --bulma-panel-h: var(--bulma-text-h); - --bulma-panel-s: var(--bulma-text-s); - --bulma-panel-color-l: var(--bulma-text-l); - --bulma-panel-heading-background-l: var(--bulma-text-l); - --bulma-panel-heading-color-l: var(--bulma-text-invert-l); -} -.panel.is-primary { - --bulma-panel-h: var(--bulma-primary-h); - --bulma-panel-s: var(--bulma-primary-s); - --bulma-panel-color-l: var(--bulma-primary-l); - --bulma-panel-heading-background-l: var(--bulma-primary-l); - --bulma-panel-heading-color-l: var(--bulma-primary-invert-l); -} -.panel.is-link { - --bulma-panel-h: var(--bulma-link-h); - --bulma-panel-s: var(--bulma-link-s); - --bulma-panel-color-l: var(--bulma-link-l); - --bulma-panel-heading-background-l: var(--bulma-link-l); - --bulma-panel-heading-color-l: var(--bulma-link-invert-l); -} -.panel.is-info { - --bulma-panel-h: var(--bulma-info-h); - --bulma-panel-s: var(--bulma-info-s); - --bulma-panel-color-l: var(--bulma-info-l); - --bulma-panel-heading-background-l: var(--bulma-info-l); - --bulma-panel-heading-color-l: var(--bulma-info-invert-l); -} -.panel.is-success { - --bulma-panel-h: var(--bulma-success-h); - --bulma-panel-s: var(--bulma-success-s); - --bulma-panel-color-l: var(--bulma-success-l); - --bulma-panel-heading-background-l: var(--bulma-success-l); - --bulma-panel-heading-color-l: var(--bulma-success-invert-l); -} -.panel.is-warning { - --bulma-panel-h: var(--bulma-warning-h); - --bulma-panel-s: var(--bulma-warning-s); - --bulma-panel-color-l: var(--bulma-warning-l); - --bulma-panel-heading-background-l: var(--bulma-warning-l); - --bulma-panel-heading-color-l: var(--bulma-warning-invert-l); -} -.panel.is-danger { - --bulma-panel-h: var(--bulma-danger-h); - --bulma-panel-s: var(--bulma-danger-s); - --bulma-panel-color-l: var(--bulma-danger-l); - --bulma-panel-heading-background-l: var(--bulma-danger-l); - --bulma-panel-heading-color-l: var(--bulma-danger-invert-l); -} + font-size: 1rem; } + .panel:not(:last-child) { + margin-bottom: 1.5rem; } -.panel-tabs:not(:last-child), -.panel-block:not(:last-child) { - border-bottom: var(--bulma-panel-item-border); -} +.panel-heading, +.panel-tabs, +.panel-block { + border-bottom: 1px solid #dbdbdb; + border-left: 1px solid #dbdbdb; + border-right: 1px solid #dbdbdb; } + .panel-heading:first-child, + .panel-tabs:first-child, + .panel-block:first-child { + border-top: 1px solid #dbdbdb; } .panel-heading { - background-color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-heading-background-l)); - border-radius: var(--bulma-panel-radius) var(--bulma-panel-radius) 0 0; - color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-heading-color-l)); - font-size: var(--bulma-panel-heading-size); - font-weight: var(--bulma-panel-heading-weight); - line-height: var(--bulma-panel-heading-line-height); - padding: var(--bulma-panel-heading-padding); -} + background-color: whitesmoke; + border-radius: 4px 4px 0 0; + color: #363636; + font-size: 1.25em; + font-weight: 300; + line-height: 1.25; + padding: 0.5em 0.75em; } .panel-tabs { align-items: flex-end; display: flex; - font-size: var(--bulma-panel-tabs-font-size); - justify-content: center; -} -.panel-tabs a { - border-bottom-color: var(--bulma-panel-tab-border-bottom-color); - border-bottom-style: var(--bulma-panel-tab-border-bottom-style); - border-bottom-width: var(--bulma-panel-tab-border-bottom-width); - margin-bottom: calc(-1 * 1px); - padding: 0.75em; -} -.panel-tabs a.is-active { - border-bottom-color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-color-l)); - color: var(--bulma-panel-tab-active-color); -} + font-size: 0.875em; + justify-content: center; } + .panel-tabs a { + border-bottom: 1px solid #dbdbdb; + margin-bottom: -1px; + padding: 0.5em; } + .panel-tabs a.is-active { + border-bottom-color: #4a4a4a; + color: #363636; } .panel-list a { - color: var(--bulma-panel-list-item-color); -} -.panel-list a:hover { - color: var(--bulma-panel-list-item-hover-color); -} + color: #4a4a4a; } + .panel-list a:hover { + color: #4391E0; } .panel-block { align-items: center; - color: var(--bulma-panel-block-color); + color: #363636; display: flex; justify-content: flex-start; - padding: 0.75em 1em; -} -.panel-block input[type=checkbox] { - margin-inline-end: 0.75em; -} -.panel-block > .control { - flex-grow: 1; - flex-shrink: 1; - width: 100%; -} -.panel-block.is-wrapped { - flex-wrap: wrap; -} -.panel-block.is-active { - border-left-color: var(--bulma-panel-block-active-border-left-color); - color: var(--bulma-panel-block-active-color); -} -.panel-block.is-active .panel-icon { - color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-color-l)); -} -.panel-block:last-child { - border-end-start-radius: var(--bulma-panel-radius); - border-end-end-radius: var(--bulma-panel-radius); -} + padding: 0.5em 0.75em; } + .panel-block input[type="checkbox"] { + margin-right: 0.75em; } + .panel-block > .control { + flex-grow: 1; + flex-shrink: 1; + width: 100%; } + .panel-block.is-wrapped { + flex-wrap: wrap; } + .panel-block.is-active { + border-left-color: #4391E0; + color: #363636; } + .panel-block.is-active .panel-icon { + color: #4391E0; } a.panel-block, label.panel-block { - cursor: pointer; -} -a.panel-block:hover, -label.panel-block:hover { - background-color: var(--bulma-panel-block-hover-background-color); -} + cursor: pointer; } + a.panel-block:hover, + label.panel-block:hover { + background-color: whitesmoke; } .panel-icon { display: inline-block; - font-size: 1em; + font-size: 14px; height: 1em; line-height: 1em; text-align: center; vertical-align: top; width: 1em; - color: var(--bulma-panel-icon-color); - margin-inline-end: 0.75em; -} -.panel-icon .fa { - font-size: inherit; - line-height: inherit; -} - -.tabs { - --bulma-tabs-border-bottom-color: var(--bulma-border); - --bulma-tabs-border-bottom-style: solid; - --bulma-tabs-border-bottom-width: 1px; - --bulma-tabs-link-color: var(--bulma-text); - --bulma-tabs-link-hover-border-bottom-color: var(--bulma-text-strong); - --bulma-tabs-link-hover-color: var(--bulma-text-strong); - --bulma-tabs-link-active-border-bottom-color: var(--bulma-link-text); - --bulma-tabs-link-active-color: var(--bulma-link-text); - --bulma-tabs-link-padding: 0.5em 1em; - --bulma-tabs-boxed-link-radius: var(--bulma-radius); - --bulma-tabs-boxed-link-hover-background-color: var(--bulma-background); - --bulma-tabs-boxed-link-hover-border-bottom-color: var(--bulma-border); - --bulma-tabs-boxed-link-active-background-color: var(--bulma-scheme-main); - --bulma-tabs-boxed-link-active-border-color: var(--bulma-border); - --bulma-tabs-boxed-link-active-border-bottom-color: transparent; - --bulma-tabs-toggle-link-border-color: var(--bulma-border); - --bulma-tabs-toggle-link-border-style: solid; - --bulma-tabs-toggle-link-border-width: 1px; - --bulma-tabs-toggle-link-hover-background-color: var(--bulma-background); - --bulma-tabs-toggle-link-hover-border-color: var(--bulma-border-hover); - --bulma-tabs-toggle-link-radius: var(--bulma-radius); - --bulma-tabs-toggle-link-active-background-color: var(--bulma-link); - --bulma-tabs-toggle-link-active-border-color: var(--bulma-link); - --bulma-tabs-toggle-link-active-color: var(--bulma-link-invert); -} + color: #7a7a7a; + margin-right: 0.75em; } + .panel-icon .fa { + font-size: inherit; + line-height: inherit; } .tabs { -webkit-overflow-scrolling: touch; align-items: stretch; display: flex; - font-size: var(--bulma-size-normal); + font-size: 1rem; justify-content: space-between; overflow: hidden; overflow-x: auto; - white-space: nowrap; -} -.tabs a { - align-items: center; - border-bottom-color: var(--bulma-tabs-border-bottom-color); - border-bottom-style: var(--bulma-tabs-border-bottom-style); - border-bottom-width: var(--bulma-tabs-border-bottom-width); - color: var(--bulma-tabs-link-color); - display: flex; - justify-content: center; - margin-bottom: calc(-1 * var(--bulma-tabs-border-bottom-width)); - padding: var(--bulma-tabs-link-padding); - transition-duration: var(--bulma-duration); - transition-property: background-color, border-color, color; - vertical-align: top; -} -.tabs a:hover { - border-bottom-color: var(--bulma-tabs-link-hover-border-bottom-color); - color: var(--bulma-tabs-link-hover-color); -} -.tabs li { - display: block; -} -.tabs li.is-active a { - border-bottom-color: var(--bulma-tabs-link-active-border-bottom-color); - color: var(--bulma-tabs-link-active-color); -} -.tabs ul { - align-items: center; - border-bottom-color: var(--bulma-tabs-border-bottom-color); - border-bottom-style: var(--bulma-tabs-border-bottom-style); - border-bottom-width: var(--bulma-tabs-border-bottom-width); - display: flex; - flex-grow: 1; - flex-shrink: 0; - justify-content: flex-start; -} -.tabs ul.is-left { - padding-right: 0.75em; -} -.tabs ul.is-center { - flex: none; - justify-content: center; - padding-left: 0.75em; - padding-right: 0.75em; -} -.tabs ul.is-right { - justify-content: flex-end; - padding-left: 0.75em; -} -.tabs .icon:first-child { - margin-inline-end: 0.5em; -} -.tabs .icon:last-child { - margin-inline-start: 0.5em; -} -.tabs.is-centered ul { - justify-content: center; -} -.tabs.is-right ul { - justify-content: flex-end; -} -.tabs.is-boxed a { - border: 1px solid transparent; - border-start-start-radius: var(--bulma-tabs-boxed-link-radius); - border-start-end-radius: var(--bulma-tabs-boxed-link-radius); -} -.tabs.is-boxed a:hover { - background-color: var(--bulma-tabs-boxed-link-hover-background-color); - border-bottom-color: var(--bulma-tabs-boxed-link-hover-border-bottom-color); -} -.tabs.is-boxed li.is-active a { - background-color: var(--bulma-tabs-boxed-link-active-background-color); - border-color: var(--bulma-tabs-boxed-link-active-border-color); - border-bottom-color: var(--bulma-tabs-boxed-link-active-border-bottom-color) !important; -} -.tabs.is-fullwidth li { - flex-grow: 1; - flex-shrink: 0; -} -.tabs.is-toggle a { - border-color: var(--bulma-tabs-toggle-link-border-color); - border-style: var(--bulma-tabs-toggle-link-border-style); - border-width: var(--bulma-tabs-toggle-link-border-width); - margin-bottom: 0; - position: relative; -} -.tabs.is-toggle a:hover { - background-color: var(--bulma-tabs-toggle-link-hover-background-color); - border-color: var(--bulma-tabs-toggle-link-hover-border-color); - z-index: 2; -} -.tabs.is-toggle li + li { - margin-inline-start: calc(-1 * var(--bulma-tabs-toggle-link-border-width)); -} -.tabs.is-toggle li:first-child a { - border-start-start-radius: var(--bulma-tabs-toggle-link-radius); - border-end-start-radius: var(--bulma-tabs-toggle-link-radius); -} -.tabs.is-toggle li:last-child a { - border-start-end-radius: var(--bulma-tabs-toggle-link-radius); - border-end-end-radius: var(--bulma-tabs-toggle-link-radius); -} -.tabs.is-toggle li.is-active a { - background-color: var(--bulma-tabs-toggle-link-active-background-color); - border-color: var(--bulma-tabs-toggle-link-active-border-color); - color: var(--bulma-tabs-toggle-link-active-color); - z-index: 1; -} -.tabs.is-toggle ul { - border-bottom: none; -} -.tabs.is-toggle.is-toggle-rounded li:first-child a { - border-start-start-radius: var(--bulma-radius-rounded); - border-end-start-radius: var(--bulma-radius-rounded); - padding-inline-start: 1.25em; -} -.tabs.is-toggle.is-toggle-rounded li:last-child a { - border-start-end-radius: var(--bulma-radius-rounded); - border-end-end-radius: var(--bulma-radius-rounded); - padding-inline-end: 1.25em; -} -.tabs.is-small { - font-size: var(--bulma-size-small); -} -.tabs.is-medium { - font-size: var(--bulma-size-medium); -} -.tabs.is-large { - font-size: var(--bulma-size-large); -} + white-space: nowrap; } + .tabs a { + align-items: center; + border-bottom-color: #dbdbdb; + border-bottom-style: solid; + border-bottom-width: 1px; + color: #4a4a4a; + display: flex; + justify-content: center; + margin-bottom: -1px; + padding: 0.5em 1em; + vertical-align: top; } + .tabs a:hover { + border-bottom-color: #363636; + color: #363636; } + .tabs li { + display: block; } + .tabs li.is-active a { + border-bottom-color: #4391E0; + color: #4391E0; } + .tabs ul { + align-items: center; + border-bottom-color: #dbdbdb; + border-bottom-style: solid; + border-bottom-width: 1px; + display: flex; + flex-grow: 1; + flex-shrink: 0; + justify-content: flex-start; } + .tabs ul.is-left { + padding-right: 0.75em; } + .tabs ul.is-center { + flex: none; + justify-content: center; + padding-left: 0.75em; + padding-right: 0.75em; } + .tabs ul.is-right { + justify-content: flex-end; + padding-left: 0.75em; } + .tabs .icon:first-child { + margin-right: 0.5em; } + .tabs .icon:last-child { + margin-left: 0.5em; } + .tabs.is-centered ul { + justify-content: center; } + .tabs.is-right ul { + justify-content: flex-end; } + .tabs.is-boxed a { + border: 1px solid transparent; + border-radius: 4px 4px 0 0; } + .tabs.is-boxed a:hover { + background-color: whitesmoke; + border-bottom-color: #dbdbdb; } + .tabs.is-boxed li.is-active a { + background-color: white; + border-color: #dbdbdb; + border-bottom-color: transparent !important; } + .tabs.is-fullwidth li { + flex-grow: 1; + flex-shrink: 0; } + .tabs.is-toggle a { + border-color: #dbdbdb; + border-style: solid; + border-width: 1px; + margin-bottom: 0; + position: relative; } + .tabs.is-toggle a:hover { + background-color: whitesmoke; + border-color: #b5b5b5; + z-index: 2; } + .tabs.is-toggle li + li { + margin-left: -1px; } + .tabs.is-toggle li:first-child a { + border-radius: 4px 0 0 4px; } + .tabs.is-toggle li:last-child a { + border-radius: 0 4px 4px 0; } + .tabs.is-toggle li.is-active a { + background-color: #4391E0; + border-color: #4391E0; + color: #fff; + z-index: 1; } + .tabs.is-toggle ul { + border-bottom: none; } + .tabs.is-toggle.is-toggle-rounded li:first-child a { + border-bottom-left-radius: 290486px; + border-top-left-radius: 290486px; + padding-left: 1.25em; } + .tabs.is-toggle.is-toggle-rounded li:last-child a { + border-bottom-right-radius: 290486px; + border-top-right-radius: 290486px; + padding-right: 1.25em; } + .tabs.is-small { + font-size: 0.75rem; } + .tabs.is-medium { + font-size: 1.25rem; } + .tabs.is-large { + font-size: 1.5rem; } /** * Extend or override Bulma's components, @@ -5784,65 +5280,12 @@ label.panel-block:hover { * See https://gitlab.com/drutopia/octavia/issues/52 */ .navbar-item, .navbar-link { - padding-left: 0.75rem; - padding-right: 0.75rem; -} -@media screen and (min-width: 1216px) { - .navbar-item, .navbar-link { - padding-left: 1rem; - padding-right: 1rem; - } -} - -.geo-logo-name { - display: flex !important; - overflow: hidden; - width: 100%; -} -.geo-logo-name .logo, .geo-logo-name .sitename { - display: table-cell; -} -.geo-logo-name .logo a { - display: block; - width: 199px; -} -@media screen and (min-width: 769px) { - .geo-logo-name { - width: fit-content; - } -} -@media screen and (max-width: 362px) { - .geo-logo-name { - justify-content: flex-end; - } -} - -@media screen and (max-width: 1023px) { - .search-bar { - display: none !important; - } -} -.search-icon { - padding-right: 1rem; -} - -#navbar-menu { - display: flex; - flex-wrap: wrap; -} -@media screen and (max-width: 768px) { - #navbar-menu { - width: 100%; - justify-content: space-around; - } -} -@media screen and (min-width: 1024px) { - #navbar-menu { - flex-wrap: nowrap; - margin-right: -1rem; - } -} - + padding-left: .75rem; + padding-right: .75rem; } + @media screen and (min-width: 1216px) { + .navbar-item, .navbar-link { + padding-left: 1rem; + padding-right: 1rem; } } /* Featured images on article pages */ .featured-image figure.image { width: 100vw; @@ -5852,21 +5295,16 @@ label.panel-block:hover { margin-left: -50vw; margin-right: -50vw; max-height: 27rem; - overflow-y: hidden; -} -.featured-image figure.image img { - width: 100%; -} -@media screen and (min-width: 1216px) { - .featured-image figure.image { - max-height: 36rem; - } -} - + overflow-y: hidden; } + .featured-image figure.image img { + width: 100%; } + @media screen and (min-width: 1216px) { + .featured-image figure.image { + max-height: 36rem; } } /* Hero image in hero block */ .footer .paragraph { - margin-bottom: 0; -} + margin-bottom: 0; } + .footer .has-background-image.hero.is-medium { background-color: black; width: 100vw; @@ -5875,60 +5313,43 @@ label.panel-block:hover { right: 50%; margin-left: -50vw; margin-right: -50vw; - height: 200px; -} -@media screen and (min-width: 769px) { - .footer .has-background-image.hero.is-medium { - height: 400px; - } -} -.footer .has-background-image.hero.is-medium img { - opacity: 0.7; -} -.footer .has-background-image.hero.is-medium .hero-body { - padding: 3rem 1.5rem; -} -@media screen and (min-width: 769px) { + height: 200px; } + @media screen and (min-width: 769px) { + .footer .has-background-image.hero.is-medium { + height: 400px; } } + .footer .has-background-image.hero.is-medium img { + opacity: .7; } .footer .has-background-image.hero.is-medium .hero-body { - padding-top: 9rem; - padding-bottom: 7rem; - } -} - + padding: 3rem 1.5rem; } + @media screen and (min-width: 769px) { + .footer .has-background-image.hero.is-medium .hero-body { + padding-top: 9rem; + padding-bottom: 7rem; } } .has-background-image.hero.is-medium img { height: 200px; max-height: 400px; object-fit: cover; - position: absolute; -} -@media screen and (min-width: 769px) { - .has-background-image.hero.is-medium img { - height: auto; - } -} + position: absolute; } + @media screen and (min-width: 769px) { + .has-background-image.hero.is-medium img { + height: auto; } } .has-background-image.hero.is-medium .hero-body { - padding: 5.5rem 1rem; -} -@media screen and (min-width: 769px) { - .has-background-image.hero.is-medium .hero-body { - padding-top: 12rem; - padding-bottom: 12rem; - } -} -.has-background-image.hero.is-medium .hero-body .container.is-fluid { - margin-left: 32px; - margin-right: 32px; -} + padding: 5.5rem 1rem; } + @media screen and (min-width: 769px) { + .has-background-image.hero.is-medium .hero-body { + padding-top: 12rem; + padding-bottom: 12rem; } } + .has-background-image.hero.is-medium .hero-body .container.is-fluid { + margin-left: 32px; + margin-right: 32px; } /* Slim down section vertical padding a bit.*/ .section { - padding: 0.5rem 1.5rem 1.5rem; -} + padding: 0.5rem 1.5rem 1.5rem; } /* Give titles, from which we removed the Hero classes, the same padding as sections. */ .block-page-title-block { - padding: 1rem 1.5rem; -} + padding: 1rem 1.5rem; } /** * Give enough of a background around text in the footer that it is legible on @@ -5945,5433 +5366,1749 @@ label.panel-block:hover { margin-bottom: 0.4rem; text-align: right; } - */ -} -.footer .views-field .field-content { - background-color: rgba(248, 248, 248, 0.9); - padding: 0.2em; - border-radius: 0.3em; -} + */ } + .footer .views-field .field-content { + background-color: rgba(248, 248, 248, 0.9); + padding: 0.2em; + border-radius: 0.3em; } .page-title .title > span { background-color: rgba(248, 248, 248, 0.66); padding: 0.4em 0.3em 0.3em 0.3em; border-radius: 0.4em; - line-height: 1.8; -} + line-height: 1.8; } .block--footer_menus { background-color: rgba(248, 248, 248, 0.9); padding: 0.2em; - border-radius: 0.3em; -} + border-radius: 0.3em; } @media screen and (max-width: 768px) { .comment-section article { display: block; - padding-bottom: 0; - } + padding-bottom: 0; } .comment-section .content p:not(:last-child) { - margin-bottom: 0; - } -} -/* Bulma Grid */ -:root { - --bulma-column-gap: 0.75rem; -} + margin-bottom: 0; } } .column { display: block; flex-basis: 0; flex-grow: 1; flex-shrink: 1; - padding: var(--bulma-column-gap); -} -.columns.is-mobile > .column.is-narrow { - flex: none; - width: unset; -} -.columns.is-mobile > .column.is-full { - flex: none; - width: 100%; -} -.columns.is-mobile > .column.is-three-quarters { - flex: none; - width: 75%; -} -.columns.is-mobile > .column.is-two-thirds { - flex: none; - width: 66.6666%; -} -.columns.is-mobile > .column.is-half { - flex: none; - width: 50%; -} -.columns.is-mobile > .column.is-one-third { - flex: none; - width: 33.3333%; -} -.columns.is-mobile > .column.is-one-quarter { - flex: none; - width: 25%; -} -.columns.is-mobile > .column.is-one-fifth { - flex: none; - width: 20%; -} -.columns.is-mobile > .column.is-two-fifths { - flex: none; - width: 40%; -} -.columns.is-mobile > .column.is-three-fifths { - flex: none; - width: 60%; -} -.columns.is-mobile > .column.is-four-fifths { - flex: none; - width: 80%; -} -.columns.is-mobile > .column.is-offset-three-quarters { - margin-inline-start: 75%; -} -.columns.is-mobile > .column.is-offset-two-thirds { - margin-inline-start: 66.6666%; -} -.columns.is-mobile > .column.is-offset-half { - margin-inline-start: 50%; -} -.columns.is-mobile > .column.is-offset-one-third { - margin-inline-start: 0.3333%; -} -.columns.is-mobile > .column.is-offset-one-quarter { - margin-inline-start: 25%; -} -.columns.is-mobile > .column.is-offset-one-fifth { - margin-inline-start: 20%; -} -.columns.is-mobile > .column.is-offset-two-fifths { - margin-inline-start: 40%; -} -.columns.is-mobile > .column.is-offset-three-fifths { - margin-inline-start: 60%; -} -.columns.is-mobile > .column.is-offset-four-fifths { - margin-inline-start: 80%; -} -.columns.is-mobile > .column.is-0 { - flex: none; - width: 0%; -} -.columns.is-mobile > .column.is-offset-0 { - margin-inline-start: 0%; -} -.columns.is-mobile > .column.is-1 { - flex: none; - width: 8.3333333333%; -} -.columns.is-mobile > .column.is-offset-1 { - margin-inline-start: 8.3333333333%; -} -.columns.is-mobile > .column.is-2 { - flex: none; - width: 16.6666666667%; -} -.columns.is-mobile > .column.is-offset-2 { - margin-inline-start: 16.6666666667%; -} -.columns.is-mobile > .column.is-3 { - flex: none; - width: 25%; -} -.columns.is-mobile > .column.is-offset-3 { - margin-inline-start: 25%; -} -.columns.is-mobile > .column.is-4 { - flex: none; - width: 33.3333333333%; -} -.columns.is-mobile > .column.is-offset-4 { - margin-inline-start: 33.3333333333%; -} -.columns.is-mobile > .column.is-5 { - flex: none; - width: 41.6666666667%; -} -.columns.is-mobile > .column.is-offset-5 { - margin-inline-start: 41.6666666667%; -} -.columns.is-mobile > .column.is-6 { - flex: none; - width: 50%; -} -.columns.is-mobile > .column.is-offset-6 { - margin-inline-start: 50%; -} -.columns.is-mobile > .column.is-7 { - flex: none; - width: 58.3333333333%; -} -.columns.is-mobile > .column.is-offset-7 { - margin-inline-start: 58.3333333333%; -} -.columns.is-mobile > .column.is-8 { - flex: none; - width: 66.6666666667%; -} -.columns.is-mobile > .column.is-offset-8 { - margin-inline-start: 66.6666666667%; -} -.columns.is-mobile > .column.is-9 { - flex: none; - width: 75%; -} -.columns.is-mobile > .column.is-offset-9 { - margin-inline-start: 75%; -} -.columns.is-mobile > .column.is-10 { - flex: none; - width: 83.3333333333%; -} -.columns.is-mobile > .column.is-offset-10 { - margin-inline-start: 83.3333333333%; -} -.columns.is-mobile > .column.is-11 { - flex: none; - width: 91.6666666667%; -} -.columns.is-mobile > .column.is-offset-11 { - margin-inline-start: 91.6666666667%; -} -.columns.is-mobile > .column.is-12 { - flex: none; - width: 100%; -} -.columns.is-mobile > .column.is-offset-12 { - margin-inline-start: 100%; -} -@media screen and (max-width: 768px) { - .column.is-narrow-mobile { - flex: none; - width: unset; - } - .column.is-full-mobile { - flex: none; - width: 100%; - } - .column.is-three-quarters-mobile { - flex: none; - width: 75%; - } - .column.is-two-thirds-mobile { - flex: none; - width: 66.6666%; - } - .column.is-half-mobile { - flex: none; - width: 50%; - } - .column.is-one-third-mobile { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-mobile { - flex: none; - width: 25%; - } - .column.is-one-fifth-mobile { - flex: none; - width: 20%; - } - .column.is-two-fifths-mobile { - flex: none; - width: 40%; - } - .column.is-three-fifths-mobile { - flex: none; - width: 60%; - } - .column.is-four-fifths-mobile { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-mobile { - margin-inline-start: 75%; - } - .column.is-offset-two-thirds-mobile { - margin-inline-start: 66.6666%; - } - .column.is-offset-half-mobile { - margin-inline-start: 50%; - } - .column.is-offset-one-third-mobile { - margin-inline-start: 0.3333%; - } - .column.is-offset-one-quarter-mobile { - margin-inline-start: 25%; - } - .column.is-offset-one-fifth-mobile { - margin-inline-start: 20%; - } - .column.is-offset-two-fifths-mobile { - margin-inline-start: 40%; - } - .column.is-offset-three-fifths-mobile { - margin-inline-start: 60%; - } - .column.is-offset-four-fifths-mobile { - margin-inline-start: 80%; - } - .column.is-0-mobile { - flex: none; - width: 0%; - } - .column.is-offset-0-mobile { - margin-inline-start: 0%; - } - .column.is-1-mobile { - flex: none; - width: 8.3333333333%; - } - .column.is-offset-1-mobile { - margin-inline-start: 8.3333333333%; - } - .column.is-2-mobile { - flex: none; - width: 16.6666666667%; - } - .column.is-offset-2-mobile { - margin-inline-start: 16.6666666667%; - } - .column.is-3-mobile { - flex: none; - width: 25%; - } - .column.is-offset-3-mobile { - margin-inline-start: 25%; - } - .column.is-4-mobile { - flex: none; - width: 33.3333333333%; - } - .column.is-offset-4-mobile { - margin-inline-start: 33.3333333333%; - } - .column.is-5-mobile { - flex: none; - width: 41.6666666667%; - } - .column.is-offset-5-mobile { - margin-inline-start: 41.6666666667%; - } - .column.is-6-mobile { - flex: none; - width: 50%; - } - .column.is-offset-6-mobile { - margin-inline-start: 50%; - } - .column.is-7-mobile { - flex: none; - width: 58.3333333333%; - } - .column.is-offset-7-mobile { - margin-inline-start: 58.3333333333%; - } - .column.is-8-mobile { - flex: none; - width: 66.6666666667%; - } - .column.is-offset-8-mobile { - margin-inline-start: 66.6666666667%; - } - .column.is-9-mobile { - flex: none; - width: 75%; - } - .column.is-offset-9-mobile { - margin-inline-start: 75%; - } - .column.is-10-mobile { - flex: none; - width: 83.3333333333%; - } - .column.is-offset-10-mobile { - margin-inline-start: 83.3333333333%; - } - .column.is-11-mobile { - flex: none; - width: 91.6666666667%; - } - .column.is-offset-11-mobile { - margin-inline-start: 91.6666666667%; - } - .column.is-12-mobile { - flex: none; - width: 100%; - } - .column.is-offset-12-mobile { - margin-inline-start: 100%; - } -} -@media screen and (min-width: 769px), print { - .column.is-narrow, .column.is-narrow-tablet { - flex: none; - width: unset; - } - .column.is-full, .column.is-full-tablet { - flex: none; - width: 100%; - } - .column.is-three-quarters, .column.is-three-quarters-tablet { - flex: none; - width: 75%; - } - .column.is-two-thirds, .column.is-two-thirds-tablet { - flex: none; - width: 66.6666%; - } - .column.is-half, .column.is-half-tablet { - flex: none; - width: 50%; - } - .column.is-one-third, .column.is-one-third-tablet { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter, .column.is-one-quarter-tablet { - flex: none; - width: 25%; - } - .column.is-one-fifth, .column.is-one-fifth-tablet { - flex: none; - width: 20%; - } - .column.is-two-fifths, .column.is-two-fifths-tablet { - flex: none; - width: 40%; - } - .column.is-three-fifths, .column.is-three-fifths-tablet { - flex: none; - width: 60%; - } - .column.is-four-fifths, .column.is-four-fifths-tablet { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { - margin-inline-start: 75%; - } - .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { - margin-inline-start: 66.6666%; - } - .column.is-offset-half, .column.is-offset-half-tablet { - margin-inline-start: 50%; - } - .column.is-offset-one-third, .column.is-offset-one-third-tablet { - margin-inline-start: 0.3333%; - } - .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { - margin-inline-start: 25%; - } - .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { - margin-inline-start: 20%; - } - .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { - margin-inline-start: 40%; - } - .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { - margin-inline-start: 60%; - } - .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { - margin-inline-start: 80%; - } - .column.is-0, .column.is-0-tablet { - flex: none; - width: 0%; - } - .column.is-offset-0, .column.is-offset-0-tablet { - margin-inline-start: 0%; - } - .column.is-1, .column.is-1-tablet { - flex: none; - width: 8.3333333333%; - } - .column.is-offset-1, .column.is-offset-1-tablet { - margin-inline-start: 8.3333333333%; - } - .column.is-2, .column.is-2-tablet { - flex: none; - width: 16.6666666667%; - } - .column.is-offset-2, .column.is-offset-2-tablet { - margin-inline-start: 16.6666666667%; - } - .column.is-3, .column.is-3-tablet { - flex: none; - width: 25%; - } - .column.is-offset-3, .column.is-offset-3-tablet { - margin-inline-start: 25%; - } - .column.is-4, .column.is-4-tablet { - flex: none; - width: 33.3333333333%; - } - .column.is-offset-4, .column.is-offset-4-tablet { - margin-inline-start: 33.3333333333%; - } - .column.is-5, .column.is-5-tablet { - flex: none; - width: 41.6666666667%; - } - .column.is-offset-5, .column.is-offset-5-tablet { - margin-inline-start: 41.6666666667%; - } - .column.is-6, .column.is-6-tablet { - flex: none; - width: 50%; - } - .column.is-offset-6, .column.is-offset-6-tablet { - margin-inline-start: 50%; - } - .column.is-7, .column.is-7-tablet { - flex: none; - width: 58.3333333333%; - } - .column.is-offset-7, .column.is-offset-7-tablet { - margin-inline-start: 58.3333333333%; - } - .column.is-8, .column.is-8-tablet { - flex: none; - width: 66.6666666667%; - } - .column.is-offset-8, .column.is-offset-8-tablet { - margin-inline-start: 66.6666666667%; - } - .column.is-9, .column.is-9-tablet { - flex: none; - width: 75%; - } - .column.is-offset-9, .column.is-offset-9-tablet { - margin-inline-start: 75%; - } - .column.is-10, .column.is-10-tablet { - flex: none; - width: 83.3333333333%; - } - .column.is-offset-10, .column.is-offset-10-tablet { - margin-inline-start: 83.3333333333%; - } - .column.is-11, .column.is-11-tablet { - flex: none; - width: 91.6666666667%; - } - .column.is-offset-11, .column.is-offset-11-tablet { - margin-inline-start: 91.6666666667%; - } - .column.is-12, .column.is-12-tablet { - flex: none; - width: 100%; - } - .column.is-offset-12, .column.is-offset-12-tablet { - margin-inline-start: 100%; - } -} -@media screen and (max-width: 1023px) { - .column.is-narrow-touch { - flex: none; - width: unset; - } - .column.is-full-touch { - flex: none; - width: 100%; - } - .column.is-three-quarters-touch { - flex: none; - width: 75%; - } - .column.is-two-thirds-touch { - flex: none; - width: 66.6666%; - } - .column.is-half-touch { - flex: none; - width: 50%; - } - .column.is-one-third-touch { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-touch { - flex: none; - width: 25%; - } - .column.is-one-fifth-touch { - flex: none; - width: 20%; - } - .column.is-two-fifths-touch { - flex: none; - width: 40%; - } - .column.is-three-fifths-touch { - flex: none; - width: 60%; - } - .column.is-four-fifths-touch { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-touch { - margin-inline-start: 75%; - } - .column.is-offset-two-thirds-touch { - margin-inline-start: 66.6666%; - } - .column.is-offset-half-touch { - margin-inline-start: 50%; - } - .column.is-offset-one-third-touch { - margin-inline-start: 0.3333%; - } - .column.is-offset-one-quarter-touch { - margin-inline-start: 25%; - } - .column.is-offset-one-fifth-touch { - margin-inline-start: 20%; - } - .column.is-offset-two-fifths-touch { - margin-inline-start: 40%; - } - .column.is-offset-three-fifths-touch { - margin-inline-start: 60%; - } - .column.is-offset-four-fifths-touch { - margin-inline-start: 80%; - } - .column.is-0-touch { - flex: none; - width: 0%; - } - .column.is-offset-0-touch { - margin-inline-start: 0%; - } - .column.is-1-touch { - flex: none; - width: 8.3333333333%; - } - .column.is-offset-1-touch { - margin-inline-start: 8.3333333333%; - } - .column.is-2-touch { - flex: none; - width: 16.6666666667%; - } - .column.is-offset-2-touch { - margin-inline-start: 16.6666666667%; - } - .column.is-3-touch { - flex: none; - width: 25%; - } - .column.is-offset-3-touch { - margin-inline-start: 25%; - } - .column.is-4-touch { - flex: none; - width: 33.3333333333%; - } - .column.is-offset-4-touch { - margin-inline-start: 33.3333333333%; - } - .column.is-5-touch { - flex: none; - width: 41.6666666667%; - } - .column.is-offset-5-touch { - margin-inline-start: 41.6666666667%; - } - .column.is-6-touch { - flex: none; - width: 50%; - } - .column.is-offset-6-touch { - margin-inline-start: 50%; - } - .column.is-7-touch { - flex: none; - width: 58.3333333333%; - } - .column.is-offset-7-touch { - margin-inline-start: 58.3333333333%; - } - .column.is-8-touch { - flex: none; - width: 66.6666666667%; - } - .column.is-offset-8-touch { - margin-inline-start: 66.6666666667%; - } - .column.is-9-touch { - flex: none; - width: 75%; - } - .column.is-offset-9-touch { - margin-inline-start: 75%; - } - .column.is-10-touch { - flex: none; - width: 83.3333333333%; - } - .column.is-offset-10-touch { - margin-inline-start: 83.3333333333%; - } - .column.is-11-touch { - flex: none; - width: 91.6666666667%; - } - .column.is-offset-11-touch { - margin-inline-start: 91.6666666667%; - } - .column.is-12-touch { - flex: none; - width: 100%; - } - .column.is-offset-12-touch { - margin-inline-start: 100%; - } -} -@media screen and (min-width: 1024px) { - .column.is-narrow-desktop { - flex: none; - width: unset; - } - .column.is-full-desktop { - flex: none; - width: 100%; - } - .column.is-three-quarters-desktop { - flex: none; - width: 75%; - } - .column.is-two-thirds-desktop { - flex: none; - width: 66.6666%; - } - .column.is-half-desktop { - flex: none; - width: 50%; - } - .column.is-one-third-desktop { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-desktop { - flex: none; - width: 25%; - } - .column.is-one-fifth-desktop { - flex: none; - width: 20%; - } - .column.is-two-fifths-desktop { - flex: none; - width: 40%; - } - .column.is-three-fifths-desktop { - flex: none; - width: 60%; - } - .column.is-four-fifths-desktop { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-desktop { - margin-inline-start: 75%; - } - .column.is-offset-two-thirds-desktop { - margin-inline-start: 66.6666%; - } - .column.is-offset-half-desktop { - margin-inline-start: 50%; - } - .column.is-offset-one-third-desktop { - margin-inline-start: 0.3333%; - } - .column.is-offset-one-quarter-desktop { - margin-inline-start: 25%; - } - .column.is-offset-one-fifth-desktop { - margin-inline-start: 20%; - } - .column.is-offset-two-fifths-desktop { - margin-inline-start: 40%; - } - .column.is-offset-three-fifths-desktop { - margin-inline-start: 60%; - } - .column.is-offset-four-fifths-desktop { - margin-inline-start: 80%; - } - .column.is-0-desktop { - flex: none; - width: 0%; - } - .column.is-offset-0-desktop { - margin-inline-start: 0%; - } - .column.is-1-desktop { - flex: none; - width: 8.3333333333%; - } - .column.is-offset-1-desktop { - margin-inline-start: 8.3333333333%; - } - .column.is-2-desktop { - flex: none; - width: 16.6666666667%; - } - .column.is-offset-2-desktop { - margin-inline-start: 16.6666666667%; - } - .column.is-3-desktop { - flex: none; - width: 25%; - } - .column.is-offset-3-desktop { - margin-inline-start: 25%; - } - .column.is-4-desktop { - flex: none; - width: 33.3333333333%; - } - .column.is-offset-4-desktop { - margin-inline-start: 33.3333333333%; - } - .column.is-5-desktop { - flex: none; - width: 41.6666666667%; - } - .column.is-offset-5-desktop { - margin-inline-start: 41.6666666667%; - } - .column.is-6-desktop { - flex: none; - width: 50%; - } - .column.is-offset-6-desktop { - margin-inline-start: 50%; - } - .column.is-7-desktop { - flex: none; - width: 58.3333333333%; - } - .column.is-offset-7-desktop { - margin-inline-start: 58.3333333333%; - } - .column.is-8-desktop { - flex: none; - width: 66.6666666667%; - } - .column.is-offset-8-desktop { - margin-inline-start: 66.6666666667%; - } - .column.is-9-desktop { - flex: none; - width: 75%; - } - .column.is-offset-9-desktop { - margin-inline-start: 75%; - } - .column.is-10-desktop { - flex: none; - width: 83.3333333333%; - } - .column.is-offset-10-desktop { - margin-inline-start: 83.3333333333%; - } - .column.is-11-desktop { - flex: none; - width: 91.6666666667%; - } - .column.is-offset-11-desktop { - margin-inline-start: 91.6666666667%; - } - .column.is-12-desktop { - flex: none; - width: 100%; - } - .column.is-offset-12-desktop { - margin-inline-start: 100%; - } -} -@media screen and (min-width: 1216px) { - .column.is-narrow-widescreen { - flex: none; - width: unset; - } - .column.is-full-widescreen { - flex: none; - width: 100%; - } - .column.is-three-quarters-widescreen { - flex: none; - width: 75%; - } - .column.is-two-thirds-widescreen { - flex: none; - width: 66.6666%; - } - .column.is-half-widescreen { - flex: none; - width: 50%; - } - .column.is-one-third-widescreen { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-widescreen { - flex: none; - width: 25%; - } - .column.is-one-fifth-widescreen { - flex: none; - width: 20%; - } - .column.is-two-fifths-widescreen { - flex: none; - width: 40%; - } - .column.is-three-fifths-widescreen { - flex: none; - width: 60%; - } - .column.is-four-fifths-widescreen { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-widescreen { - margin-inline-start: 75%; - } - .column.is-offset-two-thirds-widescreen { - margin-inline-start: 66.6666%; - } - .column.is-offset-half-widescreen { - margin-inline-start: 50%; - } - .column.is-offset-one-third-widescreen { - margin-inline-start: 0.3333%; - } - .column.is-offset-one-quarter-widescreen { - margin-inline-start: 25%; - } - .column.is-offset-one-fifth-widescreen { - margin-inline-start: 20%; - } - .column.is-offset-two-fifths-widescreen { - margin-inline-start: 40%; - } - .column.is-offset-three-fifths-widescreen { - margin-inline-start: 60%; - } - .column.is-offset-four-fifths-widescreen { - margin-inline-start: 80%; - } - .column.is-0-widescreen { - flex: none; - width: 0%; - } - .column.is-offset-0-widescreen { - margin-inline-start: 0%; - } - .column.is-1-widescreen { - flex: none; - width: 8.3333333333%; - } - .column.is-offset-1-widescreen { - margin-inline-start: 8.3333333333%; - } - .column.is-2-widescreen { - flex: none; - width: 16.6666666667%; - } - .column.is-offset-2-widescreen { - margin-inline-start: 16.6666666667%; - } - .column.is-3-widescreen { - flex: none; - width: 25%; - } - .column.is-offset-3-widescreen { - margin-inline-start: 25%; - } - .column.is-4-widescreen { - flex: none; - width: 33.3333333333%; - } - .column.is-offset-4-widescreen { - margin-inline-start: 33.3333333333%; - } - .column.is-5-widescreen { - flex: none; - width: 41.6666666667%; - } - .column.is-offset-5-widescreen { - margin-inline-start: 41.6666666667%; - } - .column.is-6-widescreen { - flex: none; - width: 50%; - } - .column.is-offset-6-widescreen { - margin-inline-start: 50%; - } - .column.is-7-widescreen { - flex: none; - width: 58.3333333333%; - } - .column.is-offset-7-widescreen { - margin-inline-start: 58.3333333333%; - } - .column.is-8-widescreen { - flex: none; - width: 66.6666666667%; - } - .column.is-offset-8-widescreen { - margin-inline-start: 66.6666666667%; - } - .column.is-9-widescreen { - flex: none; - width: 75%; - } - .column.is-offset-9-widescreen { - margin-inline-start: 75%; - } - .column.is-10-widescreen { - flex: none; - width: 83.3333333333%; - } - .column.is-offset-10-widescreen { - margin-inline-start: 83.3333333333%; - } - .column.is-11-widescreen { - flex: none; - width: 91.6666666667%; - } - .column.is-offset-11-widescreen { - margin-inline-start: 91.6666666667%; - } - .column.is-12-widescreen { - flex: none; - width: 100%; - } - .column.is-offset-12-widescreen { - margin-inline-start: 100%; - } -} -@media screen and (min-width: 1408px) { - .column.is-narrow-fullhd { - flex: none; - width: unset; - } - .column.is-full-fullhd { - flex: none; - width: 100%; - } - .column.is-three-quarters-fullhd { - flex: none; - width: 75%; - } - .column.is-two-thirds-fullhd { - flex: none; - width: 66.6666%; - } - .column.is-half-fullhd { - flex: none; - width: 50%; - } - .column.is-one-third-fullhd { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-fullhd { - flex: none; - width: 25%; - } - .column.is-one-fifth-fullhd { - flex: none; - width: 20%; - } - .column.is-two-fifths-fullhd { - flex: none; - width: 40%; - } - .column.is-three-fifths-fullhd { - flex: none; - width: 60%; - } - .column.is-four-fifths-fullhd { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-fullhd { - margin-inline-start: 75%; - } - .column.is-offset-two-thirds-fullhd { - margin-inline-start: 66.6666%; - } - .column.is-offset-half-fullhd { - margin-inline-start: 50%; - } - .column.is-offset-one-third-fullhd { - margin-inline-start: 33.3333%; - } - .column.is-offset-one-quarter-fullhd { - margin-inline-start: 25%; - } - .column.is-offset-one-fifth-fullhd { - margin-inline-start: 20%; - } - .column.is-offset-two-fifths-fullhd { - margin-inline-start: 40%; - } - .column.is-offset-three-fifths-fullhd { - margin-inline-start: 60%; - } - .column.is-offset-four-fifths-fullhd { - margin-inline-start: 80%; - } - .column.is-0-fullhd { - flex: none; - width: 0%; - } - .column.is-offset-0-fullhd { - margin-inline-start: 0%; - } - .column.is-1-fullhd { - flex: none; - width: 8.3333333333%; - } - .column.is-offset-1-fullhd { - margin-inline-start: 8.3333333333%; - } - .column.is-2-fullhd { - flex: none; - width: 16.6666666667%; - } - .column.is-offset-2-fullhd { - margin-inline-start: 16.6666666667%; - } - .column.is-3-fullhd { - flex: none; - width: 25%; - } - .column.is-offset-3-fullhd { - margin-inline-start: 25%; - } - .column.is-4-fullhd { - flex: none; - width: 33.3333333333%; - } - .column.is-offset-4-fullhd { - margin-inline-start: 33.3333333333%; - } - .column.is-5-fullhd { - flex: none; - width: 41.6666666667%; - } - .column.is-offset-5-fullhd { - margin-inline-start: 41.6666666667%; - } - .column.is-6-fullhd { - flex: none; - width: 50%; - } - .column.is-offset-6-fullhd { - margin-inline-start: 50%; - } - .column.is-7-fullhd { - flex: none; - width: 58.3333333333%; - } - .column.is-offset-7-fullhd { - margin-inline-start: 58.3333333333%; - } - .column.is-8-fullhd { - flex: none; - width: 66.6666666667%; - } - .column.is-offset-8-fullhd { - margin-inline-start: 66.6666666667%; - } - .column.is-9-fullhd { - flex: none; - width: 75%; - } - .column.is-offset-9-fullhd { - margin-inline-start: 75%; - } - .column.is-10-fullhd { - flex: none; - width: 83.3333333333%; - } - .column.is-offset-10-fullhd { - margin-inline-start: 83.3333333333%; - } - .column.is-11-fullhd { - flex: none; - width: 91.6666666667%; - } - .column.is-offset-11-fullhd { - margin-inline-start: 91.6666666667%; - } - .column.is-12-fullhd { - flex: none; - width: 100%; - } - .column.is-offset-12-fullhd { - margin-inline-start: 100%; - } -} - + padding: 0.75rem; } + .columns.is-mobile > .column.is-narrow { + flex: none; } + .columns.is-mobile > .column.is-full { + flex: none; + width: 100%; } + .columns.is-mobile > .column.is-three-quarters { + flex: none; + width: 75%; } + .columns.is-mobile > .column.is-two-thirds { + flex: none; + width: 66.6666%; } + .columns.is-mobile > .column.is-half { + flex: none; + width: 50%; } + .columns.is-mobile > .column.is-one-third { + flex: none; + width: 33.3333%; } + .columns.is-mobile > .column.is-one-quarter { + flex: none; + width: 25%; } + .columns.is-mobile > .column.is-one-fifth { + flex: none; + width: 20%; } + .columns.is-mobile > .column.is-two-fifths { + flex: none; + width: 40%; } + .columns.is-mobile > .column.is-three-fifths { + flex: none; + width: 60%; } + .columns.is-mobile > .column.is-four-fifths { + flex: none; + width: 80%; } + .columns.is-mobile > .column.is-offset-three-quarters { + margin-left: 75%; } + .columns.is-mobile > .column.is-offset-two-thirds { + margin-left: 66.6666%; } + .columns.is-mobile > .column.is-offset-half { + margin-left: 50%; } + .columns.is-mobile > .column.is-offset-one-third { + margin-left: 33.3333%; } + .columns.is-mobile > .column.is-offset-one-quarter { + margin-left: 25%; } + .columns.is-mobile > .column.is-offset-one-fifth { + margin-left: 20%; } + .columns.is-mobile > .column.is-offset-two-fifths { + margin-left: 40%; } + .columns.is-mobile > .column.is-offset-three-fifths { + margin-left: 60%; } + .columns.is-mobile > .column.is-offset-four-fifths { + margin-left: 80%; } + .columns.is-mobile > .column.is-0 { + flex: none; + width: 0%; } + .columns.is-mobile > .column.is-offset-0 { + margin-left: 0%; } + .columns.is-mobile > .column.is-1 { + flex: none; + width: 8.3333333333%; } + .columns.is-mobile > .column.is-offset-1 { + margin-left: 8.3333333333%; } + .columns.is-mobile > .column.is-2 { + flex: none; + width: 16.6666666667%; } + .columns.is-mobile > .column.is-offset-2 { + margin-left: 16.6666666667%; } + .columns.is-mobile > .column.is-3 { + flex: none; + width: 25%; } + .columns.is-mobile > .column.is-offset-3 { + margin-left: 25%; } + .columns.is-mobile > .column.is-4 { + flex: none; + width: 33.3333333333%; } + .columns.is-mobile > .column.is-offset-4 { + margin-left: 33.3333333333%; } + .columns.is-mobile > .column.is-5 { + flex: none; + width: 41.6666666667%; } + .columns.is-mobile > .column.is-offset-5 { + margin-left: 41.6666666667%; } + .columns.is-mobile > .column.is-6 { + flex: none; + width: 50%; } + .columns.is-mobile > .column.is-offset-6 { + margin-left: 50%; } + .columns.is-mobile > .column.is-7 { + flex: none; + width: 58.3333333333%; } + .columns.is-mobile > .column.is-offset-7 { + margin-left: 58.3333333333%; } + .columns.is-mobile > .column.is-8 { + flex: none; + width: 66.6666666667%; } + .columns.is-mobile > .column.is-offset-8 { + margin-left: 66.6666666667%; } + .columns.is-mobile > .column.is-9 { + flex: none; + width: 75%; } + .columns.is-mobile > .column.is-offset-9 { + margin-left: 75%; } + .columns.is-mobile > .column.is-10 { + flex: none; + width: 83.3333333333%; } + .columns.is-mobile > .column.is-offset-10 { + margin-left: 83.3333333333%; } + .columns.is-mobile > .column.is-11 { + flex: none; + width: 91.6666666667%; } + .columns.is-mobile > .column.is-offset-11 { + margin-left: 91.6666666667%; } + .columns.is-mobile > .column.is-12 { + flex: none; + width: 100%; } + .columns.is-mobile > .column.is-offset-12 { + margin-left: 100%; } + @media screen and (max-width: 768px) { + .column.is-narrow-mobile { + flex: none; } + .column.is-full-mobile { + flex: none; + width: 100%; } + .column.is-three-quarters-mobile { + flex: none; + width: 75%; } + .column.is-two-thirds-mobile { + flex: none; + width: 66.6666%; } + .column.is-half-mobile { + flex: none; + width: 50%; } + .column.is-one-third-mobile { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-mobile { + flex: none; + width: 25%; } + .column.is-one-fifth-mobile { + flex: none; + width: 20%; } + .column.is-two-fifths-mobile { + flex: none; + width: 40%; } + .column.is-three-fifths-mobile { + flex: none; + width: 60%; } + .column.is-four-fifths-mobile { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-mobile { + margin-left: 75%; } + .column.is-offset-two-thirds-mobile { + margin-left: 66.6666%; } + .column.is-offset-half-mobile { + margin-left: 50%; } + .column.is-offset-one-third-mobile { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-mobile { + margin-left: 25%; } + .column.is-offset-one-fifth-mobile { + margin-left: 20%; } + .column.is-offset-two-fifths-mobile { + margin-left: 40%; } + .column.is-offset-three-fifths-mobile { + margin-left: 60%; } + .column.is-offset-four-fifths-mobile { + margin-left: 80%; } + .column.is-0-mobile { + flex: none; + width: 0%; } + .column.is-offset-0-mobile { + margin-left: 0%; } + .column.is-1-mobile { + flex: none; + width: 8.3333333333%; } + .column.is-offset-1-mobile { + margin-left: 8.3333333333%; } + .column.is-2-mobile { + flex: none; + width: 16.6666666667%; } + .column.is-offset-2-mobile { + margin-left: 16.6666666667%; } + .column.is-3-mobile { + flex: none; + width: 25%; } + .column.is-offset-3-mobile { + margin-left: 25%; } + .column.is-4-mobile { + flex: none; + width: 33.3333333333%; } + .column.is-offset-4-mobile { + margin-left: 33.3333333333%; } + .column.is-5-mobile { + flex: none; + width: 41.6666666667%; } + .column.is-offset-5-mobile { + margin-left: 41.6666666667%; } + .column.is-6-mobile { + flex: none; + width: 50%; } + .column.is-offset-6-mobile { + margin-left: 50%; } + .column.is-7-mobile { + flex: none; + width: 58.3333333333%; } + .column.is-offset-7-mobile { + margin-left: 58.3333333333%; } + .column.is-8-mobile { + flex: none; + width: 66.6666666667%; } + .column.is-offset-8-mobile { + margin-left: 66.6666666667%; } + .column.is-9-mobile { + flex: none; + width: 75%; } + .column.is-offset-9-mobile { + margin-left: 75%; } + .column.is-10-mobile { + flex: none; + width: 83.3333333333%; } + .column.is-offset-10-mobile { + margin-left: 83.3333333333%; } + .column.is-11-mobile { + flex: none; + width: 91.6666666667%; } + .column.is-offset-11-mobile { + margin-left: 91.6666666667%; } + .column.is-12-mobile { + flex: none; + width: 100%; } + .column.is-offset-12-mobile { + margin-left: 100%; } } + @media screen and (min-width: 769px), print { + .column.is-narrow, .column.is-narrow-tablet { + flex: none; } + .column.is-full, .column.is-full-tablet { + flex: none; + width: 100%; } + .column.is-three-quarters, .column.is-three-quarters-tablet { + flex: none; + width: 75%; } + .column.is-two-thirds, .column.is-two-thirds-tablet { + flex: none; + width: 66.6666%; } + .column.is-half, .column.is-half-tablet { + flex: none; + width: 50%; } + .column.is-one-third, .column.is-one-third-tablet { + flex: none; + width: 33.3333%; } + .column.is-one-quarter, .column.is-one-quarter-tablet { + flex: none; + width: 25%; } + .column.is-one-fifth, .column.is-one-fifth-tablet { + flex: none; + width: 20%; } + .column.is-two-fifths, .column.is-two-fifths-tablet { + flex: none; + width: 40%; } + .column.is-three-fifths, .column.is-three-fifths-tablet { + flex: none; + width: 60%; } + .column.is-four-fifths, .column.is-four-fifths-tablet { + flex: none; + width: 80%; } + .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { + margin-left: 75%; } + .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { + margin-left: 66.6666%; } + .column.is-offset-half, .column.is-offset-half-tablet { + margin-left: 50%; } + .column.is-offset-one-third, .column.is-offset-one-third-tablet { + margin-left: 33.3333%; } + .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { + margin-left: 25%; } + .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { + margin-left: 20%; } + .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { + margin-left: 40%; } + .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { + margin-left: 60%; } + .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { + margin-left: 80%; } + .column.is-0, .column.is-0-tablet { + flex: none; + width: 0%; } + .column.is-offset-0, .column.is-offset-0-tablet { + margin-left: 0%; } + .column.is-1, .column.is-1-tablet { + flex: none; + width: 8.3333333333%; } + .column.is-offset-1, .column.is-offset-1-tablet { + margin-left: 8.3333333333%; } + .column.is-2, .column.is-2-tablet { + flex: none; + width: 16.6666666667%; } + .column.is-offset-2, .column.is-offset-2-tablet { + margin-left: 16.6666666667%; } + .column.is-3, .column.is-3-tablet { + flex: none; + width: 25%; } + .column.is-offset-3, .column.is-offset-3-tablet { + margin-left: 25%; } + .column.is-4, .column.is-4-tablet { + flex: none; + width: 33.3333333333%; } + .column.is-offset-4, .column.is-offset-4-tablet { + margin-left: 33.3333333333%; } + .column.is-5, .column.is-5-tablet { + flex: none; + width: 41.6666666667%; } + .column.is-offset-5, .column.is-offset-5-tablet { + margin-left: 41.6666666667%; } + .column.is-6, .column.is-6-tablet { + flex: none; + width: 50%; } + .column.is-offset-6, .column.is-offset-6-tablet { + margin-left: 50%; } + .column.is-7, .column.is-7-tablet { + flex: none; + width: 58.3333333333%; } + .column.is-offset-7, .column.is-offset-7-tablet { + margin-left: 58.3333333333%; } + .column.is-8, .column.is-8-tablet { + flex: none; + width: 66.6666666667%; } + .column.is-offset-8, .column.is-offset-8-tablet { + margin-left: 66.6666666667%; } + .column.is-9, .column.is-9-tablet { + flex: none; + width: 75%; } + .column.is-offset-9, .column.is-offset-9-tablet { + margin-left: 75%; } + .column.is-10, .column.is-10-tablet { + flex: none; + width: 83.3333333333%; } + .column.is-offset-10, .column.is-offset-10-tablet { + margin-left: 83.3333333333%; } + .column.is-11, .column.is-11-tablet { + flex: none; + width: 91.6666666667%; } + .column.is-offset-11, .column.is-offset-11-tablet { + margin-left: 91.6666666667%; } + .column.is-12, .column.is-12-tablet { + flex: none; + width: 100%; } + .column.is-offset-12, .column.is-offset-12-tablet { + margin-left: 100%; } } + @media screen and (max-width: 1023px) { + .column.is-narrow-touch { + flex: none; } + .column.is-full-touch { + flex: none; + width: 100%; } + .column.is-three-quarters-touch { + flex: none; + width: 75%; } + .column.is-two-thirds-touch { + flex: none; + width: 66.6666%; } + .column.is-half-touch { + flex: none; + width: 50%; } + .column.is-one-third-touch { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-touch { + flex: none; + width: 25%; } + .column.is-one-fifth-touch { + flex: none; + width: 20%; } + .column.is-two-fifths-touch { + flex: none; + width: 40%; } + .column.is-three-fifths-touch { + flex: none; + width: 60%; } + .column.is-four-fifths-touch { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-touch { + margin-left: 75%; } + .column.is-offset-two-thirds-touch { + margin-left: 66.6666%; } + .column.is-offset-half-touch { + margin-left: 50%; } + .column.is-offset-one-third-touch { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-touch { + margin-left: 25%; } + .column.is-offset-one-fifth-touch { + margin-left: 20%; } + .column.is-offset-two-fifths-touch { + margin-left: 40%; } + .column.is-offset-three-fifths-touch { + margin-left: 60%; } + .column.is-offset-four-fifths-touch { + margin-left: 80%; } + .column.is-0-touch { + flex: none; + width: 0%; } + .column.is-offset-0-touch { + margin-left: 0%; } + .column.is-1-touch { + flex: none; + width: 8.3333333333%; } + .column.is-offset-1-touch { + margin-left: 8.3333333333%; } + .column.is-2-touch { + flex: none; + width: 16.6666666667%; } + .column.is-offset-2-touch { + margin-left: 16.6666666667%; } + .column.is-3-touch { + flex: none; + width: 25%; } + .column.is-offset-3-touch { + margin-left: 25%; } + .column.is-4-touch { + flex: none; + width: 33.3333333333%; } + .column.is-offset-4-touch { + margin-left: 33.3333333333%; } + .column.is-5-touch { + flex: none; + width: 41.6666666667%; } + .column.is-offset-5-touch { + margin-left: 41.6666666667%; } + .column.is-6-touch { + flex: none; + width: 50%; } + .column.is-offset-6-touch { + margin-left: 50%; } + .column.is-7-touch { + flex: none; + width: 58.3333333333%; } + .column.is-offset-7-touch { + margin-left: 58.3333333333%; } + .column.is-8-touch { + flex: none; + width: 66.6666666667%; } + .column.is-offset-8-touch { + margin-left: 66.6666666667%; } + .column.is-9-touch { + flex: none; + width: 75%; } + .column.is-offset-9-touch { + margin-left: 75%; } + .column.is-10-touch { + flex: none; + width: 83.3333333333%; } + .column.is-offset-10-touch { + margin-left: 83.3333333333%; } + .column.is-11-touch { + flex: none; + width: 91.6666666667%; } + .column.is-offset-11-touch { + margin-left: 91.6666666667%; } + .column.is-12-touch { + flex: none; + width: 100%; } + .column.is-offset-12-touch { + margin-left: 100%; } } + @media screen and (min-width: 1024px) { + .column.is-narrow-desktop { + flex: none; } + .column.is-full-desktop { + flex: none; + width: 100%; } + .column.is-three-quarters-desktop { + flex: none; + width: 75%; } + .column.is-two-thirds-desktop { + flex: none; + width: 66.6666%; } + .column.is-half-desktop { + flex: none; + width: 50%; } + .column.is-one-third-desktop { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-desktop { + flex: none; + width: 25%; } + .column.is-one-fifth-desktop { + flex: none; + width: 20%; } + .column.is-two-fifths-desktop { + flex: none; + width: 40%; } + .column.is-three-fifths-desktop { + flex: none; + width: 60%; } + .column.is-four-fifths-desktop { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-desktop { + margin-left: 75%; } + .column.is-offset-two-thirds-desktop { + margin-left: 66.6666%; } + .column.is-offset-half-desktop { + margin-left: 50%; } + .column.is-offset-one-third-desktop { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-desktop { + margin-left: 25%; } + .column.is-offset-one-fifth-desktop { + margin-left: 20%; } + .column.is-offset-two-fifths-desktop { + margin-left: 40%; } + .column.is-offset-three-fifths-desktop { + margin-left: 60%; } + .column.is-offset-four-fifths-desktop { + margin-left: 80%; } + .column.is-0-desktop { + flex: none; + width: 0%; } + .column.is-offset-0-desktop { + margin-left: 0%; } + .column.is-1-desktop { + flex: none; + width: 8.3333333333%; } + .column.is-offset-1-desktop { + margin-left: 8.3333333333%; } + .column.is-2-desktop { + flex: none; + width: 16.6666666667%; } + .column.is-offset-2-desktop { + margin-left: 16.6666666667%; } + .column.is-3-desktop { + flex: none; + width: 25%; } + .column.is-offset-3-desktop { + margin-left: 25%; } + .column.is-4-desktop { + flex: none; + width: 33.3333333333%; } + .column.is-offset-4-desktop { + margin-left: 33.3333333333%; } + .column.is-5-desktop { + flex: none; + width: 41.6666666667%; } + .column.is-offset-5-desktop { + margin-left: 41.6666666667%; } + .column.is-6-desktop { + flex: none; + width: 50%; } + .column.is-offset-6-desktop { + margin-left: 50%; } + .column.is-7-desktop { + flex: none; + width: 58.3333333333%; } + .column.is-offset-7-desktop { + margin-left: 58.3333333333%; } + .column.is-8-desktop { + flex: none; + width: 66.6666666667%; } + .column.is-offset-8-desktop { + margin-left: 66.6666666667%; } + .column.is-9-desktop { + flex: none; + width: 75%; } + .column.is-offset-9-desktop { + margin-left: 75%; } + .column.is-10-desktop { + flex: none; + width: 83.3333333333%; } + .column.is-offset-10-desktop { + margin-left: 83.3333333333%; } + .column.is-11-desktop { + flex: none; + width: 91.6666666667%; } + .column.is-offset-11-desktop { + margin-left: 91.6666666667%; } + .column.is-12-desktop { + flex: none; + width: 100%; } + .column.is-offset-12-desktop { + margin-left: 100%; } } + @media screen and (min-width: 1216px) { + .column.is-narrow-widescreen { + flex: none; } + .column.is-full-widescreen { + flex: none; + width: 100%; } + .column.is-three-quarters-widescreen { + flex: none; + width: 75%; } + .column.is-two-thirds-widescreen { + flex: none; + width: 66.6666%; } + .column.is-half-widescreen { + flex: none; + width: 50%; } + .column.is-one-third-widescreen { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-widescreen { + flex: none; + width: 25%; } + .column.is-one-fifth-widescreen { + flex: none; + width: 20%; } + .column.is-two-fifths-widescreen { + flex: none; + width: 40%; } + .column.is-three-fifths-widescreen { + flex: none; + width: 60%; } + .column.is-four-fifths-widescreen { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-widescreen { + margin-left: 75%; } + .column.is-offset-two-thirds-widescreen { + margin-left: 66.6666%; } + .column.is-offset-half-widescreen { + margin-left: 50%; } + .column.is-offset-one-third-widescreen { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-widescreen { + margin-left: 25%; } + .column.is-offset-one-fifth-widescreen { + margin-left: 20%; } + .column.is-offset-two-fifths-widescreen { + margin-left: 40%; } + .column.is-offset-three-fifths-widescreen { + margin-left: 60%; } + .column.is-offset-four-fifths-widescreen { + margin-left: 80%; } + .column.is-0-widescreen { + flex: none; + width: 0%; } + .column.is-offset-0-widescreen { + margin-left: 0%; } + .column.is-1-widescreen { + flex: none; + width: 8.3333333333%; } + .column.is-offset-1-widescreen { + margin-left: 8.3333333333%; } + .column.is-2-widescreen { + flex: none; + width: 16.6666666667%; } + .column.is-offset-2-widescreen { + margin-left: 16.6666666667%; } + .column.is-3-widescreen { + flex: none; + width: 25%; } + .column.is-offset-3-widescreen { + margin-left: 25%; } + .column.is-4-widescreen { + flex: none; + width: 33.3333333333%; } + .column.is-offset-4-widescreen { + margin-left: 33.3333333333%; } + .column.is-5-widescreen { + flex: none; + width: 41.6666666667%; } + .column.is-offset-5-widescreen { + margin-left: 41.6666666667%; } + .column.is-6-widescreen { + flex: none; + width: 50%; } + .column.is-offset-6-widescreen { + margin-left: 50%; } + .column.is-7-widescreen { + flex: none; + width: 58.3333333333%; } + .column.is-offset-7-widescreen { + margin-left: 58.3333333333%; } + .column.is-8-widescreen { + flex: none; + width: 66.6666666667%; } + .column.is-offset-8-widescreen { + margin-left: 66.6666666667%; } + .column.is-9-widescreen { + flex: none; + width: 75%; } + .column.is-offset-9-widescreen { + margin-left: 75%; } + .column.is-10-widescreen { + flex: none; + width: 83.3333333333%; } + .column.is-offset-10-widescreen { + margin-left: 83.3333333333%; } + .column.is-11-widescreen { + flex: none; + width: 91.6666666667%; } + .column.is-offset-11-widescreen { + margin-left: 91.6666666667%; } + .column.is-12-widescreen { + flex: none; + width: 100%; } + .column.is-offset-12-widescreen { + margin-left: 100%; } } + @media screen and (min-width: 1408px) { + .column.is-narrow-fullhd { + flex: none; } + .column.is-full-fullhd { + flex: none; + width: 100%; } + .column.is-three-quarters-fullhd { + flex: none; + width: 75%; } + .column.is-two-thirds-fullhd { + flex: none; + width: 66.6666%; } + .column.is-half-fullhd { + flex: none; + width: 50%; } + .column.is-one-third-fullhd { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-fullhd { + flex: none; + width: 25%; } + .column.is-one-fifth-fullhd { + flex: none; + width: 20%; } + .column.is-two-fifths-fullhd { + flex: none; + width: 40%; } + .column.is-three-fifths-fullhd { + flex: none; + width: 60%; } + .column.is-four-fifths-fullhd { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-fullhd { + margin-left: 75%; } + .column.is-offset-two-thirds-fullhd { + margin-left: 66.6666%; } + .column.is-offset-half-fullhd { + margin-left: 50%; } + .column.is-offset-one-third-fullhd { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-fullhd { + margin-left: 25%; } + .column.is-offset-one-fifth-fullhd { + margin-left: 20%; } + .column.is-offset-two-fifths-fullhd { + margin-left: 40%; } + .column.is-offset-three-fifths-fullhd { + margin-left: 60%; } + .column.is-offset-four-fifths-fullhd { + margin-left: 80%; } + .column.is-0-fullhd { + flex: none; + width: 0%; } + .column.is-offset-0-fullhd { + margin-left: 0%; } + .column.is-1-fullhd { + flex: none; + width: 8.3333333333%; } + .column.is-offset-1-fullhd { + margin-left: 8.3333333333%; } + .column.is-2-fullhd { + flex: none; + width: 16.6666666667%; } + .column.is-offset-2-fullhd { + margin-left: 16.6666666667%; } + .column.is-3-fullhd { + flex: none; + width: 25%; } + .column.is-offset-3-fullhd { + margin-left: 25%; } + .column.is-4-fullhd { + flex: none; + width: 33.3333333333%; } + .column.is-offset-4-fullhd { + margin-left: 33.3333333333%; } + .column.is-5-fullhd { + flex: none; + width: 41.6666666667%; } + .column.is-offset-5-fullhd { + margin-left: 41.6666666667%; } + .column.is-6-fullhd { + flex: none; + width: 50%; } + .column.is-offset-6-fullhd { + margin-left: 50%; } + .column.is-7-fullhd { + flex: none; + width: 58.3333333333%; } + .column.is-offset-7-fullhd { + margin-left: 58.3333333333%; } + .column.is-8-fullhd { + flex: none; + width: 66.6666666667%; } + .column.is-offset-8-fullhd { + margin-left: 66.6666666667%; } + .column.is-9-fullhd { + flex: none; + width: 75%; } + .column.is-offset-9-fullhd { + margin-left: 75%; } + .column.is-10-fullhd { + flex: none; + width: 83.3333333333%; } + .column.is-offset-10-fullhd { + margin-left: 83.3333333333%; } + .column.is-11-fullhd { + flex: none; + width: 91.6666666667%; } + .column.is-offset-11-fullhd { + margin-left: 91.6666666667%; } + .column.is-12-fullhd { + flex: none; + width: 100%; } + .column.is-offset-12-fullhd { + margin-left: 100%; } } .columns { - margin-inline-start: calc(-1 * var(--bulma-column-gap)); - margin-inline-end: calc(-1 * var(--bulma-column-gap)); - margin-top: calc(-1 * var(--bulma-column-gap)); -} -.columns:last-child { - margin-bottom: calc(-1 * var(--bulma-column-gap)); -} -.columns:not(:last-child) { - margin-bottom: calc(var(--bulma-block-spacing) - var(--bulma-column-gap)); -} -.columns.is-centered { - justify-content: center; -} -.columns.is-gapless { - margin-inline-start: 0; - margin-inline-end: 0; - margin-top: 0; -} -.columns.is-gapless > .column { - margin: 0; - padding: 0 !important; -} -.columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; -} -.columns.is-gapless:last-child { - margin-bottom: 0; -} -.columns.is-mobile { - display: flex; -} -.columns.is-multiline { - flex-wrap: wrap; -} -.columns.is-vcentered { - align-items: center; -} -@media screen and (min-width: 769px), print { - .columns:not(.is-desktop) { - display: flex; - } -} -@media screen and (min-width: 1024px) { - .columns.is-desktop { - display: flex; - } -} -.columns.is-0 { - --bulma-column-gap: 0rem; -} -@media screen and (max-width: 768px) { - .columns.is-0-mobile { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-0-tablet { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-0-tablet-only { - --bulma-column-gap: 0rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-0-touch { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-0-desktop { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-0-desktop-only { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-0-widescreen { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-0-widescreen-only { - --bulma-column-gap: 0rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-0-fullhd { - --bulma-column-gap: 0rem; - } -} -.columns.is-1 { - --bulma-column-gap: 0.25rem; -} -@media screen and (max-width: 768px) { - .columns.is-1-mobile { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-1-tablet { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-1-tablet-only { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-1-touch { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-1-desktop { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-1-desktop-only { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-1-widescreen { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-1-widescreen-only { - --bulma-column-gap: 0.25rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-1-fullhd { - --bulma-column-gap: 0.25rem; - } -} -.columns.is-2 { - --bulma-column-gap: 0.5rem; -} -@media screen and (max-width: 768px) { - .columns.is-2-mobile { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-2-tablet { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-2-tablet-only { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-2-touch { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-2-desktop { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-2-desktop-only { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-2-widescreen { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-2-widescreen-only { - --bulma-column-gap: 0.5rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-2-fullhd { - --bulma-column-gap: 0.5rem; - } -} -.columns.is-3 { - --bulma-column-gap: 0.75rem; -} -@media screen and (max-width: 768px) { - .columns.is-3-mobile { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-3-tablet { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-3-tablet-only { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-3-touch { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-3-desktop { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-3-desktop-only { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-3-widescreen { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-3-widescreen-only { - --bulma-column-gap: 0.75rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-3-fullhd { - --bulma-column-gap: 0.75rem; - } -} -.columns.is-4 { - --bulma-column-gap: 1rem; -} -@media screen and (max-width: 768px) { - .columns.is-4-mobile { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-4-tablet { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-4-tablet-only { - --bulma-column-gap: 1rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-4-touch { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-4-desktop { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-4-desktop-only { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-4-widescreen { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-4-widescreen-only { - --bulma-column-gap: 1rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-4-fullhd { - --bulma-column-gap: 1rem; - } -} -.columns.is-5 { - --bulma-column-gap: 1.25rem; -} -@media screen and (max-width: 768px) { - .columns.is-5-mobile { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-5-tablet { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-5-tablet-only { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-5-touch { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-5-desktop { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-5-desktop-only { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-5-widescreen { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-5-widescreen-only { - --bulma-column-gap: 1.25rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-5-fullhd { - --bulma-column-gap: 1.25rem; - } -} -.columns.is-6 { - --bulma-column-gap: 1.5rem; -} -@media screen and (max-width: 768px) { - .columns.is-6-mobile { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-6-tablet { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-6-tablet-only { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-6-touch { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-6-desktop { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-6-desktop-only { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-6-widescreen { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-6-widescreen-only { - --bulma-column-gap: 1.5rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-6-fullhd { - --bulma-column-gap: 1.5rem; - } -} -.columns.is-7 { - --bulma-column-gap: 1.75rem; -} -@media screen and (max-width: 768px) { - .columns.is-7-mobile { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-7-tablet { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-7-tablet-only { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-7-touch { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-7-desktop { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-7-desktop-only { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-7-widescreen { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-7-widescreen-only { - --bulma-column-gap: 1.75rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-7-fullhd { - --bulma-column-gap: 1.75rem; - } -} -.columns.is-8 { - --bulma-column-gap: 2rem; -} -@media screen and (max-width: 768px) { - .columns.is-8-mobile { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 769px), print { - .columns.is-8-tablet { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-8-tablet-only { - --bulma-column-gap: 2rem; - } -} -@media screen and (max-width: 1023px) { - .columns.is-8-touch { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 1024px) { - .columns.is-8-desktop { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-8-desktop-only { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 1216px) { - .columns.is-8-widescreen { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-8-widescreen-only { - --bulma-column-gap: 2rem; - } -} -@media screen and (min-width: 1408px) { - .columns.is-8-fullhd { - --bulma-column-gap: 2rem; - } -} - -.fixed-grid { - container-name: bulma-fixed-grid; - container-type: inline-size; -} -.fixed-grid > .grid { - --bulma-grid-gap-count: calc(var(--bulma-grid-column-count) - 1); - --bulma-grid-column-count: 2; - grid-template-columns: repeat(var(--bulma-grid-column-count), 1fr); -} -.fixed-grid.has-1-cols > .grid { - --bulma-grid-column-count: 1; -} -.fixed-grid.has-2-cols > .grid { - --bulma-grid-column-count: 2; -} -.fixed-grid.has-3-cols > .grid { - --bulma-grid-column-count: 3; -} -.fixed-grid.has-4-cols > .grid { - --bulma-grid-column-count: 4; -} -.fixed-grid.has-5-cols > .grid { - --bulma-grid-column-count: 5; -} -.fixed-grid.has-6-cols > .grid { - --bulma-grid-column-count: 6; -} -.fixed-grid.has-7-cols > .grid { - --bulma-grid-column-count: 7; -} -.fixed-grid.has-8-cols > .grid { - --bulma-grid-column-count: 8; -} -.fixed-grid.has-9-cols > .grid { - --bulma-grid-column-count: 9; -} -.fixed-grid.has-10-cols > .grid { - --bulma-grid-column-count: 10; -} -.fixed-grid.has-11-cols > .grid { - --bulma-grid-column-count: 11; -} -.fixed-grid.has-12-cols > .grid { - --bulma-grid-column-count: 12; -} -@container bulma-fixed-grid (max-width: 768px) { - .fixed-grid.has-1-cols-mobile > .grid { - --bulma-grid-column-count: 1; - } - .fixed-grid.has-2-cols-mobile > .grid { - --bulma-grid-column-count: 2; - } - .fixed-grid.has-3-cols-mobile > .grid { - --bulma-grid-column-count: 3; - } - .fixed-grid.has-4-cols-mobile > .grid { - --bulma-grid-column-count: 4; - } - .fixed-grid.has-5-cols-mobile > .grid { - --bulma-grid-column-count: 5; - } - .fixed-grid.has-6-cols-mobile > .grid { - --bulma-grid-column-count: 6; - } - .fixed-grid.has-7-cols-mobile > .grid { - --bulma-grid-column-count: 7; - } - .fixed-grid.has-8-cols-mobile > .grid { - --bulma-grid-column-count: 8; - } - .fixed-grid.has-9-cols-mobile > .grid { - --bulma-grid-column-count: 9; - } - .fixed-grid.has-10-cols-mobile > .grid { - --bulma-grid-column-count: 10; - } - .fixed-grid.has-11-cols-mobile > .grid { - --bulma-grid-column-count: 11; - } - .fixed-grid.has-12-cols-mobile > .grid { - --bulma-grid-column-count: 12; - } -} -@container bulma-fixed-grid (min-width: 769px) { - .fixed-grid.has-1-cols-tablet > .grid { - --bulma-grid-column-count: 1; - } - .fixed-grid.has-2-cols-tablet > .grid { - --bulma-grid-column-count: 2; - } - .fixed-grid.has-3-cols-tablet > .grid { - --bulma-grid-column-count: 3; - } - .fixed-grid.has-4-cols-tablet > .grid { - --bulma-grid-column-count: 4; - } - .fixed-grid.has-5-cols-tablet > .grid { - --bulma-grid-column-count: 5; - } - .fixed-grid.has-6-cols-tablet > .grid { - --bulma-grid-column-count: 6; - } - .fixed-grid.has-7-cols-tablet > .grid { - --bulma-grid-column-count: 7; - } - .fixed-grid.has-8-cols-tablet > .grid { - --bulma-grid-column-count: 8; - } - .fixed-grid.has-9-cols-tablet > .grid { - --bulma-grid-column-count: 9; - } - .fixed-grid.has-10-cols-tablet > .grid { - --bulma-grid-column-count: 10; - } - .fixed-grid.has-11-cols-tablet > .grid { - --bulma-grid-column-count: 11; - } - .fixed-grid.has-12-cols-tablet > .grid { - --bulma-grid-column-count: 12; - } -} -@container bulma-fixed-grid (min-width: 1024px) { - .fixed-grid.has-1-cols-desktop > .grid { - --bulma-grid-column-count: 1; - } - .fixed-grid.has-2-cols-desktop > .grid { - --bulma-grid-column-count: 2; - } - .fixed-grid.has-3-cols-desktop > .grid { - --bulma-grid-column-count: 3; - } - .fixed-grid.has-4-cols-desktop > .grid { - --bulma-grid-column-count: 4; - } - .fixed-grid.has-5-cols-desktop > .grid { - --bulma-grid-column-count: 5; - } - .fixed-grid.has-6-cols-desktop > .grid { - --bulma-grid-column-count: 6; - } - .fixed-grid.has-7-cols-desktop > .grid { - --bulma-grid-column-count: 7; - } - .fixed-grid.has-8-cols-desktop > .grid { - --bulma-grid-column-count: 8; - } - .fixed-grid.has-9-cols-desktop > .grid { - --bulma-grid-column-count: 9; - } - .fixed-grid.has-10-cols-desktop > .grid { - --bulma-grid-column-count: 10; - } - .fixed-grid.has-11-cols-desktop > .grid { - --bulma-grid-column-count: 11; - } - .fixed-grid.has-12-cols-desktop > .grid { - --bulma-grid-column-count: 12; - } -} -@container bulma-fixed-grid (min-width: 1216px) { - .fixed-grid.has-1-cols-widescreen > .grid { - --bulma-grid-column-count: 1; - } - .fixed-grid.has-2-cols-widescreen > .grid { - --bulma-grid-column-count: 2; - } - .fixed-grid.has-3-cols-widescreen > .grid { - --bulma-grid-column-count: 3; - } - .fixed-grid.has-4-cols-widescreen > .grid { - --bulma-grid-column-count: 4; - } - .fixed-grid.has-5-cols-widescreen > .grid { - --bulma-grid-column-count: 5; - } - .fixed-grid.has-6-cols-widescreen > .grid { - --bulma-grid-column-count: 6; - } - .fixed-grid.has-7-cols-widescreen > .grid { - --bulma-grid-column-count: 7; - } - .fixed-grid.has-8-cols-widescreen > .grid { - --bulma-grid-column-count: 8; - } - .fixed-grid.has-9-cols-widescreen > .grid { - --bulma-grid-column-count: 9; - } - .fixed-grid.has-10-cols-widescreen > .grid { - --bulma-grid-column-count: 10; - } - .fixed-grid.has-11-cols-widescreen > .grid { - --bulma-grid-column-count: 11; - } - .fixed-grid.has-12-cols-widescreen > .grid { - --bulma-grid-column-count: 12; - } -} -@container bulma-fixed-grid (min-width: 1408px) { - .fixed-grid.has-1-cols-fullhd > .grid { - --bulma-grid-column-count: 1; - } - .fixed-grid.has-2-cols-fullhd > .grid { - --bulma-grid-column-count: 2; - } - .fixed-grid.has-3-cols-fullhd > .grid { - --bulma-grid-column-count: 3; - } - .fixed-grid.has-4-cols-fullhd > .grid { - --bulma-grid-column-count: 4; - } - .fixed-grid.has-5-cols-fullhd > .grid { - --bulma-grid-column-count: 5; - } - .fixed-grid.has-6-cols-fullhd > .grid { - --bulma-grid-column-count: 6; - } - .fixed-grid.has-7-cols-fullhd > .grid { - --bulma-grid-column-count: 7; - } - .fixed-grid.has-8-cols-fullhd > .grid { - --bulma-grid-column-count: 8; - } - .fixed-grid.has-9-cols-fullhd > .grid { - --bulma-grid-column-count: 9; - } - .fixed-grid.has-10-cols-fullhd > .grid { - --bulma-grid-column-count: 10; - } - .fixed-grid.has-11-cols-fullhd > .grid { - --bulma-grid-column-count: 11; - } - .fixed-grid.has-12-cols-fullhd > .grid { - --bulma-grid-column-count: 12; - } -} -@container bulma-fixed-grid (max-width: 768px) { - .fixed-grid.has-auto-count .grid { - --bulma-grid-column-count: 2; - } -} -@container bulma-fixed-grid (min-width: 769px) { - .fixed-grid.has-auto-count .grid { - --bulma-grid-column-count: 4; - } -} -@container bulma-fixed-grid (min-width: 1024px) { - .fixed-grid.has-auto-count .grid { - --bulma-grid-column-count: 8; - } -} -@container bulma-fixed-grid (min-width: 1216px) { - .fixed-grid.has-auto-count .grid { - --bulma-grid-column-count: 12; - } -} -@container bulma-fixed-grid (min-width: 1408px) { - .fixed-grid.has-auto-count .grid { - --bulma-grid-column-count: 16; - } -} - -.grid { - --bulma-grid-gap: 0.75rem; - --bulma-grid-column-min: 9rem; - --bulma-grid-cell-column-span: 1; - --bulma-grid-cell-row-span: 1; - display: grid; - gap: var(--bulma-grid-gap); - column-gap: var(--bulma-grid-column-gap, var(--bulma-grid-gap)); - row-gap: var(--bulma-grid-row-gap, var(--bulma-grid-gap)); - grid-template-columns: repeat(auto-fit, minmax(var(--bulma-grid-column-min), 1fr)); - grid-template-rows: auto; -} -.grid.is-auto-fill { - grid-template-columns: repeat(auto-fill, minmax(var(--bulma-grid-column-min), 1fr)); -} -.grid.is-col-min-1 { - --bulma-grid-column-min: 1.5rem; -} -.grid.is-col-min-2 { - --bulma-grid-column-min: 3rem; -} -.grid.is-col-min-3 { - --bulma-grid-column-min: 4.5rem; -} -.grid.is-col-min-4 { - --bulma-grid-column-min: 6rem; -} -.grid.is-col-min-5 { - --bulma-grid-column-min: 7.5rem; -} -.grid.is-col-min-6 { - --bulma-grid-column-min: 9rem; -} -.grid.is-col-min-7 { - --bulma-grid-column-min: 10.5rem; -} -.grid.is-col-min-8 { - --bulma-grid-column-min: 12rem; -} -.grid.is-col-min-9 { - --bulma-grid-column-min: 13.5rem; -} -.grid.is-col-min-10 { - --bulma-grid-column-min: 15rem; -} -.grid.is-col-min-11 { - --bulma-grid-column-min: 16.5rem; -} -.grid.is-col-min-12 { - --bulma-grid-column-min: 18rem; -} -.grid.is-col-min-13 { - --bulma-grid-column-min: 19.5rem; -} -.grid.is-col-min-14 { - --bulma-grid-column-min: 21rem; -} -.grid.is-col-min-15 { - --bulma-grid-column-min: 22.5rem; -} -.grid.is-col-min-16 { - --bulma-grid-column-min: 24rem; -} -.grid.is-col-min-17 { - --bulma-grid-column-min: 25.5rem; -} -.grid.is-col-min-18 { - --bulma-grid-column-min: 27rem; -} -.grid.is-col-min-19 { - --bulma-grid-column-min: 28.5rem; -} -.grid.is-col-min-20 { - --bulma-grid-column-min: 30rem; -} -.grid.is-col-min-21 { - --bulma-grid-column-min: 31.5rem; -} -.grid.is-col-min-22 { - --bulma-grid-column-min: 33rem; -} -.grid.is-col-min-23 { - --bulma-grid-column-min: 34.5rem; -} -.grid.is-col-min-24 { - --bulma-grid-column-min: 36rem; -} -.grid.is-col-min-25 { - --bulma-grid-column-min: 37.5rem; -} -.grid.is-col-min-26 { - --bulma-grid-column-min: 39rem; -} -.grid.is-col-min-27 { - --bulma-grid-column-min: 40.5rem; -} -.grid.is-col-min-28 { - --bulma-grid-column-min: 42rem; -} -.grid.is-col-min-29 { - --bulma-grid-column-min: 43.5rem; -} -.grid.is-col-min-30 { - --bulma-grid-column-min: 45rem; -} -.grid.is-col-min-31 { - --bulma-grid-column-min: 46.5rem; -} -.grid.is-col-min-32 { - --bulma-grid-column-min: 48rem; -} - -.cell { - grid-column-end: span var(--bulma-grid-cell-column-span); - grid-column-start: var(--bulma-grid-cell-column-start); - grid-row-end: span var(--bulma-grid-cell-row-span); - grid-row-start: var(--bulma-grid-cell-row-start); -} -.cell.is-col-start-end { - --bulma-grid-cell-column-start: -1; -} -.cell.is-row-start-end { - --bulma-grid-cell-row-start: -1; -} -.cell.is-col-start-1 { - --bulma-grid-cell-column-start: 1; -} -.cell.is-col-end-1 { - --bulma-grid-cell-column-end: 1; -} -.cell.is-col-from-end-1 { - --bulma-grid-cell-column-start: -1; -} -.cell.is-col-span-1 { - --bulma-grid-cell-column-span: 1; -} -.cell.is-row-start-1 { - --bulma-grid-cell-row-start: 1; -} -.cell.is-row-end-1 { - --bulma-grid-cell-row-end: 1; -} -.cell.is-row-from-end-1 { - --bulma-grid-cell-row-start: -1; -} -.cell.is-row-span-1 { - --bulma-grid-cell-row-span: 1; -} -.cell.is-col-start-2 { - --bulma-grid-cell-column-start: 2; -} -.cell.is-col-end-2 { - --bulma-grid-cell-column-end: 2; -} -.cell.is-col-from-end-2 { - --bulma-grid-cell-column-start: -2; -} -.cell.is-col-span-2 { - --bulma-grid-cell-column-span: 2; -} -.cell.is-row-start-2 { - --bulma-grid-cell-row-start: 2; -} -.cell.is-row-end-2 { - --bulma-grid-cell-row-end: 2; -} -.cell.is-row-from-end-2 { - --bulma-grid-cell-row-start: -2; -} -.cell.is-row-span-2 { - --bulma-grid-cell-row-span: 2; -} -.cell.is-col-start-3 { - --bulma-grid-cell-column-start: 3; -} -.cell.is-col-end-3 { - --bulma-grid-cell-column-end: 3; -} -.cell.is-col-from-end-3 { - --bulma-grid-cell-column-start: -3; -} -.cell.is-col-span-3 { - --bulma-grid-cell-column-span: 3; -} -.cell.is-row-start-3 { - --bulma-grid-cell-row-start: 3; -} -.cell.is-row-end-3 { - --bulma-grid-cell-row-end: 3; -} -.cell.is-row-from-end-3 { - --bulma-grid-cell-row-start: -3; -} -.cell.is-row-span-3 { - --bulma-grid-cell-row-span: 3; -} -.cell.is-col-start-4 { - --bulma-grid-cell-column-start: 4; -} -.cell.is-col-end-4 { - --bulma-grid-cell-column-end: 4; -} -.cell.is-col-from-end-4 { - --bulma-grid-cell-column-start: -4; -} -.cell.is-col-span-4 { - --bulma-grid-cell-column-span: 4; -} -.cell.is-row-start-4 { - --bulma-grid-cell-row-start: 4; -} -.cell.is-row-end-4 { - --bulma-grid-cell-row-end: 4; -} -.cell.is-row-from-end-4 { - --bulma-grid-cell-row-start: -4; -} -.cell.is-row-span-4 { - --bulma-grid-cell-row-span: 4; -} -.cell.is-col-start-5 { - --bulma-grid-cell-column-start: 5; -} -.cell.is-col-end-5 { - --bulma-grid-cell-column-end: 5; -} -.cell.is-col-from-end-5 { - --bulma-grid-cell-column-start: -5; -} -.cell.is-col-span-5 { - --bulma-grid-cell-column-span: 5; -} -.cell.is-row-start-5 { - --bulma-grid-cell-row-start: 5; -} -.cell.is-row-end-5 { - --bulma-grid-cell-row-end: 5; -} -.cell.is-row-from-end-5 { - --bulma-grid-cell-row-start: -5; -} -.cell.is-row-span-5 { - --bulma-grid-cell-row-span: 5; -} -.cell.is-col-start-6 { - --bulma-grid-cell-column-start: 6; -} -.cell.is-col-end-6 { - --bulma-grid-cell-column-end: 6; -} -.cell.is-col-from-end-6 { - --bulma-grid-cell-column-start: -6; -} -.cell.is-col-span-6 { - --bulma-grid-cell-column-span: 6; -} -.cell.is-row-start-6 { - --bulma-grid-cell-row-start: 6; -} -.cell.is-row-end-6 { - --bulma-grid-cell-row-end: 6; -} -.cell.is-row-from-end-6 { - --bulma-grid-cell-row-start: -6; -} -.cell.is-row-span-6 { - --bulma-grid-cell-row-span: 6; -} -.cell.is-col-start-7 { - --bulma-grid-cell-column-start: 7; -} -.cell.is-col-end-7 { - --bulma-grid-cell-column-end: 7; -} -.cell.is-col-from-end-7 { - --bulma-grid-cell-column-start: -7; -} -.cell.is-col-span-7 { - --bulma-grid-cell-column-span: 7; -} -.cell.is-row-start-7 { - --bulma-grid-cell-row-start: 7; -} -.cell.is-row-end-7 { - --bulma-grid-cell-row-end: 7; -} -.cell.is-row-from-end-7 { - --bulma-grid-cell-row-start: -7; -} -.cell.is-row-span-7 { - --bulma-grid-cell-row-span: 7; -} -.cell.is-col-start-8 { - --bulma-grid-cell-column-start: 8; -} -.cell.is-col-end-8 { - --bulma-grid-cell-column-end: 8; -} -.cell.is-col-from-end-8 { - --bulma-grid-cell-column-start: -8; -} -.cell.is-col-span-8 { - --bulma-grid-cell-column-span: 8; -} -.cell.is-row-start-8 { - --bulma-grid-cell-row-start: 8; -} -.cell.is-row-end-8 { - --bulma-grid-cell-row-end: 8; -} -.cell.is-row-from-end-8 { - --bulma-grid-cell-row-start: -8; -} -.cell.is-row-span-8 { - --bulma-grid-cell-row-span: 8; -} -.cell.is-col-start-9 { - --bulma-grid-cell-column-start: 9; -} -.cell.is-col-end-9 { - --bulma-grid-cell-column-end: 9; -} -.cell.is-col-from-end-9 { - --bulma-grid-cell-column-start: -9; -} -.cell.is-col-span-9 { - --bulma-grid-cell-column-span: 9; -} -.cell.is-row-start-9 { - --bulma-grid-cell-row-start: 9; -} -.cell.is-row-end-9 { - --bulma-grid-cell-row-end: 9; -} -.cell.is-row-from-end-9 { - --bulma-grid-cell-row-start: -9; -} -.cell.is-row-span-9 { - --bulma-grid-cell-row-span: 9; -} -.cell.is-col-start-10 { - --bulma-grid-cell-column-start: 10; -} -.cell.is-col-end-10 { - --bulma-grid-cell-column-end: 10; -} -.cell.is-col-from-end-10 { - --bulma-grid-cell-column-start: -10; -} -.cell.is-col-span-10 { - --bulma-grid-cell-column-span: 10; -} -.cell.is-row-start-10 { - --bulma-grid-cell-row-start: 10; -} -.cell.is-row-end-10 { - --bulma-grid-cell-row-end: 10; -} -.cell.is-row-from-end-10 { - --bulma-grid-cell-row-start: -10; -} -.cell.is-row-span-10 { - --bulma-grid-cell-row-span: 10; -} -.cell.is-col-start-11 { - --bulma-grid-cell-column-start: 11; -} -.cell.is-col-end-11 { - --bulma-grid-cell-column-end: 11; -} -.cell.is-col-from-end-11 { - --bulma-grid-cell-column-start: -11; -} -.cell.is-col-span-11 { - --bulma-grid-cell-column-span: 11; -} -.cell.is-row-start-11 { - --bulma-grid-cell-row-start: 11; -} -.cell.is-row-end-11 { - --bulma-grid-cell-row-end: 11; -} -.cell.is-row-from-end-11 { - --bulma-grid-cell-row-start: -11; -} -.cell.is-row-span-11 { - --bulma-grid-cell-row-span: 11; -} -.cell.is-col-start-12 { - --bulma-grid-cell-column-start: 12; -} -.cell.is-col-end-12 { - --bulma-grid-cell-column-end: 12; -} -.cell.is-col-from-end-12 { - --bulma-grid-cell-column-start: -12; -} -.cell.is-col-span-12 { - --bulma-grid-cell-column-span: 12; -} -.cell.is-row-start-12 { - --bulma-grid-cell-row-start: 12; -} -.cell.is-row-end-12 { - --bulma-grid-cell-row-end: 12; -} -.cell.is-row-from-end-12 { - --bulma-grid-cell-row-start: -12; -} -.cell.is-row-span-12 { - --bulma-grid-cell-row-span: 12; -} -@media screen and (max-width: 768px) { - .cell.is-col-start-1-mobile { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-mobile { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-mobile { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-mobile { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-mobile { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-mobile { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-mobile { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-mobile { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-mobile { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-mobile { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-mobile { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-mobile { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-mobile { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-mobile { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-mobile { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-mobile { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-mobile { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-mobile { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-mobile { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-mobile { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-mobile { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-mobile { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-mobile { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-mobile { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-mobile { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-mobile { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-mobile { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-mobile { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-mobile { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-mobile { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-mobile { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-mobile { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-mobile { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-mobile { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-mobile { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-mobile { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-mobile { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-mobile { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-mobile { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-mobile { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-mobile { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-mobile { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-mobile { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-mobile { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-mobile { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-mobile { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-mobile { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-mobile { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-mobile { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-mobile { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-mobile { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-mobile { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-mobile { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-mobile { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-mobile { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-mobile { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-mobile { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-mobile { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-mobile { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-mobile { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-mobile { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-mobile { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-mobile { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-mobile { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-mobile { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-mobile { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-mobile { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-mobile { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-mobile { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-mobile { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-mobile { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-mobile { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-mobile { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-mobile { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-mobile { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-mobile { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-mobile { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-mobile { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-mobile { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-mobile { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-mobile { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-mobile { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-mobile { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-mobile { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-mobile { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-mobile { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-mobile { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-mobile { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-mobile { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-mobile { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-mobile { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-mobile { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-mobile { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-mobile { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-mobile { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-mobile { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 769px), print { - .cell.is-col-start-1-tablet { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-tablet { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-tablet { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-tablet { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-tablet { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-tablet { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-tablet { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-tablet { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-tablet { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-tablet { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-tablet { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-tablet { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-tablet { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-tablet { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-tablet { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-tablet { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-tablet { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-tablet { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-tablet { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-tablet { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-tablet { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-tablet { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-tablet { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-tablet { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-tablet { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-tablet { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-tablet { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-tablet { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-tablet { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-tablet { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-tablet { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-tablet { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-tablet { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-tablet { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-tablet { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-tablet { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-tablet { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-tablet { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-tablet { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-tablet { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-tablet { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-tablet { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-tablet { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-tablet { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-tablet { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-tablet { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-tablet { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-tablet { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-tablet { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-tablet { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-tablet { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-tablet { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-tablet { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-tablet { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-tablet { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-tablet { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-tablet { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-tablet { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-tablet { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-tablet { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-tablet { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-tablet { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-tablet { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-tablet { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-tablet { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-tablet { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-tablet { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-tablet { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-tablet { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-tablet { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-tablet { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-tablet { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-tablet { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-tablet { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-tablet { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-tablet { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-tablet { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-tablet { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-tablet { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-tablet { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-tablet { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-tablet { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-tablet { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-tablet { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-tablet { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-tablet { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-tablet { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-tablet { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-tablet { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-tablet { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-tablet { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-tablet { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-tablet { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-tablet { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-tablet { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-tablet { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 769px) and (max-width: 1023px) { - .cell.is-col-start-1-tablet-only { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-tablet-only { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-tablet-only { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-tablet-only { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-tablet-only { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-tablet-only { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-tablet-only { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-tablet-only { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-tablet-only { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-tablet-only { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-tablet-only { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-tablet-only { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-tablet-only { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-tablet-only { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-tablet-only { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-tablet-only { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-tablet-only { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-tablet-only { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-tablet-only { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-tablet-only { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-tablet-only { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-tablet-only { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-tablet-only { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-tablet-only { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-tablet-only { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-tablet-only { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-tablet-only { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-tablet-only { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-tablet-only { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-tablet-only { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-tablet-only { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-tablet-only { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-tablet-only { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-tablet-only { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-tablet-only { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-tablet-only { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-tablet-only { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-tablet-only { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-tablet-only { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-tablet-only { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-tablet-only { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-tablet-only { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-tablet-only { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-tablet-only { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-tablet-only { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-tablet-only { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-tablet-only { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-tablet-only { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-tablet-only { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-tablet-only { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-tablet-only { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-tablet-only { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-tablet-only { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-tablet-only { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-tablet-only { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-tablet-only { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-tablet-only { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-tablet-only { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-tablet-only { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-tablet-only { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-tablet-only { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-tablet-only { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-tablet-only { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-tablet-only { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-tablet-only { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-tablet-only { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-tablet-only { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-tablet-only { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-tablet-only { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-tablet-only { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-tablet-only { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-tablet-only { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-tablet-only { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-tablet-only { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-tablet-only { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-tablet-only { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-tablet-only { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-tablet-only { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-tablet-only { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-tablet-only { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-tablet-only { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-tablet-only { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-tablet-only { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-tablet-only { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-tablet-only { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-tablet-only { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-tablet-only { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-tablet-only { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-tablet-only { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-tablet-only { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-tablet-only { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-tablet-only { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-tablet-only { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-tablet-only { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-tablet-only { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-tablet-only { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 1024px) { - .cell.is-col-start-1-desktop { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-desktop { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-desktop { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-desktop { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-desktop { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-desktop { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-desktop { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-desktop { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-desktop { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-desktop { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-desktop { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-desktop { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-desktop { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-desktop { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-desktop { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-desktop { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-desktop { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-desktop { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-desktop { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-desktop { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-desktop { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-desktop { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-desktop { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-desktop { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-desktop { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-desktop { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-desktop { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-desktop { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-desktop { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-desktop { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-desktop { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-desktop { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-desktop { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-desktop { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-desktop { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-desktop { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-desktop { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-desktop { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-desktop { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-desktop { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-desktop { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-desktop { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-desktop { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-desktop { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-desktop { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-desktop { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-desktop { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-desktop { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-desktop { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-desktop { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-desktop { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-desktop { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-desktop { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-desktop { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-desktop { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-desktop { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-desktop { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-desktop { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-desktop { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-desktop { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-desktop { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-desktop { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-desktop { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-desktop { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-desktop { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-desktop { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-desktop { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-desktop { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-desktop { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-desktop { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-desktop { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-desktop { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-desktop { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-desktop { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-desktop { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-desktop { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-desktop { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-desktop { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-desktop { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-desktop { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-desktop { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-desktop { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-desktop { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-desktop { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-desktop { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-desktop { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-desktop { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-desktop { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-desktop { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-desktop { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-desktop { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-desktop { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-desktop { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-desktop { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-desktop { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-desktop { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .cell.is-col-start-1-desktop-only { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-desktop-only { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-desktop-only { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-desktop-only { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-desktop-only { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-desktop-only { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-desktop-only { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-desktop-only { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-desktop-only { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-desktop-only { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-desktop-only { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-desktop-only { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-desktop-only { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-desktop-only { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-desktop-only { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-desktop-only { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-desktop-only { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-desktop-only { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-desktop-only { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-desktop-only { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-desktop-only { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-desktop-only { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-desktop-only { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-desktop-only { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-desktop-only { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-desktop-only { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-desktop-only { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-desktop-only { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-desktop-only { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-desktop-only { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-desktop-only { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-desktop-only { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-desktop-only { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-desktop-only { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-desktop-only { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-desktop-only { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-desktop-only { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-desktop-only { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-desktop-only { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-desktop-only { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-desktop-only { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-desktop-only { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-desktop-only { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-desktop-only { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-desktop-only { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-desktop-only { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-desktop-only { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-desktop-only { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-desktop-only { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-desktop-only { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-desktop-only { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-desktop-only { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-desktop-only { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-desktop-only { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-desktop-only { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-desktop-only { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-desktop-only { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-desktop-only { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-desktop-only { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-desktop-only { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-desktop-only { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-desktop-only { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-desktop-only { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-desktop-only { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-desktop-only { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-desktop-only { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-desktop-only { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-desktop-only { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-desktop-only { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-desktop-only { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-desktop-only { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-desktop-only { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-desktop-only { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-desktop-only { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-desktop-only { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-desktop-only { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-desktop-only { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-desktop-only { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-desktop-only { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-desktop-only { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-desktop-only { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-desktop-only { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-desktop-only { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-desktop-only { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-desktop-only { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-desktop-only { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-desktop-only { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-desktop-only { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-desktop-only { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-desktop-only { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-desktop-only { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-desktop-only { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-desktop-only { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-desktop-only { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-desktop-only { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-desktop-only { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 1216px) { - .cell.is-col-start-1-widescreen { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-widescreen { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-widescreen { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-widescreen { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-widescreen { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-widescreen { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-widescreen { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-widescreen { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-widescreen { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-widescreen { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-widescreen { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-widescreen { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-widescreen { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-widescreen { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-widescreen { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-widescreen { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-widescreen { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-widescreen { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-widescreen { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-widescreen { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-widescreen { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-widescreen { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-widescreen { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-widescreen { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-widescreen { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-widescreen { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-widescreen { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-widescreen { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-widescreen { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-widescreen { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-widescreen { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-widescreen { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-widescreen { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-widescreen { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-widescreen { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-widescreen { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-widescreen { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-widescreen { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-widescreen { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-widescreen { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-widescreen { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-widescreen { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-widescreen { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-widescreen { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-widescreen { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-widescreen { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-widescreen { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-widescreen { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-widescreen { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-widescreen { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-widescreen { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-widescreen { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-widescreen { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-widescreen { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-widescreen { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-widescreen { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-widescreen { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-widescreen { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-widescreen { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-widescreen { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-widescreen { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-widescreen { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-widescreen { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-widescreen { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-widescreen { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-widescreen { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-widescreen { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-widescreen { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-widescreen { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-widescreen { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-widescreen { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-widescreen { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-widescreen { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-widescreen { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-widescreen { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-widescreen { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-widescreen { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-widescreen { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-widescreen { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-widescreen { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-widescreen { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-widescreen { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-widescreen { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-widescreen { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-widescreen { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-widescreen { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-widescreen { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-widescreen { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-widescreen { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-widescreen { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-widescreen { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-widescreen { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-widescreen { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-widescreen { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-widescreen { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-widescreen { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .cell.is-col-start-1-widescreen-only { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-widescreen-only { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-widescreen-only { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-widescreen-only { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-widescreen-only { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-widescreen-only { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-widescreen-only { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-widescreen-only { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-widescreen-only { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-widescreen-only { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-widescreen-only { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-widescreen-only { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-widescreen-only { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-widescreen-only { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-widescreen-only { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-widescreen-only { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-widescreen-only { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-widescreen-only { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-widescreen-only { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-widescreen-only { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-widescreen-only { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-widescreen-only { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-widescreen-only { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-widescreen-only { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-widescreen-only { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-widescreen-only { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-widescreen-only { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-widescreen-only { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-widescreen-only { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-widescreen-only { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-widescreen-only { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-widescreen-only { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-widescreen-only { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-widescreen-only { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-widescreen-only { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-widescreen-only { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-widescreen-only { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-widescreen-only { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-widescreen-only { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-widescreen-only { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-widescreen-only { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-widescreen-only { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-widescreen-only { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-widescreen-only { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-widescreen-only { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-widescreen-only { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-widescreen-only { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-widescreen-only { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-widescreen-only { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-widescreen-only { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-widescreen-only { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-widescreen-only { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-widescreen-only { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-widescreen-only { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-widescreen-only { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-widescreen-only { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-widescreen-only { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-widescreen-only { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-widescreen-only { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-widescreen-only { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-widescreen-only { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-widescreen-only { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-widescreen-only { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-widescreen-only { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-widescreen-only { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-widescreen-only { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-widescreen-only { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-widescreen-only { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-widescreen-only { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-widescreen-only { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-widescreen-only { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-widescreen-only { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-widescreen-only { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-widescreen-only { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-widescreen-only { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-widescreen-only { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-widescreen-only { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-widescreen-only { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-widescreen-only { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-widescreen-only { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-widescreen-only { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-widescreen-only { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-widescreen-only { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-widescreen-only { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-widescreen-only { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-widescreen-only { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-widescreen-only { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-widescreen-only { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-widescreen-only { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-widescreen-only { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-widescreen-only { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-widescreen-only { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-widescreen-only { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-widescreen-only { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-widescreen-only { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-widescreen-only { - --bulma-grid-cell-row-span: 12; - } -} -@media screen and (min-width: 1408px) { - .cell.is-col-start-1-fullhd { - --bulma-grid-cell-column-start: 1; - } - .cell.is-col-end-1-fullhd { - --bulma-grid-cell-column-end: 1; - } - .cell.is-col-from-end-1-fullhd { - --bulma-grid-cell-column-start: -1; - } - .cell.is-col-span-1-fullhd { - --bulma-grid-cell-column-span: 1; - } - .cell.is-row-start-1-fullhd { - --bulma-grid-cell-row-start: 1; - } - .cell.is-row-end-1-fullhd { - --bulma-grid-cell-row-end: 1; - } - .cell.is-row-from-end-1-fullhd { - --bulma-grid-cell-row-start: -1; - } - .cell.is-row-span-1-fullhd { - --bulma-grid-cell-row-span: 1; - } - .cell.is-col-start-2-fullhd { - --bulma-grid-cell-column-start: 2; - } - .cell.is-col-end-2-fullhd { - --bulma-grid-cell-column-end: 2; - } - .cell.is-col-from-end-2-fullhd { - --bulma-grid-cell-column-start: -2; - } - .cell.is-col-span-2-fullhd { - --bulma-grid-cell-column-span: 2; - } - .cell.is-row-start-2-fullhd { - --bulma-grid-cell-row-start: 2; - } - .cell.is-row-end-2-fullhd { - --bulma-grid-cell-row-end: 2; - } - .cell.is-row-from-end-2-fullhd { - --bulma-grid-cell-row-start: -2; - } - .cell.is-row-span-2-fullhd { - --bulma-grid-cell-row-span: 2; - } - .cell.is-col-start-3-fullhd { - --bulma-grid-cell-column-start: 3; - } - .cell.is-col-end-3-fullhd { - --bulma-grid-cell-column-end: 3; - } - .cell.is-col-from-end-3-fullhd { - --bulma-grid-cell-column-start: -3; - } - .cell.is-col-span-3-fullhd { - --bulma-grid-cell-column-span: 3; - } - .cell.is-row-start-3-fullhd { - --bulma-grid-cell-row-start: 3; - } - .cell.is-row-end-3-fullhd { - --bulma-grid-cell-row-end: 3; - } - .cell.is-row-from-end-3-fullhd { - --bulma-grid-cell-row-start: -3; - } - .cell.is-row-span-3-fullhd { - --bulma-grid-cell-row-span: 3; - } - .cell.is-col-start-4-fullhd { - --bulma-grid-cell-column-start: 4; - } - .cell.is-col-end-4-fullhd { - --bulma-grid-cell-column-end: 4; - } - .cell.is-col-from-end-4-fullhd { - --bulma-grid-cell-column-start: -4; - } - .cell.is-col-span-4-fullhd { - --bulma-grid-cell-column-span: 4; - } - .cell.is-row-start-4-fullhd { - --bulma-grid-cell-row-start: 4; - } - .cell.is-row-end-4-fullhd { - --bulma-grid-cell-row-end: 4; - } - .cell.is-row-from-end-4-fullhd { - --bulma-grid-cell-row-start: -4; - } - .cell.is-row-span-4-fullhd { - --bulma-grid-cell-row-span: 4; - } - .cell.is-col-start-5-fullhd { - --bulma-grid-cell-column-start: 5; - } - .cell.is-col-end-5-fullhd { - --bulma-grid-cell-column-end: 5; - } - .cell.is-col-from-end-5-fullhd { - --bulma-grid-cell-column-start: -5; - } - .cell.is-col-span-5-fullhd { - --bulma-grid-cell-column-span: 5; - } - .cell.is-row-start-5-fullhd { - --bulma-grid-cell-row-start: 5; - } - .cell.is-row-end-5-fullhd { - --bulma-grid-cell-row-end: 5; - } - .cell.is-row-from-end-5-fullhd { - --bulma-grid-cell-row-start: -5; - } - .cell.is-row-span-5-fullhd { - --bulma-grid-cell-row-span: 5; - } - .cell.is-col-start-6-fullhd { - --bulma-grid-cell-column-start: 6; - } - .cell.is-col-end-6-fullhd { - --bulma-grid-cell-column-end: 6; - } - .cell.is-col-from-end-6-fullhd { - --bulma-grid-cell-column-start: -6; - } - .cell.is-col-span-6-fullhd { - --bulma-grid-cell-column-span: 6; - } - .cell.is-row-start-6-fullhd { - --bulma-grid-cell-row-start: 6; - } - .cell.is-row-end-6-fullhd { - --bulma-grid-cell-row-end: 6; - } - .cell.is-row-from-end-6-fullhd { - --bulma-grid-cell-row-start: -6; - } - .cell.is-row-span-6-fullhd { - --bulma-grid-cell-row-span: 6; - } - .cell.is-col-start-7-fullhd { - --bulma-grid-cell-column-start: 7; - } - .cell.is-col-end-7-fullhd { - --bulma-grid-cell-column-end: 7; - } - .cell.is-col-from-end-7-fullhd { - --bulma-grid-cell-column-start: -7; - } - .cell.is-col-span-7-fullhd { - --bulma-grid-cell-column-span: 7; - } - .cell.is-row-start-7-fullhd { - --bulma-grid-cell-row-start: 7; - } - .cell.is-row-end-7-fullhd { - --bulma-grid-cell-row-end: 7; - } - .cell.is-row-from-end-7-fullhd { - --bulma-grid-cell-row-start: -7; - } - .cell.is-row-span-7-fullhd { - --bulma-grid-cell-row-span: 7; - } - .cell.is-col-start-8-fullhd { - --bulma-grid-cell-column-start: 8; - } - .cell.is-col-end-8-fullhd { - --bulma-grid-cell-column-end: 8; - } - .cell.is-col-from-end-8-fullhd { - --bulma-grid-cell-column-start: -8; - } - .cell.is-col-span-8-fullhd { - --bulma-grid-cell-column-span: 8; - } - .cell.is-row-start-8-fullhd { - --bulma-grid-cell-row-start: 8; - } - .cell.is-row-end-8-fullhd { - --bulma-grid-cell-row-end: 8; - } - .cell.is-row-from-end-8-fullhd { - --bulma-grid-cell-row-start: -8; - } - .cell.is-row-span-8-fullhd { - --bulma-grid-cell-row-span: 8; - } - .cell.is-col-start-9-fullhd { - --bulma-grid-cell-column-start: 9; - } - .cell.is-col-end-9-fullhd { - --bulma-grid-cell-column-end: 9; - } - .cell.is-col-from-end-9-fullhd { - --bulma-grid-cell-column-start: -9; - } - .cell.is-col-span-9-fullhd { - --bulma-grid-cell-column-span: 9; - } - .cell.is-row-start-9-fullhd { - --bulma-grid-cell-row-start: 9; - } - .cell.is-row-end-9-fullhd { - --bulma-grid-cell-row-end: 9; - } - .cell.is-row-from-end-9-fullhd { - --bulma-grid-cell-row-start: -9; - } - .cell.is-row-span-9-fullhd { - --bulma-grid-cell-row-span: 9; - } - .cell.is-col-start-10-fullhd { - --bulma-grid-cell-column-start: 10; - } - .cell.is-col-end-10-fullhd { - --bulma-grid-cell-column-end: 10; - } - .cell.is-col-from-end-10-fullhd { - --bulma-grid-cell-column-start: -10; - } - .cell.is-col-span-10-fullhd { - --bulma-grid-cell-column-span: 10; - } - .cell.is-row-start-10-fullhd { - --bulma-grid-cell-row-start: 10; - } - .cell.is-row-end-10-fullhd { - --bulma-grid-cell-row-end: 10; - } - .cell.is-row-from-end-10-fullhd { - --bulma-grid-cell-row-start: -10; - } - .cell.is-row-span-10-fullhd { - --bulma-grid-cell-row-span: 10; - } - .cell.is-col-start-11-fullhd { - --bulma-grid-cell-column-start: 11; - } - .cell.is-col-end-11-fullhd { - --bulma-grid-cell-column-end: 11; - } - .cell.is-col-from-end-11-fullhd { - --bulma-grid-cell-column-start: -11; - } - .cell.is-col-span-11-fullhd { - --bulma-grid-cell-column-span: 11; - } - .cell.is-row-start-11-fullhd { - --bulma-grid-cell-row-start: 11; - } - .cell.is-row-end-11-fullhd { - --bulma-grid-cell-row-end: 11; - } - .cell.is-row-from-end-11-fullhd { - --bulma-grid-cell-row-start: -11; - } - .cell.is-row-span-11-fullhd { - --bulma-grid-cell-row-span: 11; - } - .cell.is-col-start-12-fullhd { - --bulma-grid-cell-column-start: 12; - } - .cell.is-col-end-12-fullhd { - --bulma-grid-cell-column-end: 12; - } - .cell.is-col-from-end-12-fullhd { - --bulma-grid-cell-column-start: -12; - } - .cell.is-col-span-12-fullhd { - --bulma-grid-cell-column-span: 12; - } - .cell.is-row-start-12-fullhd { - --bulma-grid-cell-row-start: 12; - } - .cell.is-row-end-12-fullhd { - --bulma-grid-cell-row-end: 12; - } - .cell.is-row-from-end-12-fullhd { - --bulma-grid-cell-row-start: -12; - } - .cell.is-row-span-12-fullhd { - --bulma-grid-cell-row-span: 12; - } -} - -/* Bulma Components */ -.container { + margin-left: -0.75rem; + margin-right: -0.75rem; + margin-top: -0.75rem; } + .columns:last-child { + margin-bottom: -0.75rem; } + .columns:not(:last-child) { + margin-bottom: calc(1.5rem - 0.75rem); } + .columns.is-centered { + justify-content: center; } + .columns.is-gapless { + margin-left: 0; + margin-right: 0; + margin-top: 0; } + .columns.is-gapless > .column { + margin: 0; + padding: 0 !important; } + .columns.is-gapless:not(:last-child) { + margin-bottom: 1.5rem; } + .columns.is-gapless:last-child { + margin-bottom: 0; } + .columns.is-mobile { + display: flex; } + .columns.is-multiline { + flex-wrap: wrap; } + .columns.is-vcentered { + align-items: center; } + @media screen and (min-width: 769px), print { + .columns:not(.is-desktop) { + display: flex; } } + @media screen and (min-width: 1024px) { + .columns.is-desktop { + display: flex; } } +.columns.is-variable { + --columnGap: 0.75rem; + margin-left: calc(-1 * var(--columnGap)); + margin-right: calc(-1 * var(--columnGap)); } + .columns.is-variable .column { + padding-left: var(--columnGap); + padding-right: var(--columnGap); } + .columns.is-variable.is-0 { + --columnGap: 0rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-0-mobile { + --columnGap: 0rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-0-tablet { + --columnGap: 0rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-0-tablet-only { + --columnGap: 0rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-0-touch { + --columnGap: 0rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-0-desktop { + --columnGap: 0rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-0-desktop-only { + --columnGap: 0rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-0-widescreen { + --columnGap: 0rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-0-widescreen-only { + --columnGap: 0rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-0-fullhd { + --columnGap: 0rem; } } + .columns.is-variable.is-1 { + --columnGap: 0.25rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-1-mobile { + --columnGap: 0.25rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-1-tablet { + --columnGap: 0.25rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-1-tablet-only { + --columnGap: 0.25rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-1-touch { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-1-desktop { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-1-desktop-only { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-1-widescreen { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-1-widescreen-only { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-1-fullhd { + --columnGap: 0.25rem; } } + .columns.is-variable.is-2 { + --columnGap: 0.5rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-2-mobile { + --columnGap: 0.5rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-2-tablet { + --columnGap: 0.5rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-2-tablet-only { + --columnGap: 0.5rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-2-touch { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-2-desktop { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-2-desktop-only { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-2-widescreen { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-2-widescreen-only { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-2-fullhd { + --columnGap: 0.5rem; } } + .columns.is-variable.is-3 { + --columnGap: 0.75rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-3-mobile { + --columnGap: 0.75rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-3-tablet { + --columnGap: 0.75rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-3-tablet-only { + --columnGap: 0.75rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-3-touch { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-3-desktop { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-3-desktop-only { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-3-widescreen { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-3-widescreen-only { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-3-fullhd { + --columnGap: 0.75rem; } } + .columns.is-variable.is-4 { + --columnGap: 1rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-4-mobile { + --columnGap: 1rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-4-tablet { + --columnGap: 1rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-4-tablet-only { + --columnGap: 1rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-4-touch { + --columnGap: 1rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-4-desktop { + --columnGap: 1rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-4-desktop-only { + --columnGap: 1rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-4-widescreen { + --columnGap: 1rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-4-widescreen-only { + --columnGap: 1rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-4-fullhd { + --columnGap: 1rem; } } + .columns.is-variable.is-5 { + --columnGap: 1.25rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-5-mobile { + --columnGap: 1.25rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-5-tablet { + --columnGap: 1.25rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-5-tablet-only { + --columnGap: 1.25rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-5-touch { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-5-desktop { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-5-desktop-only { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-5-widescreen { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-5-widescreen-only { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-5-fullhd { + --columnGap: 1.25rem; } } + .columns.is-variable.is-6 { + --columnGap: 1.5rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-6-mobile { + --columnGap: 1.5rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-6-tablet { + --columnGap: 1.5rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-6-tablet-only { + --columnGap: 1.5rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-6-touch { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-6-desktop { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-6-desktop-only { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-6-widescreen { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-6-widescreen-only { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-6-fullhd { + --columnGap: 1.5rem; } } + .columns.is-variable.is-7 { + --columnGap: 1.75rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-7-mobile { + --columnGap: 1.75rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-7-tablet { + --columnGap: 1.75rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-7-tablet-only { + --columnGap: 1.75rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-7-touch { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-7-desktop { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-7-desktop-only { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-7-widescreen { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-7-widescreen-only { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-7-fullhd { + --columnGap: 1.75rem; } } + .columns.is-variable.is-8 { + --columnGap: 2rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-8-mobile { + --columnGap: 2rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-8-tablet { + --columnGap: 2rem; } } + @media screen and (min-width: 769px) and (max-width: 1023px) { + .columns.is-variable.is-8-tablet-only { + --columnGap: 2rem; } } + @media screen and (max-width: 1023px) { + .columns.is-variable.is-8-touch { + --columnGap: 2rem; } } + @media screen and (min-width: 1024px) { + .columns.is-variable.is-8-desktop { + --columnGap: 2rem; } } + @media screen and (min-width: 1024px) and (max-width: 1215px) { + .columns.is-variable.is-8-desktop-only { + --columnGap: 2rem; } } + @media screen and (min-width: 1216px) { + .columns.is-variable.is-8-widescreen { + --columnGap: 2rem; } } + @media screen and (min-width: 1216px) and (max-width: 1407px) { + .columns.is-variable.is-8-widescreen-only { + --columnGap: 2rem; } } + @media screen and (min-width: 1408px) { + .columns.is-variable.is-8-fullhd { + --columnGap: 2rem; } } +.tile { + align-items: stretch; + display: block; + flex-basis: 0; flex-grow: 1; - margin: 0 auto; - position: relative; - width: 100%; -} -.container.is-fluid { - max-width: none !important; - padding-left: 32px; - padding-right: 32px; - width: 100%; -} -.container.is-max-tablet { - max-width: 705px; -} -@media screen and (min-width: 1024px) { - .container { - max-width: 960px; - } -} -@media screen and (max-width: 1215px) { - .container.is-widescreen:not(.is-max-tablet):not(.is-max-desktop) { - max-width: 1152px; - } -} -@media screen and (max-width: 1407px) { - .container.is-fullhd:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) { - max-width: 1344px; - } -} -@media screen and (min-width: 1216px) { - .container:not(.is-max-tablet):not(.is-max-desktop) { - max-width: 1152px; - } -} -@media screen and (min-width: 1408px) { - .container:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) { - max-width: 1344px; - } -} - -.footer { - --bulma-footer-background-color: var(--bulma-scheme-main-bis); - --bulma-footer-color: false; - --bulma-footer-padding: 3rem 1.5rem 6rem; - background-color: var(--bulma-footer-background-color); - padding: var(--bulma-footer-padding); -} - -.hero { - --bulma-hero-body-padding: 3rem 1.5rem; - --bulma-hero-body-padding-tablet: 3rem 3rem; - --bulma-hero-body-padding-small: 1.5rem; - --bulma-hero-body-padding-medium: 9rem 4.5rem; - --bulma-hero-body-padding-large: 18rem 6rem; - --bulma-hero-gradient-h-offset: 5deg; - --bulma-hero-gradient-s-offset: 10%; - --bulma-hero-gradient-l-offset: 5%; -} - + flex-shrink: 1; + min-height: min-content; } + .tile.is-ancestor { + margin-left: -0.75rem; + margin-right: -0.75rem; + margin-top: -0.75rem; } + .tile.is-ancestor:last-child { + margin-bottom: -0.75rem; } + .tile.is-ancestor:not(:last-child) { + margin-bottom: 0.75rem; } + .tile.is-child { + margin: 0 !important; } + .tile.is-parent { + padding: 0.75rem; } + .tile.is-vertical { + flex-direction: column; } + .tile.is-vertical > .tile.is-child:not(:last-child) { + margin-bottom: 1.5rem !important; } + @media screen and (min-width: 769px), print { + .tile:not(.is-child) { + display: flex; } + .tile.is-1 { + flex: none; + width: 8.3333333333%; } + .tile.is-2 { + flex: none; + width: 16.6666666667%; } + .tile.is-3 { + flex: none; + width: 25%; } + .tile.is-4 { + flex: none; + width: 33.3333333333%; } + .tile.is-5 { + flex: none; + width: 41.6666666667%; } + .tile.is-6 { + flex: none; + width: 50%; } + .tile.is-7 { + flex: none; + width: 58.3333333333%; } + .tile.is-8 { + flex: none; + width: 66.6666666667%; } + .tile.is-9 { + flex: none; + width: 75%; } + .tile.is-10 { + flex: none; + width: 83.3333333333%; } + .tile.is-11 { + flex: none; + width: 91.6666666667%; } + .tile.is-12 { + flex: none; + width: 100%; } } .hero { align-items: stretch; display: flex; flex-direction: column; - justify-content: space-between; -} -.hero .navbar { - background: none; -} -.hero .tabs ul { - border-bottom: none; -} -.hero.is-white { - --bulma-hero-h: var(--bulma-white-h); - --bulma-hero-s: var(--bulma-white-s); - --bulma-hero-background-l: var(--bulma-white-l); - --bulma-hero-color-l: var(--bulma-white-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-white .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-white .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-white .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-white .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-white.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-white.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-black { - --bulma-hero-h: var(--bulma-black-h); - --bulma-hero-s: var(--bulma-black-s); - --bulma-hero-background-l: var(--bulma-black-l); - --bulma-hero-color-l: var(--bulma-black-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-black .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-black .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-black .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-black .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-black.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-black.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-light { - --bulma-hero-h: var(--bulma-light-h); - --bulma-hero-s: var(--bulma-light-s); - --bulma-hero-background-l: var(--bulma-light-l); - --bulma-hero-color-l: var(--bulma-light-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-light .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-light .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-light .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-light .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-light.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-light.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-dark { - --bulma-hero-h: var(--bulma-dark-h); - --bulma-hero-s: var(--bulma-dark-s); - --bulma-hero-background-l: var(--bulma-dark-l); - --bulma-hero-color-l: var(--bulma-dark-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-dark .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-dark .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-dark .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-dark .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-dark.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-dark.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-text { - --bulma-hero-h: var(--bulma-text-h); - --bulma-hero-s: var(--bulma-text-s); - --bulma-hero-background-l: var(--bulma-text-l); - --bulma-hero-color-l: var(--bulma-text-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-text .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-text .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-text .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-text .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-text.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-text.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-primary { - --bulma-hero-h: var(--bulma-primary-h); - --bulma-hero-s: var(--bulma-primary-s); - --bulma-hero-background-l: var(--bulma-primary-l); - --bulma-hero-color-l: var(--bulma-primary-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-primary .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-primary .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-primary .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-primary .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-primary.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-primary.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-link { - --bulma-hero-h: var(--bulma-link-h); - --bulma-hero-s: var(--bulma-link-s); - --bulma-hero-background-l: var(--bulma-link-l); - --bulma-hero-color-l: var(--bulma-link-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-link .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-link .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-link .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-link .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-link.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-link.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-info { - --bulma-hero-h: var(--bulma-info-h); - --bulma-hero-s: var(--bulma-info-s); - --bulma-hero-background-l: var(--bulma-info-l); - --bulma-hero-color-l: var(--bulma-info-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-info .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-info .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-info .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-info .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-info.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-info.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-success { - --bulma-hero-h: var(--bulma-success-h); - --bulma-hero-s: var(--bulma-success-s); - --bulma-hero-background-l: var(--bulma-success-l); - --bulma-hero-color-l: var(--bulma-success-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-success .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-success .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-success .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-success .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-success.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-success.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-warning { - --bulma-hero-h: var(--bulma-warning-h); - --bulma-hero-s: var(--bulma-warning-s); - --bulma-hero-background-l: var(--bulma-warning-l); - --bulma-hero-color-l: var(--bulma-warning-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-warning .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-warning .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-warning .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-warning .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-warning.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-warning.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-danger { - --bulma-hero-h: var(--bulma-danger-h); - --bulma-hero-s: var(--bulma-danger-s); - --bulma-hero-background-l: var(--bulma-danger-l); - --bulma-hero-color-l: var(--bulma-danger-invert-l); - background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-danger .navbar { - --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-danger .tabs { - --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); - --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)); -} -.hero.is-danger .subtitle { - --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-danger .title { - --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); - --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)); -} -.hero.is-danger.is-bold { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); -} -@media screen and (max-width: 768px) { - .hero.is-danger.is-bold .navbar-menu { - background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%); - } -} -.hero.is-small .hero-body { - padding: var(--bulma-hero-body-padding-small); -} -@media screen and (min-width: 769px), print { - .hero.is-medium .hero-body { - padding: var(--bulma-hero-body-padding-medium); - } -} -@media screen and (min-width: 769px), print { - .hero.is-large .hero-body { - padding: var(--bulma-hero-body-padding-large); - } -} -.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body { - align-items: center; - display: flex; -} -.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container { - flex-grow: 1; - flex-shrink: 1; -} -.hero.is-halfheight { - min-height: 50vh; -} -.hero.is-fullheight { - min-height: 100vh; -} + justify-content: space-between; } + .hero .navbar { + background: none; } + .hero .tabs ul { + border-bottom: none; } + .hero.is-white { + background-color: white; + color: #0a0a0a; } + .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-white strong { + color: inherit; } + .hero.is-white .title { + color: #0a0a0a; } + .hero.is-white .subtitle { + color: rgba(10, 10, 10, 0.9); } + .hero.is-white .subtitle a:not(.button), + .hero.is-white .subtitle strong { + color: #0a0a0a; } + @media screen and (max-width: 1023px) { + .hero.is-white .navbar-menu { + background-color: white; } } + .hero.is-white .navbar-item, + .hero.is-white .navbar-link { + color: rgba(10, 10, 10, 0.7); } + .hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active, + .hero.is-white .navbar-link:hover, + .hero.is-white .navbar-link.is-active { + background-color: #f2f2f2; + color: #0a0a0a; } + .hero.is-white .tabs a { + color: #0a0a0a; + opacity: 0.9; } + .hero.is-white .tabs a:hover { + opacity: 1; } + .hero.is-white .tabs li.is-active a { + opacity: 1; } + .hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a { + color: #0a0a0a; } + .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; } + .hero.is-white.is-bold { + background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%); } + @media screen and (max-width: 768px) { + .hero.is-white.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%); } } + .hero.is-black { + background-color: #0a0a0a; + color: white; } + .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-black strong { + color: inherit; } + .hero.is-black .title { + color: white; } + .hero.is-black .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-black .subtitle a:not(.button), + .hero.is-black .subtitle strong { + color: white; } + @media screen and (max-width: 1023px) { + .hero.is-black .navbar-menu { + background-color: #0a0a0a; } } + .hero.is-black .navbar-item, + .hero.is-black .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active, + .hero.is-black .navbar-link:hover, + .hero.is-black .navbar-link.is-active { + background-color: black; + color: white; } + .hero.is-black .tabs a { + color: white; + opacity: 0.9; } + .hero.is-black .tabs a:hover { + opacity: 1; } + .hero.is-black .tabs li.is-active a { + opacity: 1; } + .hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a { + color: white; } + .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover { + background-color: white; + border-color: white; + color: #0a0a0a; } + .hero.is-black.is-bold { + background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } + @media screen and (max-width: 768px) { + .hero.is-black.is-bold .navbar-menu { + background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } } + .hero.is-light { + background-color: whitesmoke; + color: #363636; } + .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-light strong { + color: inherit; } + .hero.is-light .title { + color: #363636; } + .hero.is-light .subtitle { + color: rgba(54, 54, 54, 0.9); } + .hero.is-light .subtitle a:not(.button), + .hero.is-light .subtitle strong { + color: #363636; } + @media screen and (max-width: 1023px) { + .hero.is-light .navbar-menu { + background-color: whitesmoke; } } + .hero.is-light .navbar-item, + .hero.is-light .navbar-link { + color: rgba(54, 54, 54, 0.7); } + .hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active, + .hero.is-light .navbar-link:hover, + .hero.is-light .navbar-link.is-active { + background-color: #e8e8e8; + color: #363636; } + .hero.is-light .tabs a { + color: #363636; + opacity: 0.9; } + .hero.is-light .tabs a:hover { + opacity: 1; } + .hero.is-light .tabs li.is-active a { + opacity: 1; } + .hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a { + color: #363636; } + .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover { + background-color: #363636; + border-color: #363636; + color: whitesmoke; } + .hero.is-light.is-bold { + background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } + @media screen and (max-width: 768px) { + .hero.is-light.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } } + .hero.is-dark { + background-color: #363636; + color: whitesmoke; } + .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-dark strong { + color: inherit; } + .hero.is-dark .title { + color: whitesmoke; } + .hero.is-dark .subtitle { + color: rgba(245, 245, 245, 0.9); } + .hero.is-dark .subtitle a:not(.button), + .hero.is-dark .subtitle strong { + color: whitesmoke; } + @media screen and (max-width: 1023px) { + .hero.is-dark .navbar-menu { + background-color: #363636; } } + .hero.is-dark .navbar-item, + .hero.is-dark .navbar-link { + color: rgba(245, 245, 245, 0.7); } + .hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active, + .hero.is-dark .navbar-link:hover, + .hero.is-dark .navbar-link.is-active { + background-color: #292929; + color: whitesmoke; } + .hero.is-dark .tabs a { + color: whitesmoke; + opacity: 0.9; } + .hero.is-dark .tabs a:hover { + opacity: 1; } + .hero.is-dark .tabs li.is-active a { + opacity: 1; } + .hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a { + color: whitesmoke; } + .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover { + background-color: whitesmoke; + border-color: whitesmoke; + color: #363636; } + .hero.is-dark.is-bold { + background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } + @media screen and (max-width: 768px) { + .hero.is-dark.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } } + .hero.is-primary { + background-color: #478D00; + color: #fff; } + .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-primary strong { + color: inherit; } + .hero.is-primary .title { + color: #fff; } + .hero.is-primary .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-primary .subtitle a:not(.button), + .hero.is-primary .subtitle strong { + color: #fff; } + @media screen and (max-width: 1023px) { + .hero.is-primary .navbar-menu { + background-color: #478D00; } } + .hero.is-primary .navbar-item, + .hero.is-primary .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active, + .hero.is-primary .navbar-link:hover, + .hero.is-primary .navbar-link.is-active { + background-color: #3a7400; + color: #fff; } + .hero.is-primary .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-primary .tabs a:hover { + opacity: 1; } + .hero.is-primary .tabs li.is-active a { + opacity: 1; } + .hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a { + color: #fff; } + .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #478D00; } + .hero.is-primary.is-bold { + background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); } + @media screen and (max-width: 768px) { + .hero.is-primary.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); } } + .hero.is-link { + background-color: #4391E0; + color: #fff; } + .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-link strong { + color: inherit; } + .hero.is-link .title { + color: #fff; } + .hero.is-link .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-link .subtitle a:not(.button), + .hero.is-link .subtitle strong { + color: #fff; } + @media screen and (max-width: 1023px) { + .hero.is-link .navbar-menu { + background-color: #4391E0; } } + .hero.is-link .navbar-item, + .hero.is-link .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active, + .hero.is-link .navbar-link:hover, + .hero.is-link .navbar-link.is-active { + background-color: #2d84dc; + color: #fff; } + .hero.is-link .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-link .tabs a:hover { + opacity: 1; } + .hero.is-link .tabs li.is-active a { + opacity: 1; } + .hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a { + color: #fff; } + .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #4391E0; } + .hero.is-link.is-bold { + background-image: linear-gradient(141deg, #1698da 0%, #4391E0 71%, #5485e8 100%); } + @media screen and (max-width: 768px) { + .hero.is-link.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #1698da 0%, #4391E0 71%, #5485e8 100%); } } + .hero.is-info { + background-color: #209cee; + color: #fff; } + .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-info strong { + color: inherit; } + .hero.is-info .title { + color: #fff; } + .hero.is-info .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-info .subtitle a:not(.button), + .hero.is-info .subtitle strong { + color: #fff; } + @media screen and (max-width: 1023px) { + .hero.is-info .navbar-menu { + background-color: #209cee; } } + .hero.is-info .navbar-item, + .hero.is-info .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active, + .hero.is-info .navbar-link:hover, + .hero.is-info .navbar-link.is-active { + background-color: #118fe4; + color: #fff; } + .hero.is-info .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-info .tabs a:hover { + opacity: 1; } + .hero.is-info .tabs li.is-active a { + opacity: 1; } + .hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a { + color: #fff; } + .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #209cee; } + .hero.is-info.is-bold { + background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%); } + @media screen and (max-width: 768px) { + .hero.is-info.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%); } } + .hero.is-success { + background-color: #478D00; + color: #fff; } + .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-success strong { + color: inherit; } + .hero.is-success .title { + color: #fff; } + .hero.is-success .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-success .subtitle a:not(.button), + .hero.is-success .subtitle strong { + color: #fff; } + @media screen and (max-width: 1023px) { + .hero.is-success .navbar-menu { + background-color: #478D00; } } + .hero.is-success .navbar-item, + .hero.is-success .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active, + .hero.is-success .navbar-link:hover, + .hero.is-success .navbar-link.is-active { + background-color: #3a7400; + color: #fff; } + .hero.is-success .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-success .tabs a:hover { + opacity: 1; } + .hero.is-success .tabs li.is-active a { + opacity: 1; } + .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a { + color: #fff; } + .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #478D00; } + .hero.is-success.is-bold { + background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); } + @media screen and (max-width: 768px) { + .hero.is-success.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); } } + .hero.is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-warning strong { + color: inherit; } + .hero.is-warning .title { + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning .subtitle { + color: rgba(0, 0, 0, 0.9); } + .hero.is-warning .subtitle a:not(.button), + .hero.is-warning .subtitle strong { + color: rgba(0, 0, 0, 0.7); } + @media screen and (max-width: 1023px) { + .hero.is-warning .navbar-menu { + background-color: #ffdd57; } } + .hero.is-warning .navbar-item, + .hero.is-warning .navbar-link { + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active, + .hero.is-warning .navbar-link:hover, + .hero.is-warning .navbar-link.is-active { + background-color: #ffd83e; + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning .tabs a { + color: rgba(0, 0, 0, 0.7); + opacity: 0.9; } + .hero.is-warning .tabs a:hover { + opacity: 1; } + .hero.is-warning .tabs li.is-active a { + opacity: 1; } + .hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a { + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover { + background-color: rgba(0, 0, 0, 0.7); + border-color: rgba(0, 0, 0, 0.7); + color: #ffdd57; } + .hero.is-warning.is-bold { + background-image: linear-gradient(141deg, #ffae24 0%, #ffdd57 71%, #fffa71 100%); } + @media screen and (max-width: 768px) { + .hero.is-warning.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #ffae24 0%, #ffdd57 71%, #fffa71 100%); } } + .hero.is-danger { + background-color: #a70c20; + color: #fff; } + .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + .hero.is-danger strong { + color: inherit; } + .hero.is-danger .title { + color: #fff; } + .hero.is-danger .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-danger .subtitle a:not(.button), + .hero.is-danger .subtitle strong { + color: #fff; } + @media screen and (max-width: 1023px) { + .hero.is-danger .navbar-menu { + background-color: #a70c20; } } + .hero.is-danger .navbar-item, + .hero.is-danger .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active, + .hero.is-danger .navbar-link:hover, + .hero.is-danger .navbar-link.is-active { + background-color: #8f0a1b; + color: #fff; } + .hero.is-danger .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-danger .tabs a:hover { + opacity: 1; } + .hero.is-danger .tabs li.is-active a { + opacity: 1; } + .hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a { + color: #fff; } + .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #a70c20; } + .hero.is-danger.is-bold { + background-image: linear-gradient(141deg, #7e0227 0%, #a70c20 71%, #c41009 100%); } + @media screen and (max-width: 768px) { + .hero.is-danger.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #7e0227 0%, #a70c20 71%, #c41009 100%); } } + .hero.is-small .hero-body { + padding-bottom: 1.5rem; + padding-top: 1.5rem; } + @media screen and (min-width: 769px), print { + .hero.is-medium .hero-body { + padding-bottom: 9rem; + padding-top: 9rem; } } + @media screen and (min-width: 769px), print { + .hero.is-large .hero-body { + padding-bottom: 18rem; + padding-top: 18rem; } } + .hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body { + align-items: center; + display: flex; } + .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container { + flex-grow: 1; + flex-shrink: 1; } + .hero.is-halfheight { + min-height: 50vh; } + .hero.is-fullheight { + min-height: 100vh; } .hero-video { - overflow: hidden; -} -.hero-video video { - left: 50%; - min-height: 100%; - min-width: 100%; - position: absolute; - top: 50%; - transform: translate3d(-50%, -50%, 0); -} -.hero-video.is-transparent { - opacity: 0.3; -} -@media screen and (max-width: 768px) { - .hero-video { - display: none; - } -} - + overflow: hidden; } + .hero-video video { + left: 50%; + min-height: 100%; + min-width: 100%; + position: absolute; + top: 50%; + transform: translate3d(-50%, -50%, 0); } + .hero-video.is-transparent { + opacity: 0.3; } + @media screen and (max-width: 768px) { + .hero-video { + display: none; } } .hero-buttons { - margin-top: 1.5rem; -} -@media screen and (max-width: 768px) { - .hero-buttons .button { - display: flex; - } - .hero-buttons .button:not(:last-child) { - margin-bottom: 0.75rem; - } -} -@media screen and (min-width: 769px), print { - .hero-buttons { - display: flex; - justify-content: center; - } - .hero-buttons .button:not(:last-child) { - margin-inline-end: 1.5rem; - } -} - + margin-top: 1.5rem; } + @media screen and (max-width: 768px) { + .hero-buttons .button { + display: flex; } + .hero-buttons .button:not(:last-child) { + margin-bottom: 0.75rem; } } + @media screen and (min-width: 769px), print { + .hero-buttons { + display: flex; + justify-content: center; } + .hero-buttons .button:not(:last-child) { + margin-right: 1.5rem; } } .hero-head, .hero-foot { flex-grow: 0; - flex-shrink: 0; -} + flex-shrink: 0; } .hero-body { flex-grow: 1; flex-shrink: 0; - padding: var(--bulma-hero-body-padding); -} -@media screen and (min-width: 769px), print { - .hero-body { - padding: var(--bulma-hero-body-padding-tablet); - } -} + padding: 3rem 1.5rem; } -.level { - --bulma-level-item-spacing: calc(var(--bulma-block-spacing) * 0.5); - align-items: center; - display: flex; - flex-direction: column; - justify-content: space-between; - gap: var(--bulma-level-item-spacing); -} -.level code { - border-radius: var(--bulma-radius); -} -.level img { - display: inline-block; - vertical-align: top; -} -.level.is-mobile { - display: flex; - flex-direction: row; -} -.level.is-mobile .level-left, -.level.is-mobile .level-right { - display: flex; -} -.level.is-mobile .level-item:not(.is-narrow) { - flex-grow: 1; -} -@media screen and (min-width: 769px), print { - .level { - display: flex; - flex-direction: row; - } - .level > .level-item:not(.is-narrow) { - flex-grow: 1; - } -} - -.level-item { - align-items: center; - display: flex; - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; - justify-content: center; -} -.level-item .title, -.level-item .subtitle { - margin-bottom: 0; -} - -.level-left, -.level-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; - gap: calc(var(--bulma-block-spacing) * 0.5); -} -.level-left .level-item.is-flexible, -.level-right .level-item.is-flexible { - flex-grow: 1; -} - -.level-left { - align-items: center; - display: flex; - flex-direction: column; - justify-content: flex-start; -} -@media screen and (min-width: 769px), print { - .level-left { - flex-direction: row; - } -} - -.level-right { - align-items: center; - display: flex; - flex-direction: column; - justify-content: flex-end; -} -@media screen and (min-width: 769px), print { - .level-right { - flex-direction: row; - } -} - -.media { - --bulma-media-border-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-border-l), 0.5); - --bulma-media-border-size: 1px; - --bulma-media-spacing: 1rem; - --bulma-media-spacing-large: 1.5rem; - --bulma-media-content-spacing: 0.75rem; - --bulma-media-level-1-spacing: 0.75rem; - --bulma-media-level-1-content-spacing: 0.5rem; - --bulma-media-level-2-spacing: 0.5rem; - align-items: flex-start; - display: flex; - text-align: inherit; -} -.media .content:not(:last-child) { - margin-bottom: var(--bulma-media-content-spacing); -} -.media .media { - border-top-color: var(--bulma-media-border-color); - border-top-style: solid; - border-top-width: var(--bulma-media-border-size); - display: flex; - padding-top: var(--bulma-media-level-1-spacing); -} -.media .media .content:not(:last-child), -.media .media .control:not(:last-child) { - margin-bottom: var(--bulma-media-level-1-content-spacing); -} -.media .media .media { - padding-top: var(--bulma-media-level-2-spacing); -} -.media .media .media + .media { - margin-top: var(--bulma-media-level-2-spacing); -} -.media + .media { - border-top-color: var(--bulma-media-border-color); - border-top-style: solid; - border-top-width: var(--bulma-media-border-size); - margin-top: var(--bulma-media-spacing); - padding-top: var(--bulma-media-spacing); -} -.media.is-large + .media { - margin-top: var(--bulma-media-spacing-large); - padding-top: var(--bulma-media-spacing-large); -} - -.media-left, -.media-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; -} - -.media-left { - margin-inline-end: var(--bulma-media-spacing); -} - -.media-right { - margin-inline-start: var(--bulma-media-spacing); -} - -.media-content { - flex-basis: auto; - flex-grow: 1; - flex-shrink: 1; - text-align: inherit; -} - -@media screen and (max-width: 768px) { - .media-content { - overflow-x: auto; - } -} .section { - --bulma-section-padding: 3rem 1.5rem; - --bulma-section-padding-desktop: 3rem 3rem; - --bulma-section-padding-medium: 9rem 4.5rem; - --bulma-section-padding-large: 18rem 6rem; - padding: var(--bulma-section-padding); -} -@media screen and (min-width: 1024px) { - .section { - padding: var(--bulma-section-padding-desktop); - } - .section.is-medium { - padding: var(--bulma-section-padding-medium); - } - .section.is-large { - padding: var(--bulma-section-padding-large); - } -} -.section.is-fullheight { - min-height: 100vh; -} + padding: 3rem 1.5rem; } + @media screen and (min-width: 1024px) { + .section.is-medium { + padding: 9rem 1.5rem; } + .section.is-large { + padding: 18rem 1.5rem; } } +.footer { + background-color: #fafafa; + padding: 3rem 1.5rem 6rem; } +/** + * Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout + */ +/* Center logo & sitename when they stack on tiny screens. */ @media screen and (max-width: 362px) { .sitename.column, .logo.column { - width: 100%; - } -} + width: 100%; } } + .search-bar > .block, .logo > .image { - display: inline-block; -} + display: inline-block; } +/* Allow the primary page content to be flush with the bottom of the slogan. */ .main-section { - padding-top: 0; -} -.main-section .group-header { - padding-top: 0; -} + padding-top: 0; } + .main-section .group-header { + padding-top: 0; } +/* On certain node pages, drop the title over (where we want) the image (to be). */ .page--content-item--article .page-title, .page--content-item--blog .page-title, .page--content-item--collection .page-title, @@ -11379,33 +7116,24 @@ label.panel-block:hover { height: 0; position: relative; overflow: visible; - z-index: 10; -} + z-index: 10; } /* On content listing pages (e.g. card view mode). */ .background-replacement-for-no-image { - height: 10rem; -} + height: 10rem; } /* On full content pages. */ .featured-image .background-replacement-for-no-image { - height: 12rem; -} -@media screen and (min-width: 1024px) { - .featured-image .background-replacement-for-no-image { - height: 14rem; - } -} -@media screen and (min-width: 1216px) { - .featured-image .background-replacement-for-no-image { - height: 16rem; - } -} - + height: 12rem; } + @media screen and (min-width: 1024px) { + .featured-image .background-replacement-for-no-image { + height: 14rem; } } + @media screen and (min-width: 1216px) { + .featured-image .background-replacement-for-no-image { + height: 16rem; } } /* Yes i know i should just give author bios their own class */ .node--type-people.node--view-mode-teaser { - margin-bottom: 1rem; -} + margin-bottom: 1rem; } /** * Styles related to contributor-added content on the site, such as embedded @@ -11413,21 +7141,17 @@ label.panel-block:hover { */ iframe { width: 100%; - height: 100%; -} -iframe.mastodon-embed { - height: revert-layer; -} + height: 100%; } + iframe.mastodon-embed { + height: revert-layer; } /* All classes that are mostly about adding color. */ .background-replacement-for-no-image { - background-color: cadetblue; -} + background-color: cadetblue; } /** This isn't color but it's what the color gets painted on so we'll let it stay. */ .views-element-container.block--content > h2.subtitle { - padding: 0.2em 0.2em 0 0.2em; -} + padding: 0.2em 0.2em 0 0.2em; } /* Front page view titles (the h2) and more links (the button) get rather un-SMACSS targeting, sorry. */ @@ -11438,61 +7162,50 @@ iframe.mastodon-embed { .block-views-blockhome-page-views-block-featured .button, .is-article .background-replacement-for-no-image { background-color: #478D00; - color: hsl(221, 14%, 100%); -} -.page--content-item--article .background-replacement-for-no-image a, -.block-views-blockhome-page-views-block-articles > h2.subtitle a, -.block-views-blockhome-page-views-block-articles .button a, -.block-views-blockhome-page-views-block-featured > h2.subtitle a, -.block-views-blockhome-page-views-block-featured .button a, -.is-article .background-replacement-for-no-image a { - color: hsl(221, 14%, 100%); -} + color: white; } + .page--content-item--article .background-replacement-for-no-image a, + .block-views-blockhome-page-views-block-articles > h2.subtitle a, + .block-views-blockhome-page-views-block-articles .button a, + .block-views-blockhome-page-views-block-featured > h2.subtitle a, + .block-views-blockhome-page-views-block-featured .button a, + .is-article .background-replacement-for-no-image a { + color: white; } .page--content-item--blog .background-replacement-for-no-image, .block-views-blockhome-page-views-block-blogs > h2.subtitle, .block-views-blockhome-page-views-block-blogs .button, .is-blog .background-replacement-for-no-image { background-color: #4391E0; - color: hsl(221, 14%, 100%); -} -.page--content-item--blog .background-replacement-for-no-image a, -.block-views-blockhome-page-views-block-blogs > h2.subtitle a, -.block-views-blockhome-page-views-block-blogs .button a, -.is-blog .background-replacement-for-no-image a { - color: hsl(221, 14%, 100%); -} + color: white; } + .page--content-item--blog .background-replacement-for-no-image a, + .block-views-blockhome-page-views-block-blogs > h2.subtitle a, + .block-views-blockhome-page-views-block-blogs .button a, + .is-blog .background-replacement-for-no-image a { + color: white; } .page--content-item--collection .background-replacement-for-no-image, .block-views-blockhome-page-views-block-collections > h2.subtitle, .block-views-blockhome-page-views-block-collections .button, .is-collection .background-replacement-for-no-image { background-color: #AD7442; - color: hsl(221, 14%, 100%); -} -.page--content-item--collection .background-replacement-for-no-image a, -.block-views-blockhome-page-views-block-collections > h2.subtitle a, -.block-views-blockhome-page-views-block-collections .button a, -.is-collection .background-replacement-for-no-image a { - color: hsl(221, 14%, 100%); -} + color: white; } + .page--content-item--collection .background-replacement-for-no-image a, + .block-views-blockhome-page-views-block-collections > h2.subtitle a, + .block-views-blockhome-page-views-block-collections .button a, + .is-collection .background-replacement-for-no-image a { + color: white; } .page--content-item--gleaning .background-replacement-for-no-image, .block-views-blockhome-page-views-block-gleanings > h2.subtitle, .block-views-blockhome-page-views-block-gleanings .button, .is-gleaning .background-replacement-for-no-image { background-color: #ffdd57; - color: hsl(221, 14%, 4%); -} -.page--content-item--gleaning .background-replacement-for-no-image a, -.block-views-blockhome-page-views-block-gleanings > h2.subtitle a, -.block-views-blockhome-page-views-block-gleanings .button a, -.is-gleaning .background-replacement-for-no-image a { - color: hsl(221, 14%, 4%); -} + color: #0a0a0a; } + .page--content-item--gleaning .background-replacement-for-no-image a, + .block-views-blockhome-page-views-block-gleanings > h2.subtitle a, + .block-views-blockhome-page-views-block-gleanings .button a, + .is-gleaning .background-replacement-for-no-image a { + color: #0a0a0a; } .page--content-item--gleaning .page-title { - background-color: #ffdd57; -} - -/*# sourceMappingURL=global.css.map */ + background-color: #ffdd57; } diff --git a/web/themes/custom/geofresco/gulp-tasks/clean.js b/web/themes/custom/geofresco/gulp-tasks/clean.js new file mode 100644 index 0000000..ef1d250 --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/clean.js @@ -0,0 +1,33 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include Our Plugins +//======================================================= +var del = require('del'); + +// Export our tasks. +module.exports = { + + // Clean style guide files. + styleguide: function() { + // You can use multiple globbing patterns as you would with `gulp.src` + return del([ + './dist/style-guide/*' + ], {force: true}); + }, + + // Clean CSS files. + css: function() { + return del([ + './dist/css/*' + ], {force: true}); + }, + + // Clean JS files. + js: function() { + return del([ + './dist/js/*' + ], {force: true}); + } +}; diff --git a/web/themes/custom/geofresco/gulp-tasks/compile.js b/web/themes/custom/geofresco/gulp-tasks/compile.js new file mode 100644 index 0000000..5c84b99 --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/compile.js @@ -0,0 +1,70 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include gulp +//======================================================= +var gulp = require('gulp'); + +//======================================================= +// Include Our Plugins +//======================================================= +var sass = require('gulp-sass'); +var prefix = require('gulp-autoprefixer'); +var sourcemaps = require('gulp-sourcemaps'); +var sync = require('browser-sync'); +var babel = require('gulp-babel'); +var rename = require('gulp-rename'); + +// Small error handler helper function. +function handleError(err) { + console.log(err.toString()); + this.emit('end'); +} + +// Export our tasks. +module.exports = { + + // Compile Sass. + sass: function() { + return gulp.src('./src/{global,layout,components}/**/*.scss') + .pipe( + sass({ outputStyle: 'nested' }) + .on('error', handleError) + ) + .pipe(prefix({ + cascade: false + })) + .pipe(rename(function (path) { + path.dirname = ''; + return path; + })) + .pipe(gulp.dest('./dist/css')) + .pipe(sync.stream({match: '**/*.css'})); + }, + + // Compile JavaScript. + js: function() { + return gulp.src([ + './src/{global,layout,components}/**/*.es6.js' + ], { base: './' }) + .pipe(sourcemaps.init()) + .pipe( + babel() + .on('error', handleError) + ) + .pipe(rename(function (path) { + // Currently not using ES6 modules so for now + // es6 files are compiled into individual JS files. + // Eventually this can use ES6 Modules and compile + // all files within a component directory into a single + // foo.bundle.js file. In that case the bundle name should + // reflect the components directory name. + path.dirname = ''; + path.basename = path.basename.replace(/\.es6/, ''); + return path; + })) + .pipe(sourcemaps.write('./')) + .pipe(gulp.dest('./dist/js')); + } +}; diff --git a/web/themes/custom/geofresco/gulp-tasks/compress.js b/web/themes/custom/geofresco/gulp-tasks/compress.js new file mode 100644 index 0000000..428d3b4 --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/compress.js @@ -0,0 +1,35 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include gulp +//======================================================= +var gulp = require('gulp'); + +//======================================================= +// Include Our Plugins +//======================================================= +var rename = require('gulp-rename'); +var imagemin = require('gulp-imagemin'); + +// Export our tasks. +module.exports = { + + // Compress svg/png/jpg files. + assets: function() { + return gulp.src([ + './src/{global,layout,components}/**/*{.png,.jpg,.svg}' + ]) + .pipe(imagemin({ + progressive: true, + svgoPlugins: [{ + removeViewBox: false + }] + })) + .pipe(rename(function (path) { + path.dirname = ''; + return path; + })) + .pipe(gulp.dest('./dist/assets')); + } +}; diff --git a/web/themes/custom/geofresco/gulp-tasks/concat.js b/web/themes/custom/geofresco/gulp-tasks/concat.js new file mode 100644 index 0000000..b1af0f1 --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/concat.js @@ -0,0 +1,42 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include gulp +//======================================================= +var gulp = require('gulp'); + +//======================================================= +// Include Our Plugins +//======================================================= +var concat = require('gulp-concat'); +var order = require('gulp-order'); +var sync = require('browser-sync'); + +// Export our tasks. +module.exports = { + + // Concat all CSS into a master bundle. + css: function() { + return gulp.src([ + './dist/css/*.css' + ]) + // Reorder the files so global is first. + // If you need to get fancier with the order here's an example: + // .pipe(order([ + // 'dist/css/global.css', + // 'src/components/**/*.css', + // 'dist/css/btn.css', + // 'dist/css/form-item.css', + // 'dist/css/form-float-label.css', + // 'dist/css/*.css' + // ], { base: './' })) + .pipe(order([ + 'dist/css/global.css', + 'dist/css/*.css' + ], { base: './' })) + .pipe(concat('all.css')) + .pipe(gulp.dest('./dist/all')) + .pipe(sync.stream()); + } +}; diff --git a/web/themes/custom/geofresco/gulp-tasks/lint.js b/web/themes/custom/geofresco/gulp-tasks/lint.js new file mode 100644 index 0000000..a992d1c --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/lint.js @@ -0,0 +1,36 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include gulp +//======================================================= +var gulp = require('gulp'); + +//======================================================= +// Include Our Plugins +//======================================================= +var sassLint = require('gulp-sass-lint'); +var eslint = require('gulp-eslint'); + +// Export our tasks. +module.exports = { + + // Lint Sass based on .sass-lint.yml config. + sass: function() { + return gulp.src([ + './src/{global,layout,components}/**/*.scss', + ]) + .pipe(sassLint()) + .pipe(sassLint.format()); + }, + + // Lint JavaScript based on .eslintrc config. + js: function() { + return gulp.src([ + './src/{global,layout,components}/**/*.js', + '!./src/components/**/vendors/*' + ]) + .pipe(eslint()) + .pipe(eslint.format()); + } +}; diff --git a/web/themes/custom/geofresco/gulp-tasks/move.js b/web/themes/custom/geofresco/gulp-tasks/move.js new file mode 100644 index 0000000..7886f40 --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/move.js @@ -0,0 +1,33 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +// If some JS components aren't es6 we want to simply move them +// into the dist folder. This allows us to clean the dist/js +// folder on build. + +//======================================================= +// Include gulp +//======================================================= +var gulp = require('gulp'); + +//======================================================= +// Include Our Plugins +//======================================================= +var rename = require('gulp-rename'); + +// Export our tasks. +module.exports = { + + // Moves JavaScript. + js: function() { + return gulp.src([ + './src/{global,layout,components}/**/*.js', + '!./src/{global,layout,components}/**/*.es6.js' + ], { base: './' }) + .pipe(rename(function (path) { + path.dirname = ''; + return path; + })) + .pipe(gulp.dest('./dist/js')); + } +}; diff --git a/web/themes/custom/geofresco/gulp-tasks/styleguide.js b/web/themes/custom/geofresco/gulp-tasks/styleguide.js new file mode 100644 index 0000000..b68586c --- /dev/null +++ b/web/themes/custom/geofresco/gulp-tasks/styleguide.js @@ -0,0 +1,48 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include kss +//======================================================= +var kss = require('kss'); + +//======================================================= +// Include Our Plugins +//======================================================= +var path = require('path'); + +// Export our tasks. +module.exports = { + + // Generate the style guide using the top level + // directory name passed in as a parameter. + generate: function(dirname) { + + return kss({ + source: [ + dirname + '/src/global', + dirname + '/src/components', + dirname + '/src/layout' + ], + destination: dirname + '/dist/style-guide', + builder: dirname + '/src/style-guide/builder', + namespace: 'octavia:' + dirname + '/src/components/', + 'extend-drupal8': true, + // The css and js paths are URLs, like '/misc/jquery.js'. + // The following paths are relative to the generated style guide. + // The all.css file is for the style guide ONLY so you don't have to + // keep adding the file here everytime you add a new component. + // Drupal libraries should be leveraged for adding CSS per component. + css: [ + path.relative( + dirname + '/style-guide/', + dirname + '/all/all.css' + ) + ], + js: [ + ], + homepage: 'style-guide.md', + title: 'Style Guide' + }); + } +}; diff --git a/web/themes/custom/geofresco/gulpfile.js b/web/themes/custom/geofresco/gulpfile.js new file mode 100644 index 0000000..dd816d4 --- /dev/null +++ b/web/themes/custom/geofresco/gulpfile.js @@ -0,0 +1,176 @@ +/*eslint strict: ["error", "global"]*/ +'use strict'; + +//======================================================= +// Include gulp +//======================================================= +var gulp = require('gulp'); + +//======================================================= +// Include Our Plugins +//======================================================= +var sync = require('browser-sync'); +var runSequence = require('run-sequence'); + +//======================================================= +// Include Our tasks. +// +// Each task is broken apart to it's own node module. +// Check out the ./gulp-tasks directory for more. +//======================================================= +var taskCompile = require('./gulp-tasks/compile.js'); +var taskMove = require('./gulp-tasks/move.js'); +var taskLint = require('./gulp-tasks/lint.js'); +var taskCompress = require('./gulp-tasks/compress.js'); +var taskClean = require('./gulp-tasks/clean.js'); + +var taskStyleGuide = require('./gulp-tasks/styleguide.js'); +var taskConcat = require('./gulp-tasks/concat.js'); + +//======================================================= +// Compile Our Sass and JS +// We also move some files if they don't need +// to be compiled. +//======================================================= +gulp.task('compile', ['compile:sass', 'compile:js', 'move:js']); + +// Compile Sass +gulp.task('compile:sass', function() { + return taskCompile.sass(); +}); + +// Compile JavaScript ES2015 to ES5. +gulp.task('compile:js', function() { + return taskCompile.js(); +}); + +// If some JS components aren't es6 we want to simply move them +// into the dist folder. This allows us to clean the dist/js +// folder on build. +gulp.task('move:js', function() { + return taskMove.js(); +}); + +//======================================================= +// Lint Sass and JavaScript +//======================================================= +gulp.task('lint', ['lint:sass', 'lint:js']); + +// Lint Sass based on .sass-lint.yml config. +gulp.task('lint:sass', function () { + return taskLint.sass(); +}); + +// Lint JavaScript based on .eslintrc config. +gulp.task('lint:js', function () { + return taskLint.js(); +}); + +//======================================================= +// Compress Files +//======================================================= +gulp.task('compress', function() { + return taskCompress.assets(); +}); + +//======================================================= +// Generate style guide +//======================================================= +gulp.task('styleguide', function() { + return taskStyleGuide.generate(__dirname); +}); + +//======================================================= +// Concat all CSS files into a master bundle. +//======================================================= +gulp.task('concat', function () { + return taskConcat.css(); +}); + +//======================================================= +// Clean all directories. +//======================================================= +gulp.task('clean', ['clean:css', 'clean:js', 'clean:styleguide']); + +// Clean style guide files. +gulp.task('clean:styleguide', function () { + return taskClean.styleguide(); +}); + +// Clean CSS files. +gulp.task('clean:css', function () { + return taskClean.css(); +}); + +// Clean JS files. +gulp.task('clean:js', function () { + return taskClean.js(); +}); + +//======================================================= +// Watch and recompile sass. +//======================================================= + +// Pull the sass watch task out so we can use run sequence. + +gulp.task('watch:sass', function(callback) { + runSequence( + ['lint:sass', 'compile:sass'], + 'concat', + callback + ); +}); + +// Main watch task. +gulp.task('watch', function() { + + // BrowserSync proxy setup + // Uncomment this and swap proxy with your local env url. + // NOTE: for this to work in Drupal, you must install and enable + // https://www.drupal.org/project/link_css. This module should + // NOT be committed to the repo OR enabled on production. + // + // This should work out of the box for work within the style guide. + // + // sync.init({ + // open: false, + // proxy: 'http://test.mcdev' + // }); + + // Watch all my sass files and compile sass if a file changes. + gulp.watch( + './src/{global,layout,components}/**/*.scss', + ['watch:sass'] + ); + + // Watch all my JS files and compile if a file changes. + gulp.watch([ + './src/{global,layout,components}/**/*.js' + ], ['lint:js', 'compile:js']); + + // Watch all my twig files and rebuild the style guide if a file changes. + gulp.watch( + './src/{layout,components}/**/*.twig', + ['watch:styleguide'] + ); + +}); + +// Reload the browser if the style guide is updated. +gulp.task('watch:styleguide', ['styleguide'], sync.reload); + +//======================================================= +// Default Task +// +// runSequence runs 'clean' first, and when that finishes +// 'lint', 'compile', 'compress', 'styleguide' run +// at the same time. 'concat' runs last. +//======================================================= +gulp.task('default', function(callback) { + runSequence( + 'clean', + ['lint', 'compile', 'compress', 'styleguide'], + 'concat', + callback + ); +}); diff --git a/web/themes/custom/geofresco/package.json b/web/themes/custom/geofresco/package.json index 878d89a..acde94e 100644 --- a/web/themes/custom/geofresco/package.json +++ b/web/themes/custom/geofresco/package.json @@ -1,10 +1,6 @@ { "name": "geofresco", - "version": "1.1.0", - "scripts": { - "sass-dev": "sass --watch --update --style=expanded src/global:dist/css", - "sass-prod": "sass --no-source-map --style=compressed src/global:dist/css" - }, + "version": "1.0.0", "browserslist": [ "IE >= 9", "last 3 versions" @@ -15,7 +11,7 @@ "postcss-cli": "latest" }, "dependencies": { - "bulma": "^1.0.2", - "sass": "^1.86.0" + "bulma": "^0.7.2", + "bulma-extensions": "^1.0.4" } } diff --git a/web/themes/custom/geofresco/src/global/_base.scss b/web/themes/custom/geofresco/src/global/_base.scss index 2398d02..85a6668 100644 --- a/web/themes/custom/geofresco/src/global/_base.scss +++ b/web/themes/custom/geofresco/src/global/_base.scss @@ -1,7 +1,5 @@ @charset "utf-8"; -@use "variables" as *; - // Set our custom font for all headers and menus .title, .subtitle, diff --git a/web/themes/custom/geofresco/src/global/_components.scss b/web/themes/custom/geofresco/src/global/_components.scss index 5f9c2af..38d75bd 100644 --- a/web/themes/custom/geofresco/src/global/_components.scss +++ b/web/themes/custom/geofresco/src/global/_components.scss @@ -4,10 +4,6 @@ * ../../node_modules/bulma/sass/components */ -@use "variables" as *; -@use "../../node_modules/bulma/sass/utilities/mixins" as *; -@use "../../node_modules/bulma/sass/utilities/initial-variables" as *; - /** * Make menu items slightly less far apart so we never entirely lose * 'Community' on mid-size screens. @@ -22,51 +18,6 @@ } } -.geo-logo-name { - display: flex !important; - overflow: hidden; - width: 100%; - .logo, .sitename { - display: table-cell; - } - .logo a { - display: block; - width: 199px; - } - @include from($tablet) { - width: fit-content; - } - @include until($mini) { - justify-content: flex-end; - } -} - -@include until($desktop) { - .search-bar { - display: none !important; - } -} - -// Mostly to reduce the impact of the ridiculous (mostly on Chrome) ghost mobile horizontal scroll. -.search-icon { - padding-right: 1rem; -} - -#navbar-menu { - display: flex; - // More modern Bulma has is-flex-wrap-wrap as a class for this. - flex-wrap: wrap; - @include until($tablet) { - width: 100%; - justify-content: space-around; - } - @include from($desktop) { - flex-wrap: nowrap; - margin-right: -1rem; - } -} - - /* Featured images on article pages */ .featured-image figure.image { width: 100vw; diff --git a/web/themes/custom/geofresco/src/global/_elements.scss b/web/themes/custom/geofresco/src/global/_elements.scss index 8e99088..26ce5f5 100644 --- a/web/themes/custom/geofresco/src/global/_elements.scss +++ b/web/themes/custom/geofresco/src/global/_elements.scss @@ -1,8 +1,6 @@ @charset "UTF-8"; /* Extend or override Bulma's elements ../../node_modules/bulma/sass/elements */ -@use "../../node_modules/bulma/sass/utilities/derived-variables" as *; -@use "variables" as *; .site-title { display: inline-block; @@ -21,12 +19,12 @@ .header, .sitename { background: linear-gradient( - $background, - $background 74px, + $body-background-color, + $body-background-color 74px, $light-green 74px, $green 120px, - $background 120px, - $background + $body-background-color 120px, + $body-background-color ); } diff --git a/web/themes/custom/geofresco/src/global/_fonts.scss b/web/themes/custom/geofresco/src/global/_fonts.scss index 5c21fba..4f51972 100644 --- a/web/themes/custom/geofresco/src/global/_fonts.scss +++ b/web/themes/custom/geofresco/src/global/_fonts.scss @@ -1,3 +1,5 @@ +$family-geo: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif !default + @font-face { font-family: 'Ocan'; src: url('../../fonts/OcanSansStd-Book.woff') format('woff'); diff --git a/web/themes/custom/geofresco/src/global/_layout.scss b/web/themes/custom/geofresco/src/global/_layout.scss index 443ec0e..78c0fb7 100644 --- a/web/themes/custom/geofresco/src/global/_layout.scss +++ b/web/themes/custom/geofresco/src/global/_layout.scss @@ -1,11 +1,10 @@ @charset "UTF-8"; -// Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout +/** + * Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout + */ -@use "variables" as *; -@use "../../node_modules/bulma/sass/utilities/mixins" as *; -@use "../../node_modules/bulma/sass/utilities/initial-variables" as *; +/* Center logo & sitename when they stack on tiny screens. */ -// Center logo & sitename when they stack on tiny screens. @include until($mini) { .sitename.column, .logo.column { @@ -18,8 +17,7 @@ display: inline-block; } - -// Allow the primary page content to be flush with the bottom of the slogan. +/* Allow the primary page content to be flush with the bottom of the slogan. */ .main-section { padding-top: 0; .group-header { @@ -27,7 +25,7 @@ } } -// On certain node pages, drop the title over (where we want) the image (to be). +/* On certain node pages, drop the title over (where we want) the image (to be). */ .page--content-item--article, .page--content-item--blog, .page--content-item--collection, @@ -41,8 +39,6 @@ } } -// Prevent a slight horizontal scroll. - /* On content listing pages (e.g. card view mode). */ .background-replacement-for-no-image { height: 10rem; diff --git a/web/themes/custom/geofresco/src/global/_paint.scss b/web/themes/custom/geofresco/src/global/_paint.scss index 6601345..9dea5f3 100644 --- a/web/themes/custom/geofresco/src/global/_paint.scss +++ b/web/themes/custom/geofresco/src/global/_paint.scss @@ -1,9 +1,5 @@ /* All classes that are mostly about adding color. */ -@use "variables" as *; -@use "../../node_modules/bulma/sass/utilities/initial-variables" as *; -@use "../../node_modules/bulma/sass/utilities/derived-variables" as *; - .background-replacement-for-no-image { background-color: cadetblue; } diff --git a/web/themes/custom/geofresco/src/global/_variables.scss b/web/themes/custom/geofresco/src/global/_variables.scss deleted file mode 100644 index 95e6662..0000000 --- a/web/themes/custom/geofresco/src/global/_variables.scss +++ /dev/null @@ -1,28 +0,0 @@ - -// Set brand colors. -$blue: #4391E0; -$red: #a70c20; -$light-green: #65AB1F; -$green: #478D00; -$green-gray: #8FB489; -$offwhite: #F8F8F8; - -$brown: #AD7442; -// No idea where this yellow came from, apparently Bulma, but we never set it -// yet it is the right color. Anyway i'm past trying to figure things out. -// Re-setting it here, just so that we can assign it to Gleanings, below. -$yellow: #ffdd57; - -// A color for each content type -$article: $green; -$blog: $blue; -$collection: $brown; -$gleaning: $yellow; - -// Update Bulma's global variables. -$primary: $green; - -$mini: 363px; - -// Font family -$family-geo: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif !default; diff --git a/web/themes/custom/geofresco/src/global/global.scss b/web/themes/custom/geofresco/src/global/global.scss index 6ed762d..9fc036d 100644 --- a/web/themes/custom/geofresco/src/global/global.scss +++ b/web/themes/custom/geofresco/src/global/global.scss @@ -1,26 +1,50 @@ // Bring in Bulma allowing us to extend and override it. -@use "variables" as *; +// Set brand colors. +$blue: #4391E0; +$red: #a70c20; +$light-green: #65AB1F; +$green: #478D00; +$green-gray: #8FB489; +$offwhite: #F8F8F8; + +$brown: #AD7442; +// No idea where this yellow came from, apparently Bulma, but we never set it +// yet it is the right color. Anyway i'm past trying to figure things out. +// Re-setting it here, just so that we can assign it to Gleanings, below. +$yellow: #ffdd57; + +// A color for each content type +$article: $green; +$blog: $blue; +$collection: $brown; +$gleaning: $yellow; + +// Update Bulma's global variables. +$primary: $green; + +$mini: 363px; + // Import each part of Bulma separately so we can layer in our styles. // Extend or override Bulam's base styles in this themes base.scss etc. -@forward "../../node_modules/bulma/sass/utilities/_index"; -@forward "fonts"; -@forward "../../node_modules/bulma/sass/base/_index"; -@forward "base"; -@forward "../../node_modules/bulma/sass/elements/_index"; -@forward "elements"; -@forward "../../node_modules/bulma/sass/form/_index"; -@forward "form"; -$navbar-breakpoint: calc($mini/2); -@forward "../../node_modules/bulma/sass/components/_index"; -@forward "components"; -@forward "../../node_modules/bulma/sass/grid/_index"; -@forward "grid"; -@forward "../../node_modules/bulma/sass/layout/_index"; -@forward "layout"; +@import "../../node_modules/bulma/sass/utilities/_all"; +@import "fonts"; +@import "../../node_modules/bulma/sass/base/_all"; +@import "base"; +@import "../../node_modules/bulma/sass/elements/_all"; +@import "elements"; +@import "../../node_modules/bulma/sass/form/_all"; +@import "form"; +$navbar-breakpoint: $mini/2; +@import "../../node_modules/bulma/sass/components/_all"; +@import "components"; +@import "../../node_modules/bulma/sass/grid/_all"; +@import "grid"; +@import "../../node_modules/bulma/sass/layout/_all"; +@import "layout"; // Stylesheets below will have access to all Bulma variables and mixins. -@forward "content"; -@forward "paint"; +@import "content"; +@import "paint"; -// @forward '../../node_modules/bulma-extensions/bulma-timeline/dist/bulma-timeline'; +// @import '../../node_modules/bulma-extensions/bulma-timeline/dist/bulma-timeline'; diff --git a/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig b/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig index 9b743af..996b9c2 100644 --- a/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig +++ b/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig @@ -14,18 +14,18 @@ * @ingroup themeable */ #} -<div class="column is-narrow geo-logo-name is-paddingless"> {% if site_logo %} -<div class="logo"> - <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home"> - <img src="{{ site_logo }}" alt="GEO's logo, a gently winding path through green to a large bright sun on the horizon." /> - </a> +<div class="logo column is-narrow is-paddingless has-text-centered"> + <figure class="image no-upscale"> + <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home"> + <img src="{{ site_logo }}" alt="{{ site_name }} Home" /> + </a> + </figure> </div> {% endif %} -<div class="sitename"> +<div class="sitename column is-narrow is-paddingless has-text-centered"> <a class="site-title title is-3" href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home"> <span class="green">Grassroots Economic</span> <span class="yellow">Organizing</span></a> </div> -</div> diff --git a/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig b/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig index ffc614c..5d70476 100644 --- a/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig +++ b/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig @@ -58,7 +58,7 @@ %} {% endif %} {% if item.url|render == '/search' %} - {% set item_classes = item_classes|merge(['is-hidden-desktop search-icon']) %} + {% set item_classes = item_classes|merge(['is-hidden-tablet']) %} {% endif %} {% endif %} {{ link( diff --git a/web/themes/custom/geofresco/src/templates/layout/page.html.twig b/web/themes/custom/geofresco/src/templates/layout/page.html.twig index 3c7e6fd..4da50d1 100644 --- a/web/themes/custom/geofresco/src/templates/layout/page.html.twig +++ b/web/themes/custom/geofresco/src/templates/layout/page.html.twig @@ -16,15 +16,20 @@ %} {% endif %} {% block navbar %} -{# We put everything in Bulma columns so must do navbar in header block, not here #} +{# We put everything in Bulma columns so must do navbar in header block #} {% endblock navbar %} {% block header %} -<div class="header columns is-marginless"> +<div class="header columns is-mobile is-multiline is-marginless"> {% block navbar_branding %} {{ page.navbar_branding }} {% endblock navbar_branding %} <nav class="navigation column"> <div class="columns"> + {% if page.header_search %} + <div class="search-bar column has-text-right"> + {{ page.header_search }} + </div> + {% endif %} {% block navbar_social %} {% if page.navbar_social %} <div class="column is-narrow"> @@ -34,26 +39,19 @@ {% endblock navbar_social %} {% block primary_menu %} {% if page.primary_menu %} - <div class="column"> + <div class="column is-narrow"> {{ page.primary_menu }} </div> {% endif %} {% endblock primary_menu %} - {% if page.header_search %} - <div class="search-bar column is-narrow"> - {{ page.header_search }} - </div> - {% endif %} </div> </nav> </div> -{% if is_front %} <div class="columns"> <div class="column has-text-centered"> <p class="slogan"><strong class="title">{{ site_slogan }}</strong></p> </div> </div> -{% endif %} {{ page.highlighted }} {{ page.help }} {% block tabs %} @@ -67,7 +65,9 @@ {# Header region #} <div class="container"> <div class="columns is-vcentered"> - {{ page.header }} + <div class="column"> + {{ page.header }} + </div> </div> </div> {% endif %}