Remove internal ACF plugin
12
CREDITS.md
@ -16,13 +16,6 @@ The following list credits all third-party resources used in the Fictioneer them
|
||||
* **[Greet the Final Battle Alone by liuzishan](https://www.freepik.com/free-photo/study-halls-biology-digital-illustrations_14541125.htm)** on Freepik
|
||||
* **[Nuclear Blast in City by liuzishan](https://www.freepik.com/free-photo/moment-city-was-hit-by-nuclear-bomb-digital-painting_15174526.htm)** on Freepik
|
||||
|
||||
## Plugins
|
||||
|
||||
* **Advanced Custom Fields (Free)**<br>
|
||||
Copyright: Delicious Brains Inc.<br>
|
||||
License: [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)<br>
|
||||
Source: https://www.advancedcustomfields.com/
|
||||
|
||||
## Graphics
|
||||
|
||||
* **Font Awesome**<br>
|
||||
@ -176,11 +169,6 @@ The following list credits all third-party resources used in the Fictioneer them
|
||||
License: [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/)<br>
|
||||
Source: https://stackoverflow.com/a/4914807/17140970
|
||||
|
||||
* **Disable ACF on frontend**<br>
|
||||
Copyright: Bill Erickson<br>
|
||||
License: [MIT](http://www.opensource.org/licenses/mit-license.php)<br>
|
||||
Source: https://www.billerickson.net/code/disable-acf-frontend/
|
||||
|
||||
## Fonts
|
||||
|
||||
* **Open Dyslexic 3**<br>
|
||||
|
@ -322,12 +322,6 @@ Fictioneer customizes WordPress by using as many standard action and filter hook
|
||||
| `wp_robots` | `fictioneer_add_noindex_to_robots`
|
||||
| `wp_sitemaps_enabled` | `__return_false`
|
||||
|
||||
<br>
|
||||
|
||||
| ACF HOOK | FICTIONEER ACTIONS & FILTERS
|
||||
| ---: | :--- |
|
||||
| `acf/settings/show_admin` | `fictioneer_acf_settings_show_admin`
|
||||
|
||||
## Caching
|
||||
|
||||
Fictioneer is cache aware. This means the theme provides an interface to aid cache plugins in purging stale caches across the site, not just the updated post. It can even operate as static website with dynamic content being fetched via AJAX. By default, four cache plugins are considered: [WP Super Cache](https://wordpress.org/plugins/wp-super-cache/), [W3 Total Cache](https://wordpress.org/plugins/w3-total-cache/), [LiteSpeed Cache](https://wordpress.org/plugins/litespeed-cache/), and [WP Rocket](https://wp-rocket.me/). Whenever you publish or update content, a series of actions is triggered to purge anything related.
|
||||
|
@ -199,10 +199,6 @@ Updating the theme works the same as installing the theme. If done in the admin
|
||||
|
||||
Note that any changes made to the theme files will be undone — which you should not have done in the first place. Always use a [child theme](https://developer.wordpress.org/themes/advanced-topics/child-themes/) for modifications to avoid this issue. Your theme options and Customizer settings are preserved, however.
|
||||
|
||||
### Optional: Install Plugin Dependencies
|
||||
|
||||
Fictioneer relies on the [Advanced Custom Fields (ACF)](https://www.advancedcustomfields.com/) plugin for a few inputs. ACF is already bundled into the theme, but you may want to install it separately to stay on the latest version or use it for your own modifications — which should happen in a [child theme](https://developer.wordpress.org/themes/advanced-topics/child-themes/). You cannot access the bundled version in order to prevent non-developer users from accidentally breaking the theme. Note that ACF can quickly bloat your database if used without care.
|
||||
|
||||
### Optional: Additional Plugins
|
||||
|
||||
The [plugin ecosystem](https://wordpress.org/plugins/) of WordPress is vast and often confusing. There are plugins for almost everything, in variants, free or premium or "freemium". You often find articles about "must-have" plugins — you are well advised to question those. Too many plugins can slow down your site, open vulnerabilities, or conflict with the theme. Fictioneer is designed as standalone solution and technically works without additional plugins. However, nothing is ever complete, so here are a few recommendations anyway.
|
||||
@ -555,8 +551,6 @@ Technically just another plugin, but one that will make your site significantly
|
||||
|
||||
[Must-Use Plugins](https://wordpress.org/documentation/article/must-use-plugins/) are not installed but have to be manually copied into the **wp-content/mu-plugins** folder (does not exist by default). They are always loaded, in alphabetical order, and before any other plugin or theme. This behavior can be exploited to boost performance. When you look into the Fictioneer theme folder, you will find an mu-plugins subfolder with two must-use plugins ready to be copied over.
|
||||
|
||||
**Disable ACF on Frontend** was created by [Bill Erickson](https://www.billerickson.net/code/disable-acf-frontend/) and disables the ACF plugin on the frontend if you installed it separately. The integrated version is disabled by default. You cannot use its functions in that case, however.
|
||||
|
||||
**Fictioneer 001 Fast Requests** accelerates AJAX and REST requests by disabling non-allow-listed plugins during selected theme actions. Depending on the number of plugins you have installed, this can boost your request performance significantly. However, it will prevent the plugins from working during these requests, although that has no effect on the theme’s default functionality. Be not afraid to edit the file and extend the allow list, it will not be overwritten when you update the theme. Or add your own plugin files. This is one of the best speed optimizations you can make.
|
||||
|
||||
If problems arise, you can just delete the plugin files.
|
||||
@ -934,7 +928,6 @@ define( 'CONSTANT_NAME', value );
|
||||
| FICTIONEER_API_STORYGRAPH_TRANSIENTS | boolean | Whether to cache Storygraph responses as Transients. Default `true`.
|
||||
| FICTIONEER_ENABLE_STICKY_CARDS | boolean | Whether to allow sticky cards. Expensive. Default `true`.
|
||||
| FICTIONEER_ENABLE_STORY_DATA_META_CACHE | boolean | Whether to "cache" story data in a meta field. Default `true`.
|
||||
| FICTIONEER_ENABLE_FRONTEND_ACF | boolean | Whether to load ACF on the frontend. Default `false`.
|
||||
| FICTIONEER_ENABLE_MENU_TRANSIENTS | boolean | Whether to cache nav menus as Transients. Default `true`.
|
||||
| FICTIONEER_ORDER_STORIES_BY_LATEST_CHAPTER | boolean | Whether to order updated stories based on the latest chapter added, excluding stories without chapters. Default `false`.
|
||||
| FICTIONEER_ENABLE_STORY_CHANGELOG | boolean | Whether changes to the story chapter list should be logged. Default `true`.
|
||||
|
@ -361,11 +361,6 @@ if ( ! defined( 'FICTIONEER_ENABLE_STORY_DATA_META_CACHE' ) ) {
|
||||
define( 'FICTIONEER_ENABLE_STORY_DATA_META_CACHE', true );
|
||||
}
|
||||
|
||||
// Boolean: Enable ACF on frontend
|
||||
if ( ! defined( 'FICTIONEER_ENABLE_FRONTEND_ACF' ) ) {
|
||||
define( 'FICTIONEER_ENABLE_FRONTEND_ACF', false );
|
||||
}
|
||||
|
||||
// Boolean: Enable nav menu Transients
|
||||
if ( ! defined( 'FICTIONEER_ENABLE_MENU_TRANSIENTS' ) ) {
|
||||
define( 'FICTIONEER_ENABLE_MENU_TRANSIENTS', true );
|
||||
@ -429,12 +424,6 @@ if ( is_customize_preview() ) {
|
||||
|
||||
require_once __DIR__ . '/includes/functions/_theme_setup.php';
|
||||
|
||||
/**
|
||||
* Configuration for the Advanced Custom Fields plugin.
|
||||
*/
|
||||
|
||||
require_once __DIR__ . '/includes/functions/_acf.php';
|
||||
|
||||
/**
|
||||
* Add custom post types.
|
||||
*/
|
||||
|
@ -1,27 +0,0 @@
|
||||
# Advanced Custom Fields
|
||||
|
||||
Welcome to the official Advanced Custom Fields repository on GitHub. ACF is a WordPress plugin used to take full control of your edit screens & custom field data.
|
||||
|
||||
## Documentation
|
||||
|
||||
Do you need help getting started with ACF, or do you have questions about one of the ACF features? You can [search through our documentation here](https://www.advancedcustomfields.com/resources/). If you don't find the answers you're looking for, you can start a new forum thread in the [support forum](https://support.advancedcustomfields.com/) or contact our [support team](https://www.advancedcustomfields.com/contact/)
|
||||
|
||||
If you've got feedback or a feature suggestion for ACF, please use our [feedback board](https://www.advancedcustomfields.com/feedback/)
|
||||
|
||||
## Support
|
||||
|
||||
This repository is not suitable for support. Please don't use our issue tracker for support requests, but for core issues only.
|
||||
Support can take place in the appropriate channels:
|
||||
|
||||
* Community forum
|
||||
* Email based ticket system
|
||||
|
||||
These channels can be accessed from our [support website](https://support.advancedcustomfields.com/).
|
||||
|
||||
## Contributing
|
||||
|
||||
If you have a patch, or stumbled upon an issue with ACF core, you can contribute this back to the code. Please create a new github issue with as much information as possible, and a PR if appropriate.
|
||||
|
||||
## Translations
|
||||
|
||||
If you're looking to translate ACF, you can submit new PRO translations via a PR on this repo. Any strings from the free version are imported from [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/). For more information, please view our [translation guide](https://www.advancedcustomfields.com/resources/how-to-help-translate-acf-into-other-languages/)
|
@ -1,786 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Advanced Custom Fields
|
||||
*
|
||||
* @package ACF
|
||||
* @author WP Engine
|
||||
*
|
||||
* @wordpress-plugin
|
||||
* Plugin Name: Advanced Custom Fields
|
||||
* Plugin URI: https://www.advancedcustomfields.com
|
||||
* Description: Customize WordPress with powerful, professional and intuitive fields.
|
||||
* Version: 6.2.3
|
||||
* Author: WP Engine
|
||||
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
|
||||
* Text Domain: acf
|
||||
* Domain Path: /lang
|
||||
* Requires PHP: 7.0
|
||||
* Requires at least: 5.8
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'ACF' ) ) {
|
||||
|
||||
/**
|
||||
* The main ACF class
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class ACF {
|
||||
|
||||
/**
|
||||
* The plugin version number.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $version = '6.2.3';
|
||||
|
||||
/**
|
||||
* The plugin settings array.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $settings = array();
|
||||
|
||||
/**
|
||||
* The plugin data array.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $data = array();
|
||||
|
||||
/**
|
||||
* Storage for class instances.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $instances = array();
|
||||
|
||||
/**
|
||||
* A dummy constructor to ensure ACF is only setup once.
|
||||
*
|
||||
* @date 23/06/12
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct() {
|
||||
// Do nothing.
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets up the ACF plugin.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function initialize() {
|
||||
|
||||
// Define constants.
|
||||
$this->define( 'ACF', true );
|
||||
$this->define( 'ACF_PATH', plugin_dir_path( __FILE__ ) );
|
||||
$this->define( 'ACF_BASENAME', plugin_basename( __FILE__ ) );
|
||||
$this->define( 'ACF_VERSION', $this->version );
|
||||
$this->define( 'ACF_MAJOR_VERSION', 6 );
|
||||
$this->define( 'ACF_FIELD_API_VERSION', 5 );
|
||||
$this->define( 'ACF_UPGRADE_VERSION', '5.5.0' ); // Highest version with an upgrade routine. See upgrades.php.
|
||||
|
||||
// Define settings.
|
||||
$this->settings = array(
|
||||
'name' => __( 'Advanced Custom Fields', 'acf' ),
|
||||
'slug' => dirname( ACF_BASENAME ),
|
||||
'version' => ACF_VERSION,
|
||||
'basename' => ACF_BASENAME,
|
||||
'path' => ACF_PATH,
|
||||
'file' => __FILE__,
|
||||
'url' => plugin_dir_url( __FILE__ ),
|
||||
'show_admin' => true,
|
||||
'show_updates' => true,
|
||||
'enable_post_types' => true,
|
||||
'enable_options_pages_ui' => true,
|
||||
'stripslashes' => false,
|
||||
'local' => true,
|
||||
'json' => true,
|
||||
'save_json' => '',
|
||||
'load_json' => array(),
|
||||
'default_language' => '',
|
||||
'current_language' => '',
|
||||
'capability' => 'manage_options',
|
||||
'uploader' => 'wp',
|
||||
'autoload' => false,
|
||||
'l10n' => true,
|
||||
'l10n_textdomain' => '',
|
||||
'google_api_key' => '',
|
||||
'google_api_client' => '',
|
||||
'enqueue_google_maps' => true,
|
||||
'enqueue_select2' => true,
|
||||
'enqueue_datepicker' => true,
|
||||
'enqueue_datetimepicker' => true,
|
||||
'select2_version' => 4,
|
||||
'row_index_offset' => 1,
|
||||
'remove_wp_meta_box' => true,
|
||||
'rest_api_enabled' => true,
|
||||
'rest_api_format' => 'light',
|
||||
'rest_api_embed_links' => true,
|
||||
'preload_blocks' => true,
|
||||
'enable_shortcode' => true,
|
||||
'enable_bidirection' => true,
|
||||
);
|
||||
|
||||
// Include utility functions.
|
||||
include_once ACF_PATH . 'includes/acf-utility-functions.php';
|
||||
|
||||
// Include previous API functions.
|
||||
acf_include( 'includes/api/api-helpers.php' );
|
||||
acf_include( 'includes/api/api-template.php' );
|
||||
acf_include( 'includes/api/api-term.php' );
|
||||
|
||||
// Include classes.
|
||||
acf_include( 'includes/class-acf-data.php' );
|
||||
acf_include( 'includes/class-acf-internal-post-type.php' );
|
||||
acf_include( 'includes/fields/class-acf-field.php' );
|
||||
acf_include( 'includes/locations/abstract-acf-legacy-location.php' );
|
||||
acf_include( 'includes/locations/abstract-acf-location.php' );
|
||||
|
||||
// Include functions.
|
||||
acf_include( 'includes/acf-helper-functions.php' );
|
||||
acf_include( 'includes/acf-hook-functions.php' );
|
||||
acf_include( 'includes/acf-field-functions.php' );
|
||||
acf_include( 'includes/acf-bidirectional-functions.php' );
|
||||
acf_include( 'includes/acf-internal-post-type-functions.php' );
|
||||
acf_include( 'includes/acf-post-type-functions.php' );
|
||||
acf_include( 'includes/acf-taxonomy-functions.php' );
|
||||
acf_include( 'includes/acf-field-group-functions.php' );
|
||||
acf_include( 'includes/acf-form-functions.php' );
|
||||
acf_include( 'includes/acf-meta-functions.php' );
|
||||
acf_include( 'includes/acf-post-functions.php' );
|
||||
acf_include( 'includes/acf-user-functions.php' );
|
||||
acf_include( 'includes/acf-value-functions.php' );
|
||||
acf_include( 'includes/acf-input-functions.php' );
|
||||
acf_include( 'includes/acf-wp-functions.php' );
|
||||
|
||||
// Include core.
|
||||
acf_include( 'includes/fields.php' );
|
||||
acf_include( 'includes/locations.php' );
|
||||
acf_include( 'includes/assets.php' );
|
||||
acf_include( 'includes/compatibility.php' );
|
||||
acf_include( 'includes/deprecated.php' );
|
||||
acf_include( 'includes/l10n.php' );
|
||||
acf_include( 'includes/local-fields.php' );
|
||||
acf_include( 'includes/local-meta.php' );
|
||||
acf_include( 'includes/local-json.php' );
|
||||
acf_include( 'includes/loop.php' );
|
||||
acf_include( 'includes/media.php' );
|
||||
acf_include( 'includes/revisions.php' );
|
||||
acf_include( 'includes/updates.php' );
|
||||
acf_include( 'includes/upgrades.php' );
|
||||
acf_include( 'includes/validation.php' );
|
||||
acf_include( 'includes/rest-api.php' );
|
||||
|
||||
// Include field group class.
|
||||
acf_include( 'includes/post-types/class-acf-field-group.php' );
|
||||
|
||||
// Include ajax.
|
||||
acf_include( 'includes/ajax/class-acf-ajax.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-check-screen.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-user-setting.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-upgrade.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-query.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-query-users.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-local-json-diff.php' );
|
||||
|
||||
// Include forms.
|
||||
acf_include( 'includes/forms/form-attachment.php' );
|
||||
acf_include( 'includes/forms/form-comment.php' );
|
||||
acf_include( 'includes/forms/form-customizer.php' );
|
||||
acf_include( 'includes/forms/form-front.php' );
|
||||
acf_include( 'includes/forms/form-nav-menu.php' );
|
||||
acf_include( 'includes/forms/form-post.php' );
|
||||
acf_include( 'includes/forms/form-gutenberg.php' );
|
||||
acf_include( 'includes/forms/form-taxonomy.php' );
|
||||
acf_include( 'includes/forms/form-user.php' );
|
||||
acf_include( 'includes/forms/form-widget.php' );
|
||||
|
||||
// Include admin.
|
||||
if ( is_admin() ) {
|
||||
acf_include( 'includes/admin/admin.php' );
|
||||
acf_include( 'includes/admin/admin-internal-post-type-list.php' );
|
||||
acf_include( 'includes/admin/admin-internal-post-type.php' );
|
||||
acf_include( 'includes/admin/admin-notices.php' );
|
||||
acf_include( 'includes/admin/admin-tools.php' );
|
||||
acf_include( 'includes/admin/admin-upgrade.php' );
|
||||
}
|
||||
|
||||
// Include polyfill for < PHP7 unserialize.
|
||||
if ( PHP_VERSION_ID < 70000 ) {
|
||||
acf_include( 'vendor/polyfill-unserialize/src/Unserialize.php' );
|
||||
acf_include( 'vendor/polyfill-unserialize/src/DisallowedClassesSubstitutor.php' );
|
||||
}
|
||||
|
||||
// Include legacy.
|
||||
acf_include( 'includes/legacy/legacy-locations.php' );
|
||||
|
||||
// Include PRO.
|
||||
acf_include( 'pro/acf-pro.php' );
|
||||
|
||||
if ( is_admin() && function_exists( 'acf_is_pro' ) && ! acf_is_pro() ) {
|
||||
acf_include( 'includes/admin/admin-options-pages-preview.php' );
|
||||
}
|
||||
|
||||
// Add actions.
|
||||
add_action( 'init', array( $this, 'register_post_status' ), 4 );
|
||||
add_action( 'init', array( $this, 'init' ), 5 );
|
||||
add_action( 'init', array( $this, 'register_post_types' ), 5 );
|
||||
add_action( 'activated_plugin', array( $this, 'deactivate_other_instances' ) );
|
||||
add_action( 'pre_current_active_plugins', array( $this, 'plugin_deactivated_notice' ) );
|
||||
|
||||
// Add filters.
|
||||
add_filter( 'posts_where', array( $this, 'posts_where' ), 10, 2 );
|
||||
}
|
||||
|
||||
/**
|
||||
* Completes the setup process on "init" of earlier.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init() {
|
||||
|
||||
// Bail early if called directly from functions.php or plugin file.
|
||||
if ( ! did_action( 'plugins_loaded' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// This function may be called directly from template functions. Bail early if already did this.
|
||||
if ( acf_did( 'init' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Update url setting. Allows other plugins to modify the URL (force SSL).
|
||||
acf_update_setting( 'url', plugin_dir_url( __FILE__ ) );
|
||||
|
||||
// Load textdomain file.
|
||||
acf_load_textdomain();
|
||||
|
||||
// Include 3rd party compatiblity.
|
||||
acf_include( 'includes/third-party.php' );
|
||||
|
||||
// Include wpml support.
|
||||
if ( defined( 'ICL_SITEPRESS_VERSION' ) ) {
|
||||
acf_include( 'includes/wpml.php' );
|
||||
}
|
||||
|
||||
// Add post types and taxonomies.
|
||||
if ( acf_get_setting( 'enable_post_types' ) ) {
|
||||
acf_include( 'includes/post-types/class-acf-taxonomy.php' );
|
||||
acf_include( 'includes/post-types/class-acf-post-type.php' );
|
||||
}
|
||||
|
||||
// Add other ACF internal post types.
|
||||
do_action( 'acf/init_internal_post_types' );
|
||||
|
||||
// Include fields.
|
||||
acf_include( 'includes/fields/class-acf-field-text.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-textarea.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-number.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-range.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-email.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-url.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-password.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-image.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-file.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-wysiwyg.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-oembed.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-select.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-checkbox.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-radio.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-button-group.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-true_false.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-link.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-post_object.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-page_link.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-relationship.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-taxonomy.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-user.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-google-map.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-date_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-date_time_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-time_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-color_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-message.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-accordion.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-tab.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-group.php' );
|
||||
|
||||
/**
|
||||
* Fires after field types have been included.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_FIELD_API_VERSION The field API version.
|
||||
*/
|
||||
do_action( 'acf/include_field_types', ACF_FIELD_API_VERSION );
|
||||
|
||||
// Include locations.
|
||||
acf_include( 'includes/locations/class-acf-location-post-type.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-template.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-status.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-format.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-category.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-taxonomy.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page-template.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page-type.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page-parent.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-current-user.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-current-user-role.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-user-form.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-user-role.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-taxonomy.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-attachment.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-comment.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-widget.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-nav-menu.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-nav-menu-item.php' );
|
||||
|
||||
/**
|
||||
* Fires after location types have been included.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_FIELD_API_VERSION The field API version.
|
||||
*/
|
||||
do_action( 'acf/include_location_rules', ACF_FIELD_API_VERSION );
|
||||
|
||||
/**
|
||||
* Fires during initialization. Used to add local fields.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_FIELD_API_VERSION The field API version.
|
||||
*/
|
||||
do_action( 'acf/include_fields', ACF_FIELD_API_VERSION );
|
||||
|
||||
/**
|
||||
* Fires during initialization. Used to add local post types.
|
||||
*
|
||||
* @since 6.1
|
||||
*
|
||||
* @param int ACF_MAJOR_VERSION The major version of ACF.
|
||||
*/
|
||||
do_action( 'acf/include_post_types', ACF_MAJOR_VERSION );
|
||||
|
||||
/**
|
||||
* Fires during initialization. Used to add local taxonomies.
|
||||
*
|
||||
* @since 6.1
|
||||
*
|
||||
* @param int ACF_MAJOR_VERSION The major version of ACF.
|
||||
*/
|
||||
do_action( 'acf/include_taxonomies', ACF_MAJOR_VERSION );
|
||||
|
||||
/**
|
||||
* Fires after ACF is completely "initialized".
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_MAJOR_VERSION The major version of ACF.
|
||||
*/
|
||||
do_action( 'acf/init', ACF_MAJOR_VERSION );
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers the ACF post types.
|
||||
*
|
||||
* @date 22/10/2015
|
||||
* @since 5.3.2
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register_post_types() {
|
||||
$cap = acf_get_setting( 'capability' );
|
||||
|
||||
// Register the Field Group post type.
|
||||
register_post_type(
|
||||
'acf-field-group',
|
||||
array(
|
||||
'labels' => array(
|
||||
'name' => __( 'Field Groups', 'acf' ),
|
||||
'singular_name' => __( 'Field Group', 'acf' ),
|
||||
'add_new' => __( 'Add New', 'acf' ),
|
||||
'add_new_item' => __( 'Add New Field Group', 'acf' ),
|
||||
'edit_item' => __( 'Edit Field Group', 'acf' ),
|
||||
'new_item' => __( 'New Field Group', 'acf' ),
|
||||
'view_item' => __( 'View Field Group', 'acf' ),
|
||||
'search_items' => __( 'Search Field Groups', 'acf' ),
|
||||
'not_found' => __( 'No Field Groups found', 'acf' ),
|
||||
'not_found_in_trash' => __( 'No Field Groups found in Trash', 'acf' ),
|
||||
),
|
||||
'public' => false,
|
||||
'hierarchical' => true,
|
||||
'show_ui' => true,
|
||||
'show_in_menu' => false,
|
||||
'_builtin' => false,
|
||||
'capability_type' => 'post',
|
||||
'capabilities' => array(
|
||||
'edit_post' => $cap,
|
||||
'delete_post' => $cap,
|
||||
'edit_posts' => $cap,
|
||||
'delete_posts' => $cap,
|
||||
),
|
||||
'supports' => false,
|
||||
'rewrite' => false,
|
||||
'query_var' => false,
|
||||
)
|
||||
);
|
||||
|
||||
// Register the Field post type.
|
||||
register_post_type(
|
||||
'acf-field',
|
||||
array(
|
||||
'labels' => array(
|
||||
'name' => __( 'Fields', 'acf' ),
|
||||
'singular_name' => __( 'Field', 'acf' ),
|
||||
'add_new' => __( 'Add New', 'acf' ),
|
||||
'add_new_item' => __( 'Add New Field', 'acf' ),
|
||||
'edit_item' => __( 'Edit Field', 'acf' ),
|
||||
'new_item' => __( 'New Field', 'acf' ),
|
||||
'view_item' => __( 'View Field', 'acf' ),
|
||||
'search_items' => __( 'Search Fields', 'acf' ),
|
||||
'not_found' => __( 'No Fields found', 'acf' ),
|
||||
'not_found_in_trash' => __( 'No Fields found in Trash', 'acf' ),
|
||||
),
|
||||
'public' => false,
|
||||
'hierarchical' => true,
|
||||
'show_ui' => false,
|
||||
'show_in_menu' => false,
|
||||
'_builtin' => false,
|
||||
'capability_type' => 'post',
|
||||
'capabilities' => array(
|
||||
'edit_post' => $cap,
|
||||
'delete_post' => $cap,
|
||||
'edit_posts' => $cap,
|
||||
'delete_posts' => $cap,
|
||||
),
|
||||
'supports' => array( 'title' ),
|
||||
'rewrite' => false,
|
||||
'query_var' => false,
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers the ACF post statuses.
|
||||
*
|
||||
* @date 22/10/2015
|
||||
* @since 5.3.2
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register_post_status() {
|
||||
|
||||
// Register the Inactive post status.
|
||||
register_post_status(
|
||||
'acf-disabled',
|
||||
array(
|
||||
'label' => _x( 'Inactive', 'post status', 'acf' ),
|
||||
'public' => true,
|
||||
'exclude_from_search' => false,
|
||||
'show_in_admin_all_list' => true,
|
||||
'show_in_admin_status_list' => true,
|
||||
/* translators: counts for inactive field groups */
|
||||
'label_count' => _n_noop( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', 'acf' ),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if another version of ACF/ACF PRO is active and deactivates it.
|
||||
* Hooked on `activated_plugin` so other plugin is deactivated when current plugin is activated.
|
||||
*
|
||||
* @param string $plugin The plugin being activated.
|
||||
*/
|
||||
public function deactivate_other_instances( $plugin ) {
|
||||
if ( ! in_array( $plugin, array( 'advanced-custom-fields/acf.php', 'advanced-custom-fields-pro/acf.php' ), true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$plugin_to_deactivate = 'advanced-custom-fields/acf.php';
|
||||
$deactivated_notice_id = '1';
|
||||
|
||||
// If we just activated the free version, deactivate the pro version.
|
||||
if ( $plugin === $plugin_to_deactivate ) {
|
||||
$plugin_to_deactivate = 'advanced-custom-fields-pro/acf.php';
|
||||
$deactivated_notice_id = '2';
|
||||
}
|
||||
|
||||
if ( is_multisite() && is_network_admin() ) {
|
||||
$active_plugins = (array) get_site_option( 'active_sitewide_plugins', array() );
|
||||
$active_plugins = array_keys( $active_plugins );
|
||||
} else {
|
||||
$active_plugins = (array) get_option( 'active_plugins', array() );
|
||||
}
|
||||
|
||||
foreach ( $active_plugins as $plugin_basename ) {
|
||||
if ( $plugin_to_deactivate === $plugin_basename ) {
|
||||
set_transient( 'acf_deactivated_notice_id', $deactivated_notice_id, 1 * HOUR_IN_SECONDS );
|
||||
deactivate_plugins( $plugin_basename );
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays a notice when either ACF or ACF PRO is automatically deactivated.
|
||||
*/
|
||||
public function plugin_deactivated_notice() {
|
||||
$deactivated_notice_id = (int) get_transient( 'acf_deactivated_notice_id' );
|
||||
if ( ! in_array( $deactivated_notice_id, array( 1, 2 ), true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields.", 'acf' );
|
||||
if ( 2 === $deactivated_notice_id ) {
|
||||
$message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields PRO.", 'acf' );
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="updated" style="border-left: 4px solid #ffba00;">
|
||||
<p><?php echo esc_html( $message ); ?></p>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
delete_transient( 'acf_deactivated_notice_id' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters the $where clause allowing for custom WP_Query args.
|
||||
*
|
||||
* @date 31/8/19
|
||||
* @since 5.8.1
|
||||
*
|
||||
* @param string $where The WHERE clause.
|
||||
* @param WP_Query $wp_query The query object.
|
||||
* @return string
|
||||
*/
|
||||
public function posts_where( $where, $wp_query ) {
|
||||
global $wpdb;
|
||||
|
||||
$field_key = $wp_query->get( 'acf_field_key' );
|
||||
$field_name = $wp_query->get( 'acf_field_name' );
|
||||
$group_key = $wp_query->get( 'acf_group_key' );
|
||||
$post_type_key = $wp_query->get( 'acf_post_type_key' );
|
||||
$taxonomy_key = $wp_query->get( 'acf_taxonomy_key' );
|
||||
|
||||
// Add custom "acf_field_key" arg.
|
||||
if ( $field_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $field_key );
|
||||
}
|
||||
|
||||
// Add custom "acf_field_name" arg.
|
||||
if ( $field_name ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_excerpt = %s", $field_name );
|
||||
}
|
||||
|
||||
// Add custom "acf_group_key" arg.
|
||||
if ( $group_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $group_key );
|
||||
}
|
||||
|
||||
// Add custom "acf_post_type_key" arg.
|
||||
if ( $post_type_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $post_type_key );
|
||||
}
|
||||
|
||||
// Add custom "acf_taxonomy_key" arg.
|
||||
if ( $taxonomy_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $taxonomy_key );
|
||||
}
|
||||
|
||||
return $where;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines a constant if doesnt already exist.
|
||||
*
|
||||
* @date 3/5/17
|
||||
* @since 5.5.13
|
||||
*
|
||||
* @param string $name The constant name.
|
||||
* @param mixed $value The constant value.
|
||||
* @return void
|
||||
*/
|
||||
public function define( $name, $value = true ) {
|
||||
if ( ! defined( $name ) ) {
|
||||
define( $name, $value );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if a setting exists for this name.
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param string $name The setting name.
|
||||
* @return boolean
|
||||
*/
|
||||
public function has_setting( $name ) {
|
||||
return isset( $this->settings[ $name ] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a setting or null if doesn't exist.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The setting name.
|
||||
* @return mixed
|
||||
*/
|
||||
public function get_setting( $name ) {
|
||||
return isset( $this->settings[ $name ] ) ? $this->settings[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates a setting for the given name and value.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The setting name.
|
||||
* @param mixed $value The setting value.
|
||||
* @return true
|
||||
*/
|
||||
public function update_setting( $name, $value ) {
|
||||
$this->settings[ $name ] = $value;
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns data or null if doesn't exist.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The data name.
|
||||
* @return mixed
|
||||
*/
|
||||
public function get_data( $name ) {
|
||||
return isset( $this->data[ $name ] ) ? $this->data[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets data for the given name and value.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The data name.
|
||||
* @param mixed $value The data value.
|
||||
* @return void
|
||||
*/
|
||||
public function set_data( $name, $value ) {
|
||||
$this->data[ $name ] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an instance or null if doesn't exist.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param string $class The instance class name.
|
||||
* @return object
|
||||
*/
|
||||
public function get_instance( $class ) {
|
||||
$name = strtolower( $class );
|
||||
return isset( $this->instances[ $name ] ) ? $this->instances[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates and stores an instance of the given class.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param string $class The instance class name.
|
||||
* @return object
|
||||
*/
|
||||
public function new_instance( $class ) {
|
||||
$instance = new $class();
|
||||
$name = strtolower( $class );
|
||||
$this->instances[ $name ] = $instance;
|
||||
return $instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Magic __isset method for backwards compatibility.
|
||||
*
|
||||
* @date 24/4/20
|
||||
* @since 5.9.0
|
||||
*
|
||||
* @param string $key Key name.
|
||||
* @return bool
|
||||
*/
|
||||
public function __isset( $key ) {
|
||||
return in_array( $key, array( 'locations', 'json' ), true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Magic __get method for backwards compatibility.
|
||||
*
|
||||
* @date 24/4/20
|
||||
* @since 5.9.0
|
||||
*
|
||||
* @param string $key Key name.
|
||||
* @return mixed
|
||||
*/
|
||||
public function __get( $key ) {
|
||||
switch ( $key ) {
|
||||
case 'locations':
|
||||
return acf_get_instance( 'ACF_Legacy_Locations' );
|
||||
case 'json':
|
||||
return acf_get_instance( 'ACF_Local_JSON' );
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The main function responsible for returning the one true acf Instance to functions everywhere.
|
||||
* Use this function like you would a global variable, except without needing to declare the global.
|
||||
*
|
||||
* Example: <?php $acf = acf(); ?>
|
||||
*
|
||||
* @date 4/09/13
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @return ACF
|
||||
*/
|
||||
function acf() {
|
||||
global $acf;
|
||||
|
||||
// Instantiate only once.
|
||||
if ( ! isset( $acf ) ) {
|
||||
$acf = new ACF();
|
||||
$acf->initialize();
|
||||
}
|
||||
return $acf;
|
||||
}
|
||||
|
||||
// Instantiate.
|
||||
acf();
|
||||
|
||||
} // class_exists check
|
@ -1,321 +0,0 @@
|
||||
/*!***************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/advanced-custom-fields-pro/assets/src/sass/acf-dark.scss ***!
|
||||
\***************************************************************************************************************************************************************************************************************/
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Dark mode
|
||||
*
|
||||
* WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/
|
||||
* Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Global
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-box {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-box .title,
|
||||
.acf-box .footer {
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-box h2 {
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-box table, .acf-box tbody, .acf-box tr {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.acf-thead {
|
||||
color: #bbc8d4;
|
||||
border-color: #191f25;
|
||||
}
|
||||
|
||||
.acf-tfoot {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-table.-clear,
|
||||
.acf-table.-clear tr {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.acf-loading-overlay {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Fields
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-fields > .acf-field {
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-fields.-left > .acf-field:before {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-fields.-border {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-field[data-width] + .acf-field[data-width] {
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-input-prepend,
|
||||
.acf-input-append {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-fields > .acf-tab-wrap {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group li a {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-fields.-sidebar:before {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-fields.-sidebar.-left:before {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
background: #23282d;
|
||||
}
|
||||
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-file-uploader .show-if-value {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-file-uploader .show-if-value .file-icon {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-oembed {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-oembed .title {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.acf-gallery {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-main {
|
||||
background: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .margin {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side .acf-gallery-side-info {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-toolbar {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-button-group label:not(.selected) {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-switch:not(.-on) {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-switch:not(.-on) .acf-switch-slider {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.acf-link .link-wrap {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-relationship .filters {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-relationship .selection {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-relationship .selection .choices,
|
||||
.acf-relationship .selection .choices-list,
|
||||
.acf-relationship .selection .values {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-taxonomy-field .categorychecklist-holder {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-google-map {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-google-map .title {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.acf-accordion {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-field.acf-accordion .acf-accordion-content > .acf-fields {
|
||||
border-color: #191f25;
|
||||
}
|
||||
|
||||
.acf-flexible-content .layout {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-handle {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-handle .acf-fc-layout-order {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
#wpbody .acf-table {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#wpbody .acf-table > tbody > tr,
|
||||
#wpbody .acf-table > thead > tr {
|
||||
background: transparent;
|
||||
}
|
||||
#wpbody .acf-table > tbody > tr > td,
|
||||
#wpbody .acf-table > tbody > tr > th,
|
||||
#wpbody .acf-table > thead > tr > td,
|
||||
#wpbody .acf-table > thead > tr > th {
|
||||
border-color: #191f25;
|
||||
}
|
||||
|
||||
.acf-field select optgroup, .acf-field select optgroup:nth-child(2n) {
|
||||
background: #50626f;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field Group
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
#acf-field-group-fields .acf-field-list-wrap {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-list .no-fields-message {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object table, #acf-field-group-fields .acf-field-object tbody, #acf-field-group-fields .acf-field-object tr, #acf-field-group-fields .acf-field-object td, #acf-field-group-fields .acf-field-object th {
|
||||
background: transparent;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object .acf-field .acf-label {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object.ui-sortable-helper {
|
||||
border-color: #191f25;
|
||||
box-shadow: none;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object.ui-sortable-placeholder {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
box-shadow: none;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object + .acf-field-object-tab::before,
|
||||
#acf-field-group-fields .acf-field-object + .acf-field-object-accordion::before {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Admin: Tools
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-meta-box-wrap .acf-fields {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=acf-dark.css.map*/
|
@ -1,402 +0,0 @@
|
||||
/******/ (() => { // webpackBootstrap
|
||||
/******/ var __webpack_modules__ = ({
|
||||
|
||||
/***/ "./src/advanced-custom-fields-pro/assets/src/js/_acf-internal-post-type.js":
|
||||
/*!*********************************************************************************!*\
|
||||
!*** ./src/advanced-custom-fields-pro/assets/src/js/_acf-internal-post-type.js ***!
|
||||
\*********************************************************************************/
|
||||
/***/ (() => {
|
||||
|
||||
(function ($, undefined) {
|
||||
/**
|
||||
* internalPostTypeSettingsManager
|
||||
*
|
||||
* Model for handling events in the settings metaboxes of internal post types
|
||||
*
|
||||
* @since 6.1
|
||||
*/
|
||||
const internalPostTypeSettingsManager = new acf.Model({
|
||||
id: 'internalPostTypeSettingsManager',
|
||||
wait: 'ready',
|
||||
events: {
|
||||
'blur .acf_slugify_to_key': 'onChangeSlugify',
|
||||
'blur .acf_singular_label': 'onChangeSingularLabel',
|
||||
'blur .acf_plural_label': 'onChangePluralLabel',
|
||||
'change .acf_hierarchical_switch': 'onChangeHierarchical',
|
||||
'click .acf-regenerate-labels': 'onClickRegenerateLabels',
|
||||
'click .acf-clear-labels': 'onClickClearLabels',
|
||||
'change .rewrite_slug_field': 'onChangeURLSlug',
|
||||
'keyup .rewrite_slug_field': 'onChangeURLSlug'
|
||||
},
|
||||
onChangeSlugify: function (e, $el) {
|
||||
const name = $el.val();
|
||||
const $keyInput = $('.acf_slugified_key');
|
||||
|
||||
// Generate field key.
|
||||
if ($keyInput.val().trim() == '') {
|
||||
let slug = acf.strSanitize(name.trim()).replaceAll('_', '-');
|
||||
slug = acf.applyFilters('generate_internal_post_type_name', slug, this);
|
||||
let slugLength = 0;
|
||||
if ('taxonomy' === acf.get('screen')) {
|
||||
slugLength = 32;
|
||||
} else if ('post_type' === acf.get('screen')) {
|
||||
slugLength = 20;
|
||||
}
|
||||
if (slugLength) {
|
||||
slug = slug.substring(0, slugLength);
|
||||
}
|
||||
$keyInput.val(slug);
|
||||
}
|
||||
},
|
||||
initialize: function () {
|
||||
// check we should init.
|
||||
if (!['taxonomy', 'post_type'].includes(acf.get('screen'))) return;
|
||||
|
||||
// select2
|
||||
const template = function (selection) {
|
||||
if ('undefined' === typeof selection.element) {
|
||||
return selection;
|
||||
}
|
||||
const $parentSelect = $(selection.element.parentElement);
|
||||
const $selection = $('<span class="acf-selection"></span>');
|
||||
$selection.html(acf.escHtml(selection.element.innerHTML));
|
||||
let isDefault = false;
|
||||
if ($parentSelect.filter('.acf-taxonomy-manage_terms, .acf-taxonomy-edit_terms, .acf-taxonomy-delete_terms').length && selection.id === 'manage_categories') {
|
||||
isDefault = true;
|
||||
} else if ($parentSelect.filter('.acf-taxonomy-assign_terms').length && selection.id === 'edit_posts') {
|
||||
isDefault = true;
|
||||
} else if (selection.id === 'taxonomy_key' || selection.id === 'post_type_key' || selection.id === 'default') {
|
||||
isDefault = true;
|
||||
}
|
||||
if (isDefault) {
|
||||
$selection.append('<span class="acf-select2-default-pill">' + acf.__('Default') + '</span>');
|
||||
}
|
||||
$selection.data('element', selection.element);
|
||||
return $selection;
|
||||
};
|
||||
acf.newSelect2($('select.query_var'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-manage_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-edit_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-delete_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-assign_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.meta_box'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
const permalinkRewrite = acf.newSelect2($('select.permalink_rewrite'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
$('.rewrite_slug_field').trigger('change');
|
||||
permalinkRewrite.on('change', function (e) {
|
||||
$('.rewrite_slug_field').trigger('change');
|
||||
});
|
||||
},
|
||||
onChangeURLSlug: function (e, $el) {
|
||||
const $field = $('div.acf-field.acf-field-permalink-rewrite');
|
||||
const rewriteType = $field.find('select').find('option:selected').val();
|
||||
const originalInstructions = $field.data(rewriteType + '_instructions');
|
||||
const siteURL = $field.data('site_url');
|
||||
const $permalinkDesc = $field.find('p.description').first();
|
||||
if (rewriteType === 'taxonomy_key' || rewriteType === 'post_type_key') {
|
||||
var slugvalue = $('.acf_slugified_key').val().trim();
|
||||
} else {
|
||||
var slugvalue = $el.val().trim();
|
||||
}
|
||||
if (!slugvalue.length) slugvalue = '{slug}';
|
||||
$permalinkDesc.html($('<span>' + originalInstructions + '</span>').text().replace('{slug}', '<strong>' + $('<span>' + siteURL + '/' + slugvalue + '</span>').text() + '</strong>'));
|
||||
},
|
||||
onChangeSingularLabel: function (e, $el) {
|
||||
const label = $el.val();
|
||||
this.updateLabels(label, 'singular', false);
|
||||
},
|
||||
onChangePluralLabel: function (e, $el) {
|
||||
const label = $el.val();
|
||||
this.updateLabels(label, 'plural', false);
|
||||
},
|
||||
onChangeHierarchical: function (e, $el) {
|
||||
const hierarchical = $el.is(':checked');
|
||||
if ('taxonomy' === acf.get('screen')) {
|
||||
let text = $('.acf-field-meta-box').data('tags_meta_box');
|
||||
if (hierarchical) {
|
||||
text = $('.acf-field-meta-box').data('categories_meta_box');
|
||||
}
|
||||
$('#acf_taxonomy-meta_box').find('option:first').text(text).trigger('change');
|
||||
}
|
||||
this.updatePlaceholders(hierarchical);
|
||||
},
|
||||
onClickRegenerateLabels: function (e, $el) {
|
||||
this.updateLabels($('.acf_singular_label').val(), 'singular', true);
|
||||
this.updateLabels($('.acf_plural_label').val(), 'plural', true);
|
||||
},
|
||||
onClickClearLabels: function (e, $el) {
|
||||
this.clearLabels();
|
||||
},
|
||||
updateLabels(label, type, force) {
|
||||
$('[data-label][data-replace="' + type + '"').each((index, element) => {
|
||||
var $input = $(element).find('input[type="text"]').first();
|
||||
if (!force && $input.val() != '') return;
|
||||
if (label == '') return;
|
||||
$input.val($(element).data('transform') === 'lower' ? $(element).data('label').replace('%s', label.toLowerCase()) : $(element).data('label').replace('%s', label));
|
||||
});
|
||||
},
|
||||
clearLabels() {
|
||||
$('[data-label]').each((index, element) => {
|
||||
$(element).find('input[type="text"]').first().val('');
|
||||
});
|
||||
},
|
||||
updatePlaceholders(heirarchical) {
|
||||
if (acf.get('screen') == 'post_type') {
|
||||
var singular = acf.__('Post');
|
||||
var plural = acf.__('Posts');
|
||||
if (heirarchical) {
|
||||
singular = acf.__('Page');
|
||||
plural = acf.__('Pages');
|
||||
}
|
||||
} else {
|
||||
var singular = acf.__('Tag');
|
||||
var plural = acf.__('Tags');
|
||||
if (heirarchical) {
|
||||
singular = acf.__('Category');
|
||||
plural = acf.__('Categories');
|
||||
}
|
||||
}
|
||||
$('[data-label]').each((index, element) => {
|
||||
var useReplacement = $(element).data('replace') === 'plural' ? plural : singular;
|
||||
if ($(element).data('transform') === 'lower') {
|
||||
useReplacement = useReplacement.toLowerCase();
|
||||
}
|
||||
$(element).find('input[type="text"]').first().attr('placeholder', $(element).data('label').replace('%s', useReplacement));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* advancedSettingsMetaboxManager
|
||||
*
|
||||
* Screen options functionality for internal post types
|
||||
*
|
||||
* @since 6.1
|
||||
*/
|
||||
const advancedSettingsMetaboxManager = new acf.Model({
|
||||
id: 'advancedSettingsMetaboxManager',
|
||||
wait: 'load',
|
||||
events: {
|
||||
'change .acf-advanced-settings-toggle': 'onToggleACFAdvancedSettings',
|
||||
'change #screen-options-wrap #acf-advanced-settings-hide': 'onToggleScreenOptionsAdvancedSettings'
|
||||
},
|
||||
initialize: function () {
|
||||
this.$screenOptionsToggle = $('#screen-options-wrap #acf-advanced-settings-hide:first');
|
||||
this.$ACFAdvancedToggle = $('.acf-advanced-settings-toggle:first');
|
||||
this.render();
|
||||
},
|
||||
isACFAdvancedSettingsChecked: function () {
|
||||
// Screen option is hidden by filter.
|
||||
if (!this.$ACFAdvancedToggle.length) {
|
||||
return false;
|
||||
}
|
||||
return this.$ACFAdvancedToggle.prop('checked');
|
||||
},
|
||||
isScreenOptionsAdvancedSettingsChecked: function () {
|
||||
// Screen option is hidden by filter.
|
||||
if (!this.$screenOptionsToggle.length) {
|
||||
return false;
|
||||
}
|
||||
return this.$screenOptionsToggle.prop('checked');
|
||||
},
|
||||
onToggleScreenOptionsAdvancedSettings: function () {
|
||||
if (this.isScreenOptionsAdvancedSettingsChecked()) {
|
||||
if (!this.isACFAdvancedSettingsChecked()) {
|
||||
this.$ACFAdvancedToggle.trigger('click');
|
||||
}
|
||||
} else {
|
||||
if (this.isACFAdvancedSettingsChecked()) {
|
||||
this.$ACFAdvancedToggle.trigger('click');
|
||||
}
|
||||
}
|
||||
},
|
||||
onToggleACFAdvancedSettings: function () {
|
||||
if (this.isACFAdvancedSettingsChecked()) {
|
||||
if (!this.isScreenOptionsAdvancedSettingsChecked()) {
|
||||
this.$screenOptionsToggle.trigger('click');
|
||||
}
|
||||
} else {
|
||||
if (this.isScreenOptionsAdvancedSettingsChecked()) {
|
||||
this.$screenOptionsToggle.trigger('click');
|
||||
}
|
||||
}
|
||||
},
|
||||
render: function () {
|
||||
// On render, sync screen options to ACF's setting.
|
||||
this.onToggleACFAdvancedSettings();
|
||||
}
|
||||
});
|
||||
const linkFieldGroupsManger = new acf.Model({
|
||||
id: 'linkFieldGroupsManager',
|
||||
events: {
|
||||
'click .acf-link-field-groups': 'linkFieldGroups'
|
||||
},
|
||||
linkFieldGroups: function () {
|
||||
let popup = false;
|
||||
const step1 = function () {
|
||||
$.ajax({
|
||||
url: acf.get('ajaxurl'),
|
||||
data: acf.prepareForAjax({
|
||||
action: 'acf/link_field_groups'
|
||||
}),
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: step2
|
||||
});
|
||||
};
|
||||
const step2 = function (response) {
|
||||
popup = acf.newPopup({
|
||||
title: response.data.title,
|
||||
content: response.data.content,
|
||||
width: '600px'
|
||||
});
|
||||
popup.$el.addClass('acf-link-field-groups-popup');
|
||||
popup.on('submit', 'form', step3);
|
||||
};
|
||||
const step3 = function (e) {
|
||||
e.preventDefault();
|
||||
const $select = popup.$('select');
|
||||
const val = $select.val();
|
||||
if (!val.length) {
|
||||
$select.focus();
|
||||
return;
|
||||
}
|
||||
acf.startButtonLoading(popup.$('.button'));
|
||||
|
||||
// get HTML
|
||||
$.ajax({
|
||||
url: acf.get('ajaxurl'),
|
||||
data: acf.prepareForAjax({
|
||||
action: 'acf/link_field_groups',
|
||||
field_groups: val
|
||||
}),
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: step4
|
||||
});
|
||||
};
|
||||
const step4 = function (response) {
|
||||
popup.content(response.data.content);
|
||||
if (wp.a11y && wp.a11y.speak && acf.__) {
|
||||
wp.a11y.speak(acf.__('Field groups linked successfully.'), 'polite');
|
||||
}
|
||||
popup.$('button.acf-close-popup').focus();
|
||||
};
|
||||
step1();
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
/************************************************************************/
|
||||
/******/ // The module cache
|
||||
/******/ var __webpack_module_cache__ = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/ // Check if module is in cache
|
||||
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
||||
/******/ if (cachedModule !== undefined) {
|
||||
/******/ return cachedModule.exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = __webpack_module_cache__[moduleId] = {
|
||||
/******/ // no module.id needed
|
||||
/******/ // no module.loaded needed
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/************************************************************************/
|
||||
/******/ /* webpack/runtime/compat get default export */
|
||||
/******/ (() => {
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = (module) => {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ () => (module['default']) :
|
||||
/******/ () => (module);
|
||||
/******/ __webpack_require__.d(getter, { a: getter });
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/define property getters */
|
||||
/******/ (() => {
|
||||
/******/ // define getter functions for harmony exports
|
||||
/******/ __webpack_require__.d = (exports, definition) => {
|
||||
/******/ for(var key in definition) {
|
||||
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
||||
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
||||
/******/ (() => {
|
||||
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/make namespace object */
|
||||
/******/ (() => {
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = (exports) => {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/************************************************************************/
|
||||
var __webpack_exports__ = {};
|
||||
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
||||
(() => {
|
||||
"use strict";
|
||||
/*!********************************************************************************!*\
|
||||
!*** ./src/advanced-custom-fields-pro/assets/src/js/acf-internal-post-type.js ***!
|
||||
\********************************************************************************/
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony import */ var _acf_internal_post_type_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_acf-internal-post-type.js */ "./src/advanced-custom-fields-pro/assets/src/js/_acf-internal-post-type.js");
|
||||
/* harmony import */ var _acf_internal_post_type_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_acf_internal_post_type_js__WEBPACK_IMPORTED_MODULE_0__);
|
||||
|
||||
})();
|
||||
|
||||
/******/ })()
|
||||
;
|
||||
//# sourceMappingURL=acf-internal-post-type.js.map
|
1
includes/acf/assets/build/js/acf.min.js
vendored
Before Width: | Height: | Size: 3.4 KiB |
@ -1,7 +0,0 @@
|
||||
<svg width="55" height="24" viewBox="0 0 55 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M43.9986 23.8816H38.0521V0.0253448H53.9034V5.58064H43.9986V9.83762H53.334V15.2547H43.9986V23.8825V23.8816Z" fill="white"/>
|
||||
<path opacity="0.05" d="M36.4832 13.8697H42.3772C41.5051 19.9417 36.3849 23.9574 30.1814 23.9574C23.3882 23.9574 17.8572 18.8809 17.8572 12.0448C17.843 10.4551 18.1521 8.879 18.7658 7.41239C19.3795 5.94579 20.2849 4.61924 21.4271 3.51334C23.7714 1.24304 26.9182 -0.00834104 30.1814 0.0320335C36.3275 0.0320335 41.5908 4.07879 42.3392 10.0536H36.4511C34.6807 3.2856 23.649 3.94741 23.649 12.0448C23.649 20.1432 34.8189 20.7398 36.4832 13.8716V13.8697Z" fill="white"/>
|
||||
<path d="M35.2772 13.8697C34.266 17.2858 30.667 19.317 27.1244 18.4664C23.5798 17.6128 21.3588 14.187 22.0946 10.7047C22.8294 7.22146 26.2572 4.92655 29.8582 5.50758C31.3334 5.70738 32.6937 6.41247 33.7074 7.50273C34.408 8.22394 34.9337 9.0963 35.2442 10.0526H40.96C40.2116 4.06425 34.9337 0.0320875 28.8022 0.0320875C25.5386 -0.00942939 22.391 1.24129 20.0459 3.51144C18.903 4.61761 17.997 5.94473 17.3831 7.41208C16.7693 8.87942 16.4603 10.4563 16.4751 12.0468C16.4751 18.8829 21.9739 23.9574 28.8042 23.9574C35.0028 23.9574 40.1084 19.9418 40.996 13.8697H35.2763H35.2772Z" fill="white"/>
|
||||
<path opacity="0.05" d="M17.5146 20.4109H9.2391L7.88629 23.8776H1.55337L11.245 0H15.4689L25.5459 23.8854H18.8597L17.5127 20.4109H17.5146ZM11.5914 14.5004L11.3841 15.0396H15.4017L15.2625 14.6347L13.3919 9.51446L11.5914 14.5004Z" fill="white"/>
|
||||
<path d="M15.9476 20.4109H7.68573L6.33389 23.8776H0L9.69257 0H13.9165L23.9935 23.8854H17.3102L15.9476 20.4109ZM10.0381 14.5004L9.83174 15.0396H13.8493L13.7092 14.6347L11.8396 9.51446L10.039 14.5004H10.0381Z" fill="white"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,10 +0,0 @@
|
||||
<svg width="284" height="44" viewBox="0 0 284 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.8067 14.5H38.1933C38.5589 14.5 38.8743 14.5 39.1353 14.5178C39.4102 14.5365 39.6851 14.5778 39.9567 14.6903C40.5693 14.944 41.056 15.4307 41.3097 16.0433C41.4222 16.3149 41.4635 16.5898 41.4822 16.8647C41.5 17.1257 41.5 17.4411 41.5 17.8067V17.8333C41.5 18.2936 41.1269 18.6667 40.6667 18.6667C40.2064 18.6667 39.8333 18.2936 39.8333 17.8333C39.8333 17.4336 39.8329 17.1756 39.8194 16.9781C39.8064 16.7881 39.7843 16.7158 39.7699 16.6811C39.6853 16.4769 39.5231 16.3147 39.3189 16.2301C39.2842 16.2157 39.2119 16.1936 39.0219 16.1806C38.8244 16.1671 38.5664 16.1667 38.1667 16.1667H34.8333V27.8333H36.5C36.9602 27.8333 37.3333 28.2064 37.3333 28.6667C37.3333 29.1269 36.9602 29.5 36.5 29.5H31.5C31.0398 29.5 30.6667 29.1269 30.6667 28.6667C30.6667 28.2064 31.0398 27.8333 31.5 27.8333H33.1667V16.1667H29.8333C29.4336 16.1667 29.1756 16.1671 28.9781 16.1806C28.7881 16.1936 28.7158 16.2157 28.6811 16.2301C28.4769 16.3147 28.3147 16.4769 28.2301 16.6811C28.2157 16.7158 28.1936 16.7881 28.1806 16.9781C28.1671 17.1756 28.1667 17.4336 28.1667 17.8333C28.1667 18.2936 27.7936 18.6667 27.3333 18.6667C26.8731 18.6667 26.5 18.2936 26.5 17.8333L26.5 17.8067C26.5 17.4411 26.5 17.1257 26.5178 16.8647C26.5365 16.5898 26.5778 16.3149 26.6903 16.0433C26.944 15.4307 27.4307 14.944 28.0433 14.6903C28.3149 14.5778 28.5898 14.5365 28.8647 14.5178C29.1257 14.5 29.4411 14.5 29.8067 14.5Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.0699 17.001C65.1014 16.9994 65.1333 16.9997 65.1653 17.0018C66.7255 17.105 68.168 17.8824 69.1119 19.1113C69.3923 19.4763 69.3237 19.9994 68.9587 20.2798C68.5937 20.5601 68.0705 20.4915 67.7902 20.1265C67.1445 19.286 66.1582 18.7488 65.0926 18.6675C63.1778 18.6772 61.6667 20.1857 61.6667 22.0004C61.6667 23.814 63.1885 25.3333 65.1111 25.3333C66.2491 25.3333 67.2569 24.5468 68.0528 23.5603C68.436 23.0853 68.7354 22.6058 68.9394 22.243C69.0409 22.0625 69.1174 21.9133 69.1676 21.8113C69.1927 21.7603 69.2112 21.7213 69.2229 21.6961L69.2352 21.6692L69.2374 21.6644C69.2373 21.6646 69.2372 21.6648 70 22.0004C70.7628 22.3361 70.7626 22.3363 70.7625 22.3366L70.7624 22.3367L70.7624 22.3368L70.7623 22.3371L70.7623 22.3372L70.7616 22.3387L70.7598 22.3428L70.754 22.3555C70.7493 22.366 70.7428 22.3803 70.7344 22.3982C70.7178 22.4342 70.6939 22.4846 70.6629 22.5476C70.6009 22.6734 70.5103 22.8497 70.3922 23.0598C70.157 23.4781 69.8071 24.0402 69.35 24.6068C68.4653 25.7034 67.0287 27 65.1111 27C62.3078 27 60 24.7737 60 22.0004C60 19.2318 62.2862 17.0226 65.0699 17.001ZM74.9162 25.3332C76.8189 25.3189 78.3333 23.8044 78.3333 22.0004C78.3333 20.1809 76.8054 18.6675 74.8889 18.6675C73.7509 18.6675 72.7431 19.454 71.9472 20.4405C71.564 20.9155 71.2646 21.395 71.0606 21.7579C70.9591 21.9383 70.8826 22.0875 70.8323 22.1895C70.8073 22.2405 70.7888 22.2795 70.7771 22.3047L70.7648 22.3316L70.7628 22.3361L70.7626 22.3365C70.7627 22.3363 70.7628 22.3361 70 22.0004C69.2372 21.6648 69.2374 21.6645 69.2375 21.6643L69.2376 21.6641L69.2376 21.664L69.2377 21.6637L69.2377 21.6637L69.2384 21.6622L69.2402 21.658L69.246 21.6453C69.2507 21.6349 69.2572 21.6205 69.2656 21.6026C69.2822 21.5667 69.3061 21.5162 69.3371 21.4532C69.3991 21.3275 69.4897 21.1511 69.6078 20.941C69.843 20.5227 70.1929 19.9606 70.65 19.394C71.5347 18.2974 72.9713 17.0008 74.8889 17.0008C77.682 17.0008 80 19.2172 80 22.0004C80 24.7747 77.6831 27 74.8889 27C74.8707 27 74.8524 26.9994 74.8342 26.9982C73.2704 26.8954 71.8242 26.129 70.8848 24.8934C70.6062 24.527 70.6774 24.0042 71.0438 23.7257C71.4102 23.4471 71.933 23.5183 72.2115 23.8847C72.8475 24.7212 73.8344 25.2544 74.9162 25.3332Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M102.466 13.6667H109.534C110.205 13.6667 110.759 13.6667 111.21 13.7035C111.678 13.7418 112.109 13.8239 112.513 14.03C113.141 14.3496 113.65 14.8595 113.97 15.4867C114.176 15.8912 114.258 16.3217 114.297 16.7902C114.333 17.2411 114.333 17.7948 114.333 18.4656V25.5344C114.333 26.2052 114.333 26.7589 114.297 27.2099C114.258 27.6783 114.176 28.1089 113.97 28.5133C113.65 29.1405 113.141 29.6504 112.513 29.97C112.109 30.1761 111.678 30.2582 111.21 30.2965C110.759 30.3334 110.205 30.3334 109.534 30.3333H102.466C102.445 30.3333 102.425 30.3333 102.406 30.3333L101.745 30.3333C101.52 30.3334 101.298 30.3334 101.12 30.3176C101.113 30.317 101.106 30.3164 101.099 30.3157C100.991 30.3108 100.888 30.3045 100.79 30.2965C100.322 30.2582 99.8912 30.1761 99.4867 29.97C98.8595 29.6504 98.3496 29.1405 98.03 28.5133C97.8239 28.1089 97.7418 27.6783 97.7035 27.2099C97.6667 26.7589 97.6667 26.2052 97.6667 25.5344V18.4656C97.6667 17.7948 97.6667 17.2411 97.7035 16.7902C97.7418 16.3217 97.8239 15.8912 98.03 15.4867C98.3496 14.8595 98.8595 14.3496 99.4867 14.03C99.8912 13.8239 100.322 13.7418 100.79 13.7035C101.241 13.6667 101.795 13.6667 102.466 13.6667ZM102.5 28.6667C102.387 28.6667 102.28 28.6667 102.179 28.6665L108.98 21.8654C109.155 21.6907 109.251 21.5955 109.325 21.5324C109.328 21.5299 109.331 21.5276 109.333 21.5253C109.336 21.5276 109.339 21.5299 109.342 21.5324C109.416 21.5955 109.512 21.6907 109.687 21.8654L112.667 24.8452V25.5C112.667 26.2138 112.666 26.6991 112.635 27.0741C112.606 27.4395 112.551 27.6263 112.485 27.7567C112.325 28.0703 112.07 28.3252 111.757 28.485C111.626 28.5514 111.439 28.6055 111.074 28.6354C110.699 28.666 110.214 28.6667 109.5 28.6667H102.5ZM112.667 22.4882L110.847 20.6681C110.698 20.5194 110.553 20.3745 110.42 20.2619C110.275 20.1382 110.09 20.0052 109.848 19.9268C109.514 19.818 109.153 19.818 108.818 19.9268C108.577 20.0052 108.392 20.1382 108.246 20.2619C108.114 20.3745 107.969 20.5194 107.82 20.6681L100.694 27.7946C100.534 27.9539 100.378 28.1105 100.263 28.2477C100.227 28.2901 100.179 28.3487 100.131 28.4221C99.8687 28.2619 99.6552 28.0318 99.515 27.7567C99.4486 27.6263 99.3945 27.4395 99.3646 27.0741C99.334 26.6991 99.3333 26.2138 99.3333 25.5V18.5C99.3333 17.7862 99.334 17.3009 99.3646 16.9259C99.3945 16.5605 99.4486 16.3737 99.515 16.2434C99.6748 15.9298 99.9298 15.6748 100.243 15.515C100.374 15.4486 100.561 15.3945 100.926 15.3646C101.301 15.334 101.786 15.3333 102.5 15.3333H109.5C110.214 15.3333 110.699 15.334 111.074 15.3646C111.439 15.3945 111.626 15.4486 111.757 15.515C112.07 15.6748 112.325 15.9298 112.485 16.2434C112.551 16.3737 112.606 16.5605 112.635 16.9259C112.666 17.3009 112.667 17.7862 112.667 18.5V22.4882ZM103.083 18.25C102.623 18.25 102.25 18.6231 102.25 19.0833C102.25 19.5436 102.623 19.9167 103.083 19.9167C103.544 19.9167 103.917 19.5436 103.917 19.0833C103.917 18.6231 103.544 18.25 103.083 18.25ZM100.583 19.0833C100.583 17.7026 101.703 16.5833 103.083 16.5833C104.464 16.5833 105.583 17.7026 105.583 19.0833C105.583 20.4641 104.464 21.5833 103.083 21.5833C101.703 21.5833 100.583 20.4641 100.583 19.0833Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M150.727 12.9319C150.998 13.0769 151.167 13.3593 151.167 13.6667V27C151.167 27.2786 151.027 27.5388 150.796 27.6934L145.796 31.0267C145.533 31.2018 145.194 31.2135 144.92 31.0569L139.5 27.9598L134.08 31.0569C133.822 31.2042 133.505 31.2032 133.248 31.0541C132.991 30.905 132.833 30.6304 132.833 30.3333V17C132.833 16.7009 132.994 16.4248 133.253 16.2765L139.087 12.9431C139.343 12.7967 139.657 12.7967 139.913 12.9431L145.3 16.0209L149.871 12.9733C150.127 12.8028 150.456 12.7869 150.727 12.9319ZM144.5 17.4836L140.333 15.1026V26.5164L144.5 28.8973V17.4836ZM146.167 28.7762L149.5 26.554V15.2238L146.167 17.446V28.7762ZM138.667 26.5164V15.1026L134.5 17.4836V28.8973L138.667 26.5164Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M174.667 12.8333C175.127 12.8333 175.5 13.2064 175.5 13.6667V14.5H180.5V13.6667C180.5 13.2064 180.873 12.8333 181.333 12.8333C181.794 12.8333 182.167 13.2064 182.167 13.6667V14.5013C182.563 14.5041 182.909 14.5123 183.21 14.5368C183.678 14.5751 184.109 14.6572 184.513 14.8633C185.141 15.1829 185.65 15.6928 185.97 16.32C186.176 16.7245 186.258 17.1551 186.297 17.6235C186.333 18.0745 186.333 18.6281 186.333 19.2989V26.3678C186.333 27.0386 186.333 27.5922 186.297 28.0432C186.258 28.5116 186.176 28.9422 185.97 29.3466C185.65 29.9738 185.141 30.4838 184.513 30.8033C184.109 31.0094 183.678 31.0916 183.21 31.1298C182.759 31.1667 182.205 31.1667 181.534 31.1667H174.466C173.795 31.1667 173.241 31.1667 172.79 31.1298C172.322 31.0916 171.891 31.0094 171.487 30.8033C170.859 30.4838 170.35 29.9738 170.03 29.3466C169.824 28.9422 169.742 28.5116 169.704 28.0432C169.667 27.5922 169.667 27.0386 169.667 26.3677V19.2989C169.667 18.6281 169.667 18.0745 169.704 17.6235C169.742 17.1551 169.824 16.7245 170.03 16.32C170.35 15.6928 170.859 15.1829 171.487 14.8633C171.891 14.6572 172.322 14.5751 172.79 14.5368C173.091 14.5123 173.437 14.5041 173.833 14.5013V13.6667C173.833 13.2064 174.206 12.8333 174.667 12.8333ZM173.833 16.1681C173.462 16.1707 173.171 16.178 172.926 16.198C172.561 16.2278 172.374 16.2819 172.243 16.3483C171.93 16.5081 171.675 16.7631 171.515 17.0767C171.449 17.207 171.394 17.3938 171.365 17.7592C171.334 18.1343 171.333 18.6195 171.333 19.3333V19.5H184.667V19.3333C184.667 18.6195 184.666 18.1343 184.635 17.7592C184.606 17.3938 184.551 17.207 184.485 17.0767C184.325 16.7631 184.07 16.5081 183.757 16.3483C183.626 16.2819 183.439 16.2278 183.074 16.198C182.829 16.178 182.538 16.1707 182.167 16.1681V17C182.167 17.4602 181.794 17.8333 181.333 17.8333C180.873 17.8333 180.5 17.4602 180.5 17V16.1667H175.5V17C175.5 17.4602 175.127 17.8333 174.667 17.8333C174.206 17.8333 173.833 17.4602 173.833 17V16.1681ZM184.667 21.1667H171.333V26.3333C171.333 27.0471 171.334 27.5324 171.365 27.9075C171.394 28.2728 171.449 28.4596 171.515 28.59C171.675 28.9036 171.93 29.1585 172.243 29.3183C172.374 29.3847 172.561 29.4389 172.926 29.4687C173.301 29.4993 173.786 29.5 174.5 29.5H181.5C182.214 29.5 182.699 29.4993 183.074 29.4687C183.439 29.4389 183.626 29.3847 183.757 29.3183C184.07 29.1585 184.325 28.9036 184.485 28.59C184.551 28.4596 184.606 28.2728 184.635 27.9075C184.666 27.5324 184.667 27.0471 184.667 26.3333V21.1667Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.581 13.0696L214 13.6667L213.419 13.0696C213.742 12.7546 214.258 12.7546 214.581 13.0696ZM214 14.843C213.928 14.9158 213.851 14.9944 213.768 15.0784C213.271 15.5854 212.599 16.2856 211.897 17.0599C211.195 17.8358 210.469 18.6782 209.863 19.4706C209.244 20.2786 208.793 20.9785 208.59 21.4793C208.317 22.1537 208.167 22.8916 208.167 23.6667C208.167 26.8883 210.778 29.5 214 29.5C217.222 29.5 219.833 26.8883 219.833 23.6667C219.833 22.8916 219.683 22.1537 219.41 21.4793C219.207 20.9785 218.756 20.2786 218.137 19.4706C217.531 18.6782 216.805 17.8358 216.103 17.0599C215.401 16.2856 214.729 15.5854 214.232 15.0784C214.149 14.9944 214.072 14.9158 214 14.843ZM213.419 13.0696C213.419 13.0695 213.419 13.0696 214 13.6667C214.581 13.0696 214.581 13.0695 214.581 13.0696L214.586 13.074L214.598 13.0856L214.643 13.1298C214.682 13.1684 214.739 13.225 214.813 13.2976C214.959 13.4429 215.168 13.6525 215.422 13.9115C215.929 14.4291 216.617 15.1458 217.338 15.941C218.057 16.7348 218.815 17.6147 219.461 18.4575C220.094 19.2849 220.663 20.1332 220.955 20.854C221.307 21.7237 221.5 22.6736 221.5 23.6667C221.5 27.8088 218.142 31.1667 214 31.1667C209.858 31.1667 206.5 27.8088 206.5 23.6667C206.5 22.6736 206.693 21.7237 207.045 20.854C207.337 20.1332 207.906 19.2849 208.539 18.4575C209.185 17.6147 209.943 16.7348 210.662 15.941C211.383 15.1458 212.071 14.4291 212.578 13.9115C212.832 13.6525 213.041 13.4429 213.187 13.2976C213.261 13.225 213.318 13.1684 213.357 13.1298L213.402 13.0856L213.419 13.0696Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M242.546 21.1667H245.875C246.062 18.864 246.833 16.6537 248.105 14.7415C245.141 15.5133 242.89 18.0527 242.546 21.1667ZM250 14.959C248.609 16.7516 247.757 18.9057 247.548 21.1667H252.452C252.243 18.9057 251.391 16.7516 250 14.959ZM252.452 22.8333C252.243 25.0943 251.391 27.2484 250 29.041C248.609 27.2484 247.757 25.0943 247.548 22.8333H252.452ZM245.875 22.8333H242.546C242.89 25.9473 245.141 28.4867 248.105 29.2585C246.833 27.3463 246.062 25.136 245.875 22.8333ZM251.895 29.2585C253.167 27.3463 253.938 25.136 254.125 22.8333H257.454C257.11 25.9473 254.859 28.4867 251.895 29.2585ZM257.454 21.1667H254.125C253.938 18.864 253.167 16.6537 251.895 14.7415C254.859 15.5133 257.11 18.0527 257.454 21.1667ZM240.833 22C240.833 16.9374 244.937 12.8333 250 12.8333C255.063 12.8333 259.167 16.9374 259.167 22C259.167 27.0626 255.063 31.1667 250 31.1667C244.937 31.1667 240.833 27.0626 240.833 22Z" fill="#98A2B3"/>
|
||||
<rect x="0.5" y="0.5" width="283" height="43" rx="21.5" stroke="#C6CBD3" stroke-dasharray="4 4"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
@ -1,24 +0,0 @@
|
||||
<svg width="112" height="88" viewBox="0 0 112 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="1.21521" y="0.5" width="87" height="87" rx="7.5" fill="#F9FAFB" stroke="#EAECF0"/>
|
||||
<rect x="8.71521" y="8" width="72" height="16" rx="4" fill="#EAECF0"/>
|
||||
<rect x="9.21521" y="30.5" width="71" height="31" rx="3.5" stroke="#C6CBD3" stroke-dasharray="3 3"/>
|
||||
<g filter="url(#filter0_d_80_6757)">
|
||||
<rect x="35.2849" y="41.1132" width="72" height="33" rx="4" fill="#C6CBD3"/>
|
||||
<rect x="35.7849" y="41.6132" width="71" height="32" rx="3.5" stroke="#98A2B3"/>
|
||||
</g>
|
||||
<rect x="43.2849" y="49.1132" width="28" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="43.2849" y="56.1132" width="18" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="43.2849" y="63.1132" width="10" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_80_6757" x="31.2849" y="39.1132" width="80" height="41" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.13 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_80_6757"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_80_6757" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,26 +0,0 @@
|
||||
<svg width="104" height="88" viewBox="0 0 104 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="1.21521" y="0.5" width="87" height="87" rx="7.5" fill="#F9FAFB" stroke="#EAECF0"/>
|
||||
<rect x="8.71521" y="8" width="72" height="16" rx="4" fill="#EAECF0"/>
|
||||
<rect x="8.71521" y="30" width="40" height="40" rx="4" fill="#EAECF0"/>
|
||||
<rect x="57.2152" y="30.5" width="23" height="39" rx="3.5" stroke="#C6CBD3" stroke-dasharray="3 3"/>
|
||||
<g filter="url(#filter0_d_91_9934)">
|
||||
<rect x="67.2848" y="36.1133" width="32" height="41" rx="4" fill="#C6CBD3"/>
|
||||
<rect x="67.7848" y="36.6133" width="31" height="40" rx="3.5" stroke="#98A2B3"/>
|
||||
</g>
|
||||
<rect x="73.6848" y="44.1133" width="20" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="73.6848" y="51.1133" width="18" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="73.6848" y="58.1133" width="10" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="73.6848" y="65.1133" width="15" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_91_9934" x="63.2848" y="34.1133" width="40" height="49" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.13 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_91_9934"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_91_9934" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,3 +0,0 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9998 8.00002C18.745 8.00002 7.99984 18.7452 7.99984 32C7.99984 45.2549 18.745 56 31.9998 56C45.2547 56 55.9998 45.2549 55.9998 32C55.9998 18.7452 45.2547 8.00002 31.9998 8.00002ZM2.6665 32C2.6665 15.7997 15.7995 2.66669 31.9998 2.66669C48.2002 2.66669 61.3332 15.7997 61.3332 32C61.3332 48.2004 48.2002 61.3334 31.9998 61.3334C15.7995 61.3334 2.6665 48.2004 2.6665 32ZM28.3505 22.5723C29.4924 23.5024 29.6642 25.1821 28.7342 26.324C27.2405 28.1581 25.0741 29.3333 22.6665 29.3333C20.2322 29.3333 18.13 28.1359 16.63 26.3616C15.6792 25.2369 15.8202 23.5543 16.9449 22.6035C18.0697 21.6527 19.7522 21.7937 20.703 22.9184C21.3897 23.7308 22.0875 24 22.6665 24C23.2722 24 23.9859 23.7086 24.5988 22.956C25.5289 21.8141 27.2085 21.6423 28.3505 22.5723ZM47.0172 22.5723C48.1591 23.5024 48.3309 25.1821 47.4008 26.324C45.9071 28.1581 43.7408 29.3333 41.3332 29.3333C38.8989 29.3333 36.7966 28.1359 35.2967 26.3616C34.3459 25.2369 34.4869 23.5543 35.6116 22.6035C36.7363 21.6527 38.4189 21.7937 39.3697 22.9184C40.0564 23.7308 40.7541 24 41.3332 24C41.9389 24 42.6526 23.7086 43.2655 22.956C44.1955 21.8141 45.8752 21.6423 47.0172 22.5723ZM22.598 37.8434C24.7259 36.2959 27.9318 34.6667 31.9998 34.6667C36.0679 34.6667 39.2738 36.2959 41.4016 37.8434C42.4707 38.6209 43.2971 39.3981 43.8626 39.9883C44.1465 40.2845 44.3678 40.5369 44.5242 40.7232C44.6025 40.8165 44.6648 40.8935 44.7107 40.9516L44.7675 41.0243L44.7868 41.0494L44.7941 41.059L44.7971 41.0631C44.7978 41.064 44.7998 41.0667 42.6665 42.6667L44.7998 41.0667C45.6835 42.2449 45.4447 43.9164 44.2665 44.8C43.092 45.6809 41.4274 45.4464 40.5415 44.2778L40.5292 44.262C40.5133 44.242 40.4831 44.2044 40.439 44.1518C40.3506 44.0465 40.2073 43.8822 40.012 43.6784C39.6192 43.2686 39.029 42.7125 38.2647 42.1567C36.7259 41.0375 34.5984 40 31.9998 40C29.4013 40 27.2738 41.0375 25.735 42.1567C24.9707 42.7125 24.3804 43.2686 23.9876 43.6784C23.7923 43.8822 23.6491 44.0465 23.5607 44.1518C23.5166 44.2044 23.4864 44.242 23.4705 44.262L23.4593 44.2763L23.4622 44.2724L23.4642 44.2698M23.4642 44.2698C23.4618 44.273 23.4617 44.2731 23.4593 44.2763C22.5735 45.4449 20.9077 45.6809 19.7332 44.8C18.555 43.9164 18.3162 42.2449 19.1998 41.0667L21.3332 42.6667C19.1998 41.0667 19.1992 41.0676 19.1998 41.0667L19.2056 41.059L19.2129 41.0494L19.2321 41.0243L19.2889 40.9516C19.3349 40.8935 19.3972 40.8165 19.4755 40.7232C19.6319 40.5369 19.8532 40.2845 20.137 39.9883C20.7026 39.3981 21.529 38.6209 22.598 37.8434" fill="#C6CBD3"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 216 KiB |
@ -1,3 +0,0 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.2002 5.8502L7.42519 11.6252L4.80019 9.0002" stroke="#0783BE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 243 B |
@ -1,3 +0,0 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.3252 9.0002H12.6752" stroke="#0783BE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 219 B |
@ -1,3 +0,0 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="5" y="5" width="8" height="8" rx="4" fill="#0783BE"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 166 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 3C2 2.44772 2.44772 2 3 2H21C21.5523 2 22 2.44772 22 3C22 3.55228 21.5523 4 21 4H3C2.44772 4 2 3.55228 2 3ZM7.99686 8L16.0031 8C16.4684 8 17.3276 8 18.1187 8.01933C18.514 8.02899 18.9041 8.04372 19.2248 8.06681C19.3844 8.07829 19.539 8.09269 19.6745 8.11158C19.7802 8.12634 19.9726 8.15569 20.1481 8.22836C20.8831 8.53284 21.4672 9.11687 21.7716 9.85195C21.9066 10.1779 21.9561 10.5078 21.9787 10.8376C22 11.1509 22 11.5294 22 11.968V12.032C22 12.4706 22 12.8491 21.9787 13.1624C21.9561 13.4922 21.9066 13.8221 21.7716 14.1481C21.4672 14.8831 20.8831 15.4672 20.1481 15.7716C19.9726 15.8443 19.7802 15.8737 19.6745 15.8884C19.539 15.9073 19.3844 15.9217 19.2248 15.9332C18.9041 15.9563 18.514 15.971 18.1187 15.9807C17.3276 16 16.4685 16 16.0031 16L7.99686 16C7.53151 16 6.6724 16 5.88127 15.9807C5.48602 15.971 5.09594 15.9563 4.77519 15.9332C4.61565 15.9217 4.46098 15.9073 4.32554 15.8884C4.21977 15.8737 4.02739 15.8443 3.85195 15.7716C3.11687 15.4672 2.53284 14.8831 2.22836 14.148C2.09336 13.8221 2.04386 13.4922 2.02135 13.1624C1.99998 12.8491 1.99999 12.4706 2 12.032V11.968C1.99999 11.5294 1.99998 11.1509 2.02135 10.8376C2.04386 10.5078 2.09336 10.1779 2.22836 9.85195C2.53284 9.11687 3.11687 8.53284 3.85195 8.22836C4.02739 8.15569 4.21977 8.12634 4.32554 8.11158C4.46098 8.09269 4.61565 8.07829 4.77519 8.06681C5.09594 8.04372 5.48602 8.02899 5.88127 8.01933C6.67239 8 7.53151 8 7.99686 8ZM4.56999 10.0972C4.34727 10.2032 4.17099 10.3883 4.07612 10.6173C4.05888 10.6589 4.03227 10.7458 4.01671 10.9738C4.00054 11.2107 4 11.5204 4 12C4 12.4796 4.00054 12.7893 4.01671 13.0262C4.03227 13.2542 4.05888 13.3411 4.07612 13.3827C4.17099 13.6117 4.34727 13.7968 4.56999 13.9028C4.57866 13.9042 4.58925 13.9058 4.60192 13.9076C4.67532 13.9178 4.78089 13.9284 4.91878 13.9384C5.19288 13.9581 5.54645 13.9719 5.93011 13.9813C6.69503 14 7.53273 14 8 14L16 14C16.4673 14 17.305 14 18.0699 13.9813C18.4536 13.9719 18.8071 13.9581 19.0812 13.9384C19.2191 13.9284 19.3247 13.9178 19.3981 13.9076C19.4108 13.9058 19.4213 13.9042 19.43 13.9028C19.6527 13.7968 19.829 13.6117 19.9239 13.3827C19.9411 13.3411 19.9677 13.2542 19.9833 13.0262C19.9995 12.7893 20 12.4796 20 12C20 11.5204 19.9995 11.2107 19.9833 10.9738C19.9677 10.7458 19.9411 10.6589 19.9239 10.6173C19.829 10.3883 19.6527 10.2032 19.43 10.0972C19.4213 10.0958 19.4108 10.0942 19.3981 10.0924C19.3247 10.0822 19.2191 10.0716 19.0812 10.0616C18.8071 10.0419 18.4536 10.0281 18.0699 10.0187C17.305 10 16.4673 10 16 10H8C7.53273 10 6.69503 10 5.93011 10.0187C5.54645 10.0281 5.19288 10.0419 4.91878 10.0616C4.78089 10.0716 4.67533 10.0822 4.60192 10.0924C4.58925 10.0942 4.57866 10.0958 4.56999 10.0972ZM2 21C2 20.4477 2.44772 20 3 20H21C21.5523 20 22 20.4477 22 21C22 21.5523 21.5523 22 21 22H3C2.44772 22 2 21.5523 2 21Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.9 KiB |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.5 10.77c.61-.24.92-.36 1.01-.53 .07-.15.07-.33-.01-.47 -.1-.17-.41-.28-1.03-.51L4.58 3.55c-.51-.19-.77-.28-.94-.22 -.15.05-.26.16-.31.3 -.06.16.03.42.21.93l5.7 15.88c.22.62.33.93.5 1.02 .14.07.31.08.46 0 .16-.09.28-.4.52-1.02l2.59-6.68c.04-.13.07-.19.1-.24 .03-.05.07-.09.11-.12 .05-.04.11-.06.23-.11l6.67-2.6Z"/></svg>
|
Before Width: | Height: | Size: 482 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7.5 12l3 3 6-6M7.8 21h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
Before Width: | Height: | Size: 506 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.5 2c-.68 0-1.09.04-1.41.21 -.38.19-.69.49-.88.87 -.17.32-.21.73-.22 1.4m11.49-2.5c.67 0 1.08.04 1.4.21 .37.19.68.49.87.87 .16.32.2.73.21 1.4m0 9c-.01.67-.05 1.08-.22 1.4 -.2.37-.5.68-.88.87 -.33.16-.74.2-1.41.21m2.5-8v2m-8-8h1.99m-10.8 20h7.6c1.12 0 1.68 0 2.1-.22 .37-.2.68-.5.87-.88 .21-.43.21-.99.21-2.11v-7.6c0-1.13 0-1.69-.22-2.11 -.2-.38-.5-.69-.88-.88 -.43-.22-.99-.22-2.11-.22h-7.6c-1.13 0-1.69 0-2.11.21 -.38.19-.69.49-.88.87 -.22.42-.22.98-.22 2.1v7.6c0 1.12 0 1.68.21 2.1 .19.37.49.68.87.87 .42.21.98.21 2.1.21Z"/></svg>
|
Before Width: | Height: | Size: 694 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 14c0 4.41-3.59 8-8 8 -4.42 0-8-3.59-8-8 0-1.07.2-2.08.58-3 1.18-2.94 7.41-9 7.41-9s6.23 6.06 7.41 9c.375.92.58 1.93.58 3Z"/></svg>
|
Before Width: | Height: | Size: 293 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 10H3m13-8v4M8 2v4m-.2 16h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
Before Width: | Height: | Size: 512 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 10H3m13-8v4M8 2v4m-.2 16h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
Before Width: | Height: | Size: 512 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.01 6.4l-8.5 4.72c-.49.26-.66.87-.39 1.35 .26.48.87.65 1.35.38l8.5-4.73c.48-.27.65-.88.38-1.36 -.27-.49-.88-.66-1.36-.39Zm-7.53 4.72L3.97 6.39c-.49-.27-1.1-.1-1.36.38 -.27.48-.1 1.09.38 1.35l8.5 4.72c.48.26 1.09.09 1.35-.39 .26-.49.09-1.1-.39-1.36Zm-1.49.87v9.5c0 .55.44 1 1 1 .55 0 1-.45 1-1v-9.5c0-.56-.45-1-1-1 -.56 0-1 .44-1 1Zm11 4.05V7.92c0-.56-.01-.71-.11-.99 -.09-.27-.24-.52-.43-.73 -.2-.22-.33-.3-.81-.57l-7.4-4.12c-.47-.26-.59-.32-.86-.38s-.55-.06-.81-.01c-.03 0-.03 0-.06.01 -.25.06-.37.11-.81.35L3.29 5.59c-.33.18-.43.23-.57.34 -.09.06-.17.13-.25.21 -.2.2-.34.45-.43.72 -.1.27-.11.42-.11.98v8.11c0 .55 0 .7.1.98 .08.27.23.51.42.72 .19.21.32.29.8.56l7.4 4.11c.45.25.58.31.85.37 .26.05.54.05.8-.01 .27-.06.4-.12.85-.38l7.39-4.12c.48-.27.6-.35.8-.57 .19-.21.33-.46.42-.73 .09-.28.1-.43.1-.99Zm-2 0c0 .3-.01.36 0 .35 -.01 0 0 0 0 0 0-.01-.05.02-.31.17l-7.41 4.11c-.25.13-.31.16-.3.16 0-.01 0-.01 0 0 .01 0-.05-.03-.3-.17l-7.41-4.12c-.27-.15-.32-.19-.31-.18 -.01-.01-.01-.01-.01-.01 0 .01 0-.06 0-.36V7.87c0-.31 0-.37 0-.36 -.01 0-.01 0 0 0 -.02.01-.02.01-.03.02 .03-.03.1-.07.33-.2l7.4-4.12c.24-.14.3-.17.3-.17 -.01 0-.01 0-.01 0 0-.01-.01-.01 0 0 -.02-.01.04.02.29.16l7.4 4.11c.26.14.31.18.3.17 -.01-.01-.01-.01-.01-.01 -.01-.02 0 .05 0 .35v8.11Z"/></svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7.99v5c0 .79.31 1.55.87 2.12 .56.56 1.32.87 2.12.87 .79 0 1.55-.32 2.12-.88 .56-.57.87-1.33.87-2.13v-1c-.01-2.26-.77-4.45-2.17-6.22 -1.41-1.77-3.37-3.01-5.57-3.53s-4.51-.27-6.55.69c-2.05.96-3.7 2.59-4.7 4.61 -1 2.02-1.29 4.32-.81 6.53 .47 2.2 1.68 4.18 3.42 5.62 1.74 1.43 3.92 2.23 6.17 2.27 2.25.03 4.46-.69 6.25-2.06m-2.08-7.94c0 2.2-1.8 4-4 4 -2.21 0-4-1.8-4-4 0-2.21 1.79-4.01 4-4.01 2.2 0 4 1.79 4 4Z"/></svg>
|
Before Width: | Height: | Size: 578 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.15 10.89l-9.02 9.01c-2.06 2.05-5.38 2.05-7.43 0 -2.06-2.06-2.06-5.38 0-7.43l9.01-9.02c1.36-1.37 3.58-1.37 4.94-.001 1.36 1.36 1.36 3.58 0 4.94l-8.662 8.66c-.69.68-1.8.68-2.48 0 -.69-.69-.69-1.8 0-2.48l7.6-7.61"/></svg>
|
Before Width: | Height: | Size: 381 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.11 15.35c-.28.3-.56.6-.86.9 -4.3 4.29-9.68 5.87-12.03 3.53 -1.61-1.61-1.37-4.65.32-7.78m2.32-3.3c.28-.33.57-.64.88-.95 4.29-4.3 9.67-5.88 12.02-3.54 1.6 1.6 1.36 4.64-.33 7.78m-3.21-4.25c4.29 4.29 5.87 9.67 3.53 12.02 -2.35 2.34-7.73.76-12.03-3.54 -4.3-4.3-5.88-9.68-3.54-12.03 2.34-2.35 7.72-.77 12.02 3.53Zm-3.27 4.22c0 .55-.45 1-1 1 -.56 0-1-.45-1-1 0-.56.44-1 1-1 .55 0 1 .44 1 1Z"/></svg>
|
Before Width: | Height: | Size: 556 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.2 21H6.93c-.61 0-.91 0-1.05-.12 -.13-.11-.19-.26-.18-.42 .01-.19.22-.4.65-.83l8.5-8.51c.39-.4.59-.6.82-.67 .2-.07.41-.07.61 0 .22.07.42.27.82.66l3.86 3.86v1.2m-4.8 4.8c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17m-4.8 4.8h-8.4c-1.69 0-2.53 0-3.17-.33 -.57-.29-1.03-.75-1.32-1.32 -.33-.65-.33-1.49-.33-3.17v-8.4c0-1.69 0-2.53.32-3.17 .28-.57.74-1.03 1.31-1.32 .64-.33 1.48-.33 3.16-.33h8.4c1.68 0 2.52 0 3.16.32 .56.28 1.02.74 1.31 1.31 .32.64.32 1.48.32 3.16v8.4m-10.5-7.7c0 1.1-.9 2-2 2 -1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2Z"/></svg>
|
Before Width: | Height: | Size: 738 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 18l-7 4V6l7-4m0 16l7 4m-7-4V2m7 20l6-4V2l-6 4m0 16V6m0 0L9 2"/></svg>
|
Before Width: | Height: | Size: 231 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 12l9.64 4.82c.13.06.19.09.26.11 .06.01.12.01.18 0 .06-.02.13-.05.26-.12l9.64-4.83m-20 5l9.64 4.82c.13.06.19.09.26.11 .06.01.12.01.18 0 .06-.02.13-.05.26-.12l9.64-4.83m-20-10.01l9.64-4.83c.13-.07.19-.1.26-.12 .06-.02.12-.02.18 0 .06.01.13.04.26.11l9.64 4.82 -9.65 4.82c-.14.06-.2.09-.27.11 -.07.01-.13.01-.19 0 -.07-.02-.14-.05-.27-.12L1.91 6.91Z"/></svg>
|
Before Width: | Height: | Size: 516 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.2 21H6.93c-.61 0-.91 0-1.05-.12 -.13-.11-.19-.26-.18-.42 .01-.19.22-.4.65-.83l8.5-8.51c.39-.4.59-.6.82-.67 .2-.07.41-.07.61 0 .22.07.42.27.82.66l3.86 3.86v1.2m-4.8 4.8c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17m-4.8 4.8h-8.4c-1.69 0-2.53 0-3.17-.33 -.57-.29-1.03-.75-1.32-1.32 -.33-.65-.33-1.49-.33-3.17v-8.4c0-1.69 0-2.53.32-3.17 .28-.57.74-1.03 1.31-1.32 .64-.33 1.48-.33 3.16-.33h8.4c1.68 0 2.52 0 3.16.32 .56.28 1.02.74 1.31 1.31 .32.64.32 1.48.32 3.16v8.4m-10.5-7.7c0 1.1-.9 2-2 2 -1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2Z"/></svg>
|
Before Width: | Height: | Size: 738 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12.7 18.36l-1.42 1.41c-1.96 1.95-5.12 1.95-7.08 0 -1.96-1.96-1.96-5.12 0-7.071l1.41-1.42m12.72 1.41l1.41-1.42c1.95-1.96 1.95-5.12 0-7.08 -1.96-1.96-5.12-1.96-7.08 0l-1.42 1.41m-2.8 9.86l7-7"/></svg>
|
Before Width: | Height: | Size: 358 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 16v-4m0-4.01h.01M3 7.93v8.11c0 .34 0 .51.05.66 .04.13.11.25.21.36 .1.11.25.2.55.36l7.4 4.11c.28.15.42.23.57.26 .13.02.27.02.4 0 .15-.04.29-.11.57-.27l7.4-4.12c.29-.17.44-.25.55-.37 .09-.11.16-.23.21-.37 .05-.16.05-.33.05-.67V7.87c0-.35 0-.52-.06-.67 -.05-.14-.12-.26-.22-.37 -.11-.12-.26-.21-.56-.37l-7.4-4.12c-.29-.16-.43-.24-.58-.27 -.14-.03-.27-.03-.41 0 -.16.03-.3.1-.58.26L3.74 6.44c-.3.16-.45.24-.56.36 -.1.1-.17.22-.22.36 -.06.15-.06.32-.06.66Z"/></svg>
|
Before Width: | Height: | Size: 623 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.49 3l-3 18m11-18l-3 18m6-13h-17m16 8h-17"/></svg>
|
Before Width: | Height: | Size: 211 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.86242 0.999952C5.90762 0.999976 5.95347 1 6 1C6.55229 1 7 1.44772 7 2C7 2.55229 6.55229 3 6 3C5.00565 3 4.70464 3.00859 4.48237 3.06815C3.79218 3.25308 3.25309 3.79218 3.06815 4.48236C3.00859 4.70464 3.00001 5.00565 3.00001 6C3.00001 6.55229 2.55229 7 2 7C1.44772 7 1 6.55229 1 6C1 5.95346 0.99998 5.90761 0.999956 5.86242C0.999525 5.06704 0.999205 4.47638 1.1363 3.96473C1.50617 2.58436 2.58436 1.50617 3.96473 1.1363C4.47638 0.999201 5.06704 0.999521 5.86242 0.999952ZM19.5176 3.06815C19.2954 3.00859 18.9944 3 18 3C17.4477 3 17 2.55229 17 2C17 1.44772 17.4477 1 18 1C18.0465 1 18.0924 0.999976 18.1376 0.999952C18.933 0.999521 19.5236 0.999201 20.0353 1.1363C21.4156 1.50617 22.4938 2.58436 22.8637 3.96473C23.0008 4.47638 23.0005 5.06704 23.0001 5.86243C23 5.90762 23 5.95347 23 6C23 6.55229 22.5523 7 22 7C21.4477 7 21 6.55229 21 6C21 5.00565 20.9914 4.70464 20.9319 4.48236C20.7469 3.79218 20.2078 3.25308 19.5176 3.06815ZM9 2C9 1.44772 9.44772 1 10 1H14C14.5523 1 15 1.44772 15 2C15 2.55229 14.5523 3 14 3H10C9.44772 3 9 2.55229 9 2ZM2 9C2.55229 9 3.00001 9.44772 3.00001 10V14C3.00001 14.5523 2.55229 15 2 15C1.44772 15 1 14.5523 1 14V10C1 9.44772 1.44772 9 2 9ZM22 9C22.5523 9 23 9.44772 23 10V14C23 14.5523 22.5523 15 22 15C21.4477 15 21 14.5523 21 14V10C21 9.44772 21.4477 9 22 9ZM2 17C2.55229 17 3.00001 17.4477 3.00001 18C3.00001 18.9944 3.00859 19.2954 3.06815 19.5176C3.25309 20.2078 3.79218 20.7469 4.48237 20.9319C4.70465 20.9914 5.00565 21 6 21C6.55229 21 7 21.4477 7 22C7 22.5523 6.55229 23 6 23C5.95347 23 5.90762 23 5.86243 23.0001C5.06704 23.0005 4.47638 23.0008 3.96473 22.8637C2.58436 22.4938 1.50617 21.4156 1.1363 20.0353C0.999205 19.5236 0.999525 18.933 0.999956 18.1376C0.99998 18.0924 1 18.0465 1 18C1 17.4477 1.44772 17 2 17ZM22 17C22.5523 17 23 17.4477 23 18C23 18.0465 23 18.0924 23.0001 18.1376C23.0005 18.933 23.0008 19.5236 22.8637 20.0353C22.4938 21.4156 21.4156 22.4938 20.0353 22.8637C19.5236 23.0008 18.933 23.0005 18.1376 23.0001C18.0924 23 18.0465 23 18 23C17.4477 23 17 22.5523 17 22C17 21.4477 17.4477 21 18 21C18.9944 21 19.2954 20.9914 19.5176 20.9319C20.2078 20.7469 20.7469 20.2078 20.9319 19.5176C20.9914 19.2954 21 18.9944 21 18C21 17.4477 21.4477 17 22 17ZM9.4 22C9.4 21.4477 9.84772 21 10.4 21H14C14.5523 21 15 21.4477 15 22C15 22.5523 14.5523 23 14 23H10.4C9.84772 23 9.4 22.5523 9.4 22Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.4 KiB |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 10V4.5C6 3.67 6.67 3 7.5 3 8.32 3 9 3.67 9 4.5V10c0 1.65-1.35 3-3 3 -1.66 0-3-1.35-3-3V6m9.5-4h2.7c1.68 0 2.52 0 3.16.32 .56.28 1.02.74 1.31 1.31 .32.64.32 1.48.32 3.16v10.4c0 1.68 0 2.52-.33 3.16 -.29.56-.75 1.02-1.32 1.31 -.65.32-1.49.32-3.17.32h-6.4c-1.69 0-2.53 0-3.17-.33 -.57-.29-1.03-.75-1.32-1.32 -.33-.65-.33-1.49-.33-3.17v-.7"/></svg>
|
Before Width: | Height: | Size: 506 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 9h.01M15 15c3.31 0 6-2.69 6-6 0-3.32-2.69-6-6-6 -3.32 0-6 2.68-6 6 0 .27.01.54.05.8 .05.43.08.65.06.78 -.03.14-.05.22-.12.34 -.07.12-.19.24-.43.47L3.44 16.5c-.18.17-.26.25-.33.36 -.06.08-.1.18-.12.28 -.03.11-.03.23-.03.48v1.73c0 .56 0 .84.1 1.05 .09.18.24.34.43.43 .21.1.49.1 1.05.1h1.73c.24 0 .36 0 .48-.03 .1-.03.19-.07.28-.12 .1-.07.18-.15.36-.33l5.11-5.12c.23-.24.35-.36.47-.43 .12-.08.2-.1.34-.12 .13-.02.35 0 .78.06 .26.03.53.05.8.05Z"/></svg>
|
Before Width: | Height: | Size: 612 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 2.26v4.13c0 .56 0 .84.1 1.05 .09.18.24.34.43.43 .21.1.49.1 1.05.1h4.13m-3.74 4.99h-8m8 4h-8m2-8h-2m6-7h-5.2c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v10.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32h6.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-9.2l-6-6Z"/></svg>
|
Before Width: | Height: | Size: 518 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM9.82589 10.0834C9.26014 10.7521 9 11.5305 9 12C9 13.5314 10.1324 15 12 15C13.8676 15 15 13.5314 15 12C15 10.4686 13.8676 9 12 9C11.1113 9 10.3715 9.43857 9.82589 10.0834ZM8.29911 8.79156C9.12845 7.81143 10.3887 7 12 7C15.1324 7 17 9.5314 17 12C17 14.4686 15.1324 17 12 17C8.86759 17 7 14.4686 7 12C7 10.9695 7.48986 9.74795 8.29911 8.79156Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 713 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 9.5C17.8954 9.5 17 10.3954 17 11.5C17 12.6046 17.8954 13.5 19 13.5C20.1046 13.5 21 12.6046 21 11.5C21 10.3954 20.1046 9.5 19 9.5ZM15.126 10.5C15.5701 8.77477 17.1362 7.5 19 7.5C21.2091 7.5 23 9.29086 23 11.5C23 13.7091 21.2091 15.5 19 15.5C17.1362 15.5 15.5701 14.2252 15.126 12.5H8.87398C8.42994 14.2252 6.86384 15.5 5 15.5C2.79086 15.5 1 13.7091 1 11.5C1 9.29086 2.79086 7.5 5 7.5C6.86384 7.5 8.42994 8.77477 8.87398 10.5H15.126ZM5 9.5C3.89543 9.5 3 10.3954 3 11.5C3 12.6046 3.89543 13.5 5 13.5C6.10457 13.5 7 12.6046 7 11.5C7 10.3954 6.10457 9.5 5 9.5Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 707 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g stroke-linecap="round" stroke-width="2" stroke="#000" fill="none" stroke-linejoin="round"><path d="M9 16c3.86 0 7-3.14 7-7 0-3.87-3.14-7-7-7C5.13 2 2 5.13 2 9c0 3.86 3.13 7 7 7Z"/><path d="M15 22c3.86 0 7-3.14 7-7 0-3.87-3.14-7-7-7 -3.87 0-7 3.13-7 7 0 3.86 3.13 7 7 7Z"/></g></svg>
|
Before Width: | Height: | Size: 345 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.08393 6.00116C6.12174 5.99934 6.15992 5.99965 6.19834 6.00219C8.07055 6.126 9.80164 7.05892 10.9343 8.53351C11.2707 8.9715 11.1884 9.59929 10.7504 9.93572C10.3124 10.2721 9.68462 10.1898 9.34819 9.75182C8.57344 8.74317 7.38982 8.09851 6.11115 8.00102C3.81332 8.01261 2 9.82287 2 12.0005C2 14.1768 3.82625 16 6.13333 16C7.49893 16 8.70832 15.0562 9.66336 13.8724C10.1232 13.3024 10.4825 12.727 10.7273 12.2916C10.8491 12.075 10.9409 11.896 11.0012 11.7735C11.0313 11.7124 11.0535 11.6655 11.0675 11.6354L11.0823 11.603L11.0849 11.5972C11.0848 11.5975 11.0847 11.5977 12 12.0005C12.9153 12.4033 12.9152 12.4036 12.915 12.4039L12.9149 12.4041L12.9149 12.4041L12.9147 12.4046L12.9147 12.4046L12.9139 12.4064L12.9117 12.4113L12.9049 12.4266C12.8992 12.4392 12.8913 12.4563 12.8813 12.4779C12.8613 12.521 12.8326 12.5815 12.7954 12.6571C12.7211 12.808 12.6124 13.0196 12.4706 13.2718C12.1884 13.7738 11.7685 14.4482 11.22 15.1281C10.1583 16.4441 8.4344 18 6.13333 18C2.7693 18 0 15.3284 0 12.0005C0 8.67819 2.74346 6.02707 6.08393 6.00116ZM17.8994 15.9999C20.1826 15.9827 22 14.1652 22 12.0005C22 9.81709 20.1665 8.00097 17.8667 8.00097C16.5011 8.00097 15.2917 8.94479 14.3366 10.1286C13.8768 10.6986 13.5175 11.274 13.2727 11.7094C13.1509 11.926 13.0591 12.105 12.9988 12.2274C12.9687 12.2886 12.9465 12.3355 12.9325 12.3656L12.9177 12.3979L12.9153 12.4033L12.9151 12.4038C12.9152 12.4035 12.9153 12.4033 12 12.0005C11.0847 11.5977 11.0848 11.5974 11.085 11.5971L11.0851 11.5969L11.0851 11.5968L11.0853 11.5964L11.0853 11.5964L11.0861 11.5946L11.0883 11.5896L11.0951 11.5744C11.1008 11.5618 11.1087 11.5446 11.1187 11.5231C11.1387 11.48 11.1674 11.4194 11.2046 11.3439C11.2789 11.193 11.3876 10.9814 11.5294 10.7292C11.8116 10.2272 12.2315 9.55273 12.78 8.87284C13.8417 7.5569 15.5656 6.00097 17.8667 6.00097C21.2184 6.00097 24 8.66061 24 12.0005C24 15.3296 21.2197 18 17.8667 18C17.8448 18 17.8229 17.9993 17.8011 17.9979C15.9245 17.8745 14.189 16.9548 13.0617 15.4721C12.7275 15.0325 12.8129 14.4051 13.2526 14.0708C13.6922 13.7366 14.3196 13.822 14.6538 14.2617C15.417 15.2655 16.6013 15.9052 17.8994 15.9999Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.7587 2H16.2413C17.0463 1.99999 17.7106 1.99998 18.2518 2.04419C18.8139 2.09012 19.3306 2.18868 19.816 2.43597C20.5686 2.81947 21.1805 3.43139 21.564 4.18404C21.8113 4.66937 21.9099 5.18608 21.9558 5.74817C22 6.28936 22 6.95372 22 7.75868V16.2413C22 17.0463 22 17.7106 21.9558 18.2518C21.9099 18.8139 21.8113 19.3306 21.564 19.816C21.1805 20.5686 20.5686 21.1805 19.816 21.564C19.3306 21.8113 18.8139 21.9099 18.2518 21.9558C17.7106 22 17.0463 22 16.2413 22H7.75868C6.95372 22 6.28936 22 5.74817 21.9558C5.18608 21.9099 4.66937 21.8113 4.18404 21.564C3.43139 21.1805 2.81947 20.5686 2.43597 19.816C2.18868 19.3306 2.09012 18.8139 2.04419 18.2518C1.99998 17.7106 1.99999 17.0463 2 16.2413V7.7587C1.99999 6.95373 1.99998 6.28937 2.04419 5.74817C2.09012 5.18608 2.18868 4.66937 2.43597 4.18404C2.81947 3.43139 3.43139 2.81947 4.18404 2.43597C4.66937 2.18868 5.18608 2.09012 5.74817 2.04419C6.28937 1.99998 6.95373 1.99999 7.7587 2ZM5.91104 4.03755C5.47262 4.07337 5.24842 4.1383 5.09202 4.21799C4.7157 4.40973 4.40973 4.7157 4.21799 5.09202C4.1383 5.24842 4.07337 5.47262 4.03755 5.91104C4.00078 6.36113 4 6.94342 4 7.8V16.2C4 17.0566 4.00078 17.6389 4.03755 18.089C4.07337 18.5274 4.1383 18.7516 4.21799 18.908C4.40973 19.2843 4.7157 19.5903 5.09202 19.782C5.24842 19.8617 5.47262 19.9266 5.91104 19.9624C6.36113 19.9992 6.94342 20 7.8 20H16.2C17.0566 20 17.6389 19.9992 18.089 19.9624C18.5274 19.9266 18.7516 19.8617 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C19.8617 18.7516 19.9266 18.5274 19.9624 18.089C19.9992 17.6389 20 17.0566 20 16.2V7.8C20 6.94342 19.9992 6.36113 19.9624 5.91104C19.9266 5.47262 19.8617 5.24842 19.782 5.09202C19.5903 4.7157 19.2843 4.40973 18.908 4.21799C18.7516 4.1383 18.5274 4.07337 18.089 4.03755C17.6389 4.00078 17.0566 4 16.2 4H7.8C6.94342 4 6.36113 4.00078 5.91104 4.03755ZM7.37531 9.21913C7.80657 8.87412 8.43586 8.94404 8.78087 9.37531L12 13.3992L15.2191 9.37531C15.5641 8.94404 16.1934 8.87412 16.6247 9.21913C17.056 9.56414 17.1259 10.1934 16.7809 10.6247L12.7809 15.6247C12.5911 15.8619 12.3038 16 12 16C11.6962 16 11.4089 15.8619 11.2191 15.6247L7.21913 10.6247C6.87412 10.1934 6.94404 9.56414 7.37531 9.21913Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 2.5C5 1.94772 5.44772 1.5 6 1.5H18C18.5523 1.5 19 1.94772 19 2.5C19 3.05228 18.5523 3.5 18 3.5H6C5.44772 3.5 5 3.05228 5 2.5ZM3 6.5C3 5.94772 3.44772 5.5 4 5.5H20C20.5523 5.5 21 5.94772 21 6.5C21 7.05228 20.5523 7.5 20 7.5H4C3.44772 7.5 3 7.05228 3 6.5ZM1 12C1 10.6193 2.11929 9.5 3.5 9.5H20.5C21.8807 9.5 23 10.6193 23 12V20C23 21.3807 21.8807 22.5 20.5 22.5H3.5C2.11929 22.5 1 21.3807 1 20V12ZM3.5 11.5C3.22386 11.5 3 11.7239 3 12V20C3 20.2761 3.22386 20.5 3.5 20.5H20.5C20.7761 20.5 21 20.2761 21 20V12C21 11.7239 20.7761 11.5 20.5 11.5H3.5Z" fill="#101828"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 695 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 8h.01M2 5.2v4.47c0 .48 0 .73.05.96 .04.2.12.39.23.57 .12.2.29.37.64.72l7.66 7.66c1.18 1.18 1.78 1.78 2.46 2 .6.19 1.25.19 1.85 0 .68-.23 1.27-.82 2.46-2.01l2.21-2.22c1.18-1.19 1.78-1.79 2-2.47 .19-.61.19-1.26 0-1.86 -.23-.69-.82-1.28-2.01-2.47l-7.67-7.67c-.35-.35-.52-.52-.73-.65 -.18-.11-.38-.2-.58-.24 -.24-.06-.48-.06-.97-.06H5.12c-1.13 0-1.69 0-2.11.21 -.38.19-.69.49-.88.87 -.22.42-.22.98-.22 2.1ZM8.5 8c0 .27-.23.5-.5.5 -.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5 .27 0 .5.22.5.5Z"/></svg>
|
Before Width: | Height: | Size: 650 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7c0-.94 0-1.4.15-1.77 .2-.5.59-.88 1.08-1.09 .36-.16.83-.16 1.76-.16h10c.93 0 1.39 0 1.76.15 .49.2.87.59 1.08 1.08 .15.36.15.83.15 1.76m-11 13h6m-3-16v16"/></svg>
|
Before Width: | Height: | Size: 324 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7h8m-4 0v10m-4.2 4h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
Before Width: | Height: | Size: 505 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6l4 2m6-2c0 5.52-4.48 10-10 10C6.47 22 2 17.52 2 12 2 6.47 6.47 2 12 2c5.52 0 10 4.47 10 10Z"/></svg>
|
Before Width: | Height: | Size: 266 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g stroke-linecap="round" stroke-width="2" stroke="#000" fill="none" stroke-linejoin="round"><path d="M2 12c0-3.32 2.68-6 6-6h8c3.31 0 6 2.68 6 6 0 3.31-2.69 6-6 6H8c-3.32 0-6-2.69-6-6Z"/><path d="M16 14.5c1.38 0 2.5-1.12 2.5-2.5 0-1.39-1.12-2.5-2.5-2.5 -1.39 0-2.5 1.11-2.5 2.5 0 1.38 1.11 2.5 2.5 2.5Z"/></g></svg>
|
Before Width: | Height: | Size: 376 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 12h20M2 12c0 5.52 4.47 10 10 10M2 12C2 6.47 6.47 2 12 2m10 10c0 5.52-4.48 10-10 10m10-10c0-5.53-4.48-10-10-10m0 0c2.5 2.73 3.92 6.29 4 10 -.08 3.7-1.5 7.26-4 10m0-20C9.49 4.73 8.07 8.29 8 12c.07 3.7 1.49 7.26 4 10"/></svg>
|
Before Width: | Height: | Size: 384 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 21c0-1.4 0-2.1-.18-2.67 -.39-1.28-1.39-2.28-2.67-2.67 -.57-.18-1.27-.18-2.67-.18h-5c-1.4 0-2.1 0-2.67.17 -1.28.38-2.28 1.38-2.67 2.66 -.18.56-.18 1.26-.18 2.66m12.5-13.5c0 2.48-2.02 4.5-4.5 4.5 -2.49 0-4.5-2.02-4.5-4.5 0-2.49 2.01-4.5 4.5-4.5 2.48 0 4.5 2.01 4.5 4.5Z"/></svg>
|
Before Width: | Height: | Size: 439 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 4H3m18 16H3M9 9.25H3m6 5.5H3M14.6 16h4.8c.56 0 .84 0 1.05-.11 .18-.1.34-.25.43-.44 .1-.22.1-.5.1-1.06v-4.8c0-.57 0-.85-.11-1.06 -.1-.19-.25-.35-.44-.44 -.22-.11-.5-.11-1.06-.11h-4.8c-.57 0-.85 0-1.06.1 -.19.09-.35.24-.44.43 -.11.21-.11.49-.11 1.05v4.8c0 .56 0 .84.1 1.05 .09.18.24.34.43.43 .21.1.49.1 1.05.1Z"/></svg>
|
Before Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 9.1 KiB |