Version Description
(Date: June 08, 2021) = * Introducing Conversational Form Style * Dedicated landing page for Conversational Form * Added Layout Option for Conversational Form * Bulk Resend Notification Fixed * Various Integration Improvements * Editor UI improvements * PHP 8.0 Support * PHP API * Custom Submit Button
Download this release
Release Info
Developer | techjewel |
Plugin | Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms |
Version | 4.0.0 |
Comparing to | |
See all releases |
Code changes from version 3.6.74 to 4.0.0
- app/Api/Entry.php +136 -0
- app/Api/Form.php +117 -0
- app/Api/FormProperties.php +157 -0
- app/Global/Common.php +9 -43
- app/Helpers/Helper.php +58 -3
- app/Hooks/Common.php +3 -0
- app/Modules/Activator.php +80 -42
- app/Modules/Component/Component.php +18 -13
- app/Modules/Entries/Entries.php +1 -1
- app/Modules/Entries/Report.php +17 -10
- app/Modules/Form/Form.php +18 -80
- app/Modules/Form/FormDataParser.php +5 -0
- app/Modules/Form/FormFieldsParser.php +6 -0
- app/Modules/Form/FormHandler.php +11 -3
- app/Modules/Form/Predefined.php +128 -79
- app/Modules/Form/Settings/FormCssJs.php +31 -0
- app/Modules/Registerer/Menu.php +22 -14
- app/Providers/FluentConversationalProvider.php +19 -0
- app/Services/FluentConversational/Classes/Converter/Converter.php +349 -0
- app/Services/FluentConversational/Classes/Elements/WelcomeScreen.php +133 -0
- app/Services/FluentConversational/Classes/Fonts.php +4292 -0
- app/Services/FluentConversational/Classes/Form.php +662 -0
- app/Services/FluentConversational/autoload.php +23 -0
- app/Services/FluentConversational/plugin.php +8 -0
- app/Services/FluentConversational/public/js/conversationalForm.js +2 -0
- app/Services/FluentConversational/public/js/conversationalForm.js.LICENSE.txt +14 -0
- app/Services/FluentConversational/public/mix-manifest.json +3 -0
- app/Services/FormBuilder/Components/CustomSubmitButton.php +193 -0
- app/Services/FormBuilder/CountryNames.php +6 -1
- app/Services/FormBuilder/DefaultElements.php +1 -1
- app/Services/FormBuilder/ElementSettingsPlacement.php +1 -5
- app/Services/FormBuilder/ShortCodeParser.php +11 -0
- config/app.php +1 -0
- fluentform.php +2 -2
- glue.json +1 -1
- public/css/conversational_design.css +1 -0
- public/css/fluent-all-forms.css +1 -1
- public/css/fluent-forms-admin-sass.css +1 -1
- public/img/conversational/demo_1.jpg +0 -0
- public/img/conversational/demo_2.jpg +0 -0
- public/img/conversational/demo_3.jpg +0 -0
- public/img/conversational/demo_4.jpg +0 -0
- public/img/conversational/demo_5.jpg +0 -0
- public/img/forms/conversational.gif +0 -0
- public/index.php +2 -0
- public/js/admin_notices.js +1 -1
- public/js/all_entries.js +0 -1
app/Api/Entry.php
ADDED
@@ -0,0 +1,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Api;
|
4 |
+
use FluentForm\App\Modules\Entries\Report;
|
5 |
+
use FluentForm\App\Modules\Form\FormDataParser;
|
6 |
+
use FluentForm\App\Modules\Form\FormFieldsParser;
|
7 |
+
|
8 |
+
class Entry
|
9 |
+
{
|
10 |
+
private $form;
|
11 |
+
|
12 |
+
public function __construct($form)
|
13 |
+
{
|
14 |
+
$this->form = $form;
|
15 |
+
}
|
16 |
+
|
17 |
+
public function entries($atts = [], $includeFormats = false)
|
18 |
+
{
|
19 |
+
if($includeFormats) {
|
20 |
+
if (!defined('FLUENTFORM_RENDERING_ENTRIES')) {
|
21 |
+
define('FLUENTFORM_RENDERING_ENTRIES', true);
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
+
$atts = wp_parse_args($atts, [
|
26 |
+
'per_page' => 10,
|
27 |
+
'page' => 1,
|
28 |
+
'search' => '',
|
29 |
+
'sort_by' => 'DESC',
|
30 |
+
'entry_type' => 'all'
|
31 |
+
]);
|
32 |
+
|
33 |
+
$offset = $atts['per_page'] * ($atts['page'] - 1);
|
34 |
+
|
35 |
+
$entryQuery = wpFluent()->table('fluentform_submissions')
|
36 |
+
->where('form_id', $this->form->id)
|
37 |
+
->orderBy('id', $atts['sort_by'])
|
38 |
+
->limit($atts['per_page'])
|
39 |
+
->offset($offset);
|
40 |
+
|
41 |
+
$type = $atts['entry_type'];
|
42 |
+
|
43 |
+
if($type && $type != 'all') {
|
44 |
+
$entryQuery->where('status', $type);
|
45 |
+
}
|
46 |
+
|
47 |
+
if ($searchString = $atts['search']) {
|
48 |
+
$entryQuery->where(function ($q) use ($searchString) {
|
49 |
+
$q->where('id', 'LIKE', "%{$searchString}%")
|
50 |
+
->orWhere('response', 'LIKE', "%{$searchString}%")
|
51 |
+
->orWhere('status', 'LIKE', "%{$searchString}%")
|
52 |
+
->orWhere('created_at', 'LIKE', "%{$searchString}%");
|
53 |
+
});
|
54 |
+
}
|
55 |
+
|
56 |
+
$count = $entryQuery->count();
|
57 |
+
|
58 |
+
$data = $entryQuery->get();
|
59 |
+
|
60 |
+
$dataCount = count($data);
|
61 |
+
|
62 |
+
$from = $dataCount > 0 ? ($atts['page'] - 1) * $atts['per_page'] + 1 : null;
|
63 |
+
|
64 |
+
$to = $dataCount > 0 ? $from + $dataCount - 1 : null;
|
65 |
+
$lastPage = (int) ceil($count / $atts['per_page']);
|
66 |
+
|
67 |
+
if($includeFormats) {
|
68 |
+
$data = FormDataParser::parseFormEntries($data, $this->form);
|
69 |
+
}
|
70 |
+
|
71 |
+
foreach ($data as $datum) {
|
72 |
+
$datum->response = json_decode($datum->response, true);
|
73 |
+
}
|
74 |
+
|
75 |
+
return [
|
76 |
+
'current_page' => $atts['page'],
|
77 |
+
'per_page' => $atts['per_page'],
|
78 |
+
'from' => $from,
|
79 |
+
'to' => $to,
|
80 |
+
'last_page' => $lastPage,
|
81 |
+
'total' => $count,
|
82 |
+
'data' => $data,
|
83 |
+
];
|
84 |
+
}
|
85 |
+
|
86 |
+
public function entry($entryId, $includeFormats = false)
|
87 |
+
{
|
88 |
+
$submission = wpFluent()->table('fluentform_submissions')
|
89 |
+
->where('form_id', $this->form->id)
|
90 |
+
->where('id', $entryId)
|
91 |
+
->first();
|
92 |
+
|
93 |
+
if(!$submission) {
|
94 |
+
return null;
|
95 |
+
}
|
96 |
+
|
97 |
+
$inputs = FormFieldsParser::getEntryInputs($this->form);
|
98 |
+
$submission = FormDataParser::parseFormEntry($submission, $this->form, $inputs, true);
|
99 |
+
|
100 |
+
if(!$includeFormats) {
|
101 |
+
$submission->response = json_decode($submission->response, true);
|
102 |
+
return [
|
103 |
+
'submission' => $submission
|
104 |
+
];
|
105 |
+
}
|
106 |
+
|
107 |
+
if ($submission->user_id) {
|
108 |
+
$user = get_user_by('ID', $submission->user_id);
|
109 |
+
$user_data = [
|
110 |
+
'name' => $user->display_name,
|
111 |
+
'email' => $user->user_email,
|
112 |
+
'ID' => $user->ID,
|
113 |
+
'permalink' => get_edit_user_link($user->ID)
|
114 |
+
];
|
115 |
+
$submission->user = $user_data;
|
116 |
+
}
|
117 |
+
|
118 |
+
$submission = apply_filters('fluentform_single_response_data', $submission, $this->form->id);
|
119 |
+
|
120 |
+
$submission->response = json_decode($submission->response);
|
121 |
+
|
122 |
+
$inputLabels = FormFieldsParser::getAdminLabels($this->form, $inputs);
|
123 |
+
|
124 |
+
return [
|
125 |
+
'submission' => $submission,
|
126 |
+
'labels' => $inputLabels
|
127 |
+
];
|
128 |
+
}
|
129 |
+
|
130 |
+
public function report($statuses = [])
|
131 |
+
{
|
132 |
+
$reportClass = new Report(wpFluentForm());
|
133 |
+
return $reportClass->generateReport($this->form, $statuses);
|
134 |
+
}
|
135 |
+
|
136 |
+
}
|
app/Api/Form.php
ADDED
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Api;
|
4 |
+
|
5 |
+
use FluentForm\App\Helpers\Helper;
|
6 |
+
use FluentForm\Framework\Helpers\ArrayHelper;
|
7 |
+
|
8 |
+
class Form
|
9 |
+
{
|
10 |
+
public function forms($atts = [], $withFields = false)
|
11 |
+
{
|
12 |
+
$defaultAtts = [
|
13 |
+
'search' => '',
|
14 |
+
'status' => 'all',
|
15 |
+
'sort_column' => 'id',
|
16 |
+
'sort_by' => 'DESC',
|
17 |
+
'per_page' => 10,
|
18 |
+
'page' => 1
|
19 |
+
];
|
20 |
+
|
21 |
+
$atts = wp_parse_args($atts, $defaultAtts);
|
22 |
+
|
23 |
+
$perPage = ArrayHelper::get($atts, 'per_page', 10);
|
24 |
+
$search = ArrayHelper::get($atts, 'search', '');
|
25 |
+
$status = ArrayHelper::get($atts, 'status', 'all');
|
26 |
+
|
27 |
+
$shortColumn = ArrayHelper::get($atts, 'sort_column', 'id');
|
28 |
+
$sortBy = ArrayHelper::get($atts, 'sort_by', 'DESC');
|
29 |
+
|
30 |
+
$query = wpFluent()->table('fluentform_forms')
|
31 |
+
->orderBy($shortColumn, $sortBy);
|
32 |
+
|
33 |
+
if ($status && $status != 'all') {
|
34 |
+
$query->where('status', $status);
|
35 |
+
}
|
36 |
+
|
37 |
+
if ($search) {
|
38 |
+
$query->where(function ($q) use ($search) {
|
39 |
+
$q->where('id', 'LIKE', '%' . $search . '%');
|
40 |
+
$q->orWhere('title', 'LIKE', '%' . $search . '%');
|
41 |
+
});
|
42 |
+
}
|
43 |
+
|
44 |
+
$currentPage = intval(ArrayHelper::get($atts, 'page', 1));
|
45 |
+
$total = $query->count();
|
46 |
+
$skip = $perPage * ($currentPage - 1);
|
47 |
+
$data = (array) $query->select('*')->limit($perPage)->offset($skip)->get();
|
48 |
+
|
49 |
+
$dataCount = count($data);
|
50 |
+
|
51 |
+
$from = $dataCount > 0 ? ($currentPage - 1) * $perPage + 1 : null;
|
52 |
+
|
53 |
+
$to = $dataCount > 0 ? $from + $dataCount - 1 : null;
|
54 |
+
$lastPage = (int) ceil($total / $perPage);
|
55 |
+
|
56 |
+
$forms = array(
|
57 |
+
'current_page' => $currentPage,
|
58 |
+
'per_page' => $perPage,
|
59 |
+
'from' => $from,
|
60 |
+
'to' => $to,
|
61 |
+
'last_page' => $lastPage,
|
62 |
+
'total' => $total,
|
63 |
+
'data' => $data,
|
64 |
+
);
|
65 |
+
|
66 |
+
foreach ($forms['data'] as $form) {
|
67 |
+
$formInstance = $this->form($form);
|
68 |
+
$form->preview_url = Helper::getPreviewUrl($form->id, 'classic');
|
69 |
+
$form->edit_url = Helper::getFormAdminPermalink('editor', $form);
|
70 |
+
$form->settings_url = Helper::getFormSettingsUrl($form);
|
71 |
+
$form->entries_url = Helper::getFormAdminPermalink('entries', $form);
|
72 |
+
$form->analytics_url = Helper::getFormAdminPermalink('analytics', $form);
|
73 |
+
$form->total_views = Helper::getFormMeta($form->id, '_total_views', 0);
|
74 |
+
$form->total_Submissions = $formInstance->submissionCount();
|
75 |
+
$form->unread_count = $formInstance->unreadCount();
|
76 |
+
$form->conversion = $formInstance->conversionRate();
|
77 |
+
if(Helper::isConversionForm($form->id)) {
|
78 |
+
$form->conversion_preview = Helper::getPreviewUrl($form->id, 'conversational');
|
79 |
+
}
|
80 |
+
|
81 |
+
if(!$withFields) {
|
82 |
+
unset($form->form_fields);
|
83 |
+
}
|
84 |
+
}
|
85 |
+
|
86 |
+
return $forms;
|
87 |
+
}
|
88 |
+
|
89 |
+
public function find($formId)
|
90 |
+
{
|
91 |
+
return wpFluent()->table('fluentform_forms')->where('id', $formId)->first();
|
92 |
+
}
|
93 |
+
|
94 |
+
/**
|
95 |
+
* get Form Properties instance
|
96 |
+
* @param int|object $form
|
97 |
+
* @return \FluentForm\App\Api\FormProperties
|
98 |
+
*/
|
99 |
+
public function form($form)
|
100 |
+
{
|
101 |
+
if(is_numeric($form)) {
|
102 |
+
$form = $this->find($form);
|
103 |
+
}
|
104 |
+
|
105 |
+
return (new FormProperties($form));
|
106 |
+
}
|
107 |
+
|
108 |
+
public function entryInstance($form)
|
109 |
+
{
|
110 |
+
if(is_numeric($form)) {
|
111 |
+
$form = $this->find($form);
|
112 |
+
}
|
113 |
+
|
114 |
+
return (new Entry($form));
|
115 |
+
}
|
116 |
+
|
117 |
+
}
|
app/Api/FormProperties.php
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Api;
|
4 |
+
|
5 |
+
use FluentForm\App\Helpers\Helper;
|
6 |
+
use FluentForm\App\Modules\Form\FormFieldsParser;
|
7 |
+
|
8 |
+
class FormProperties
|
9 |
+
{
|
10 |
+
private $form;
|
11 |
+
|
12 |
+
public function __construct($form)
|
13 |
+
{
|
14 |
+
$this->form = $form;
|
15 |
+
}
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Get Form formatted inputs
|
19 |
+
* @param string[] $with
|
20 |
+
* @return array
|
21 |
+
*/
|
22 |
+
public function inputs($with = ['admin_label', 'raw'])
|
23 |
+
{
|
24 |
+
return FormFieldsParser::getEntryInputs($this->form, $with);
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Get Form Input labels
|
29 |
+
* @return array
|
30 |
+
*/
|
31 |
+
public function labels()
|
32 |
+
{
|
33 |
+
$inputs = $this->inputs();
|
34 |
+
return FormFieldsParser::getAdminLabels($this->form, $inputs);
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Get Form Fields
|
39 |
+
* @return array
|
40 |
+
*/
|
41 |
+
public function fields()
|
42 |
+
{
|
43 |
+
return json_decode($this->form->form_fields, true);
|
44 |
+
}
|
45 |
+
|
46 |
+
/**
|
47 |
+
* Get Form Settings
|
48 |
+
* @return array
|
49 |
+
*/
|
50 |
+
public function settings()
|
51 |
+
{
|
52 |
+
return (array) Helper::getFormMeta($this->form->id, 'formSettings', []);
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* Get Email Notifications as an array
|
57 |
+
* @return array
|
58 |
+
* @throws \WpFluent\Exception
|
59 |
+
*/
|
60 |
+
public function emailNotifications()
|
61 |
+
{
|
62 |
+
$emailNotifications = wpFluent()
|
63 |
+
->table('fluentform_form_meta')
|
64 |
+
->where('form_id', $this->form->id)
|
65 |
+
->where('meta_key', 'notifications')
|
66 |
+
->get();
|
67 |
+
|
68 |
+
$formattedNotifications = [];
|
69 |
+
|
70 |
+
foreach ($emailNotifications as $notification) {
|
71 |
+
$value = \json_decode($notification->value, true);
|
72 |
+
$formattedNotifications[] = [
|
73 |
+
'id' => $notification->id,
|
74 |
+
'settings' => $value
|
75 |
+
];
|
76 |
+
}
|
77 |
+
|
78 |
+
return $formattedNotifications;
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* get Form metas
|
83 |
+
* @param $metaName
|
84 |
+
* @param false $default
|
85 |
+
* @return mixed|string
|
86 |
+
*/
|
87 |
+
public function meta($metaName, $default = false)
|
88 |
+
{
|
89 |
+
return Helper::getFormMeta($this->form->id, $metaName, $default);
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* get form renerable pass settings as an array
|
94 |
+
* @return array
|
95 |
+
*/
|
96 |
+
public function renderable()
|
97 |
+
{
|
98 |
+
return apply_filters('fluentform_is_form_renderable', array(
|
99 |
+
'status' => true,
|
100 |
+
'message' => ''
|
101 |
+
), $this->form);
|
102 |
+
}
|
103 |
+
|
104 |
+
public function conversionRate()
|
105 |
+
{
|
106 |
+
if (!$this->form->total_Submissions)
|
107 |
+
return 0;
|
108 |
+
|
109 |
+
if (!$this->form->total_views)
|
110 |
+
return 0;
|
111 |
+
|
112 |
+
return ceil(($this->form->total_Submissions / $this->form->total_views) * 100);
|
113 |
+
}
|
114 |
+
|
115 |
+
public function submissionCount()
|
116 |
+
{
|
117 |
+
return wpFluent()
|
118 |
+
->table('fluentform_submissions')
|
119 |
+
->where('form_id', $this->form->id)
|
120 |
+
->where('status', '!=', 'trashed')
|
121 |
+
->count();
|
122 |
+
}
|
123 |
+
|
124 |
+
public function viewCount()
|
125 |
+
{
|
126 |
+
$hasCount = wpFluent()
|
127 |
+
->table('fluentform_form_meta')
|
128 |
+
->where('meta_key', '_total_views')
|
129 |
+
->where('form_id', $this->form->id)
|
130 |
+
->first();
|
131 |
+
|
132 |
+
if ($hasCount) {
|
133 |
+
return intval($hasCount->value);
|
134 |
+
}
|
135 |
+
|
136 |
+
return 0;
|
137 |
+
}
|
138 |
+
|
139 |
+
public function unreadCount()
|
140 |
+
{
|
141 |
+
return wpFluent()->table('fluentform_submissions')
|
142 |
+
->where('status', 'unread')
|
143 |
+
->where('form_id', $this->form->id)
|
144 |
+
->count();
|
145 |
+
}
|
146 |
+
|
147 |
+
|
148 |
+
public function __get($name)
|
149 |
+
{
|
150 |
+
if (property_exists($this->form, $name)) {
|
151 |
+
return $this->form->{$name};
|
152 |
+
}
|
153 |
+
|
154 |
+
return false;
|
155 |
+
}
|
156 |
+
|
157 |
+
}
|
app/Global/Common.php
CHANGED
@@ -47,49 +47,8 @@ if (!function_exists('fluentformMix')) {
|
|
47 |
*/
|
48 |
function fluentformMix($path, $manifestDirectory = '')
|
49 |
{
|
50 |
-
$
|
51 |
-
|
52 |
-
if ($env != 'dev') {
|
53 |
-
$publicUrl = \FluentForm\App::publicUrl();
|
54 |
-
|
55 |
-
return $publicUrl . $path;
|
56 |
-
}
|
57 |
-
|
58 |
-
static $manifests = [];
|
59 |
-
|
60 |
-
if (substr($path, 0, 1) !== '/') {
|
61 |
-
$path = "/" . $path;
|
62 |
-
}
|
63 |
-
|
64 |
-
if ($manifestDirectory && substr($manifestDirectory, 0, 1) !== '/') {
|
65 |
-
$manifestDirectory = "/" . $manifestDirectory;
|
66 |
-
}
|
67 |
-
|
68 |
-
$publicPath = \FluentForm\App::publicPath();
|
69 |
-
if (file_exists($publicPath . '/hot')) {
|
70 |
-
return (is_ssl() ? "https" : "http") . "://localhost:8080" . $path;
|
71 |
-
}
|
72 |
-
|
73 |
-
$manifestPath = $publicPath . $manifestDirectory . 'mix-manifest.json';
|
74 |
-
|
75 |
-
if (!isset($manifests[$manifestPath])) {
|
76 |
-
if (!file_exists($manifestPath)) {
|
77 |
-
throw new Exception('The Mix manifest does not exist.');
|
78 |
-
}
|
79 |
-
|
80 |
-
$manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true);
|
81 |
-
}
|
82 |
-
|
83 |
-
$manifest = $manifests[$manifestPath];
|
84 |
-
|
85 |
-
if (!isset($manifest[$path])) {
|
86 |
-
throw new Exception(
|
87 |
-
"Unable to locate Mix file: " . $path . ". Please check your " .
|
88 |
-
'webpack.mix.js output paths and try again.'
|
89 |
-
);
|
90 |
-
}
|
91 |
-
|
92 |
-
return \FluentForm\App::publicUrl($manifestDirectory . $manifest[$path]);
|
93 |
}
|
94 |
}
|
95 |
|
@@ -241,4 +200,11 @@ function fluentFormHandleScheduledEmailReport()
|
|
241 |
function fluentform_upgrade_url()
|
242 |
{
|
243 |
return 'https://wpmanageninja.com/downloads/fluentform-pro-add-on/?utm_source=plugin&utm_medium=wp_install&utm_campaign=ff_upgrade&theme_style=' . fluentform_get_active_theme_slug();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
}
|
47 |
*/
|
48 |
function fluentformMix($path, $manifestDirectory = '')
|
49 |
{
|
50 |
+
$publicUrl = \FluentForm\App::publicUrl();
|
51 |
+
return $publicUrl . $path;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
}
|
54 |
|
200 |
function fluentform_upgrade_url()
|
201 |
{
|
202 |
return 'https://wpmanageninja.com/downloads/fluentform-pro-add-on/?utm_source=plugin&utm_medium=wp_install&utm_campaign=ff_upgrade&theme_style=' . fluentform_get_active_theme_slug();
|
203 |
+
}
|
204 |
+
|
205 |
+
function fluentFormApi($module = 'forms')
|
206 |
+
{
|
207 |
+
if($module == 'forms') {
|
208 |
+
return (new \FluentForm\App\Api\Form());
|
209 |
+
}
|
210 |
}
|
app/Helpers/Helper.php
CHANGED
@@ -474,7 +474,7 @@ class Helper
|
|
474 |
$inputNames = self::getFieldNamesStatuses($items);
|
475 |
$uniqueNames = array_unique($inputNames);
|
476 |
|
477 |
-
if(count($inputNames) == count($uniqueNames)) {
|
478 |
return [];
|
479 |
}
|
480 |
|
@@ -486,20 +486,75 @@ class Helper
|
|
486 |
$names = [];
|
487 |
|
488 |
foreach ($fields as $field) {
|
489 |
-
if(ArrayHelper::get($field, 'element') == 'container') {
|
490 |
$columns = ArrayHelper::get($field, 'columns', []);
|
491 |
foreach ($columns as $column) {
|
492 |
$columnInputs = self::getFieldNamesStatuses(ArrayHelper::get($column, 'fields', []));
|
493 |
$names = array_merge($names, $columnInputs);
|
494 |
}
|
495 |
} else {
|
496 |
-
if($name = ArrayHelper::get($field, 'attributes.name')) {
|
497 |
$names[] = $name;
|
498 |
}
|
499 |
}
|
500 |
}
|
501 |
|
502 |
return $names;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
}
|
505 |
}
|
474 |
$inputNames = self::getFieldNamesStatuses($items);
|
475 |
$uniqueNames = array_unique($inputNames);
|
476 |
|
477 |
+
if (count($inputNames) == count($uniqueNames)) {
|
478 |
return [];
|
479 |
}
|
480 |
|
486 |
$names = [];
|
487 |
|
488 |
foreach ($fields as $field) {
|
489 |
+
if (ArrayHelper::get($field, 'element') == 'container') {
|
490 |
$columns = ArrayHelper::get($field, 'columns', []);
|
491 |
foreach ($columns as $column) {
|
492 |
$columnInputs = self::getFieldNamesStatuses(ArrayHelper::get($column, 'fields', []));
|
493 |
$names = array_merge($names, $columnInputs);
|
494 |
}
|
495 |
} else {
|
496 |
+
if ($name = ArrayHelper::get($field, 'attributes.name')) {
|
497 |
$names[] = $name;
|
498 |
}
|
499 |
}
|
500 |
}
|
501 |
|
502 |
return $names;
|
503 |
+
}
|
504 |
+
|
505 |
+
public static function isConversionForm($formId)
|
506 |
+
{
|
507 |
+
static $cache = [];
|
508 |
+
if (isset($cache[$formId])) {
|
509 |
+
return $cache[$formId];
|
510 |
+
}
|
511 |
+
|
512 |
+
$cache[$formId] = self::getFormMeta($formId, 'is_conversion_form') == 'yes';
|
513 |
+
return $cache[$formId];
|
514 |
+
}
|
515 |
+
|
516 |
+
public static function getPreviewUrl($formId, $type = '')
|
517 |
+
{
|
518 |
+
if ($type == 'conversational') {
|
519 |
+
return self::getConversionUrl($formId);
|
520 |
+
} else if ($type == 'classic') {
|
521 |
+
return site_url('?fluent_forms_pages=1&design_mode=1&preview_id=' . $formId) . '#ff_preview';
|
522 |
+
} else {
|
523 |
+
if (self::isConversionForm($formId)) {
|
524 |
+
return self::getConversionUrl($formId);
|
525 |
+
}
|
526 |
+
}
|
527 |
+
|
528 |
+
return site_url('?fluent_forms_pages=1&design_mode=1&preview_id=' . $formId) . '#ff_preview';
|
529 |
+
}
|
530 |
|
531 |
+
public static function getFormAdminPermalink($route, $form)
|
532 |
+
{
|
533 |
+
$baseUrl = admin_url('admin.php?page=fluent_forms');
|
534 |
+
return $baseUrl . '&route=' . $route . '&form_id=' . $form->id;
|
535 |
+
}
|
536 |
+
|
537 |
+
public static function getFormSettingsUrl($form)
|
538 |
+
{
|
539 |
+
$baseUrl = admin_url('admin.php?page=fluent_forms');
|
540 |
+
return $baseUrl . '&form_id=' . $form->id . '&route=settings&sub_route=form_settings#basic_settings';
|
541 |
+
}
|
542 |
+
|
543 |
+
private static function getConversionUrl($formId)
|
544 |
+
{
|
545 |
+
$meta = self::getFormMeta($formId, 'ffc_form_settings_meta', []);
|
546 |
+
$key = ArrayHelper::get($meta, 'share_key', '');
|
547 |
+
if ($key) {
|
548 |
+
return site_url('?fluent-form=' . $formId . '&form=' . $key);
|
549 |
+
}
|
550 |
+
return site_url('?fluent-form=' . $formId);
|
551 |
+
}
|
552 |
+
|
553 |
+
private function unreadCount($formId)
|
554 |
+
{
|
555 |
+
return wpFluent()->table('fluentform_submissions')
|
556 |
+
->where('status', 'unread')
|
557 |
+
->where('form_id', $formId)
|
558 |
+
->count();
|
559 |
}
|
560 |
}
|
app/Hooks/Common.php
CHANGED
@@ -405,3 +405,6 @@ $app->addFilter('fluentform_response_render_input_number', function ($response,
|
|
405 |
}
|
406 |
return \FluentForm\App\Helpers\Helper::getNumericFormatted($response, $formatter);
|
407 |
}, 10, 4);
|
|
|
|
|
|
405 |
}
|
406 |
return \FluentForm\App\Helpers\Helper::getNumericFormatted($response, $formatter);
|
407 |
}, 10, 4);
|
408 |
+
|
409 |
+
|
410 |
+
new \FluentForm\App\Services\FormBuilder\Components\CustomSubmitButton();
|
app/Modules/Activator.php
CHANGED
@@ -1,19 +1,21 @@
|
|
1 |
<?php
|
|
|
2 |
namespace FluentForm\App\Modules;
|
3 |
|
4 |
use FluentForm\App\Databases\Migrations\FormLogs;
|
5 |
use FluentForm\App\Databases\Migrations\FormSubmissionDetails;
|
6 |
use FluentForm\App\Modules\Acl\Acl;
|
7 |
use FluentForm\App\Databases\DatabaseMigrator;
|
|
|
8 |
|
9 |
class Activator
|
10 |
{
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
global $wpdb;
|
18 |
if ($network_wide) {
|
19 |
// Retrieve all site IDs from this network (WordPress >= 4.6 provides easy to use functions for that).
|
@@ -30,12 +32,13 @@ class Activator
|
|
30 |
}
|
31 |
} else {
|
32 |
$this->migrate();
|
|
|
33 |
}
|
34 |
|
35 |
self::setCronSchedule();
|
36 |
-
|
37 |
|
38 |
-
|
39 |
{
|
40 |
// We are going to migrate all the database tables here.
|
41 |
DatabaseMigrator::run();
|
@@ -51,11 +54,11 @@ class Activator
|
|
51 |
// First we have to check if global modules is set or not
|
52 |
$this->migrateGlobalAddOns();
|
53 |
|
54 |
-
if(!get_option('fluentform_entry_details_migrated')) {
|
55 |
FormSubmissionDetails::migrate();
|
56 |
}
|
57 |
|
58 |
-
if(!get_option('fluentform_db_fluentform_logs_added')) {
|
59 |
FormLogs::migrate();
|
60 |
}
|
61 |
}
|
@@ -64,29 +67,28 @@ class Activator
|
|
64 |
{
|
65 |
$globalModules = get_option('fluentform_global_modules_status');
|
66 |
// Modules already set
|
67 |
-
if(is_array($globalModules)) {
|
68 |
return;
|
69 |
}
|
70 |
|
71 |
$possibleGloablModules = [
|
72 |
-
'mailchimp'
|
73 |
-
'activecampaign'
|
74 |
-
'campaign_monitor'
|
75 |
'constatantcontact' => '_fluentform_constantcontact_settings',
|
76 |
-
'getresponse'
|
77 |
-
'icontact'
|
78 |
];
|
79 |
|
80 |
$possibleMetaModules = [
|
81 |
'webhook' => 'fluentform_webhook_feed',
|
82 |
-
'zapier'
|
83 |
-
'slack'
|
84 |
];
|
85 |
|
86 |
$moduleStatuses = [];
|
87 |
-
foreach ($possibleGloablModules as $moduleName => $settingsKey)
|
88 |
-
|
89 |
-
if(get_option($settingsKey)) {
|
90 |
$moduleStatuses[$moduleName] = 'yes';
|
91 |
} else {
|
92 |
$moduleStatuses[$moduleName] = 'no';
|
@@ -108,29 +110,28 @@ class Activator
|
|
108 |
update_option('fluentform_global_modules_status', $moduleStatuses, 'no');
|
109 |
}
|
110 |
|
111 |
-
|
112 |
-
{
|
113 |
-
if (!get_option('_fluentform_global_form_settings')) {
|
114 |
-
update_option('__fluentform_global_form_settings', array(
|
115 |
-
'layout' => array(
|
116 |
-
'labelPlacement' => 'top',
|
117 |
-
'asteriskPlacement' => 'asterisk-right',
|
118 |
-
'helpMessagePlacement' => 'with_label',
|
119 |
-
'errorMessagePlacement' => 'inline',
|
120 |
-
'cssClassName' => ''
|
121 |
-
)
|
122 |
-
), 'no');
|
123 |
-
}
|
124 |
-
}
|
125 |
-
|
126 |
-
private function setCurrentVersion()
|
127 |
-
{
|
128 |
-
update_option('_fluentform_installed_version', FLUENTFORM_VERSION, 'no');
|
129 |
-
}
|
130 |
-
|
131 |
-
public static function setCronSchedule()
|
132 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
add_filter('cron_schedules', function ($schedules) {
|
135 |
$schedules['ff_every_five_minutes'] = array(
|
136 |
'interval' => 300,
|
@@ -148,6 +149,43 @@ class Activator
|
|
148 |
if (!wp_next_scheduled($emailReportHookName)) {
|
149 |
wp_schedule_event(time(), 'daily', $emailReportHookName);
|
150 |
}
|
|
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
}
|
153 |
}
|
1 |
<?php
|
2 |
+
|
3 |
namespace FluentForm\App\Modules;
|
4 |
|
5 |
use FluentForm\App\Databases\Migrations\FormLogs;
|
6 |
use FluentForm\App\Databases\Migrations\FormSubmissionDetails;
|
7 |
use FluentForm\App\Modules\Acl\Acl;
|
8 |
use FluentForm\App\Databases\DatabaseMigrator;
|
9 |
+
use FluentForm\App\Modules\Form\Predefined;
|
10 |
|
11 |
class Activator
|
12 |
{
|
13 |
+
/**
|
14 |
+
* This method will be called on plugin activation
|
15 |
+
* @return void
|
16 |
+
*/
|
17 |
+
public function handleActivation($network_wide)
|
18 |
+
{
|
19 |
global $wpdb;
|
20 |
if ($network_wide) {
|
21 |
// Retrieve all site IDs from this network (WordPress >= 4.6 provides easy to use functions for that).
|
32 |
}
|
33 |
} else {
|
34 |
$this->migrate();
|
35 |
+
$this->maybeMigrateDefaultForms();
|
36 |
}
|
37 |
|
38 |
self::setCronSchedule();
|
39 |
+
}
|
40 |
|
41 |
+
public function migrate()
|
42 |
{
|
43 |
// We are going to migrate all the database tables here.
|
44 |
DatabaseMigrator::run();
|
54 |
// First we have to check if global modules is set or not
|
55 |
$this->migrateGlobalAddOns();
|
56 |
|
57 |
+
if (!get_option('fluentform_entry_details_migrated')) {
|
58 |
FormSubmissionDetails::migrate();
|
59 |
}
|
60 |
|
61 |
+
if (!get_option('fluentform_db_fluentform_logs_added')) {
|
62 |
FormLogs::migrate();
|
63 |
}
|
64 |
}
|
67 |
{
|
68 |
$globalModules = get_option('fluentform_global_modules_status');
|
69 |
// Modules already set
|
70 |
+
if (is_array($globalModules)) {
|
71 |
return;
|
72 |
}
|
73 |
|
74 |
$possibleGloablModules = [
|
75 |
+
'mailchimp' => '_fluentform_mailchimp_details',
|
76 |
+
'activecampaign' => '_fluentform_activecampaign_settings',
|
77 |
+
'campaign_monitor' => '_fluentform_campaignmonitor_settings',
|
78 |
'constatantcontact' => '_fluentform_constantcontact_settings',
|
79 |
+
'getresponse' => '_fluentform_getresponse_settings',
|
80 |
+
'icontact' => '_fluentform_icontact_settings'
|
81 |
];
|
82 |
|
83 |
$possibleMetaModules = [
|
84 |
'webhook' => 'fluentform_webhook_feed',
|
85 |
+
'zapier' => 'fluentform_zapier_feed',
|
86 |
+
'slack' => 'slack'
|
87 |
];
|
88 |
|
89 |
$moduleStatuses = [];
|
90 |
+
foreach ($possibleGloablModules as $moduleName => $settingsKey) {
|
91 |
+
if (get_option($settingsKey)) {
|
|
|
92 |
$moduleStatuses[$moduleName] = 'yes';
|
93 |
} else {
|
94 |
$moduleStatuses[$moduleName] = 'no';
|
110 |
update_option('fluentform_global_modules_status', $moduleStatuses, 'no');
|
111 |
}
|
112 |
|
113 |
+
private function setDefaultGlobalSettings()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
{
|
115 |
+
if (!get_option('_fluentform_global_form_settings')) {
|
116 |
+
update_option('__fluentform_global_form_settings', array(
|
117 |
+
'layout' => array(
|
118 |
+
'labelPlacement' => 'top',
|
119 |
+
'asteriskPlacement' => 'asterisk-right',
|
120 |
+
'helpMessagePlacement' => 'with_label',
|
121 |
+
'errorMessagePlacement' => 'inline',
|
122 |
+
'cssClassName' => ''
|
123 |
+
)
|
124 |
+
), 'no');
|
125 |
+
}
|
126 |
+
}
|
127 |
|
128 |
+
private function setCurrentVersion()
|
129 |
+
{
|
130 |
+
update_option('_fluentform_installed_version', FLUENTFORM_VERSION, 'no');
|
131 |
+
}
|
132 |
+
|
133 |
+
public static function setCronSchedule()
|
134 |
+
{
|
135 |
add_filter('cron_schedules', function ($schedules) {
|
136 |
$schedules['ff_every_five_minutes'] = array(
|
137 |
'interval' => 300,
|
149 |
if (!wp_next_scheduled($emailReportHookName)) {
|
150 |
wp_schedule_event(time(), 'daily', $emailReportHookName);
|
151 |
}
|
152 |
+
}
|
153 |
|
154 |
+
public static function maybeMigrateDefaultForms()
|
155 |
+
{
|
156 |
+
$firstForm = wpFluent()->table('fluentform_forms')->first();
|
157 |
+
if (!$firstForm) {
|
158 |
+
$forms = [
|
159 |
+
'[{"id":"9","title":"Contact Form Demo","status":"published","appearance_settings":null,"form_fields":{"fields":[{"index":0,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"Name","conditional_logics":[]},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":"First Name"},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"Last Name","required":false},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"ff-edit-name","template":"nameFields"},"uniqElKey":"el_1570866006692"},{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"Email Address"},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":true,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[]},"editor_options":{"title":"Email Address","icon_class":"ff-edit-email","template":"inputText"},"uniqElKey":"el_1570866012914"},{"index":2,"element":"input_text","attributes":{"type":"text","name":"subject","value":"","class":"","placeholder":"Subject"},"settings":{"container_class":"","label":"Subject","label_placement":"","admin_field_label":"Subject","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Simple Text","icon_class":"ff-edit-text","template":"inputText"},"uniqElKey":"el_1570878958648"},{"index":3,"element":"textarea","attributes":{"name":"message","value":"","id":"","class":"","placeholder":"Your Message","rows":4,"cols":2},"settings":{"container_class":"","label":"Your Message","admin_field_label":"","label_placement":"","help_message":"","validation_rules":{"required":{"value":true,"message":"This field is required"}},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Text Area","icon_class":"ff-edit-textarea","template":"inputTextarea"},"uniqElKey":"el_1570879001207"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}}},"has_payment":"0","type":"","conditions":null,"created_by":"1","created_at":"2021-06-08 04:56:28","updated_at":"2021-06-08 04:56:28","metas":[{"meta_key":"formSettings","value":"{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"Thank you for your message. We will get in touch with you shortly\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"selectedDays\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"cssClassName\":\"\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}"},{"meta_key":"advancedValidationSettings","value":"{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":\"\",\"operator\":\"=\",\"value\":\"\"}],\"error_message\":\"\",\"validation_type\":\"fail_on_condition_met\"}"},{"meta_key":"double_optin_settings","value":"{\"status\":\"no\",\"confirmation_message\":\"Please check your email inbox to confirm this submission\",\"email_body_type\":\"global\",\"email_subject\":\"Please confirm your form submission\",\"email_body\":\"<h2>Please Confirm Your Submission<\/h2><p> <\/p><p style=\"text-align: center;\"><a style=\"color: #ffffff; background-color: #454545; font-size: 16px; border-radius: 5px; text-decoration: none; font-weight: normal; font-style: normal; padding: 0.8rem 1rem; border-color: #0072ff;\" href=\"#confirmation_url#\">Confirm Submission<\/a><\/p><p> <\/p><p>If you received this email by mistake, simply delete it. Your form submission won\'t proceed if you don\'t click the confirmation link above.<\/p>\",\"email_field\":\"\",\"skip_if_logged_in\":\"yes\",\"skip_if_fc_subscribed\":\"no\"}"}]}]',
|
160 |
+
'[{"id":"8","title":"Subscription Form","status":"published","appearance_settings":null,"form_fields":{"fields":[{"index":1,"element":"container","attributes":[],"settings":{"container_class":"","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"columns":[{"fields":[{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"Your Email Address"},"settings":{"container_class":"","label":"","label_placement":"","help_message":"","admin_field_label":"Email","validation_rules":{"required":{"value":true,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[],"is_unique":"no","unique_validation_message":"Email address need to be unique."},"editor_options":{"title":"Email Address","icon_class":"ff-edit-email","template":"inputText"},"uniqElKey":"el_16231279686950.8779857923682932"}]},{"fields":[{"index":15,"element":"custom_submit_button","attributes":{"class":"","type":"submit"},"settings":{"button_style":"","button_size":"md","align":"left","container_class":"","current_state":"normal_styles","background_color":"","color":"","hover_styles":{"backgroundColor":"#ffffff","borderColor":"#409EFF","color":"#409EFF","borderRadius":"","minWidth":"100%"},"normal_styles":{"backgroundColor":"#409EFF","borderColor":"#409EFF","color":"#ffffff","borderRadius":"","minWidth":"100%"},"button_ui":{"text":"Subscribe","type":"default","img_url":""},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom Submit Button","icon_class":"dashicons dashicons-arrow-right-alt","template":"customButton"},"uniqElKey":"el_16231279798380.5947400167493171"}]}],"editor_options":{"title":"Two Column Container","icon_class":"ff-edit-column-2"},"uniqElKey":"el_16231279284710.40955091024524304"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Subscribe","img_url":""}},"editor_options":{"title":"Submit Button"}}},"has_payment":"0","type":"form","conditions":null,"created_by":"1","created_at":"2021-06-08 04:51:36","updated_at":"2021-06-08 04:54:02","metas":[{"meta_key":"formSettings","value":"{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"Thank you for your message. We will get in touch with you shortly\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"}}"},{"meta_key":"notifications","value":"{\"name\":\"Admin Notification Email\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<p>{all_data}<\\\/p>\\n<p>This form submitted at: {embed_post.permalink}<\\\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\"}"},{"meta_key":"step_data_persistency_status","value":"no"},{"meta_key":"_primary_email_field","value":"email"}]}]'
|
161 |
+
];
|
162 |
+
|
163 |
+
foreach ($forms as $formJson) {
|
164 |
+
$structure = json_decode($formJson, true)[0];
|
165 |
+
|
166 |
+
$insertData = [
|
167 |
+
'title' => $structure['title'],
|
168 |
+
'type' => $structure['type'],
|
169 |
+
'status' => 'published',
|
170 |
+
'created_by' => get_current_user_id(),
|
171 |
+
'created_at' => current_time('mysql'),
|
172 |
+
'updated_at' => current_time('mysql'),
|
173 |
+
'form_fields' => json_encode($structure['form_fields'])
|
174 |
+
];
|
175 |
+
|
176 |
+
$formId = wpFluent()->table('fluentform_forms')->insert($insertData);
|
177 |
+
|
178 |
+
foreach ($structure['metas'] as $meta) {
|
179 |
+
$meta['value'] = trim(preg_replace('/\s+/', ' ', $meta['value']));
|
180 |
+
|
181 |
+
wpFluent()->table('fluentform_form_meta')
|
182 |
+
->insert(array(
|
183 |
+
'form_id' => $formId,
|
184 |
+
'meta_key' => $meta['meta_key'],
|
185 |
+
'value' => $meta['value']
|
186 |
+
));
|
187 |
+
}
|
188 |
+
}
|
189 |
+
}
|
190 |
}
|
191 |
}
|
app/Modules/Component/Component.php
CHANGED
@@ -137,13 +137,14 @@ class Component
|
|
137 |
*/
|
138 |
public function index()
|
139 |
{
|
140 |
-
$
|
141 |
-
|
142 |
-
|
143 |
-
);
|
144 |
|
145 |
$editorComponents = $components->sort()->toArray();
|
146 |
-
$editorComponents =
|
|
|
147 |
$countries = $this->app->load($this->app->appPath('Services/FormBuilder/CountryNames.php'));
|
148 |
|
149 |
wp_send_json_success(array(
|
@@ -204,10 +205,6 @@ class Component
|
|
204 |
'disabled' => true
|
205 |
);
|
206 |
|
207 |
-
$disabled['custom_submit_button'] = array(
|
208 |
-
'disabled' => true
|
209 |
-
);
|
210 |
-
|
211 |
$disabled['rangeslider'] = array(
|
212 |
'disabled' => true
|
213 |
);
|
@@ -278,10 +275,12 @@ class Component
|
|
278 |
'id' => null,
|
279 |
'title' => null,
|
280 |
'permission' => '',
|
|
|
281 |
'permission_message' => __('Sorry, You do not have permission to view this form', 'fluentform')
|
282 |
), $atts);
|
283 |
|
284 |
$atts = shortcode_atts($shortcodeDefaults, $atts);
|
|
|
285 |
return $this->renderForm($atts);
|
286 |
});
|
287 |
|
@@ -432,11 +431,11 @@ class Component
|
|
432 |
} else if ($formTitle = $atts['title']) {
|
433 |
$form = wpFluent()->table('fluentform_forms')->where('title', $formTitle)->first();
|
434 |
} else {
|
435 |
-
return;
|
436 |
}
|
437 |
|
438 |
if (!$form) {
|
439 |
-
return;
|
440 |
}
|
441 |
|
442 |
if (!empty($atts['permission'])) {
|
@@ -459,13 +458,13 @@ class Component
|
|
459 |
->first();
|
460 |
|
461 |
if (!$formSettings) {
|
462 |
-
return;
|
463 |
}
|
464 |
|
465 |
$form->fields = json_decode($form->form_fields, true);
|
466 |
|
467 |
if (!$form->fields['fields']) {
|
468 |
-
return;
|
469 |
}
|
470 |
|
471 |
$form->settings = json_decode($formSettings->value, true);
|
@@ -487,6 +486,11 @@ class Component
|
|
487 |
$form->instance_css_class = $instanceCssClass;
|
488 |
$form->instance_index = Helper::$formInstance;
|
489 |
|
|
|
|
|
|
|
|
|
|
|
490 |
$formBuilder = $this->app->make('formBuilder');
|
491 |
$output = $formBuilder->build($form, $instanceCssClass . ' ff-form-loading', $instanceCssClass);
|
492 |
$output = $this->replaceEditorSmartCodes($output, $form);
|
@@ -584,6 +588,7 @@ class Component
|
|
584 |
(new \FluentForm\App\Modules\Form\Analytics($this->app))->record($form->id);
|
585 |
}
|
586 |
}
|
|
|
587 |
return $output . $otherScripts;
|
588 |
}
|
589 |
|
137 |
*/
|
138 |
public function index()
|
139 |
{
|
140 |
+
$formId = intval($_REQUEST['formId']);
|
141 |
+
$components = $this->app->make('components');
|
142 |
+
|
143 |
+
$this->app->doAction( 'fluent_editor_init', $components );
|
144 |
|
145 |
$editorComponents = $components->sort()->toArray();
|
146 |
+
$editorComponents = apply_filters('fluent_editor_components', $editorComponents, $formId);
|
147 |
+
|
148 |
$countries = $this->app->load($this->app->appPath('Services/FormBuilder/CountryNames.php'));
|
149 |
|
150 |
wp_send_json_success(array(
|
205 |
'disabled' => true
|
206 |
);
|
207 |
|
|
|
|
|
|
|
|
|
208 |
$disabled['rangeslider'] = array(
|
209 |
'disabled' => true
|
210 |
);
|
275 |
'id' => null,
|
276 |
'title' => null,
|
277 |
'permission' => '',
|
278 |
+
'type' => 'classic',
|
279 |
'permission_message' => __('Sorry, You do not have permission to view this form', 'fluentform')
|
280 |
), $atts);
|
281 |
|
282 |
$atts = shortcode_atts($shortcodeDefaults, $atts);
|
283 |
+
|
284 |
return $this->renderForm($atts);
|
285 |
});
|
286 |
|
431 |
} else if ($formTitle = $atts['title']) {
|
432 |
$form = wpFluent()->table('fluentform_forms')->where('title', $formTitle)->first();
|
433 |
} else {
|
434 |
+
return '';
|
435 |
}
|
436 |
|
437 |
if (!$form) {
|
438 |
+
return '';
|
439 |
}
|
440 |
|
441 |
if (!empty($atts['permission'])) {
|
458 |
->first();
|
459 |
|
460 |
if (!$formSettings) {
|
461 |
+
return '';
|
462 |
}
|
463 |
|
464 |
$form->fields = json_decode($form->form_fields, true);
|
465 |
|
466 |
if (!$form->fields['fields']) {
|
467 |
+
return '';
|
468 |
}
|
469 |
|
470 |
$form->settings = json_decode($formSettings->value, true);
|
486 |
$form->instance_css_class = $instanceCssClass;
|
487 |
$form->instance_index = Helper::$formInstance;
|
488 |
|
489 |
+
|
490 |
+
if($atts['type'] == 'conversational') {
|
491 |
+
return (new \FluentForm\App\Services\FluentConversational\Classes\Form())->renderShortcode($form);
|
492 |
+
}
|
493 |
+
|
494 |
$formBuilder = $this->app->make('formBuilder');
|
495 |
$output = $formBuilder->build($form, $instanceCssClass . ' ff-form-loading', $instanceCssClass);
|
496 |
$output = $this->replaceEditorSmartCodes($output, $form);
|
588 |
(new \FluentForm\App\Modules\Form\Analytics($this->app))->record($form->id);
|
589 |
}
|
590 |
}
|
591 |
+
|
592 |
return $output . $otherScripts;
|
593 |
}
|
594 |
|
app/Modules/Entries/Entries.php
CHANGED
@@ -395,7 +395,7 @@ class Entries extends EntryQuery
|
|
395 |
* @return array
|
396 |
* @todo: Implement Caching mechanism so we don't have to parse these things for every request
|
397 |
*/
|
398 |
-
|
399 |
{
|
400 |
$formInputs = FormFieldsParser::getEntryInputs($form, $with);
|
401 |
$inputLabels = FormFieldsParser::getAdminLabels($form, $formInputs);
|
395 |
* @return array
|
396 |
* @todo: Implement Caching mechanism so we don't have to parse these things for every request
|
397 |
*/
|
398 |
+
public function getFormInputsAndLabels($form, $with = ['admin_label', 'raw'])
|
399 |
{
|
400 |
$formInputs = FormFieldsParser::getEntryInputs($form, $with);
|
401 |
$inputLabels = FormFieldsParser::getAdminLabels($form, $formInputs);
|
app/Modules/Entries/Report.php
CHANGED
@@ -33,6 +33,14 @@ class Report
|
|
33 |
|
34 |
$form = $this->formModel->find($formId);
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
$formInputs = FormFieldsParser::getEntryInputs($form, ['admin_label', 'element', 'options']);
|
37 |
|
38 |
$inputLabels = FormFieldsParser::getAdminLabels($form, $formInputs);
|
@@ -54,10 +62,10 @@ class Report
|
|
54 |
$formSubFieldInputs = array_intersect($reportableInputs, array_values($elements));
|
55 |
|
56 |
if (!$formReportableInputs && !$formSubFieldInputs) {
|
57 |
-
|
58 |
'report_items' => (object)[],
|
59 |
'total_entries' => 0
|
60 |
-
]
|
61 |
}
|
62 |
|
63 |
$inputs = [];
|
@@ -80,9 +88,9 @@ class Report
|
|
80 |
];
|
81 |
}
|
82 |
|
83 |
-
$reports = $this->getInputReport($
|
84 |
|
85 |
-
$subFieldReports = $this->getSubFieldInputReport($
|
86 |
|
87 |
$reports = array_merge($reports, $subFieldReports);
|
88 |
|
@@ -92,15 +100,14 @@ class Report
|
|
92 |
$reports[$reportKey]['options'] = $formInputs[$reportKey]['options'];
|
93 |
}
|
94 |
|
95 |
-
|
96 |
'report_items' => $reports,
|
97 |
-
'total_entries' => $this->getEntryCounts($
|
98 |
-
'browsers' => $this->getbrowserCounts($
|
99 |
-
'devices' => $this->getDeviceCounts($
|
100 |
-
]
|
101 |
}
|
102 |
|
103 |
-
|
104 |
public function getInputReport($formId, $fieldNames, $whereClasuses)
|
105 |
{
|
106 |
if(!$fieldNames) {
|
33 |
|
34 |
$form = $this->formModel->find($formId);
|
35 |
|
36 |
+
$report = $this->generateReport($form, $statuses);
|
37 |
+
|
38 |
+
wp_send_json_success($report);
|
39 |
+
}
|
40 |
+
|
41 |
+
|
42 |
+
public function generateReport($form, $statuses = [])
|
43 |
+
{
|
44 |
$formInputs = FormFieldsParser::getEntryInputs($form, ['admin_label', 'element', 'options']);
|
45 |
|
46 |
$inputLabels = FormFieldsParser::getAdminLabels($form, $formInputs);
|
62 |
$formSubFieldInputs = array_intersect($reportableInputs, array_values($elements));
|
63 |
|
64 |
if (!$formReportableInputs && !$formSubFieldInputs) {
|
65 |
+
return [
|
66 |
'report_items' => (object)[],
|
67 |
'total_entries' => 0
|
68 |
+
];
|
69 |
}
|
70 |
|
71 |
$inputs = [];
|
88 |
];
|
89 |
}
|
90 |
|
91 |
+
$reports = $this->getInputReport($form->id, array_keys($inputs), $whereClasuses);
|
92 |
|
93 |
+
$subFieldReports = $this->getSubFieldInputReport($form->id, array_keys($subfieldInputs), $whereClasuses);
|
94 |
|
95 |
$reports = array_merge($reports, $subFieldReports);
|
96 |
|
100 |
$reports[$reportKey]['options'] = $formInputs[$reportKey]['options'];
|
101 |
}
|
102 |
|
103 |
+
return [
|
104 |
'report_items' => $reports,
|
105 |
+
'total_entries' => $this->getEntryCounts($form->id, $statuses),
|
106 |
+
'browsers' => $this->getbrowserCounts($form->id, $statuses),
|
107 |
+
'devices' => $this->getDeviceCounts($form->id, $statuses),
|
108 |
+
];
|
109 |
}
|
110 |
|
|
|
111 |
public function getInputReport($formId, $fieldNames, $whereClasuses)
|
112 |
{
|
113 |
if(!$fieldNames) {
|
app/Modules/Form/Form.php
CHANGED
@@ -63,85 +63,24 @@ class Form
|
|
63 |
*/
|
64 |
public function index()
|
65 |
{
|
66 |
-
$
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
if ($status && $status != 'all') {
|
76 |
-
$query->where('status', $status);
|
77 |
-
}
|
78 |
-
|
79 |
-
if ($search) {
|
80 |
-
$query->where(function ($q) use ($search) {
|
81 |
-
$q->where('id', 'LIKE', '%' . $search . '%');
|
82 |
-
$q->orWhere('title', 'LIKE', '%' . $search . '%');
|
83 |
-
});
|
84 |
-
}
|
85 |
-
|
86 |
-
$forms = $query->paginate();
|
87 |
-
|
88 |
-
foreach ($forms['data'] as $form) {
|
89 |
-
$form->preview_url = site_url('?fluent_forms_pages=1&preview_id=' . $form->id) . '#ff_preview';;
|
90 |
-
$form->edit_url = $this->getAdminPermalink('editor', $form);
|
91 |
-
$form->settings_url = $this->getSettingsUrl($form);
|
92 |
-
$form->entries_url = $this->getAdminPermalink('entries', $form);
|
93 |
-
$form->analytics_url = $this->getAdminPermalink('analytics', $form);
|
94 |
-
$form->total_views = $this->getFormViewCount($form->id);
|
95 |
-
$form->total_views = $this->getFormViewCount($form->id);
|
96 |
-
$form->total_Submissions = $this->getSubmissionCount($form->id);
|
97 |
-
$form->unread_count = $this->getUnreadCount($form->id);
|
98 |
-
$form->conversion = $this->getConversionRate($form);
|
99 |
-
unset($form->form_fields);
|
100 |
-
}
|
101 |
|
102 |
wp_send_json($forms, 200);
|
103 |
}
|
104 |
|
105 |
-
private function getFormViewCount($formId)
|
106 |
-
{
|
107 |
-
$hasCount = wpFluent()
|
108 |
-
->table('fluentform_form_meta')
|
109 |
-
->where('meta_key', '_total_views')
|
110 |
-
->where('form_id', $formId)
|
111 |
-
->first();
|
112 |
-
|
113 |
-
if ($hasCount) {
|
114 |
-
return intval($hasCount->value);
|
115 |
-
}
|
116 |
-
|
117 |
-
return 0;
|
118 |
-
}
|
119 |
-
|
120 |
-
private function getSubmissionCount($formID)
|
121 |
-
{
|
122 |
-
return wpFluent()
|
123 |
-
->table('fluentform_submissions')
|
124 |
-
->where('form_id', $formID)
|
125 |
-
->where('status', '!=', 'trashed')
|
126 |
-
->count();
|
127 |
-
}
|
128 |
-
|
129 |
-
private function getConversionRate($form)
|
130 |
-
{
|
131 |
-
if (!$form->total_Submissions)
|
132 |
-
return 0;
|
133 |
-
|
134 |
-
if (!$form->total_views)
|
135 |
-
return 0;
|
136 |
-
|
137 |
-
return ceil(($form->total_Submissions / $form->total_views) * 100);
|
138 |
-
}
|
139 |
|
140 |
/**
|
141 |
* Create a form from backend/editor
|
142 |
-
* @return void
|
143 |
*/
|
144 |
-
public function store()
|
145 |
{
|
146 |
$type = $this->request->get('type', $this->formType);
|
147 |
$title = $this->request->get('title', 'My New Form');
|
@@ -210,11 +149,17 @@ class Form
|
|
210 |
|
211 |
do_action('fluentform_inserted_new_form', $formId, $insertData);
|
212 |
|
213 |
-
|
214 |
'formId' => $formId,
|
215 |
'redirect_url' => admin_url('admin.php?page=fluent_forms&form_id=' . $formId . '&route=editor'),
|
216 |
'message' => __('Successfully created a form.', 'fluentform')
|
217 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
}
|
219 |
|
220 |
public function getFormsDefaultSettings($formId = false)
|
@@ -595,11 +540,4 @@ class Form
|
|
595 |
wp_send_json($forms, 200);
|
596 |
}
|
597 |
|
598 |
-
private function getUnreadCount($formId)
|
599 |
-
{
|
600 |
-
return wpFluent()->table('fluentform_submissions')
|
601 |
-
->where('status', 'unread')
|
602 |
-
->where('form_id', $formId)
|
603 |
-
->count();
|
604 |
-
}
|
605 |
}
|
63 |
*/
|
64 |
public function index()
|
65 |
{
|
66 |
+
$forms = fluentFormApi('forms')->forms([
|
67 |
+
'search' => $this->request->get('search'),
|
68 |
+
'status' => $this->request->get('status'),
|
69 |
+
'sort_column' => $this->request->get('sort_column', 'id'),
|
70 |
+
'sort_by' => $this->request->get('sort_by', 'DESC'),
|
71 |
+
'per_page' => $this->request->get('per_page', 10),
|
72 |
+
'page' => $this->request->get('page', 1),
|
73 |
+
]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
wp_send_json($forms, 200);
|
76 |
}
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
/**
|
80 |
* Create a form from backend/editor
|
81 |
+
* @return void|array
|
82 |
*/
|
83 |
+
public function store($returnJSON = true)
|
84 |
{
|
85 |
$type = $this->request->get('type', $this->formType);
|
86 |
$title = $this->request->get('title', 'My New Form');
|
149 |
|
150 |
do_action('fluentform_inserted_new_form', $formId, $insertData);
|
151 |
|
152 |
+
$data = array(
|
153 |
'formId' => $formId,
|
154 |
'redirect_url' => admin_url('admin.php?page=fluent_forms&form_id=' . $formId . '&route=editor'),
|
155 |
'message' => __('Successfully created a form.', 'fluentform')
|
156 |
+
);
|
157 |
+
|
158 |
+
if($returnJSON) {
|
159 |
+
wp_send_json_success($data, 200);
|
160 |
+
}
|
161 |
+
|
162 |
+
return $data;
|
163 |
}
|
164 |
|
165 |
public function getFormsDefaultSettings($formId = false)
|
540 |
wp_send_json($forms, 200);
|
541 |
}
|
542 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
}
|
app/Modules/Form/FormDataParser.php
CHANGED
@@ -311,4 +311,9 @@ class FormDataParser
|
|
311 |
return $html.'</ul>';
|
312 |
|
313 |
}
|
|
|
|
|
|
|
|
|
|
|
314 |
}
|
311 |
return $html.'</ul>';
|
312 |
|
313 |
}
|
314 |
+
|
315 |
+
public static function resetData()
|
316 |
+
{
|
317 |
+
static::$data = null;
|
318 |
+
}
|
319 |
}
|
app/Modules/Form/FormFieldsParser.php
CHANGED
@@ -110,4 +110,10 @@ class FormFieldsParser
|
|
110 |
|
111 |
return static::$forms[$form->id][$method];
|
112 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
}
|
110 |
|
111 |
return static::$forms[$form->id][$method];
|
112 |
}
|
113 |
+
|
114 |
+
public static function resetData()
|
115 |
+
{
|
116 |
+
static::$forms = [];
|
117 |
+
static::$formsWith = [];
|
118 |
+
}
|
119 |
}
|
app/Modules/Form/FormHandler.php
CHANGED
@@ -68,7 +68,7 @@ class FormHandler
|
|
68 |
// Parse the url encoded data from the request object.
|
69 |
parse_str($this->app->request->get('data'), $data);
|
70 |
|
71 |
-
$data['_wp_http_referer'] = urldecode( $data['_wp_http_referer']);
|
72 |
|
73 |
// Merge it back again to the request object.
|
74 |
$this->app->request->merge(['data' => $data]);
|
@@ -77,6 +77,13 @@ class FormHandler
|
|
77 |
|
78 |
$this->setForm($formId);
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
// Parse the form and get the flat inputs with validations.
|
81 |
$fields = FormFieldsParser::getInputs($this->form, ['rules', 'raw']);
|
82 |
|
@@ -169,6 +176,7 @@ class FormHandler
|
|
169 |
$form->settings = $formSettings ? json_decode($formSettings->value, true) : [];
|
170 |
}
|
171 |
|
|
|
172 |
$confirmation = apply_filters(
|
173 |
'fluentform_form_submission_confirmation',
|
174 |
$form->settings['confirmation'],
|
@@ -256,7 +264,7 @@ class FormHandler
|
|
256 |
);
|
257 |
|
258 |
$returnData = [
|
259 |
-
'redirectUrl' => wp_sanitize_redirect($redirectUrl),
|
260 |
'message' => $message
|
261 |
];
|
262 |
}
|
@@ -346,7 +354,7 @@ class FormHandler
|
|
346 |
}
|
347 |
|
348 |
if ($errors) {
|
349 |
-
wp_send_json(['errors' => $errors],
|
350 |
}
|
351 |
|
352 |
return true;
|
68 |
// Parse the url encoded data from the request object.
|
69 |
parse_str($this->app->request->get('data'), $data);
|
70 |
|
71 |
+
$data['_wp_http_referer'] = urldecode( $data['_wp_http_referer'] );
|
72 |
|
73 |
// Merge it back again to the request object.
|
74 |
$this->app->request->merge(['data' => $data]);
|
77 |
|
78 |
$this->setForm($formId);
|
79 |
|
80 |
+
if (!$this->form) {
|
81 |
+
wp_send_json([
|
82 |
+
'errors' => [],
|
83 |
+
'message' => 'Sorry, No corresponding form found'
|
84 |
+
], 423);
|
85 |
+
}
|
86 |
+
|
87 |
// Parse the form and get the flat inputs with validations.
|
88 |
$fields = FormFieldsParser::getInputs($this->form, ['rules', 'raw']);
|
89 |
|
176 |
$form->settings = $formSettings ? json_decode($formSettings->value, true) : [];
|
177 |
}
|
178 |
|
179 |
+
|
180 |
$confirmation = apply_filters(
|
181 |
'fluentform_form_submission_confirmation',
|
182 |
$form->settings['confirmation'],
|
264 |
);
|
265 |
|
266 |
$returnData = [
|
267 |
+
'redirectUrl' => wp_sanitize_redirect(urldecode($redirectUrl)),
|
268 |
'message' => $message
|
269 |
];
|
270 |
}
|
354 |
}
|
355 |
|
356 |
if ($errors) {
|
357 |
+
wp_send_json(['errors' => $errors], 423);
|
358 |
}
|
359 |
|
360 |
return true;
|
app/Modules/Form/Predefined.php
CHANGED
@@ -25,6 +25,16 @@ class Predefined extends Form
|
|
25 |
'json' => '[{"id":"132","title":"Blank Form","form":{"fields":[],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline","asteriskPlacement": "asterisk-right"}},"notifications":{"name":"Admin Notification Email","sendTo":{"type":"email","email":"{wp.admin_email}","field":"email","routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"[{inputs.names}] New Form Submission","message":"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
26 |
),
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
'basic_contact_form' => array(
|
29 |
'screenshot' => App::publicUrl('img/forms/contact_form.png'),
|
30 |
'createable' => true,
|
@@ -58,7 +68,7 @@ class Predefined extends Form
|
|
58 |
'json' => '[{"id":"4","title":"Support Form","form":{"fields":[{"index":2,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"","conditional_logics":[]},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":true,"message":"First Name field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"icon-user","template":"nameFields"},"uniqElKey":"el_1516797727681"},{"index":7,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"you@domain.com"},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","validation_rules":{"required":{"value":true,"message":"Email field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[]},"editor_options":{"title":"Email","icon_class":"icon-envelope-o","template":"inputText"},"uniqElKey":"el_1516797731343"},{"index":3,"element":"select","attributes":{"name":"department","value":"","id":"","class":""},"settings":{"label":"Department","help_message":"","container_class":"","label_placement":"","placeholder":"- Select Department -","validation_rules":{"required":{"value":true,"message":"Department field is required"}},"conditional_logics":[]},"options":{"Web Design":"Web Design","Web Development":"Web Development","WordPress Development":"WordPress Development","DevOps":"DevOps"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1516797735245"},{"index":1,"element":"input_text","attributes":{"type":"text","name":"subject","value":"","class":"","placeholder":"Type your subject"},"settings":{"container_class":"","label":"Subject","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":true,"message":"Subject field is required"}},"conditional_logics":[]},"editor_options":{"title":"Text Input","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1516797770161"},{"index":2,"element":"textarea","attributes":{"name":"description","value":"","id":"","class":"","placeholder":"","rows":4,"cols":2},"settings":{"container_class":"","label":"Description","label_placement":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Textarea","icon_class":"icon-paragraph","template":"inputTextarea"},"uniqElKey":"el_1516797774136"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline"}},"notifications":{"name":"Support Form Notification","sendTo":{"type":"email","email":"{wp.admin_email}","field":null,"routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"{inputs.subject}, Support Form","message":"<p>{all_data}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
59 |
),
|
60 |
|
61 |
-
'polling_form'
|
62 |
'screenshot' => App::publicUrl('img/forms/polling_form.png'),
|
63 |
'createable' => true,
|
64 |
'title' => 'Polling Form',
|
@@ -69,7 +79,7 @@ class Predefined extends Form
|
|
69 |
),
|
70 |
|
71 |
//form number : 55
|
72 |
-
'product_order_form'
|
73 |
'screenshot' => '',
|
74 |
'createable' => true,
|
75 |
'title' => 'Product Order Form',
|
@@ -81,19 +91,19 @@ class Predefined extends Form
|
|
81 |
),
|
82 |
|
83 |
//form number : 58
|
84 |
-
'online_service_order_form'
|
85 |
'screenshot' => '',
|
86 |
'createable' => true,
|
87 |
'title' => 'Online Service Order Form',
|
88 |
'is_pro' => false,
|
89 |
'brief' => 'This form can be used to create an online service order. (Payment Module is required)',
|
90 |
'category' => "Product",
|
91 |
-
'tag' => ["Order", "service", "online help", "handyman","payment"],
|
92 |
'json' => '[{"id":"204","title":"Service Order Form","status":"published","appearance_settings":null,"form_fields":{"fields":[{"index":0,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"Name","conditional_logics":[],"label_placement":"top"},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":"First Name","maxlength":""},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":true,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"Middle Name","required":false,"maxlength":""},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"Last Name","required":false,"maxlength":""},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"ff-edit-name","template":"nameFields"},"uniqElKey":"el_15924974034200.26712438122064186"},{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"Email Address"},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":true,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[],"is_unique":"no","unique_validation_message":"Email address need to be unique."},"editor_options":{"title":"Email Address","icon_class":"ff-edit-email","template":"inputText"},"uniqElKey":"el_15924974402130.012591725433457768"},{"index":1,"element":"container","attributes":[],"settings":{"container_class":""},"columns":[{"fields":[{"index":8,"element":"multi_payment_component","attributes":{"type":"radio","name":"payment_input","value":""},"settings":{"container_class":"","label":"Choose Service","admin_field_label":"Product","label_placement":"","display_type":"","help_message":"","is_payment_field":"yes","pricing_options":[{"label":"Service Item 1 - $10\/hour","value":10,"image":""},{"label":"Service Item 2 - $19\/hour","value":"19"},{"label":"Service Item 3- $29\/hour","value":"29"}],"price_label":"Price:","enable_quantity":false,"enable_image_input":false,"is_element_lock":false,"layout_class":"","validation_rules":{"required":{"value":true,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Payment Field","icon_class":"ff-edit-shopping-cart","element":"input-radio","template":"inputMultiPayment"},"uniqElKey":"el_1592502076962"}]},{"fields":[{"index":6,"element":"item_quantity_component","attributes":{"type":"number","name":"item-quantity","value":"1","id":"","class":"","placeholder":"Hours","data-quantity_item":"yes"},"settings":{"container_class":"","is_payment_field":"yes","label":"How Many Hours?","admin_field_label":"Hours","label_placement":"","help_message":"","number_step":"","prefix_label":"","suffix_label":"","target_product":"payment_input","validation_rules":{"required":{"value":true,"message":"This field is required"},"numeric":{"value":true,"message":"This field must contain numeric value"},"min":{"value":"1","message":"Minimum value is "},"max":{"value":"","message":"Maximum value is "}},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Item Quantity","icon_class":"ff-edit-keyboard-o","template":"inputText"},"uniqElKey":"el_15925020855320.9400112640060003"}]}],"editor_options":{"title":"Two Column Container","icon_class":"ff-edit-column-2"},"uniqElKey":"el_15925020745170.6041197871212416"},{"index":10,"element":"payment_method","attributes":{"name":"payment_method","type":"radio","value":""},"settings":{"container_class":"","label":"Choose Payment Method","default_method":"","label_placement":"","help_message":"","payment_methods":{"stripe":{"title":"Credit\/Debit Card (Stripe)","enabled":"yes","method_value":"stripe","settings":{"option_label":{"type":"text","template":"inputText","value":"Pay with Card (Stripe)","label":"Method Label"},"require_billing_info":{"type":"checkbox","template":"inputYesNoCheckbox","value":"no","label":"Require Billing info"},"require_shipping_info":{"type":"checkbox","template":"inputYesNoCheckbox","value":"no","label":"Collect Shipping Info"}}},"paypal":{"title":"PayPal","enabled":"yes","method_value":"paypal","settings":{"option_label":{"type":"text","template":"inputText","value":"Pay with PayPal","label":"Method Label"},"require_shipping_address":{"type":"checkbox","template":"inputYesNoCheckbox","value":"no","label":"Require Shipping Address"}}},"test":{"title":"Offline Payment","enabled":"yes","method_value":"test","settings":{"option_label":{"type":"text","template":"inputText","value":"Test Payment","label":"Method Label"}}}},"admin_field_label":"","conditional_logics":[]},"editor_options":{"title":"Payment Method Field","icon_class":"ff-edit-credit-card","template":"inputPaymentMethods"},"uniqElKey":"el_15924975611200.8035560583323771"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Purchase {payment_total}","img_url":""},"normal_styles":{"backgroundColor":"#409EFF","borderColor":"#409EFF","color":"#ffffff","borderRadius":"","minWidth":""},"hover_styles":{"backgroundColor":"#ffffff","borderColor":"#409EFF","color":"#409EFF","borderRadius":"","minWidth":""},"current_state":"normal_styles"},"editor_options":{"title":"Submit Button"}}},"has_payment":"1","type":"form","conditions":null,"created_by":"1","created_at":"2020-06-18 23:40:30","updated_at":"2020-06-18 23:44:57","metas":[{"meta_key":"formSettings","value":"{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"<p>Thank you for your order<\/p> <p>{payment.receipt}<\/p>\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}"},{"meta_key":"notifications","value":"{\"name\":\"New Order Notification to Admin\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<h4>Order Items<\/h4> <p>{payment.order_items}<\/p> <h4>Other Data:<\/h4> <p>{all_data}<\/p> <p>This form submitted at: {embed_post.permalink}<\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\",\"attachments\":[],\"pdf_attachments\":[]}"},{"meta_key":"step_data_persistency_status","value":"no"},{"meta_key":"_payment_settings","value":"{\"currency\":\"USD\",\"push_meta_to_stripe\":\"no\",\"receipt_email\":\"email\",\"transaction_type\":\"product\",\"stripe_checkout_methods\":[\"card\"],\"stripe_meta_data\":[{\"item_value\":\"\",\"label\":\"\"}]}"},{"meta_key":"notifications","value":"{\"name\":\"Email To Customer\",\"sendTo\":{\"type\":\"field\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] Your Order Receipt\",\"message\":\"<p>{payment.receipt}<\/p> <p>Thank you<\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\",\"attachments\":[],\"pdf_attachments\":[]}"},{"meta_key":"advancedValidationSettings","value":"{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":\"\",\"operator\":\"=\",\"value\":\"\"}],\"error_message\":\"\",\"validation_type\":\"fail_on_condition_met\"}"},{"meta_key":"report_data_migrated","value":"\"yes\""}]}]'
|
93 |
),
|
94 |
|
95 |
//form number : 60
|
96 |
-
'payment_donation_form'
|
97 |
'screenshot' => '',
|
98 |
'createable' => true,
|
99 |
'title' => 'Online Donation Form',
|
@@ -106,7 +116,7 @@ class Predefined extends Form
|
|
106 |
|
107 |
|
108 |
//form number : 61
|
109 |
-
'order_bump_form'
|
110 |
'screenshot' => '',
|
111 |
'createable' => true,
|
112 |
'title' => 'Order Bump Example Form',
|
@@ -118,7 +128,7 @@ class Predefined extends Form
|
|
118 |
),
|
119 |
|
120 |
//form number : 62
|
121 |
-
'student_survey_form'
|
122 |
'screenshot' => '',
|
123 |
'createable' => true,
|
124 |
'title' => 'Student Survey Form',
|
@@ -130,7 +140,7 @@ class Predefined extends Form
|
|
130 |
),
|
131 |
|
132 |
//form number : 63
|
133 |
-
'classroom_observation_form'
|
134 |
'screenshot' => '',
|
135 |
'createable' => true,
|
136 |
'title' => 'Classroom Observation Form',
|
@@ -142,7 +152,7 @@ class Predefined extends Form
|
|
142 |
),
|
143 |
|
144 |
//form number : 64
|
145 |
-
'client_satisfaction_survey_form'
|
146 |
'screenshot' => '',
|
147 |
'createable' => true,
|
148 |
'title' => 'Client Satisfaction Survey Form',
|
@@ -154,7 +164,7 @@ class Predefined extends Form
|
|
154 |
),
|
155 |
|
156 |
//form number : 67
|
157 |
-
'customer_complaint_form'
|
158 |
'screenshot' => '',
|
159 |
'createable' => true,
|
160 |
'title' => 'Customer Complaint Form',
|
@@ -167,7 +177,7 @@ class Predefined extends Form
|
|
167 |
),
|
168 |
|
169 |
//form number : 68
|
170 |
-
'course_evaluation_survey_form'
|
171 |
'screenshot' => '',
|
172 |
'createable' => true,
|
173 |
'title' => 'Course Evaluation Survey form',
|
@@ -180,7 +190,7 @@ class Predefined extends Form
|
|
180 |
),
|
181 |
|
182 |
//form number : 70
|
183 |
-
'market_research_survey_form'
|
184 |
'screenshot' => '',
|
185 |
'createable' => true,
|
186 |
'title' => 'Market Research Survey Form',
|
@@ -205,7 +215,7 @@ class Predefined extends Form
|
|
205 |
),
|
206 |
|
207 |
//form number : 72
|
208 |
-
'university_enrollment_form'
|
209 |
'screenshot' => '',
|
210 |
'createable' => true,
|
211 |
'title' => 'University Enrollment Form',
|
@@ -218,7 +228,7 @@ class Predefined extends Form
|
|
218 |
),
|
219 |
|
220 |
//form number : 74
|
221 |
-
'volunteer_signup_form'
|
222 |
'screenshot' => '',
|
223 |
'createable' => true,
|
224 |
'title' => 'Volunteer sign up form',
|
@@ -230,7 +240,7 @@ class Predefined extends Form
|
|
230 |
),
|
231 |
|
232 |
//form number : 76
|
233 |
-
'donation_form'
|
234 |
'screenshot' => '',
|
235 |
'createable' => true,
|
236 |
'title' => 'Donation Form',
|
@@ -242,7 +252,7 @@ class Predefined extends Form
|
|
242 |
),
|
243 |
|
244 |
//form number : 78
|
245 |
-
'graphic_designer_contact_form'
|
246 |
'screenshot' => '',
|
247 |
'createable' => true,
|
248 |
'title' => 'Graphic Designer Contact Form',
|
@@ -254,7 +264,7 @@ class Predefined extends Form
|
|
254 |
),
|
255 |
|
256 |
//form number : 79
|
257 |
-
'multi_file_upload_form'
|
258 |
'screenshot' => '',
|
259 |
'createable' => true,
|
260 |
'title' => 'Multi file upload form',
|
@@ -266,7 +276,7 @@ class Predefined extends Form
|
|
266 |
),
|
267 |
|
268 |
//form number : 81
|
269 |
-
'highschool_transcript_request_from'
|
270 |
'screenshot' => '',
|
271 |
'createable' => true,
|
272 |
'title' => 'High School Transcript Request From',
|
@@ -278,7 +288,7 @@ class Predefined extends Form
|
|
278 |
),
|
279 |
|
280 |
//form number : 82
|
281 |
-
'partnership_application_form'
|
282 |
'screenshot' => '',
|
283 |
'createable' => true,
|
284 |
'title' => 'Partnership application form',
|
@@ -291,7 +301,7 @@ class Predefined extends Form
|
|
291 |
),
|
292 |
|
293 |
//form number : 83
|
294 |
-
'employee_evaluation_form'
|
295 |
'screenshot' => '',
|
296 |
'createable' => true,
|
297 |
'title' => 'Employee Evaluation Form',
|
@@ -304,7 +314,7 @@ class Predefined extends Form
|
|
304 |
),
|
305 |
|
306 |
//form number : 85
|
307 |
-
'party_invite_form'
|
308 |
'screenshot' => '',
|
309 |
'createable' => true,
|
310 |
'title' => 'Party Invite Form',
|
@@ -316,7 +326,7 @@ class Predefined extends Form
|
|
316 |
),
|
317 |
|
318 |
//form number : 87
|
319 |
-
'software_survey_form'
|
320 |
'screenshot' => '',
|
321 |
'createable' => true,
|
322 |
'title' => 'Software Survey Form',
|
@@ -328,7 +338,7 @@ class Predefined extends Form
|
|
328 |
),
|
329 |
|
330 |
//form number : 88
|
331 |
-
'hardware_request_form'
|
332 |
'screenshot' => '',
|
333 |
'createable' => true,
|
334 |
'title' => 'Hardware Request Form',
|
@@ -352,7 +362,7 @@ class Predefined extends Form
|
|
352 |
),
|
353 |
|
354 |
//form number : 92
|
355 |
-
'finance_application_form'
|
356 |
'screenshot' => '',
|
357 |
'createable' => true,
|
358 |
'title' => 'Finance Application Form',
|
@@ -364,7 +374,7 @@ class Predefined extends Form
|
|
364 |
),
|
365 |
|
366 |
//form number : 94
|
367 |
-
'blood_donation_form'
|
368 |
'screenshot' => '',
|
369 |
'createable' => true,
|
370 |
'title' => 'Blood Donation Form',
|
@@ -376,7 +386,7 @@ class Predefined extends Form
|
|
376 |
),
|
377 |
|
378 |
//form number : 95
|
379 |
-
'room_booking_form'
|
380 |
'screenshot' => '',
|
381 |
'createable' => true,
|
382 |
'title' => 'Room Booking Form',
|
@@ -388,7 +398,7 @@ class Predefined extends Form
|
|
388 |
),
|
389 |
|
390 |
//form number : 96
|
391 |
-
'marriage_gift_registration'
|
392 |
'screenshot' => '',
|
393 |
'createable' => true,
|
394 |
'title' => 'Marriage Gift Registration',
|
@@ -400,7 +410,7 @@ class Predefined extends Form
|
|
400 |
),
|
401 |
|
402 |
//form number : 97
|
403 |
-
'accident_report_form'
|
404 |
'screenshot' => '',
|
405 |
'createable' => true,
|
406 |
'title' => 'Accident Report Form',
|
@@ -412,7 +422,7 @@ class Predefined extends Form
|
|
412 |
),
|
413 |
|
414 |
//form number : 98
|
415 |
-
'bug_report_form'
|
416 |
'screenshot' => '',
|
417 |
'createable' => true,
|
418 |
'title' => 'Bug Report From',
|
@@ -424,7 +434,7 @@ class Predefined extends Form
|
|
424 |
),
|
425 |
|
426 |
//form number : 100
|
427 |
-
'check_request_form'
|
428 |
'screenshot' => '',
|
429 |
'createable' => true,
|
430 |
'title' => 'Check Request Form',
|
@@ -436,7 +446,7 @@ class Predefined extends Form
|
|
436 |
),
|
437 |
|
438 |
//form number : 120
|
439 |
-
'quote_request_form'
|
440 |
'screenshot' => '',
|
441 |
'createable' => true,
|
442 |
'title' => 'Quote Request Form',
|
@@ -447,7 +457,7 @@ class Predefined extends Form
|
|
447 |
'json' => '[{"id":"120","title":"Quote request (final)","form":{"fields":[{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"REQUEST FOR QUOTE","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709716273"},{"index":13,"element":"input_date","attributes":{"type":"text","name":"datetime","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Date","admin_field_label":"","label_placement":"","date_format":"m\/d\/Y","help_message":"","is_time_enabled":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Time & Date","icon_class":"icon-calendar-o","template":"inputText"},"uniqElKey":"el_1570709737257"},{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709776789"},{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"CONTACT INFORMATION","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709794267"},{"index":0,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"Name","conditional_logics":[]},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"icon-user","template":"nameFields"},"uniqElKey":"el_1570709814795"},{"index":4,"element":"address","attributes":{"id":"","class":"","name":"address1","data-type":"address-element"},"settings":{"label":"Address","admin_field_label":"","conditional_logics":[]},"fields":{"address_line_1":{"element":"input_text","attributes":{"type":"text","name":"address_line_1","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Address Line 1","admin_field_label":"","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"address_line_2":{"element":"input_text","attributes":{"type":"text","name":"address_line_2","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Address Line 2","admin_field_label":"","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"city":{"element":"input_text","attributes":{"type":"text","name":"city","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"City","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"state":{"element":"input_text","attributes":{"type":"text","name":"state","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"State","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"zip":{"element":"input_text","attributes":{"type":"text","name":"zip","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Zip Code","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"country":{"element":"select_country","attributes":{"name":"country","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Country","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"country_list":{"active_list":"all","visible_list":[],"hidden_list":[]},"conditional_logics":[]},"options":{"BD":"Bangladesh","US":"US of America"},"editor_options":{"title":"Country List","element":"country-list","icon_class":"icon-text-width","template":"selectCountry"}}},"editor_options":{"title":"Address Fields","element":"address-fields","icon_class":"icon-credit-card","template":"addressFields"},"uniqElKey":"el_1570709821047"},{"index":7,"element":"form_step","attributes":{"id":"","class":""},"settings":{"prev_btn":{"type":"default","text":"Previous","img_url":""},"next_btn":{"type":"default","text":"Next","img_url":""}},"editor_options":{"title":"Form Step","icon_class":"ff-edit-step","template":"formStep"},"uniqElKey":"el_1570860545019"},{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"PRODUCTS","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709834544"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>ITEM 1<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710083917"},{"index":1,"element":"container","attributes":[],"settings":[],"columns":[{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Product Name:","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570710076041"}]},{"fields":[{"index":7,"element":"select","attributes":{"name":"dropdown","value":"","id":"","class":""},"settings":{"label":"Quantity","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570709979534"}]}],"editor_options":{"title":"Two Column Container","icon_class":"icon-columns"},"uniqElKey":"el_1570709935743"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>ITEM 2<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710203341"},{"index":1,"element":"container","attributes":[],"settings":[],"columns":[{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text_4","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Product Name:","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570710076041"}]},{"fields":[{"index":7,"element":"select","attributes":{"name":"dropdown_4","value":"","id":"","class":""},"settings":{"label":"Quantity","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570709979534"}]}],"editor_options":{"title":"Two Column Container","icon_class":"icon-columns"},"uniqElKey":"el_1570710195267"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>ITEM 3<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710208172"},{"index":1,"element":"container","attributes":[],"settings":[],"columns":[{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text_3","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Product Name:","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570710076041"}]},{"fields":[{"index":7,"element":"select","attributes":{"name":"dropdown_3","value":"","id":"","class":""},"settings":{"label":"Quantity","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570709979534"}]}],"editor_options":{"title":"Two Column Container","icon_class":"icon-columns"},"uniqElKey":"el_1570710194731"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>NOTES<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710260879"},{"index":3,"element":"textarea","attributes":{"name":"description","value":"","id":"","class":"","placeholder":"","rows":4,"cols":2},"settings":{"container_class":"","label":"Additional comments or questions:","admin_field_label":"","label_placement":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Text Area","icon_class":"icon-paragraph","template":"inputTextarea"},"uniqElKey":"el_1570710276122"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}},"stepsWrapper":{"stepStart":{"element":"step_start","attributes":{"id":"","class":""},"settings":{"progress_indicator":"","step_titles":[]},"editor_options":{"title":"Start Paging"}},"stepEnd":{"element":"step_end","attributes":{"id":"","class":""},"settings":{"prev_btn":{"type":"default","text":"Previous","img_url":""}},"editor_options":{"title":"End Paging"}}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline"}},"notifications":{"name":"Admin Notification Email","sendTo":{"type":"email","email":"{wp.admin_email}","field":"email","routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"[{inputs.names}] New Form Submission","message":"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
448 |
),
|
449 |
|
450 |
-
'pricing_survey'
|
451 |
'screenshot' => '',
|
452 |
'createable' => true,
|
453 |
'title' => 'Pricing Survey Form',
|
@@ -473,7 +483,7 @@ class Predefined extends Form
|
|
473 |
),
|
474 |
|
475 |
//form number : 116
|
476 |
-
'birthday_invitation_party'
|
477 |
'screenshot' => '',
|
478 |
'createable' => true,
|
479 |
'title' => 'Birthday invitation Party Form',
|
@@ -484,7 +494,7 @@ class Predefined extends Form
|
|
484 |
'json' => '[{"id":"116","title":"Birthday invitation Party Form","form":{"fields":[{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<h2 style=\"color: #3a7ec2; text-align: center;\">Join Birthday Party\u00a0<\/h2>\n<p><img class=\"alignnone\" src=\"https:\/\/www.sweetfrog.com\/assets\/img\/party\/birthdayParty.png\" \/><\/p>\n<p> <\/p>\n<p style=\"text-align: center;\"><span style=\"color: #3e48ab;\"><strong>Date : December<\/strong> 05, 2019\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0<strong>Time: <\/strong>12:00 am\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <strong>Address : 3491 Henry Ford Avenue, Tulsa, OK, Oklahoma, 74120<\/strong><\/span><\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570707016847"},{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Name","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570707130166"},{"index":30,"element":"phone","attributes":{"name":"phone","class":"","value":"","type":"tel","placeholder":""},"settings":{"container_class":"","placeholder":"","int_tel_number":"with_extended_validation","label":"Phone","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":false,"message":"This field is required"},"valid_phone_number":{"value":false,"message":"Phone number is not valid"}},"conditional_logics":[]},"editor_options":{"title":"Phone Field","icon_class":"el-icon-phone-outline","template":"inputText"},"uniqElKey":"el_1570707183830"},{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":false,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[]},"editor_options":{"title":"Email Address","icon_class":"icon-envelope-o","template":"inputText"},"uniqElKey":"el_1570707134702"},{"index":10,"element":"select","attributes":{"name":"skills","value":[],"id":"","class":"","multiple":true},"settings":{"help_message":"","container_class":"","label":"Food type","admin_field_label":"","label_placement":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"Vegan":"Vegan","Non Vegan":"Non Vegan"},"editor_options":{"title":"Multiple Choice","icon_class":"icon-list-ul","element":"select","template":"select"},"uniqElKey":"el_1570707343485"},{"index":7,"element":"select","attributes":{"name":"dropdown","value":"","id":"","class":""},"settings":{"label":"How many people you will come with?","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"One":"One","Two":"Two","Three":"Three","Four":"Four","Five":"Five"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570707535809"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""},"normal_styles":{},"hover_styles":{},"current_state":"normal_styles"},"editor_options":{"title":"Submit Button"}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline"}},"notifications":{"name":"Admin Notification Email","sendTo":{"type":"email","email":"{wp.admin_email}","field":"email","routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"[{inputs.names}] New Form Submission","message":"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
485 |
),
|
486 |
|
487 |
-
'vehicle_inspection_form'
|
488 |
'screenshot' => '',
|
489 |
'createable' => true,
|
490 |
'title' => 'Vehicle Inspection Form',
|
@@ -496,7 +506,7 @@ class Predefined extends Form
|
|
496 |
),
|
497 |
|
498 |
//form number : 114
|
499 |
-
'workshop_registration_form'
|
500 |
'screenshot' => '',
|
501 |
'createable' => true,
|
502 |
'title' => 'Workshop Registration Form',
|
@@ -508,7 +518,7 @@ class Predefined extends Form
|
|
508 |
),
|
509 |
|
510 |
//form number : 113
|
511 |
-
'social_service_home_visit_form'
|
512 |
'screenshot' => '',
|
513 |
'createable' => true,
|
514 |
'title' => 'Social Service Home Visit Form',
|
@@ -521,7 +531,7 @@ class Predefined extends Form
|
|
521 |
),
|
522 |
|
523 |
//form number : 112
|
524 |
-
'it_service_request_form'
|
525 |
'screenshot' => '',
|
526 |
'createable' => true,
|
527 |
'title' => 'IT Service Request Form',
|
@@ -533,7 +543,7 @@ class Predefined extends Form
|
|
533 |
),
|
534 |
|
535 |
//form number : 111
|
536 |
-
'handicap_parking_request_form'
|
537 |
'screenshot' => '',
|
538 |
'createable' => true,
|
539 |
'title' => 'Handicap Parking Request Form',
|
@@ -546,7 +556,7 @@ class Predefined extends Form
|
|
546 |
),
|
547 |
|
548 |
//form number : 109
|
549 |
-
'sponsor_request_form'
|
550 |
'screenshot' => '',
|
551 |
'createable' => true,
|
552 |
'title' => 'Sponsor Request Form',
|
@@ -558,7 +568,7 @@ class Predefined extends Form
|
|
558 |
),
|
559 |
|
560 |
//form number : 107
|
561 |
-
'annual_vehicles_inspection_form'
|
562 |
'screenshot' => '',
|
563 |
'createable' => true,
|
564 |
'title' => 'Annual Vehicles Inspection Form',
|
@@ -570,7 +580,7 @@ class Predefined extends Form
|
|
570 |
),
|
571 |
|
572 |
//form number : 106
|
573 |
-
'finance_department_analysis_form'
|
574 |
'screenshot' => '',
|
575 |
'createable' => true,
|
576 |
'title' => 'Finance Department Analysis Form',
|
@@ -594,7 +604,7 @@ class Predefined extends Form
|
|
594 |
),
|
595 |
|
596 |
//form number : 103
|
597 |
-
'confidential_morbidity_form'
|
598 |
'screenshot' => '',
|
599 |
'createable' => true,
|
600 |
'title' => 'Confidential Morbidity Form',
|
@@ -608,7 +618,7 @@ class Predefined extends Form
|
|
608 |
),
|
609 |
|
610 |
//form number : 102
|
611 |
-
'complaint_form'
|
612 |
'screenshot' => '',
|
613 |
'createable' => true,
|
614 |
'title' => 'Complaint form',
|
@@ -620,7 +630,7 @@ class Predefined extends Form
|
|
620 |
),
|
621 |
|
622 |
//form number : 101
|
623 |
-
'charity_dinner_party_form'
|
624 |
'screenshot' => '',
|
625 |
'createable' => true,
|
626 |
'title' => 'Charity Dinner Party Form',
|
@@ -779,6 +789,18 @@ class Predefined extends Form
|
|
779 |
return apply_filters('fluentform_predefined_forms', $forms);
|
780 |
}
|
781 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
782 |
/**
|
783 |
* Fetch simplified information for all predefined forms
|
784 |
*/
|
@@ -801,16 +823,16 @@ class Predefined extends Form
|
|
801 |
$data[$item['category']] = [];
|
802 |
}
|
803 |
|
804 |
-
$itemClass = 'item_'.str_replace([' ', '&', '/'], '_', strtolower($item['category']));
|
805 |
-
|
806 |
-
if(empty($item['screenshot'])) {
|
807 |
$itemClass .= ' item_no_image';
|
808 |
} else {
|
809 |
$itemClass .= ' item_has_image';
|
810 |
}
|
811 |
|
812 |
$data[$item['category']][$key] = array(
|
813 |
-
'class'
|
814 |
'tags' => $item['tag'],
|
815 |
'title' => $item['title'],
|
816 |
'brief' => $item['brief'],
|
@@ -823,8 +845,8 @@ class Predefined extends Form
|
|
823 |
}
|
824 |
|
825 |
wp_send_json([
|
826 |
-
'forms'
|
827 |
-
'categories'
|
828 |
'predefined_dropDown_forms' => apply_filters('fluentform-predefined-dropDown-forms', [
|
829 |
'post' => [
|
830 |
'title' => 'Post Form',
|
@@ -841,48 +863,75 @@ class Predefined extends Form
|
|
841 |
{
|
842 |
$predefined = $this->request->get('predefined');
|
843 |
|
844 |
-
|
|
|
|
|
|
|
|
|
845 |
|
846 |
if ($predefinedForm) {
|
847 |
$predefinedForm = json_decode($predefinedForm['json'], true)[0];
|
|
|
|
|
|
|
848 |
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
if(isset($predefinedForm['form_fields'])) {
|
854 |
-
$this->formFields = json_encode($predefinedForm['form_fields']);
|
855 |
-
} else if(isset($predefinedForm['form'])) {
|
856 |
-
$this->formFields = json_encode($predefinedForm['form']);
|
857 |
-
}
|
858 |
|
859 |
-
if(isset($predefinedForm['formSettings'])) {
|
860 |
-
$this->defaultSettings = $predefinedForm['formSettings'];
|
861 |
-
}
|
862 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
863 |
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
|
880 |
-
|
|
|
881 |
}
|
882 |
|
883 |
-
|
884 |
-
|
885 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
886 |
}
|
887 |
|
888 |
}
|
25 |
'json' => '[{"id":"132","title":"Blank Form","form":{"fields":[],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline","asteriskPlacement": "asterisk-right"}},"notifications":{"name":"Admin Notification Email","sendTo":{"type":"email","email":"{wp.admin_email}","field":"email","routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"[{inputs.names}] New Form Submission","message":"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
26 |
),
|
27 |
|
28 |
+
'conversational' => array(
|
29 |
+
'screenshot' => App::publicUrl('img/forms/conversational.gif'),
|
30 |
+
'createable' => true,
|
31 |
+
'title' => 'Conversational Form',
|
32 |
+
'brief' => 'Create Smart form UI',
|
33 |
+
'category' => 'Basic',
|
34 |
+
'tags' => ['contact', 'typeform', 'conversational', 'form'],
|
35 |
+
'json' => '[{"id":"8","title":"Conversational Form","status":"published","appearance_settings":null,"form_fields":{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text","value":"","class":"","placeholder":"eg: John Doe","maxlength":""},"settings":{"container_class":"","label":"Your Name","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":true,"message":"This field is required"}},"conditional_logics":[],"is_unique":"no","unique_validation_message":"This value need to be unique."},"editor_options":{"title":"Simple Text","icon_class":"ff-edit-text","template":"inputText"},"style_pref":{"layout":"default","media":"'.$this->getRandomPhoto().'","brightness":0,"alt_text":"","media_x_position":50,"media_y_position":50},"uniqElKey":"el_16225264130200.4393750282723139"},{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"Email Address"},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"Please Provide your Email Address","admin_field_label":"Email Address","validation_rules":{"required":{"value":true,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]},"is_unique":"no","unique_validation_message":"Email address need to be unique."},"editor_options":{"title":"Email Address","icon_class":"ff-edit-email","template":"inputText"},"style_pref":{"layout":"default","media":"'.$this->getRandomPhoto().'","brightness":0,"alt_text":"","media_x_position":50,"media_y_position":50},"uniqElKey":"el_16225264372080.5731140635572141"},{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text_1","value":"","class":"","placeholder":"Query Subject","maxlength":""},"settings":{"container_class":"","label":"Subject","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[],"is_unique":"no","unique_validation_message":"This value need to be unique."},"editor_options":{"title":"Simple Text","icon_class":"ff-edit-text","template":"inputText"},"style_pref":{"layout":"default","media":"'.$this->getRandomPhoto().'","brightness":0,"alt_text":"","media_x_position":50,"media_y_position":50},"uniqElKey":"el_16225264620550.8688317001333026"},{"index":3,"element":"textarea","attributes":{"name":"description","value":"","id":"","class":"","placeholder":"Your Query","rows":3,"cols":2,"maxlength":""},"settings":{"container_class":"","label":"Your Query","admin_field_label":"Query","label_placement":"","help_message":"Please let us know details about your query","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Text Area","icon_class":"ff-edit-textarea","template":"inputTextarea"},"style_pref":{"layout":"default","media":"'.$this->getRandomPhoto().'","brightness":0,"alt_text":"","media_x_position":50,"media_y_position":50},"uniqElKey":"el_16225264839650.04799061605619115"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit","img_url":""},"normal_styles":{"backgroundColor":"#409EFF","borderColor":"#409EFF","color":"#ffffff","borderRadius":"","minWidth":""},"hover_styles":{"backgroundColor":"#ffffff","borderColor":"#409EFF","color":"#409EFF","borderRadius":"","minWidth":""},"current_state":"normal_styles"},"editor_options":{"title":"Submit Button"}}},"has_payment":"0","type":"form","conditions":null,"created_by":"1","created_at":"2021-06-01 05:25:54","updated_at":"2021-06-01 05:48:59","metas":[{"meta_key":"formSettings","value":"{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"<h2>Thank you for your message. We will get in touch with you shortly<\/h2>\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\",\"selectedDays\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"]},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let us hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}"},{"meta_key":"notifications","value":"{\"name\":\"Admin Notification Email\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\"}"},{"meta_key":"is_conversion_form","value":"yes"},{"meta_key":"step_data_persistency_status","value":"no"},{"meta_key":"_primary_email_field","value":"email"}]}]'
|
36 |
+
),
|
37 |
+
|
38 |
'basic_contact_form' => array(
|
39 |
'screenshot' => App::publicUrl('img/forms/contact_form.png'),
|
40 |
'createable' => true,
|
68 |
'json' => '[{"id":"4","title":"Support Form","form":{"fields":[{"index":2,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"","conditional_logics":[]},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":true,"message":"First Name field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"icon-user","template":"nameFields"},"uniqElKey":"el_1516797727681"},{"index":7,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"you@domain.com"},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","validation_rules":{"required":{"value":true,"message":"Email field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[]},"editor_options":{"title":"Email","icon_class":"icon-envelope-o","template":"inputText"},"uniqElKey":"el_1516797731343"},{"index":3,"element":"select","attributes":{"name":"department","value":"","id":"","class":""},"settings":{"label":"Department","help_message":"","container_class":"","label_placement":"","placeholder":"- Select Department -","validation_rules":{"required":{"value":true,"message":"Department field is required"}},"conditional_logics":[]},"options":{"Web Design":"Web Design","Web Development":"Web Development","WordPress Development":"WordPress Development","DevOps":"DevOps"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1516797735245"},{"index":1,"element":"input_text","attributes":{"type":"text","name":"subject","value":"","class":"","placeholder":"Type your subject"},"settings":{"container_class":"","label":"Subject","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":true,"message":"Subject field is required"}},"conditional_logics":[]},"editor_options":{"title":"Text Input","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1516797770161"},{"index":2,"element":"textarea","attributes":{"name":"description","value":"","id":"","class":"","placeholder":"","rows":4,"cols":2},"settings":{"container_class":"","label":"Description","label_placement":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Textarea","icon_class":"icon-paragraph","template":"inputTextarea"},"uniqElKey":"el_1516797774136"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline"}},"notifications":{"name":"Support Form Notification","sendTo":{"type":"email","email":"{wp.admin_email}","field":null,"routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"{inputs.subject}, Support Form","message":"<p>{all_data}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
69 |
),
|
70 |
|
71 |
+
'polling_form' => array(
|
72 |
'screenshot' => App::publicUrl('img/forms/polling_form.png'),
|
73 |
'createable' => true,
|
74 |
'title' => 'Polling Form',
|
79 |
),
|
80 |
|
81 |
//form number : 55
|
82 |
+
'product_order_form' => array(
|
83 |
'screenshot' => '',
|
84 |
'createable' => true,
|
85 |
'title' => 'Product Order Form',
|
91 |
),
|
92 |
|
93 |
//form number : 58
|
94 |
+
'online_service_order_form' => array(
|
95 |
'screenshot' => '',
|
96 |
'createable' => true,
|
97 |
'title' => 'Online Service Order Form',
|
98 |
'is_pro' => false,
|
99 |
'brief' => 'This form can be used to create an online service order. (Payment Module is required)',
|
100 |
'category' => "Product",
|
101 |
+
'tag' => ["Order", "service", "online help", "handyman", "payment"],
|
102 |
'json' => '[{"id":"204","title":"Service Order Form","status":"published","appearance_settings":null,"form_fields":{"fields":[{"index":0,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"Name","conditional_logics":[],"label_placement":"top"},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":"First Name","maxlength":""},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":true,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"Middle Name","required":false,"maxlength":""},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"Last Name","required":false,"maxlength":""},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"ff-edit-name","template":"nameFields"},"uniqElKey":"el_15924974034200.26712438122064186"},{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":"Email Address"},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":true,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[],"is_unique":"no","unique_validation_message":"Email address need to be unique."},"editor_options":{"title":"Email Address","icon_class":"ff-edit-email","template":"inputText"},"uniqElKey":"el_15924974402130.012591725433457768"},{"index":1,"element":"container","attributes":[],"settings":{"container_class":""},"columns":[{"fields":[{"index":8,"element":"multi_payment_component","attributes":{"type":"radio","name":"payment_input","value":""},"settings":{"container_class":"","label":"Choose Service","admin_field_label":"Product","label_placement":"","display_type":"","help_message":"","is_payment_field":"yes","pricing_options":[{"label":"Service Item 1 - $10\/hour","value":10,"image":""},{"label":"Service Item 2 - $19\/hour","value":"19"},{"label":"Service Item 3- $29\/hour","value":"29"}],"price_label":"Price:","enable_quantity":false,"enable_image_input":false,"is_element_lock":false,"layout_class":"","validation_rules":{"required":{"value":true,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Payment Field","icon_class":"ff-edit-shopping-cart","element":"input-radio","template":"inputMultiPayment"},"uniqElKey":"el_1592502076962"}]},{"fields":[{"index":6,"element":"item_quantity_component","attributes":{"type":"number","name":"item-quantity","value":"1","id":"","class":"","placeholder":"Hours","data-quantity_item":"yes"},"settings":{"container_class":"","is_payment_field":"yes","label":"How Many Hours?","admin_field_label":"Hours","label_placement":"","help_message":"","number_step":"","prefix_label":"","suffix_label":"","target_product":"payment_input","validation_rules":{"required":{"value":true,"message":"This field is required"},"numeric":{"value":true,"message":"This field must contain numeric value"},"min":{"value":"1","message":"Minimum value is "},"max":{"value":"","message":"Maximum value is "}},"conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Item Quantity","icon_class":"ff-edit-keyboard-o","template":"inputText"},"uniqElKey":"el_15925020855320.9400112640060003"}]}],"editor_options":{"title":"Two Column Container","icon_class":"ff-edit-column-2"},"uniqElKey":"el_15925020745170.6041197871212416"},{"index":10,"element":"payment_method","attributes":{"name":"payment_method","type":"radio","value":""},"settings":{"container_class":"","label":"Choose Payment Method","default_method":"","label_placement":"","help_message":"","payment_methods":{"stripe":{"title":"Credit\/Debit Card (Stripe)","enabled":"yes","method_value":"stripe","settings":{"option_label":{"type":"text","template":"inputText","value":"Pay with Card (Stripe)","label":"Method Label"},"require_billing_info":{"type":"checkbox","template":"inputYesNoCheckbox","value":"no","label":"Require Billing info"},"require_shipping_info":{"type":"checkbox","template":"inputYesNoCheckbox","value":"no","label":"Collect Shipping Info"}}},"paypal":{"title":"PayPal","enabled":"yes","method_value":"paypal","settings":{"option_label":{"type":"text","template":"inputText","value":"Pay with PayPal","label":"Method Label"},"require_shipping_address":{"type":"checkbox","template":"inputYesNoCheckbox","value":"no","label":"Require Shipping Address"}}},"test":{"title":"Offline Payment","enabled":"yes","method_value":"test","settings":{"option_label":{"type":"text","template":"inputText","value":"Test Payment","label":"Method Label"}}}},"admin_field_label":"","conditional_logics":[]},"editor_options":{"title":"Payment Method Field","icon_class":"ff-edit-credit-card","template":"inputPaymentMethods"},"uniqElKey":"el_15924975611200.8035560583323771"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Purchase {payment_total}","img_url":""},"normal_styles":{"backgroundColor":"#409EFF","borderColor":"#409EFF","color":"#ffffff","borderRadius":"","minWidth":""},"hover_styles":{"backgroundColor":"#ffffff","borderColor":"#409EFF","color":"#409EFF","borderRadius":"","minWidth":""},"current_state":"normal_styles"},"editor_options":{"title":"Submit Button"}}},"has_payment":"1","type":"form","conditions":null,"created_by":"1","created_at":"2020-06-18 23:40:30","updated_at":"2020-06-18 23:44:57","metas":[{"meta_key":"formSettings","value":"{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"<p>Thank you for your order<\/p> <p>{payment.receipt}<\/p>\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}"},{"meta_key":"notifications","value":"{\"name\":\"New Order Notification to Admin\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<h4>Order Items<\/h4> <p>{payment.order_items}<\/p> <h4>Other Data:<\/h4> <p>{all_data}<\/p> <p>This form submitted at: {embed_post.permalink}<\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\",\"attachments\":[],\"pdf_attachments\":[]}"},{"meta_key":"step_data_persistency_status","value":"no"},{"meta_key":"_payment_settings","value":"{\"currency\":\"USD\",\"push_meta_to_stripe\":\"no\",\"receipt_email\":\"email\",\"transaction_type\":\"product\",\"stripe_checkout_methods\":[\"card\"],\"stripe_meta_data\":[{\"item_value\":\"\",\"label\":\"\"}]}"},{"meta_key":"notifications","value":"{\"name\":\"Email To Customer\",\"sendTo\":{\"type\":\"field\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] Your Order Receipt\",\"message\":\"<p>{payment.receipt}<\/p> <p>Thank you<\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\",\"attachments\":[],\"pdf_attachments\":[]}"},{"meta_key":"advancedValidationSettings","value":"{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":\"\",\"operator\":\"=\",\"value\":\"\"}],\"error_message\":\"\",\"validation_type\":\"fail_on_condition_met\"}"},{"meta_key":"report_data_migrated","value":"\"yes\""}]}]'
|
103 |
),
|
104 |
|
105 |
//form number : 60
|
106 |
+
'payment_donation_form' => array(
|
107 |
'screenshot' => '',
|
108 |
'createable' => true,
|
109 |
'title' => 'Online Donation Form',
|
116 |
|
117 |
|
118 |
//form number : 61
|
119 |
+
'order_bump_form' => array(
|
120 |
'screenshot' => '',
|
121 |
'createable' => true,
|
122 |
'title' => 'Order Bump Example Form',
|
128 |
),
|
129 |
|
130 |
//form number : 62
|
131 |
+
'student_survey_form' => array(
|
132 |
'screenshot' => '',
|
133 |
'createable' => true,
|
134 |
'title' => 'Student Survey Form',
|
140 |
),
|
141 |
|
142 |
//form number : 63
|
143 |
+
'classroom_observation_form' => array(
|
144 |
'screenshot' => '',
|
145 |
'createable' => true,
|
146 |
'title' => 'Classroom Observation Form',
|
152 |
),
|
153 |
|
154 |
//form number : 64
|
155 |
+
'client_satisfaction_survey_form' => array(
|
156 |
'screenshot' => '',
|
157 |
'createable' => true,
|
158 |
'title' => 'Client Satisfaction Survey Form',
|
164 |
),
|
165 |
|
166 |
//form number : 67
|
167 |
+
'customer_complaint_form' => array(
|
168 |
'screenshot' => '',
|
169 |
'createable' => true,
|
170 |
'title' => 'Customer Complaint Form',
|
177 |
),
|
178 |
|
179 |
//form number : 68
|
180 |
+
'course_evaluation_survey_form' => array(
|
181 |
'screenshot' => '',
|
182 |
'createable' => true,
|
183 |
'title' => 'Course Evaluation Survey form',
|
190 |
),
|
191 |
|
192 |
//form number : 70
|
193 |
+
'market_research_survey_form' => array(
|
194 |
'screenshot' => '',
|
195 |
'createable' => true,
|
196 |
'title' => 'Market Research Survey Form',
|
215 |
),
|
216 |
|
217 |
//form number : 72
|
218 |
+
'university_enrollment_form' => array(
|
219 |
'screenshot' => '',
|
220 |
'createable' => true,
|
221 |
'title' => 'University Enrollment Form',
|
228 |
),
|
229 |
|
230 |
//form number : 74
|
231 |
+
'volunteer_signup_form' => array(
|
232 |
'screenshot' => '',
|
233 |
'createable' => true,
|
234 |
'title' => 'Volunteer sign up form',
|
240 |
),
|
241 |
|
242 |
//form number : 76
|
243 |
+
'donation_form' => array(
|
244 |
'screenshot' => '',
|
245 |
'createable' => true,
|
246 |
'title' => 'Donation Form',
|
252 |
),
|
253 |
|
254 |
//form number : 78
|
255 |
+
'graphic_designer_contact_form' => array(
|
256 |
'screenshot' => '',
|
257 |
'createable' => true,
|
258 |
'title' => 'Graphic Designer Contact Form',
|
264 |
),
|
265 |
|
266 |
//form number : 79
|
267 |
+
'multi_file_upload_form' => array(
|
268 |
'screenshot' => '',
|
269 |
'createable' => true,
|
270 |
'title' => 'Multi file upload form',
|
276 |
),
|
277 |
|
278 |
//form number : 81
|
279 |
+
'highschool_transcript_request_from' => array(
|
280 |
'screenshot' => '',
|
281 |
'createable' => true,
|
282 |
'title' => 'High School Transcript Request From',
|
288 |
),
|
289 |
|
290 |
//form number : 82
|
291 |
+
'partnership_application_form' => array(
|
292 |
'screenshot' => '',
|
293 |
'createable' => true,
|
294 |
'title' => 'Partnership application form',
|
301 |
),
|
302 |
|
303 |
//form number : 83
|
304 |
+
'employee_evaluation_form' => array(
|
305 |
'screenshot' => '',
|
306 |
'createable' => true,
|
307 |
'title' => 'Employee Evaluation Form',
|
314 |
),
|
315 |
|
316 |
//form number : 85
|
317 |
+
'party_invite_form' => array(
|
318 |
'screenshot' => '',
|
319 |
'createable' => true,
|
320 |
'title' => 'Party Invite Form',
|
326 |
),
|
327 |
|
328 |
//form number : 87
|
329 |
+
'software_survey_form' => array(
|
330 |
'screenshot' => '',
|
331 |
'createable' => true,
|
332 |
'title' => 'Software Survey Form',
|
338 |
),
|
339 |
|
340 |
//form number : 88
|
341 |
+
'hardware_request_form' => array(
|
342 |
'screenshot' => '',
|
343 |
'createable' => true,
|
344 |
'title' => 'Hardware Request Form',
|
362 |
),
|
363 |
|
364 |
//form number : 92
|
365 |
+
'finance_application_form' => array(
|
366 |
'screenshot' => '',
|
367 |
'createable' => true,
|
368 |
'title' => 'Finance Application Form',
|
374 |
),
|
375 |
|
376 |
//form number : 94
|
377 |
+
'blood_donation_form' => array(
|
378 |
'screenshot' => '',
|
379 |
'createable' => true,
|
380 |
'title' => 'Blood Donation Form',
|
386 |
),
|
387 |
|
388 |
//form number : 95
|
389 |
+
'room_booking_form' => array(
|
390 |
'screenshot' => '',
|
391 |
'createable' => true,
|
392 |
'title' => 'Room Booking Form',
|
398 |
),
|
399 |
|
400 |
//form number : 96
|
401 |
+
'marriage_gift_registration' => array(
|
402 |
'screenshot' => '',
|
403 |
'createable' => true,
|
404 |
'title' => 'Marriage Gift Registration',
|
410 |
),
|
411 |
|
412 |
//form number : 97
|
413 |
+
'accident_report_form' => array(
|
414 |
'screenshot' => '',
|
415 |
'createable' => true,
|
416 |
'title' => 'Accident Report Form',
|
422 |
),
|
423 |
|
424 |
//form number : 98
|
425 |
+
'bug_report_form' => array(
|
426 |
'screenshot' => '',
|
427 |
'createable' => true,
|
428 |
'title' => 'Bug Report From',
|
434 |
),
|
435 |
|
436 |
//form number : 100
|
437 |
+
'check_request_form' => array(
|
438 |
'screenshot' => '',
|
439 |
'createable' => true,
|
440 |
'title' => 'Check Request Form',
|
446 |
),
|
447 |
|
448 |
//form number : 120
|
449 |
+
'quote_request_form' => array(
|
450 |
'screenshot' => '',
|
451 |
'createable' => true,
|
452 |
'title' => 'Quote Request Form',
|
457 |
'json' => '[{"id":"120","title":"Quote request (final)","form":{"fields":[{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"REQUEST FOR QUOTE","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709716273"},{"index":13,"element":"input_date","attributes":{"type":"text","name":"datetime","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Date","admin_field_label":"","label_placement":"","date_format":"m\/d\/Y","help_message":"","is_time_enabled":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Time & Date","icon_class":"icon-calendar-o","template":"inputText"},"uniqElKey":"el_1570709737257"},{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709776789"},{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"CONTACT INFORMATION","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709794267"},{"index":0,"element":"input_name","attributes":{"name":"names","data-type":"name-element"},"settings":{"container_class":"","admin_field_label":"Name","conditional_logics":[]},"fields":{"first_name":{"element":"input_text","attributes":{"type":"text","name":"first_name","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"First Name","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"middle_name":{"element":"input_text","attributes":{"type":"text","name":"middle_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Middle Name","help_message":"","error_message":"","visible":false,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"last_name":{"element":"input_text","attributes":{"type":"text","name":"last_name","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Last Name","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}}},"editor_options":{"title":"Name Fields","element":"name-fields","icon_class":"icon-user","template":"nameFields"},"uniqElKey":"el_1570709814795"},{"index":4,"element":"address","attributes":{"id":"","class":"","name":"address1","data-type":"address-element"},"settings":{"label":"Address","admin_field_label":"","conditional_logics":[]},"fields":{"address_line_1":{"element":"input_text","attributes":{"type":"text","name":"address_line_1","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Address Line 1","admin_field_label":"","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"address_line_2":{"element":"input_text","attributes":{"type":"text","name":"address_line_2","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Address Line 2","admin_field_label":"","help_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"city":{"element":"input_text","attributes":{"type":"text","name":"city","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"City","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"state":{"element":"input_text","attributes":{"type":"text","name":"state","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"State","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"zip":{"element":"input_text","attributes":{"type":"text","name":"zip","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Zip Code","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"template":"inputText"}},"country":{"element":"select_country","attributes":{"name":"country","value":"","id":"","class":"","placeholder":"","required":false},"settings":{"container_class":"","label":"Country","admin_field_label":"","help_message":"","error_message":"","visible":true,"validation_rules":{"required":{"value":false,"message":"This field is required"}},"country_list":{"active_list":"all","visible_list":[],"hidden_list":[]},"conditional_logics":[]},"options":{"BD":"Bangladesh","US":"US of America"},"editor_options":{"title":"Country List","element":"country-list","icon_class":"icon-text-width","template":"selectCountry"}}},"editor_options":{"title":"Address Fields","element":"address-fields","icon_class":"icon-credit-card","template":"addressFields"},"uniqElKey":"el_1570709821047"},{"index":7,"element":"form_step","attributes":{"id":"","class":""},"settings":{"prev_btn":{"type":"default","text":"Previous","img_url":""},"next_btn":{"type":"default","text":"Next","img_url":""}},"editor_options":{"title":"Form Step","icon_class":"ff-edit-step","template":"formStep"},"uniqElKey":"el_1570860545019"},{"index":1,"element":"section_break","attributes":{"id":"","class":""},"settings":{"label":"PRODUCTS","description":"","align":"left","conditional_logics":[]},"editor_options":{"title":"Section Break","icon_class":"icon-puzzle-piece","template":"sectionBreak"},"uniqElKey":"el_1570709834544"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>ITEM 1<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710083917"},{"index":1,"element":"container","attributes":[],"settings":[],"columns":[{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Product Name:","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570710076041"}]},{"fields":[{"index":7,"element":"select","attributes":{"name":"dropdown","value":"","id":"","class":""},"settings":{"label":"Quantity","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570709979534"}]}],"editor_options":{"title":"Two Column Container","icon_class":"icon-columns"},"uniqElKey":"el_1570709935743"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>ITEM 2<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710203341"},{"index":1,"element":"container","attributes":[],"settings":[],"columns":[{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text_4","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Product Name:","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570710076041"}]},{"fields":[{"index":7,"element":"select","attributes":{"name":"dropdown_4","value":"","id":"","class":""},"settings":{"label":"Quantity","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570709979534"}]}],"editor_options":{"title":"Two Column Container","icon_class":"icon-columns"},"uniqElKey":"el_1570710195267"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>ITEM 3<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710208172"},{"index":1,"element":"container","attributes":[],"settings":[],"columns":[{"fields":[{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text_3","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Product Name:","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570710076041"}]},{"fields":[{"index":7,"element":"select","attributes":{"name":"dropdown_3","value":"","id":"","class":""},"settings":{"label":"Quantity","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570709979534"}]}],"editor_options":{"title":"Two Column Container","icon_class":"icon-columns"},"uniqElKey":"el_1570710194731"},{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<p>NOTES<\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570710260879"},{"index":3,"element":"textarea","attributes":{"name":"description","value":"","id":"","class":"","placeholder":"","rows":4,"cols":2},"settings":{"container_class":"","label":"Additional comments or questions:","admin_field_label":"","label_placement":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Text Area","icon_class":"icon-paragraph","template":"inputTextarea"},"uniqElKey":"el_1570710276122"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""}},"editor_options":{"title":"Submit Button"}},"stepsWrapper":{"stepStart":{"element":"step_start","attributes":{"id":"","class":""},"settings":{"progress_indicator":"","step_titles":[]},"editor_options":{"title":"Start Paging"}},"stepEnd":{"element":"step_end","attributes":{"id":"","class":""},"settings":{"prev_btn":{"type":"default","text":"Previous","img_url":""}},"editor_options":{"title":"End Paging"}}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline"}},"notifications":{"name":"Admin Notification Email","sendTo":{"type":"email","email":"{wp.admin_email}","field":"email","routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"[{inputs.names}] New Form Submission","message":"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
458 |
),
|
459 |
|
460 |
+
'pricing_survey' => array(
|
461 |
'screenshot' => '',
|
462 |
'createable' => true,
|
463 |
'title' => 'Pricing Survey Form',
|
483 |
),
|
484 |
|
485 |
//form number : 116
|
486 |
+
'birthday_invitation_party' => array(
|
487 |
'screenshot' => '',
|
488 |
'createable' => true,
|
489 |
'title' => 'Birthday invitation Party Form',
|
494 |
'json' => '[{"id":"116","title":"Birthday invitation Party Form","form":{"fields":[{"index":3,"element":"custom_html","attributes":[],"settings":{"html_codes":"<h2 style=\"color: #3a7ec2; text-align: center;\">Join Birthday Party\u00a0<\/h2>\n<p><img class=\"alignnone\" src=\"https:\/\/www.sweetfrog.com\/assets\/img\/party\/birthdayParty.png\" \/><\/p>\n<p> <\/p>\n<p style=\"text-align: center;\"><span style=\"color: #3e48ab;\"><strong>Date : December<\/strong> 05, 2019\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0<strong>Time: <\/strong>12:00 am\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <strong>Address : 3491 Henry Ford Avenue, Tulsa, OK, Oklahoma, 74120<\/strong><\/span><\/p>","conditional_logics":{"type":"any","status":false,"conditions":[{"field":"","value":"","operator":""}]}},"editor_options":{"title":"Custom HTML","icon_class":"icon-code","template":"customHTML"},"uniqElKey":"el_1570707016847"},{"index":2,"element":"input_text","attributes":{"type":"text","name":"input_text","value":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Name","label_placement":"","admin_field_label":"","help_message":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"editor_options":{"title":"Simple Text","icon_class":"icon-text-width","template":"inputText"},"uniqElKey":"el_1570707130166"},{"index":30,"element":"phone","attributes":{"name":"phone","class":"","value":"","type":"tel","placeholder":""},"settings":{"container_class":"","placeholder":"","int_tel_number":"with_extended_validation","label":"Phone","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":false,"message":"This field is required"},"valid_phone_number":{"value":false,"message":"Phone number is not valid"}},"conditional_logics":[]},"editor_options":{"title":"Phone Field","icon_class":"el-icon-phone-outline","template":"inputText"},"uniqElKey":"el_1570707183830"},{"index":1,"element":"input_email","attributes":{"type":"email","name":"email","value":"","id":"","class":"","placeholder":""},"settings":{"container_class":"","label":"Email","label_placement":"","help_message":"","admin_field_label":"","validation_rules":{"required":{"value":false,"message":"This field is required"},"email":{"value":true,"message":"This field must contain a valid email"}},"conditional_logics":[]},"editor_options":{"title":"Email Address","icon_class":"icon-envelope-o","template":"inputText"},"uniqElKey":"el_1570707134702"},{"index":10,"element":"select","attributes":{"name":"skills","value":[],"id":"","class":"","multiple":true},"settings":{"help_message":"","container_class":"","label":"Food type","admin_field_label":"","label_placement":"","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"Vegan":"Vegan","Non Vegan":"Non Vegan"},"editor_options":{"title":"Multiple Choice","icon_class":"icon-list-ul","element":"select","template":"select"},"uniqElKey":"el_1570707343485"},{"index":7,"element":"select","attributes":{"name":"dropdown","value":"","id":"","class":""},"settings":{"label":"How many people you will come with?","admin_field_label":"","help_message":"","container_class":"","label_placement":"","placeholder":"- Select -","validation_rules":{"required":{"value":false,"message":"This field is required"}},"conditional_logics":[]},"options":{"One":"One","Two":"Two","Three":"Three","Four":"Four","Five":"Five"},"editor_options":{"title":"Dropdown","icon_class":"icon-caret-square-o-down","element":"select","template":"select"},"uniqElKey":"el_1570707535809"}],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit Form","img_url":""},"normal_styles":{},"hover_styles":{},"current_state":"normal_styles"},"editor_options":{"title":"Submit Button"}}},"formSettings":{"confirmation":{"redirectTo":"samePage","messageToShow":"Thank you for your message. We will get in touch with you shortly","customPage":null,"samePageFormBehavior":"hide_form","customUrl":null},"restrictions":{"limitNumberOfEntries":{"enabled":false,"numberOfEntries":null,"period":"total","limitReachedMsg":"Maximum number of entries exceeded."},"scheduleForm":{"enabled":false,"start":null,"end":null,"pendingMsg":"Form submission is not started yet.","expiredMsg":"Form submission is now closed."},"requireLogin":{"enabled":false,"requireLoginMsg":"You must be logged in to submit the form."},"denyEmptySubmission":{"enabled":false,"message":"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say."}},"layout":{"labelPlacement":"top","helpMessagePlacement":"with_label","errorMessagePlacement":"inline"}},"notifications":{"name":"Admin Notification Email","sendTo":{"type":"email","email":"{wp.admin_email}","field":"email","routing":[{"email":null,"field":null,"operator":"=","value":null}]},"fromName":"","fromEmail":"","replyTo":"","bcc":"","subject":"[{inputs.names}] New Form Submission","message":"<p>{all_data}<\/p>\n<p>This form submitted at: {embed_post.permalink}<\/p>","conditionals":{"status":false,"type":"all","conditions":[{"field":null,"operator":"=","value":null}]},"enabled":false,"email_template":""}}]'
|
495 |
),
|
496 |
|
497 |
+
'vehicle_inspection_form' => array(
|
498 |
'screenshot' => '',
|
499 |
'createable' => true,
|
500 |
'title' => 'Vehicle Inspection Form',
|
506 |
),
|
507 |
|
508 |
//form number : 114
|
509 |
+
'workshop_registration_form' => array(
|
510 |
'screenshot' => '',
|
511 |
'createable' => true,
|
512 |
'title' => 'Workshop Registration Form',
|
518 |
),
|
519 |
|
520 |
//form number : 113
|
521 |
+
'social_service_home_visit_form' => array(
|
522 |
'screenshot' => '',
|
523 |
'createable' => true,
|
524 |
'title' => 'Social Service Home Visit Form',
|
531 |
),
|
532 |
|
533 |
//form number : 112
|
534 |
+
'it_service_request_form' => array(
|
535 |
'screenshot' => '',
|
536 |
'createable' => true,
|
537 |
'title' => 'IT Service Request Form',
|
543 |
),
|
544 |
|
545 |
//form number : 111
|
546 |
+
'handicap_parking_request_form' => array(
|
547 |
'screenshot' => '',
|
548 |
'createable' => true,
|
549 |
'title' => 'Handicap Parking Request Form',
|
556 |
),
|
557 |
|
558 |
//form number : 109
|
559 |
+
'sponsor_request_form' => array(
|
560 |
'screenshot' => '',
|
561 |
'createable' => true,
|
562 |
'title' => 'Sponsor Request Form',
|
568 |
),
|
569 |
|
570 |
//form number : 107
|
571 |
+
'annual_vehicles_inspection_form' => array(
|
572 |
'screenshot' => '',
|
573 |
'createable' => true,
|
574 |
'title' => 'Annual Vehicles Inspection Form',
|
580 |
),
|
581 |
|
582 |
//form number : 106
|
583 |
+
'finance_department_analysis_form' => array(
|
584 |
'screenshot' => '',
|
585 |
'createable' => true,
|
586 |
'title' => 'Finance Department Analysis Form',
|
604 |
),
|
605 |
|
606 |
//form number : 103
|
607 |
+
'confidential_morbidity_form' => array(
|
608 |
'screenshot' => '',
|
609 |
'createable' => true,
|
610 |
'title' => 'Confidential Morbidity Form',
|
618 |
),
|
619 |
|
620 |
//form number : 102
|
621 |
+
'complaint_form' => array(
|
622 |
'screenshot' => '',
|
623 |
'createable' => true,
|
624 |
'title' => 'Complaint form',
|
630 |
),
|
631 |
|
632 |
//form number : 101
|
633 |
+
'charity_dinner_party_form' => array(
|
634 |
'screenshot' => '',
|
635 |
'createable' => true,
|
636 |
'title' => 'Charity Dinner Party Form',
|
789 |
return apply_filters('fluentform_predefined_forms', $forms);
|
790 |
}
|
791 |
|
792 |
+
private function getBlankConversationalForm()
|
793 |
+
{
|
794 |
+
return [
|
795 |
+
'screenshot' => '',
|
796 |
+
'createable' => true,
|
797 |
+
'title' => 'Conversational Form',
|
798 |
+
'brief' => 'Create Smart form UI',
|
799 |
+
'category' => 'Basic',
|
800 |
+
'tags' => ['contact', 'typeform', 'conversational', 'form'],
|
801 |
+
'json' => '[{"id":"12","title":"Conversational Form","status":"published","appearance_settings":null,"form_fields":{"fields":[],"submitButton":{"uniqElKey":"el_1524065200616","element":"button","attributes":{"type":"submit","class":""},"settings":{"align":"left","button_style":"default","container_class":"","help_message":"","background_color":"#409EFF","button_size":"md","color":"#ffffff","button_ui":{"type":"default","text":"Submit","img_url":""},"normal_styles":{"backgroundColor":"#409EFF","borderColor":"#409EFF","color":"#ffffff","borderRadius":"","minWidth":""},"hover_styles":{"backgroundColor":"#ffffff","borderColor":"#409EFF","color":"#409EFF","borderRadius":"","minWidth":""},"current_state":"normal_styles"},"editor_options":{"title":"Submit Button"}}},"has_payment":"0","type":"form","conditions":null,"created_by":"1","created_at":"2021-06-01 06:04:42","updated_at":"2021-06-01 06:05:49","metas":[{"meta_key":"formSettings","value":"{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"<h2>Thank you for your message. We will get in touch with you shortly</h2>\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\",\"selectedDays\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"]},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let us hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}"},{"meta_key":"notifications","value":"{\"name\":\"Admin Notification Email\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<p>{all_data}</p> <p>This form submitted at: {embed_post.permalink}</p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\"}"},{"meta_key":"is_conversion_form","value":"yes"}]}]'];
|
802 |
+
}
|
803 |
+
|
804 |
/**
|
805 |
* Fetch simplified information for all predefined forms
|
806 |
*/
|
823 |
$data[$item['category']] = [];
|
824 |
}
|
825 |
|
826 |
+
$itemClass = 'item_' . str_replace([' ', '&', '/'], '_', strtolower($item['category']));
|
827 |
+
|
828 |
+
if (empty($item['screenshot'])) {
|
829 |
$itemClass .= ' item_no_image';
|
830 |
} else {
|
831 |
$itemClass .= ' item_has_image';
|
832 |
}
|
833 |
|
834 |
$data[$item['category']][$key] = array(
|
835 |
+
'class' => $itemClass,
|
836 |
'tags' => $item['tag'],
|
837 |
'title' => $item['title'],
|
838 |
'brief' => $item['brief'],
|
845 |
}
|
846 |
|
847 |
wp_send_json([
|
848 |
+
'forms' => $data,
|
849 |
+
'categories' => array_keys($data),
|
850 |
'predefined_dropDown_forms' => apply_filters('fluentform-predefined-dropDown-forms', [
|
851 |
'post' => [
|
852 |
'title' => 'Post Form',
|
863 |
{
|
864 |
$predefined = $this->request->get('predefined');
|
865 |
|
866 |
+
if ($this->request->get('type') == 'blank_conversational') {
|
867 |
+
$predefinedForm = $this->getBlankConversationalForm();
|
868 |
+
} else {
|
869 |
+
$predefinedForm = ArrayHelper::get($this->getPredefinedForms(), $predefined);
|
870 |
+
}
|
871 |
|
872 |
if ($predefinedForm) {
|
873 |
$predefinedForm = json_decode($predefinedForm['json'], true)[0];
|
874 |
+
$returnData = $this->createForm($predefinedForm);
|
875 |
+
wp_send_json_success($returnData, 200);
|
876 |
+
}
|
877 |
|
878 |
+
wp_send_json_error([
|
879 |
+
'message' => __("The selected template couldn't be found.", 'fluentform')
|
880 |
+
], 422);
|
881 |
+
}
|
|
|
|
|
|
|
|
|
|
|
882 |
|
|
|
|
|
|
|
883 |
|
884 |
+
public function createForm($predefinedForm)
|
885 |
+
{
|
886 |
+
$this->request->merge([
|
887 |
+
'title' => $this->request->get('title', $predefinedForm['title'])
|
888 |
+
]);
|
889 |
+
|
890 |
+
if (isset($predefinedForm['form_fields'])) {
|
891 |
+
$this->formFields = json_encode($predefinedForm['form_fields']);
|
892 |
+
} else if (isset($predefinedForm['form'])) {
|
893 |
+
$this->formFields = json_encode($predefinedForm['form']);
|
894 |
+
}
|
895 |
|
896 |
+
if (isset($predefinedForm['formSettings'])) {
|
897 |
+
$this->defaultSettings = $predefinedForm['formSettings'];
|
898 |
+
}
|
899 |
|
900 |
+
if (isset($predefinedForm['notifications'])) {
|
901 |
+
$this->defaultNotifications = $predefinedForm['notifications'];
|
902 |
+
}
|
903 |
|
904 |
+
if (isset($predefinedForm['metas'])) {
|
905 |
+
$this->metas = $predefinedForm['metas'];
|
906 |
+
}
|
907 |
|
908 |
+
if (!empty($predefinedForm['has_payment'])) {
|
909 |
+
$this->hasPayment = 1;
|
910 |
+
}
|
911 |
|
912 |
+
if (!empty($predefinedForm['type'])) {
|
913 |
+
$this->formType = $predefinedForm['type'];
|
914 |
}
|
915 |
|
916 |
+
return $this->store(false);
|
917 |
+
}
|
918 |
+
|
919 |
+
private function getRandomPhoto()
|
920 |
+
{
|
921 |
+
$photos = [
|
922 |
+
'demo_1.jpg',
|
923 |
+
'demo_2.jpg',
|
924 |
+
'demo_3.jpg',
|
925 |
+
'demo_4.jpg',
|
926 |
+
'demo_5.jpg'
|
927 |
+
];
|
928 |
+
|
929 |
+
$selected = array_rand($photos, 1);
|
930 |
+
|
931 |
+
$photoName = $photos[$selected];
|
932 |
+
|
933 |
+
return fluentformMix('img/conversational/'.$photoName);
|
934 |
+
|
935 |
}
|
936 |
|
937 |
}
|
app/Modules/Form/Settings/FormCssJs.php
CHANGED
@@ -40,6 +40,37 @@ class FormCssJs
|
|
40 |
}
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
public function addCss($formId, $css, $cssId = 'fluentform_custom_css')
|
44 |
{
|
45 |
if ($css) {
|
40 |
}
|
41 |
}
|
42 |
|
43 |
+
public function getCss($formId)
|
44 |
+
{
|
45 |
+
$cssMeta = wpFluent()->table('fluentform_form_meta')
|
46 |
+
->where('form_id', $formId)
|
47 |
+
->where('meta_key', '_custom_form_css')
|
48 |
+
->first();
|
49 |
+
|
50 |
+
if(!$cssMeta || !$cssMeta->value) {
|
51 |
+
return '';
|
52 |
+
}
|
53 |
+
|
54 |
+
$css = $cssMeta->value;
|
55 |
+
$css = str_replace('{form_id}', $formId, $css);
|
56 |
+
$css = str_replace('FF_ID', $formId, $css);
|
57 |
+
return $this->escCss($css);
|
58 |
+
}
|
59 |
+
|
60 |
+
public function getJs($formId)
|
61 |
+
{
|
62 |
+
$jsMeta = wpFluent()->table('fluentform_form_meta')
|
63 |
+
->where('form_id', $formId)
|
64 |
+
->where('meta_key', '_custom_form_js')
|
65 |
+
->first();
|
66 |
+
|
67 |
+
if(!$jsMeta || !$jsMeta->value) {
|
68 |
+
return '';
|
69 |
+
}
|
70 |
+
|
71 |
+
return $jsMeta->value;
|
72 |
+
}
|
73 |
+
|
74 |
public function addCss($formId, $css, $cssId = 'fluentform_custom_css')
|
75 |
{
|
76 |
if ($css) {
|
app/Modules/Registerer/Menu.php
CHANGED
@@ -434,7 +434,6 @@ class Menu
|
|
434 |
private function renderFormInnerPages()
|
435 |
{
|
436 |
$form_id = intval($_GET['form_id']);
|
437 |
-
|
438 |
$form = wpFluent()->table('fluentform_forms')->find($form_id);
|
439 |
|
440 |
if (!$form) {
|
@@ -465,6 +464,7 @@ class Menu
|
|
465 |
|
466 |
$formAdminMenus = apply_filters('fluentform_form_admin_menu', $formAdminMenus, $form_id, $form);
|
467 |
|
|
|
468 |
$route = sanitize_key($_GET['route']);
|
469 |
|
470 |
View::render('admin.form.form_wrapper', array(
|
@@ -566,7 +566,8 @@ class Menu
|
|
566 |
'hasPDF' => defined('FLUENTFORM_PDF_VERSION'),
|
567 |
'hasFluentCRM' => defined('FLUENTCRM'),
|
568 |
'upgrade_url' => fluentform_upgrade_url(),
|
569 |
-
'ace_path_url' => $this->app->publicUrl('libs/ace')
|
|
|
570 |
));
|
571 |
|
572 |
View::render('admin.form.settings', array(
|
@@ -684,11 +685,15 @@ class Menu
|
|
684 |
|
685 |
$searchTags = apply_filters( 'fluent_editor_element_search_tags', $searchTags, $form );
|
686 |
|
|
|
|
|
|
|
|
|
687 |
wp_localize_script('fluentform_editor_script', 'FluentFormApp', apply_filters('fluentform_editor_vars', array(
|
688 |
'plugin' => $pluginSlug,
|
689 |
'form_id' => $formId,
|
690 |
'plugin_public_url' => $this->app->publicUrl(),
|
691 |
-
'preview_url' =>
|
692 |
'form' => $form,
|
693 |
'hasPro' => defined('FLUENTFORMPRO'),
|
694 |
'countries' => $this->app->load(
|
@@ -704,12 +709,11 @@ class Menu
|
|
704 |
|
705 |
'element_search_tags' => $searchTags,
|
706 |
|
707 |
-
'element_settings_placement' => $
|
708 |
-
$this->app->appPath('Services/FormBuilder/ElementSettingsPlacement.php')
|
709 |
-
),
|
710 |
'all_forms_url' => admin_url('admin.php?page=fluent_forms'),
|
711 |
'has_payment_features' => !defined('FLUENTFORMPRO'),
|
712 |
'upgrade_url' => fluentform_upgrade_url(),
|
|
|
713 |
)));
|
714 |
}
|
715 |
|
@@ -768,20 +772,24 @@ class Menu
|
|
768 |
View::render('admin.transfer.index');
|
769 |
}
|
770 |
|
771 |
-
|
772 |
-
private function getFormPreviewUrl($form_id)
|
773 |
-
{
|
774 |
-
return site_url('?fluent_forms_pages=1&design_mode=1&preview_id=' . $form_id) . '#ff_preview';
|
775 |
-
}
|
776 |
-
|
777 |
public function addPreviewButton($formId)
|
778 |
{
|
779 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
780 |
}
|
781 |
|
782 |
public function addCopyShortcodeButton($formId)
|
783 |
{
|
784 |
-
|
|
|
|
|
|
|
|
|
785 |
return;
|
786 |
}
|
787 |
|
434 |
private function renderFormInnerPages()
|
435 |
{
|
436 |
$form_id = intval($_GET['form_id']);
|
|
|
437 |
$form = wpFluent()->table('fluentform_forms')->find($form_id);
|
438 |
|
439 |
if (!$form) {
|
464 |
|
465 |
$formAdminMenus = apply_filters('fluentform_form_admin_menu', $formAdminMenus, $form_id, $form);
|
466 |
|
467 |
+
|
468 |
$route = sanitize_key($_GET['route']);
|
469 |
|
470 |
View::render('admin.form.form_wrapper', array(
|
566 |
'hasPDF' => defined('FLUENTFORM_PDF_VERSION'),
|
567 |
'hasFluentCRM' => defined('FLUENTCRM'),
|
568 |
'upgrade_url' => fluentform_upgrade_url(),
|
569 |
+
'ace_path_url' => $this->app->publicUrl('libs/ace'),
|
570 |
+
'is_conversion_form' => Helper::isConversionForm($form_id)
|
571 |
));
|
572 |
|
573 |
View::render('admin.form.settings', array(
|
685 |
|
686 |
$searchTags = apply_filters( 'fluent_editor_element_search_tags', $searchTags, $form );
|
687 |
|
688 |
+
$elementPlacements = apply_filters('fluent_editor_element_settings_placement',
|
689 |
+
$this->app->load( $this->app->appPath('Services/FormBuilder/ElementSettingsPlacement.php') ), $form
|
690 |
+
);
|
691 |
+
|
692 |
wp_localize_script('fluentform_editor_script', 'FluentFormApp', apply_filters('fluentform_editor_vars', array(
|
693 |
'plugin' => $pluginSlug,
|
694 |
'form_id' => $formId,
|
695 |
'plugin_public_url' => $this->app->publicUrl(),
|
696 |
+
'preview_url' => Helper::getPreviewUrl($formId),
|
697 |
'form' => $form,
|
698 |
'hasPro' => defined('FLUENTFORMPRO'),
|
699 |
'countries' => $this->app->load(
|
709 |
|
710 |
'element_search_tags' => $searchTags,
|
711 |
|
712 |
+
'element_settings_placement' => $elementPlacements,
|
|
|
|
|
713 |
'all_forms_url' => admin_url('admin.php?page=fluent_forms'),
|
714 |
'has_payment_features' => !defined('FLUENTFORMPRO'),
|
715 |
'upgrade_url' => fluentform_upgrade_url(),
|
716 |
+
'is_conversion_form' => Helper::isConversionForm($formId)
|
717 |
)));
|
718 |
}
|
719 |
|
772 |
View::render('admin.transfer.index');
|
773 |
}
|
774 |
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
public function addPreviewButton($formId)
|
776 |
{
|
777 |
+
$previewText = __('Preview & Design', 'fluent-form');
|
778 |
+
$previewUrl = Helper::getPreviewUrl($formId);
|
779 |
+
if($isConversational = Helper::isConversionForm($formId)) {
|
780 |
+
$previewText = __('Preview', 'fluent-form');
|
781 |
+
}
|
782 |
+
|
783 |
+
echo '<a target="_blank" class="el-button el-button--small" href="' . $previewUrl . '">'.$previewText.'</a>';
|
784 |
}
|
785 |
|
786 |
public function addCopyShortcodeButton($formId)
|
787 |
{
|
788 |
+
$shortcode = '[fluentform id="' . $formId . '"]';
|
789 |
+
if(Helper::isConversionForm($formId)) {
|
790 |
+
$shortcode = '[fluentform type="conversational" id="' . $formId . '"]';
|
791 |
+
}
|
792 |
+
echo '<button style="background:#dedede;color:#545454;padding:5px;max-width: 200px;overflow: hidden;" title="Click to Copy" class="btn copy" data-clipboard-text=\''.$shortcode.'\'><i class="dashicons dashicons-admin-page" style="color:#eee;text-shadow:#000 -1px 1px 1px;"></i> '.$shortcode.'</button>';
|
793 |
return;
|
794 |
}
|
795 |
|
app/Providers/FluentConversationalProvider.php
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Providers;
|
4 |
+
|
5 |
+
use FluentForm\App\Services\FluentConversational\Classes\Form;
|
6 |
+
use FluentForm\Framework\Foundation\Provider;
|
7 |
+
|
8 |
+
class FluentConversationalProvider extends Provider
|
9 |
+
{
|
10 |
+
public function booting()
|
11 |
+
{
|
12 |
+
require_once $this->app->appPath() . 'Services/FluentConversational/plugin.php';
|
13 |
+
}
|
14 |
+
|
15 |
+
public function booted()
|
16 |
+
{
|
17 |
+
(new Form)->boot();
|
18 |
+
}
|
19 |
+
}
|
app/Services/FluentConversational/Classes/Converter/Converter.php
ADDED
@@ -0,0 +1,349 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Services\FluentConversational\Classes\Converter;
|
4 |
+
|
5 |
+
use FluentForm\App\Services\FluentConversational\Classes\Form;
|
6 |
+
use FluentForm\App\Modules\Component\Component;
|
7 |
+
use FluentForm\Framework\Helpers\ArrayHelper;
|
8 |
+
|
9 |
+
class Converter
|
10 |
+
{
|
11 |
+
public static function convert($form)
|
12 |
+
{
|
13 |
+
$form->fields = json_decode($form->form_fields, true);
|
14 |
+
|
15 |
+
$fields = $form->fields['fields'];
|
16 |
+
|
17 |
+
$form->submit_button = $form->fields['submitButton'];
|
18 |
+
|
19 |
+
$questions = [];
|
20 |
+
|
21 |
+
$imagePreloads = [];
|
22 |
+
|
23 |
+
$allowedFields = static::fieldTypes();
|
24 |
+
foreach ($fields as $field) {
|
25 |
+
$question = [
|
26 |
+
'id' => $field['uniqElKey'],
|
27 |
+
'name' => ArrayHelper::get($field, 'attributes.name'),
|
28 |
+
'title' => ArrayHelper::get($field, 'settings.label'),
|
29 |
+
'type' => ArrayHelper::get($allowedFields, $field['element']),
|
30 |
+
'ff_input_type' => $field['element'],
|
31 |
+
'placeholder' => ArrayHelper::get($field, 'attributes.placeholder'),
|
32 |
+
'required' => ArrayHelper::get($field, 'settings.validation_rules.required.value'),
|
33 |
+
'requiredMsg' => ArrayHelper::get($field, 'settings.validation_rules.required.message'),
|
34 |
+
'answer' => self::setDefaultValue(ArrayHelper::get($field, 'attributes.value'), $field, $form),
|
35 |
+
'tagline' => ArrayHelper::get($field, 'settings.help_message'),
|
36 |
+
'style_pref' => ArrayHelper::get($field, 'style_pref', [
|
37 |
+
'layout' => 'default',
|
38 |
+
'media' => '',
|
39 |
+
'brightness' => 0,
|
40 |
+
'alt_text' => '',
|
41 |
+
'media_x_position' => 50,
|
42 |
+
'media_y_position' => 50
|
43 |
+
]),
|
44 |
+
'conditional_logics' => self::parseConditionalLogic($field)
|
45 |
+
];
|
46 |
+
|
47 |
+
if(ArrayHelper::get($question, 'style_pref.layout') != 'default') {
|
48 |
+
$media = ArrayHelper::get($question, 'style_pref.media');
|
49 |
+
if($media) {
|
50 |
+
$imagePreloads[] = $media;
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
+
if ($field['element'] === 'input_text') {
|
55 |
+
$mask = ArrayHelper::get($field, 'settings.temp_mask');
|
56 |
+
|
57 |
+
$mask = $mask === 'custom' ? ArrayHelper::get($field, 'attributes.data-mask') : $mask;
|
58 |
+
|
59 |
+
if ($mask) {
|
60 |
+
$question['mask'] = $mask;
|
61 |
+
}
|
62 |
+
} elseif ($field['element'] === 'welcome_screen') {
|
63 |
+
$question['settings'] = ArrayHelper::get($field, 'settings', []);
|
64 |
+
$question['subtitle'] = ArrayHelper::get($field, 'settings.description');
|
65 |
+
$question['required'] = false;
|
66 |
+
// $question['css'] = (new \FluentConversational\Form)->getSubmitBttnStyle($field);
|
67 |
+
|
68 |
+
} elseif ($field['element'] === 'select') {
|
69 |
+
$question['options'] = self::getAdvancedOptions($field);
|
70 |
+
$question['placeholder'] = ArrayHelper::get($field, 'settings.placeholder', null);
|
71 |
+
$isMultiple = ArrayHelper::get($field, 'attributes.multiple', false);
|
72 |
+
|
73 |
+
if ($isMultiple) {
|
74 |
+
$question['type'] = $allowedFields['select_multiple'];
|
75 |
+
$question['multiple'] = true;
|
76 |
+
$question['placeholder'] = ArrayHelper::get($field, 'attributes.placeholder', false);
|
77 |
+
$question['searchable'] = ArrayHelper::get($field, 'settings.enable_select_2');
|
78 |
+
}
|
79 |
+
} elseif ($field['element'] === 'select_country') {
|
80 |
+
$options = array();
|
81 |
+
$countries = getFluentFormCountryList();
|
82 |
+
foreach ($countries as $key => $value) {
|
83 |
+
$options[] = [
|
84 |
+
'label' => $value,
|
85 |
+
'value' => $key
|
86 |
+
];
|
87 |
+
}
|
88 |
+
$question['options'] = $options;
|
89 |
+
$question['placeholder'] = ArrayHelper::get($field, 'attributes.placeholder', null);
|
90 |
+
} elseif ($field['element'] === 'input_checkbox') {
|
91 |
+
$question['options'] = self::getAdvancedOptions($field);;
|
92 |
+
$question['multiple'] = true;
|
93 |
+
} elseif ($field['element'] === 'input_radio') {
|
94 |
+
$question['options'] = self::getAdvancedOptions($field);
|
95 |
+
$question['nextStepOnAnswer'] = true;
|
96 |
+
} elseif ($field['element'] === 'custom_html') {
|
97 |
+
$question['content'] = ArrayHelper::get($field, 'settings.html_codes', '');
|
98 |
+
} elseif ($field['element'] === 'phone') {
|
99 |
+
if (defined('FLUENTFORMPRO')) {
|
100 |
+
$cssSource = FLUENTFORMPRO_DIR_URL . 'public/libs/intl-tel-input/css/intlTelInput.min.css';
|
101 |
+
if (is_rtl()) {
|
102 |
+
$cssSource = FLUENTFORMPRO_DIR_URL . 'public/libs/intl-tel-input/css/intlTelInput-rtl.min.css';
|
103 |
+
}
|
104 |
+
wp_enqueue_style('intlTelInput', $cssSource, [], '16.0.0');
|
105 |
+
wp_enqueue_script('intlTelInputUtils', FLUENTFORMPRO_DIR_URL . 'public/libs/intl-tel-input/js/utils.js', [], '16.0.0', true);
|
106 |
+
wp_enqueue_script('intlTelInput', FLUENTFORMPRO_DIR_URL . 'public/libs/intl-tel-input/js/intlTelInput.min.js', [], '16.0.0', true);
|
107 |
+
$question['phone_settings'] = self::getPhoneFieldSettings($field, $form);
|
108 |
+
}
|
109 |
+
} elseif ($field['element'] === 'input_number') {
|
110 |
+
$question['min'] = ArrayHelper::get($field, 'settings.validation_rules.min.value');
|
111 |
+
$question['max'] = ArrayHelper::get($field, 'settings.validation_rules.max.value');
|
112 |
+
} elseif (in_array($field['element'], ['terms_and_condition', 'gdpr_agreement'])) {
|
113 |
+
$question['options'] = [
|
114 |
+
[
|
115 |
+
'label' => ArrayHelper::get($field, 'settings.tc_agree_text', 'I accept'),
|
116 |
+
'value' => 'on',
|
117 |
+
],
|
118 |
+
[
|
119 |
+
'label' => ArrayHelper::get($field, 'settings.tc_dis_agree_text', 'I accept'),
|
120 |
+
'value' => 'off',
|
121 |
+
]
|
122 |
+
];
|
123 |
+
|
124 |
+
$question['nextStepOnAnswer'] = true;
|
125 |
+
$question['title'] = ArrayHelper::get($field, 'settings.tnc_html');
|
126 |
+
if ($field['element'] === 'gdpr_agreement') {
|
127 |
+
$question['required'] = true;
|
128 |
+
}
|
129 |
+
|
130 |
+
} elseif ($field['element'] === 'ratings') {
|
131 |
+
$question['show_text'] = ArrayHelper::get($field, 'settings.show_text');
|
132 |
+
$question['options'] = ArrayHelper::get($field, 'options', []);
|
133 |
+
$question['nextStepOnAnswer'] = true;
|
134 |
+
}
|
135 |
+
if ($question['type']) {
|
136 |
+
$questions[] = $question;
|
137 |
+
}
|
138 |
+
if ($field['element'] === 'custom_submit_button') {
|
139 |
+
$form->submit_button = $field;
|
140 |
+
}
|
141 |
+
}
|
142 |
+
|
143 |
+
$form->questions = $questions;
|
144 |
+
|
145 |
+
$form->image_preloads = $imagePreloads;
|
146 |
+
|
147 |
+
return $form;
|
148 |
+
}
|
149 |
+
|
150 |
+
public static function fieldTypes()
|
151 |
+
{
|
152 |
+
$fieldTypes = [
|
153 |
+
'welcome_screen' => 'FlowFormWelcomeScreenType',
|
154 |
+
'input_date' => 'FlowFormDateType',
|
155 |
+
'select' => 'FlowFormDropdownType',
|
156 |
+
'select_multiple' => 'FlowFormDropdownMultipleType',
|
157 |
+
'select_country' => 'FlowFormDropdownType',
|
158 |
+
'input_email' => 'FlowFormEmailType',
|
159 |
+
'textarea' => 'FlowFormLongTextType',
|
160 |
+
'input_checkbox' => 'FlowFormMultipleChoiceType',
|
161 |
+
'terms_and_condition' => 'FlowFormTermsAndConditionType',
|
162 |
+
'gdpr_agreement' => 'FlowFormTermsAndConditionType',
|
163 |
+
'input_radio' => 'FlowFormMultipleChoiceType',
|
164 |
+
'MultiplePictureChoice' => 'FlowFormMultiplePictureChoiceType',
|
165 |
+
'input_number' => 'FlowFormNumberType',
|
166 |
+
'input_password' => 'FlowFormPasswordType',
|
167 |
+
'custom_html' => 'FlowFormSectionBreakType',
|
168 |
+
'input_text' => 'FlowFormTextType',
|
169 |
+
'input_url' => 'FlowFormUrlType',
|
170 |
+
'ratings' => 'FlowFormRateType'
|
171 |
+
];
|
172 |
+
|
173 |
+
if (defined('FLUENTFORMPRO')) {
|
174 |
+
$fieldTypes['phone'] = 'FlowFormPhoneType';
|
175 |
+
}
|
176 |
+
|
177 |
+
return $fieldTypes;
|
178 |
+
}
|
179 |
+
|
180 |
+
public static function hex2rgb($color, $opacity = 0.3)
|
181 |
+
{
|
182 |
+
if (!$color) {
|
183 |
+
return;
|
184 |
+
}
|
185 |
+
$rgbValues = list($r, $g, $b) = array_map(
|
186 |
+
function ($c) {
|
187 |
+
return hexdec(str_pad($c, 2, $c));
|
188 |
+
},
|
189 |
+
str_split(ltrim($color, '#'), strlen($color) > 4 ? 2 : 1)
|
190 |
+
);
|
191 |
+
$rgbValues[3] = $opacity;
|
192 |
+
$formattedValues = implode(',', $rgbValues);
|
193 |
+
return "rgb({$formattedValues})";
|
194 |
+
}
|
195 |
+
|
196 |
+
public static function getPhoneFieldSettings($data, $form)
|
197 |
+
{
|
198 |
+
$geoLocate = ArrayHelper::get($data, 'settings.auto_select_country') == 'yes';
|
199 |
+
$enabled = ArrayHelper::get($data, 'settings.int_tel_number') == 'with_extended_validation';
|
200 |
+
|
201 |
+
$itlOptions = [
|
202 |
+
'separateDialCode' => false,
|
203 |
+
'nationalMode' => true,
|
204 |
+
'autoPlaceholder' => 'aggressive',
|
205 |
+
'formatOnDisplay' => true
|
206 |
+
];
|
207 |
+
|
208 |
+
if ($geoLocate) {
|
209 |
+
$itlOptions['initialCountry'] = 'auto';
|
210 |
+
} else {
|
211 |
+
$itlOptions['initialCountry'] = ArrayHelper::get($data, 'settings.default_country', '');
|
212 |
+
$activeList = ArrayHelper::get($data, 'settings.phone_country_list.active_list');
|
213 |
+
|
214 |
+
if ($activeList == 'priority_based') {
|
215 |
+
$selectCountries = ArrayHelper::get($data, 'settings.phone_country_list.priority_based', []);
|
216 |
+
$priorityCountries = self::getSelectedCountries($selectCountries);
|
217 |
+
$itlOptions['preferredCountries'] = array_keys($priorityCountries);
|
218 |
+
} else if ($activeList == 'visible_list') {
|
219 |
+
$onlyCountries = ArrayHelper::get($data, 'settings.phone_country_list.visible_list', []);
|
220 |
+
$itlOptions['onlyCountries'] = $onlyCountries;
|
221 |
+
} else if ($activeList == 'hidden_list') {
|
222 |
+
$countries = self::loadCountries($data);
|
223 |
+
$itlOptions['onlyCountries'] = array_keys($countries);
|
224 |
+
}
|
225 |
+
}
|
226 |
+
|
227 |
+
$itlOptions = apply_filters('fluentform_itl_options', $itlOptions, $data, $form);
|
228 |
+
$itlOptions = json_encode($itlOptions);
|
229 |
+
|
230 |
+
$settings = get_option('_fluentform_global_form_settings');
|
231 |
+
$token = ArrayHelper::get($settings, 'misc.geo_provider_token');
|
232 |
+
|
233 |
+
$url = 'https://ipinfo.io';
|
234 |
+
if ($token) {
|
235 |
+
$url = 'https://ipinfo.io/?token=' . $token;
|
236 |
+
}
|
237 |
+
$ipProviderUrl = apply_filters('fluentform_ip_provider', $url);
|
238 |
+
|
239 |
+
return [
|
240 |
+
'enabled' => $enabled,
|
241 |
+
'itlOptions' => $itlOptions,
|
242 |
+
'ipLookupUrl' => ($geoLocate && $ipProviderUrl) ? $ipProviderUrl : false,
|
243 |
+
];
|
244 |
+
}
|
245 |
+
|
246 |
+
/**
|
247 |
+
* Load country list from file
|
248 |
+
* @param array $data
|
249 |
+
* @return array
|
250 |
+
*/
|
251 |
+
public static function loadCountries($data)
|
252 |
+
{
|
253 |
+
$data['options'] = array();
|
254 |
+
$activeList = ArrayHelper::get($data, 'settings.phone_country_list.active_list');
|
255 |
+
$countries = getFluentFormCountryList();
|
256 |
+
$filteredCountries = [];
|
257 |
+
if ($activeList == 'visible_list') {
|
258 |
+
$selectCountries = ArrayHelper::get($data, 'settings.phone_country_list.' . $activeList, []);
|
259 |
+
foreach ($selectCountries as $value) {
|
260 |
+
$filteredCountries[$value] = $countries[$value];
|
261 |
+
}
|
262 |
+
} elseif ($activeList == 'hidden_list' || $activeList == 'priority_based') {
|
263 |
+
$filteredCountries = $countries;
|
264 |
+
$selectCountries = ArrayHelper::get($data, 'settings.phone_country_list.' . $activeList, []);
|
265 |
+
foreach ($selectCountries as $value) {
|
266 |
+
unset($filteredCountries[$value]);
|
267 |
+
}
|
268 |
+
} else {
|
269 |
+
$filteredCountries = $countries;
|
270 |
+
}
|
271 |
+
|
272 |
+
return $filteredCountries;
|
273 |
+
}
|
274 |
+
|
275 |
+
public static function getSelectedCountries($keys = [])
|
276 |
+
{
|
277 |
+
$options = [];
|
278 |
+
$countries = getFluentFormCountryList();
|
279 |
+
foreach ($keys as $value) {
|
280 |
+
$options[$value] = $countries[$value];
|
281 |
+
}
|
282 |
+
|
283 |
+
return $options;
|
284 |
+
}
|
285 |
+
|
286 |
+
public static function setDefaultValue($value, $field, $form)
|
287 |
+
{
|
288 |
+
if ($dynamicValue = ArrayHelper::get($field, 'settings.dynamic_default_value')) {
|
289 |
+
$dynamicVal = (new Component(wpFluentForm()))->replaceEditorSmartCodes($dynamicValue, $form);
|
290 |
+
|
291 |
+
$element = $field['element'];
|
292 |
+
|
293 |
+
if ($dynamicVal && $element == 'input_checkbox') {
|
294 |
+
$defaultValues = explode(',', $dynamicVal);
|
295 |
+
return array_map('trim', $defaultValues);
|
296 |
+
}
|
297 |
+
|
298 |
+
if ($dynamicVal) {
|
299 |
+
return $dynamicVal;
|
300 |
+
}
|
301 |
+
}
|
302 |
+
|
303 |
+
if (!$value) {
|
304 |
+
return $value;
|
305 |
+
}
|
306 |
+
if (is_string($value)) {
|
307 |
+
return (new Component(wpFluentForm()))->replaceEditorSmartCodes($value, $form);
|
308 |
+
}
|
309 |
+
|
310 |
+
return $value;
|
311 |
+
}
|
312 |
+
|
313 |
+
private static function parseConditionalLogic($field)
|
314 |
+
{
|
315 |
+
$logics = ArrayHelper::get($field, 'settings.conditional_logics', []);
|
316 |
+
|
317 |
+
if (!$logics || !$logics['status']) {
|
318 |
+
return [];
|
319 |
+
}
|
320 |
+
|
321 |
+
$validConditions = [];
|
322 |
+
foreach ($logics['conditions'] as $condition) {
|
323 |
+
if (empty($condition['field']) || empty($condition['operator'])) {
|
324 |
+
continue;
|
325 |
+
}
|
326 |
+
$validConditions[] = $condition;
|
327 |
+
}
|
328 |
+
|
329 |
+
if (!$validConditions) {
|
330 |
+
return [];
|
331 |
+
}
|
332 |
+
|
333 |
+
$logics['conditions'] = $validConditions;
|
334 |
+
|
335 |
+
return $logics;
|
336 |
+
}
|
337 |
+
|
338 |
+
private static function getAdvancedOptions($field)
|
339 |
+
{
|
340 |
+
$options = ArrayHelper::get($field, 'settings.advanced_options', []);
|
341 |
+
|
342 |
+
if($options && ArrayHelper::get($field, 'settings.randomize_options') == 'yes') {
|
343 |
+
shuffle($options);
|
344 |
+
}
|
345 |
+
|
346 |
+
return $options;
|
347 |
+
|
348 |
+
}
|
349 |
+
}
|
app/Services/FluentConversational/Classes/Elements/WelcomeScreen.php
ADDED
@@ -0,0 +1,133 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Services\FluentConversational\Classes\Elements;
|
4 |
+
|
5 |
+
use FluentForm\App\Services\FormBuilder\BaseFieldManager;
|
6 |
+
use FluentForm\Framework\Helpers\ArrayHelper;
|
7 |
+
|
8 |
+
class WelcomeScreen extends BaseFieldManager
|
9 |
+
{
|
10 |
+
public function __construct()
|
11 |
+
{
|
12 |
+
parent::__construct(
|
13 |
+
'welcome_screen',
|
14 |
+
'Welcome Screen',
|
15 |
+
['welcome', 'screen', 'content'],
|
16 |
+
'general'
|
17 |
+
);
|
18 |
+
|
19 |
+
add_filter('fluent_conversational_editor_elements', array($this, 'pushConversationalComponent'), 10, 1);
|
20 |
+
|
21 |
+
}
|
22 |
+
|
23 |
+
public function getComponent()
|
24 |
+
{
|
25 |
+
return []; // we don't this in normal forms
|
26 |
+
}
|
27 |
+
|
28 |
+
public function pushConversationalComponent($components)
|
29 |
+
{
|
30 |
+
$components[] = [
|
31 |
+
'index' => 50,
|
32 |
+
'element' => 'welcome_screen',
|
33 |
+
'attributes' => array(),
|
34 |
+
'settings' => array(
|
35 |
+
'label' => __('Welcome Heading', 'fluentform'),
|
36 |
+
'description' => __('Sub Heading', 'fluentform'),
|
37 |
+
'align' => 'center',
|
38 |
+
'conditional_logics' => array(),
|
39 |
+
'button_style' => 'default',
|
40 |
+
'button_size' => 'md',
|
41 |
+
'container_class' => '',
|
42 |
+
'current_state' => 'normal_styles',
|
43 |
+
'background_color' => 'rgb(64, 158, 255)',
|
44 |
+
'color' => 'rgb(255, 255, 255)',
|
45 |
+
'hover_styles' => (object)[
|
46 |
+
'backgroundColor' => '#ffffff',
|
47 |
+
'borderColor' => '#409EFF',
|
48 |
+
'color' => '#409EFF',
|
49 |
+
'borderRadius' => '',
|
50 |
+
'minWidth' => ''
|
51 |
+
],
|
52 |
+
'normal_styles' => (object)[
|
53 |
+
'backgroundColor' => '#409EFF',
|
54 |
+
'borderColor' => '#409EFF',
|
55 |
+
'color' => '#ffffff',
|
56 |
+
'borderRadius' => '',
|
57 |
+
'minWidth' => ''
|
58 |
+
],
|
59 |
+
'button_ui' => (object)[
|
60 |
+
'text' => 'Start Here',
|
61 |
+
'type' => 'default'
|
62 |
+
]
|
63 |
+
),
|
64 |
+
'editor_options' => array(
|
65 |
+
'title' => __('Welcome Screen', 'fluentform'),
|
66 |
+
'icon_class' => 'dashicons dashicons-align-wide',
|
67 |
+
'template' => 'welcomeScreen',
|
68 |
+
),
|
69 |
+
'style_pref' => [
|
70 |
+
'layout' => 'default',
|
71 |
+
'media' => '',
|
72 |
+
'brightness' => 0,
|
73 |
+
'alt_text' => '',
|
74 |
+
'media_x_position' => 50,
|
75 |
+
'media_y_position' => 50
|
76 |
+
]
|
77 |
+
];
|
78 |
+
|
79 |
+
return $components;
|
80 |
+
}
|
81 |
+
|
82 |
+
public function getGeneralEditorElements()
|
83 |
+
{
|
84 |
+
return [
|
85 |
+
'label',
|
86 |
+
'description',
|
87 |
+
'align',
|
88 |
+
'btn_text',
|
89 |
+
'button_ui'
|
90 |
+
];
|
91 |
+
}
|
92 |
+
|
93 |
+
public function getAdvancedEditorElements()
|
94 |
+
{
|
95 |
+
return [
|
96 |
+
'button_style',
|
97 |
+
'button_size',
|
98 |
+
];
|
99 |
+
}
|
100 |
+
|
101 |
+
public function pushFormInputType($types)
|
102 |
+
{
|
103 |
+
return $types;
|
104 |
+
}
|
105 |
+
|
106 |
+
public function render($data, $form)
|
107 |
+
{
|
108 |
+
$elementName = $data['element'];
|
109 |
+
$data = apply_filters('fluenform_rendering_field_data_'.$elementName, $data, $form);
|
110 |
+
|
111 |
+
$alignment = ArrayHelper::get($data, 'settings.align');
|
112 |
+
if($alignment) {
|
113 |
+
if(empty($data['attributes']['class'])) {
|
114 |
+
$data['attributes']['class'] = '';
|
115 |
+
}
|
116 |
+
$data['attributes']['class'] .= ' ff_'.$alignment;
|
117 |
+
}
|
118 |
+
|
119 |
+
$hasConditions = $this->hasConditions($data) ? 'has-conditions ' : '';
|
120 |
+
$cls = trim($this->getDefaultContainerClass().' '.$hasConditions);
|
121 |
+
$data['attributes']['class'] = $cls .' ff-el-section-break '. $data['attributes']['class'];
|
122 |
+
$data['attributes']['class'] = trim($data['attributes']['class']);
|
123 |
+
$atts = $this->buildAttributes(
|
124 |
+
\FluentForm\Framework\Helpers\ArrayHelper::except($data['attributes'], 'name')
|
125 |
+
);
|
126 |
+
$html = "<div {$atts}>";
|
127 |
+
$html .= "<h3 class='ff-el-section-title'>{$data['settings']['label']}</h3>";
|
128 |
+
$html .= "<div class='ff-section_break_desk'>{$data['settings']['description']}</div>";
|
129 |
+
$html .= "</div>";
|
130 |
+
echo apply_filters('fluenform_rendering_field_html_'.$elementName, $html, $data, $form);
|
131 |
+
}
|
132 |
+
|
133 |
+
}
|
app/Services/FluentConversational/Classes/Fonts.php
ADDED
@@ -0,0 +1,4292 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Services\FluentConversational\Classes;
|
4 |
+
|
5 |
+
class Fonts
|
6 |
+
{
|
7 |
+
public static function getFonts()
|
8 |
+
{
|
9 |
+
return [
|
10 |
+
'system' => self::getSystemFonts(),
|
11 |
+
'google' => self::getGoogleFonts()
|
12 |
+
];
|
13 |
+
}
|
14 |
+
|
15 |
+
public static function getAllFonts()
|
16 |
+
{
|
17 |
+
return array_merge(self::getSystemFonts(), self::getGoogleFonts());
|
18 |
+
}
|
19 |
+
|
20 |
+
public static function getSystemFonts()
|
21 |
+
{
|
22 |
+
return [
|
23 |
+
'system-ui' => array(
|
24 |
+
'fallback' => '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif',
|
25 |
+
'weights' => array(
|
26 |
+
'300',
|
27 |
+
'400',
|
28 |
+
'700',
|
29 |
+
),
|
30 |
+
),
|
31 |
+
'Helvetica' => array(
|
32 |
+
'fallback' => 'Verdana, Arial, sans-serif',
|
33 |
+
'weights' => array(
|
34 |
+
'300',
|
35 |
+
'400',
|
36 |
+
'700',
|
37 |
+
),
|
38 |
+
),
|
39 |
+
'Verdana' => array(
|
40 |
+
'fallback' => 'Helvetica, Arial, sans-serif',
|
41 |
+
'weights' => array(
|
42 |
+
'300',
|
43 |
+
'400',
|
44 |
+
'700',
|
45 |
+
),
|
46 |
+
),
|
47 |
+
'Arial' => array(
|
48 |
+
'fallback' => 'Helvetica, Verdana, sans-serif',
|
49 |
+
'weights' => array('300', '400', '700',),
|
50 |
+
),
|
51 |
+
'Times' => array(
|
52 |
+
'fallback' => 'Georgia, serif',
|
53 |
+
'weights' => array(
|
54 |
+
'300',
|
55 |
+
'400',
|
56 |
+
'700',
|
57 |
+
),
|
58 |
+
),
|
59 |
+
'Georgia' => array(
|
60 |
+
'fallback' => 'Times, serif',
|
61 |
+
'weights' => array(
|
62 |
+
'300',
|
63 |
+
'400',
|
64 |
+
'700',
|
65 |
+
),
|
66 |
+
),
|
67 |
+
'Courier' => array(
|
68 |
+
'fallback' => 'monospace',
|
69 |
+
'weights' => array(
|
70 |
+
'300',
|
71 |
+
'400',
|
72 |
+
'700',
|
73 |
+
),
|
74 |
+
),
|
75 |
+
];
|
76 |
+
}
|
77 |
+
|
78 |
+
public static function getGoogleFonts()
|
79 |
+
{
|
80 |
+
return array(
|
81 |
+
'ABeeZee' => array(
|
82 |
+
'variants' => array('regular', 'italic'),
|
83 |
+
'category' => 'sans-serif',
|
84 |
+
),
|
85 |
+
'Abel' => array(
|
86 |
+
'variants' => array('regular'),
|
87 |
+
'category' => 'sans-serif',
|
88 |
+
),
|
89 |
+
'Abhaya Libre' => array(
|
90 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
91 |
+
'category' => 'serif',
|
92 |
+
),
|
93 |
+
'Abril Fatface' => array(
|
94 |
+
'variants' => array('regular'),
|
95 |
+
'category' => 'display',
|
96 |
+
),
|
97 |
+
'Aclonica' => array(
|
98 |
+
'variants' => array('regular'),
|
99 |
+
'category' => 'sans-serif',
|
100 |
+
),
|
101 |
+
'Acme' => array(
|
102 |
+
'variants' => array('regular'),
|
103 |
+
'category' => 'sans-serif',
|
104 |
+
),
|
105 |
+
'Actor' => array(
|
106 |
+
'variants' => array('regular'),
|
107 |
+
'category' => 'sans-serif',
|
108 |
+
),
|
109 |
+
'Adamina' => array(
|
110 |
+
'variants' => array('regular'),
|
111 |
+
'category' => 'serif',
|
112 |
+
),
|
113 |
+
'Advent Pro' => array(
|
114 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700'),
|
115 |
+
'category' => 'sans-serif',
|
116 |
+
),
|
117 |
+
'Aguafina Script' => array(
|
118 |
+
'variants' => array('regular'),
|
119 |
+
'category' => 'handwriting',
|
120 |
+
),
|
121 |
+
'Akaya Kanadaka' => array(
|
122 |
+
'variants' => array('regular'),
|
123 |
+
'category' => 'display',
|
124 |
+
),
|
125 |
+
'Akaya Telivigala' => array(
|
126 |
+
'variants' => array('regular'),
|
127 |
+
'category' => 'display',
|
128 |
+
),
|
129 |
+
'Akronim' => array(
|
130 |
+
'variants' => array('regular'),
|
131 |
+
'category' => 'display',
|
132 |
+
),
|
133 |
+
'Aladin' => array(
|
134 |
+
'variants' => array('regular'),
|
135 |
+
'category' => 'handwriting',
|
136 |
+
),
|
137 |
+
'Alata' => array(
|
138 |
+
'variants' => array('regular'),
|
139 |
+
'category' => 'sans-serif',
|
140 |
+
),
|
141 |
+
'Alatsi' => array(
|
142 |
+
'variants' => array('regular'),
|
143 |
+
'category' => 'sans-serif',
|
144 |
+
),
|
145 |
+
'Aldrich' => array(
|
146 |
+
'variants' => array('regular'),
|
147 |
+
'category' => 'sans-serif',
|
148 |
+
),
|
149 |
+
'Alef' => array(
|
150 |
+
'variants' => array('regular', '700'),
|
151 |
+
'category' => 'sans-serif',
|
152 |
+
),
|
153 |
+
'Alegreya' => array(
|
154 |
+
'variants' => array('regular', '500', '600', '700', '800', '900', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
155 |
+
'category' => 'serif',
|
156 |
+
),
|
157 |
+
'Alegreya SC' => array(
|
158 |
+
'variants' => array('regular', 'italic', '500', '500italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
159 |
+
'category' => 'serif',
|
160 |
+
),
|
161 |
+
'Alegreya Sans' => array(
|
162 |
+
'variants' => array('100', '100italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
163 |
+
'category' => 'sans-serif',
|
164 |
+
),
|
165 |
+
'Alegreya Sans SC' => array(
|
166 |
+
'variants' => array('100', '100italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
167 |
+
'category' => 'sans-serif',
|
168 |
+
),
|
169 |
+
'Aleo' => array(
|
170 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
171 |
+
'category' => 'serif',
|
172 |
+
),
|
173 |
+
'Alex Brush' => array(
|
174 |
+
'variants' => array('regular'),
|
175 |
+
'category' => 'handwriting',
|
176 |
+
),
|
177 |
+
'Alfa Slab One' => array(
|
178 |
+
'variants' => array('regular'),
|
179 |
+
'category' => 'display',
|
180 |
+
),
|
181 |
+
'Alice' => array(
|
182 |
+
'variants' => array('regular'),
|
183 |
+
'category' => 'serif',
|
184 |
+
),
|
185 |
+
'Alike' => array(
|
186 |
+
'variants' => array('regular'),
|
187 |
+
'category' => 'serif',
|
188 |
+
),
|
189 |
+
'Alike Angular' => array(
|
190 |
+
'variants' => array('regular'),
|
191 |
+
'category' => 'serif',
|
192 |
+
),
|
193 |
+
'Allan' => array(
|
194 |
+
'variants' => array('regular', '700'),
|
195 |
+
'category' => 'display',
|
196 |
+
),
|
197 |
+
'Allerta' => array(
|
198 |
+
'variants' => array('regular'),
|
199 |
+
'category' => 'sans-serif',
|
200 |
+
),
|
201 |
+
'Allerta Stencil' => array(
|
202 |
+
'variants' => array('regular'),
|
203 |
+
'category' => 'sans-serif',
|
204 |
+
),
|
205 |
+
'Allura' => array(
|
206 |
+
'variants' => array('regular'),
|
207 |
+
'category' => 'handwriting',
|
208 |
+
),
|
209 |
+
'Almarai' => array(
|
210 |
+
'variants' => array('300', 'regular', '700', '800'),
|
211 |
+
'category' => 'sans-serif',
|
212 |
+
),
|
213 |
+
'Almendra' => array(
|
214 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
215 |
+
'category' => 'serif',
|
216 |
+
),
|
217 |
+
'Almendra Display' => array(
|
218 |
+
'variants' => array('regular'),
|
219 |
+
'category' => 'display',
|
220 |
+
),
|
221 |
+
'Almendra SC' => array(
|
222 |
+
'variants' => array('regular'),
|
223 |
+
'category' => 'serif',
|
224 |
+
),
|
225 |
+
'Amarante' => array(
|
226 |
+
'variants' => array('regular'),
|
227 |
+
'category' => 'display',
|
228 |
+
),
|
229 |
+
'Amaranth' => array(
|
230 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
231 |
+
'category' => 'sans-serif',
|
232 |
+
),
|
233 |
+
'Amatic SC' => array(
|
234 |
+
'variants' => array('regular', '700'),
|
235 |
+
'category' => 'handwriting',
|
236 |
+
),
|
237 |
+
'Amethysta' => array(
|
238 |
+
'variants' => array('regular'),
|
239 |
+
'category' => 'serif',
|
240 |
+
),
|
241 |
+
'Amiko' => array(
|
242 |
+
'variants' => array('regular', '600', '700'),
|
243 |
+
'category' => 'sans-serif',
|
244 |
+
),
|
245 |
+
'Amiri' => array(
|
246 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
247 |
+
'category' => 'serif',
|
248 |
+
),
|
249 |
+
'Amita' => array(
|
250 |
+
'variants' => array('regular', '700'),
|
251 |
+
'category' => 'handwriting',
|
252 |
+
),
|
253 |
+
'Anaheim' => array(
|
254 |
+
'variants' => array('regular'),
|
255 |
+
'category' => 'sans-serif',
|
256 |
+
),
|
257 |
+
'Andada' => array(
|
258 |
+
'variants' => array('regular'),
|
259 |
+
'category' => 'serif',
|
260 |
+
),
|
261 |
+
'Andika' => array(
|
262 |
+
'variants' => array('regular'),
|
263 |
+
'category' => 'sans-serif',
|
264 |
+
),
|
265 |
+
'Andika New Basic' => array(
|
266 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
267 |
+
'category' => 'sans-serif',
|
268 |
+
),
|
269 |
+
'Angkor' => array(
|
270 |
+
'variants' => array('regular'),
|
271 |
+
'category' => 'display',
|
272 |
+
),
|
273 |
+
'Annie Use Your Telescope' => array(
|
274 |
+
'variants' => array('regular'),
|
275 |
+
'category' => 'handwriting',
|
276 |
+
),
|
277 |
+
'Anonymous Pro' => array(
|
278 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
279 |
+
'category' => 'monospace',
|
280 |
+
),
|
281 |
+
'Antic' => array(
|
282 |
+
'variants' => array('regular'),
|
283 |
+
'category' => 'sans-serif',
|
284 |
+
),
|
285 |
+
'Antic Didone' => array(
|
286 |
+
'variants' => array('regular'),
|
287 |
+
'category' => 'serif',
|
288 |
+
),
|
289 |
+
'Antic Slab' => array(
|
290 |
+
'variants' => array('regular'),
|
291 |
+
'category' => 'serif',
|
292 |
+
),
|
293 |
+
'Anton' => array(
|
294 |
+
'variants' => array('regular'),
|
295 |
+
'category' => 'sans-serif',
|
296 |
+
),
|
297 |
+
'Antonio' => array(
|
298 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700'),
|
299 |
+
'category' => 'sans-serif',
|
300 |
+
),
|
301 |
+
'Arapey' => array(
|
302 |
+
'variants' => array('regular', 'italic'),
|
303 |
+
'category' => 'serif',
|
304 |
+
),
|
305 |
+
'Arbutus' => array(
|
306 |
+
'variants' => array('regular'),
|
307 |
+
'category' => 'display',
|
308 |
+
),
|
309 |
+
'Arbutus Slab' => array(
|
310 |
+
'variants' => array('regular'),
|
311 |
+
'category' => 'serif',
|
312 |
+
),
|
313 |
+
'Architects Daughter' => array(
|
314 |
+
'variants' => array('regular'),
|
315 |
+
'category' => 'handwriting',
|
316 |
+
),
|
317 |
+
'Archivo' => array(
|
318 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
319 |
+
'category' => 'sans-serif',
|
320 |
+
),
|
321 |
+
'Archivo Black' => array(
|
322 |
+
'variants' => array('regular'),
|
323 |
+
'category' => 'sans-serif',
|
324 |
+
),
|
325 |
+
'Archivo Narrow' => array(
|
326 |
+
'variants' => array('regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
327 |
+
'category' => 'sans-serif',
|
328 |
+
),
|
329 |
+
'Aref Ruqaa' => array(
|
330 |
+
'variants' => array('regular', '700'),
|
331 |
+
'category' => 'serif',
|
332 |
+
),
|
333 |
+
'Arima Madurai' => array(
|
334 |
+
'variants' => array('100', '200', '300', 'regular', '500', '700', '800', '900'),
|
335 |
+
'category' => 'display',
|
336 |
+
),
|
337 |
+
'Arimo' => array(
|
338 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
339 |
+
'category' => 'sans-serif',
|
340 |
+
),
|
341 |
+
'Arizonia' => array(
|
342 |
+
'variants' => array('regular'),
|
343 |
+
'category' => 'handwriting',
|
344 |
+
),
|
345 |
+
'Armata' => array(
|
346 |
+
'variants' => array('regular'),
|
347 |
+
'category' => 'sans-serif',
|
348 |
+
),
|
349 |
+
'Arsenal' => array(
|
350 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
351 |
+
'category' => 'sans-serif',
|
352 |
+
),
|
353 |
+
'Artifika' => array(
|
354 |
+
'variants' => array('regular'),
|
355 |
+
'category' => 'serif',
|
356 |
+
),
|
357 |
+
'Arvo' => array(
|
358 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
359 |
+
'category' => 'serif',
|
360 |
+
),
|
361 |
+
'Arya' => array(
|
362 |
+
'variants' => array('regular', '700'),
|
363 |
+
'category' => 'sans-serif',
|
364 |
+
),
|
365 |
+
'Asap' => array(
|
366 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
367 |
+
'category' => 'sans-serif',
|
368 |
+
),
|
369 |
+
'Asap Condensed' => array(
|
370 |
+
'variants' => array('regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
371 |
+
'category' => 'sans-serif',
|
372 |
+
),
|
373 |
+
'Asar' => array(
|
374 |
+
'variants' => array('regular'),
|
375 |
+
'category' => 'serif',
|
376 |
+
),
|
377 |
+
'Asset' => array(
|
378 |
+
'variants' => array('regular'),
|
379 |
+
'category' => 'display',
|
380 |
+
),
|
381 |
+
'Assistant' => array(
|
382 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
383 |
+
'category' => 'sans-serif',
|
384 |
+
),
|
385 |
+
'Astloch' => array(
|
386 |
+
'variants' => array('regular', '700'),
|
387 |
+
'category' => 'display',
|
388 |
+
),
|
389 |
+
'Asul' => array(
|
390 |
+
'variants' => array('regular', '700'),
|
391 |
+
'category' => 'sans-serif',
|
392 |
+
),
|
393 |
+
'Athiti' => array(
|
394 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700'),
|
395 |
+
'category' => 'sans-serif',
|
396 |
+
),
|
397 |
+
'Atma' => array(
|
398 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
399 |
+
'category' => 'display',
|
400 |
+
),
|
401 |
+
'Atomic Age' => array(
|
402 |
+
'variants' => array('regular'),
|
403 |
+
'category' => 'display',
|
404 |
+
),
|
405 |
+
'Aubrey' => array(
|
406 |
+
'variants' => array('regular'),
|
407 |
+
'category' => 'display',
|
408 |
+
),
|
409 |
+
'Audiowide' => array(
|
410 |
+
'variants' => array('regular'),
|
411 |
+
'category' => 'display',
|
412 |
+
),
|
413 |
+
'Autour One' => array(
|
414 |
+
'variants' => array('regular'),
|
415 |
+
'category' => 'display',
|
416 |
+
),
|
417 |
+
'Average' => array(
|
418 |
+
'variants' => array('regular'),
|
419 |
+
'category' => 'serif',
|
420 |
+
),
|
421 |
+
'Average Sans' => array(
|
422 |
+
'variants' => array('regular'),
|
423 |
+
'category' => 'sans-serif',
|
424 |
+
),
|
425 |
+
'Averia Gruesa Libre' => array(
|
426 |
+
'variants' => array('regular'),
|
427 |
+
'category' => 'display',
|
428 |
+
),
|
429 |
+
'Averia Libre' => array(
|
430 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
431 |
+
'category' => 'display',
|
432 |
+
),
|
433 |
+
'Averia Sans Libre' => array(
|
434 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
435 |
+
'category' => 'display',
|
436 |
+
),
|
437 |
+
'Averia Serif Libre' => array(
|
438 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
439 |
+
'category' => 'display',
|
440 |
+
),
|
441 |
+
'B612' => array(
|
442 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
443 |
+
'category' => 'sans-serif',
|
444 |
+
),
|
445 |
+
'B612 Mono' => array(
|
446 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
447 |
+
'category' => 'monospace',
|
448 |
+
),
|
449 |
+
'Bad Script' => array(
|
450 |
+
'variants' => array('regular'),
|
451 |
+
'category' => 'handwriting',
|
452 |
+
),
|
453 |
+
'Bahiana' => array(
|
454 |
+
'variants' => array('regular'),
|
455 |
+
'category' => 'display',
|
456 |
+
),
|
457 |
+
'Bahianita' => array(
|
458 |
+
'variants' => array('regular'),
|
459 |
+
'category' => 'display',
|
460 |
+
),
|
461 |
+
'Bai Jamjuree' => array(
|
462 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
463 |
+
'category' => 'sans-serif',
|
464 |
+
),
|
465 |
+
'Ballet' => array(
|
466 |
+
'variants' => array('regular'),
|
467 |
+
'category' => 'handwriting',
|
468 |
+
),
|
469 |
+
'Baloo 2' => array(
|
470 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
471 |
+
'category' => 'display',
|
472 |
+
),
|
473 |
+
'Baloo Bhai 2' => array(
|
474 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
475 |
+
'category' => 'display',
|
476 |
+
),
|
477 |
+
'Baloo Bhaina 2' => array(
|
478 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
479 |
+
'category' => 'display',
|
480 |
+
),
|
481 |
+
'Baloo Chettan 2' => array(
|
482 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
483 |
+
'category' => 'display',
|
484 |
+
),
|
485 |
+
'Baloo Da 2' => array(
|
486 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
487 |
+
'category' => 'display',
|
488 |
+
),
|
489 |
+
'Baloo Paaji 2' => array(
|
490 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
491 |
+
'category' => 'display',
|
492 |
+
),
|
493 |
+
'Baloo Tamma 2' => array(
|
494 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
495 |
+
'category' => 'display',
|
496 |
+
),
|
497 |
+
'Baloo Tammudu 2' => array(
|
498 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
499 |
+
'category' => 'display',
|
500 |
+
),
|
501 |
+
'Baloo Thambi 2' => array(
|
502 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
503 |
+
'category' => 'display',
|
504 |
+
),
|
505 |
+
'Balsamiq Sans' => array(
|
506 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
507 |
+
'category' => 'display',
|
508 |
+
),
|
509 |
+
'Balthazar' => array(
|
510 |
+
'variants' => array('regular'),
|
511 |
+
'category' => 'serif',
|
512 |
+
),
|
513 |
+
'Bangers' => array(
|
514 |
+
'variants' => array('regular'),
|
515 |
+
'category' => 'display',
|
516 |
+
),
|
517 |
+
'Barlow' => array(
|
518 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
519 |
+
'category' => 'sans-serif',
|
520 |
+
),
|
521 |
+
'Barlow Condensed' => array(
|
522 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
523 |
+
'category' => 'sans-serif',
|
524 |
+
),
|
525 |
+
'Barlow Semi Condensed' => array(
|
526 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
527 |
+
'category' => 'sans-serif',
|
528 |
+
),
|
529 |
+
'Barriecito' => array(
|
530 |
+
'variants' => array('regular'),
|
531 |
+
'category' => 'display',
|
532 |
+
),
|
533 |
+
'Barrio' => array(
|
534 |
+
'variants' => array('regular'),
|
535 |
+
'category' => 'display',
|
536 |
+
),
|
537 |
+
'Basic' => array(
|
538 |
+
'variants' => array('regular'),
|
539 |
+
'category' => 'sans-serif',
|
540 |
+
),
|
541 |
+
'Baskervville' => array(
|
542 |
+
'variants' => array('regular', 'italic'),
|
543 |
+
'category' => 'serif',
|
544 |
+
),
|
545 |
+
'Battambang' => array(
|
546 |
+
'variants' => array('regular', '700'),
|
547 |
+
'category' => 'display',
|
548 |
+
),
|
549 |
+
'Baumans' => array(
|
550 |
+
'variants' => array('regular'),
|
551 |
+
'category' => 'display',
|
552 |
+
),
|
553 |
+
'Bayon' => array(
|
554 |
+
'variants' => array('regular'),
|
555 |
+
'category' => 'display',
|
556 |
+
),
|
557 |
+
'Be Vietnam' => array(
|
558 |
+
'variants' => array('100', '100italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
559 |
+
'category' => 'sans-serif',
|
560 |
+
),
|
561 |
+
'Bebas Neue' => array(
|
562 |
+
'variants' => array('regular'),
|
563 |
+
'category' => 'display',
|
564 |
+
),
|
565 |
+
'Belgrano' => array(
|
566 |
+
'variants' => array('regular'),
|
567 |
+
'category' => 'serif',
|
568 |
+
),
|
569 |
+
'Bellefair' => array(
|
570 |
+
'variants' => array('regular'),
|
571 |
+
'category' => 'serif',
|
572 |
+
),
|
573 |
+
'Belleza' => array(
|
574 |
+
'variants' => array('regular'),
|
575 |
+
'category' => 'sans-serif',
|
576 |
+
),
|
577 |
+
'Bellota' => array(
|
578 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
579 |
+
'category' => 'display',
|
580 |
+
),
|
581 |
+
'Bellota Text' => array(
|
582 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
583 |
+
'category' => 'display',
|
584 |
+
),
|
585 |
+
'BenchNine' => array(
|
586 |
+
'variants' => array('300', 'regular', '700'),
|
587 |
+
'category' => 'sans-serif',
|
588 |
+
),
|
589 |
+
'Benne' => array(
|
590 |
+
'variants' => array('regular'),
|
591 |
+
'category' => 'serif',
|
592 |
+
),
|
593 |
+
'Bentham' => array(
|
594 |
+
'variants' => array('regular'),
|
595 |
+
'category' => 'serif',
|
596 |
+
),
|
597 |
+
'Berkshire Swash' => array(
|
598 |
+
'variants' => array('regular'),
|
599 |
+
'category' => 'handwriting',
|
600 |
+
),
|
601 |
+
'Beth Ellen' => array(
|
602 |
+
'variants' => array('regular'),
|
603 |
+
'category' => 'handwriting',
|
604 |
+
),
|
605 |
+
'Bevan' => array(
|
606 |
+
'variants' => array('regular'),
|
607 |
+
'category' => 'display',
|
608 |
+
),
|
609 |
+
'Big Shoulders Display' => array(
|
610 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800', '900'),
|
611 |
+
'category' => 'display',
|
612 |
+
),
|
613 |
+
'Big Shoulders Inline Display' => array(
|
614 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800', '900'),
|
615 |
+
'category' => 'display',
|
616 |
+
),
|
617 |
+
'Big Shoulders Inline Text' => array(
|
618 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800', '900'),
|
619 |
+
'category' => 'display',
|
620 |
+
),
|
621 |
+
'Big Shoulders Stencil Display' => array(
|
622 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800', '900'),
|
623 |
+
'category' => 'display',
|
624 |
+
),
|
625 |
+
'Big Shoulders Stencil Text' => array(
|
626 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800', '900'),
|
627 |
+
'category' => 'display',
|
628 |
+
),
|
629 |
+
'Big Shoulders Text' => array(
|
630 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800', '900'),
|
631 |
+
'category' => 'display',
|
632 |
+
),
|
633 |
+
'Bigelow Rules' => array(
|
634 |
+
'variants' => array('regular'),
|
635 |
+
'category' => 'display',
|
636 |
+
),
|
637 |
+
'Bigshot One' => array(
|
638 |
+
'variants' => array('regular'),
|
639 |
+
'category' => 'display',
|
640 |
+
),
|
641 |
+
'Bilbo' => array(
|
642 |
+
'variants' => array('regular'),
|
643 |
+
'category' => 'handwriting',
|
644 |
+
),
|
645 |
+
'Bilbo Swash Caps' => array(
|
646 |
+
'variants' => array('regular'),
|
647 |
+
'category' => 'handwriting',
|
648 |
+
),
|
649 |
+
'BioRhyme' => array(
|
650 |
+
'variants' => array('200', '300', 'regular', '700', '800'),
|
651 |
+
'category' => 'serif',
|
652 |
+
),
|
653 |
+
'BioRhyme Expanded' => array(
|
654 |
+
'variants' => array('200', '300', 'regular', '700', '800'),
|
655 |
+
'category' => 'serif',
|
656 |
+
),
|
657 |
+
'Biryani' => array(
|
658 |
+
'variants' => array('200', '300', 'regular', '600', '700', '800', '900'),
|
659 |
+
'category' => 'sans-serif',
|
660 |
+
),
|
661 |
+
'Bitter' => array(
|
662 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
663 |
+
'category' => 'serif',
|
664 |
+
),
|
665 |
+
'Black And White Picture' => array(
|
666 |
+
'variants' => array('regular'),
|
667 |
+
'category' => 'sans-serif',
|
668 |
+
),
|
669 |
+
'Black Han Sans' => array(
|
670 |
+
'variants' => array('regular'),
|
671 |
+
'category' => 'sans-serif',
|
672 |
+
),
|
673 |
+
'Black Ops One' => array(
|
674 |
+
'variants' => array('regular'),
|
675 |
+
'category' => 'display',
|
676 |
+
),
|
677 |
+
'Blinker' => array(
|
678 |
+
'variants' => array('100', '200', '300', 'regular', '600', '700', '800', '900'),
|
679 |
+
'category' => 'sans-serif',
|
680 |
+
),
|
681 |
+
'Bodoni Moda' => array(
|
682 |
+
'variants' => array('regular', '500', '600', '700', '800', '900', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
683 |
+
'category' => 'serif',
|
684 |
+
),
|
685 |
+
'Bokor' => array(
|
686 |
+
'variants' => array('regular'),
|
687 |
+
'category' => 'display',
|
688 |
+
),
|
689 |
+
'Bonbon' => array(
|
690 |
+
'variants' => array('regular'),
|
691 |
+
'category' => 'handwriting',
|
692 |
+
),
|
693 |
+
'Boogaloo' => array(
|
694 |
+
'variants' => array('regular'),
|
695 |
+
'category' => 'display',
|
696 |
+
),
|
697 |
+
'Bowlby One' => array(
|
698 |
+
'variants' => array('regular'),
|
699 |
+
'category' => 'display',
|
700 |
+
),
|
701 |
+
'Bowlby One SC' => array(
|
702 |
+
'variants' => array('regular'),
|
703 |
+
'category' => 'display',
|
704 |
+
),
|
705 |
+
'Brawler' => array(
|
706 |
+
'variants' => array('regular'),
|
707 |
+
'category' => 'serif',
|
708 |
+
),
|
709 |
+
'Bree Serif' => array(
|
710 |
+
'variants' => array('regular'),
|
711 |
+
'category' => 'serif',
|
712 |
+
),
|
713 |
+
'Brygada 1918' => array(
|
714 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
715 |
+
'category' => 'serif',
|
716 |
+
),
|
717 |
+
'Bubblegum Sans' => array(
|
718 |
+
'variants' => array('regular'),
|
719 |
+
'category' => 'display',
|
720 |
+
),
|
721 |
+
'Bubbler One' => array(
|
722 |
+
'variants' => array('regular'),
|
723 |
+
'category' => 'sans-serif',
|
724 |
+
),
|
725 |
+
'Buda' => array(
|
726 |
+
'variants' => array('300'),
|
727 |
+
'category' => 'display',
|
728 |
+
),
|
729 |
+
'Buenard' => array(
|
730 |
+
'variants' => array('regular', '700'),
|
731 |
+
'category' => 'serif',
|
732 |
+
),
|
733 |
+
'Bungee' => array(
|
734 |
+
'variants' => array('regular'),
|
735 |
+
'category' => 'display',
|
736 |
+
),
|
737 |
+
'Bungee Hairline' => array(
|
738 |
+
'variants' => array('regular'),
|
739 |
+
'category' => 'display',
|
740 |
+
),
|
741 |
+
'Bungee Inline' => array(
|
742 |
+
'variants' => array('regular'),
|
743 |
+
'category' => 'display',
|
744 |
+
),
|
745 |
+
'Bungee Outline' => array(
|
746 |
+
'variants' => array('regular'),
|
747 |
+
'category' => 'display',
|
748 |
+
),
|
749 |
+
'Bungee Shade' => array(
|
750 |
+
'variants' => array('regular'),
|
751 |
+
'category' => 'display',
|
752 |
+
),
|
753 |
+
'Butcherman' => array(
|
754 |
+
'variants' => array('regular'),
|
755 |
+
'category' => 'display',
|
756 |
+
),
|
757 |
+
'Butterfly Kids' => array(
|
758 |
+
'variants' => array('regular'),
|
759 |
+
'category' => 'handwriting',
|
760 |
+
),
|
761 |
+
'Cabin' => array(
|
762 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
763 |
+
'category' => 'sans-serif',
|
764 |
+
),
|
765 |
+
'Cabin Condensed' => array(
|
766 |
+
'variants' => array('regular', '500', '600', '700'),
|
767 |
+
'category' => 'sans-serif',
|
768 |
+
),
|
769 |
+
'Cabin Sketch' => array(
|
770 |
+
'variants' => array('regular', '700'),
|
771 |
+
'category' => 'display',
|
772 |
+
),
|
773 |
+
'Caesar Dressing' => array(
|
774 |
+
'variants' => array('regular'),
|
775 |
+
'category' => 'display',
|
776 |
+
),
|
777 |
+
'Cagliostro' => array(
|
778 |
+
'variants' => array('regular'),
|
779 |
+
'category' => 'sans-serif',
|
780 |
+
),
|
781 |
+
'Cairo' => array(
|
782 |
+
'variants' => array('200', '300', 'regular', '600', '700', '900'),
|
783 |
+
'category' => 'sans-serif',
|
784 |
+
),
|
785 |
+
'Caladea' => array(
|
786 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
787 |
+
'category' => 'serif',
|
788 |
+
),
|
789 |
+
'Calistoga' => array(
|
790 |
+
'variants' => array('regular'),
|
791 |
+
'category' => 'display',
|
792 |
+
),
|
793 |
+
'Calligraffitti' => array(
|
794 |
+
'variants' => array('regular'),
|
795 |
+
'category' => 'handwriting',
|
796 |
+
),
|
797 |
+
'Cambay' => array(
|
798 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
799 |
+
'category' => 'sans-serif',
|
800 |
+
),
|
801 |
+
'Cambo' => array(
|
802 |
+
'variants' => array('regular'),
|
803 |
+
'category' => 'serif',
|
804 |
+
),
|
805 |
+
'Candal' => array(
|
806 |
+
'variants' => array('regular'),
|
807 |
+
'category' => 'sans-serif',
|
808 |
+
),
|
809 |
+
'Cantarell' => array(
|
810 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
811 |
+
'category' => 'sans-serif',
|
812 |
+
),
|
813 |
+
'Cantata One' => array(
|
814 |
+
'variants' => array('regular'),
|
815 |
+
'category' => 'serif',
|
816 |
+
),
|
817 |
+
'Cantora One' => array(
|
818 |
+
'variants' => array('regular'),
|
819 |
+
'category' => 'sans-serif',
|
820 |
+
),
|
821 |
+
'Capriola' => array(
|
822 |
+
'variants' => array('regular'),
|
823 |
+
'category' => 'sans-serif',
|
824 |
+
),
|
825 |
+
'Cardo' => array(
|
826 |
+
'variants' => array('regular', 'italic', '700'),
|
827 |
+
'category' => 'serif',
|
828 |
+
),
|
829 |
+
'Carme' => array(
|
830 |
+
'variants' => array('regular'),
|
831 |
+
'category' => 'sans-serif',
|
832 |
+
),
|
833 |
+
'Carrois Gothic' => array(
|
834 |
+
'variants' => array('regular'),
|
835 |
+
'category' => 'sans-serif',
|
836 |
+
),
|
837 |
+
'Carrois Gothic SC' => array(
|
838 |
+
'variants' => array('regular'),
|
839 |
+
'category' => 'sans-serif',
|
840 |
+
),
|
841 |
+
'Carter One' => array(
|
842 |
+
'variants' => array('regular'),
|
843 |
+
'category' => 'display',
|
844 |
+
),
|
845 |
+
'Castoro' => array(
|
846 |
+
'variants' => array('regular', 'italic'),
|
847 |
+
'category' => 'serif',
|
848 |
+
),
|
849 |
+
'Catamaran' => array(
|
850 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
851 |
+
'category' => 'sans-serif',
|
852 |
+
),
|
853 |
+
'Caudex' => array(
|
854 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
855 |
+
'category' => 'serif',
|
856 |
+
),
|
857 |
+
'Caveat' => array(
|
858 |
+
'variants' => array('regular', '500', '600', '700'),
|
859 |
+
'category' => 'handwriting',
|
860 |
+
),
|
861 |
+
'Caveat Brush' => array(
|
862 |
+
'variants' => array('regular'),
|
863 |
+
'category' => 'handwriting',
|
864 |
+
),
|
865 |
+
'Cedarville Cursive' => array(
|
866 |
+
'variants' => array('regular'),
|
867 |
+
'category' => 'handwriting',
|
868 |
+
),
|
869 |
+
'Ceviche One' => array(
|
870 |
+
'variants' => array('regular'),
|
871 |
+
'category' => 'display',
|
872 |
+
),
|
873 |
+
'Chakra Petch' => array(
|
874 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
875 |
+
'category' => 'sans-serif',
|
876 |
+
),
|
877 |
+
'Changa' => array(
|
878 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
879 |
+
'category' => 'sans-serif',
|
880 |
+
),
|
881 |
+
'Changa One' => array(
|
882 |
+
'variants' => array('regular', 'italic'),
|
883 |
+
'category' => 'display',
|
884 |
+
),
|
885 |
+
'Chango' => array(
|
886 |
+
'variants' => array('regular'),
|
887 |
+
'category' => 'display',
|
888 |
+
),
|
889 |
+
'Charm' => array(
|
890 |
+
'variants' => array('regular', '700'),
|
891 |
+
'category' => 'handwriting',
|
892 |
+
),
|
893 |
+
'Charmonman' => array(
|
894 |
+
'variants' => array('regular', '700'),
|
895 |
+
'category' => 'handwriting',
|
896 |
+
),
|
897 |
+
'Chathura' => array(
|
898 |
+
'variants' => array('100', '300', 'regular', '700', '800'),
|
899 |
+
'category' => 'sans-serif',
|
900 |
+
),
|
901 |
+
'Chau Philomene One' => array(
|
902 |
+
'variants' => array('regular', 'italic'),
|
903 |
+
'category' => 'sans-serif',
|
904 |
+
),
|
905 |
+
'Chela One' => array(
|
906 |
+
'variants' => array('regular'),
|
907 |
+
'category' => 'display',
|
908 |
+
),
|
909 |
+
'Chelsea Market' => array(
|
910 |
+
'variants' => array('regular'),
|
911 |
+
'category' => 'display',
|
912 |
+
),
|
913 |
+
'Chenla' => array(
|
914 |
+
'variants' => array('regular'),
|
915 |
+
'category' => 'display',
|
916 |
+
),
|
917 |
+
'Cherry Cream Soda' => array(
|
918 |
+
'variants' => array('regular'),
|
919 |
+
'category' => 'display',
|
920 |
+
),
|
921 |
+
'Cherry Swash' => array(
|
922 |
+
'variants' => array('regular', '700'),
|
923 |
+
'category' => 'display',
|
924 |
+
),
|
925 |
+
'Chewy' => array(
|
926 |
+
'variants' => array('regular'),
|
927 |
+
'category' => 'display',
|
928 |
+
),
|
929 |
+
'Chicle' => array(
|
930 |
+
'variants' => array('regular'),
|
931 |
+
'category' => 'display',
|
932 |
+
),
|
933 |
+
'Chilanka' => array(
|
934 |
+
'variants' => array('regular'),
|
935 |
+
'category' => 'handwriting',
|
936 |
+
),
|
937 |
+
'Chivo' => array(
|
938 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic', '900', '900italic'),
|
939 |
+
'category' => 'sans-serif',
|
940 |
+
),
|
941 |
+
'Chonburi' => array(
|
942 |
+
'variants' => array('regular'),
|
943 |
+
'category' => 'display',
|
944 |
+
),
|
945 |
+
'Cinzel' => array(
|
946 |
+
'variants' => array('regular', '500', '600', '700', '800', '900'),
|
947 |
+
'category' => 'serif',
|
948 |
+
),
|
949 |
+
'Cinzel Decorative' => array(
|
950 |
+
'variants' => array('regular', '700', '900'),
|
951 |
+
'category' => 'display',
|
952 |
+
),
|
953 |
+
'Clicker Script' => array(
|
954 |
+
'variants' => array('regular'),
|
955 |
+
'category' => 'handwriting',
|
956 |
+
),
|
957 |
+
'Coda' => array(
|
958 |
+
'variants' => array('regular', '800'),
|
959 |
+
'category' => 'display',
|
960 |
+
),
|
961 |
+
'Coda Caption' => array(
|
962 |
+
'variants' => array('800'),
|
963 |
+
'category' => 'sans-serif',
|
964 |
+
),
|
965 |
+
'Codystar' => array(
|
966 |
+
'variants' => array('300', 'regular'),
|
967 |
+
'category' => 'display',
|
968 |
+
),
|
969 |
+
'Coiny' => array(
|
970 |
+
'variants' => array('regular'),
|
971 |
+
'category' => 'display',
|
972 |
+
),
|
973 |
+
'Combo' => array(
|
974 |
+
'variants' => array('regular'),
|
975 |
+
'category' => 'display',
|
976 |
+
),
|
977 |
+
'Comfortaa' => array(
|
978 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
979 |
+
'category' => 'display',
|
980 |
+
),
|
981 |
+
'Comic Neue' => array(
|
982 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
983 |
+
'category' => 'handwriting',
|
984 |
+
),
|
985 |
+
'Coming Soon' => array(
|
986 |
+
'variants' => array('regular'),
|
987 |
+
'category' => 'handwriting',
|
988 |
+
),
|
989 |
+
'Commissioner' => array(
|
990 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
991 |
+
'category' => 'sans-serif',
|
992 |
+
),
|
993 |
+
'Concert One' => array(
|
994 |
+
'variants' => array('regular'),
|
995 |
+
'category' => 'display',
|
996 |
+
),
|
997 |
+
'Condiment' => array(
|
998 |
+
'variants' => array('regular'),
|
999 |
+
'category' => 'handwriting',
|
1000 |
+
),
|
1001 |
+
'Content' => array(
|
1002 |
+
'variants' => array('regular', '700'),
|
1003 |
+
'category' => 'display',
|
1004 |
+
),
|
1005 |
+
'Contrail One' => array(
|
1006 |
+
'variants' => array('regular'),
|
1007 |
+
'category' => 'display',
|
1008 |
+
),
|
1009 |
+
'Convergence' => array(
|
1010 |
+
'variants' => array('regular'),
|
1011 |
+
'category' => 'sans-serif',
|
1012 |
+
),
|
1013 |
+
'Cookie' => array(
|
1014 |
+
'variants' => array('regular'),
|
1015 |
+
'category' => 'handwriting',
|
1016 |
+
),
|
1017 |
+
'Copse' => array(
|
1018 |
+
'variants' => array('regular'),
|
1019 |
+
'category' => 'serif',
|
1020 |
+
),
|
1021 |
+
'Corben' => array(
|
1022 |
+
'variants' => array('regular', '700'),
|
1023 |
+
'category' => 'display',
|
1024 |
+
),
|
1025 |
+
'Cormorant' => array(
|
1026 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1027 |
+
'category' => 'serif',
|
1028 |
+
),
|
1029 |
+
'Cormorant Garamond' => array(
|
1030 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1031 |
+
'category' => 'serif',
|
1032 |
+
),
|
1033 |
+
'Cormorant Infant' => array(
|
1034 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1035 |
+
'category' => 'serif',
|
1036 |
+
),
|
1037 |
+
'Cormorant SC' => array(
|
1038 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1039 |
+
'category' => 'serif',
|
1040 |
+
),
|
1041 |
+
'Cormorant Unicase' => array(
|
1042 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1043 |
+
'category' => 'serif',
|
1044 |
+
),
|
1045 |
+
'Cormorant Upright' => array(
|
1046 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1047 |
+
'category' => 'serif',
|
1048 |
+
),
|
1049 |
+
'Courgette' => array(
|
1050 |
+
'variants' => array('regular'),
|
1051 |
+
'category' => 'handwriting',
|
1052 |
+
),
|
1053 |
+
'Courier Prime' => array(
|
1054 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1055 |
+
'category' => 'monospace',
|
1056 |
+
),
|
1057 |
+
'Cousine' => array(
|
1058 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1059 |
+
'category' => 'monospace',
|
1060 |
+
),
|
1061 |
+
'Coustard' => array(
|
1062 |
+
'variants' => array('regular', '900'),
|
1063 |
+
'category' => 'serif',
|
1064 |
+
),
|
1065 |
+
'Covered By Your Grace' => array(
|
1066 |
+
'variants' => array('regular'),
|
1067 |
+
'category' => 'handwriting',
|
1068 |
+
),
|
1069 |
+
'Crafty Girls' => array(
|
1070 |
+
'variants' => array('regular'),
|
1071 |
+
'category' => 'handwriting',
|
1072 |
+
),
|
1073 |
+
'Creepster' => array(
|
1074 |
+
'variants' => array('regular'),
|
1075 |
+
'category' => 'display',
|
1076 |
+
),
|
1077 |
+
'Crete Round' => array(
|
1078 |
+
'variants' => array('regular', 'italic'),
|
1079 |
+
'category' => 'serif',
|
1080 |
+
),
|
1081 |
+
'Crimson Pro' => array(
|
1082 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800', '900', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1083 |
+
'category' => 'serif',
|
1084 |
+
),
|
1085 |
+
'Crimson Text' => array(
|
1086 |
+
'variants' => array('regular', 'italic', '600', '600italic', '700', '700italic'),
|
1087 |
+
'category' => 'serif',
|
1088 |
+
),
|
1089 |
+
'Croissant One' => array(
|
1090 |
+
'variants' => array('regular'),
|
1091 |
+
'category' => 'display',
|
1092 |
+
),
|
1093 |
+
'Crushed' => array(
|
1094 |
+
'variants' => array('regular'),
|
1095 |
+
'category' => 'display',
|
1096 |
+
),
|
1097 |
+
'Cuprum' => array(
|
1098 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
1099 |
+
'category' => 'sans-serif',
|
1100 |
+
),
|
1101 |
+
'Cute Font' => array(
|
1102 |
+
'variants' => array('regular'),
|
1103 |
+
'category' => 'display',
|
1104 |
+
),
|
1105 |
+
'Cutive' => array(
|
1106 |
+
'variants' => array('regular'),
|
1107 |
+
'category' => 'serif',
|
1108 |
+
),
|
1109 |
+
'Cutive Mono' => array(
|
1110 |
+
'variants' => array('regular'),
|
1111 |
+
'category' => 'monospace',
|
1112 |
+
),
|
1113 |
+
'DM Mono' => array(
|
1114 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic'),
|
1115 |
+
'category' => 'monospace',
|
1116 |
+
),
|
1117 |
+
'DM Sans' => array(
|
1118 |
+
'variants' => array('regular', 'italic', '500', '500italic', '700', '700italic'),
|
1119 |
+
'category' => 'sans-serif',
|
1120 |
+
),
|
1121 |
+
'DM Serif Display' => array(
|
1122 |
+
'variants' => array('regular', 'italic'),
|
1123 |
+
'category' => 'serif',
|
1124 |
+
),
|
1125 |
+
'DM Serif Text' => array(
|
1126 |
+
'variants' => array('regular', 'italic'),
|
1127 |
+
'category' => 'serif',
|
1128 |
+
),
|
1129 |
+
'Damion' => array(
|
1130 |
+
'variants' => array('regular'),
|
1131 |
+
'category' => 'handwriting',
|
1132 |
+
),
|
1133 |
+
'Dancing Script' => array(
|
1134 |
+
'variants' => array('regular', '500', '600', '700'),
|
1135 |
+
'category' => 'handwriting',
|
1136 |
+
),
|
1137 |
+
'Dangrek' => array(
|
1138 |
+
'variants' => array('regular'),
|
1139 |
+
'category' => 'display',
|
1140 |
+
),
|
1141 |
+
'Darker Grotesque' => array(
|
1142 |
+
'variants' => array('300', 'regular', '500', '600', '700', '800', '900'),
|
1143 |
+
'category' => 'sans-serif',
|
1144 |
+
),
|
1145 |
+
'David Libre' => array(
|
1146 |
+
'variants' => array('regular', '500', '700'),
|
1147 |
+
'category' => 'serif',
|
1148 |
+
),
|
1149 |
+
'Dawning of a New Day' => array(
|
1150 |
+
'variants' => array('regular'),
|
1151 |
+
'category' => 'handwriting',
|
1152 |
+
),
|
1153 |
+
'Days One' => array(
|
1154 |
+
'variants' => array('regular'),
|
1155 |
+
'category' => 'sans-serif',
|
1156 |
+
),
|
1157 |
+
'Dekko' => array(
|
1158 |
+
'variants' => array('regular'),
|
1159 |
+
'category' => 'handwriting',
|
1160 |
+
),
|
1161 |
+
'Dela Gothic One' => array(
|
1162 |
+
'variants' => array('regular'),
|
1163 |
+
'category' => 'display',
|
1164 |
+
),
|
1165 |
+
'Delius' => array(
|
1166 |
+
'variants' => array('regular'),
|
1167 |
+
'category' => 'handwriting',
|
1168 |
+
),
|
1169 |
+
'Delius Swash Caps' => array(
|
1170 |
+
'variants' => array('regular'),
|
1171 |
+
'category' => 'handwriting',
|
1172 |
+
),
|
1173 |
+
'Delius Unicase' => array(
|
1174 |
+
'variants' => array('regular', '700'),
|
1175 |
+
'category' => 'handwriting',
|
1176 |
+
),
|
1177 |
+
'Della Respira' => array(
|
1178 |
+
'variants' => array('regular'),
|
1179 |
+
'category' => 'serif',
|
1180 |
+
),
|
1181 |
+
'Denk One' => array(
|
1182 |
+
'variants' => array('regular'),
|
1183 |
+
'category' => 'sans-serif',
|
1184 |
+
),
|
1185 |
+
'Devonshire' => array(
|
1186 |
+
'variants' => array('regular'),
|
1187 |
+
'category' => 'handwriting',
|
1188 |
+
),
|
1189 |
+
'Dhurjati' => array(
|
1190 |
+
'variants' => array('regular'),
|
1191 |
+
'category' => 'sans-serif',
|
1192 |
+
),
|
1193 |
+
'Didact Gothic' => array(
|
1194 |
+
'variants' => array('regular'),
|
1195 |
+
'category' => 'sans-serif',
|
1196 |
+
),
|
1197 |
+
'Diplomata' => array(
|
1198 |
+
'variants' => array('regular'),
|
1199 |
+
'category' => 'display',
|
1200 |
+
),
|
1201 |
+
'Diplomata SC' => array(
|
1202 |
+
'variants' => array('regular'),
|
1203 |
+
'category' => 'display',
|
1204 |
+
),
|
1205 |
+
'Do Hyeon' => array(
|
1206 |
+
'variants' => array('regular'),
|
1207 |
+
'category' => 'sans-serif',
|
1208 |
+
),
|
1209 |
+
'Dokdo' => array(
|
1210 |
+
'variants' => array('regular'),
|
1211 |
+
'category' => 'handwriting',
|
1212 |
+
),
|
1213 |
+
'Domine' => array(
|
1214 |
+
'variants' => array('regular', '500', '600', '700'),
|
1215 |
+
'category' => 'serif',
|
1216 |
+
),
|
1217 |
+
'Donegal One' => array(
|
1218 |
+
'variants' => array('regular'),
|
1219 |
+
'category' => 'serif',
|
1220 |
+
),
|
1221 |
+
'Doppio One' => array(
|
1222 |
+
'variants' => array('regular'),
|
1223 |
+
'category' => 'sans-serif',
|
1224 |
+
),
|
1225 |
+
'Dorsa' => array(
|
1226 |
+
'variants' => array('regular'),
|
1227 |
+
'category' => 'sans-serif',
|
1228 |
+
),
|
1229 |
+
'Dosis' => array(
|
1230 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
1231 |
+
'category' => 'sans-serif',
|
1232 |
+
),
|
1233 |
+
'DotGothic16' => array(
|
1234 |
+
'variants' => array('regular'),
|
1235 |
+
'category' => 'sans-serif',
|
1236 |
+
),
|
1237 |
+
'Dr Sugiyama' => array(
|
1238 |
+
'variants' => array('regular'),
|
1239 |
+
'category' => 'handwriting',
|
1240 |
+
),
|
1241 |
+
'Duru Sans' => array(
|
1242 |
+
'variants' => array('regular'),
|
1243 |
+
'category' => 'sans-serif',
|
1244 |
+
),
|
1245 |
+
'Dynalight' => array(
|
1246 |
+
'variants' => array('regular'),
|
1247 |
+
'category' => 'display',
|
1248 |
+
),
|
1249 |
+
'EB Garamond' => array(
|
1250 |
+
'variants' => array('regular', '500', '600', '700', '800', 'italic', '500italic', '600italic', '700italic', '800italic'),
|
1251 |
+
'category' => 'serif',
|
1252 |
+
),
|
1253 |
+
'Eagle Lake' => array(
|
1254 |
+
'variants' => array('regular'),
|
1255 |
+
'category' => 'handwriting',
|
1256 |
+
),
|
1257 |
+
'East Sea Dokdo' => array(
|
1258 |
+
'variants' => array('regular'),
|
1259 |
+
'category' => 'handwriting',
|
1260 |
+
),
|
1261 |
+
'Eater' => array(
|
1262 |
+
'variants' => array('regular'),
|
1263 |
+
'category' => 'display',
|
1264 |
+
),
|
1265 |
+
'Economica' => array(
|
1266 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1267 |
+
'category' => 'sans-serif',
|
1268 |
+
),
|
1269 |
+
'Eczar' => array(
|
1270 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
1271 |
+
'category' => 'serif',
|
1272 |
+
),
|
1273 |
+
'El Messiri' => array(
|
1274 |
+
'variants' => array('regular', '500', '600', '700'),
|
1275 |
+
'category' => 'sans-serif',
|
1276 |
+
),
|
1277 |
+
'Electrolize' => array(
|
1278 |
+
'variants' => array('regular'),
|
1279 |
+
'category' => 'sans-serif',
|
1280 |
+
),
|
1281 |
+
'Elsie' => array(
|
1282 |
+
'variants' => array('regular', '900'),
|
1283 |
+
'category' => 'display',
|
1284 |
+
),
|
1285 |
+
'Elsie Swash Caps' => array(
|
1286 |
+
'variants' => array('regular', '900'),
|
1287 |
+
'category' => 'display',
|
1288 |
+
),
|
1289 |
+
'Emblema One' => array(
|
1290 |
+
'variants' => array('regular'),
|
1291 |
+
'category' => 'display',
|
1292 |
+
),
|
1293 |
+
'Emilys Candy' => array(
|
1294 |
+
'variants' => array('regular'),
|
1295 |
+
'category' => 'display',
|
1296 |
+
),
|
1297 |
+
'Encode Sans' => array(
|
1298 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1299 |
+
'category' => 'sans-serif',
|
1300 |
+
),
|
1301 |
+
'Encode Sans Condensed' => array(
|
1302 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1303 |
+
'category' => 'sans-serif',
|
1304 |
+
),
|
1305 |
+
'Encode Sans Expanded' => array(
|
1306 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1307 |
+
'category' => 'sans-serif',
|
1308 |
+
),
|
1309 |
+
'Encode Sans Semi Condensed' => array(
|
1310 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1311 |
+
'category' => 'sans-serif',
|
1312 |
+
),
|
1313 |
+
'Encode Sans Semi Expanded' => array(
|
1314 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1315 |
+
'category' => 'sans-serif',
|
1316 |
+
),
|
1317 |
+
'Engagement' => array(
|
1318 |
+
'variants' => array('regular'),
|
1319 |
+
'category' => 'handwriting',
|
1320 |
+
),
|
1321 |
+
'Englebert' => array(
|
1322 |
+
'variants' => array('regular'),
|
1323 |
+
'category' => 'sans-serif',
|
1324 |
+
),
|
1325 |
+
'Enriqueta' => array(
|
1326 |
+
'variants' => array('regular', '500', '600', '700'),
|
1327 |
+
'category' => 'serif',
|
1328 |
+
),
|
1329 |
+
'Epilogue' => array(
|
1330 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1331 |
+
'category' => 'sans-serif',
|
1332 |
+
),
|
1333 |
+
'Erica One' => array(
|
1334 |
+
'variants' => array('regular'),
|
1335 |
+
'category' => 'display',
|
1336 |
+
),
|
1337 |
+
'Esteban' => array(
|
1338 |
+
'variants' => array('regular'),
|
1339 |
+
'category' => 'serif',
|
1340 |
+
),
|
1341 |
+
'Euphoria Script' => array(
|
1342 |
+
'variants' => array('regular'),
|
1343 |
+
'category' => 'handwriting',
|
1344 |
+
),
|
1345 |
+
'Ewert' => array(
|
1346 |
+
'variants' => array('regular'),
|
1347 |
+
'category' => 'display',
|
1348 |
+
),
|
1349 |
+
'Exo' => array(
|
1350 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1351 |
+
'category' => 'sans-serif',
|
1352 |
+
),
|
1353 |
+
'Exo 2' => array(
|
1354 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1355 |
+
'category' => 'sans-serif',
|
1356 |
+
),
|
1357 |
+
'Expletus Sans' => array(
|
1358 |
+
'variants' => array('regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1359 |
+
'category' => 'display',
|
1360 |
+
),
|
1361 |
+
'Fahkwang' => array(
|
1362 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1363 |
+
'category' => 'sans-serif',
|
1364 |
+
),
|
1365 |
+
'Fanwood Text' => array(
|
1366 |
+
'variants' => array('regular', 'italic'),
|
1367 |
+
'category' => 'serif',
|
1368 |
+
),
|
1369 |
+
'Farro' => array(
|
1370 |
+
'variants' => array('300', 'regular', '500', '700'),
|
1371 |
+
'category' => 'sans-serif',
|
1372 |
+
),
|
1373 |
+
'Farsan' => array(
|
1374 |
+
'variants' => array('regular'),
|
1375 |
+
'category' => 'display',
|
1376 |
+
),
|
1377 |
+
'Fascinate' => array(
|
1378 |
+
'variants' => array('regular'),
|
1379 |
+
'category' => 'display',
|
1380 |
+
),
|
1381 |
+
'Fascinate Inline' => array(
|
1382 |
+
'variants' => array('regular'),
|
1383 |
+
'category' => 'display',
|
1384 |
+
),
|
1385 |
+
'Faster One' => array(
|
1386 |
+
'variants' => array('regular'),
|
1387 |
+
'category' => 'display',
|
1388 |
+
),
|
1389 |
+
'Fasthand' => array(
|
1390 |
+
'variants' => array('regular'),
|
1391 |
+
'category' => 'serif',
|
1392 |
+
),
|
1393 |
+
'Fauna One' => array(
|
1394 |
+
'variants' => array('regular'),
|
1395 |
+
'category' => 'serif',
|
1396 |
+
),
|
1397 |
+
'Faustina' => array(
|
1398 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
1399 |
+
'category' => 'serif',
|
1400 |
+
),
|
1401 |
+
'Federant' => array(
|
1402 |
+
'variants' => array('regular'),
|
1403 |
+
'category' => 'display',
|
1404 |
+
),
|
1405 |
+
'Federo' => array(
|
1406 |
+
'variants' => array('regular'),
|
1407 |
+
'category' => 'sans-serif',
|
1408 |
+
),
|
1409 |
+
'Felipa' => array(
|
1410 |
+
'variants' => array('regular'),
|
1411 |
+
'category' => 'handwriting',
|
1412 |
+
),
|
1413 |
+
'Fenix' => array(
|
1414 |
+
'variants' => array('regular'),
|
1415 |
+
'category' => 'serif',
|
1416 |
+
),
|
1417 |
+
'Finger Paint' => array(
|
1418 |
+
'variants' => array('regular'),
|
1419 |
+
'category' => 'display',
|
1420 |
+
),
|
1421 |
+
'Fira Code' => array(
|
1422 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1423 |
+
'category' => 'monospace',
|
1424 |
+
),
|
1425 |
+
'Fira Mono' => array(
|
1426 |
+
'variants' => array('regular', '500', '700'),
|
1427 |
+
'category' => 'monospace',
|
1428 |
+
),
|
1429 |
+
'Fira Sans' => array(
|
1430 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
1431 |
+
'category' => 'sans-serif',
|
1432 |
+
),
|
1433 |
+
'Fira Sans Condensed' => array(
|
1434 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
1435 |
+
'category' => 'sans-serif',
|
1436 |
+
),
|
1437 |
+
'Fira Sans Extra Condensed' => array(
|
1438 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
1439 |
+
'category' => 'sans-serif',
|
1440 |
+
),
|
1441 |
+
'Fjalla One' => array(
|
1442 |
+
'variants' => array('regular'),
|
1443 |
+
'category' => 'sans-serif',
|
1444 |
+
),
|
1445 |
+
'Fjord One' => array(
|
1446 |
+
'variants' => array('regular'),
|
1447 |
+
'category' => 'serif',
|
1448 |
+
),
|
1449 |
+
'Flamenco' => array(
|
1450 |
+
'variants' => array('300', 'regular'),
|
1451 |
+
'category' => 'display',
|
1452 |
+
),
|
1453 |
+
'Flavors' => array(
|
1454 |
+
'variants' => array('regular'),
|
1455 |
+
'category' => 'display',
|
1456 |
+
),
|
1457 |
+
'Fondamento' => array(
|
1458 |
+
'variants' => array('regular', 'italic'),
|
1459 |
+
'category' => 'handwriting',
|
1460 |
+
),
|
1461 |
+
'Fontdiner Swanky' => array(
|
1462 |
+
'variants' => array('regular'),
|
1463 |
+
'category' => 'display',
|
1464 |
+
),
|
1465 |
+
'Forum' => array(
|
1466 |
+
'variants' => array('regular'),
|
1467 |
+
'category' => 'display',
|
1468 |
+
),
|
1469 |
+
'Francois One' => array(
|
1470 |
+
'variants' => array('regular'),
|
1471 |
+
'category' => 'sans-serif',
|
1472 |
+
),
|
1473 |
+
'Frank Ruhl Libre' => array(
|
1474 |
+
'variants' => array('300', 'regular', '500', '700', '900'),
|
1475 |
+
'category' => 'serif',
|
1476 |
+
),
|
1477 |
+
'Fraunces' => array(
|
1478 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1479 |
+
'category' => 'serif',
|
1480 |
+
),
|
1481 |
+
'Freckle Face' => array(
|
1482 |
+
'variants' => array('regular'),
|
1483 |
+
'category' => 'display',
|
1484 |
+
),
|
1485 |
+
'Fredericka the Great' => array(
|
1486 |
+
'variants' => array('regular'),
|
1487 |
+
'category' => 'display',
|
1488 |
+
),
|
1489 |
+
'Fredoka One' => array(
|
1490 |
+
'variants' => array('regular'),
|
1491 |
+
'category' => 'display',
|
1492 |
+
),
|
1493 |
+
'Freehand' => array(
|
1494 |
+
'variants' => array('regular'),
|
1495 |
+
'category' => 'display',
|
1496 |
+
),
|
1497 |
+
'Fresca' => array(
|
1498 |
+
'variants' => array('regular'),
|
1499 |
+
'category' => 'sans-serif',
|
1500 |
+
),
|
1501 |
+
'Frijole' => array(
|
1502 |
+
'variants' => array('regular'),
|
1503 |
+
'category' => 'display',
|
1504 |
+
),
|
1505 |
+
'Fruktur' => array(
|
1506 |
+
'variants' => array('regular'),
|
1507 |
+
'category' => 'display',
|
1508 |
+
),
|
1509 |
+
'Fugaz One' => array(
|
1510 |
+
'variants' => array('regular'),
|
1511 |
+
'category' => 'display',
|
1512 |
+
),
|
1513 |
+
'GFS Didot' => array(
|
1514 |
+
'variants' => array('regular'),
|
1515 |
+
'category' => 'serif',
|
1516 |
+
),
|
1517 |
+
'GFS Neohellenic' => array(
|
1518 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1519 |
+
'category' => 'sans-serif',
|
1520 |
+
),
|
1521 |
+
'Gabriela' => array(
|
1522 |
+
'variants' => array('regular'),
|
1523 |
+
'category' => 'serif',
|
1524 |
+
),
|
1525 |
+
'Gaegu' => array(
|
1526 |
+
'variants' => array('300', 'regular', '700'),
|
1527 |
+
'category' => 'handwriting',
|
1528 |
+
),
|
1529 |
+
'Gafata' => array(
|
1530 |
+
'variants' => array('regular'),
|
1531 |
+
'category' => 'sans-serif',
|
1532 |
+
),
|
1533 |
+
'Galada' => array(
|
1534 |
+
'variants' => array('regular'),
|
1535 |
+
'category' => 'display',
|
1536 |
+
),
|
1537 |
+
'Galdeano' => array(
|
1538 |
+
'variants' => array('regular'),
|
1539 |
+
'category' => 'sans-serif',
|
1540 |
+
),
|
1541 |
+
'Galindo' => array(
|
1542 |
+
'variants' => array('regular'),
|
1543 |
+
'category' => 'display',
|
1544 |
+
),
|
1545 |
+
'Gamja Flower' => array(
|
1546 |
+
'variants' => array('regular'),
|
1547 |
+
'category' => 'handwriting',
|
1548 |
+
),
|
1549 |
+
'Gayathri' => array(
|
1550 |
+
'variants' => array('100', 'regular', '700'),
|
1551 |
+
'category' => 'sans-serif',
|
1552 |
+
),
|
1553 |
+
'Gelasio' => array(
|
1554 |
+
'variants' => array('regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1555 |
+
'category' => 'serif',
|
1556 |
+
),
|
1557 |
+
'Gentium Basic' => array(
|
1558 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1559 |
+
'category' => 'serif',
|
1560 |
+
),
|
1561 |
+
'Gentium Book Basic' => array(
|
1562 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1563 |
+
'category' => 'serif',
|
1564 |
+
),
|
1565 |
+
'Geo' => array(
|
1566 |
+
'variants' => array('regular', 'italic'),
|
1567 |
+
'category' => 'sans-serif',
|
1568 |
+
),
|
1569 |
+
'Geostar' => array(
|
1570 |
+
'variants' => array('regular'),
|
1571 |
+
'category' => 'display',
|
1572 |
+
),
|
1573 |
+
'Geostar Fill' => array(
|
1574 |
+
'variants' => array('regular'),
|
1575 |
+
'category' => 'display',
|
1576 |
+
),
|
1577 |
+
'Germania One' => array(
|
1578 |
+
'variants' => array('regular'),
|
1579 |
+
'category' => 'display',
|
1580 |
+
),
|
1581 |
+
'Gidugu' => array(
|
1582 |
+
'variants' => array('regular'),
|
1583 |
+
'category' => 'sans-serif',
|
1584 |
+
),
|
1585 |
+
'Gilda Display' => array(
|
1586 |
+
'variants' => array('regular'),
|
1587 |
+
'category' => 'serif',
|
1588 |
+
),
|
1589 |
+
'Girassol' => array(
|
1590 |
+
'variants' => array('regular'),
|
1591 |
+
'category' => 'display',
|
1592 |
+
),
|
1593 |
+
'Give You Glory' => array(
|
1594 |
+
'variants' => array('regular'),
|
1595 |
+
'category' => 'handwriting',
|
1596 |
+
),
|
1597 |
+
'Glass Antiqua' => array(
|
1598 |
+
'variants' => array('regular'),
|
1599 |
+
'category' => 'display',
|
1600 |
+
),
|
1601 |
+
'Glegoo' => array(
|
1602 |
+
'variants' => array('regular', '700'),
|
1603 |
+
'category' => 'serif',
|
1604 |
+
),
|
1605 |
+
'Gloria Hallelujah' => array(
|
1606 |
+
'variants' => array('regular'),
|
1607 |
+
'category' => 'handwriting',
|
1608 |
+
),
|
1609 |
+
'Goblin One' => array(
|
1610 |
+
'variants' => array('regular'),
|
1611 |
+
'category' => 'display',
|
1612 |
+
),
|
1613 |
+
'Gochi Hand' => array(
|
1614 |
+
'variants' => array('regular'),
|
1615 |
+
'category' => 'handwriting',
|
1616 |
+
),
|
1617 |
+
'Goldman' => array(
|
1618 |
+
'variants' => array('regular', '700'),
|
1619 |
+
'category' => 'display',
|
1620 |
+
),
|
1621 |
+
'Gorditas' => array(
|
1622 |
+
'variants' => array('regular', '700'),
|
1623 |
+
'category' => 'display',
|
1624 |
+
),
|
1625 |
+
'Gothic A1' => array(
|
1626 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1627 |
+
'category' => 'sans-serif',
|
1628 |
+
),
|
1629 |
+
'Gotu' => array(
|
1630 |
+
'variants' => array('regular'),
|
1631 |
+
'category' => 'sans-serif',
|
1632 |
+
),
|
1633 |
+
'Goudy Bookletter 1911' => array(
|
1634 |
+
'variants' => array('regular'),
|
1635 |
+
'category' => 'serif',
|
1636 |
+
),
|
1637 |
+
'Graduate' => array(
|
1638 |
+
'variants' => array('regular'),
|
1639 |
+
'category' => 'display',
|
1640 |
+
),
|
1641 |
+
'Grand Hotel' => array(
|
1642 |
+
'variants' => array('regular'),
|
1643 |
+
'category' => 'handwriting',
|
1644 |
+
),
|
1645 |
+
'Grandstander' => array(
|
1646 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1647 |
+
'category' => 'display',
|
1648 |
+
),
|
1649 |
+
'Gravitas One' => array(
|
1650 |
+
'variants' => array('regular'),
|
1651 |
+
'category' => 'display',
|
1652 |
+
),
|
1653 |
+
'Great Vibes' => array(
|
1654 |
+
'variants' => array('regular'),
|
1655 |
+
'category' => 'handwriting',
|
1656 |
+
),
|
1657 |
+
'Grenze' => array(
|
1658 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
1659 |
+
'category' => 'serif',
|
1660 |
+
),
|
1661 |
+
'Grenze Gotisch' => array(
|
1662 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1663 |
+
'category' => 'display',
|
1664 |
+
),
|
1665 |
+
'Griffy' => array(
|
1666 |
+
'variants' => array('regular'),
|
1667 |
+
'category' => 'display',
|
1668 |
+
),
|
1669 |
+
'Gruppo' => array(
|
1670 |
+
'variants' => array('regular'),
|
1671 |
+
'category' => 'display',
|
1672 |
+
),
|
1673 |
+
'Gudea' => array(
|
1674 |
+
'variants' => array('regular', 'italic', '700'),
|
1675 |
+
'category' => 'sans-serif',
|
1676 |
+
),
|
1677 |
+
'Gugi' => array(
|
1678 |
+
'variants' => array('regular'),
|
1679 |
+
'category' => 'display',
|
1680 |
+
),
|
1681 |
+
'Gupter' => array(
|
1682 |
+
'variants' => array('regular', '500', '700'),
|
1683 |
+
'category' => 'serif',
|
1684 |
+
),
|
1685 |
+
'Gurajada' => array(
|
1686 |
+
'variants' => array('regular'),
|
1687 |
+
'category' => 'serif',
|
1688 |
+
),
|
1689 |
+
'Habibi' => array(
|
1690 |
+
'variants' => array('regular'),
|
1691 |
+
'category' => 'serif',
|
1692 |
+
),
|
1693 |
+
'Hachi Maru Pop' => array(
|
1694 |
+
'variants' => array('regular'),
|
1695 |
+
'category' => 'handwriting',
|
1696 |
+
),
|
1697 |
+
'Halant' => array(
|
1698 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1699 |
+
'category' => 'serif',
|
1700 |
+
),
|
1701 |
+
'Hammersmith One' => array(
|
1702 |
+
'variants' => array('regular'),
|
1703 |
+
'category' => 'sans-serif',
|
1704 |
+
),
|
1705 |
+
'Hanalei' => array(
|
1706 |
+
'variants' => array('regular'),
|
1707 |
+
'category' => 'display',
|
1708 |
+
),
|
1709 |
+
'Hanalei Fill' => array(
|
1710 |
+
'variants' => array('regular'),
|
1711 |
+
'category' => 'display',
|
1712 |
+
),
|
1713 |
+
'Handlee' => array(
|
1714 |
+
'variants' => array('regular'),
|
1715 |
+
'category' => 'handwriting',
|
1716 |
+
),
|
1717 |
+
'Hanuman' => array(
|
1718 |
+
'variants' => array('regular', '700'),
|
1719 |
+
'category' => 'serif',
|
1720 |
+
),
|
1721 |
+
'Happy Monkey' => array(
|
1722 |
+
'variants' => array('regular'),
|
1723 |
+
'category' => 'display',
|
1724 |
+
),
|
1725 |
+
'Harmattan' => array(
|
1726 |
+
'variants' => array('regular', '700'),
|
1727 |
+
'category' => 'sans-serif',
|
1728 |
+
),
|
1729 |
+
'Headland One' => array(
|
1730 |
+
'variants' => array('regular'),
|
1731 |
+
'category' => 'serif',
|
1732 |
+
),
|
1733 |
+
'Heebo' => array(
|
1734 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1735 |
+
'category' => 'sans-serif',
|
1736 |
+
),
|
1737 |
+
'Henny Penny' => array(
|
1738 |
+
'variants' => array('regular'),
|
1739 |
+
'category' => 'display',
|
1740 |
+
),
|
1741 |
+
'Hepta Slab' => array(
|
1742 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1743 |
+
'category' => 'serif',
|
1744 |
+
),
|
1745 |
+
'Herr Von Muellerhoff' => array(
|
1746 |
+
'variants' => array('regular'),
|
1747 |
+
'category' => 'handwriting',
|
1748 |
+
),
|
1749 |
+
'Hi Melody' => array(
|
1750 |
+
'variants' => array('regular'),
|
1751 |
+
'category' => 'handwriting',
|
1752 |
+
),
|
1753 |
+
'Hind' => array(
|
1754 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1755 |
+
'category' => 'sans-serif',
|
1756 |
+
),
|
1757 |
+
'Hind Guntur' => array(
|
1758 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1759 |
+
'category' => 'sans-serif',
|
1760 |
+
),
|
1761 |
+
'Hind Madurai' => array(
|
1762 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1763 |
+
'category' => 'sans-serif',
|
1764 |
+
),
|
1765 |
+
'Hind Siliguri' => array(
|
1766 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1767 |
+
'category' => 'sans-serif',
|
1768 |
+
),
|
1769 |
+
'Hind Vadodara' => array(
|
1770 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1771 |
+
'category' => 'sans-serif',
|
1772 |
+
),
|
1773 |
+
'Holtwood One SC' => array(
|
1774 |
+
'variants' => array('regular'),
|
1775 |
+
'category' => 'serif',
|
1776 |
+
),
|
1777 |
+
'Homemade Apple' => array(
|
1778 |
+
'variants' => array('regular'),
|
1779 |
+
'category' => 'handwriting',
|
1780 |
+
),
|
1781 |
+
'Homenaje' => array(
|
1782 |
+
'variants' => array('regular'),
|
1783 |
+
'category' => 'sans-serif',
|
1784 |
+
),
|
1785 |
+
'IBM Plex Mono' => array(
|
1786 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1787 |
+
'category' => 'monospace',
|
1788 |
+
),
|
1789 |
+
'IBM Plex Sans' => array(
|
1790 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1791 |
+
'category' => 'sans-serif',
|
1792 |
+
),
|
1793 |
+
'IBM Plex Sans Condensed' => array(
|
1794 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1795 |
+
'category' => 'sans-serif',
|
1796 |
+
),
|
1797 |
+
'IBM Plex Serif' => array(
|
1798 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
1799 |
+
'category' => 'serif',
|
1800 |
+
),
|
1801 |
+
'IM Fell DW Pica' => array(
|
1802 |
+
'variants' => array('regular', 'italic'),
|
1803 |
+
'category' => 'serif',
|
1804 |
+
),
|
1805 |
+
'IM Fell DW Pica SC' => array(
|
1806 |
+
'variants' => array('regular'),
|
1807 |
+
'category' => 'serif',
|
1808 |
+
),
|
1809 |
+
'IM Fell Double Pica' => array(
|
1810 |
+
'variants' => array('regular', 'italic'),
|
1811 |
+
'category' => 'serif',
|
1812 |
+
),
|
1813 |
+
'IM Fell Double Pica SC' => array(
|
1814 |
+
'variants' => array('regular'),
|
1815 |
+
'category' => 'serif',
|
1816 |
+
),
|
1817 |
+
'IM Fell English' => array(
|
1818 |
+
'variants' => array('regular', 'italic'),
|
1819 |
+
'category' => 'serif',
|
1820 |
+
),
|
1821 |
+
'IM Fell English SC' => array(
|
1822 |
+
'variants' => array('regular'),
|
1823 |
+
'category' => 'serif',
|
1824 |
+
),
|
1825 |
+
'IM Fell French Canon' => array(
|
1826 |
+
'variants' => array('regular', 'italic'),
|
1827 |
+
'category' => 'serif',
|
1828 |
+
),
|
1829 |
+
'IM Fell French Canon SC' => array(
|
1830 |
+
'variants' => array('regular'),
|
1831 |
+
'category' => 'serif',
|
1832 |
+
),
|
1833 |
+
'IM Fell Great Primer' => array(
|
1834 |
+
'variants' => array('regular', 'italic'),
|
1835 |
+
'category' => 'serif',
|
1836 |
+
),
|
1837 |
+
'IM Fell Great Primer SC' => array(
|
1838 |
+
'variants' => array('regular'),
|
1839 |
+
'category' => 'serif',
|
1840 |
+
),
|
1841 |
+
'Ibarra Real Nova' => array(
|
1842 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
1843 |
+
'category' => 'serif',
|
1844 |
+
),
|
1845 |
+
'Iceberg' => array(
|
1846 |
+
'variants' => array('regular'),
|
1847 |
+
'category' => 'display',
|
1848 |
+
),
|
1849 |
+
'Iceland' => array(
|
1850 |
+
'variants' => array('regular'),
|
1851 |
+
'category' => 'display',
|
1852 |
+
),
|
1853 |
+
'Imbue' => array(
|
1854 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1855 |
+
'category' => 'serif',
|
1856 |
+
),
|
1857 |
+
'Imprima' => array(
|
1858 |
+
'variants' => array('regular'),
|
1859 |
+
'category' => 'sans-serif',
|
1860 |
+
),
|
1861 |
+
'Inconsolata' => array(
|
1862 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1863 |
+
'category' => 'monospace',
|
1864 |
+
),
|
1865 |
+
'Inder' => array(
|
1866 |
+
'variants' => array('regular'),
|
1867 |
+
'category' => 'sans-serif',
|
1868 |
+
),
|
1869 |
+
'Indie Flower' => array(
|
1870 |
+
'variants' => array('regular'),
|
1871 |
+
'category' => 'handwriting',
|
1872 |
+
),
|
1873 |
+
'Inika' => array(
|
1874 |
+
'variants' => array('regular', '700'),
|
1875 |
+
'category' => 'serif',
|
1876 |
+
),
|
1877 |
+
'Inknut Antiqua' => array(
|
1878 |
+
'variants' => array('300', 'regular', '500', '600', '700', '800', '900'),
|
1879 |
+
'category' => 'serif',
|
1880 |
+
),
|
1881 |
+
'Inria Sans' => array(
|
1882 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
1883 |
+
'category' => 'sans-serif',
|
1884 |
+
),
|
1885 |
+
'Inria Serif' => array(
|
1886 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
1887 |
+
'category' => 'serif',
|
1888 |
+
),
|
1889 |
+
'Inter' => array(
|
1890 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
1891 |
+
'category' => 'sans-serif',
|
1892 |
+
),
|
1893 |
+
'Irish Grover' => array(
|
1894 |
+
'variants' => array('regular'),
|
1895 |
+
'category' => 'display',
|
1896 |
+
),
|
1897 |
+
'Istok Web' => array(
|
1898 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
1899 |
+
'category' => 'sans-serif',
|
1900 |
+
),
|
1901 |
+
'Italiana' => array(
|
1902 |
+
'variants' => array('regular'),
|
1903 |
+
'category' => 'serif',
|
1904 |
+
),
|
1905 |
+
'Italianno' => array(
|
1906 |
+
'variants' => array('regular'),
|
1907 |
+
'category' => 'handwriting',
|
1908 |
+
),
|
1909 |
+
'Itim' => array(
|
1910 |
+
'variants' => array('regular'),
|
1911 |
+
'category' => 'handwriting',
|
1912 |
+
),
|
1913 |
+
'Jacques Francois' => array(
|
1914 |
+
'variants' => array('regular'),
|
1915 |
+
'category' => 'serif',
|
1916 |
+
),
|
1917 |
+
'Jacques Francois Shadow' => array(
|
1918 |
+
'variants' => array('regular'),
|
1919 |
+
'category' => 'display',
|
1920 |
+
),
|
1921 |
+
'Jaldi' => array(
|
1922 |
+
'variants' => array('regular', '700'),
|
1923 |
+
'category' => 'sans-serif',
|
1924 |
+
),
|
1925 |
+
'JetBrains Mono' => array(
|
1926 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic'),
|
1927 |
+
'category' => 'monospace',
|
1928 |
+
),
|
1929 |
+
'Jim Nightshade' => array(
|
1930 |
+
'variants' => array('regular'),
|
1931 |
+
'category' => 'handwriting',
|
1932 |
+
),
|
1933 |
+
'Jockey One' => array(
|
1934 |
+
'variants' => array('regular'),
|
1935 |
+
'category' => 'sans-serif',
|
1936 |
+
),
|
1937 |
+
'Jolly Lodger' => array(
|
1938 |
+
'variants' => array('regular'),
|
1939 |
+
'category' => 'display',
|
1940 |
+
),
|
1941 |
+
'Jomhuria' => array(
|
1942 |
+
'variants' => array('regular'),
|
1943 |
+
'category' => 'display',
|
1944 |
+
),
|
1945 |
+
'Jomolhari' => array(
|
1946 |
+
'variants' => array('regular'),
|
1947 |
+
'category' => 'serif',
|
1948 |
+
),
|
1949 |
+
'Josefin Sans' => array(
|
1950 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic'),
|
1951 |
+
'category' => 'sans-serif',
|
1952 |
+
),
|
1953 |
+
'Josefin Slab' => array(
|
1954 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic'),
|
1955 |
+
'category' => 'serif',
|
1956 |
+
),
|
1957 |
+
'Jost' => array(
|
1958 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
1959 |
+
'category' => 'sans-serif',
|
1960 |
+
),
|
1961 |
+
'Joti One' => array(
|
1962 |
+
'variants' => array('regular'),
|
1963 |
+
'category' => 'display',
|
1964 |
+
),
|
1965 |
+
'Jua' => array(
|
1966 |
+
'variants' => array('regular'),
|
1967 |
+
'category' => 'sans-serif',
|
1968 |
+
),
|
1969 |
+
'Judson' => array(
|
1970 |
+
'variants' => array('regular', 'italic', '700'),
|
1971 |
+
'category' => 'serif',
|
1972 |
+
),
|
1973 |
+
'Julee' => array(
|
1974 |
+
'variants' => array('regular'),
|
1975 |
+
'category' => 'handwriting',
|
1976 |
+
),
|
1977 |
+
'Julius Sans One' => array(
|
1978 |
+
'variants' => array('regular'),
|
1979 |
+
'category' => 'sans-serif',
|
1980 |
+
),
|
1981 |
+
'Junge' => array(
|
1982 |
+
'variants' => array('regular'),
|
1983 |
+
'category' => 'serif',
|
1984 |
+
),
|
1985 |
+
'Jura' => array(
|
1986 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
1987 |
+
'category' => 'sans-serif',
|
1988 |
+
),
|
1989 |
+
'Just Another Hand' => array(
|
1990 |
+
'variants' => array('regular'),
|
1991 |
+
'category' => 'handwriting',
|
1992 |
+
),
|
1993 |
+
'Just Me Again Down Here' => array(
|
1994 |
+
'variants' => array('regular'),
|
1995 |
+
'category' => 'handwriting',
|
1996 |
+
),
|
1997 |
+
'K2D' => array(
|
1998 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
1999 |
+
'category' => 'sans-serif',
|
2000 |
+
),
|
2001 |
+
'Kadwa' => array(
|
2002 |
+
'variants' => array('regular', '700'),
|
2003 |
+
'category' => 'serif',
|
2004 |
+
),
|
2005 |
+
'Kalam' => array(
|
2006 |
+
'variants' => array('300', 'regular', '700'),
|
2007 |
+
'category' => 'handwriting',
|
2008 |
+
),
|
2009 |
+
'Kameron' => array(
|
2010 |
+
'variants' => array('regular', '700'),
|
2011 |
+
'category' => 'serif',
|
2012 |
+
),
|
2013 |
+
'Kanit' => array(
|
2014 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
2015 |
+
'category' => 'sans-serif',
|
2016 |
+
),
|
2017 |
+
'Kantumruy' => array(
|
2018 |
+
'variants' => array('300', 'regular', '700'),
|
2019 |
+
'category' => 'sans-serif',
|
2020 |
+
),
|
2021 |
+
'Karantina' => array(
|
2022 |
+
'variants' => array('300', 'regular', '700'),
|
2023 |
+
'category' => 'display',
|
2024 |
+
),
|
2025 |
+
'Karla' => array(
|
2026 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic'),
|
2027 |
+
'category' => 'sans-serif',
|
2028 |
+
),
|
2029 |
+
'Karma' => array(
|
2030 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
2031 |
+
'category' => 'serif',
|
2032 |
+
),
|
2033 |
+
'Katibeh' => array(
|
2034 |
+
'variants' => array('regular'),
|
2035 |
+
'category' => 'display',
|
2036 |
+
),
|
2037 |
+
'Kaushan Script' => array(
|
2038 |
+
'variants' => array('regular'),
|
2039 |
+
'category' => 'handwriting',
|
2040 |
+
),
|
2041 |
+
'Kavivanar' => array(
|
2042 |
+
'variants' => array('regular'),
|
2043 |
+
'category' => 'handwriting',
|
2044 |
+
),
|
2045 |
+
'Kavoon' => array(
|
2046 |
+
'variants' => array('regular'),
|
2047 |
+
'category' => 'display',
|
2048 |
+
),
|
2049 |
+
'Kdam Thmor' => array(
|
2050 |
+
'variants' => array('regular'),
|
2051 |
+
'category' => 'display',
|
2052 |
+
),
|
2053 |
+
'Keania One' => array(
|
2054 |
+
'variants' => array('regular'),
|
2055 |
+
'category' => 'display',
|
2056 |
+
),
|
2057 |
+
'Kelly Slab' => array(
|
2058 |
+
'variants' => array('regular'),
|
2059 |
+
'category' => 'display',
|
2060 |
+
),
|
2061 |
+
'Kenia' => array(
|
2062 |
+
'variants' => array('regular'),
|
2063 |
+
'category' => 'display',
|
2064 |
+
),
|
2065 |
+
'Khand' => array(
|
2066 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
2067 |
+
'category' => 'sans-serif',
|
2068 |
+
),
|
2069 |
+
'Khmer' => array(
|
2070 |
+
'variants' => array('regular'),
|
2071 |
+
'category' => 'display',
|
2072 |
+
),
|
2073 |
+
'Khula' => array(
|
2074 |
+
'variants' => array('300', 'regular', '600', '700', '800'),
|
2075 |
+
'category' => 'sans-serif',
|
2076 |
+
),
|
2077 |
+
'Kirang Haerang' => array(
|
2078 |
+
'variants' => array('regular'),
|
2079 |
+
'category' => 'display',
|
2080 |
+
),
|
2081 |
+
'Kite One' => array(
|
2082 |
+
'variants' => array('regular'),
|
2083 |
+
'category' => 'sans-serif',
|
2084 |
+
),
|
2085 |
+
'Kiwi Maru' => array(
|
2086 |
+
'variants' => array('300', 'regular', '500'),
|
2087 |
+
'category' => 'serif',
|
2088 |
+
),
|
2089 |
+
'Knewave' => array(
|
2090 |
+
'variants' => array('regular'),
|
2091 |
+
'category' => 'display',
|
2092 |
+
),
|
2093 |
+
'KoHo' => array(
|
2094 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
2095 |
+
'category' => 'sans-serif',
|
2096 |
+
),
|
2097 |
+
'Kodchasan' => array(
|
2098 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
2099 |
+
'category' => 'sans-serif',
|
2100 |
+
),
|
2101 |
+
'Kosugi' => array(
|
2102 |
+
'variants' => array('regular'),
|
2103 |
+
'category' => 'sans-serif',
|
2104 |
+
),
|
2105 |
+
'Kosugi Maru' => array(
|
2106 |
+
'variants' => array('regular'),
|
2107 |
+
'category' => 'sans-serif',
|
2108 |
+
),
|
2109 |
+
'Kotta One' => array(
|
2110 |
+
'variants' => array('regular'),
|
2111 |
+
'category' => 'serif',
|
2112 |
+
),
|
2113 |
+
'Koulen' => array(
|
2114 |
+
'variants' => array('regular'),
|
2115 |
+
'category' => 'display',
|
2116 |
+
),
|
2117 |
+
'Kranky' => array(
|
2118 |
+
'variants' => array('regular'),
|
2119 |
+
'category' => 'display',
|
2120 |
+
),
|
2121 |
+
'Kreon' => array(
|
2122 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
2123 |
+
'category' => 'serif',
|
2124 |
+
),
|
2125 |
+
'Kristi' => array(
|
2126 |
+
'variants' => array('regular'),
|
2127 |
+
'category' => 'handwriting',
|
2128 |
+
),
|
2129 |
+
'Krona One' => array(
|
2130 |
+
'variants' => array('regular'),
|
2131 |
+
'category' => 'sans-serif',
|
2132 |
+
),
|
2133 |
+
'Krub' => array(
|
2134 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
2135 |
+
'category' => 'sans-serif',
|
2136 |
+
),
|
2137 |
+
'Kufam' => array(
|
2138 |
+
'variants' => array('regular', '500', '600', '700', '800', '900', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
2139 |
+
'category' => 'display',
|
2140 |
+
),
|
2141 |
+
'Kulim Park' => array(
|
2142 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic'),
|
2143 |
+
'category' => 'sans-serif',
|
2144 |
+
),
|
2145 |
+
'Kumar One' => array(
|
2146 |
+
'variants' => array('regular'),
|
2147 |
+
'category' => 'display',
|
2148 |
+
),
|
2149 |
+
'Kumar One Outline' => array(
|
2150 |
+
'variants' => array('regular'),
|
2151 |
+
'category' => 'display',
|
2152 |
+
),
|
2153 |
+
'Kumbh Sans' => array(
|
2154 |
+
'variants' => array('300', 'regular', '700'),
|
2155 |
+
'category' => 'sans-serif',
|
2156 |
+
),
|
2157 |
+
'Kurale' => array(
|
2158 |
+
'variants' => array('regular'),
|
2159 |
+
'category' => 'serif',
|
2160 |
+
),
|
2161 |
+
'La Belle Aurore' => array(
|
2162 |
+
'variants' => array('regular'),
|
2163 |
+
'category' => 'handwriting',
|
2164 |
+
),
|
2165 |
+
'Lacquer' => array(
|
2166 |
+
'variants' => array('regular'),
|
2167 |
+
'category' => 'display',
|
2168 |
+
),
|
2169 |
+
'Laila' => array(
|
2170 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
2171 |
+
'category' => 'sans-serif',
|
2172 |
+
),
|
2173 |
+
'Lakki Reddy' => array(
|
2174 |
+
'variants' => array('regular'),
|
2175 |
+
'category' => 'handwriting',
|
2176 |
+
),
|
2177 |
+
'Lalezar' => array(
|
2178 |
+
'variants' => array('regular'),
|
2179 |
+
'category' => 'display',
|
2180 |
+
),
|
2181 |
+
'Lancelot' => array(
|
2182 |
+
'variants' => array('regular'),
|
2183 |
+
'category' => 'display',
|
2184 |
+
),
|
2185 |
+
'Langar' => array(
|
2186 |
+
'variants' => array('regular'),
|
2187 |
+
'category' => 'display',
|
2188 |
+
),
|
2189 |
+
'Lateef' => array(
|
2190 |
+
'variants' => array('regular'),
|
2191 |
+
'category' => 'handwriting',
|
2192 |
+
),
|
2193 |
+
'Lato' => array(
|
2194 |
+
'variants' => array('100', '100italic', '300', '300italic', 'regular', 'italic', '700', '700italic', '900', '900italic'),
|
2195 |
+
'category' => 'sans-serif',
|
2196 |
+
),
|
2197 |
+
'League Script' => array(
|
2198 |
+
'variants' => array('regular'),
|
2199 |
+
'category' => 'handwriting',
|
2200 |
+
),
|
2201 |
+
'Leckerli One' => array(
|
2202 |
+
'variants' => array('regular'),
|
2203 |
+
'category' => 'handwriting',
|
2204 |
+
),
|
2205 |
+
'Ledger' => array(
|
2206 |
+
'variants' => array('regular'),
|
2207 |
+
'category' => 'serif',
|
2208 |
+
),
|
2209 |
+
'Lekton' => array(
|
2210 |
+
'variants' => array('regular', 'italic', '700'),
|
2211 |
+
'category' => 'sans-serif',
|
2212 |
+
),
|
2213 |
+
'Lemon' => array(
|
2214 |
+
'variants' => array('regular'),
|
2215 |
+
'category' => 'display',
|
2216 |
+
),
|
2217 |
+
'Lemonada' => array(
|
2218 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
2219 |
+
'category' => 'display',
|
2220 |
+
),
|
2221 |
+
'Lexend' => array(
|
2222 |
+
'variants' => array('100', '300', 'regular', '500', '600', '700', '800'),
|
2223 |
+
'category' => 'sans-serif',
|
2224 |
+
),
|
2225 |
+
'Lexend Deca' => array(
|
2226 |
+
'variants' => array('regular'),
|
2227 |
+
'category' => 'sans-serif',
|
2228 |
+
),
|
2229 |
+
'Lexend Exa' => array(
|
2230 |
+
'variants' => array('regular'),
|
2231 |
+
'category' => 'sans-serif',
|
2232 |
+
),
|
2233 |
+
'Lexend Giga' => array(
|
2234 |
+
'variants' => array('regular'),
|
2235 |
+
'category' => 'sans-serif',
|
2236 |
+
),
|
2237 |
+
'Lexend Mega' => array(
|
2238 |
+
'variants' => array('regular'),
|
2239 |
+
'category' => 'sans-serif',
|
2240 |
+
),
|
2241 |
+
'Lexend Peta' => array(
|
2242 |
+
'variants' => array('regular'),
|
2243 |
+
'category' => 'sans-serif',
|
2244 |
+
),
|
2245 |
+
'Lexend Tera' => array(
|
2246 |
+
'variants' => array('regular'),
|
2247 |
+
'category' => 'sans-serif',
|
2248 |
+
),
|
2249 |
+
'Lexend Zetta' => array(
|
2250 |
+
'variants' => array('regular'),
|
2251 |
+
'category' => 'sans-serif',
|
2252 |
+
),
|
2253 |
+
'Libre Barcode 128' => array(
|
2254 |
+
'variants' => array('regular'),
|
2255 |
+
'category' => 'display',
|
2256 |
+
),
|
2257 |
+
'Libre Barcode 128 Text' => array(
|
2258 |
+
'variants' => array('regular'),
|
2259 |
+
'category' => 'display',
|
2260 |
+
),
|
2261 |
+
'Libre Barcode 39' => array(
|
2262 |
+
'variants' => array('regular'),
|
2263 |
+
'category' => 'display',
|
2264 |
+
),
|
2265 |
+
'Libre Barcode 39 Extended' => array(
|
2266 |
+
'variants' => array('regular'),
|
2267 |
+
'category' => 'display',
|
2268 |
+
),
|
2269 |
+
'Libre Barcode 39 Extended Text' => array(
|
2270 |
+
'variants' => array('regular'),
|
2271 |
+
'category' => 'display',
|
2272 |
+
),
|
2273 |
+
'Libre Barcode 39 Text' => array(
|
2274 |
+
'variants' => array('regular'),
|
2275 |
+
'category' => 'display',
|
2276 |
+
),
|
2277 |
+
'Libre Barcode EAN13 Text' => array(
|
2278 |
+
'variants' => array('regular'),
|
2279 |
+
'category' => 'display',
|
2280 |
+
),
|
2281 |
+
'Libre Baskerville' => array(
|
2282 |
+
'variants' => array('regular', 'italic', '700'),
|
2283 |
+
'category' => 'serif',
|
2284 |
+
),
|
2285 |
+
'Libre Caslon Display' => array(
|
2286 |
+
'variants' => array('regular'),
|
2287 |
+
'category' => 'serif',
|
2288 |
+
),
|
2289 |
+
'Libre Caslon Text' => array(
|
2290 |
+
'variants' => array('regular', 'italic', '700'),
|
2291 |
+
'category' => 'serif',
|
2292 |
+
),
|
2293 |
+
'Libre Franklin' => array(
|
2294 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
2295 |
+
'category' => 'sans-serif',
|
2296 |
+
),
|
2297 |
+
'Life Savers' => array(
|
2298 |
+
'variants' => array('regular', '700', '800'),
|
2299 |
+
'category' => 'display',
|
2300 |
+
),
|
2301 |
+
'Lilita One' => array(
|
2302 |
+
'variants' => array('regular'),
|
2303 |
+
'category' => 'display',
|
2304 |
+
),
|
2305 |
+
'Lily Script One' => array(
|
2306 |
+
'variants' => array('regular'),
|
2307 |
+
'category' => 'display',
|
2308 |
+
),
|
2309 |
+
'Limelight' => array(
|
2310 |
+
'variants' => array('regular'),
|
2311 |
+
'category' => 'display',
|
2312 |
+
),
|
2313 |
+
'Linden Hill' => array(
|
2314 |
+
'variants' => array('regular', 'italic'),
|
2315 |
+
'category' => 'serif',
|
2316 |
+
),
|
2317 |
+
'Literata' => array(
|
2318 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800', '900', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
2319 |
+
'category' => 'serif',
|
2320 |
+
),
|
2321 |
+
'Liu Jian Mao Cao' => array(
|
2322 |
+
'variants' => array('regular'),
|
2323 |
+
'category' => 'handwriting',
|
2324 |
+
),
|
2325 |
+
'Livvic' => array(
|
2326 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '900', '900italic'),
|
2327 |
+
'category' => 'sans-serif',
|
2328 |
+
),
|
2329 |
+
'Lobster' => array(
|
2330 |
+
'variants' => array('regular'),
|
2331 |
+
'category' => 'display',
|
2332 |
+
),
|
2333 |
+
'Lobster Two' => array(
|
2334 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
2335 |
+
'category' => 'display',
|
2336 |
+
),
|
2337 |
+
'Londrina Outline' => array(
|
2338 |
+
'variants' => array('regular'),
|
2339 |
+
'category' => 'display',
|
2340 |
+
),
|
2341 |
+
'Londrina Shadow' => array(
|
2342 |
+
'variants' => array('regular'),
|
2343 |
+
'category' => 'display',
|
2344 |
+
),
|
2345 |
+
'Londrina Sketch' => array(
|
2346 |
+
'variants' => array('regular'),
|
2347 |
+
'category' => 'display',
|
2348 |
+
),
|
2349 |
+
'Londrina Solid' => array(
|
2350 |
+
'variants' => array('100', '300', 'regular', '900'),
|
2351 |
+
'category' => 'display',
|
2352 |
+
),
|
2353 |
+
'Long Cang' => array(
|
2354 |
+
'variants' => array('regular'),
|
2355 |
+
'category' => 'handwriting',
|
2356 |
+
),
|
2357 |
+
'Lora' => array(
|
2358 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
2359 |
+
'category' => 'serif',
|
2360 |
+
),
|
2361 |
+
'Love Ya Like A Sister' => array(
|
2362 |
+
'variants' => array('regular'),
|
2363 |
+
'category' => 'display',
|
2364 |
+
),
|
2365 |
+
'Loved by the King' => array(
|
2366 |
+
'variants' => array('regular'),
|
2367 |
+
'category' => 'handwriting',
|
2368 |
+
),
|
2369 |
+
'Lovers Quarrel' => array(
|
2370 |
+
'variants' => array('regular'),
|
2371 |
+
'category' => 'handwriting',
|
2372 |
+
),
|
2373 |
+
'Luckiest Guy' => array(
|
2374 |
+
'variants' => array('regular'),
|
2375 |
+
'category' => 'display',
|
2376 |
+
),
|
2377 |
+
'Lusitana' => array(
|
2378 |
+
'variants' => array('regular', '700'),
|
2379 |
+
'category' => 'serif',
|
2380 |
+
),
|
2381 |
+
'Lustria' => array(
|
2382 |
+
'variants' => array('regular'),
|
2383 |
+
'category' => 'serif',
|
2384 |
+
),
|
2385 |
+
'M PLUS 1p' => array(
|
2386 |
+
'variants' => array('100', '300', 'regular', '500', '700', '800', '900'),
|
2387 |
+
'category' => 'sans-serif',
|
2388 |
+
),
|
2389 |
+
'M PLUS Rounded 1c' => array(
|
2390 |
+
'variants' => array('100', '300', 'regular', '500', '700', '800', '900'),
|
2391 |
+
'category' => 'sans-serif',
|
2392 |
+
),
|
2393 |
+
'Ma Shan Zheng' => array(
|
2394 |
+
'variants' => array('regular'),
|
2395 |
+
'category' => 'handwriting',
|
2396 |
+
),
|
2397 |
+
'Macondo' => array(
|
2398 |
+
'variants' => array('regular'),
|
2399 |
+
'category' => 'display',
|
2400 |
+
),
|
2401 |
+
'Macondo Swash Caps' => array(
|
2402 |
+
'variants' => array('regular'),
|
2403 |
+
'category' => 'display',
|
2404 |
+
),
|
2405 |
+
'Mada' => array(
|
2406 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '900'),
|
2407 |
+
'category' => 'sans-serif',
|
2408 |
+
),
|
2409 |
+
'Magra' => array(
|
2410 |
+
'variants' => array('regular', '700'),
|
2411 |
+
'category' => 'sans-serif',
|
2412 |
+
),
|
2413 |
+
'Maiden Orange' => array(
|
2414 |
+
'variants' => array('regular'),
|
2415 |
+
'category' => 'display',
|
2416 |
+
),
|
2417 |
+
'Maitree' => array(
|
2418 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700'),
|
2419 |
+
'category' => 'serif',
|
2420 |
+
),
|
2421 |
+
'Major Mono Display' => array(
|
2422 |
+
'variants' => array('regular'),
|
2423 |
+
'category' => 'monospace',
|
2424 |
+
),
|
2425 |
+
'Mako' => array(
|
2426 |
+
'variants' => array('regular'),
|
2427 |
+
'category' => 'sans-serif',
|
2428 |
+
),
|
2429 |
+
'Mali' => array(
|
2430 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
2431 |
+
'category' => 'handwriting',
|
2432 |
+
),
|
2433 |
+
'Mallanna' => array(
|
2434 |
+
'variants' => array('regular'),
|
2435 |
+
'category' => 'sans-serif',
|
2436 |
+
),
|
2437 |
+
'Mandali' => array(
|
2438 |
+
'variants' => array('regular'),
|
2439 |
+
'category' => 'sans-serif',
|
2440 |
+
),
|
2441 |
+
'Manjari' => array(
|
2442 |
+
'variants' => array('100', 'regular', '700'),
|
2443 |
+
'category' => 'sans-serif',
|
2444 |
+
),
|
2445 |
+
'Manrope' => array(
|
2446 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
2447 |
+
'category' => 'sans-serif',
|
2448 |
+
),
|
2449 |
+
'Mansalva' => array(
|
2450 |
+
'variants' => array('regular'),
|
2451 |
+
'category' => 'handwriting',
|
2452 |
+
),
|
2453 |
+
'Manuale' => array(
|
2454 |
+
'variants' => array('regular', '500', '600', '700', 'italic', '500italic', '600italic', '700italic'),
|
2455 |
+
'category' => 'serif',
|
2456 |
+
),
|
2457 |
+
'Marcellus' => array(
|
2458 |
+
'variants' => array('regular'),
|
2459 |
+
'category' => 'serif',
|
2460 |
+
),
|
2461 |
+
'Marcellus SC' => array(
|
2462 |
+
'variants' => array('regular'),
|
2463 |
+
'category' => 'serif',
|
2464 |
+
),
|
2465 |
+
'Marck Script' => array(
|
2466 |
+
'variants' => array('regular'),
|
2467 |
+
'category' => 'handwriting',
|
2468 |
+
),
|
2469 |
+
'Margarine' => array(
|
2470 |
+
'variants' => array('regular'),
|
2471 |
+
'category' => 'display',
|
2472 |
+
),
|
2473 |
+
'Markazi Text' => array(
|
2474 |
+
'variants' => array('regular', '500', '600', '700'),
|
2475 |
+
'category' => 'serif',
|
2476 |
+
),
|
2477 |
+
'Marko One' => array(
|
2478 |
+
'variants' => array('regular'),
|
2479 |
+
'category' => 'serif',
|
2480 |
+
),
|
2481 |
+
'Marmelad' => array(
|
2482 |
+
'variants' => array('regular'),
|
2483 |
+
'category' => 'sans-serif',
|
2484 |
+
),
|
2485 |
+
'Martel' => array(
|
2486 |
+
'variants' => array('200', '300', 'regular', '600', '700', '800', '900'),
|
2487 |
+
'category' => 'serif',
|
2488 |
+
),
|
2489 |
+
'Martel Sans' => array(
|
2490 |
+
'variants' => array('200', '300', 'regular', '600', '700', '800', '900'),
|
2491 |
+
'category' => 'sans-serif',
|
2492 |
+
),
|
2493 |
+
'Marvel' => array(
|
2494 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
2495 |
+
'category' => 'sans-serif',
|
2496 |
+
),
|
2497 |
+
'Mate' => array(
|
2498 |
+
'variants' => array('regular', 'italic'),
|
2499 |
+
'category' => 'serif',
|
2500 |
+
),
|
2501 |
+
'Mate SC' => array(
|
2502 |
+
'variants' => array('regular'),
|
2503 |
+
'category' => 'serif',
|
2504 |
+
),
|
2505 |
+
'Maven Pro' => array(
|
2506 |
+
'variants' => array('regular', '500', '600', '700', '800', '900'),
|
2507 |
+
'category' => 'sans-serif',
|
2508 |
+
),
|
2509 |
+
'McLaren' => array(
|
2510 |
+
'variants' => array('regular'),
|
2511 |
+
'category' => 'display',
|
2512 |
+
),
|
2513 |
+
'Meddon' => array(
|
2514 |
+
'variants' => array('regular'),
|
2515 |
+
'category' => 'handwriting',
|
2516 |
+
),
|
2517 |
+
'MedievalSharp' => array(
|
2518 |
+
'variants' => array('regular'),
|
2519 |
+
'category' => 'display',
|
2520 |
+
),
|
2521 |
+
'Medula One' => array(
|
2522 |
+
'variants' => array('regular'),
|
2523 |
+
'category' => 'display',
|
2524 |
+
),
|
2525 |
+
'Meera Inimai' => array(
|
2526 |
+
'variants' => array('regular'),
|
2527 |
+
'category' => 'sans-serif',
|
2528 |
+
),
|
2529 |
+
'Megrim' => array(
|
2530 |
+
'variants' => array('regular'),
|
2531 |
+
'category' => 'display',
|
2532 |
+
),
|
2533 |
+
'Meie Script' => array(
|
2534 |
+
'variants' => array('regular'),
|
2535 |
+
'category' => 'handwriting',
|
2536 |
+
),
|
2537 |
+
'Merienda' => array(
|
2538 |
+
'variants' => array('regular', '700'),
|
2539 |
+
'category' => 'handwriting',
|
2540 |
+
),
|
2541 |
+
'Merienda One' => array(
|
2542 |
+
'variants' => array('regular'),
|
2543 |
+
'category' => 'handwriting',
|
2544 |
+
),
|
2545 |
+
'Merriweather' => array(
|
2546 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic', '900', '900italic'),
|
2547 |
+
'category' => 'serif',
|
2548 |
+
),
|
2549 |
+
'Merriweather Sans' => array(
|
2550 |
+
'variants' => array('300', 'regular', '500', '600', '700', '800', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic'),
|
2551 |
+
'category' => 'sans-serif',
|
2552 |
+
),
|
2553 |
+
'Metal' => array(
|
2554 |
+
'variants' => array('regular'),
|
2555 |
+
'category' => 'display',
|
2556 |
+
),
|
2557 |
+
'Metal Mania' => array(
|
2558 |
+
'variants' => array('regular'),
|
2559 |
+
'category' => 'display',
|
2560 |
+
),
|
2561 |
+
'Metamorphous' => array(
|
2562 |
+
'variants' => array('regular'),
|
2563 |
+
'category' => 'display',
|
2564 |
+
),
|
2565 |
+
'Metrophobic' => array(
|
2566 |
+
'variants' => array('regular'),
|
2567 |
+
'category' => 'sans-serif',
|
2568 |
+
),
|
2569 |
+
'Michroma' => array(
|
2570 |
+
'variants' => array('regular'),
|
2571 |
+
'category' => 'sans-serif',
|
2572 |
+
),
|
2573 |
+
'Milonga' => array(
|
2574 |
+
'variants' => array('regular'),
|
2575 |
+
'category' => 'display',
|
2576 |
+
),
|
2577 |
+
'Miltonian' => array(
|
2578 |
+
'variants' => array('regular'),
|
2579 |
+
'category' => 'display',
|
2580 |
+
),
|
2581 |
+
'Miltonian Tattoo' => array(
|
2582 |
+
'variants' => array('regular'),
|
2583 |
+
'category' => 'display',
|
2584 |
+
),
|
2585 |
+
'Mina' => array(
|
2586 |
+
'variants' => array('regular', '700'),
|
2587 |
+
'category' => 'sans-serif',
|
2588 |
+
),
|
2589 |
+
'Miniver' => array(
|
2590 |
+
'variants' => array('regular'),
|
2591 |
+
'category' => 'display',
|
2592 |
+
),
|
2593 |
+
'Miriam Libre' => array(
|
2594 |
+
'variants' => array('regular', '700'),
|
2595 |
+
'category' => 'sans-serif',
|
2596 |
+
),
|
2597 |
+
'Mirza' => array(
|
2598 |
+
'variants' => array('regular', '500', '600', '700'),
|
2599 |
+
'category' => 'display',
|
2600 |
+
),
|
2601 |
+
'Miss Fajardose' => array(
|
2602 |
+
'variants' => array('regular'),
|
2603 |
+
'category' => 'handwriting',
|
2604 |
+
),
|
2605 |
+
'Mitr' => array(
|
2606 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700'),
|
2607 |
+
'category' => 'sans-serif',
|
2608 |
+
),
|
2609 |
+
'Modak' => array(
|
2610 |
+
'variants' => array('regular'),
|
2611 |
+
'category' => 'display',
|
2612 |
+
),
|
2613 |
+
'Modern Antiqua' => array(
|
2614 |
+
'variants' => array('regular'),
|
2615 |
+
'category' => 'display',
|
2616 |
+
),
|
2617 |
+
'Mogra' => array(
|
2618 |
+
'variants' => array('regular'),
|
2619 |
+
'category' => 'display',
|
2620 |
+
),
|
2621 |
+
'Molengo' => array(
|
2622 |
+
'variants' => array('regular'),
|
2623 |
+
'category' => 'sans-serif',
|
2624 |
+
),
|
2625 |
+
'Molle' => array(
|
2626 |
+
'variants' => array('italic'),
|
2627 |
+
'category' => 'handwriting',
|
2628 |
+
),
|
2629 |
+
'Monda' => array(
|
2630 |
+
'variants' => array('regular', '700'),
|
2631 |
+
'category' => 'sans-serif',
|
2632 |
+
),
|
2633 |
+
'Monofett' => array(
|
2634 |
+
'variants' => array('regular'),
|
2635 |
+
'category' => 'display',
|
2636 |
+
),
|
2637 |
+
'Monoton' => array(
|
2638 |
+
'variants' => array('regular'),
|
2639 |
+
'category' => 'display',
|
2640 |
+
),
|
2641 |
+
'Monsieur La Doulaise' => array(
|
2642 |
+
'variants' => array('regular'),
|
2643 |
+
'category' => 'handwriting',
|
2644 |
+
),
|
2645 |
+
'Montaga' => array(
|
2646 |
+
'variants' => array('regular'),
|
2647 |
+
'category' => 'serif',
|
2648 |
+
),
|
2649 |
+
'Montez' => array(
|
2650 |
+
'variants' => array('regular'),
|
2651 |
+
'category' => 'handwriting',
|
2652 |
+
),
|
2653 |
+
'Montserrat' => array(
|
2654 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
2655 |
+
'category' => 'sans-serif',
|
2656 |
+
),
|
2657 |
+
'Montserrat Alternates' => array(
|
2658 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
2659 |
+
'category' => 'sans-serif',
|
2660 |
+
),
|
2661 |
+
'Montserrat Subrayada' => array(
|
2662 |
+
'variants' => array('regular', '700'),
|
2663 |
+
'category' => 'sans-serif',
|
2664 |
+
),
|
2665 |
+
'Moul' => array(
|
2666 |
+
'variants' => array('regular'),
|
2667 |
+
'category' => 'display',
|
2668 |
+
),
|
2669 |
+
'Moulpali' => array(
|
2670 |
+
'variants' => array('regular'),
|
2671 |
+
'category' => 'display',
|
2672 |
+
),
|
2673 |
+
'Mountains of Christmas' => array(
|
2674 |
+
'variants' => array('regular', '700'),
|
2675 |
+
'category' => 'display',
|
2676 |
+
),
|
2677 |
+
'Mouse Memoirs' => array(
|
2678 |
+
'variants' => array('regular'),
|
2679 |
+
'category' => 'sans-serif',
|
2680 |
+
),
|
2681 |
+
'Mr Bedfort' => array(
|
2682 |
+
'variants' => array('regular'),
|
2683 |
+
'category' => 'handwriting',
|
2684 |
+
),
|
2685 |
+
'Mr Dafoe' => array(
|
2686 |
+
'variants' => array('regular'),
|
2687 |
+
'category' => 'handwriting',
|
2688 |
+
),
|
2689 |
+
'Mr De Haviland' => array(
|
2690 |
+
'variants' => array('regular'),
|
2691 |
+
'category' => 'handwriting',
|
2692 |
+
),
|
2693 |
+
'Mrs Saint Delafield' => array(
|
2694 |
+
'variants' => array('regular'),
|
2695 |
+
'category' => 'handwriting',
|
2696 |
+
),
|
2697 |
+
'Mrs Sheppards' => array(
|
2698 |
+
'variants' => array('regular'),
|
2699 |
+
'category' => 'handwriting',
|
2700 |
+
),
|
2701 |
+
'Mukta' => array(
|
2702 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
2703 |
+
'category' => 'sans-serif',
|
2704 |
+
),
|
2705 |
+
'Mukta Mahee' => array(
|
2706 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
2707 |
+
'category' => 'sans-serif',
|
2708 |
+
),
|
2709 |
+
'Mukta Malar' => array(
|
2710 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
2711 |
+
'category' => 'sans-serif',
|
2712 |
+
),
|
2713 |
+
'Mukta Vaani' => array(
|
2714 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
2715 |
+
'category' => 'sans-serif',
|
2716 |
+
),
|
2717 |
+
'Mulish' => array(
|
2718 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800', '900', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
2719 |
+
'category' => 'sans-serif',
|
2720 |
+
),
|
2721 |
+
'MuseoModerno' => array(
|
2722 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
2723 |
+
'category' => 'display',
|
2724 |
+
),
|
2725 |
+
'Mystery Quest' => array(
|
2726 |
+
'variants' => array('regular'),
|
2727 |
+
'category' => 'display',
|
2728 |
+
),
|
2729 |
+
'NTR' => array(
|
2730 |
+
'variants' => array('regular'),
|
2731 |
+
'category' => 'sans-serif',
|
2732 |
+
),
|
2733 |
+
'Nanum Brush Script' => array(
|
2734 |
+
'variants' => array('regular'),
|
2735 |
+
'category' => 'handwriting',
|
2736 |
+
),
|
2737 |
+
'Nanum Gothic' => array(
|
2738 |
+
'variants' => array('regular', '700', '800'),
|
2739 |
+
'category' => 'sans-serif',
|
2740 |
+
),
|
2741 |
+
'Nanum Gothic Coding' => array(
|
2742 |
+
'variants' => array('regular', '700'),
|
2743 |
+
'category' => 'monospace',
|
2744 |
+
),
|
2745 |
+
'Nanum Myeongjo' => array(
|
2746 |
+
'variants' => array('regular', '700', '800'),
|
2747 |
+
'category' => 'serif',
|
2748 |
+
),
|
2749 |
+
'Nanum Pen Script' => array(
|
2750 |
+
'variants' => array('regular'),
|
2751 |
+
'category' => 'handwriting',
|
2752 |
+
),
|
2753 |
+
'Nerko One' => array(
|
2754 |
+
'variants' => array('regular'),
|
2755 |
+
'category' => 'handwriting',
|
2756 |
+
),
|
2757 |
+
'Neucha' => array(
|
2758 |
+
'variants' => array('regular'),
|
2759 |
+
'category' => 'handwriting',
|
2760 |
+
),
|
2761 |
+
'Neuton' => array(
|
2762 |
+
'variants' => array('200', '300', 'regular', 'italic', '700', '800'),
|
2763 |
+
'category' => 'serif',
|
2764 |
+
),
|
2765 |
+
'New Rocker' => array(
|
2766 |
+
'variants' => array('regular'),
|
2767 |
+
'category' => 'display',
|
2768 |
+
),
|
2769 |
+
'New Tegomin' => array(
|
2770 |
+
'variants' => array('regular'),
|
2771 |
+
'category' => 'serif',
|
2772 |
+
),
|
2773 |
+
'News Cycle' => array(
|
2774 |
+
'variants' => array('regular', '700'),
|
2775 |
+
'category' => 'sans-serif',
|
2776 |
+
),
|
2777 |
+
'Newsreader' => array(
|
2778 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic'),
|
2779 |
+
'category' => 'serif',
|
2780 |
+
),
|
2781 |
+
'Niconne' => array(
|
2782 |
+
'variants' => array('regular'),
|
2783 |
+
'category' => 'handwriting',
|
2784 |
+
),
|
2785 |
+
'Niramit' => array(
|
2786 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
2787 |
+
'category' => 'sans-serif',
|
2788 |
+
),
|
2789 |
+
'Nixie One' => array(
|
2790 |
+
'variants' => array('regular'),
|
2791 |
+
'category' => 'display',
|
2792 |
+
),
|
2793 |
+
'Nobile' => array(
|
2794 |
+
'variants' => array('regular', 'italic', '500', '500italic', '700', '700italic'),
|
2795 |
+
'category' => 'sans-serif',
|
2796 |
+
),
|
2797 |
+
'Nokora' => array(
|
2798 |
+
'variants' => array('regular', '700'),
|
2799 |
+
'category' => 'serif',
|
2800 |
+
),
|
2801 |
+
'Norican' => array(
|
2802 |
+
'variants' => array('regular'),
|
2803 |
+
'category' => 'handwriting',
|
2804 |
+
),
|
2805 |
+
'Nosifer' => array(
|
2806 |
+
'variants' => array('regular'),
|
2807 |
+
'category' => 'display',
|
2808 |
+
),
|
2809 |
+
'Notable' => array(
|
2810 |
+
'variants' => array('regular'),
|
2811 |
+
'category' => 'sans-serif',
|
2812 |
+
),
|
2813 |
+
'Nothing You Could Do' => array(
|
2814 |
+
'variants' => array('regular'),
|
2815 |
+
'category' => 'handwriting',
|
2816 |
+
),
|
2817 |
+
'Noticia Text' => array(
|
2818 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
2819 |
+
'category' => 'serif',
|
2820 |
+
),
|
2821 |
+
'Noto Sans' => array(
|
2822 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
2823 |
+
'category' => 'sans-serif',
|
2824 |
+
),
|
2825 |
+
'Noto Sans HK' => array(
|
2826 |
+
'variants' => array('100', '300', 'regular', '500', '700', '900'),
|
2827 |
+
'category' => 'sans-serif',
|
2828 |
+
),
|
2829 |
+
'Noto Sans JP' => array(
|
2830 |
+
'variants' => array('100', '300', 'regular', '500', '700', '900'),
|
2831 |
+
'category' => 'sans-serif',
|
2832 |
+
),
|
2833 |
+
'Noto Sans KR' => array(
|
2834 |
+
'variants' => array('100', '300', 'regular', '500', '700', '900'),
|
2835 |
+
'category' => 'sans-serif',
|
2836 |
+
),
|
2837 |
+
'Noto Sans SC' => array(
|
2838 |
+
'variants' => array('100', '300', 'regular', '500', '700', '900'),
|
2839 |
+
'category' => 'sans-serif',
|
2840 |
+
),
|
2841 |
+
'Noto Sans TC' => array(
|
2842 |
+
'variants' => array('100', '300', 'regular', '500', '700', '900'),
|
2843 |
+
'category' => 'sans-serif',
|
2844 |
+
),
|
2845 |
+
'Noto Serif' => array(
|
2846 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
2847 |
+
'category' => 'serif',
|
2848 |
+
),
|
2849 |
+
'Noto Serif JP' => array(
|
2850 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '900'),
|
2851 |
+
'category' => 'serif',
|
2852 |
+
),
|
2853 |
+
'Noto Serif KR' => array(
|
2854 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '900'),
|
2855 |
+
'category' => 'serif',
|
2856 |
+
),
|
2857 |
+
'Noto Serif SC' => array(
|
2858 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '900'),
|
2859 |
+
'category' => 'serif',
|
2860 |
+
),
|
2861 |
+
'Noto Serif TC' => array(
|
2862 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '900'),
|
2863 |
+
'category' => 'serif',
|
2864 |
+
),
|
2865 |
+
'Nova Cut' => array(
|
2866 |
+
'variants' => array('regular'),
|
2867 |
+
'category' => 'display',
|
2868 |
+
),
|
2869 |
+
'Nova Flat' => array(
|
2870 |
+
'variants' => array('regular'),
|
2871 |
+
'category' => 'display',
|
2872 |
+
),
|
2873 |
+
'Nova Mono' => array(
|
2874 |
+
'variants' => array('regular'),
|
2875 |
+
'category' => 'monospace',
|
2876 |
+
),
|
2877 |
+
'Nova Oval' => array(
|
2878 |
+
'variants' => array('regular'),
|
2879 |
+
'category' => 'display',
|
2880 |
+
),
|
2881 |
+
'Nova Round' => array(
|
2882 |
+
'variants' => array('regular'),
|
2883 |
+
'category' => 'display',
|
2884 |
+
),
|
2885 |
+
'Nova Script' => array(
|
2886 |
+
'variants' => array('regular'),
|
2887 |
+
'category' => 'display',
|
2888 |
+
),
|
2889 |
+
'Nova Slim' => array(
|
2890 |
+
'variants' => array('regular'),
|
2891 |
+
'category' => 'display',
|
2892 |
+
),
|
2893 |
+
'Nova Square' => array(
|
2894 |
+
'variants' => array('regular'),
|
2895 |
+
'category' => 'display',
|
2896 |
+
),
|
2897 |
+
'Numans' => array(
|
2898 |
+
'variants' => array('regular'),
|
2899 |
+
'category' => 'sans-serif',
|
2900 |
+
),
|
2901 |
+
'Nunito' => array(
|
2902 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
2903 |
+
'category' => 'sans-serif',
|
2904 |
+
),
|
2905 |
+
'Nunito Sans' => array(
|
2906 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
2907 |
+
'category' => 'sans-serif',
|
2908 |
+
),
|
2909 |
+
'Odibee Sans' => array(
|
2910 |
+
'variants' => array('regular'),
|
2911 |
+
'category' => 'display',
|
2912 |
+
),
|
2913 |
+
'Odor Mean Chey' => array(
|
2914 |
+
'variants' => array('regular'),
|
2915 |
+
'category' => 'display',
|
2916 |
+
),
|
2917 |
+
'Offside' => array(
|
2918 |
+
'variants' => array('regular'),
|
2919 |
+
'category' => 'display',
|
2920 |
+
),
|
2921 |
+
'Oi' => array(
|
2922 |
+
'variants' => array('regular'),
|
2923 |
+
'category' => 'display',
|
2924 |
+
),
|
2925 |
+
'Old Standard TT' => array(
|
2926 |
+
'variants' => array('regular', 'italic', '700'),
|
2927 |
+
'category' => 'serif',
|
2928 |
+
),
|
2929 |
+
'Oldenburg' => array(
|
2930 |
+
'variants' => array('regular'),
|
2931 |
+
'category' => 'display',
|
2932 |
+
),
|
2933 |
+
'Oleo Script' => array(
|
2934 |
+
'variants' => array('regular', '700'),
|
2935 |
+
'category' => 'display',
|
2936 |
+
),
|
2937 |
+
'Oleo Script Swash Caps' => array(
|
2938 |
+
'variants' => array('regular', '700'),
|
2939 |
+
'category' => 'display',
|
2940 |
+
),
|
2941 |
+
'Open Sans' => array(
|
2942 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
2943 |
+
'category' => 'sans-serif',
|
2944 |
+
),
|
2945 |
+
'Open Sans Condensed' => array(
|
2946 |
+
'variants' => array('300', '300italic', '700'),
|
2947 |
+
'category' => 'sans-serif',
|
2948 |
+
),
|
2949 |
+
'Oranienbaum' => array(
|
2950 |
+
'variants' => array('regular'),
|
2951 |
+
'category' => 'serif',
|
2952 |
+
),
|
2953 |
+
'Orbitron' => array(
|
2954 |
+
'variants' => array('regular', '500', '600', '700', '800', '900'),
|
2955 |
+
'category' => 'sans-serif',
|
2956 |
+
),
|
2957 |
+
'Oregano' => array(
|
2958 |
+
'variants' => array('regular', 'italic'),
|
2959 |
+
'category' => 'display',
|
2960 |
+
),
|
2961 |
+
'Orelega One' => array(
|
2962 |
+
'variants' => array('regular'),
|
2963 |
+
'category' => 'display',
|
2964 |
+
),
|
2965 |
+
'Orienta' => array(
|
2966 |
+
'variants' => array('regular'),
|
2967 |
+
'category' => 'sans-serif',
|
2968 |
+
),
|
2969 |
+
'Original Surfer' => array(
|
2970 |
+
'variants' => array('regular'),
|
2971 |
+
'category' => 'display',
|
2972 |
+
),
|
2973 |
+
'Oswald' => array(
|
2974 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700'),
|
2975 |
+
'category' => 'sans-serif',
|
2976 |
+
),
|
2977 |
+
'Over the Rainbow' => array(
|
2978 |
+
'variants' => array('regular'),
|
2979 |
+
'category' => 'handwriting',
|
2980 |
+
),
|
2981 |
+
'Overlock' => array(
|
2982 |
+
'variants' => array('regular', 'italic', '700', '700italic', '900', '900italic'),
|
2983 |
+
'category' => 'display',
|
2984 |
+
),
|
2985 |
+
'Overlock SC' => array(
|
2986 |
+
'variants' => array('regular'),
|
2987 |
+
'category' => 'display',
|
2988 |
+
),
|
2989 |
+
'Overpass' => array(
|
2990 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
2991 |
+
'category' => 'sans-serif',
|
2992 |
+
),
|
2993 |
+
'Overpass Mono' => array(
|
2994 |
+
'variants' => array('300', 'regular', '600', '700'),
|
2995 |
+
'category' => 'monospace',
|
2996 |
+
),
|
2997 |
+
'Ovo' => array(
|
2998 |
+
'variants' => array('regular'),
|
2999 |
+
'category' => 'serif',
|
3000 |
+
),
|
3001 |
+
'Oxanium' => array(
|
3002 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700', '800'),
|
3003 |
+
'category' => 'display',
|
3004 |
+
),
|
3005 |
+
'Oxygen' => array(
|
3006 |
+
'variants' => array('300', 'regular', '700'),
|
3007 |
+
'category' => 'sans-serif',
|
3008 |
+
),
|
3009 |
+
'Oxygen Mono' => array(
|
3010 |
+
'variants' => array('regular'),
|
3011 |
+
'category' => 'monospace',
|
3012 |
+
),
|
3013 |
+
'PT Mono' => array(
|
3014 |
+
'variants' => array('regular'),
|
3015 |
+
'category' => 'monospace',
|
3016 |
+
),
|
3017 |
+
'PT Sans' => array(
|
3018 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3019 |
+
'category' => 'sans-serif',
|
3020 |
+
),
|
3021 |
+
'PT Sans Caption' => array(
|
3022 |
+
'variants' => array('regular', '700'),
|
3023 |
+
'category' => 'sans-serif',
|
3024 |
+
),
|
3025 |
+
'PT Sans Narrow' => array(
|
3026 |
+
'variants' => array('regular', '700'),
|
3027 |
+
'category' => 'sans-serif',
|
3028 |
+
),
|
3029 |
+
'PT Serif' => array(
|
3030 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3031 |
+
'category' => 'serif',
|
3032 |
+
),
|
3033 |
+
'PT Serif Caption' => array(
|
3034 |
+
'variants' => array('regular', 'italic'),
|
3035 |
+
'category' => 'serif',
|
3036 |
+
),
|
3037 |
+
'Pacifico' => array(
|
3038 |
+
'variants' => array('regular'),
|
3039 |
+
'category' => 'handwriting',
|
3040 |
+
),
|
3041 |
+
'Padauk' => array(
|
3042 |
+
'variants' => array('regular', '700'),
|
3043 |
+
'category' => 'sans-serif',
|
3044 |
+
),
|
3045 |
+
'Palanquin' => array(
|
3046 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700'),
|
3047 |
+
'category' => 'sans-serif',
|
3048 |
+
),
|
3049 |
+
'Palanquin Dark' => array(
|
3050 |
+
'variants' => array('regular', '500', '600', '700'),
|
3051 |
+
'category' => 'sans-serif',
|
3052 |
+
),
|
3053 |
+
'Pangolin' => array(
|
3054 |
+
'variants' => array('regular'),
|
3055 |
+
'category' => 'handwriting',
|
3056 |
+
),
|
3057 |
+
'Paprika' => array(
|
3058 |
+
'variants' => array('regular'),
|
3059 |
+
'category' => 'display',
|
3060 |
+
),
|
3061 |
+
'Parisienne' => array(
|
3062 |
+
'variants' => array('regular'),
|
3063 |
+
'category' => 'handwriting',
|
3064 |
+
),
|
3065 |
+
'Passero One' => array(
|
3066 |
+
'variants' => array('regular'),
|
3067 |
+
'category' => 'display',
|
3068 |
+
),
|
3069 |
+
'Passion One' => array(
|
3070 |
+
'variants' => array('regular', '700', '900'),
|
3071 |
+
'category' => 'display',
|
3072 |
+
),
|
3073 |
+
'Pathway Gothic One' => array(
|
3074 |
+
'variants' => array('regular'),
|
3075 |
+
'category' => 'sans-serif',
|
3076 |
+
),
|
3077 |
+
'Patrick Hand' => array(
|
3078 |
+
'variants' => array('regular'),
|
3079 |
+
'category' => 'handwriting',
|
3080 |
+
),
|
3081 |
+
'Patrick Hand SC' => array(
|
3082 |
+
'variants' => array('regular'),
|
3083 |
+
'category' => 'handwriting',
|
3084 |
+
),
|
3085 |
+
'Pattaya' => array(
|
3086 |
+
'variants' => array('regular'),
|
3087 |
+
'category' => 'sans-serif',
|
3088 |
+
),
|
3089 |
+
'Patua One' => array(
|
3090 |
+
'variants' => array('regular'),
|
3091 |
+
'category' => 'display',
|
3092 |
+
),
|
3093 |
+
'Pavanam' => array(
|
3094 |
+
'variants' => array('regular'),
|
3095 |
+
'category' => 'sans-serif',
|
3096 |
+
),
|
3097 |
+
'Paytone One' => array(
|
3098 |
+
'variants' => array('regular'),
|
3099 |
+
'category' => 'sans-serif',
|
3100 |
+
),
|
3101 |
+
'Peddana' => array(
|
3102 |
+
'variants' => array('regular'),
|
3103 |
+
'category' => 'serif',
|
3104 |
+
),
|
3105 |
+
'Peralta' => array(
|
3106 |
+
'variants' => array('regular'),
|
3107 |
+
'category' => 'display',
|
3108 |
+
),
|
3109 |
+
'Permanent Marker' => array(
|
3110 |
+
'variants' => array('regular'),
|
3111 |
+
'category' => 'handwriting',
|
3112 |
+
),
|
3113 |
+
'Petit Formal Script' => array(
|
3114 |
+
'variants' => array('regular'),
|
3115 |
+
'category' => 'handwriting',
|
3116 |
+
),
|
3117 |
+
'Petrona' => array(
|
3118 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3119 |
+
'category' => 'serif',
|
3120 |
+
),
|
3121 |
+
'Philosopher' => array(
|
3122 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3123 |
+
'category' => 'sans-serif',
|
3124 |
+
),
|
3125 |
+
'Piazzolla' => array(
|
3126 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3127 |
+
'category' => 'serif',
|
3128 |
+
),
|
3129 |
+
'Piedra' => array(
|
3130 |
+
'variants' => array('regular'),
|
3131 |
+
'category' => 'display',
|
3132 |
+
),
|
3133 |
+
'Pinyon Script' => array(
|
3134 |
+
'variants' => array('regular'),
|
3135 |
+
'category' => 'handwriting',
|
3136 |
+
),
|
3137 |
+
'Pirata One' => array(
|
3138 |
+
'variants' => array('regular'),
|
3139 |
+
'category' => 'display',
|
3140 |
+
),
|
3141 |
+
'Plaster' => array(
|
3142 |
+
'variants' => array('regular'),
|
3143 |
+
'category' => 'display',
|
3144 |
+
),
|
3145 |
+
'Play' => array(
|
3146 |
+
'variants' => array('regular', '700'),
|
3147 |
+
'category' => 'sans-serif',
|
3148 |
+
),
|
3149 |
+
'Playball' => array(
|
3150 |
+
'variants' => array('regular'),
|
3151 |
+
'category' => 'display',
|
3152 |
+
),
|
3153 |
+
'Playfair Display' => array(
|
3154 |
+
'variants' => array('regular', '500', '600', '700', '800', '900', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3155 |
+
'category' => 'serif',
|
3156 |
+
),
|
3157 |
+
'Playfair Display SC' => array(
|
3158 |
+
'variants' => array('regular', 'italic', '700', '700italic', '900', '900italic'),
|
3159 |
+
'category' => 'serif',
|
3160 |
+
),
|
3161 |
+
'Podkova' => array(
|
3162 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
3163 |
+
'category' => 'serif',
|
3164 |
+
),
|
3165 |
+
'Poiret One' => array(
|
3166 |
+
'variants' => array('regular'),
|
3167 |
+
'category' => 'display',
|
3168 |
+
),
|
3169 |
+
'Poller One' => array(
|
3170 |
+
'variants' => array('regular'),
|
3171 |
+
'category' => 'display',
|
3172 |
+
),
|
3173 |
+
'Poly' => array(
|
3174 |
+
'variants' => array('regular', 'italic'),
|
3175 |
+
'category' => 'serif',
|
3176 |
+
),
|
3177 |
+
'Pompiere' => array(
|
3178 |
+
'variants' => array('regular'),
|
3179 |
+
'category' => 'display',
|
3180 |
+
),
|
3181 |
+
'Pontano Sans' => array(
|
3182 |
+
'variants' => array('regular'),
|
3183 |
+
'category' => 'sans-serif',
|
3184 |
+
),
|
3185 |
+
'Poor Story' => array(
|
3186 |
+
'variants' => array('regular'),
|
3187 |
+
'category' => 'display',
|
3188 |
+
),
|
3189 |
+
'Poppins' => array(
|
3190 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
3191 |
+
'category' => 'sans-serif',
|
3192 |
+
),
|
3193 |
+
'Port Lligat Sans' => array(
|
3194 |
+
'variants' => array('regular'),
|
3195 |
+
'category' => 'sans-serif',
|
3196 |
+
),
|
3197 |
+
'Port Lligat Slab' => array(
|
3198 |
+
'variants' => array('regular'),
|
3199 |
+
'category' => 'serif',
|
3200 |
+
),
|
3201 |
+
'Potta One' => array(
|
3202 |
+
'variants' => array('regular'),
|
3203 |
+
'category' => 'display',
|
3204 |
+
),
|
3205 |
+
'Pragati Narrow' => array(
|
3206 |
+
'variants' => array('regular', '700'),
|
3207 |
+
'category' => 'sans-serif',
|
3208 |
+
),
|
3209 |
+
'Prata' => array(
|
3210 |
+
'variants' => array('regular'),
|
3211 |
+
'category' => 'serif',
|
3212 |
+
),
|
3213 |
+
'Preahvihear' => array(
|
3214 |
+
'variants' => array('regular'),
|
3215 |
+
'category' => 'display',
|
3216 |
+
),
|
3217 |
+
'Press Start 2P' => array(
|
3218 |
+
'variants' => array('regular'),
|
3219 |
+
'category' => 'display',
|
3220 |
+
),
|
3221 |
+
'Pridi' => array(
|
3222 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700'),
|
3223 |
+
'category' => 'serif',
|
3224 |
+
),
|
3225 |
+
'Princess Sofia' => array(
|
3226 |
+
'variants' => array('regular'),
|
3227 |
+
'category' => 'handwriting',
|
3228 |
+
),
|
3229 |
+
'Prociono' => array(
|
3230 |
+
'variants' => array('regular'),
|
3231 |
+
'category' => 'serif',
|
3232 |
+
),
|
3233 |
+
'Prompt' => array(
|
3234 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
3235 |
+
'category' => 'sans-serif',
|
3236 |
+
),
|
3237 |
+
'Prosto One' => array(
|
3238 |
+
'variants' => array('regular'),
|
3239 |
+
'category' => 'display',
|
3240 |
+
),
|
3241 |
+
'Proza Libre' => array(
|
3242 |
+
'variants' => array('regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
3243 |
+
'category' => 'sans-serif',
|
3244 |
+
),
|
3245 |
+
'Public Sans' => array(
|
3246 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3247 |
+
'category' => 'sans-serif',
|
3248 |
+
),
|
3249 |
+
'Puritan' => array(
|
3250 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3251 |
+
'category' => 'sans-serif',
|
3252 |
+
),
|
3253 |
+
'Purple Purse' => array(
|
3254 |
+
'variants' => array('regular'),
|
3255 |
+
'category' => 'display',
|
3256 |
+
),
|
3257 |
+
'Quando' => array(
|
3258 |
+
'variants' => array('regular'),
|
3259 |
+
'category' => 'serif',
|
3260 |
+
),
|
3261 |
+
'Quantico' => array(
|
3262 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3263 |
+
'category' => 'sans-serif',
|
3264 |
+
),
|
3265 |
+
'Quattrocento' => array(
|
3266 |
+
'variants' => array('regular', '700'),
|
3267 |
+
'category' => 'serif',
|
3268 |
+
),
|
3269 |
+
'Quattrocento Sans' => array(
|
3270 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3271 |
+
'category' => 'sans-serif',
|
3272 |
+
),
|
3273 |
+
'Questrial' => array(
|
3274 |
+
'variants' => array('regular'),
|
3275 |
+
'category' => 'sans-serif',
|
3276 |
+
),
|
3277 |
+
'Quicksand' => array(
|
3278 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3279 |
+
'category' => 'sans-serif',
|
3280 |
+
),
|
3281 |
+
'Quintessential' => array(
|
3282 |
+
'variants' => array('regular'),
|
3283 |
+
'category' => 'handwriting',
|
3284 |
+
),
|
3285 |
+
'Qwigley' => array(
|
3286 |
+
'variants' => array('regular'),
|
3287 |
+
'category' => 'handwriting',
|
3288 |
+
),
|
3289 |
+
'Racing Sans One' => array(
|
3290 |
+
'variants' => array('regular'),
|
3291 |
+
'category' => 'display',
|
3292 |
+
),
|
3293 |
+
'Radley' => array(
|
3294 |
+
'variants' => array('regular', 'italic'),
|
3295 |
+
'category' => 'serif',
|
3296 |
+
),
|
3297 |
+
'Rajdhani' => array(
|
3298 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3299 |
+
'category' => 'sans-serif',
|
3300 |
+
),
|
3301 |
+
'Rakkas' => array(
|
3302 |
+
'variants' => array('regular'),
|
3303 |
+
'category' => 'display',
|
3304 |
+
),
|
3305 |
+
'Raleway' => array(
|
3306 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3307 |
+
'category' => 'sans-serif',
|
3308 |
+
),
|
3309 |
+
'Raleway Dots' => array(
|
3310 |
+
'variants' => array('regular'),
|
3311 |
+
'category' => 'display',
|
3312 |
+
),
|
3313 |
+
'Ramabhadra' => array(
|
3314 |
+
'variants' => array('regular'),
|
3315 |
+
'category' => 'sans-serif',
|
3316 |
+
),
|
3317 |
+
'Ramaraja' => array(
|
3318 |
+
'variants' => array('regular'),
|
3319 |
+
'category' => 'serif',
|
3320 |
+
),
|
3321 |
+
'Rambla' => array(
|
3322 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3323 |
+
'category' => 'sans-serif',
|
3324 |
+
),
|
3325 |
+
'Rammetto One' => array(
|
3326 |
+
'variants' => array('regular'),
|
3327 |
+
'category' => 'display',
|
3328 |
+
),
|
3329 |
+
'Ranchers' => array(
|
3330 |
+
'variants' => array('regular'),
|
3331 |
+
'category' => 'display',
|
3332 |
+
),
|
3333 |
+
'Rancho' => array(
|
3334 |
+
'variants' => array('regular'),
|
3335 |
+
'category' => 'handwriting',
|
3336 |
+
),
|
3337 |
+
'Ranga' => array(
|
3338 |
+
'variants' => array('regular', '700'),
|
3339 |
+
'category' => 'display',
|
3340 |
+
),
|
3341 |
+
'Rasa' => array(
|
3342 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3343 |
+
'category' => 'serif',
|
3344 |
+
),
|
3345 |
+
'Rationale' => array(
|
3346 |
+
'variants' => array('regular'),
|
3347 |
+
'category' => 'sans-serif',
|
3348 |
+
),
|
3349 |
+
'Ravi Prakash' => array(
|
3350 |
+
'variants' => array('regular'),
|
3351 |
+
'category' => 'display',
|
3352 |
+
),
|
3353 |
+
'Recursive' => array(
|
3354 |
+
'variants' => array('300', 'regular', '500', '600', '700', '800', '900'),
|
3355 |
+
'category' => 'sans-serif',
|
3356 |
+
),
|
3357 |
+
'Red Hat Display' => array(
|
3358 |
+
'variants' => array('regular', 'italic', '500', '500italic', '700', '700italic', '900', '900italic'),
|
3359 |
+
'category' => 'sans-serif',
|
3360 |
+
),
|
3361 |
+
'Red Hat Text' => array(
|
3362 |
+
'variants' => array('regular', 'italic', '500', '500italic', '700', '700italic'),
|
3363 |
+
'category' => 'sans-serif',
|
3364 |
+
),
|
3365 |
+
'Red Rose' => array(
|
3366 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3367 |
+
'category' => 'display',
|
3368 |
+
),
|
3369 |
+
'Redressed' => array(
|
3370 |
+
'variants' => array('regular'),
|
3371 |
+
'category' => 'handwriting',
|
3372 |
+
),
|
3373 |
+
'Reem Kufi' => array(
|
3374 |
+
'variants' => array('regular'),
|
3375 |
+
'category' => 'sans-serif',
|
3376 |
+
),
|
3377 |
+
'Reenie Beanie' => array(
|
3378 |
+
'variants' => array('regular'),
|
3379 |
+
'category' => 'handwriting',
|
3380 |
+
),
|
3381 |
+
'Reggae One' => array(
|
3382 |
+
'variants' => array('regular'),
|
3383 |
+
'category' => 'display',
|
3384 |
+
),
|
3385 |
+
'Revalia' => array(
|
3386 |
+
'variants' => array('regular'),
|
3387 |
+
'category' => 'display',
|
3388 |
+
),
|
3389 |
+
'Rhodium Libre' => array(
|
3390 |
+
'variants' => array('regular'),
|
3391 |
+
'category' => 'serif',
|
3392 |
+
),
|
3393 |
+
'Ribeye' => array(
|
3394 |
+
'variants' => array('regular'),
|
3395 |
+
'category' => 'display',
|
3396 |
+
),
|
3397 |
+
'Ribeye Marrow' => array(
|
3398 |
+
'variants' => array('regular'),
|
3399 |
+
'category' => 'display',
|
3400 |
+
),
|
3401 |
+
'Righteous' => array(
|
3402 |
+
'variants' => array('regular'),
|
3403 |
+
'category' => 'display',
|
3404 |
+
),
|
3405 |
+
'Risque' => array(
|
3406 |
+
'variants' => array('regular'),
|
3407 |
+
'category' => 'display',
|
3408 |
+
),
|
3409 |
+
'Roboto' => array(
|
3410 |
+
'variants' => array('100', '100italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '700', '700italic', '900', '900italic'),
|
3411 |
+
'category' => 'sans-serif',
|
3412 |
+
),
|
3413 |
+
'Roboto Condensed' => array(
|
3414 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '700', '700italic'),
|
3415 |
+
'category' => 'sans-serif',
|
3416 |
+
),
|
3417 |
+
'Roboto Mono' => array(
|
3418 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic'),
|
3419 |
+
'category' => 'monospace',
|
3420 |
+
),
|
3421 |
+
'Roboto Slab' => array(
|
3422 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
3423 |
+
'category' => 'serif',
|
3424 |
+
),
|
3425 |
+
'Rochester' => array(
|
3426 |
+
'variants' => array('regular'),
|
3427 |
+
'category' => 'handwriting',
|
3428 |
+
),
|
3429 |
+
'Rock Salt' => array(
|
3430 |
+
'variants' => array('regular'),
|
3431 |
+
'category' => 'handwriting',
|
3432 |
+
),
|
3433 |
+
'RocknRoll One' => array(
|
3434 |
+
'variants' => array('regular'),
|
3435 |
+
'category' => 'sans-serif',
|
3436 |
+
),
|
3437 |
+
'Rokkitt' => array(
|
3438 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
3439 |
+
'category' => 'serif',
|
3440 |
+
),
|
3441 |
+
'Romanesco' => array(
|
3442 |
+
'variants' => array('regular'),
|
3443 |
+
'category' => 'handwriting',
|
3444 |
+
),
|
3445 |
+
'Ropa Sans' => array(
|
3446 |
+
'variants' => array('regular', 'italic'),
|
3447 |
+
'category' => 'sans-serif',
|
3448 |
+
),
|
3449 |
+
'Rosario' => array(
|
3450 |
+
'variants' => array('300', 'regular', '500', '600', '700', '300italic', 'italic', '500italic', '600italic', '700italic'),
|
3451 |
+
'category' => 'sans-serif',
|
3452 |
+
),
|
3453 |
+
'Rosarivo' => array(
|
3454 |
+
'variants' => array('regular', 'italic'),
|
3455 |
+
'category' => 'serif',
|
3456 |
+
),
|
3457 |
+
'Rouge Script' => array(
|
3458 |
+
'variants' => array('regular'),
|
3459 |
+
'category' => 'handwriting',
|
3460 |
+
),
|
3461 |
+
'Rowdies' => array(
|
3462 |
+
'variants' => array('300', 'regular', '700'),
|
3463 |
+
'category' => 'display',
|
3464 |
+
),
|
3465 |
+
'Rozha One' => array(
|
3466 |
+
'variants' => array('regular'),
|
3467 |
+
'category' => 'serif',
|
3468 |
+
),
|
3469 |
+
'Rubik' => array(
|
3470 |
+
'variants' => array('300', 'regular', '500', '600', '700', '800', '900', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3471 |
+
'category' => 'sans-serif',
|
3472 |
+
),
|
3473 |
+
'Rubik Mono One' => array(
|
3474 |
+
'variants' => array('regular'),
|
3475 |
+
'category' => 'sans-serif',
|
3476 |
+
),
|
3477 |
+
'Ruda' => array(
|
3478 |
+
'variants' => array('regular', '500', '600', '700', '800', '900'),
|
3479 |
+
'category' => 'sans-serif',
|
3480 |
+
),
|
3481 |
+
'Rufina' => array(
|
3482 |
+
'variants' => array('regular', '700'),
|
3483 |
+
'category' => 'serif',
|
3484 |
+
),
|
3485 |
+
'Ruge Boogie' => array(
|
3486 |
+
'variants' => array('regular'),
|
3487 |
+
'category' => 'handwriting',
|
3488 |
+
),
|
3489 |
+
'Ruluko' => array(
|
3490 |
+
'variants' => array('regular'),
|
3491 |
+
'category' => 'sans-serif',
|
3492 |
+
),
|
3493 |
+
'Rum Raisin' => array(
|
3494 |
+
'variants' => array('regular'),
|
3495 |
+
'category' => 'sans-serif',
|
3496 |
+
),
|
3497 |
+
'Ruslan Display' => array(
|
3498 |
+
'variants' => array('regular'),
|
3499 |
+
'category' => 'display',
|
3500 |
+
),
|
3501 |
+
'Russo One' => array(
|
3502 |
+
'variants' => array('regular'),
|
3503 |
+
'category' => 'sans-serif',
|
3504 |
+
),
|
3505 |
+
'Ruthie' => array(
|
3506 |
+
'variants' => array('regular'),
|
3507 |
+
'category' => 'handwriting',
|
3508 |
+
),
|
3509 |
+
'Rye' => array(
|
3510 |
+
'variants' => array('regular'),
|
3511 |
+
'category' => 'display',
|
3512 |
+
),
|
3513 |
+
'Sacramento' => array(
|
3514 |
+
'variants' => array('regular'),
|
3515 |
+
'category' => 'handwriting',
|
3516 |
+
),
|
3517 |
+
'Sahitya' => array(
|
3518 |
+
'variants' => array('regular', '700'),
|
3519 |
+
'category' => 'serif',
|
3520 |
+
),
|
3521 |
+
'Sail' => array(
|
3522 |
+
'variants' => array('regular'),
|
3523 |
+
'category' => 'display',
|
3524 |
+
),
|
3525 |
+
'Saira' => array(
|
3526 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3527 |
+
'category' => 'sans-serif',
|
3528 |
+
),
|
3529 |
+
'Saira Condensed' => array(
|
3530 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
3531 |
+
'category' => 'sans-serif',
|
3532 |
+
),
|
3533 |
+
'Saira Extra Condensed' => array(
|
3534 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
3535 |
+
'category' => 'sans-serif',
|
3536 |
+
),
|
3537 |
+
'Saira Semi Condensed' => array(
|
3538 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
3539 |
+
'category' => 'sans-serif',
|
3540 |
+
),
|
3541 |
+
'Saira Stencil One' => array(
|
3542 |
+
'variants' => array('regular'),
|
3543 |
+
'category' => 'display',
|
3544 |
+
),
|
3545 |
+
'Salsa' => array(
|
3546 |
+
'variants' => array('regular'),
|
3547 |
+
'category' => 'display',
|
3548 |
+
),
|
3549 |
+
'Sanchez' => array(
|
3550 |
+
'variants' => array('regular', 'italic'),
|
3551 |
+
'category' => 'serif',
|
3552 |
+
),
|
3553 |
+
'Sancreek' => array(
|
3554 |
+
'variants' => array('regular'),
|
3555 |
+
'category' => 'display',
|
3556 |
+
),
|
3557 |
+
'Sansita' => array(
|
3558 |
+
'variants' => array('regular', 'italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
3559 |
+
'category' => 'sans-serif',
|
3560 |
+
),
|
3561 |
+
'Sansita Swashed' => array(
|
3562 |
+
'variants' => array('300', 'regular', '500', '600', '700', '800', '900'),
|
3563 |
+
'category' => 'display',
|
3564 |
+
),
|
3565 |
+
'Sarabun' => array(
|
3566 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
3567 |
+
'category' => 'sans-serif',
|
3568 |
+
),
|
3569 |
+
'Sarala' => array(
|
3570 |
+
'variants' => array('regular', '700'),
|
3571 |
+
'category' => 'sans-serif',
|
3572 |
+
),
|
3573 |
+
'Sarina' => array(
|
3574 |
+
'variants' => array('regular'),
|
3575 |
+
'category' => 'display',
|
3576 |
+
),
|
3577 |
+
'Sarpanch' => array(
|
3578 |
+
'variants' => array('regular', '500', '600', '700', '800', '900'),
|
3579 |
+
'category' => 'sans-serif',
|
3580 |
+
),
|
3581 |
+
'Satisfy' => array(
|
3582 |
+
'variants' => array('regular'),
|
3583 |
+
'category' => 'handwriting',
|
3584 |
+
),
|
3585 |
+
'Sawarabi Gothic' => array(
|
3586 |
+
'variants' => array('regular'),
|
3587 |
+
'category' => 'sans-serif',
|
3588 |
+
),
|
3589 |
+
'Sawarabi Mincho' => array(
|
3590 |
+
'variants' => array('regular'),
|
3591 |
+
'category' => 'sans-serif',
|
3592 |
+
),
|
3593 |
+
'Scada' => array(
|
3594 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3595 |
+
'category' => 'sans-serif',
|
3596 |
+
),
|
3597 |
+
'Scheherazade' => array(
|
3598 |
+
'variants' => array('regular', '700'),
|
3599 |
+
'category' => 'serif',
|
3600 |
+
),
|
3601 |
+
'Schoolbell' => array(
|
3602 |
+
'variants' => array('regular'),
|
3603 |
+
'category' => 'handwriting',
|
3604 |
+
),
|
3605 |
+
'Scope One' => array(
|
3606 |
+
'variants' => array('regular'),
|
3607 |
+
'category' => 'serif',
|
3608 |
+
),
|
3609 |
+
'Seaweed Script' => array(
|
3610 |
+
'variants' => array('regular'),
|
3611 |
+
'category' => 'display',
|
3612 |
+
),
|
3613 |
+
'Secular One' => array(
|
3614 |
+
'variants' => array('regular'),
|
3615 |
+
'category' => 'sans-serif',
|
3616 |
+
),
|
3617 |
+
'Sedgwick Ave' => array(
|
3618 |
+
'variants' => array('regular'),
|
3619 |
+
'category' => 'handwriting',
|
3620 |
+
),
|
3621 |
+
'Sedgwick Ave Display' => array(
|
3622 |
+
'variants' => array('regular'),
|
3623 |
+
'category' => 'handwriting',
|
3624 |
+
),
|
3625 |
+
'Sen' => array(
|
3626 |
+
'variants' => array('regular', '700', '800'),
|
3627 |
+
'category' => 'sans-serif',
|
3628 |
+
),
|
3629 |
+
'Sevillana' => array(
|
3630 |
+
'variants' => array('regular'),
|
3631 |
+
'category' => 'display',
|
3632 |
+
),
|
3633 |
+
'Seymour One' => array(
|
3634 |
+
'variants' => array('regular'),
|
3635 |
+
'category' => 'sans-serif',
|
3636 |
+
),
|
3637 |
+
'Shadows Into Light' => array(
|
3638 |
+
'variants' => array('regular'),
|
3639 |
+
'category' => 'handwriting',
|
3640 |
+
),
|
3641 |
+
'Shadows Into Light Two' => array(
|
3642 |
+
'variants' => array('regular'),
|
3643 |
+
'category' => 'handwriting',
|
3644 |
+
),
|
3645 |
+
'Shanti' => array(
|
3646 |
+
'variants' => array('regular'),
|
3647 |
+
'category' => 'sans-serif',
|
3648 |
+
),
|
3649 |
+
'Share' => array(
|
3650 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3651 |
+
'category' => 'display',
|
3652 |
+
),
|
3653 |
+
'Share Tech' => array(
|
3654 |
+
'variants' => array('regular'),
|
3655 |
+
'category' => 'sans-serif',
|
3656 |
+
),
|
3657 |
+
'Share Tech Mono' => array(
|
3658 |
+
'variants' => array('regular'),
|
3659 |
+
'category' => 'monospace',
|
3660 |
+
),
|
3661 |
+
'Shippori Mincho' => array(
|
3662 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
3663 |
+
'category' => 'serif',
|
3664 |
+
),
|
3665 |
+
'Shippori Mincho B1' => array(
|
3666 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
3667 |
+
'category' => 'serif',
|
3668 |
+
),
|
3669 |
+
'Shojumaru' => array(
|
3670 |
+
'variants' => array('regular'),
|
3671 |
+
'category' => 'display',
|
3672 |
+
),
|
3673 |
+
'Short Stack' => array(
|
3674 |
+
'variants' => array('regular'),
|
3675 |
+
'category' => 'handwriting',
|
3676 |
+
),
|
3677 |
+
'Shrikhand' => array(
|
3678 |
+
'variants' => array('regular'),
|
3679 |
+
'category' => 'display',
|
3680 |
+
),
|
3681 |
+
'Siemreap' => array(
|
3682 |
+
'variants' => array('regular'),
|
3683 |
+
'category' => 'display',
|
3684 |
+
),
|
3685 |
+
'Sigmar One' => array(
|
3686 |
+
'variants' => array('regular'),
|
3687 |
+
'category' => 'display',
|
3688 |
+
),
|
3689 |
+
'Signika' => array(
|
3690 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3691 |
+
'category' => 'sans-serif',
|
3692 |
+
),
|
3693 |
+
'Signika Negative' => array(
|
3694 |
+
'variants' => array('300', 'regular', '600', '700'),
|
3695 |
+
'category' => 'sans-serif',
|
3696 |
+
),
|
3697 |
+
'Simonetta' => array(
|
3698 |
+
'variants' => array('regular', 'italic', '900', '900italic'),
|
3699 |
+
'category' => 'display',
|
3700 |
+
),
|
3701 |
+
'Single Day' => array(
|
3702 |
+
'variants' => array('regular'),
|
3703 |
+
'category' => 'display',
|
3704 |
+
),
|
3705 |
+
'Sintony' => array(
|
3706 |
+
'variants' => array('regular', '700'),
|
3707 |
+
'category' => 'sans-serif',
|
3708 |
+
),
|
3709 |
+
'Sirin Stencil' => array(
|
3710 |
+
'variants' => array('regular'),
|
3711 |
+
'category' => 'display',
|
3712 |
+
),
|
3713 |
+
'Six Caps' => array(
|
3714 |
+
'variants' => array('regular'),
|
3715 |
+
'category' => 'sans-serif',
|
3716 |
+
),
|
3717 |
+
'Skranji' => array(
|
3718 |
+
'variants' => array('regular', '700'),
|
3719 |
+
'category' => 'display',
|
3720 |
+
),
|
3721 |
+
'Slabo 13px' => array(
|
3722 |
+
'variants' => array('regular'),
|
3723 |
+
'category' => 'serif',
|
3724 |
+
),
|
3725 |
+
'Slabo 27px' => array(
|
3726 |
+
'variants' => array('regular'),
|
3727 |
+
'category' => 'serif',
|
3728 |
+
),
|
3729 |
+
'Slackey' => array(
|
3730 |
+
'variants' => array('regular'),
|
3731 |
+
'category' => 'display',
|
3732 |
+
),
|
3733 |
+
'Smokum' => array(
|
3734 |
+
'variants' => array('regular'),
|
3735 |
+
'category' => 'display',
|
3736 |
+
),
|
3737 |
+
'Smythe' => array(
|
3738 |
+
'variants' => array('regular'),
|
3739 |
+
'category' => 'display',
|
3740 |
+
),
|
3741 |
+
'Sniglet' => array(
|
3742 |
+
'variants' => array('regular', '800'),
|
3743 |
+
'category' => 'display',
|
3744 |
+
),
|
3745 |
+
'Snippet' => array(
|
3746 |
+
'variants' => array('regular'),
|
3747 |
+
'category' => 'sans-serif',
|
3748 |
+
),
|
3749 |
+
'Snowburst One' => array(
|
3750 |
+
'variants' => array('regular'),
|
3751 |
+
'category' => 'display',
|
3752 |
+
),
|
3753 |
+
'Sofadi One' => array(
|
3754 |
+
'variants' => array('regular'),
|
3755 |
+
'category' => 'display',
|
3756 |
+
),
|
3757 |
+
'Sofia' => array(
|
3758 |
+
'variants' => array('regular'),
|
3759 |
+
'category' => 'handwriting',
|
3760 |
+
),
|
3761 |
+
'Solway' => array(
|
3762 |
+
'variants' => array('300', 'regular', '500', '700', '800'),
|
3763 |
+
'category' => 'serif',
|
3764 |
+
),
|
3765 |
+
'Song Myung' => array(
|
3766 |
+
'variants' => array('regular'),
|
3767 |
+
'category' => 'serif',
|
3768 |
+
),
|
3769 |
+
'Sonsie One' => array(
|
3770 |
+
'variants' => array('regular'),
|
3771 |
+
'category' => 'display',
|
3772 |
+
),
|
3773 |
+
'Sora' => array(
|
3774 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800'),
|
3775 |
+
'category' => 'sans-serif',
|
3776 |
+
),
|
3777 |
+
'Sorts Mill Goudy' => array(
|
3778 |
+
'variants' => array('regular', 'italic'),
|
3779 |
+
'category' => 'serif',
|
3780 |
+
),
|
3781 |
+
'Source Code Pro' => array(
|
3782 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '900', '900italic'),
|
3783 |
+
'category' => 'monospace',
|
3784 |
+
),
|
3785 |
+
'Source Sans Pro' => array(
|
3786 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '900', '900italic'),
|
3787 |
+
'category' => 'sans-serif',
|
3788 |
+
),
|
3789 |
+
'Source Serif Pro' => array(
|
3790 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '900', '900italic'),
|
3791 |
+
'category' => 'serif',
|
3792 |
+
),
|
3793 |
+
'Space Grotesk' => array(
|
3794 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3795 |
+
'category' => 'sans-serif',
|
3796 |
+
),
|
3797 |
+
'Space Mono' => array(
|
3798 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3799 |
+
'category' => 'monospace',
|
3800 |
+
),
|
3801 |
+
'Spartan' => array(
|
3802 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
3803 |
+
'category' => 'sans-serif',
|
3804 |
+
),
|
3805 |
+
'Special Elite' => array(
|
3806 |
+
'variants' => array('regular'),
|
3807 |
+
'category' => 'display',
|
3808 |
+
),
|
3809 |
+
'Spectral' => array(
|
3810 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
3811 |
+
'category' => 'serif',
|
3812 |
+
),
|
3813 |
+
'Spectral SC' => array(
|
3814 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic'),
|
3815 |
+
'category' => 'serif',
|
3816 |
+
),
|
3817 |
+
'Spicy Rice' => array(
|
3818 |
+
'variants' => array('regular'),
|
3819 |
+
'category' => 'display',
|
3820 |
+
),
|
3821 |
+
'Spinnaker' => array(
|
3822 |
+
'variants' => array('regular'),
|
3823 |
+
'category' => 'sans-serif',
|
3824 |
+
),
|
3825 |
+
'Spirax' => array(
|
3826 |
+
'variants' => array('regular'),
|
3827 |
+
'category' => 'display',
|
3828 |
+
),
|
3829 |
+
'Squada One' => array(
|
3830 |
+
'variants' => array('regular'),
|
3831 |
+
'category' => 'display',
|
3832 |
+
),
|
3833 |
+
'Sree Krushnadevaraya' => array(
|
3834 |
+
'variants' => array('regular'),
|
3835 |
+
'category' => 'serif',
|
3836 |
+
),
|
3837 |
+
'Sriracha' => array(
|
3838 |
+
'variants' => array('regular'),
|
3839 |
+
'category' => 'handwriting',
|
3840 |
+
),
|
3841 |
+
'Srisakdi' => array(
|
3842 |
+
'variants' => array('regular', '700'),
|
3843 |
+
'category' => 'display',
|
3844 |
+
),
|
3845 |
+
'Staatliches' => array(
|
3846 |
+
'variants' => array('regular'),
|
3847 |
+
'category' => 'display',
|
3848 |
+
),
|
3849 |
+
'Stalemate' => array(
|
3850 |
+
'variants' => array('regular'),
|
3851 |
+
'category' => 'handwriting',
|
3852 |
+
),
|
3853 |
+
'Stalinist One' => array(
|
3854 |
+
'variants' => array('regular'),
|
3855 |
+
'category' => 'display',
|
3856 |
+
),
|
3857 |
+
'Stardos Stencil' => array(
|
3858 |
+
'variants' => array('regular', '700'),
|
3859 |
+
'category' => 'display',
|
3860 |
+
),
|
3861 |
+
'Stick' => array(
|
3862 |
+
'variants' => array('regular'),
|
3863 |
+
'category' => 'sans-serif',
|
3864 |
+
),
|
3865 |
+
'Stint Ultra Condensed' => array(
|
3866 |
+
'variants' => array('regular'),
|
3867 |
+
'category' => 'display',
|
3868 |
+
),
|
3869 |
+
'Stint Ultra Expanded' => array(
|
3870 |
+
'variants' => array('regular'),
|
3871 |
+
'category' => 'display',
|
3872 |
+
),
|
3873 |
+
'Stoke' => array(
|
3874 |
+
'variants' => array('300', 'regular'),
|
3875 |
+
'category' => 'serif',
|
3876 |
+
),
|
3877 |
+
'Strait' => array(
|
3878 |
+
'variants' => array('regular'),
|
3879 |
+
'category' => 'sans-serif',
|
3880 |
+
),
|
3881 |
+
'Stylish' => array(
|
3882 |
+
'variants' => array('regular'),
|
3883 |
+
'category' => 'sans-serif',
|
3884 |
+
),
|
3885 |
+
'Sue Ellen Francisco' => array(
|
3886 |
+
'variants' => array('regular'),
|
3887 |
+
'category' => 'handwriting',
|
3888 |
+
),
|
3889 |
+
'Suez One' => array(
|
3890 |
+
'variants' => array('regular'),
|
3891 |
+
'category' => 'serif',
|
3892 |
+
),
|
3893 |
+
'Sulphur Point' => array(
|
3894 |
+
'variants' => array('300', 'regular', '700'),
|
3895 |
+
'category' => 'sans-serif',
|
3896 |
+
),
|
3897 |
+
'Sumana' => array(
|
3898 |
+
'variants' => array('regular', '700'),
|
3899 |
+
'category' => 'serif',
|
3900 |
+
),
|
3901 |
+
'Sunflower' => array(
|
3902 |
+
'variants' => array('300', '500', '700'),
|
3903 |
+
'category' => 'sans-serif',
|
3904 |
+
),
|
3905 |
+
'Sunshiney' => array(
|
3906 |
+
'variants' => array('regular'),
|
3907 |
+
'category' => 'handwriting',
|
3908 |
+
),
|
3909 |
+
'Supermercado One' => array(
|
3910 |
+
'variants' => array('regular'),
|
3911 |
+
'category' => 'display',
|
3912 |
+
),
|
3913 |
+
'Sura' => array(
|
3914 |
+
'variants' => array('regular', '700'),
|
3915 |
+
'category' => 'serif',
|
3916 |
+
),
|
3917 |
+
'Suranna' => array(
|
3918 |
+
'variants' => array('regular'),
|
3919 |
+
'category' => 'serif',
|
3920 |
+
),
|
3921 |
+
'Suravaram' => array(
|
3922 |
+
'variants' => array('regular'),
|
3923 |
+
'category' => 'serif',
|
3924 |
+
),
|
3925 |
+
'Suwannaphum' => array(
|
3926 |
+
'variants' => array('regular'),
|
3927 |
+
'category' => 'display',
|
3928 |
+
),
|
3929 |
+
'Swanky and Moo Moo' => array(
|
3930 |
+
'variants' => array('regular'),
|
3931 |
+
'category' => 'handwriting',
|
3932 |
+
),
|
3933 |
+
'Syncopate' => array(
|
3934 |
+
'variants' => array('regular', '700'),
|
3935 |
+
'category' => 'sans-serif',
|
3936 |
+
),
|
3937 |
+
'Syne' => array(
|
3938 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
3939 |
+
'category' => 'sans-serif',
|
3940 |
+
),
|
3941 |
+
'Syne Mono' => array(
|
3942 |
+
'variants' => array('regular'),
|
3943 |
+
'category' => 'monospace',
|
3944 |
+
),
|
3945 |
+
'Syne Tactile' => array(
|
3946 |
+
'variants' => array('regular'),
|
3947 |
+
'category' => 'display',
|
3948 |
+
),
|
3949 |
+
'Tajawal' => array(
|
3950 |
+
'variants' => array('200', '300', 'regular', '500', '700', '800', '900'),
|
3951 |
+
'category' => 'sans-serif',
|
3952 |
+
),
|
3953 |
+
'Tangerine' => array(
|
3954 |
+
'variants' => array('regular', '700'),
|
3955 |
+
'category' => 'handwriting',
|
3956 |
+
),
|
3957 |
+
'Taprom' => array(
|
3958 |
+
'variants' => array('regular'),
|
3959 |
+
'category' => 'display',
|
3960 |
+
),
|
3961 |
+
'Tauri' => array(
|
3962 |
+
'variants' => array('regular'),
|
3963 |
+
'category' => 'sans-serif',
|
3964 |
+
),
|
3965 |
+
'Taviraj' => array(
|
3966 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
3967 |
+
'category' => 'serif',
|
3968 |
+
),
|
3969 |
+
'Teko' => array(
|
3970 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
3971 |
+
'category' => 'sans-serif',
|
3972 |
+
),
|
3973 |
+
'Telex' => array(
|
3974 |
+
'variants' => array('regular'),
|
3975 |
+
'category' => 'sans-serif',
|
3976 |
+
),
|
3977 |
+
'Tenali Ramakrishna' => array(
|
3978 |
+
'variants' => array('regular'),
|
3979 |
+
'category' => 'sans-serif',
|
3980 |
+
),
|
3981 |
+
'Tenor Sans' => array(
|
3982 |
+
'variants' => array('regular'),
|
3983 |
+
'category' => 'sans-serif',
|
3984 |
+
),
|
3985 |
+
'Text Me One' => array(
|
3986 |
+
'variants' => array('regular'),
|
3987 |
+
'category' => 'sans-serif',
|
3988 |
+
),
|
3989 |
+
'Texturina' => array(
|
3990 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
3991 |
+
'category' => 'serif',
|
3992 |
+
),
|
3993 |
+
'Thasadith' => array(
|
3994 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
3995 |
+
'category' => 'sans-serif',
|
3996 |
+
),
|
3997 |
+
'The Girl Next Door' => array(
|
3998 |
+
'variants' => array('regular'),
|
3999 |
+
'category' => 'handwriting',
|
4000 |
+
),
|
4001 |
+
'Tienne' => array(
|
4002 |
+
'variants' => array('regular', '700', '900'),
|
4003 |
+
'category' => 'serif',
|
4004 |
+
),
|
4005 |
+
'Tillana' => array(
|
4006 |
+
'variants' => array('regular', '500', '600', '700', '800'),
|
4007 |
+
'category' => 'handwriting',
|
4008 |
+
),
|
4009 |
+
'Timmana' => array(
|
4010 |
+
'variants' => array('regular'),
|
4011 |
+
'category' => 'sans-serif',
|
4012 |
+
),
|
4013 |
+
'Tinos' => array(
|
4014 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
4015 |
+
'category' => 'serif',
|
4016 |
+
),
|
4017 |
+
'Titan One' => array(
|
4018 |
+
'variants' => array('regular'),
|
4019 |
+
'category' => 'display',
|
4020 |
+
),
|
4021 |
+
'Titillium Web' => array(
|
4022 |
+
'variants' => array('200', '200italic', '300', '300italic', 'regular', 'italic', '600', '600italic', '700', '700italic', '900'),
|
4023 |
+
'category' => 'sans-serif',
|
4024 |
+
),
|
4025 |
+
'Tomorrow' => array(
|
4026 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
4027 |
+
'category' => 'sans-serif',
|
4028 |
+
),
|
4029 |
+
'Trade Winds' => array(
|
4030 |
+
'variants' => array('regular'),
|
4031 |
+
'category' => 'display',
|
4032 |
+
),
|
4033 |
+
'Train One' => array(
|
4034 |
+
'variants' => array('regular'),
|
4035 |
+
'category' => 'display',
|
4036 |
+
),
|
4037 |
+
'Trirong' => array(
|
4038 |
+
'variants' => array('100', '100italic', '200', '200italic', '300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic', '800', '800italic', '900', '900italic'),
|
4039 |
+
'category' => 'serif',
|
4040 |
+
),
|
4041 |
+
'Trispace' => array(
|
4042 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800'),
|
4043 |
+
'category' => 'sans-serif',
|
4044 |
+
),
|
4045 |
+
'Trocchi' => array(
|
4046 |
+
'variants' => array('regular'),
|
4047 |
+
'category' => 'serif',
|
4048 |
+
),
|
4049 |
+
'Trochut' => array(
|
4050 |
+
'variants' => array('regular', 'italic', '700'),
|
4051 |
+
'category' => 'display',
|
4052 |
+
),
|
4053 |
+
'Truculenta' => array(
|
4054 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900'),
|
4055 |
+
'category' => 'sans-serif',
|
4056 |
+
),
|
4057 |
+
'Trykker' => array(
|
4058 |
+
'variants' => array('regular'),
|
4059 |
+
'category' => 'serif',
|
4060 |
+
),
|
4061 |
+
'Tulpen One' => array(
|
4062 |
+
'variants' => array('regular'),
|
4063 |
+
'category' => 'display',
|
4064 |
+
),
|
4065 |
+
'Turret Road' => array(
|
4066 |
+
'variants' => array('200', '300', 'regular', '500', '700', '800'),
|
4067 |
+
'category' => 'display',
|
4068 |
+
),
|
4069 |
+
'Ubuntu' => array(
|
4070 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic', '700', '700italic'),
|
4071 |
+
'category' => 'sans-serif',
|
4072 |
+
),
|
4073 |
+
'Ubuntu Condensed' => array(
|
4074 |
+
'variants' => array('regular'),
|
4075 |
+
'category' => 'sans-serif',
|
4076 |
+
),
|
4077 |
+
'Ubuntu Mono' => array(
|
4078 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
4079 |
+
'category' => 'monospace',
|
4080 |
+
),
|
4081 |
+
'Ultra' => array(
|
4082 |
+
'variants' => array('regular'),
|
4083 |
+
'category' => 'serif',
|
4084 |
+
),
|
4085 |
+
'Uncial Antiqua' => array(
|
4086 |
+
'variants' => array('regular'),
|
4087 |
+
'category' => 'display',
|
4088 |
+
),
|
4089 |
+
'Underdog' => array(
|
4090 |
+
'variants' => array('regular'),
|
4091 |
+
'category' => 'display',
|
4092 |
+
),
|
4093 |
+
'Unica One' => array(
|
4094 |
+
'variants' => array('regular'),
|
4095 |
+
'category' => 'display',
|
4096 |
+
),
|
4097 |
+
'UnifrakturCook' => array(
|
4098 |
+
'variants' => array('700'),
|
4099 |
+
'category' => 'display',
|
4100 |
+
),
|
4101 |
+
'UnifrakturMaguntia' => array(
|
4102 |
+
'variants' => array('regular'),
|
4103 |
+
'category' => 'display',
|
4104 |
+
),
|
4105 |
+
'Unkempt' => array(
|
4106 |
+
'variants' => array('regular', '700'),
|
4107 |
+
'category' => 'display',
|
4108 |
+
),
|
4109 |
+
'Unlock' => array(
|
4110 |
+
'variants' => array('regular'),
|
4111 |
+
'category' => 'display',
|
4112 |
+
),
|
4113 |
+
'Unna' => array(
|
4114 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
4115 |
+
'category' => 'serif',
|
4116 |
+
),
|
4117 |
+
'VT323' => array(
|
4118 |
+
'variants' => array('regular'),
|
4119 |
+
'category' => 'monospace',
|
4120 |
+
),
|
4121 |
+
'Vampiro One' => array(
|
4122 |
+
'variants' => array('regular'),
|
4123 |
+
'category' => 'display',
|
4124 |
+
),
|
4125 |
+
'Varela' => array(
|
4126 |
+
'variants' => array('regular'),
|
4127 |
+
'category' => 'sans-serif',
|
4128 |
+
),
|
4129 |
+
'Varela Round' => array(
|
4130 |
+
'variants' => array('regular'),
|
4131 |
+
'category' => 'sans-serif',
|
4132 |
+
),
|
4133 |
+
'Varta' => array(
|
4134 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
4135 |
+
'category' => 'sans-serif',
|
4136 |
+
),
|
4137 |
+
'Vast Shadow' => array(
|
4138 |
+
'variants' => array('regular'),
|
4139 |
+
'category' => 'display',
|
4140 |
+
),
|
4141 |
+
'Vesper Libre' => array(
|
4142 |
+
'variants' => array('regular', '500', '700', '900'),
|
4143 |
+
'category' => 'serif',
|
4144 |
+
),
|
4145 |
+
'Viaoda Libre' => array(
|
4146 |
+
'variants' => array('regular'),
|
4147 |
+
'category' => 'display',
|
4148 |
+
),
|
4149 |
+
'Vibes' => array(
|
4150 |
+
'variants' => array('regular'),
|
4151 |
+
'category' => 'display',
|
4152 |
+
),
|
4153 |
+
'Vibur' => array(
|
4154 |
+
'variants' => array('regular'),
|
4155 |
+
'category' => 'handwriting',
|
4156 |
+
),
|
4157 |
+
'Vidaloka' => array(
|
4158 |
+
'variants' => array('regular'),
|
4159 |
+
'category' => 'serif',
|
4160 |
+
),
|
4161 |
+
'Viga' => array(
|
4162 |
+
'variants' => array('regular'),
|
4163 |
+
'category' => 'sans-serif',
|
4164 |
+
),
|
4165 |
+
'Voces' => array(
|
4166 |
+
'variants' => array('regular'),
|
4167 |
+
'category' => 'display',
|
4168 |
+
),
|
4169 |
+
'Volkhov' => array(
|
4170 |
+
'variants' => array('regular', 'italic', '700', '700italic'),
|
4171 |
+
'category' => 'serif',
|
4172 |
+
),
|
4173 |
+
'Vollkorn' => array(
|
4174 |
+
'variants' => array('regular', '500', '600', '700', '800', '900', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
4175 |
+
'category' => 'serif',
|
4176 |
+
),
|
4177 |
+
'Vollkorn SC' => array(
|
4178 |
+
'variants' => array('regular', '600', '700', '900'),
|
4179 |
+
'category' => 'serif',
|
4180 |
+
),
|
4181 |
+
'Voltaire' => array(
|
4182 |
+
'variants' => array('regular'),
|
4183 |
+
'category' => 'sans-serif',
|
4184 |
+
),
|
4185 |
+
'Waiting for the Sunrise' => array(
|
4186 |
+
'variants' => array('regular'),
|
4187 |
+
'category' => 'handwriting',
|
4188 |
+
),
|
4189 |
+
'Wallpoet' => array(
|
4190 |
+
'variants' => array('regular'),
|
4191 |
+
'category' => 'display',
|
4192 |
+
),
|
4193 |
+
'Walter Turncoat' => array(
|
4194 |
+
'variants' => array('regular'),
|
4195 |
+
'category' => 'handwriting',
|
4196 |
+
),
|
4197 |
+
'Warnes' => array(
|
4198 |
+
'variants' => array('regular'),
|
4199 |
+
'category' => 'display',
|
4200 |
+
),
|
4201 |
+
'Wellfleet' => array(
|
4202 |
+
'variants' => array('regular'),
|
4203 |
+
'category' => 'display',
|
4204 |
+
),
|
4205 |
+
'Wendy One' => array(
|
4206 |
+
'variants' => array('regular'),
|
4207 |
+
'category' => 'sans-serif',
|
4208 |
+
),
|
4209 |
+
'Wire One' => array(
|
4210 |
+
'variants' => array('regular'),
|
4211 |
+
'category' => 'sans-serif',
|
4212 |
+
),
|
4213 |
+
'Work Sans' => array(
|
4214 |
+
'variants' => array('100', '200', '300', 'regular', '500', '600', '700', '800', '900', '100italic', '200italic', '300italic', 'italic', '500italic', '600italic', '700italic', '800italic', '900italic'),
|
4215 |
+
'category' => 'sans-serif',
|
4216 |
+
),
|
4217 |
+
'Xanh Mono' => array(
|
4218 |
+
'variants' => array('regular', 'italic'),
|
4219 |
+
'category' => 'monospace',
|
4220 |
+
),
|
4221 |
+
'Yanone Kaffeesatz' => array(
|
4222 |
+
'variants' => array('200', '300', 'regular', '500', '600', '700'),
|
4223 |
+
'category' => 'sans-serif',
|
4224 |
+
),
|
4225 |
+
'Yantramanav' => array(
|
4226 |
+
'variants' => array('100', '300', 'regular', '500', '700', '900'),
|
4227 |
+
'category' => 'sans-serif',
|
4228 |
+
),
|
4229 |
+
'Yatra One' => array(
|
4230 |
+
'variants' => array('regular'),
|
4231 |
+
'category' => 'display',
|
4232 |
+
),
|
4233 |
+
'Yellowtail' => array(
|
4234 |
+
'variants' => array('regular'),
|
4235 |
+
'category' => 'handwriting',
|
4236 |
+
),
|
4237 |
+
'Yeon Sung' => array(
|
4238 |
+
'variants' => array('regular'),
|
4239 |
+
'category' => 'display',
|
4240 |
+
),
|
4241 |
+
'Yeseva One' => array(
|
4242 |
+
'variants' => array('regular'),
|
4243 |
+
'category' => 'display',
|
4244 |
+
),
|
4245 |
+
'Yesteryear' => array(
|
4246 |
+
'variants' => array('regular'),
|
4247 |
+
'category' => 'handwriting',
|
4248 |
+
),
|
4249 |
+
'Yrsa' => array(
|
4250 |
+
'variants' => array('300', 'regular', '500', '600', '700'),
|
4251 |
+
'category' => 'serif',
|
4252 |
+
),
|
4253 |
+
'Yusei Magic' => array(
|
4254 |
+
'variants' => array('regular'),
|
4255 |
+
'category' => 'sans-serif',
|
4256 |
+
),
|
4257 |
+
'ZCOOL KuaiLe' => array(
|
4258 |
+
'variants' => array('regular'),
|
4259 |
+
'category' => 'display',
|
4260 |
+
),
|
4261 |
+
'ZCOOL QingKe HuangYou' => array(
|
4262 |
+
'variants' => array('regular'),
|
4263 |
+
'category' => 'display',
|
4264 |
+
),
|
4265 |
+
'ZCOOL XiaoWei' => array(
|
4266 |
+
'variants' => array('regular'),
|
4267 |
+
'category' => 'serif',
|
4268 |
+
),
|
4269 |
+
'Zen Dots' => array(
|
4270 |
+
'variants' => array('regular'),
|
4271 |
+
'category' => 'display',
|
4272 |
+
),
|
4273 |
+
'Zeyada' => array(
|
4274 |
+
'variants' => array('regular'),
|
4275 |
+
'category' => 'handwriting',
|
4276 |
+
),
|
4277 |
+
'Zhi Mang Xing' => array(
|
4278 |
+
'variants' => array('regular'),
|
4279 |
+
'category' => 'handwriting',
|
4280 |
+
),
|
4281 |
+
'Zilla Slab' => array(
|
4282 |
+
'variants' => array('300', '300italic', 'regular', 'italic', '500', '500italic', '600', '600italic', '700', '700italic'),
|
4283 |
+
'category' => 'serif',
|
4284 |
+
),
|
4285 |
+
'Zilla Slab Highlight' => array(
|
4286 |
+
'variants' => array('regular', '700'),
|
4287 |
+
'category' => 'display',
|
4288 |
+
)
|
4289 |
+
);
|
4290 |
+
}
|
4291 |
+
|
4292 |
+
}
|
app/Services/FluentConversational/Classes/Form.php
ADDED
@@ -0,0 +1,662 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace FluentForm\App\Services\FluentConversational\Classes;
|
4 |
+
|
5 |
+
use FluentForm\App\Modules\Form\Settings\FormCssJs;
|
6 |
+
use FluentForm\App\Services\FluentConversational\Classes\Elements\WelcomeScreen;
|
7 |
+
use FluentForm\App\Helpers\Helper;
|
8 |
+
use FluentForm\App\Modules\Acl\Acl;
|
9 |
+
use FluentForm\App\Services\FluentConversational\Classes\Converter\Converter;
|
10 |
+
use FluentForm\Framework\Helpers\ArrayHelper;
|
11 |
+
use FluentForm\View;
|
12 |
+
|
13 |
+
class Form
|
14 |
+
{
|
15 |
+
protected $addOnKey = 'conversational_forms';
|
16 |
+
|
17 |
+
protected $metaKey = 'ffc_form_settings';
|
18 |
+
|
19 |
+
public function boot()
|
20 |
+
{
|
21 |
+
add_action('wp', [$this, 'render'], 100);
|
22 |
+
|
23 |
+
add_action('wp_ajax_ff_get_conversational_form_settings', [$this, 'getSettingsAjax']);
|
24 |
+
|
25 |
+
add_action('wp_ajax_ff_store_conversational_form_settings', [$this, 'saveSettingsAjax']);
|
26 |
+
|
27 |
+
add_filter('fluent_editor_components', array($this, 'filterAcceptedFields'), 999, 2);
|
28 |
+
|
29 |
+
add_filter('fluentform_form_admin_menu', array($this, 'pushDesignTab'), 10, 2);
|
30 |
+
|
31 |
+
add_filter('ff_fluentform_form_application_view_conversational_design', array($this, 'renderDesignSettings'), 10, 1);
|
32 |
+
|
33 |
+
add_filter('fluent_editor_element_settings_placement', array($this, 'maybeAlterPlacement'), 10, 2);
|
34 |
+
|
35 |
+
// elements
|
36 |
+
new WelcomeScreen();
|
37 |
+
|
38 |
+
}
|
39 |
+
|
40 |
+
public function pushDesignTab($menuItems, $formId)
|
41 |
+
{
|
42 |
+
if (!Helper::isConversionForm($formId)) {
|
43 |
+
return $menuItems;
|
44 |
+
}
|
45 |
+
|
46 |
+
$newItems = array_slice($menuItems, 0, 1, true) + [
|
47 |
+
'conversational_design' => array(
|
48 |
+
'slug' => 'conversational_design',
|
49 |
+
'title' => __('Design', 'fluentform'),
|
50 |
+
'url' => admin_url('admin.php?page=fluent_forms&form_id=' . $formId . '&route=conversational_design')
|
51 |
+
)
|
52 |
+
] + array_slice($menuItems, 1, count($menuItems) - 1, true);
|
53 |
+
|
54 |
+
return $newItems;
|
55 |
+
}
|
56 |
+
|
57 |
+
public function renderDesignSettings($formId)
|
58 |
+
{
|
59 |
+
if (!Helper::isConversionForm($formId)) {
|
60 |
+
echo 'Sorry! This is not a conversational form';
|
61 |
+
return;
|
62 |
+
}
|
63 |
+
|
64 |
+
if (function_exists('wp_enqueue_editor')) {
|
65 |
+
add_filter('user_can_richedit', '__return_true');
|
66 |
+
wp_enqueue_editor();
|
67 |
+
wp_enqueue_media();
|
68 |
+
}
|
69 |
+
|
70 |
+
wp_enqueue_script(
|
71 |
+
'fluent_forms_conversational_design',
|
72 |
+
fluentformMix('js/conversational_design.js'),
|
73 |
+
array('jquery'),
|
74 |
+
FLUENTFORM_VERSION,
|
75 |
+
true
|
76 |
+
);
|
77 |
+
|
78 |
+
wp_localize_script('fluent_forms_conversational_design', 'ffc_conv_vars', [
|
79 |
+
'form_id' => $formId,
|
80 |
+
'preview_url' => site_url('?fluent-form=' . $formId),
|
81 |
+
'fonts' => Fonts::getFonts(),
|
82 |
+
'has_pro' => defined('FLUENTFORMPRO')
|
83 |
+
]);
|
84 |
+
|
85 |
+
wp_enqueue_style(
|
86 |
+
'fluent_forms_conversion_style',
|
87 |
+
fluentformMix('css/conversational_design.css'),
|
88 |
+
array(),
|
89 |
+
FLUENTFORM_VERSION
|
90 |
+
);
|
91 |
+
|
92 |
+
echo '<div id="ff_conversation_form_design_app"><design-skeleton><h1 style="text-align: center; margin: 60px 0px;">Loading App Please wait....</h1></design-skeleton></div>';
|
93 |
+
}
|
94 |
+
|
95 |
+
public function getSettingsAjax()
|
96 |
+
{
|
97 |
+
$formId = intval($_REQUEST['form_id']);
|
98 |
+
|
99 |
+
Acl::verify('fluentform_forms_manager', $formId);
|
100 |
+
|
101 |
+
$designSettings = $this->getDesignSettings($formId);
|
102 |
+
$meta_settings = $this->getMetaSettings($formId);
|
103 |
+
|
104 |
+
wp_send_json_success([
|
105 |
+
'design_settings' => $designSettings,
|
106 |
+
'meta_settings' => $meta_settings,
|
107 |
+
'has_pro' => defined('FLUENTFORMPRO')
|
108 |
+
]);
|
109 |
+
}
|
110 |
+
|
111 |
+
public function saveSettingsAjax()
|
112 |
+
{
|
113 |
+
$formId = intval($_REQUEST['form_id']);
|
114 |
+
|
115 |
+
Acl::verify('fluentform_forms_manager', $formId);
|
116 |
+
|
117 |
+
$settings = wp_unslash($_REQUEST['design_settings']);
|
118 |
+
Helper::setFormMeta($formId, $this->metaKey . '_design', $settings);
|
119 |
+
$generatedCss = wp_strip_all_tags(wp_unslash($_REQUEST['generated_css']));
|
120 |
+
if ($generatedCss) {
|
121 |
+
Helper::setFormMeta($formId, $this->metaKey . '_generated_css', $generatedCss);
|
122 |
+
}
|
123 |
+
|
124 |
+
$meta = wp_unslash(ArrayHelper::get($_REQUEST, 'meta_settings', []));
|
125 |
+
if ($meta) {
|
126 |
+
Helper::setFormMeta($formId, $this->metaKey . '_meta', $meta);
|
127 |
+
}
|
128 |
+
|
129 |
+
$params = [
|
130 |
+
'fluent-form' => $formId
|
131 |
+
];
|
132 |
+
|
133 |
+
if (!empty($meta['share_key'])) {
|
134 |
+
$params['form'] = $meta['share_key'];
|
135 |
+
}
|
136 |
+
|
137 |
+
$shareUrl = add_query_arg($params, site_url());
|
138 |
+
|
139 |
+
wp_send_json_success([
|
140 |
+
'message' => __('Settings successfully updated'),
|
141 |
+
'share_url' => $shareUrl
|
142 |
+
]);
|
143 |
+
}
|
144 |
+
|
145 |
+
public function getDesignSettings($formId)
|
146 |
+
{
|
147 |
+
$settings = Helper::getFormMeta($formId, $this->metaKey . '_design', []);
|
148 |
+
|
149 |
+
$defaults = [
|
150 |
+
'background_color' => '#FFFFFF',
|
151 |
+
'question_color' => '#191919',
|
152 |
+
'answer_color' => '#0445AF',
|
153 |
+
'button_color' => '#0445AF',
|
154 |
+
'button_text_color' => '#FFFFFF',
|
155 |
+
'background_image' => '',
|
156 |
+
'background_brightness' => 0,
|
157 |
+
'disable_branding' => 'no',
|
158 |
+
'hide_media_on_mobile' => 'no'
|
159 |
+
];
|
160 |
+
|
161 |
+
return wp_parse_args($settings, $defaults);
|
162 |
+
}
|
163 |
+
|
164 |
+
public function getMetaSettings($formId)
|
165 |
+
{
|
166 |
+
$settings = Helper::getFormMeta($formId, $this->metaKey . '_meta', []);
|
167 |
+
$defaults = [
|
168 |
+
'title' => '',
|
169 |
+
'description' => '',
|
170 |
+
'featured_image' => '',
|
171 |
+
'share_key' => '',
|
172 |
+
'google_font_href' => '',
|
173 |
+
'font_css' => '',
|
174 |
+
'i18n' => [
|
175 |
+
'skip_btn' => 'SKIP',
|
176 |
+
'confirm_btn' => 'OK',
|
177 |
+
'continue' => 'Continue',
|
178 |
+
'keyboard_instruction' => 'Press <b>Enter ↵</b>',
|
179 |
+
'multi_select_hint' => 'Choose as many as you like',
|
180 |
+
'single_select_hint' => 'Choose one option',
|
181 |
+
'progress_text' => '{percent}% completed',
|
182 |
+
'long_text_help' => '<b>Shift ⇧</b> + <b>Enter ↵</b> to make a line break.',
|
183 |
+
'invalid_prompt' => 'Please fill out the field correctly'
|
184 |
+
]
|
185 |
+
];
|
186 |
+
|
187 |
+
if (!$settings || empty($settings['title'])) {
|
188 |
+
$form = wpFluent()->table('fluentform_forms')->find($formId);
|
189 |
+
$settings['title'] = $form->title;
|
190 |
+
}
|
191 |
+
|
192 |
+
return wp_parse_args($settings, $defaults);
|
193 |
+
}
|
194 |
+
|
195 |
+
private function getGeneratedCss($formId)
|
196 |
+
{
|
197 |
+
$prefix = '.ff_conv_app_' . $formId;
|
198 |
+
if (defined('FLUENTFORMPRO')) {
|
199 |
+
$css = Helper::getFormMeta($formId, $this->metaKey . '_generated_css', '');
|
200 |
+
if ($css) {
|
201 |
+
return $css;
|
202 |
+
}
|
203 |
+
}
|
204 |
+
|
205 |
+
return $prefix . ' { background-color: #FFFFFF; } ' . $prefix . ' .ffc-counter-div span { color: #0445AF; } ' . $prefix . ' .ffc-counter-div .counter-icon-span svg { fill: #0445AF !important; } ' . $prefix . ' .f-label-wrap, ' . $prefix . ' .f-answer { color: #0445AF !important; } ' . $prefix . ' .f-label-wrap .f-key { border-color: #0445AF !important; } ' . $prefix . ' .f-answer .f-radios-wrap ul li { background-color: rgba(4,69,175, 0.1) !important; } ' . $prefix . ' .f-answer .f-radios-wrap ul li.f-selected { background-color: rgba(4,69,175, 0.3) !important; } ' . $prefix . ' .f-answer .f-radios-wrap ul li.f-selected .f-key { background-color: #0445AF !important; color: white; } ' . $prefix . ' .f-answer .f-radios-wrap ul li.f-selected svg { fill: #0445AF !important; } ' . $prefix . ' .f-answer input, ' . $prefix . ' .f-answer textarea{ color: #0445AF !important; box-shadow: #0445AF 0px 1px; } ' . $prefix . ' .f-answer input:focus, ' . $prefix . ' .f-answer textarea:focus { box-shadow: #0445AF 0px 2px !important; } ' . $prefix . ' .f-answer textarea::placeholder, ' . $prefix . ' .f-answer input::placeholder { color: #0445AF !important; } ' . $prefix . ' .text-success { color: #0445AF !important; } ' . $prefix . ' .fh2 .f-text { color: #191919; } ' . $prefix . ' .fh2 .f-tagline, ' . $prefix . ' .f-sub .f-help { color: rgba(25,25,25, 0.70); } ' . $prefix . ' .q-inner .o-btn-action, ' . $prefix . ' .footer-inner-wrap .f-nav { background-color: #0445AF; } ' . $prefix . ' .q-inner .o-btn-action span, ' . $prefix . ' .footer-inner-wrap .f-nav a { color: #FFFFFF; } ' . $prefix . ' .f-enter .f-enter-desc { color: #0445AF; } ' . $prefix . ' .footer-inner-wrap .f-nav a svg { fill: #FFFFFF; } ' . $prefix . ' .f-answer .f-radios-wrap ul li.f-selected .f-key { color: #FFFFFF; }';
|
206 |
+
}
|
207 |
+
|
208 |
+
public function render()
|
209 |
+
{
|
210 |
+
if ((isset($_GET['fluent-form'])) && !wp_doing_ajax()) {
|
211 |
+
|
212 |
+
$formId = intval(ArrayHelper::get($_REQUEST, 'fluent-form'));
|
213 |
+
|
214 |
+
$form = wpFluent()->table('fluentform_forms')->find($formId);
|
215 |
+
if (!$form) {
|
216 |
+
return '';
|
217 |
+
}
|
218 |
+
|
219 |
+
$metaSettings = $this->getMetaSettings($formId);
|
220 |
+
|
221 |
+
$shareKey = ArrayHelper::get($metaSettings, 'share_key');
|
222 |
+
if ($shareKey) {
|
223 |
+
$providedKey = ArrayHelper::get($_REQUEST, 'form');
|
224 |
+
if ($providedKey != $shareKey) {
|
225 |
+
return '';
|
226 |
+
}
|
227 |
+
}
|
228 |
+
|
229 |
+
$form = Converter::convert($form);
|
230 |
+
|
231 |
+
$formSettings = wpFluent()
|
232 |
+
->table('fluentform_form_meta')
|
233 |
+
->where('form_id', $form->id)
|
234 |
+
->where('meta_key', 'formSettings')
|
235 |
+
->first();
|
236 |
+
|
237 |
+
if (!$formSettings) {
|
238 |
+
return '';
|
239 |
+
}
|
240 |
+
|
241 |
+
$form->settings = json_decode($formSettings->value, true);
|
242 |
+
|
243 |
+
$submitCss = $this->getSubmitBttnStyle($form);
|
244 |
+
|
245 |
+
wp_enqueue_script(
|
246 |
+
'fluent_forms_conversational_form',
|
247 |
+
FLUENT_CONVERSATIONAL_FORM_DIR_URL . 'public/js/conversationalForm.js',
|
248 |
+
array(),
|
249 |
+
FLUENTFORM_VERSION,
|
250 |
+
true
|
251 |
+
);
|
252 |
+
|
253 |
+
$designSettings = $this->getDesignSettings($formId);
|
254 |
+
|
255 |
+
wp_localize_script('fluent_forms_conversational_form', 'fluent_forms_global_var', [
|
256 |
+
'fluent_forms_admin_nonce' => wp_create_nonce('fluent_forms_admin_nonce'),
|
257 |
+
'ajaxurl' => admin_url('admin-ajax.php'),
|
258 |
+
'form' => [
|
259 |
+
'id' => $form->id,
|
260 |
+
'questions' => $form->questions,
|
261 |
+
'image_preloads' => $form->image_preloads,
|
262 |
+
'submit_button' => $form->submit_button
|
263 |
+
],
|
264 |
+
'form_id' => $form->id,
|
265 |
+
'assetBaseUrl' => FLUENT_CONVERSATIONAL_FORM_DIR_URL . 'public',
|
266 |
+
'i18n' => $metaSettings['i18n'],
|
267 |
+
'design' => $designSettings,
|
268 |
+
'extra_inputs' => $this->getExtraHiddenInputs($formId)
|
269 |
+
]);
|
270 |
+
|
271 |
+
$this->printLoadedScripts();
|
272 |
+
|
273 |
+
|
274 |
+
$isRenderable = array(
|
275 |
+
'status' => true,
|
276 |
+
'message' => ''
|
277 |
+
);
|
278 |
+
|
279 |
+
$isRenderable = apply_filters('fluentform_is_form_renderable', $isRenderable, $form);
|
280 |
+
|
281 |
+
if (is_array($isRenderable) && !$isRenderable['status']) {
|
282 |
+
if (!Acl::hasAnyFormPermission($form->id)) {
|
283 |
+
echo "<h1 style='width: 600px; margin: 200px auto; text-align: center;' id='ff_form_{$form->id}' class='ff_form_not_render'>{$isRenderable['message']}</h1>";
|
284 |
+
die();
|
285 |
+
}
|
286 |
+
}
|
287 |
+
|
288 |
+
if (!apply_filters('fluentform-disabled_analytics', false)) {
|
289 |
+
if (!Acl::hasAnyFormPermission($form->id)) {
|
290 |
+
(new \FluentForm\App\Modules\Form\Analytics(wpFluentForm()))->record($form->id);
|
291 |
+
}
|
292 |
+
}
|
293 |
+
|
294 |
+
echo View::make('public.conversational-form', [
|
295 |
+
'generated_css' => $this->getGeneratedCss($formId),
|
296 |
+
'design' => $designSettings,
|
297 |
+
'submit_css' => $submitCss,
|
298 |
+
'form_id' => $formId,
|
299 |
+
'meta' => $metaSettings,
|
300 |
+
'form' => $form
|
301 |
+
]);
|
302 |
+
|
303 |
+
exit(200);
|
304 |
+
}
|
305 |
+
}
|
306 |
+
|
307 |
+
public function isEnabled()
|
308 |
+
{
|
309 |
+
$globalModules = get_option('fluentform_global_modules_status');
|
310 |
+
|
311 |
+
$addOn = ArrayHelper::get($globalModules, $this->addOnKey);
|
312 |
+
|
313 |
+
if (!$addOn || $addOn == 'yes') {
|
314 |
+
return true;
|
315 |
+
}
|
316 |
+
|
317 |
+
return false;
|
318 |
+
}
|
319 |
+
|
320 |
+
private function getSubmitBttnStyle($form)
|
321 |
+
{
|
322 |
+
|
323 |
+
$data = $form->submit_button;
|
324 |
+
$styles = '';
|
325 |
+
|
326 |
+
if (ArrayHelper::get($data, 'settings.button_style') == '') {
|
327 |
+
// it's a custom button
|
328 |
+
$buttonActiveStyles = ArrayHelper::get($data, 'settings.normal_styles', []);
|
329 |
+
$buttonHoverStyles = ArrayHelper::get($data, 'settings.hover_styles', []);
|
330 |
+
$activeStates = '';
|
331 |
+
foreach ($buttonActiveStyles as $styleAtr => $styleValue) {
|
332 |
+
if (!$styleValue) {
|
333 |
+
continue;
|
334 |
+
}
|
335 |
+
if ($styleAtr == 'borderRadius') {
|
336 |
+
$styleValue .= 'px';
|
337 |
+
}
|
338 |
+
$activeStates .= ltrim(strtolower(preg_replace('/[A-Z]([A-Z](?![a-z]))*/', '-$0', $styleAtr)), '_') . ':' . $styleValue . ';';
|
339 |
+
}
|
340 |
+
if ($activeStates) {
|
341 |
+
$styles .= ' .ff-btn-submit { ' . $activeStates . ' }';
|
342 |
+
}
|
343 |
+
$hoverStates = '';
|
344 |
+
foreach ($buttonHoverStyles as $styleAtr => $styleValue) {
|
345 |
+
if (!$styleValue) {
|
346 |
+
continue;
|
347 |
+
}
|
348 |
+
if ($styleAtr == 'borderRadius') {
|
349 |
+
$styleValue .= 'px';
|
350 |
+
}
|
351 |
+
$hoverStates .= ltrim(strtolower(preg_replace('/[A-Z]([A-Z](?![a-z]))*/', '-$0', $styleAtr)), '-') . ':' . $styleValue . ';';
|
352 |
+
}
|
353 |
+
if ($hoverStates) {
|
354 |
+
$styles .= ' .wpf_has_custom_css.ff-btn-submit:hover { ' . $hoverStates . ' } ';
|
355 |
+
}
|
356 |
+
} else {
|
357 |
+
$styles .= ' .ff-btn-submit { background-color: ' . ArrayHelper::get($data, 'settings.background_color') . '; color: ' . ArrayHelper::get($data, 'settings.color') . '; }';
|
358 |
+
}
|
359 |
+
|
360 |
+
if (defined('FLUENTFORMPRO')) {
|
361 |
+
$customCssJsClass = new FormCssJs();
|
362 |
+
$customCss = $customCssJsClass->getCss($form->id);
|
363 |
+
$styles .= $customCss;
|
364 |
+
}
|
365 |
+
|
366 |
+
return $styles;
|
367 |
+
}
|
368 |
+
|
369 |
+
public function filterAcceptedFields($components, $formId)
|
370 |
+
{
|
371 |
+
if (!Helper::isConversionForm($formId)) {
|
372 |
+
return $components;
|
373 |
+
}
|
374 |
+
|
375 |
+
$generalFields = ArrayHelper::get($components, 'general', []);
|
376 |
+
$advancedFields = ArrayHelper::get($components, 'advanced', []);
|
377 |
+
|
378 |
+
$acceptedFieldElements = [
|
379 |
+
'input_email',
|
380 |
+
'input_text',
|
381 |
+
'textarea',
|
382 |
+
'select_country',
|
383 |
+
'input_number',
|
384 |
+
'select',
|
385 |
+
'input_radio',
|
386 |
+
'input_checkbox',
|
387 |
+
'select',
|
388 |
+
'input_url',
|
389 |
+
'input_date',
|
390 |
+
'custom_html',
|
391 |
+
'phone',
|
392 |
+
'section_break',
|
393 |
+
'terms_and_condition',
|
394 |
+
'ratings',
|
395 |
+
'input_password'
|
396 |
+
];
|
397 |
+
|
398 |
+
$elements = [];
|
399 |
+
|
400 |
+
$allFields = array_merge($generalFields, $advancedFields);
|
401 |
+
|
402 |
+
foreach ($allFields as $field) {
|
403 |
+
$element = $field['element'];
|
404 |
+
if (in_array($element, $acceptedFieldElements)) {
|
405 |
+
$field['style_pref'] = [
|
406 |
+
'layout' => 'default',
|
407 |
+
'media' => $this->getRandomPhoto(),
|
408 |
+
'brightness' => 0,
|
409 |
+
'alt_text' => '',
|
410 |
+
'media_x_position' => 50,
|
411 |
+
'media_y_position' => 50
|
412 |
+
];
|
413 |
+
|
414 |
+
if ($element == 'terms_and_condition') {
|
415 |
+
$existingSettings = $field['settings'];
|
416 |
+
$existingSettings['tc_agree_text'] = __('I accept', 'fluentform');
|
417 |
+
$existingSettings['tc_dis_agree_text'] = __('I don\'t accept', 'fluentform');
|
418 |
+
$field['settings'] = $existingSettings;
|
419 |
+
}
|
420 |
+
|
421 |
+
$elements[] = $field;
|
422 |
+
}
|
423 |
+
}
|
424 |
+
$elements = apply_filters('fluent_conversational_editor_elements', $elements, $formId);
|
425 |
+
|
426 |
+
return [
|
427 |
+
'general' => $elements
|
428 |
+
];
|
429 |
+
}
|
430 |
+
|
431 |
+
public function printLoadedScripts()
|
432 |
+
{
|
433 |
+
$jsScripts = $this->getRegisteredScripts();
|
434 |
+
if ($jsScripts) {
|
435 |
+
$jsTypeAttr = current_theme_supports('html5', 'script') ? '' : " type='text/javascript'";
|
436 |
+
add_action('fluentform_conversational_frame_footer', function () use ($jsScripts, $jsTypeAttr) {
|
437 |
+
foreach ($jsScripts as $handle => $jsScript) {
|
438 |
+
if (empty($jsScript->src)) {
|
439 |
+
continue;
|
440 |
+
}
|
441 |
+
if ($data = ArrayHelper::get($jsScript->extra, 'data')) {
|
442 |
+
printf("<script%s id='%s-js-extra'>\n", $jsTypeAttr, esc_attr($handle));
|
443 |
+
echo "$data\n";
|
444 |
+
echo "</script>\n";
|
445 |
+
}
|
446 |
+
$src = esc_attr($jsScript->src);
|
447 |
+
$src = add_query_arg('ver', $jsScript->ver, $src);
|
448 |
+
echo "<script{$jsTypeAttr} id='" . esc_attr($handle) . "' src='" . $src . "'></script>\n";
|
449 |
+
}
|
450 |
+
}, 1);
|
451 |
+
}
|
452 |
+
|
453 |
+
$cssStyles = $this->getRegisteredStyles();
|
454 |
+
if ($cssStyles) {
|
455 |
+
$cssTypeAttr = current_theme_supports('html5', 'style') ? '' : ' type="text/css"';
|
456 |
+
add_action('fluentform_conversational_frame_head', function () use ($cssStyles, $cssTypeAttr) {
|
457 |
+
foreach ($cssStyles as $styleName => $cssStyle) {
|
458 |
+
if (empty($cssStyle->src)) {
|
459 |
+
continue;
|
460 |
+
}
|
461 |
+
$src = esc_attr($cssStyle->src);
|
462 |
+
$src = add_query_arg('ver', $cssStyle->ver, $src);
|
463 |
+
|
464 |
+
echo "<link rel='stylesheet' id='" . esc_attr($styleName) . "' href='" . $src . "'{$cssTypeAttr} media='all' />\n";
|
465 |
+
}
|
466 |
+
});
|
467 |
+
}
|
468 |
+
}
|
469 |
+
|
470 |
+
private function getRegisteredScripts()
|
471 |
+
{
|
472 |
+
global $wp_scripts;
|
473 |
+
|
474 |
+
if (!$wp_scripts) {
|
475 |
+
return [];
|
476 |
+
}
|
477 |
+
|
478 |
+
$jsScripts = [];
|
479 |
+
|
480 |
+
$pluginUrl = plugins_url() . '/fluentform';
|
481 |
+
|
482 |
+
foreach ($wp_scripts->queue as $script) {
|
483 |
+
$item = $wp_scripts->registered[$script];
|
484 |
+
$src = $wp_scripts->registered[$script]->src;
|
485 |
+
|
486 |
+
if (!strpos($src, $pluginUrl) === false) {
|
487 |
+
continue;
|
488 |
+
}
|
489 |
+
|
490 |
+
foreach ($item->deps as $dep) {
|
491 |
+
if (!isset($items[$dep])) {
|
492 |
+
$child = $wp_scripts->registered[$dep];
|
493 |
+
if ($child->src) {
|
494 |
+
$jsScripts[$dep] = $child;
|
495 |
+
} else {
|
496 |
+
// this core file maybe
|
497 |
+
$childDependencies = $child->deps;
|
498 |
+
foreach ($childDependencies as $childDependency) {
|
499 |
+
$childX = $wp_scripts->registered[$childDependency];
|
500 |
+
if ($childX->src) {
|
501 |
+
$jsScripts[$childDependency] = $childX;
|
502 |
+
}
|
503 |
+
}
|
504 |
+
}
|
505 |
+
}
|
506 |
+
}
|
507 |
+
$jsScripts[$script] = $item;
|
508 |
+
}
|
509 |
+
|
510 |
+
return $jsScripts;
|
511 |
+
}
|
512 |
+
|
513 |
+
private function getRegisteredStyles()
|
514 |
+
{
|
515 |
+
$wp_styles = wp_styles();
|
516 |
+
if (!$wp_styles) {
|
517 |
+
return [];
|
518 |
+
}
|
519 |
+
|
520 |
+
$cssStyles = [];
|
521 |
+
|
522 |
+
$pluginUrl = plugins_url() . '/fluentform';
|
523 |
+
|
524 |
+
foreach ($wp_styles->queue as $style) {
|
525 |
+
$item = $wp_styles->registered[$style];
|
526 |
+
$src = $wp_styles->registered[$style]->src;
|
527 |
+
|
528 |
+
if (!strpos($src, $pluginUrl) === false) {
|
529 |
+
continue;
|
530 |
+
}
|
531 |
+
|
532 |
+
foreach ($item->deps as $dep) {
|
533 |
+
if (!isset($items[$dep])) {
|
534 |
+
$child = $wp_styles->registered[$dep];
|
535 |
+
if ($child->src) {
|
536 |
+
$cssStyles[$dep] = $child;
|
537 |
+
} else {
|
538 |
+
// this core file maybe
|
539 |
+
$childDependencies = $child->deps;
|
540 |
+
foreach ($childDependencies as $childDependency) {
|
541 |
+
$childX = $wp_styles->registered[$childDependency];
|
542 |
+
if ($childX->src) {
|
543 |
+
$cssStyles[$childDependency] = $childX;
|
544 |
+
}
|
545 |
+
}
|
546 |
+
}
|
547 |
+
}
|
548 |
+
}
|
549 |
+
$cssStyles[$style] = $item;
|
550 |
+
}
|
551 |
+
|
552 |
+
return $cssStyles;
|
553 |
+
}
|
554 |
+
|
555 |
+
public function renderShortcode($form)
|
556 |
+
{
|
557 |
+
$formId = $form->id;
|
558 |
+
$form = Converter::convert($form);
|
559 |
+
$submitCss = $this->getSubmitBttnStyle($form);
|
560 |
+
|
561 |
+
wp_enqueue_script(
|
562 |
+
'fluent_forms_conversational_form',
|
563 |
+
FLUENT_CONVERSATIONAL_FORM_DIR_URL . 'public/js/conversationalForm.js',
|
564 |
+
array(),
|
565 |
+
FLUENTFORM_VERSION,
|
566 |
+
true
|
567 |
+
);
|
568 |
+
|
569 |
+
$metaSettings = $this->getMetaSettings($formId);
|
570 |
+
$designSettings = $this->getDesignSettings($formId);
|
571 |
+
$instanceId = $form->instance_index;
|
572 |
+
$varName = 'fluent_forms_global_var_' . $instanceId;
|
573 |
+
wp_localize_script('fluent_forms_conversational_form', $varName, [
|
574 |
+
'fluent_forms_admin_nonce' => wp_create_nonce('fluent_forms_admin_nonce'),
|
575 |
+
'ajaxurl' => admin_url('admin-ajax.php'),
|
576 |
+
'form' => [
|
577 |
+
'id' => $form->id,
|
578 |
+
'questions' => $form->questions,
|
579 |
+
'image_preloads' => $form->image_preloads,
|
580 |
+
'submit_button' => $form->submit_button
|
581 |
+
],
|
582 |
+
'assetBaseUrl' => FLUENT_CONVERSATIONAL_FORM_DIR_URL . 'public',
|
583 |
+
'i18n' => $metaSettings['i18n'],
|
584 |
+
'form_id' => $form->id,
|
585 |
+
'is_inline_form' => true,
|
586 |
+
'design' => $designSettings,
|
587 |
+
'extra_inputs' => $this->getExtraHiddenInputs($formId)
|
588 |
+
]);
|
589 |
+
|
590 |
+
if (!apply_filters('fluentform-disabled_analytics', false)) {
|
591 |
+
if (!Acl::hasAnyFormPermission($form->id)) {
|
592 |
+
(new \FluentForm\App\Modules\Form\Analytics(wpFluentForm()))->record($form->id);
|
593 |
+
}
|
594 |
+
}
|
595 |
+
|
596 |
+
return View::make('public.conversational-form-inline', [
|
597 |
+
'generated_css' => $this->getGeneratedCss($formId),
|
598 |
+
'design' => $designSettings,
|
599 |
+
'submit_css' => $submitCss,
|
600 |
+
'form_id' => $formId,
|
601 |
+
'meta' => $metaSettings,
|
602 |
+
'global_var_name' => $varName,
|
603 |
+
'instance_id' => $instanceId,
|
604 |
+
'is_inline' => 'yes'
|
605 |
+
]);
|
606 |
+
}
|
607 |
+
|
608 |
+
public function maybeAlterPlacement($placements, $form)
|
609 |
+
{
|
610 |
+
if (!Helper::isConversionForm($form->id) || empty($placements['terms_and_condition'])) {
|
611 |
+
return $placements;
|
612 |
+
}
|
613 |
+
|
614 |
+
$placements['terms_and_condition']['general'] = [
|
615 |
+
'admin_field_label',
|
616 |
+
'validation_rules',
|
617 |
+
'tnc_html',
|
618 |
+
'tc_agree_text',
|
619 |
+
'tc_dis_agree_text'
|
620 |
+
];
|
621 |
+
|
622 |
+
$placements['terms_and_condition']['generalExtras'] = [
|
623 |
+
'tc_agree_text' => [
|
624 |
+
'template' => 'inputText',
|
625 |
+
'label' => 'Agree Button Text',
|
626 |
+
],
|
627 |
+
'tc_dis_agree_text' => [
|
628 |
+
'template' => 'inputText',
|
629 |
+
'label' => 'Disagree Button Text',
|
630 |
+
]
|
631 |
+
];
|
632 |
+
|
633 |
+
return $placements;
|
634 |
+
}
|
635 |
+
|
636 |
+
private function getExtraHiddenInputs($formId)
|
637 |
+
{
|
638 |
+
return [
|
639 |
+
'__fluent_form_embded_post_id' => get_the_ID(),
|
640 |
+
'_fluentform_' . $formId . '_fluentformnonce' => wp_create_nonce('fluentform-submit-form'),
|
641 |
+
'_wp_http_referer' => esc_attr(wp_unslash($_SERVER['REQUEST_URI']))
|
642 |
+
];
|
643 |
+
}
|
644 |
+
|
645 |
+
private function getRandomPhoto()
|
646 |
+
{
|
647 |
+
$photos = [
|
648 |
+
'demo_1.jpg',
|
649 |
+
'demo_2.jpg',
|
650 |
+
'demo_3.jpg',
|
651 |
+
'demo_4.jpg',
|
652 |
+
'demo_5.jpg'
|
653 |
+
];
|
654 |
+
|
655 |
+
$selected = array_rand($photos, 1);
|
656 |
+
|
657 |
+
$photoName = $photos[$selected];
|
658 |
+
|
659 |
+
return fluentformMix('img/conversational/' . $photoName);
|
660 |
+
|
661 |
+
}
|
662 |
+
}
|
app/Services/FluentConversational/autoload.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
spl_autoload_register(function ($class) {
|
4 |
+
$namespace = 'FluentConversational';
|
5 |
+
|
6 |
+
if (substr($class, 0, strlen($namespace)) !== $namespace) {
|
7 |
+
return;
|
8 |
+
}
|
9 |
+
|
10 |
+
$className = str_replace(
|
11 |
+
array('\\', $namespace, strtolower($namespace)),
|
12 |
+
array('/', 'src/classes', ''),
|
13 |
+
$class
|
14 |
+
);
|
15 |
+
|
16 |
+
$basePath = plugin_dir_path(__FILE__);
|
17 |
+
|
18 |
+
$file = $basePath.trim($className, '/').'.php';
|
19 |
+
|
20 |
+
if (is_readable($file)) {
|
21 |
+
include $file;
|
22 |
+
}
|
23 |
+
});
|
app/Services/FluentConversational/plugin.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined('ABSPATH') or die;
|
4 |
+
|
5 |
+
define('FLUENT_CONVERSATIONAL_FORM', true);
|
6 |
+
define('FLUENT_CONVERSATIONAL_FORM_VERSION', '1.0.0');
|
7 |
+
define('FLUENT_CONVERSATIONAL_FORM_DIR_URL', plugin_dir_url(__FILE__));
|
8 |
+
define('FLUENT_CONVERSATIONAL_FORM_DIR_PATH', plugin_dir_path(__FILE__));
|
app/Services/FluentConversational/public/js/conversationalForm.js
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/*! For license information please see conversationalForm.js.LICENSE.txt */
|
2 |
+
(()=>{var e={5481:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var i=n(3645),r=n.n(i)()((function(e){return e[1]}));r.push([e.id,'body.ff_conversation_page_body{overscroll-behavior-y:contain}.ff_conv_app_frame{display:flex;align-content:center;align-items:center;-ms-scroll-chaining:none;overscroll-behavior:contain}.ff_conv_app_frame>div{width:100%}.ff_conv_app_frame .ffc_question{position:unset}.ff_conv_app_frame span.f-sub span.f-help{font-size:80%}.ff_conv_app_frame .ffc_question{position:relative}.ff_conv_app_frame .vff{padding-left:40px;padding-right:40px;text-align:left}.ff_conv_app_frame .vff .ff_conv_input{max-height:90vh;overflow:auto}.ff_conv_app_frame .vff.vff_layout_default .f-container{width:100%;max-width:720px;margin:0 auto;padding-left:0;padding-right:0}.ff_conv_app_frame .vff.vff_layout_default .ff_conv_media_holder{display:none!important}.ff_conv_app_frame .vff.vff_layout_default .ffc_question{position:unset;overflow:hidden}.ff_conv_app_frame .vff .ff_conv_media_holder{width:50%;text-align:center;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ff_conv_app_frame .vff .ff_conv_media_holder .fc_image_holder{display:block;overflow:hidden}.ff_conv_app_frame .vff .ff_conv_layout_media_right .ff_conv_media_holder img{width:auto;max-width:720px;max-height:75vh}.ff_conv_app_frame .vff .ff_conv_layout_media_left{flex-direction:row-reverse}.ff_conv_app_frame .vff .ff_conv_layout_media_left .ff_conv_media_holder img{width:auto;max-width:720px;max-height:75vh}.ff_conv_app_frame .vff .ff_conv_layout_media_left_full{flex-direction:row-reverse}.ff_conv_app_frame .vff .ff_conv_layout_media_left_full,.ff_conv_app_frame .vff .ff_conv_layout_media_right_full{height:100vh}.ff_conv_app_frame .vff .ff_conv_layout_media_left_full .ff_conv_media_holder img,.ff_conv_app_frame .vff .ff_conv_layout_media_right_full .ff_conv_media_holder img{display:block;margin:0 auto;width:100%;height:100vh;-o-object-fit:cover;object-fit:cover;-o-object-position:50% 50%;object-position:50% 50%;max-height:100vh}@media screen and (max-width:1023px){.ff_conv_app_frame .vff .f-container{padding:0}.ff_conv_app_frame .vff .ff_conv_section_wrapper{flex-direction:column-reverse;justify-content:flex-end}.ff_conv_app_frame .vff .ff_conv_section_wrapper .ff_conv_media_holder{width:100%}.ff_conv_app_frame .vff .ff_conv_section_wrapper .ff_conv_media_holder img{height:35vh}.ff_conv_app_frame .vff .ff_conv_section_wrapper .ff_conv_input{width:100%;margin-top:48px;margin-bottom:112px}.ff_conv_app_frame .vff .ff_conv_layout_media_left .ff_conv_media_holder,.ff_conv_app_frame .vff .ff_conv_layout_media_right .ff_conv_media_holder{padding:0 10%;text-align:left}.ff_conv_app_frame .vff .footer-inner-wrap .f-nav a.ffc_power{margin-right:10px;font-size:10px;line-height:10px;display:inline-block}.ff_conv_app_frame .vff .footer-inner-wrap .f-nav a.ffc_power b{display:block}.ff_conv_app_frame .vff .footer-inner-wrap .f-progress{min-width:auto}}.ff_conv_app_frame .vff.ffc_last_step .ff_conv_section_wrapper{padding-bottom:0}@media screen and (max-width:1023px){.ffc_media_hide_mob_yes .vff .ff_conv_section_wrapper{justify-content:center}.ffc_media_hide_mob_yes .vff .ff_conv_section_wrapper .ff_conv_media_holder{display:none!important}}.ff_conv_app_frame{min-height:100vh}.ff_conv_app:before{background-position:50%;background-repeat:no-repeat;background-size:cover;display:block;position:absolute;left:0;top:0;width:100%;height:100%}.ff_conversation_page_body .o-btn-action span{font-weight:500}.o-btn-action.ffc_submitting{opacity:.7;transition:all .3s ease;position:relative}.o-btn-action.ffc_submitting:before{content:"";position:absolute;bottom:0;height:5px;left:0;right:0;background:hsla(0,0%,100%,.4);-webkit-animation:ff-progress-anim 4s 0s infinite;animation:ff-progress-anim 4s 0s infinite}.ff_conversation_page_body .o-btn-action{cursor:pointer;transition-duration:.1s;transition-property:background-color,color,border-color,opacity,box-shadow;transition-timing-function:ease-out;outline:none;box-shadow:0 3px 12px 0 rgba(0,0,0,.10196078431372549);padding:6px 14px;min-height:40px;border-radius:4px}.ff_conversation_desc{margin:10px 0}.vff ::-webkit-input-placeholder{font-weight:400;opacity:.6!important}.vff :-ms-input-placeholder{opacity:.6!important}.vff :-moz-placeholder{opacity:.6!important}ul.ff-errors-in-stack{list-style:none}.vff .f-invalid,.vff .text-alert{color:red}.f-answer ul.f-multiple li,.f-answer ul.f-radios li{align-items:center;border-radius:4px;min-height:40px;outline:0;transition-duration:.1s;transition-property:background-color,color,border-color,opacity,box-shadow;transition-timing-function:ease-out;width:100%;cursor:pointer;opacity:1}.f-label{line-height:1.5;font-weight:500!important}.f-label-wrap .f-key{border-radius:2px;min-width:22px;height:22px;font-size:12px;display:flex;align-items:center;font-weight:500;justify-content:center;flex-direction:column;text-align:center}.ff_conv_section_wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-grow:1;flex-basis:50%}.ff_conv_section_wrapper.ff_conv_layout_default{padding:30px 0}.ff_conv_layout_default .ff_conv_input{width:100%}.vff.has-img-layout{padding:0}.has-img-layout .f-container{padding:0!important}.has-img-layout .ff_conv_input{padding:0 10%;width:50%}.vff ul.f-radios li.f-selected{transition-duration:.1s;transition-property:background-color,color,border-color,opacity,box-shadow;transition-timing-function:ease-out}.vff input[type=date],.vff input[type=email],.vff input[type=number],.vff input[type=password],.vff input[type=tel],.vff input[type=text],.vff input[type=url],.vff span.faux-form,.vff textarea{font-size:24px!important;font-weight:500!important}.ff_conversation_page_desc{opacity:.8}.vff .f-enter-desc{opacity:.6}.vff .f-enter-desc:hover{opacity:1}.f-string-em{font-weight:500}.vff .fh2 span.f-sub,.vff .fh2 span.f-tagline{font-size:20px!important}.vff .fh2 .f-text,.vff h2{font-weight:500;font-size:24px}.vff-footer .f-progress{opacity:.8!important}.vff{font-weight:400;line-height:1.34;min-height:220px;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-o-font-smoothing:antialiased}@media screen and (max-width:1023px){.vff,.vff-footer{font-size:15px}}@media screen and (min-width:1366px){.vff,.vff-footer{font-size:18px}}@media screen and (min-width:1920px){.vff{font-size:22px}}@media screen and (min-width:2560px){.vff{font-size:26px}}.vff hr{box-sizing:content-box;overflow:visible;height:0}.vff code,.vff kbd,.vff pre{font-family:monospace,monospace;font-size:1em}.vff small{font-size:80%}.vff sub,.vff sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.vff sub{bottom:-.25em}.vff sup{top:-.5em}.vff b,.vff strong{font-weight:bolder}.vff a{cursor:pointer;background-color:transparent}.vff a,.vff a:active,.vff a:focus,.vff a:hover{outline:0;text-decoration:none}.vff ol,.vff table,.vff ul{margin-top:0;margin-bottom:22px}.vff .text-thin{font-weight:300}.vff .disabled,.vff [disabled]{opacity:.4;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;cursor:not-allowed}.vff .clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}.vff ol.reset-list,.vff ul.reset-list{list-style:none;margin:0;padding:0}.vff{width:100%;position:relative;text-align:left;box-sizing:border-box}header.vff-header+.vff.vff-not-standalone{margin-top:0}.vff *,.vff :after,.vff :before{box-sizing:inherit}.vff .q-is-active{opacity:1}.vff .q-form.q-is-inactive{display:none}.vff .f-full-width{display:block;width:100%}.vff .f-string-em{text-transform:uppercase}.vff .f-enter{margin-bottom:20px}.vff .f-container{width:100%}header.vff-header{line-height:1;padding:20px 10px;box-sizing:border-box;position:static;width:100%}.vff-header *,.vff-header :after,.vff-header :before{box-sizing:inherit}header.vff-header .f-container{margin:0}header.vff-header img.f-logo,header.vff-header svg.f-logo{height:18px;max-width:240px;opacity:1}.vff button,.vff input,.vff optgroup,.vff select,.vff textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}.vff fieldset{padding:.35em .75em .625em}.vff legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}.vff [type=number]::-webkit-inner-spin-button,.vff [type=number]::-webkit-outer-spin-button{height:auto}.vff [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.vff [type=search]::-webkit-search-decoration{-webkit-appearance:none}.vff ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.vff [type=button],.vff [type=reset],.vff [type=submit],.vff button,.vff input{-webkit-appearance:none;overflow:visible}.vff button{border:none;outline:0;cursor:pointer;padding:.6em 1.4em;text-align:center;display:inline-block;border-radius:4px;white-space:pre-wrap;max-width:100%}.vff .ff-btn-lg{padding:.8em 1.8em;font-size:20px;line-height:1.5;border-radius:6px}.vff .ff-btn-sm{padding:4px 8px;font-size:13px;line-height:1.5;border-radius:3px}.vff .o-btn-action{z-index:1;line-height:1.2;font-weight:900}.vff .o-btn-action span{font-size:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;transition:all .4s ease 0s}.vff .f-enter-desc{font-size:.9em;display:inline-block;margin-left:.6em;margin-top:.7em}.vff span.faux-form{border-bottom:1px solid;display:inline-block;margin-right:.2em;margin-left:0;position:relative;white-space:nowrap}.vff select{-webkit-appearance:none;-moz-appearance:none;appearance:none;text-transform:none;background:transparent;border-radius:0;border:0;cursor:pointer;font-size:.5em;line-height:1.32;margin:0;opacity:0;outline:0;padding:.6em 8px;width:100%;position:absolute;z-index:1}.vff input[type=date],.vff input[type=email],.vff input[type=number],.vff input[type=password],.vff input[type=tel],.vff input[type=text],.vff input[type=url],.vff textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:0!important;border-radius:0;line-height:1.48;margin:0 .6em 0 0;outline:0;padding:.16em .2em;font-size:.72em;font-weight:900}.vff .f-other.f-selected .f-label{font-weight:900}.vff textarea{overflow:auto;display:block;outline:none;resize:vertical}.vff .f-full-width input[type=date],.vff .f-full-width input[type=email],.vff .f-full-width input[type=number],.vff .f-full-width input[type=password],.vff .f-full-width input[type=tel],.vff .f-full-width input[type=text],.vff .f-full-width input[type=url],.vff .f-full-width span.faux-form,.vff .f-full-width textarea{width:100%;padding-left:.16em;padding-right:.16em}.vff .f-required{display:none}.vff .f-answer.f-full-width{margin-top:26px}.vff span.f-sub+.f-answer.f-full-width{margin-top:22px}.vff div.field-sectionbreak .f-answer{margin-top:18px}.vff span.f-empty{display:inline-block;min-width:3em;padding-right:28px;font-weight:300;padding-bottom:4px}.vff span.f-answered{font-weight:900}.vff .f-arrow-down{display:inline-block;margin-left:.2em;pointer-events:none;width:18px;height:100%;position:absolute;right:0;bottom:0;line-height:1.3}.vff .f-arrow-down svg{width:100%;height:auto}.vff.vff-is-ios .field-date:not(.f-has-value) .f-answer>span{position:relative;top:0;left:0}.vff.vff-is-ios .field-date:not(.f-has-value) .f-answer>span:before{position:absolute;content:attr(data-placeholder);display:block;pointer-events:none;padding:.12em .2em}.vff.vff-is-ios input[type=date]{height:32px;display:block}.vff .field-submit .f-section-wrap a,.vff a.f-link{color:inherit;border-bottom:1px dotted;word-break:break-word}.vff .field-submit .f-section-wrap a:active,.vff .field-submit .f-section-wrap a:hover,.vff a.f-link:active,.vff a.f-link:hover{color:inherit;border-bottom:none}.vff .f-section-text,.vff li,.vff p,.vff span.f-sub,.vff span.f-tagline{font-size:1.1em;line-height:1.34}.vff .fh1,.vff h1{font-weight:900;font-size:3em;margin:.67em 0}.vff .fh2,.vff h2{font-weight:900;line-height:1.34;margin-bottom:20px}.vff .fh3,.vff h3{font-weight:300;font-size:1.5em;margin-top:0;margin-bottom:0}.vff .fh1,.vff .fh2,.vff .fh3{display:block}.vff span.f-sub,.vff span.f-tagline{font-weight:400;display:block}.vff .fh2 span.f-sub,.vff .fh2 span.f-tagline{font-size:.51em}.vff span.f-sub,.vff span.f-tagline,.vff span.f-text{margin-bottom:8px}.vff span.f-sub{margin-top:5px}.vff span.f-sub span:not(.f-string-em){margin-right:.4em}.vff span.f-sub span.f-help{display:block}.vff span.f-sub span+span.f-help{margin-top:0}.vff p.f-description{margin-top:0;padding-right:4em}.vff p.f-description a.f-link,.vff p.f-description span{margin-right:8px}.vff ul.f-radios{margin:0;padding:0;list-style-type:none;max-width:590px;min-width:160px}.vff ul.f-radios li{padding:.6em .68em;margin:.5em 0 .6em;font-weight:300;line-height:1.24;cursor:default;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none;position:relative;overflow:hidden}.vff ul.f-radios li.f-other input[type=text]{width:100%;padding:0;margin:0;border:0;line-height:inherit;font-size:inherit}.vff .f-radios-desc{display:block}.vff ul.f-radios li div.f-label-wrap{display:flex;width:100%;align-content:center;align-items:center}.vff ul.f-radios li span.f-label{margin-left:.4em;width:100%}.vff ul.f-radios li span.f-key{width:16px;text-align:center;border:1px solid}.vff ul.f-radios li .ffc_check_svg{display:none}.vff ul.f-radios li.f-selected .ffc_check_svg{display:block}.vff ul.f-radios.f-single li span.f-key{border-radius:50%}.vff .field-multiplepicturechoice ul.f-radios{max-width:750px;min-width:auto;display:flex;margin:0 -8px 0 0;align-items:stretch;flex-wrap:wrap}.vff .field-multiplepicturechoice ul.f-radios li{position:relative;display:flex;align-items:center;flex-direction:column;padding:8px 8px 10px;cursor:pointer;margin-bottom:8px;margin-right:8px;flex:0 0 calc(25% - 8px);font-size:15px;line-height:1.38}.vff .field-multiplepicturechoice ul.f-radios li span.f-image{display:flex;display:-ms-flexbox;align-items:center;justify-content:center;overflow:hidden;width:100%;height:140px;margin-bottom:8px}.vff .field-multiplepicturechoice ul.f-radios li span.f-image img{margin-bottom:.8px;max-height:100%;max-width:100%}.vff-footer{position:fixed;bottom:0;right:0;width:auto;font-weight:300;line-height:1.2}.vff-footer .footer-inner-wrap{text-align:right;float:right;background:hsla(0,0%,100%,.3);display:flex;flex-direction:row;box-shadow:0 3px 12px 0 rgba(0,0,0,.1);border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:0;pointer-events:auto;white-space:nowrap;align-items:center;align-content:center;justify-content:flex-start;margin-bottom:5px;margin-right:5px}.vff-footer .f-nav,.vff-footer .f-progress,.vff-footer .f-timer{display:inline-block}.vff-footer .f-timer{font-family:monospace;font-size:17px;margin-left:.18em}.vff-footer a.f-disabled{opacity:.4;cursor:default;pointer-events:none}.vff-footer .f-next svg,.vff-footer .f-prev svg{display:inline-block;transition:fill .2s ease 0s;width:23px;height:13px}.vff-footer .f-nav-text{display:none}.f-progress{position:relative;padding:5px 15px;min-width:200px;text-align:left}.f-progress span.ffc_progress_label{line-height:19px;font-size:12px}.footer-inner-wrap .f-nav{display:block;height:100%;background:#006cf4;padding:10px 15px;border-top-right-radius:4px;border-bottom-right-radius:4px}.footer-inner-wrap .f-nav svg{fill:#fff}.footer-inner-wrap .f-nav a{color:#fff}.footer-inner-wrap .f-nav a.ffc_power{margin-right:10px}.vff-footer .f-progress-bar{vertical-align:middle;margin:0 6px 0 0;height:4px;background-color:rgba(25,25,25,.1);border-radius:4px;width:100%}.vff-footer .f-progress-bar-inner{height:4px;transition:width .3s ease;background-color:#191919;opacity:.7}.vff .f-section-wrap{margin-bottom:30px}.vff .f-section-wrap>div,.vff .f-submit{margin-bottom:20px}.vff .field-sectionbreak,.vff .field-submit{max-width:920px}.vff.vff-not-standalone{height:100%;margin-top:0;margin-bottom:0;padding-top:50px;padding-bottom:100px}.vff.vff-not-standalone .f-container{margin:0}.vff.vff-not-standalone .vff-footer{position:absolute;bottom:0;width:100%}.vff-animate{-webkit-animation-duration:.4s;animation-duration:.4s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes ffadeIn{0%{opacity:0}to{opacity:1}}@keyframes ffadeIn{0%{opacity:0}to{opacity:1}}.vff .f-fade-in{-webkit-animation-name:ffadeIn;animation-name:ffadeIn}@-webkit-keyframes ffadeInDown{0%{opacity:0;transform:translate3d(0,-12px,0)}to{opacity:1;transform:none}}@keyframes ffadeInDown{0%{opacity:0;transform:translate3d(0,-12px,0)}to{opacity:1;transform:none}}.vff .f-fade-in-down{-webkit-animation-name:ffadeInDown;animation-name:ffadeInDown}@-webkit-keyframes ffadeInUp{0%{opacity:0;transform:translate3d(0,12px,0)}to{opacity:1;transform:none}}@keyframes ffadeInUp{0%{opacity:0;transform:translate3d(0,12px,0)}to{opacity:1;transform:none}}@-webkit-keyframes ff-progress-anim{0%{width:0}5%{width:0}10%{width:15%}30%{width:40%}50%{width:55%}80%{width:100%}95%{width:100%}to{width:0}}@keyframes ff-progress-anim{0%{width:0}5%{width:0}10%{width:15%}30%{width:40%}50%{width:55%}80%{width:100%}95%{width:100%}to{width:0}}.vff .f-fade-in-up{-webkit-animation-name:ffadeInUp;animation-name:ffadeInUp}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app{min-height:auto;overflow:hidden}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff-footer{position:absolute;bottom:3px;right:3px}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .ff_conv_input{padding-top:60px;padding-bottom:120px}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper,.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_media_holder img{height:auto}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_media_holder .fc_i_layout_media_left,.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_media_holder .fc_i_layout_media_right{display:block;padding:60px 0}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_media_holder .fc_i_layout_media_left img,.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_media_holder .fc_i_layout_media_right img{max-width:50%}@media screen and (max-width:1023px){.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_media_holder img{height:150px}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .ff_conv_input{width:100%;margin-top:20px;margin-bottom:50px;padding-top:0}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .fcc_block_media_attachment{padding:0}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .fc_i_layout_media_left,.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff .ff_conv_section_wrapper .fc_i_layout_media_right{display:block;padding:20px 0!important}}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff.ffc_last_step{padding-bottom:60px}.ffc_inline_form.ffc_conv_wrapper .ff_conv_app .vff.ffc_last_step .ff_conv_input{padding-bottom:0}',""]);const o=r},981:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var i=n(3645),r=n.n(i)()((function(e){return e[1]}));r.push([e.id,".v-select{position:relative;font-family:inherit}.v-select,.v-select *{box-sizing:border-box}@-webkit-keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.vs__fade-enter-active,.vs__fade-leave-active{pointer-events:none;transition:opacity .15s cubic-bezier(1,.5,.8,1)}.vs__fade-enter,.vs__fade-leave-to{opacity:0}.vs--disabled .vs__clear,.vs--disabled .vs__dropdown-toggle,.vs--disabled .vs__open-indicator,.vs--disabled .vs__search,.vs--disabled .vs__selected{cursor:not-allowed;background-color:#f8f8f8}.v-select[dir=rtl] .vs__actions{padding:0 3px 0 6px}.v-select[dir=rtl] .vs__clear{margin-left:6px;margin-right:0}.v-select[dir=rtl] .vs__deselect{margin-left:0;margin-right:2px}.v-select[dir=rtl] .vs__dropdown-menu{text-align:right}.vs__dropdown-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:flex;padding:0 0 4px;background:none;border:1px solid rgba(60,60,60,.26);border-radius:4px;white-space:normal}.vs__selected-options{display:flex;flex-basis:100%;flex-grow:1;flex-wrap:wrap;padding:0 2px;position:relative}.vs__actions{display:flex;align-items:center;padding:4px 6px 0 3px}.vs--searchable .vs__dropdown-toggle{cursor:text}.vs--unsearchable .vs__dropdown-toggle{cursor:pointer}.vs--open .vs__dropdown-toggle{border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.vs__open-indicator{fill:rgba(60,60,60,.5);transform:scale(1);transition:transform .15s cubic-bezier(1,-.115,.975,.855);transition-timing-function:cubic-bezier(1,-.115,.975,.855)}.vs--open .vs__open-indicator{transform:rotate(180deg) scale(1)}.vs--loading .vs__open-indicator{opacity:0}.vs__clear{fill:rgba(60,60,60,.5);padding:0;border:0;background-color:transparent;cursor:pointer;margin-right:8px}.vs__dropdown-menu{display:block;box-sizing:border-box;position:absolute;top:calc(100% - 1px);left:0;z-index:1000;padding:5px 0;margin:0;width:100%;max-height:350px;min-width:160px;overflow-y:auto;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);border:1px solid rgba(60,60,60,.26);border-top-style:none;border-radius:0 0 4px 4px;text-align:left;list-style:none;background:#fff}.vs__no-options{text-align:center}.vs__dropdown-option{line-height:1.42857143;display:block;padding:3px 20px;clear:both;color:#333;white-space:nowrap}.vs__dropdown-option:hover{cursor:pointer}.vs__dropdown-option--highlight{background:#5897fb;color:#fff}.vs__dropdown-option--disabled{background:inherit;color:rgba(60,60,60,.5)}.vs__dropdown-option--disabled:hover{cursor:inherit}.vs__selected{display:flex;align-items:center;background-color:#f0f0f0;border:1px solid rgba(60,60,60,.26);border-radius:4px;color:#333;line-height:1.4;margin:4px 2px 0;padding:0 .25em;z-index:0}.vs__deselect{display:inline-flex;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-left:4px;padding:0;border:0;cursor:pointer;background:none;fill:rgba(60,60,60,.5);text-shadow:0 1px 0 #fff}.vs--single .vs__selected{background-color:transparent;border-color:transparent}.vs--single.vs--open .vs__selected{position:absolute;opacity:.4}.vs--single.vs--searching .vs__selected{display:none}.vs__search::-webkit-search-cancel-button{display:none}.vs__search::-ms-clear,.vs__search::-webkit-search-decoration,.vs__search::-webkit-search-results-button,.vs__search::-webkit-search-results-decoration{display:none}.vs__search,.vs__search:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;line-height:1.4;font-size:1em;border:1px solid transparent;border-left:none;outline:none;margin:4px 0 0;padding:0 7px;background:none;box-shadow:none;width:0;max-width:100%;flex-grow:1;z-index:1}.vs__search::-moz-placeholder{color:inherit}.vs__search:-ms-input-placeholder{color:inherit}.vs__search::placeholder{color:inherit}.vs--unsearchable .vs__search{opacity:1}.vs--unsearchable:not(.vs--disabled) .vs__search:hover{cursor:pointer}.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search{opacity:.2}.vs__spinner{align-self:center;opacity:0;font-size:5px;text-indent:-9999em;overflow:hidden;border:.9em solid hsla(0,0%,39.2%,.1);border-left-color:rgba(60,60,60,.45);transform:translateZ(0);-webkit-animation:vSelectSpinner 1.1s linear infinite;animation:vSelectSpinner 1.1s linear infinite;transition:opacity .1s}.vs__spinner,.vs__spinner:after{border-radius:50%;width:5em;height:5em}.vs--loading .vs__spinner{opacity:1}.v-select .vs__selected-options .vs__search{font-size:1.1em!important;line-height:1.34!important;box-shadow:unset!important}.v-select .vs__selected-options .vs__search:focus{box-shadow:unset!important}.vs__dropdown-menu{position:inherit}",""]);const o=r},5716:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var i=n(3645),r=n.n(i)()((function(e){return e[1]}));r.push([e.id,".star-rating__checkbox{position:absolute;overflow:hidden;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;padding:0;border:0}.star-rating__star{display:inline-block;padding:3px;vertical-align:middle;line-height:1;font-size:1.5em;color:#ababab;transition:color .2s ease-out}.star-rating__star:hover{cursor:pointer}.star-rating__star.is-selected{color:gold}.star-rating__star.is-disabled:hover{cursor:default}",""]);const o=r},2168:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var i=n(3645),r=n.n(i)()((function(e){return e[1]}));r.push([e.id,".iti--allow-dropdown input{padding-left:52px!important}.iti__country-list{font-size:18px!important}.iti__flag-container{padding:unset}",""]);const o=r},4946:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var i=n(3645),r=n.n(i)()((function(e){return e[1]}));r.push([e.id,".ff_custom_button[data-v-56ad9af3]{margin-bottom:0}.f-welcome-screen .f-sub[data-v-56ad9af3]{font-weight:400}.ffc_q_header[data-v-56ad9af3]{margin-bottom:10px}.ff_custom_button[data-v-56ad9af3]{margin-top:20px}",""]);const o=r},6343:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var i=n(3645),r=n.n(i)()((function(e){return e[1]}));r.push([e.id,".ffc-counter{position:absolute;right:100%;padding:4px 0}.ffc-counter-in{margin-right:8px}.ffc-counter-div{display:flex;align-items:center;font-size:18px;height:100%;outline:none}.counter-icon-container{margin-left:2px}.f-form-wrap{position:relative}",""]);const o=r},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=e(t);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,i){"string"==typeof e&&(e=[[null,e,""]]);var r={};if(i)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(r[a]=!0)}for(var s=0;s<e.length;s++){var l=[].concat(e[s]);i&&r[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},t}},2705:(e,t,n)=>{var i=n(5639).Symbol;e.exports=i},7412:e=>{e.exports=function(e,t){for(var n=-1,i=null==e?0:e.length;++n<i&&!1!==t(e[n],n,e););return e}},4636:(e,t,n)=>{var i=n(2545),r=n(5694),o=n(1469),a=n(4144),s=n(5776),l=n(6719),u=Object.prototype.hasOwnProperty;e.exports=function(e,t){var n=o(e),c=!n&&r(e),f=!n&&!c&&a(e),p=!n&&!c&&!f&&l(e),d=n||c||f||p,h=d?i(e.length,String):[],v=h.length;for(var m in e)!t&&!u.call(e,m)||d&&("length"==m||f&&("offset"==m||"parent"==m)||p&&("buffer"==m||"byteLength"==m||"byteOffset"==m)||s(m,v))||h.push(m);return h}},9881:(e,t,n)=>{var i=n(7816),r=n(9291)(i);e.exports=r},8483:(e,t,n)=>{var i=n(5063)();e.exports=i},7816:(e,t,n)=>{var i=n(8483),r=n(3674);e.exports=function(e,t){return e&&i(e,t,r)}},4239:(e,t,n)=>{var i=n(2705),r=n(9607),o=n(2333),a=i?i.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":a&&a in Object(e)?r(e):o(e)}},9454:(e,t,n)=>{var i=n(4239),r=n(7005);e.exports=function(e){return r(e)&&"[object Arguments]"==i(e)}},8749:(e,t,n)=>{var i=n(4239),r=n(1780),o=n(7005),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1,e.exports=function(e){return o(e)&&r(e.length)&&!!a[i(e)]}},280:(e,t,n)=>{var i=n(5726),r=n(6916),o=Object.prototype.hasOwnProperty;e.exports=function(e){if(!i(e))return r(e);var t=[];for(var n in Object(e))o.call(e,n)&&"constructor"!=n&&t.push(n);return t}},2545:e=>{e.exports=function(e,t){for(var n=-1,i=Array(e);++n<e;)i[n]=t(n);return i}},7518:e=>{e.exports=function(e){return function(t){return e(t)}}},4290:(e,t,n)=>{var i=n(6557);e.exports=function(e){return"function"==typeof e?e:i}},9291:(e,t,n)=>{var i=n(8612);e.exports=function(e,t){return function(n,r){if(null==n)return n;if(!i(n))return e(n,r);for(var o=n.length,a=t?o:-1,s=Object(n);(t?a--:++a<o)&&!1!==r(s[a],a,s););return n}}},5063:e=>{e.exports=function(e){return function(t,n,i){for(var r=-1,o=Object(t),a=i(t),s=a.length;s--;){var l=a[e?s:++r];if(!1===n(o[l],l,o))break}return t}}},1957:(e,t,n)=>{var i="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g;e.exports=i},9607:(e,t,n)=>{var i=n(2705),r=Object.prototype,o=r.hasOwnProperty,a=r.toString,s=i?i.toStringTag:void 0;e.exports=function(e){var t=o.call(e,s),n=e[s];try{e[s]=void 0;var i=!0}catch(e){}var r=a.call(e);return i&&(t?e[s]=n:delete e[s]),r}},5776:e=>{var t=/^(?:0|[1-9]\d*)$/;e.exports=function(e,n){var i=typeof e;return!!(n=null==n?9007199254740991:n)&&("number"==i||"symbol"!=i&&t.test(e))&&e>-1&&e%1==0&&e<n}},5726:e=>{var t=Object.prototype;e.exports=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||t)}},6916:(e,t,n)=>{var i=n(5569)(Object.keys,Object);e.exports=i},1167:(e,t,n)=>{e=n.nmd(e);var i=n(1957),r=t&&!t.nodeType&&t,o=r&&e&&!e.nodeType&&e,a=o&&o.exports===r&&i.process,s=function(){try{var e=o&&o.require&&o.require("util").types;return e||a&&a.binding&&a.binding("util")}catch(e){}}();e.exports=s},2333:e=>{var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},5569:e=>{e.exports=function(e,t){return function(n){return e(t(n))}}},5639:(e,t,n)=>{var i=n(1957),r="object"==typeof self&&self&&self.Object===Object&&self,o=i||r||Function("return this")();e.exports=o},6073:(e,t,n)=>{e.exports=n(4486)},4486:(e,t,n)=>{var i=n(7412),r=n(9881),o=n(4290),a=n(1469);e.exports=function(e,t){return(a(e)?i:r)(e,o(t))}},6557:e=>{e.exports=function(e){return e}},5694:(e,t,n)=>{var i=n(9454),r=n(7005),o=Object.prototype,a=o.hasOwnProperty,s=o.propertyIsEnumerable,l=i(function(){return arguments}())?i:function(e){return r(e)&&a.call(e,"callee")&&!s.call(e,"callee")};e.exports=l},1469:e=>{var t=Array.isArray;e.exports=t},8612:(e,t,n)=>{var i=n(3560),r=n(1780);e.exports=function(e){return null!=e&&r(e.length)&&!i(e)}},4144:(e,t,n)=>{e=n.nmd(e);var i=n(5639),r=n(5062),o=t&&!t.nodeType&&t,a=o&&e&&!e.nodeType&&e,s=a&&a.exports===o?i.Buffer:void 0,l=(s?s.isBuffer:void 0)||r;e.exports=l},3560:(e,t,n)=>{var i=n(4239),r=n(3218);e.exports=function(e){if(!r(e))return!1;var t=i(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},1780:e=>{e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},3218:e=>{e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},7005:e=>{e.exports=function(e){return null!=e&&"object"==typeof e}},6719:(e,t,n)=>{var i=n(8749),r=n(7518),o=n(1167),a=o&&o.isTypedArray,s=a?r(a):i;e.exports=s},3674:(e,t,n)=>{var i=n(4636),r=n(280),o=n(8612);e.exports=function(e){return o(e)?i(e):r(e)}},5062:e=>{e.exports=function(){return!1}},6770:()=>{!function(e,t){"use strict";"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,n){n=n||{bubbles:!1,cancelable:!1,detail:void 0};var i=t.createEvent("CustomEvent");return i.initCustomEvent(e,n.bubbles,n.cancelable,n.detail),i},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",(function(e){if("true"===e.target.getAttribute("data-swipe-ignore"))return;s=e.target,a=Date.now(),n=e.touches[0].clientX,i=e.touches[0].clientY,r=0,o=0}),!1),t.addEventListener("touchmove",(function(e){if(!n||!i)return;var t=e.touches[0].clientX,a=e.touches[0].clientY;r=n-t,o=i-a}),!1),t.addEventListener("touchend",(function(e){if(s!==e.target)return;var t=parseInt(l(s,"data-swipe-threshold","20"),10),u=parseInt(l(s,"data-swipe-timeout","500"),10),c=Date.now()-a,f="",p=e.changedTouches||e.touches||[];Math.abs(r)>Math.abs(o)?Math.abs(r)>t&&c<u&&(f=r>0?"swiped-left":"swiped-right"):Math.abs(o)>t&&c<u&&(f=o>0?"swiped-up":"swiped-down");if(""!==f){var d={dir:f.replace(/swiped-/,""),xStart:parseInt(n,10),xEnd:parseInt((p[0]||{}).clientX||-1,10),yStart:parseInt(i,10),yEnd:parseInt((p[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:d})),s.dispatchEvent(new CustomEvent(f,{bubbles:!0,cancelable:!0,detail:d}))}n=null,i=null,a=null}),!1);var n=null,i=null,r=null,o=null,a=null,s=null;function l(e,n,i){for(;e&&e!==t.documentElement;){var r=e.getAttribute(n);if(r)return r;e=e.parentNode}return i}}(window,document)},9938:function(e){"undefined"!=typeof self&&self,e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=8)}([function(e,t,n){var i=n(4),r=n(5),o=n(6);e.exports=function(e){return i(e)||r(e)||o()}},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t,n){},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t){e.exports=function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}},function(e,t){e.exports=function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}},function(e,t,n){"use strict";var i=n(2);n.n(i).a},function(e,t,n){"use strict";n.r(t);var i=n(0),r=n.n(i),o=n(1),a=n.n(o),s=n(3),l=n.n(s),u={props:{autoscroll:{type:Boolean,default:!0}},watch:{typeAheadPointer:function(){this.autoscroll&&this.maybeAdjustScroll()}},methods:{maybeAdjustScroll:function(){var e,t=(null===(e=this.$refs.dropdownMenu)||void 0===e?void 0:e.children[this.typeAheadPointer])||!1;if(t){var n=this.getDropdownViewport(),i=t.getBoundingClientRect(),r=i.top,o=i.bottom,a=i.height;if(r<n.top)return this.$refs.dropdownMenu.scrollTop=t.offsetTop;if(o>n.bottom)return this.$refs.dropdownMenu.scrollTop=t.offsetTop-(n.height-a)}},getDropdownViewport:function(){return this.$refs.dropdownMenu?this.$refs.dropdownMenu.getBoundingClientRect():{height:0,top:0,bottom:0}}}},c={data:function(){return{typeAheadPointer:-1}},watch:{filteredOptions:function(){for(var e=0;e<this.filteredOptions.length;e++)if(this.selectable(this.filteredOptions[e])){this.typeAheadPointer=e;break}}},methods:{typeAheadUp:function(){for(var e=this.typeAheadPointer-1;e>=0;e--)if(this.selectable(this.filteredOptions[e])){this.typeAheadPointer=e;break}},typeAheadDown:function(){for(var e=this.typeAheadPointer+1;e<this.filteredOptions.length;e++)if(this.selectable(this.filteredOptions[e])){this.typeAheadPointer=e;break}},typeAheadSelect:function(){var e=this.filteredOptions[this.typeAheadPointer];e&&this.select(e)}}},f={props:{loading:{type:Boolean,default:!1}},data:function(){return{mutableLoading:!1}},watch:{search:function(){this.$emit("search",this.search,this.toggleLoading)},loading:function(e){this.mutableLoading=e}},methods:{toggleLoading:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return this.mutableLoading=null==e?!this.mutableLoading:e}}};function p(e,t,n,i,r,o,a,s){var l,u="function"==typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},u._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,l):[l]}return{exports:e,options:u}}var d={Deselect:p({},(function(){var e=this.$createElement,t=this._self._c||e;return t("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"10",height:"10"}},[t("path",{attrs:{d:"M6.895455 5l2.842897-2.842898c.348864-.348863.348864-.914488 0-1.263636L9.106534.261648c-.348864-.348864-.914489-.348864-1.263636 0L5 3.104545 2.157102.261648c-.348863-.348864-.914488-.348864-1.263636 0L.261648.893466c-.348864.348864-.348864.914489 0 1.263636L3.104545 5 .261648 7.842898c-.348864.348863-.348864.914488 0 1.263636l.631818.631818c.348864.348864.914773.348864 1.263636 0L5 6.895455l2.842898 2.842897c.348863.348864.914772.348864 1.263636 0l.631818-.631818c.348864-.348864.348864-.914489 0-1.263636L6.895455 5z"}})])}),[],!1,null,null,null).exports,OpenIndicator:p({},(function(){var e=this.$createElement,t=this._self._c||e;return t("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"14",height:"10"}},[t("path",{attrs:{d:"M9.211364 7.59931l4.48338-4.867229c.407008-.441854.407008-1.158247 0-1.60046l-.73712-.80023c-.407008-.441854-1.066904-.441854-1.474243 0L7 5.198617 2.51662.33139c-.407008-.441853-1.066904-.441853-1.474243 0l-.737121.80023c-.407008.441854-.407008 1.158248 0 1.600461l4.48338 4.867228L7 10l2.211364-2.40069z"}})])}),[],!1,null,null,null).exports},h={inserted:function(e,t,n){var i=n.context;if(i.appendToBody){var r=i.$refs.toggle.getBoundingClientRect(),o=r.height,a=r.top,s=r.left,l=r.width,u=window.scrollX||window.pageXOffset,c=window.scrollY||window.pageYOffset;e.unbindPosition=i.calculatePosition(e,i,{width:l+"px",left:u+s+"px",top:c+a+o+"px"}),document.body.appendChild(e)}},unbind:function(e,t,n){n.context.appendToBody&&(e.unbindPosition&&"function"==typeof e.unbindPosition&&e.unbindPosition(),e.parentNode&&e.parentNode.removeChild(e))}},v=function(e){var t={};return Object.keys(e).sort().forEach((function(n){t[n]=e[n]})),JSON.stringify(t)},m=0,g=function(){return++m};function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function _(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){l()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var b={components:_({},d),mixins:[u,c,f],directives:{appendToBody:h},props:{value:{},components:{type:Object,default:function(){return{}}},options:{type:Array,default:function(){return[]}},disabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},searchable:{type:Boolean,default:!0},multiple:{type:Boolean,default:!1},placeholder:{type:String,default:""},transition:{type:String,default:"vs__fade"},clearSearchOnSelect:{type:Boolean,default:!0},closeOnSelect:{type:Boolean,default:!0},label:{type:String,default:"label"},autocomplete:{type:String,default:"off"},reduce:{type:Function,default:function(e){return e}},selectable:{type:Function,default:function(e){return!0}},getOptionLabel:{type:Function,default:function(e){return"object"===a()(e)?e.hasOwnProperty(this.label)?e[this.label]:console.warn('[vue-select warn]: Label key "option.'.concat(this.label,'" does not')+" exist in options object ".concat(JSON.stringify(e),".\n")+"https://vue-select.org/api/props.html#getoptionlabel"):e}},getOptionKey:{type:Function,default:function(e){if("object"!==a()(e))return e;try{return e.hasOwnProperty("id")?e.id:v(e)}catch(t){return console.warn("[vue-select warn]: Could not stringify this option to generate unique key. Please provide'getOptionKey' prop to return a unique key for each option.\nhttps://vue-select.org/api/props.html#getoptionkey",e,t)}}},onTab:{type:Function,default:function(){this.selectOnTab&&!this.isComposing&&this.typeAheadSelect()}},taggable:{type:Boolean,default:!1},tabindex:{type:Number,default:null},pushTags:{type:Boolean,default:!1},filterable:{type:Boolean,default:!0},filterBy:{type:Function,default:function(e,t,n){return(t||"").toLowerCase().indexOf(n.toLowerCase())>-1}},filter:{type:Function,default:function(e,t){var n=this;return e.filter((function(e){var i=n.getOptionLabel(e);return"number"==typeof i&&(i=i.toString()),n.filterBy(e,i,t)}))}},createOption:{type:Function,default:function(e){return"object"===a()(this.optionList[0])?l()({},this.label,e):e}},resetOnOptionsChange:{default:!1,validator:function(e){return["function","boolean"].includes(a()(e))}},clearSearchOnBlur:{type:Function,default:function(e){var t=e.clearSearchOnSelect,n=e.multiple;return t&&!n}},noDrop:{type:Boolean,default:!1},inputId:{type:String},dir:{type:String,default:"auto"},selectOnTab:{type:Boolean,default:!1},selectOnKeyCodes:{type:Array,default:function(){return[13]}},searchInputQuerySelector:{type:String,default:"[type=search]"},mapKeydown:{type:Function,default:function(e,t){return e}},appendToBody:{type:Boolean,default:!1},calculatePosition:{type:Function,default:function(e,t,n){var i=n.width,r=n.top,o=n.left;e.style.top=r,e.style.left=o,e.style.width=i}}},data:function(){return{uid:g(),search:"",open:!1,isComposing:!1,pushedTags:[],_value:[]}},watch:{options:function(e,t){var n=this;!this.taggable&&("function"==typeof n.resetOnOptionsChange?n.resetOnOptionsChange(e,t,n.selectedValue):n.resetOnOptionsChange)&&this.clearSelection(),this.value&&this.isTrackingValues&&this.setInternalValueFromOptions(this.value)},value:function(e){this.isTrackingValues&&this.setInternalValueFromOptions(e)},multiple:function(){this.clearSelection()},open:function(e){this.$emit(e?"open":"close")}},created:function(){this.mutableLoading=this.loading,void 0!==this.value&&this.isTrackingValues&&this.setInternalValueFromOptions(this.value),this.$on("option:created",this.pushTag)},methods:{setInternalValueFromOptions:function(e){var t=this;Array.isArray(e)?this.$data._value=e.map((function(e){return t.findOptionFromReducedValue(e)})):this.$data._value=this.findOptionFromReducedValue(e)},select:function(e){this.$emit("option:selecting",e),this.isOptionSelected(e)||(this.taggable&&!this.optionExists(e)&&this.$emit("option:created",e),this.multiple&&(e=this.selectedValue.concat(e)),this.updateValue(e),this.$emit("option:selected",e)),this.onAfterSelect(e)},deselect:function(e){var t=this;this.$emit("option:deselecting",e),this.updateValue(this.selectedValue.filter((function(n){return!t.optionComparator(n,e)}))),this.$emit("option:deselected",e)},clearSelection:function(){this.updateValue(this.multiple?[]:null)},onAfterSelect:function(e){this.closeOnSelect&&(this.open=!this.open,this.searchEl.blur()),this.clearSearchOnSelect&&(this.search="")},updateValue:function(e){var t=this;void 0===this.value&&(this.$data._value=e),null!==e&&(e=Array.isArray(e)?e.map((function(e){return t.reduce(e)})):this.reduce(e)),this.$emit("input",e)},toggleDropdown:function(e){var t=e.target!==this.searchEl;t&&e.preventDefault();var n=[].concat(r()(this.$refs.deselectButtons||[]),r()([this.$refs.clearButton]||0));void 0===this.searchEl||n.filter(Boolean).some((function(t){return t.contains(e.target)||t===e.target}))?e.preventDefault():this.open&&t?this.searchEl.blur():this.disabled||(this.open=!0,this.searchEl.focus())},isOptionSelected:function(e){var t=this;return this.selectedValue.some((function(n){return t.optionComparator(n,e)}))},optionComparator:function(e,t){return this.getOptionKey(e)===this.getOptionKey(t)},findOptionFromReducedValue:function(e){var t=this,n=[].concat(r()(this.options),r()(this.pushedTags)).filter((function(n){return JSON.stringify(t.reduce(n))===JSON.stringify(e)}));return 1===n.length?n[0]:n.find((function(e){return t.optionComparator(e,t.$data._value)}))||e},closeSearchOptions:function(){this.open=!1,this.$emit("search:blur")},maybeDeleteValue:function(){if(!this.searchEl.value.length&&this.selectedValue&&this.selectedValue.length&&this.clearable){var e=null;this.multiple&&(e=r()(this.selectedValue.slice(0,this.selectedValue.length-1))),this.updateValue(e)}},optionExists:function(e){var t=this;return this.optionList.some((function(n){return t.optionComparator(n,e)}))},normalizeOptionForSlot:function(e){return"object"===a()(e)?e:l()({},this.label,e)},pushTag:function(e){this.pushedTags.push(e)},onEscape:function(){this.search.length?this.search="":this.searchEl.blur()},onSearchBlur:function(){if(!this.mousedown||this.searching){var e=this.clearSearchOnSelect,t=this.multiple;return this.clearSearchOnBlur({clearSearchOnSelect:e,multiple:t})&&(this.search=""),void this.closeSearchOptions()}this.mousedown=!1,0!==this.search.length||0!==this.options.length||this.closeSearchOptions()},onSearchFocus:function(){this.open=!0,this.$emit("search:focus")},onMousedown:function(){this.mousedown=!0},onMouseUp:function(){this.mousedown=!1},onSearchKeyDown:function(e){var t=this,n=function(e){return e.preventDefault(),!t.isComposing&&t.typeAheadSelect()},i={8:function(e){return t.maybeDeleteValue()},9:function(e){return t.onTab()},27:function(e){return t.onEscape()},38:function(e){return e.preventDefault(),t.typeAheadUp()},40:function(e){return e.preventDefault(),t.typeAheadDown()}};this.selectOnKeyCodes.forEach((function(e){return i[e]=n}));var r=this.mapKeydown(i,this);if("function"==typeof r[e.keyCode])return r[e.keyCode](e)}},computed:{isTrackingValues:function(){return void 0===this.value||this.$options.propsData.hasOwnProperty("reduce")},selectedValue:function(){var e=this.value;return this.isTrackingValues&&(e=this.$data._value),e?[].concat(e):[]},optionList:function(){return this.options.concat(this.pushTags?this.pushedTags:[])},searchEl:function(){return this.$scopedSlots.search?this.$refs.selectedOptions.querySelector(this.searchInputQuerySelector):this.$refs.search},scope:function(){var e=this,t={search:this.search,loading:this.loading,searching:this.searching,filteredOptions:this.filteredOptions};return{search:{attributes:_({disabled:this.disabled,placeholder:this.searchPlaceholder,tabindex:this.tabindex,readonly:!this.searchable,id:this.inputId,"aria-autocomplete":"list","aria-labelledby":"vs".concat(this.uid,"__combobox"),"aria-controls":"vs".concat(this.uid,"__listbox"),ref:"search",type:"search",autocomplete:this.autocomplete,value:this.search},this.dropdownOpen&&this.filteredOptions[this.typeAheadPointer]?{"aria-activedescendant":"vs".concat(this.uid,"__option-").concat(this.typeAheadPointer)}:{}),events:{compositionstart:function(){return e.isComposing=!0},compositionend:function(){return e.isComposing=!1},keydown:this.onSearchKeyDown,blur:this.onSearchBlur,focus:this.onSearchFocus,input:function(t){return e.search=t.target.value}}},spinner:{loading:this.mutableLoading},noOptions:{search:this.search,loading:this.loading,searching:this.searching},openIndicator:{attributes:{ref:"openIndicator",role:"presentation",class:"vs__open-indicator"}},listHeader:t,listFooter:t,header:_({},t,{deselect:this.deselect}),footer:_({},t,{deselect:this.deselect})}},childComponents:function(){return _({},d,{},this.components)},stateClasses:function(){return{"vs--open":this.dropdownOpen,"vs--single":!this.multiple,"vs--searching":this.searching&&!this.noDrop,"vs--searchable":this.searchable&&!this.noDrop,"vs--unsearchable":!this.searchable,"vs--loading":this.mutableLoading,"vs--disabled":this.disabled}},searching:function(){return!!this.search},dropdownOpen:function(){return!this.noDrop&&this.open&&!this.mutableLoading},searchPlaceholder:function(){if(this.isValueEmpty&&this.placeholder)return this.placeholder},filteredOptions:function(){var e=[].concat(this.optionList);if(!this.filterable&&!this.taggable)return e;var t=this.search.length?this.filter(e,this.search,this):e;if(this.taggable&&this.search.length){var n=this.createOption(this.search);this.optionExists(n)||t.unshift(n)}return t},isValueEmpty:function(){return 0===this.selectedValue.length},showClearButton:function(){return!this.multiple&&this.clearable&&!this.open&&!this.isValueEmpty}}},w=(n(7),p(b,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"v-select",class:e.stateClasses,attrs:{dir:e.dir}},[e._t("header",null,null,e.scope.header),e._v(" "),n("div",{ref:"toggle",staticClass:"vs__dropdown-toggle",attrs:{id:"vs"+e.uid+"__combobox",role:"combobox","aria-expanded":e.dropdownOpen.toString(),"aria-owns":"vs"+e.uid+"__listbox","aria-label":"Search for option"},on:{mousedown:function(t){return e.toggleDropdown(t)}}},[n("div",{ref:"selectedOptions",staticClass:"vs__selected-options"},[e._l(e.selectedValue,(function(t){return e._t("selected-option-container",[n("span",{key:e.getOptionKey(t),staticClass:"vs__selected"},[e._t("selected-option",[e._v("\n "+e._s(e.getOptionLabel(t))+"\n ")],null,e.normalizeOptionForSlot(t)),e._v(" "),e.multiple?n("button",{ref:"deselectButtons",refInFor:!0,staticClass:"vs__deselect",attrs:{disabled:e.disabled,type:"button",title:"Deselect "+e.getOptionLabel(t),"aria-label":"Deselect "+e.getOptionLabel(t)},on:{click:function(n){return e.deselect(t)}}},[n(e.childComponents.Deselect,{tag:"component"})],1):e._e()],2)],{option:e.normalizeOptionForSlot(t),deselect:e.deselect,multiple:e.multiple,disabled:e.disabled})})),e._v(" "),e._t("search",[n("input",e._g(e._b({staticClass:"vs__search"},"input",e.scope.search.attributes,!1),e.scope.search.events))],null,e.scope.search)],2),e._v(" "),n("div",{ref:"actions",staticClass:"vs__actions"},[n("button",{directives:[{name:"show",rawName:"v-show",value:e.showClearButton,expression:"showClearButton"}],ref:"clearButton",staticClass:"vs__clear",attrs:{disabled:e.disabled,type:"button",title:"Clear Selected","aria-label":"Clear Selected"},on:{click:e.clearSelection}},[n(e.childComponents.Deselect,{tag:"component"})],1),e._v(" "),e._t("open-indicator",[e.noDrop?e._e():n(e.childComponents.OpenIndicator,e._b({tag:"component"},"component",e.scope.openIndicator.attributes,!1))],null,e.scope.openIndicator),e._v(" "),e._t("spinner",[n("div",{directives:[{name:"show",rawName:"v-show",value:e.mutableLoading,expression:"mutableLoading"}],staticClass:"vs__spinner"},[e._v("Loading...")])],null,e.scope.spinner)],2)]),e._v(" "),n("transition",{attrs:{name:e.transition}},[e.dropdownOpen?n("ul",{directives:[{name:"append-to-body",rawName:"v-append-to-body"}],key:"vs"+e.uid+"__listbox",ref:"dropdownMenu",staticClass:"vs__dropdown-menu",attrs:{id:"vs"+e.uid+"__listbox",role:"listbox",tabindex:"-1"},on:{mousedown:function(t){return t.preventDefault(),e.onMousedown(t)},mouseup:e.onMouseUp}},[e._t("list-header",null,null,e.scope.listHeader),e._v(" "),e._l(e.filteredOptions,(function(t,i){return n("li",{key:e.getOptionKey(t),staticClass:"vs__dropdown-option",class:{"vs__dropdown-option--selected":e.isOptionSelected(t),"vs__dropdown-option--highlight":i===e.typeAheadPointer,"vs__dropdown-option--disabled":!e.selectable(t)},attrs:{role:"option",id:"vs"+e.uid+"__option-"+i,"aria-selected":i===e.typeAheadPointer||null},on:{mouseover:function(n){e.selectable(t)&&(e.typeAheadPointer=i)},mousedown:function(n){n.preventDefault(),n.stopPropagation(),e.selectable(t)&&e.select(t)}}},[e._t("option",[e._v("\n "+e._s(e.getOptionLabel(t))+"\n ")],null,e.normalizeOptionForSlot(t))],2)})),e._v(" "),0===e.filteredOptions.length?n("li",{staticClass:"vs__no-options"},[e._t("no-options",[e._v("Sorry, no matching options.")],null,e.scope.noOptions)],2):e._e(),e._v(" "),e._t("list-footer",null,null,e.scope.listFooter)],2):n("ul",{staticStyle:{display:"none",visibility:"hidden"},attrs:{id:"vs"+e.uid+"__listbox",role:"listbox"}})]),e._v(" "),e._t("footer",null,null,e.scope.footer)],2)}),[],!1,null,null,null).exports),x={ajax:f,pointer:c,pointerScroll:u};n.d(t,"VueSelect",(function(){return w})),n.d(t,"mixins",(function(){return x})),t.default=w}])},4309:(e,t,n)=>{var i=n(5481);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,n(5346).Z)("2eb808be",i,!0,{})},3117:(e,t,n)=>{var i=n(981);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,n(5346).Z)("4e7b7af4",i,!0,{})},429:(e,t,n)=>{var i=n(5716);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,n(5346).Z)("a29c4b58",i,!0,{})},8020:(e,t,n)=>{var i=n(2168);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,n(5346).Z)("72f8bc22",i,!0,{})},8114:(e,t,n)=>{var i=n(4946);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,n(5346).Z)("6e91e2ec",i,!0,{})},318:(e,t,n)=>{var i=n(6343);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,n(5346).Z)("2bb886de",i,!0,{})},5346:(e,t,n)=>{"use strict";function i(e,t){for(var n=[],i={},r=0;r<t.length;r++){var o=t[r],a=o[0],s={id:e+":"+r,css:o[1],media:o[2],sourceMap:o[3]};i[a]?i[a].parts.push(s):n.push(i[a]={id:a,parts:[s]})}return n}n.d(t,{Z:()=>h});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=r&&(document.head||document.getElementsByTagName("head")[0]),s=null,l=0,u=!1,c=function(){},f=null,p="data-vue-ssr-id",d="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(e,t,n,r){u=n,f=r||{};var a=i(e,t);return v(a),function(t){for(var n=[],r=0;r<a.length;r++){var s=a[r];(l=o[s.id]).refs--,n.push(l)}t?v(a=i(e,t)):a=[];for(r=0;r<n.length;r++){var l;if(0===(l=n[r]).refs){for(var u=0;u<l.parts.length;u++)l.parts[u]();delete o[l.id]}}}}function v(e){for(var t=0;t<e.length;t++){var n=e[t],i=o[n.id];if(i){i.refs++;for(var r=0;r<i.parts.length;r++)i.parts[r](n.parts[r]);for(;r<n.parts.length;r++)i.parts.push(g(n.parts[r]));i.parts.length>n.parts.length&&(i.parts.length=n.parts.length)}else{var a=[];for(r=0;r<n.parts.length;r++)a.push(g(n.parts[r]));o[n.id]={id:n.id,refs:1,parts:a}}}}function m(){var e=document.createElement("style");return e.type="text/css",a.appendChild(e),e}function g(e){var t,n,i=document.querySelector("style["+p+'~="'+e.id+'"]');if(i){if(u)return c;i.parentNode.removeChild(i)}if(d){var r=l++;i=s||(s=m()),t=b.bind(null,i,r,!1),n=b.bind(null,i,r,!0)}else i=m(),t=w.bind(null,i),n=function(){i.parentNode.removeChild(i)};return t(e),function(i){if(i){if(i.css===e.css&&i.media===e.media&&i.sourceMap===e.sourceMap)return;t(e=i)}else n()}}var y,_=(y=[],function(e,t){return y[e]=t,y.filter(Boolean).join("\n")});function b(e,t,n,i){var r=n?"":i.css;if(e.styleSheet)e.styleSheet.cssText=_(t,r);else{var o=document.createTextNode(r),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function w(e,t){var n=t.css,i=t.media,r=t.sourceMap;if(i&&e.setAttribute("media",i),f.ssrId&&e.setAttribute(p,t.id),r&&(n+="\n/*# sourceURL="+r.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}},5460:e=>{e.exports={"#":{pattern:/\d/},X:{pattern:/[0-9a-zA-Z]/},S:{pattern:/[a-zA-Z]/},A:{pattern:/[a-zA-Z]/,transform:e=>e.toLocaleUpperCase()},a:{pattern:/[a-zA-Z]/,transform:e=>e.toLocaleLowerCase()},"!":{escape:!0}}}},t={};function n(i){var r=t[i];if(void 0!==r)return r.exports;var o=t[i]={id:i,loaded:!1,exports:{}};return e[i].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var i in t)n.o(t,i)&&!n.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{"use strict";var e=Object.freeze({});function t(e){return null==e}function i(e){return null!=e}function r(e){return!0===e}function o(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function a(e){return null!==e&&"object"==typeof e}var s=Object.prototype.toString;function l(e){return"[object Object]"===s.call(e)}function u(e){return"[object RegExp]"===s.call(e)}function c(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function f(e){return i(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function p(e){return null==e?"":Array.isArray(e)||l(e)&&e.toString===s?JSON.stringify(e,null,2):String(e)}function d(e){var t=parseFloat(e);return isNaN(t)?e:t}function h(e,t){for(var n=Object.create(null),i=e.split(","),r=0;r<i.length;r++)n[i[r]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}var v=h("slot,component",!0),m=h("key,ref,slot,slot-scope,is");function g(e,t){if(e.length){var n=e.indexOf(t);if(n>-1)return e.splice(n,1)}}var y=Object.prototype.hasOwnProperty;function _(e,t){return y.call(e,t)}function b(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var w=/-(\w)/g,x=b((function(e){return e.replace(w,(function(e,t){return t?t.toUpperCase():""}))})),k=b((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),C=/\B([A-Z])/g,O=b((function(e){return e.replace(C,"-$1").toLowerCase()}));var S=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function n(n){var i=arguments.length;return i?i>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n};function A(e,t){t=t||0;for(var n=e.length-t,i=new Array(n);n--;)i[n]=e[n+t];return i}function T(e,t){for(var n in t)e[n]=t[n];return e}function $(e){for(var t={},n=0;n<e.length;n++)e[n]&&T(t,e[n]);return t}function q(e,t,n){}var E=function(e,t,n){return!1},L=function(e){return e};function j(e,t){if(e===t)return!0;var n=a(e),i=a(t);if(!n||!i)return!n&&!i&&String(e)===String(t);try{var r=Array.isArray(e),o=Array.isArray(t);if(r&&o)return e.length===t.length&&e.every((function(e,n){return j(e,t[n])}));if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(r||o)return!1;var s=Object.keys(e),l=Object.keys(t);return s.length===l.length&&s.every((function(n){return j(e[n],t[n])}))}catch(e){return!1}}function F(e,t){for(var n=0;n<e.length;n++)if(j(e[n],t))return n;return-1}function P(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var D="data-server-rendered",I=["component","directive","filter"],M=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],N={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:E,isReservedAttr:E,isUnknownElement:E,getTagNamespace:q,parsePlatformTagName:L,mustUseProp:E,async:!0,_lifecycleHooks:M},V=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function B(e){var t=(e+"").charCodeAt(0);return 36===t||95===t}function z(e,t,n,i){Object.defineProperty(e,t,{value:n,enumerable:!!i,writable:!0,configurable:!0})}var R=new RegExp("[^"+V.source+".$_\\d]");var U,H="__proto__"in{},Q="undefined"!=typeof window,K="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,J=K&&WXEnvironment.platform.toLowerCase(),W=Q&&window.navigator.userAgent.toLowerCase(),Z=W&&/msie|trident/.test(W),X=W&&W.indexOf("msie 9.0")>0,G=W&&W.indexOf("edge/")>0,Y=(W&&W.indexOf("android"),W&&/iphone|ipad|ipod|ios/.test(W)||"ios"===J),ee=(W&&/chrome\/\d+/.test(W),W&&/phantomjs/.test(W),W&&W.match(/firefox\/(\d+)/)),te={}.watch,ne=!1;if(Q)try{var ie={};Object.defineProperty(ie,"passive",{get:function(){ne=!0}}),window.addEventListener("test-passive",null,ie)}catch(e){}var re=function(){return void 0===U&&(U=!Q&&!K&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),U},oe=Q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ae(e){return"function"==typeof e&&/native code/.test(e.toString())}var se,le="undefined"!=typeof Symbol&&ae(Symbol)&&"undefined"!=typeof Reflect&&ae(Reflect.ownKeys);se="undefined"!=typeof Set&&ae(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var ue=q,ce=0,fe=function(){this.id=ce++,this.subs=[]};fe.prototype.addSub=function(e){this.subs.push(e)},fe.prototype.removeSub=function(e){g(this.subs,e)},fe.prototype.depend=function(){fe.target&&fe.target.addDep(this)},fe.prototype.notify=function(){var e=this.subs.slice();for(var t=0,n=e.length;t<n;t++)e[t].update()},fe.target=null;var pe=[];function de(e){pe.push(e),fe.target=e}function he(){pe.pop(),fe.target=pe[pe.length-1]}var ve=function(e,t,n,i,r,o,a,s){this.tag=e,this.data=t,this.children=n,this.text=i,this.elm=r,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},me={child:{configurable:!0}};me.child.get=function(){return this.componentInstance},Object.defineProperties(ve.prototype,me);var ge=function(e){void 0===e&&(e="");var t=new ve;return t.text=e,t.isComment=!0,t};function ye(e){return new ve(void 0,void 0,void 0,String(e))}function _e(e){var t=new ve(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.asyncMeta=e.asyncMeta,t.isCloned=!0,t}var be=Array.prototype,we=Object.create(be);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(e){var t=be[e];z(we,e,(function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];var r,o=t.apply(this,n),a=this.__ob__;switch(e){case"push":case"unshift":r=n;break;case"splice":r=n.slice(2)}return r&&a.observeArray(r),a.dep.notify(),o}))}));var xe=Object.getOwnPropertyNames(we),ke=!0;function Ce(e){ke=e}var Oe=function(e){this.value=e,this.dep=new fe,this.vmCount=0,z(e,"__ob__",this),Array.isArray(e)?(H?function(e,t){e.__proto__=t}(e,we):function(e,t,n){for(var i=0,r=n.length;i<r;i++){var o=n[i];z(e,o,t[o])}}(e,we,xe),this.observeArray(e)):this.walk(e)};function Se(e,t){var n;if(a(e)&&!(e instanceof ve))return _(e,"__ob__")&&e.__ob__ instanceof Oe?n=e.__ob__:ke&&!re()&&(Array.isArray(e)||l(e))&&Object.isExtensible(e)&&!e._isVue&&(n=new Oe(e)),t&&n&&n.vmCount++,n}function Ae(e,t,n,i,r){var o=new fe,a=Object.getOwnPropertyDescriptor(e,t);if(!a||!1!==a.configurable){var s=a&&a.get,l=a&&a.set;s&&!l||2!==arguments.length||(n=e[t]);var u=!r&&Se(n);Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=s?s.call(e):n;return fe.target&&(o.depend(),u&&(u.dep.depend(),Array.isArray(t)&&qe(t))),t},set:function(t){var i=s?s.call(e):n;t===i||t!=t&&i!=i||s&&!l||(l?l.call(e,t):n=t,u=!r&&Se(t),o.notify())}})}}function Te(e,t,n){if(Array.isArray(e)&&c(t))return e.length=Math.max(e.length,t),e.splice(t,1,n),n;if(t in e&&!(t in Object.prototype))return e[t]=n,n;var i=e.__ob__;return e._isVue||i&&i.vmCount?n:i?(Ae(i.value,t,n),i.dep.notify(),n):(e[t]=n,n)}function $e(e,t){if(Array.isArray(e)&&c(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||_(e,t)&&(delete e[t],n&&n.dep.notify())}}function qe(e){for(var t=void 0,n=0,i=e.length;n<i;n++)(t=e[n])&&t.__ob__&&t.__ob__.dep.depend(),Array.isArray(t)&&qe(t)}Oe.prototype.walk=function(e){for(var t=Object.keys(e),n=0;n<t.length;n++)Ae(e,t[n])},Oe.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)Se(e[t])};var Ee=N.optionMergeStrategies;function Le(e,t){if(!t)return e;for(var n,i,r,o=le?Reflect.ownKeys(t):Object.keys(t),a=0;a<o.length;a++)"__ob__"!==(n=o[a])&&(i=e[n],r=t[n],_(e,n)?i!==r&&l(i)&&l(r)&&Le(i,r):Te(e,n,r));return e}function je(e,t,n){return n?function(){var i="function"==typeof t?t.call(n,n):t,r="function"==typeof e?e.call(n,n):e;return i?Le(i,r):r}:t?e?function(){return Le("function"==typeof t?t.call(this,this):t,"function"==typeof e?e.call(this,this):e)}:t:e}function Fe(e,t){var n=t?e?e.concat(t):Array.isArray(t)?t:[t]:e;return n?function(e){for(var t=[],n=0;n<e.length;n++)-1===t.indexOf(e[n])&&t.push(e[n]);return t}(n):n}function Pe(e,t,n,i){var r=Object.create(e||null);return t?T(r,t):r}Ee.data=function(e,t,n){return n?je(e,t,n):t&&"function"!=typeof t?e:je(e,t)},M.forEach((function(e){Ee[e]=Fe})),I.forEach((function(e){Ee[e+"s"]=Pe})),Ee.watch=function(e,t,n,i){if(e===te&&(e=void 0),t===te&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var r={};for(var o in T(r,e),t){var a=r[o],s=t[o];a&&!Array.isArray(a)&&(a=[a]),r[o]=a?a.concat(s):Array.isArray(s)?s:[s]}return r},Ee.props=Ee.methods=Ee.inject=Ee.computed=function(e,t,n,i){if(!e)return t;var r=Object.create(null);return T(r,e),t&&T(r,t),r},Ee.provide=je;var De=function(e,t){return void 0===t?e:t};function Ie(e,t,n){if("function"==typeof t&&(t=t.options),function(e,t){var n=e.props;if(n){var i,r,o={};if(Array.isArray(n))for(i=n.length;i--;)"string"==typeof(r=n[i])&&(o[x(r)]={type:null});else if(l(n))for(var a in n)r=n[a],o[x(a)]=l(r)?r:{type:r};e.props=o}}(t),function(e,t){var n=e.inject;if(n){var i=e.inject={};if(Array.isArray(n))for(var r=0;r<n.length;r++)i[n[r]]={from:n[r]};else if(l(n))for(var o in n){var a=n[o];i[o]=l(a)?T({from:o},a):{from:a}}}}(t),function(e){var t=e.directives;if(t)for(var n in t){var i=t[n];"function"==typeof i&&(t[n]={bind:i,update:i})}}(t),!t._base&&(t.extends&&(e=Ie(e,t.extends,n)),t.mixins))for(var i=0,r=t.mixins.length;i<r;i++)e=Ie(e,t.mixins[i],n);var o,a={};for(o in e)s(o);for(o in t)_(e,o)||s(o);function s(i){var r=Ee[i]||De;a[i]=r(e[i],t[i],n,i)}return a}function Me(e,t,n,i){if("string"==typeof n){var r=e[t];if(_(r,n))return r[n];var o=x(n);if(_(r,o))return r[o];var a=k(o);return _(r,a)?r[a]:r[n]||r[o]||r[a]}}function Ne(e,t,n,i){var r=t[e],o=!_(n,e),a=n[e],s=Re(Boolean,r.type);if(s>-1)if(o&&!_(r,"default"))a=!1;else if(""===a||a===O(e)){var l=Re(String,r.type);(l<0||s<l)&&(a=!0)}if(void 0===a){a=function(e,t,n){if(!_(t,"default"))return;var i=t.default;0;if(e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n])return e._props[n];return"function"==typeof i&&"Function"!==Be(t.type)?i.call(e):i}(i,r,e);var u=ke;Ce(!0),Se(a),Ce(u)}return a}var Ve=/^\s*function (\w+)/;function Be(e){var t=e&&e.toString().match(Ve);return t?t[1]:""}function ze(e,t){return Be(e)===Be(t)}function Re(e,t){if(!Array.isArray(t))return ze(t,e)?0:-1;for(var n=0,i=t.length;n<i;n++)if(ze(t[n],e))return n;return-1}function Ue(e,t,n){de();try{if(t)for(var i=t;i=i.$parent;){var r=i.$options.errorCaptured;if(r)for(var o=0;o<r.length;o++)try{if(!1===r[o].call(i,e,t,n))return}catch(e){Qe(e,i,"errorCaptured hook")}}Qe(e,t,n)}finally{he()}}function He(e,t,n,i,r){var o;try{(o=n?e.apply(t,n):e.call(t))&&!o._isVue&&f(o)&&!o._handled&&(o.catch((function(e){return Ue(e,i,r+" (Promise/async)")})),o._handled=!0)}catch(e){Ue(e,i,r)}return o}function Qe(e,t,n){if(N.errorHandler)try{return N.errorHandler.call(null,e,t,n)}catch(t){t!==e&&Ke(t,null,"config.errorHandler")}Ke(e,t,n)}function Ke(e,t,n){if(!Q&&!K||"undefined"==typeof console)throw e;console.error(e)}var Je,We=!1,Ze=[],Xe=!1;function Ge(){Xe=!1;var e=Ze.slice(0);Ze.length=0;for(var t=0;t<e.length;t++)e[t]()}if("undefined"!=typeof Promise&&ae(Promise)){var Ye=Promise.resolve();Je=function(){Ye.then(Ge),Y&&setTimeout(q)},We=!0}else if(Z||"undefined"==typeof MutationObserver||!ae(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Je="undefined"!=typeof setImmediate&&ae(setImmediate)?function(){setImmediate(Ge)}:function(){setTimeout(Ge,0)};else{var et=1,tt=new MutationObserver(Ge),nt=document.createTextNode(String(et));tt.observe(nt,{characterData:!0}),Je=function(){et=(et+1)%2,nt.data=String(et)},We=!0}function it(e,t){var n;if(Ze.push((function(){if(e)try{e.call(t)}catch(e){Ue(e,t,"nextTick")}else n&&n(t)})),Xe||(Xe=!0,Je()),!e&&"undefined"!=typeof Promise)return new Promise((function(e){n=e}))}var rt=new se;function ot(e){at(e,rt),rt.clear()}function at(e,t){var n,i,r=Array.isArray(e);if(!(!r&&!a(e)||Object.isFrozen(e)||e instanceof ve)){if(e.__ob__){var o=e.__ob__.dep.id;if(t.has(o))return;t.add(o)}if(r)for(n=e.length;n--;)at(e[n],t);else for(n=(i=Object.keys(e)).length;n--;)at(e[i[n]],t)}}var st=b((function(e){var t="&"===e.charAt(0),n="~"===(e=t?e.slice(1):e).charAt(0),i="!"===(e=n?e.slice(1):e).charAt(0);return{name:e=i?e.slice(1):e,once:n,capture:i,passive:t}}));function lt(e,t){function n(){var e=arguments,i=n.fns;if(!Array.isArray(i))return He(i,null,arguments,t,"v-on handler");for(var r=i.slice(),o=0;o<r.length;o++)He(r[o],null,e,t,"v-on handler")}return n.fns=e,n}function ut(e,n,i,o,a,s){var l,u,c,f;for(l in e)u=e[l],c=n[l],f=st(l),t(u)||(t(c)?(t(u.fns)&&(u=e[l]=lt(u,s)),r(f.once)&&(u=e[l]=a(f.name,u,f.capture)),i(f.name,u,f.capture,f.passive,f.params)):u!==c&&(c.fns=u,e[l]=c));for(l in n)t(e[l])&&o((f=st(l)).name,n[l],f.capture)}function ct(e,n,o){var a;e instanceof ve&&(e=e.data.hook||(e.data.hook={}));var s=e[n];function l(){o.apply(this,arguments),g(a.fns,l)}t(s)?a=lt([l]):i(s.fns)&&r(s.merged)?(a=s).fns.push(l):a=lt([s,l]),a.merged=!0,e[n]=a}function ft(e,t,n,r,o){if(i(t)){if(_(t,n))return e[n]=t[n],o||delete t[n],!0;if(_(t,r))return e[n]=t[r],o||delete t[r],!0}return!1}function pt(e){return o(e)?[ye(e)]:Array.isArray(e)?ht(e):void 0}function dt(e){return i(e)&&i(e.text)&&!1===e.isComment}function ht(e,n){var a,s,l,u,c=[];for(a=0;a<e.length;a++)t(s=e[a])||"boolean"==typeof s||(u=c[l=c.length-1],Array.isArray(s)?s.length>0&&(dt((s=ht(s,(n||"")+"_"+a))[0])&&dt(u)&&(c[l]=ye(u.text+s[0].text),s.shift()),c.push.apply(c,s)):o(s)?dt(u)?c[l]=ye(u.text+s):""!==s&&c.push(ye(s)):dt(s)&&dt(u)?c[l]=ye(u.text+s.text):(r(e._isVList)&&i(s.tag)&&t(s.key)&&i(n)&&(s.key="__vlist"+n+"_"+a+"__"),c.push(s)));return c}function vt(e,t){if(e){for(var n=Object.create(null),i=le?Reflect.ownKeys(e):Object.keys(e),r=0;r<i.length;r++){var o=i[r];if("__ob__"!==o){for(var a=e[o].from,s=t;s;){if(s._provided&&_(s._provided,a)){n[o]=s._provided[a];break}s=s.$parent}if(!s)if("default"in e[o]){var l=e[o].default;n[o]="function"==typeof l?l.call(t):l}else 0}}return n}}function mt(e,t){if(!e||!e.length)return{};for(var n={},i=0,r=e.length;i<r;i++){var o=e[i],a=o.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,o.context!==t&&o.fnContext!==t||!a||null==a.slot)(n.default||(n.default=[])).push(o);else{var s=a.slot,l=n[s]||(n[s]=[]);"template"===o.tag?l.push.apply(l,o.children||[]):l.push(o)}}for(var u in n)n[u].every(gt)&&delete n[u];return n}function gt(e){return e.isComment&&!e.asyncFactory||" "===e.text}function yt(e){return e.isComment&&e.asyncFactory}function _t(t,n,i){var r,o=Object.keys(n).length>0,a=t?!!t.$stable:!o,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&i&&i!==e&&s===i.$key&&!o&&!i.$hasNormal)return i;for(var l in r={},t)t[l]&&"$"!==l[0]&&(r[l]=bt(n,l,t[l]))}else r={};for(var u in n)u in r||(r[u]=wt(n,u));return t&&Object.isExtensible(t)&&(t._normalized=r),z(r,"$stable",a),z(r,"$key",s),z(r,"$hasNormal",o),r}function bt(e,t,n){var i=function(){var e=arguments.length?n.apply(null,arguments):n({}),t=(e=e&&"object"==typeof e&&!Array.isArray(e)?[e]:pt(e))&&e[0];return e&&(!t||t.isComment&&!yt(t))?void 0:e};return n.proxy&&Object.defineProperty(e,t,{get:i,enumerable:!0,configurable:!0}),i}function wt(e,t){return function(){return e[t]}}function xt(e,t){var n,r,o,s,l;if(Array.isArray(e)||"string"==typeof e)for(n=new Array(e.length),r=0,o=e.length;r<o;r++)n[r]=t(e[r],r);else if("number"==typeof e)for(n=new Array(e),r=0;r<e;r++)n[r]=t(r+1,r);else if(a(e))if(le&&e[Symbol.iterator]){n=[];for(var u=e[Symbol.iterator](),c=u.next();!c.done;)n.push(t(c.value,n.length)),c=u.next()}else for(s=Object.keys(e),n=new Array(s.length),r=0,o=s.length;r<o;r++)l=s[r],n[r]=t(e[l],l,r);return i(n)||(n=[]),n._isVList=!0,n}function kt(e,t,n,i){var r,o=this.$scopedSlots[e];o?(n=n||{},i&&(n=T(T({},i),n)),r=o(n)||("function"==typeof t?t():t)):r=this.$slots[e]||("function"==typeof t?t():t);var a=n&&n.slot;return a?this.$createElement("template",{slot:a},r):r}function Ct(e){return Me(this.$options,"filters",e)||L}function Ot(e,t){return Array.isArray(e)?-1===e.indexOf(t):e!==t}function St(e,t,n,i,r){var o=N.keyCodes[t]||n;return r&&i&&!N.keyCodes[t]?Ot(r,i):o?Ot(o,e):i?O(i)!==t:void 0===e}function At(e,t,n,i,r){if(n)if(a(n)){var o;Array.isArray(n)&&(n=$(n));var s=function(a){if("class"===a||"style"===a||m(a))o=e;else{var s=e.attrs&&e.attrs.type;o=i||N.mustUseProp(t,s,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var l=x(a),u=O(a);l in o||u in o||(o[a]=n[a],r&&((e.on||(e.on={}))["update:"+a]=function(e){n[a]=e}))};for(var l in n)s(l)}else;return e}function Tt(e,t){var n=this._staticTrees||(this._staticTrees=[]),i=n[e];return i&&!t||qt(i=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,null,this),"__static__"+e,!1),i}function $t(e,t,n){return qt(e,"__once__"+t+(n?"_"+n:""),!0),e}function qt(e,t,n){if(Array.isArray(e))for(var i=0;i<e.length;i++)e[i]&&"string"!=typeof e[i]&&Et(e[i],t+"_"+i,n);else Et(e,t,n)}function Et(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function Lt(e,t){if(t)if(l(t)){var n=e.on=e.on?T({},e.on):{};for(var i in t){var r=n[i],o=t[i];n[i]=r?[].concat(r,o):o}}else;return e}function jt(e,t,n,i){t=t||{$stable:!n};for(var r=0;r<e.length;r++){var o=e[r];Array.isArray(o)?jt(o,t,n):o&&(o.proxy&&(o.fn.proxy=!0),t[o.key]=o.fn)}return i&&(t.$key=i),t}function Ft(e,t){for(var n=0;n<t.length;n+=2){var i=t[n];"string"==typeof i&&i&&(e[t[n]]=t[n+1])}return e}function Pt(e,t){return"string"==typeof e?t+e:e}function Dt(e){e._o=$t,e._n=d,e._s=p,e._l=xt,e._t=kt,e._q=j,e._i=F,e._m=Tt,e._f=Ct,e._k=St,e._b=At,e._v=ye,e._e=ge,e._u=jt,e._g=Lt,e._d=Ft,e._p=Pt}function It(t,n,i,o,a){var s,l=this,u=a.options;_(o,"_uid")?(s=Object.create(o))._original=o:(s=o,o=o._original);var c=r(u._compiled),f=!c;this.data=t,this.props=n,this.children=i,this.parent=o,this.listeners=t.on||e,this.injections=vt(u.inject,o),this.slots=function(){return l.$slots||_t(t.scopedSlots,l.$slots=mt(i,o)),l.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return _t(t.scopedSlots,this.slots())}}),c&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=_t(t.scopedSlots,this.$slots)),u._scopeId?this._c=function(e,t,n,i){var r=Ut(s,e,t,n,i,f);return r&&!Array.isArray(r)&&(r.fnScopeId=u._scopeId,r.fnContext=o),r}:this._c=function(e,t,n,i){return Ut(s,e,t,n,i,f)}}function Mt(e,t,n,i,r){var o=_e(e);return o.fnContext=n,o.fnOptions=i,t.slot&&((o.data||(o.data={})).slot=t.slot),o}function Nt(e,t){for(var n in t)e[x(n)]=t[n]}Dt(It.prototype);var Vt={init:function(e,t){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var n=e;Vt.prepatch(n,n)}else{(e.componentInstance=function(e,t){var n={_isComponent:!0,_parentVnode:e,parent:t},r=e.data.inlineTemplate;i(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new e.componentOptions.Ctor(n)}(e,en)).$mount(t?e.elm:void 0,t)}},prepatch:function(t,n){var i=n.componentOptions;!function(t,n,i,r,o){0;var a=r.data.scopedSlots,s=t.$scopedSlots,l=!!(a&&!a.$stable||s!==e&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key||!a&&t.$scopedSlots.$key),u=!!(o||t.$options._renderChildren||l);t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r);if(t.$options._renderChildren=o,t.$attrs=r.data.attrs||e,t.$listeners=i||e,n&&t.$options.props){Ce(!1);for(var c=t._props,f=t.$options._propKeys||[],p=0;p<f.length;p++){var d=f[p],h=t.$options.props;c[d]=Ne(d,h,n,t)}Ce(!0),t.$options.propsData=n}i=i||e;var v=t.$options._parentListeners;t.$options._parentListeners=i,Yt(t,i,v),u&&(t.$slots=mt(o,r.context),t.$forceUpdate());0}(n.componentInstance=t.componentInstance,i.propsData,i.listeners,n,i.children)},insert:function(e){var t,n=e.context,i=e.componentInstance;i._isMounted||(i._isMounted=!0,an(i,"mounted")),e.data.keepAlive&&(n._isMounted?((t=i)._inactive=!1,ln.push(t)):rn(i,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?on(t,!0):t.$destroy())}},Bt=Object.keys(Vt);function zt(n,o,s,l,u){if(!t(n)){var c=s.$options._base;if(a(n)&&(n=c.extend(n)),"function"==typeof n){var p;if(t(n.cid)&&void 0===(n=function(e,n){if(r(e.error)&&i(e.errorComp))return e.errorComp;if(i(e.resolved))return e.resolved;var o=Kt;o&&i(e.owners)&&-1===e.owners.indexOf(o)&&e.owners.push(o);if(r(e.loading)&&i(e.loadingComp))return e.loadingComp;if(o&&!i(e.owners)){var s=e.owners=[o],l=!0,u=null,c=null;o.$on("hook:destroyed",(function(){return g(s,o)}));var p=function(e){for(var t=0,n=s.length;t<n;t++)s[t].$forceUpdate();e&&(s.length=0,null!==u&&(clearTimeout(u),u=null),null!==c&&(clearTimeout(c),c=null))},d=P((function(t){e.resolved=Jt(t,n),l?s.length=0:p(!0)})),h=P((function(t){i(e.errorComp)&&(e.error=!0,p(!0))})),v=e(d,h);return a(v)&&(f(v)?t(e.resolved)&&v.then(d,h):f(v.component)&&(v.component.then(d,h),i(v.error)&&(e.errorComp=Jt(v.error,n)),i(v.loading)&&(e.loadingComp=Jt(v.loading,n),0===v.delay?e.loading=!0:u=setTimeout((function(){u=null,t(e.resolved)&&t(e.error)&&(e.loading=!0,p(!1))}),v.delay||200)),i(v.timeout)&&(c=setTimeout((function(){c=null,t(e.resolved)&&h(null)}),v.timeout)))),l=!1,e.loading?e.loadingComp:e.resolved}}(p=n,c)))return function(e,t,n,i,r){var o=ge();return o.asyncFactory=e,o.asyncMeta={data:t,context:n,children:i,tag:r},o}(p,o,s,l,u);o=o||{},Tn(n),i(o.model)&&function(e,t){var n=e.model&&e.model.prop||"value",r=e.model&&e.model.event||"input";(t.attrs||(t.attrs={}))[n]=t.model.value;var o=t.on||(t.on={}),a=o[r],s=t.model.callback;i(a)?(Array.isArray(a)?-1===a.indexOf(s):a!==s)&&(o[r]=[s].concat(a)):o[r]=s}(n.options,o);var d=function(e,n,r){var o=n.options.props;if(!t(o)){var a={},s=e.attrs,l=e.props;if(i(s)||i(l))for(var u in o){var c=O(u);ft(a,l,u,c,!0)||ft(a,s,u,c,!1)}return a}}(o,n);if(r(n.options.functional))return function(t,n,r,o,a){var s=t.options,l={},u=s.props;if(i(u))for(var c in u)l[c]=Ne(c,u,n||e);else i(r.attrs)&&Nt(l,r.attrs),i(r.props)&&Nt(l,r.props);var f=new It(r,l,a,o,t),p=s.render.call(null,f._c,f);if(p instanceof ve)return Mt(p,r,f.parent,s);if(Array.isArray(p)){for(var d=pt(p)||[],h=new Array(d.length),v=0;v<d.length;v++)h[v]=Mt(d[v],r,f.parent,s);return h}}(n,d,o,s,l);var h=o.on;if(o.on=o.nativeOn,r(n.options.abstract)){var v=o.slot;o={},v&&(o.slot=v)}!function(e){for(var t=e.hook||(e.hook={}),n=0;n<Bt.length;n++){var i=Bt[n],r=t[i],o=Vt[i];r===o||r&&r._merged||(t[i]=r?Rt(o,r):o)}}(o);var m=n.options.name||u;return new ve("vue-component-"+n.cid+(m?"-"+m:""),o,void 0,void 0,void 0,s,{Ctor:n,propsData:d,listeners:h,tag:u,children:l},p)}}}function Rt(e,t){var n=function(n,i){e(n,i),t(n,i)};return n._merged=!0,n}function Ut(e,t,n,s,l,u){return(Array.isArray(n)||o(n))&&(l=s,s=n,n=void 0),r(u)&&(l=2),function(e,t,n,r,o){if(i(n)&&i(n.__ob__))return ge();i(n)&&i(n.is)&&(t=n.is);if(!t)return ge();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);2===o?r=pt(r):1===o&&(r=function(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}(r));var s,l;if("string"==typeof t){var u;l=e.$vnode&&e.$vnode.ns||N.getTagNamespace(t),s=N.isReservedTag(t)?new ve(N.parsePlatformTagName(t),n,r,void 0,void 0,e):n&&n.pre||!i(u=Me(e.$options,"components",t))?new ve(t,n,r,void 0,void 0,e):zt(u,n,e,r,t)}else s=zt(t,n,e,r);return Array.isArray(s)?s:i(s)?(i(l)&&Ht(s,l),i(n)&&function(e){a(e.style)&&ot(e.style);a(e.class)&&ot(e.class)}(n),s):ge()}(e,t,n,s,l)}function Ht(e,n,o){if(e.ns=n,"foreignObject"===e.tag&&(n=void 0,o=!0),i(e.children))for(var a=0,s=e.children.length;a<s;a++){var l=e.children[a];i(l.tag)&&(t(l.ns)||r(o)&&"svg"!==l.tag)&&Ht(l,n,o)}}var Qt,Kt=null;function Jt(e,t){return(e.__esModule||le&&"Module"===e[Symbol.toStringTag])&&(e=e.default),a(e)?t.extend(e):e}function Wt(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var n=e[t];if(i(n)&&(i(n.componentOptions)||yt(n)))return n}}function Zt(e,t){Qt.$on(e,t)}function Xt(e,t){Qt.$off(e,t)}function Gt(e,t){var n=Qt;return function i(){var r=t.apply(null,arguments);null!==r&&n.$off(e,i)}}function Yt(e,t,n){Qt=e,ut(t,n||{},Zt,Xt,Gt,e),Qt=void 0}var en=null;function tn(e){var t=en;return en=e,function(){en=t}}function nn(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function rn(e,t){if(t){if(e._directInactive=!1,nn(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)rn(e.$children[n]);an(e,"activated")}}function on(e,t){if(!(t&&(e._directInactive=!0,nn(e))||e._inactive)){e._inactive=!0;for(var n=0;n<e.$children.length;n++)on(e.$children[n]);an(e,"deactivated")}}function an(e,t){de();var n=e.$options[t],i=t+" hook";if(n)for(var r=0,o=n.length;r<o;r++)He(n[r],e,null,e,i);e._hasHookEvent&&e.$emit("hook:"+t),he()}var sn=[],ln=[],un={},cn=!1,fn=!1,pn=0;var dn=0,hn=Date.now;if(Q&&!Z){var vn=window.performance;vn&&"function"==typeof vn.now&&hn()>document.createEvent("Event").timeStamp&&(hn=function(){return vn.now()})}function mn(){var e,t;for(dn=hn(),fn=!0,sn.sort((function(e,t){return e.id-t.id})),pn=0;pn<sn.length;pn++)(e=sn[pn]).before&&e.before(),t=e.id,un[t]=null,e.run();var n=ln.slice(),i=sn.slice();pn=sn.length=ln.length=0,un={},cn=fn=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,rn(e[t],!0)}(n),function(e){var t=e.length;for(;t--;){var n=e[t],i=n.vm;i._watcher===n&&i._isMounted&&!i._isDestroyed&&an(i,"updated")}}(i),oe&&N.devtools&&oe.emit("flush")}var gn=0,yn=function(e,t,n,i,r){this.vm=e,r&&(e._watcher=this),e._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync,this.before=i.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++gn,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new se,this.newDepIds=new se,this.expression="","function"==typeof t?this.getter=t:(this.getter=function(e){if(!R.test(e)){var t=e.split(".");return function(e){for(var n=0;n<t.length;n++){if(!e)return;e=e[t[n]]}return e}}}(t),this.getter||(this.getter=q)),this.value=this.lazy?void 0:this.get()};yn.prototype.get=function(){var e;de(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;Ue(e,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ot(e),he(),this.cleanupDeps()}return e},yn.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},yn.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},yn.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(e){var t=e.id;if(null==un[t]){if(un[t]=!0,fn){for(var n=sn.length-1;n>pn&&sn[n].id>e.id;)n--;sn.splice(n+1,0,e)}else sn.push(e);cn||(cn=!0,it(mn))}}(this)},yn.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||a(e)||this.deep){var t=this.value;if(this.value=e,this.user){var n='callback for watcher "'+this.expression+'"';He(this.cb,this.vm,[e,t],this.vm,n)}else this.cb.call(this.vm,e,t)}}},yn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},yn.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},yn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var _n={enumerable:!0,configurable:!0,get:q,set:q};function bn(e,t,n){_n.get=function(){return this[t][n]},_n.set=function(e){this[t][n]=e},Object.defineProperty(e,n,_n)}function wn(e){e._watchers=[];var t=e.$options;t.props&&function(e,t){var n=e.$options.propsData||{},i=e._props={},r=e.$options._propKeys=[];e.$parent&&Ce(!1);var o=function(o){r.push(o);var a=Ne(o,t,n,e);Ae(i,o,a),o in e||bn(e,"_props",o)};for(var a in t)o(a);Ce(!0)}(e,t.props),t.methods&&function(e,t){e.$options.props;for(var n in t)e[n]="function"!=typeof t[n]?q:S(t[n],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;l(t=e._data="function"==typeof t?function(e,t){de();try{return e.call(t,t)}catch(e){return Ue(e,t,"data()"),{}}finally{he()}}(t,e):t||{})||(t={});var n=Object.keys(t),i=e.$options.props,r=(e.$options.methods,n.length);for(;r--;){var o=n[r];0,i&&_(i,o)||B(o)||bn(e,"_data",o)}Se(t,!0)}(e):Se(e._data={},!0),t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),i=re();for(var r in t){var o=t[r],a="function"==typeof o?o:o.get;0,i||(n[r]=new yn(e,a||q,q,xn)),r in e||kn(e,r,o)}}(e,t.computed),t.watch&&t.watch!==te&&function(e,t){for(var n in t){var i=t[n];if(Array.isArray(i))for(var r=0;r<i.length;r++)Sn(e,n,i[r]);else Sn(e,n,i)}}(e,t.watch)}var xn={lazy:!0};function kn(e,t,n){var i=!re();"function"==typeof n?(_n.get=i?Cn(t):On(n),_n.set=q):(_n.get=n.get?i&&!1!==n.cache?Cn(t):On(n.get):q,_n.set=n.set||q),Object.defineProperty(e,t,_n)}function Cn(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),fe.target&&t.depend(),t.value}}function On(e){return function(){return e.call(this,this)}}function Sn(e,t,n,i){return l(n)&&(i=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,i)}var An=0;function Tn(e){var t=e.options;if(e.super){var n=Tn(e.super);if(n!==e.superOptions){e.superOptions=n;var i=function(e){var t,n=e.options,i=e.sealedOptions;for(var r in n)n[r]!==i[r]&&(t||(t={}),t[r]=n[r]);return t}(e);i&&T(e.extendOptions,i),(t=e.options=Ie(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function $n(e){this._init(e)}function qn(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,i=n.cid,r=e._Ctor||(e._Ctor={});if(r[i])return r[i];var o=e.name||n.options.name;var a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=Ie(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)bn(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)kn(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,I.forEach((function(e){a[e]=n[e]})),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=T({},a.options),r[i]=a,a}}function En(e){return e&&(e.Ctor.options.name||e.tag)}function Ln(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:!!u(e)&&e.test(t)}function jn(e,t){var n=e.cache,i=e.keys,r=e._vnode;for(var o in n){var a=n[o];if(a){var s=a.name;s&&!t(s)&&Fn(n,o,i,r)}}}function Fn(e,t,n,i){var r=e[t];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),e[t]=null,g(n,t)}!function(t){t.prototype._init=function(t){var n=this;n._uid=An++,n._isVue=!0,t&&t._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),i=t._parentVnode;n.parent=t.parent,n._parentVnode=i;var r=i.componentOptions;n.propsData=r.propsData,n._parentListeners=r.listeners,n._renderChildren=r.children,n._componentTag=r.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(n,t):n.$options=Ie(Tn(n.constructor),t||{},n),n._renderProxy=n,n._self=n,function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(n),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&Yt(e,t)}(n),function(t){t._vnode=null,t._staticTrees=null;var n=t.$options,i=t.$vnode=n._parentVnode,r=i&&i.context;t.$slots=mt(n._renderChildren,r),t.$scopedSlots=e,t._c=function(e,n,i,r){return Ut(t,e,n,i,r,!1)},t.$createElement=function(e,n,i,r){return Ut(t,e,n,i,r,!0)};var o=i&&i.data;Ae(t,"$attrs",o&&o.attrs||e,null,!0),Ae(t,"$listeners",n._parentListeners||e,null,!0)}(n),an(n,"beforeCreate"),function(e){var t=vt(e.$options.inject,e);t&&(Ce(!1),Object.keys(t).forEach((function(n){Ae(e,n,t[n])})),Ce(!0))}(n),wn(n),function(e){var t=e.$options.provide;t&&(e._provided="function"==typeof t?t.call(e):t)}(n),an(n,"created"),n.$options.el&&n.$mount(n.$options.el)}}($n),function(e){var t={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",n),e.prototype.$set=Te,e.prototype.$delete=$e,e.prototype.$watch=function(e,t,n){var i=this;if(l(t))return Sn(i,e,t,n);(n=n||{}).user=!0;var r=new yn(i,e,t,n);if(n.immediate){var o='callback for immediate watcher "'+r.expression+'"';de(),He(t,i,[r.value],i,o),he()}return function(){r.teardown()}}}($n),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){var i=this;if(Array.isArray(e))for(var r=0,o=e.length;r<o;r++)i.$on(e[r],n);else(i._events[e]||(i._events[e]=[])).push(n),t.test(e)&&(i._hasHookEvent=!0);return i},e.prototype.$once=function(e,t){var n=this;function i(){n.$off(e,i),t.apply(n,arguments)}return i.fn=t,n.$on(e,i),n},e.prototype.$off=function(e,t){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(e)){for(var i=0,r=e.length;i<r;i++)n.$off(e[i],t);return n}var o,a=n._events[e];if(!a)return n;if(!t)return n._events[e]=null,n;for(var s=a.length;s--;)if((o=a[s])===t||o.fn===t){a.splice(s,1);break}return n},e.prototype.$emit=function(e){var t=this,n=t._events[e];if(n){n=n.length>1?A(n):n;for(var i=A(arguments,1),r='event handler for "'+e+'"',o=0,a=n.length;o<a;o++)He(n[o],t,i,t,r)}return t}}($n),function(e){e.prototype._update=function(e,t){var n=this,i=n.$el,r=n._vnode,o=tn(n);n._vnode=e,n.$el=r?n.__patch__(r,e):n.__patch__(n.$el,e,t,!1),o(),i&&(i.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){an(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||g(t.$children,e),e._watcher&&e._watcher.teardown();for(var n=e._watchers.length;n--;)e._watchers[n].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),an(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}($n),function(e){Dt(e.prototype),e.prototype.$nextTick=function(e){return it(e,this)},e.prototype._render=function(){var e,t=this,n=t.$options,i=n.render,r=n._parentVnode;r&&(t.$scopedSlots=_t(r.data.scopedSlots,t.$slots,t.$scopedSlots)),t.$vnode=r;try{Kt=t,e=i.call(t._renderProxy,t.$createElement)}catch(n){Ue(n,t,"render"),e=t._vnode}finally{Kt=null}return Array.isArray(e)&&1===e.length&&(e=e[0]),e instanceof ve||(e=ge()),e.parent=r,e}}($n);var Pn=[String,RegExp,Array],Dn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:Pn,exclude:Pn,max:[String,Number]},methods:{cacheVNode:function(){var e=this,t=e.cache,n=e.keys,i=e.vnodeToCache,r=e.keyToCache;if(i){var o=i.tag,a=i.componentInstance,s=i.componentOptions;t[r]={name:En(s),tag:o,componentInstance:a},n.push(r),this.max&&n.length>parseInt(this.max)&&Fn(t,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)Fn(this.cache,e,this.keys)},mounted:function(){var e=this;this.cacheVNode(),this.$watch("include",(function(t){jn(e,(function(e){return Ln(t,e)}))})),this.$watch("exclude",(function(t){jn(e,(function(e){return!Ln(t,e)}))}))},updated:function(){this.cacheVNode()},render:function(){var e=this.$slots.default,t=Wt(e),n=t&&t.componentOptions;if(n){var i=En(n),r=this.include,o=this.exclude;if(r&&(!i||!Ln(r,i))||o&&i&&Ln(o,i))return t;var a=this.cache,s=this.keys,l=null==t.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):t.key;a[l]?(t.componentInstance=a[l].componentInstance,g(s,l),s.push(l)):(this.vnodeToCache=t,this.keyToCache=l),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return N}};Object.defineProperty(e,"config",t),e.util={warn:ue,extend:T,mergeOptions:Ie,defineReactive:Ae},e.set=Te,e.delete=$e,e.nextTick=it,e.observable=function(e){return Se(e),e},e.options=Object.create(null),I.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,T(e.options.components,Dn),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=A(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Ie(this.options,e),this}}(e),qn(e),function(e){I.forEach((function(t){e[t]=function(e,n){return n?("component"===t&&l(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}))}(e)}($n),Object.defineProperty($n.prototype,"$isServer",{get:re}),Object.defineProperty($n.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty($n,"FunctionalRenderContext",{value:It}),$n.version="2.6.13";var In=h("style,class"),Mn=h("input,textarea,option,select,progress"),Nn=function(e,t,n){return"value"===n&&Mn(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Vn=h("contenteditable,draggable,spellcheck"),Bn=h("events,caret,typing,plaintext-only"),zn=h("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Rn="http://www.w3.org/1999/xlink",Un=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Hn=function(e){return Un(e)?e.slice(6,e.length):""},Qn=function(e){return null==e||!1===e};function Kn(e){for(var t=e.data,n=e,r=e;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(t=Jn(r.data,t));for(;i(n=n.parent);)n&&n.data&&(t=Jn(t,n.data));return function(e,t){if(i(e)||i(t))return Wn(e,Zn(t));return""}(t.staticClass,t.class)}function Jn(e,t){return{staticClass:Wn(e.staticClass,t.staticClass),class:i(e.class)?[e.class,t.class]:t.class}}function Wn(e,t){return e?t?e+" "+t:e:t||""}function Zn(e){return Array.isArray(e)?function(e){for(var t,n="",r=0,o=e.length;r<o;r++)i(t=Zn(e[r]))&&""!==t&&(n&&(n+=" "),n+=t);return n}(e):a(e)?function(e){var t="";for(var n in e)e[n]&&(t&&(t+=" "),t+=n);return t}(e):"string"==typeof e?e:""}var Xn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Gn=h("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Yn=h("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ei=function(e){return Gn(e)||Yn(e)};function ti(e){return Yn(e)?"svg":"math"===e?"math":void 0}var ni=Object.create(null);var ii=h("text,number,password,search,email,tel,url");function ri(e){if("string"==typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}var oi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(e,t){return document.createElementNS(Xn[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,"")}}),ai={create:function(e,t){si(t)},update:function(e,t){e.data.ref!==t.data.ref&&(si(e,!0),si(t))},destroy:function(e){si(e,!0)}};function si(e,t){var n=e.data.ref;if(i(n)){var r=e.context,o=e.componentInstance||e.elm,a=r.$refs;t?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):e.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var li=new ve("",{},[]),ui=["create","activate","update","remove","destroy"];function ci(e,n){return e.key===n.key&&e.asyncFactory===n.asyncFactory&&(e.tag===n.tag&&e.isComment===n.isComment&&i(e.data)===i(n.data)&&function(e,t){if("input"!==e.tag)return!0;var n,r=i(n=e.data)&&i(n=n.attrs)&&n.type,o=i(n=t.data)&&i(n=n.attrs)&&n.type;return r===o||ii(r)&&ii(o)}(e,n)||r(e.isAsyncPlaceholder)&&t(n.asyncFactory.error))}function fi(e,t,n){var r,o,a={};for(r=t;r<=n;++r)i(o=e[r].key)&&(a[o]=r);return a}var pi={create:di,update:di,destroy:function(e){di(e,li)}};function di(e,t){(e.data.directives||t.data.directives)&&function(e,t){var n,i,r,o=e===li,a=t===li,s=vi(e.data.directives,e.context),l=vi(t.data.directives,t.context),u=[],c=[];for(n in l)i=s[n],r=l[n],i?(r.oldValue=i.value,r.oldArg=i.arg,gi(r,"update",t,e),r.def&&r.def.componentUpdated&&c.push(r)):(gi(r,"bind",t,e),r.def&&r.def.inserted&&u.push(r));if(u.length){var f=function(){for(var n=0;n<u.length;n++)gi(u[n],"inserted",t,e)};o?ct(t,"insert",f):f()}c.length&&ct(t,"postpatch",(function(){for(var n=0;n<c.length;n++)gi(c[n],"componentUpdated",t,e)}));if(!o)for(n in s)l[n]||gi(s[n],"unbind",e,e,a)}(e,t)}var hi=Object.create(null);function vi(e,t){var n,i,r=Object.create(null);if(!e)return r;for(n=0;n<e.length;n++)(i=e[n]).modifiers||(i.modifiers=hi),r[mi(i)]=i,i.def=Me(t.$options,"directives",i.name);return r}function mi(e){return e.rawName||e.name+"."+Object.keys(e.modifiers||{}).join(".")}function gi(e,t,n,i,r){var o=e.def&&e.def[t];if(o)try{o(n.elm,e,n,i,r)}catch(i){Ue(i,n.context,"directive "+e.name+" "+t+" hook")}}var yi=[ai,pi];function _i(e,n){var r=n.componentOptions;if(!(i(r)&&!1===r.Ctor.options.inheritAttrs||t(e.data.attrs)&&t(n.data.attrs))){var o,a,s=n.elm,l=e.data.attrs||{},u=n.data.attrs||{};for(o in i(u.__ob__)&&(u=n.data.attrs=T({},u)),u)a=u[o],l[o]!==a&&bi(s,o,a,n.data.pre);for(o in(Z||G)&&u.value!==l.value&&bi(s,"value",u.value),l)t(u[o])&&(Un(o)?s.removeAttributeNS(Rn,Hn(o)):Vn(o)||s.removeAttribute(o))}}function bi(e,t,n,i){i||e.tagName.indexOf("-")>-1?wi(e,t,n):zn(t)?Qn(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):Vn(t)?e.setAttribute(t,function(e,t){return Qn(t)||"false"===t?"false":"contenteditable"===e&&Bn(t)?t:"true"}(t,n)):Un(t)?Qn(n)?e.removeAttributeNS(Rn,Hn(t)):e.setAttributeNS(Rn,t,n):wi(e,t,n)}function wi(e,t,n){if(Qn(n))e.removeAttribute(t);else{if(Z&&!X&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var i=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",i)};e.addEventListener("input",i),e.__ieph=!0}e.setAttribute(t,n)}}var xi={create:_i,update:_i};function ki(e,n){var r=n.elm,o=n.data,a=e.data;if(!(t(o.staticClass)&&t(o.class)&&(t(a)||t(a.staticClass)&&t(a.class)))){var s=Kn(n),l=r._transitionClasses;i(l)&&(s=Wn(s,Zn(l))),s!==r._prevClass&&(r.setAttribute("class",s),r._prevClass=s)}}var Ci,Oi,Si,Ai,Ti,$i,qi={create:ki,update:ki},Ei=/[\w).+\-_$\]]/;function Li(e){var t,n,i,r,o,a=!1,s=!1,l=!1,u=!1,c=0,f=0,p=0,d=0;for(i=0;i<e.length;i++)if(n=t,t=e.charCodeAt(i),a)39===t&&92!==n&&(a=!1);else if(s)34===t&&92!==n&&(s=!1);else if(l)96===t&&92!==n&&(l=!1);else if(u)47===t&&92!==n&&(u=!1);else if(124!==t||124===e.charCodeAt(i+1)||124===e.charCodeAt(i-1)||c||f||p){switch(t){case 34:s=!0;break;case 39:a=!0;break;case 96:l=!0;break;case 40:p++;break;case 41:p--;break;case 91:f++;break;case 93:f--;break;case 123:c++;break;case 125:c--}if(47===t){for(var h=i-1,v=void 0;h>=0&&" "===(v=e.charAt(h));h--);v&&Ei.test(v)||(u=!0)}}else void 0===r?(d=i+1,r=e.slice(0,i).trim()):m();function m(){(o||(o=[])).push(e.slice(d,i).trim()),d=i+1}if(void 0===r?r=e.slice(0,i).trim():0!==d&&m(),o)for(i=0;i<o.length;i++)r=ji(r,o[i]);return r}function ji(e,t){var n=t.indexOf("(");if(n<0)return'_f("'+t+'")('+e+")";var i=t.slice(0,n),r=t.slice(n+1);return'_f("'+i+'")('+e+(")"!==r?","+r:r)}function Fi(e,t){console.error("[Vue compiler]: "+e)}function Pi(e,t){return e?e.map((function(e){return e[t]})).filter((function(e){return e})):[]}function Di(e,t,n,i,r){(e.props||(e.props=[])).push(Hi({name:t,value:n,dynamic:r},i)),e.plain=!1}function Ii(e,t,n,i,r){(r?e.dynamicAttrs||(e.dynamicAttrs=[]):e.attrs||(e.attrs=[])).push(Hi({name:t,value:n,dynamic:r},i)),e.plain=!1}function Mi(e,t,n,i){e.attrsMap[t]=n,e.attrsList.push(Hi({name:t,value:n},i))}function Ni(e,t,n,i,r,o,a,s){(e.directives||(e.directives=[])).push(Hi({name:t,rawName:n,value:i,arg:r,isDynamicArg:o,modifiers:a},s)),e.plain=!1}function Vi(e,t,n){return n?"_p("+t+',"'+e+'")':e+t}function Bi(t,n,i,r,o,a,s,l){var u;(r=r||e).right?l?n="("+n+")==='click'?'contextmenu':("+n+")":"click"===n&&(n="contextmenu",delete r.right):r.middle&&(l?n="("+n+")==='click'?'mouseup':("+n+")":"click"===n&&(n="mouseup")),r.capture&&(delete r.capture,n=Vi("!",n,l)),r.once&&(delete r.once,n=Vi("~",n,l)),r.passive&&(delete r.passive,n=Vi("&",n,l)),r.native?(delete r.native,u=t.nativeEvents||(t.nativeEvents={})):u=t.events||(t.events={});var c=Hi({value:i.trim(),dynamic:l},s);r!==e&&(c.modifiers=r);var f=u[n];Array.isArray(f)?o?f.unshift(c):f.push(c):u[n]=f?o?[c,f]:[f,c]:c,t.plain=!1}function zi(e,t,n){var i=Ri(e,":"+t)||Ri(e,"v-bind:"+t);if(null!=i)return Li(i);if(!1!==n){var r=Ri(e,t);if(null!=r)return JSON.stringify(r)}}function Ri(e,t,n){var i;if(null!=(i=e.attrsMap[t]))for(var r=e.attrsList,o=0,a=r.length;o<a;o++)if(r[o].name===t){r.splice(o,1);break}return n&&delete e.attrsMap[t],i}function Ui(e,t){for(var n=e.attrsList,i=0,r=n.length;i<r;i++){var o=n[i];if(t.test(o.name))return n.splice(i,1),o}}function Hi(e,t){return t&&(null!=t.start&&(e.start=t.start),null!=t.end&&(e.end=t.end)),e}function Qi(e,t,n){var i=n||{},r=i.number,o="$$v",a=o;i.trim&&(a="(typeof $$v === 'string'? $$v.trim(): $$v)"),r&&(a="_n("+a+")");var s=Ki(t,a);e.model={value:"("+t+")",expression:JSON.stringify(t),callback:"function ($$v) {"+s+"}"}}function Ki(e,t){var n=function(e){if(e=e.trim(),Ci=e.length,e.indexOf("[")<0||e.lastIndexOf("]")<Ci-1)return(Ai=e.lastIndexOf("."))>-1?{exp:e.slice(0,Ai),key:'"'+e.slice(Ai+1)+'"'}:{exp:e,key:null};Oi=e,Ai=Ti=$i=0;for(;!Wi();)Zi(Si=Ji())?Gi(Si):91===Si&&Xi(Si);return{exp:e.slice(0,Ti),key:e.slice(Ti+1,$i)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function Ji(){return Oi.charCodeAt(++Ai)}function Wi(){return Ai>=Ci}function Zi(e){return 34===e||39===e}function Xi(e){var t=1;for(Ti=Ai;!Wi();)if(Zi(e=Ji()))Gi(e);else if(91===e&&t++,93===e&&t--,0===t){$i=Ai;break}}function Gi(e){for(var t=e;!Wi()&&(e=Ji())!==t;);}var Yi,er="__r";function tr(e,t,n){var i=Yi;return function r(){var o=t.apply(null,arguments);null!==o&&rr(e,r,n,i)}}var nr=We&&!(ee&&Number(ee[1])<=53);function ir(e,t,n,i){if(nr){var r=dn,o=t;t=o._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=r||e.timeStamp<=0||e.target.ownerDocument!==document)return o.apply(this,arguments)}}Yi.addEventListener(e,t,ne?{capture:n,passive:i}:n)}function rr(e,t,n,i){(i||Yi).removeEventListener(e,t._wrapper||t,n)}function or(e,n){if(!t(e.data.on)||!t(n.data.on)){var r=n.data.on||{},o=e.data.on||{};Yi=n.elm,function(e){if(i(e.__r)){var t=Z?"change":"input";e[t]=[].concat(e.__r,e[t]||[]),delete e.__r}i(e.__c)&&(e.change=[].concat(e.__c,e.change||[]),delete e.__c)}(r),ut(r,o,ir,rr,tr,n.context),Yi=void 0}}var ar,sr={create:or,update:or};function lr(e,n){if(!t(e.data.domProps)||!t(n.data.domProps)){var r,o,a=n.elm,s=e.data.domProps||{},l=n.data.domProps||{};for(r in i(l.__ob__)&&(l=n.data.domProps=T({},l)),s)r in l||(a[r]="");for(r in l){if(o=l[r],"textContent"===r||"innerHTML"===r){if(n.children&&(n.children.length=0),o===s[r])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===r&&"PROGRESS"!==a.tagName){a._value=o;var u=t(o)?"":String(o);ur(a,u)&&(a.value=u)}else if("innerHTML"===r&&Yn(a.tagName)&&t(a.innerHTML)){(ar=ar||document.createElement("div")).innerHTML="<svg>"+o+"</svg>";for(var c=ar.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;c.firstChild;)a.appendChild(c.firstChild)}else if(o!==s[r])try{a[r]=o}catch(e){}}}}function ur(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(e,t)||function(e,t){var n=e.value,r=e._vModifiers;if(i(r)){if(r.number)return d(n)!==d(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(e,t))}var cr={create:lr,update:lr},fr=b((function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach((function(e){if(e){var i=e.split(n);i.length>1&&(t[i[0].trim()]=i[1].trim())}})),t}));function pr(e){var t=dr(e.style);return e.staticStyle?T(e.staticStyle,t):t}function dr(e){return Array.isArray(e)?$(e):"string"==typeof e?fr(e):e}var hr,vr=/^--/,mr=/\s*!important$/,gr=function(e,t,n){if(vr.test(t))e.style.setProperty(t,n);else if(mr.test(n))e.style.setProperty(O(t),n.replace(mr,""),"important");else{var i=_r(t);if(Array.isArray(n))for(var r=0,o=n.length;r<o;r++)e.style[i]=n[r];else e.style[i]=n}},yr=["Webkit","Moz","ms"],_r=b((function(e){if(hr=hr||document.createElement("div").style,"filter"!==(e=x(e))&&e in hr)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<yr.length;n++){var i=yr[n]+t;if(i in hr)return i}}));function br(e,n){var r=n.data,o=e.data;if(!(t(r.staticStyle)&&t(r.style)&&t(o.staticStyle)&&t(o.style))){var a,s,l=n.elm,u=o.staticStyle,c=o.normalizedStyle||o.style||{},f=u||c,p=dr(n.data.style)||{};n.data.normalizedStyle=i(p.__ob__)?T({},p):p;var d=function(e,t){var n,i={};if(t)for(var r=e;r.componentInstance;)(r=r.componentInstance._vnode)&&r.data&&(n=pr(r.data))&&T(i,n);(n=pr(e.data))&&T(i,n);for(var o=e;o=o.parent;)o.data&&(n=pr(o.data))&&T(i,n);return i}(n,!0);for(s in f)t(d[s])&&gr(l,s,"");for(s in d)(a=d[s])!==f[s]&&gr(l,s,null==a?"":a)}}var wr={create:br,update:br},xr=/\s+/;function kr(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(xr).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function Cr(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(xr).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",i=" "+t+" ";n.indexOf(i)>=0;)n=n.replace(i," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function Or(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&T(t,Sr(e.name||"v")),T(t,e),t}return"string"==typeof e?Sr(e):void 0}}var Sr=b((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),Ar=Q&&!X,Tr="transition",$r="animation",qr="transition",Er="transitionend",Lr="animation",jr="animationend";Ar&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(qr="WebkitTransition",Er="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Lr="WebkitAnimation",jr="webkitAnimationEnd"));var Fr=Q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function Pr(e){Fr((function(){Fr(e)}))}function Dr(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),kr(e,t))}function Ir(e,t){e._transitionClasses&&g(e._transitionClasses,t),Cr(e,t)}function Mr(e,t,n){var i=Vr(e,t),r=i.type,o=i.timeout,a=i.propCount;if(!r)return n();var s=r===Tr?Er:jr,l=0,u=function(){e.removeEventListener(s,c),n()},c=function(t){t.target===e&&++l>=a&&u()};setTimeout((function(){l<a&&u()}),o+1),e.addEventListener(s,c)}var Nr=/\b(transform|all)(,|$)/;function Vr(e,t){var n,i=window.getComputedStyle(e),r=(i[qr+"Delay"]||"").split(", "),o=(i[qr+"Duration"]||"").split(", "),a=Br(r,o),s=(i[Lr+"Delay"]||"").split(", "),l=(i[Lr+"Duration"]||"").split(", "),u=Br(s,l),c=0,f=0;return t===Tr?a>0&&(n=Tr,c=a,f=o.length):t===$r?u>0&&(n=$r,c=u,f=l.length):f=(n=(c=Math.max(a,u))>0?a>u?Tr:$r:null)?n===Tr?o.length:l.length:0,{type:n,timeout:c,propCount:f,hasTransform:n===Tr&&Nr.test(i[qr+"Property"])}}function Br(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map((function(t,n){return zr(t)+zr(e[n])})))}function zr(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function Rr(e,n){var r=e.elm;i(r._leaveCb)&&(r._leaveCb.cancelled=!0,r._leaveCb());var o=Or(e.data.transition);if(!t(o)&&!i(r._enterCb)&&1===r.nodeType){for(var s=o.css,l=o.type,u=o.enterClass,c=o.enterToClass,f=o.enterActiveClass,p=o.appearClass,h=o.appearToClass,v=o.appearActiveClass,m=o.beforeEnter,g=o.enter,y=o.afterEnter,_=o.enterCancelled,b=o.beforeAppear,w=o.appear,x=o.afterAppear,k=o.appearCancelled,C=o.duration,O=en,S=en.$vnode;S&&S.parent;)O=S.context,S=S.parent;var A=!O._isMounted||!e.isRootInsert;if(!A||w||""===w){var T=A&&p?p:u,$=A&&v?v:f,q=A&&h?h:c,E=A&&b||m,L=A&&"function"==typeof w?w:g,j=A&&x||y,F=A&&k||_,D=d(a(C)?C.enter:C);0;var I=!1!==s&&!X,M=Qr(L),N=r._enterCb=P((function(){I&&(Ir(r,q),Ir(r,$)),N.cancelled?(I&&Ir(r,T),F&&F(r)):j&&j(r),r._enterCb=null}));e.data.show||ct(e,"insert",(function(){var t=r.parentNode,n=t&&t._pending&&t._pending[e.key];n&&n.tag===e.tag&&n.elm._leaveCb&&n.elm._leaveCb(),L&&L(r,N)})),E&&E(r),I&&(Dr(r,T),Dr(r,$),Pr((function(){Ir(r,T),N.cancelled||(Dr(r,q),M||(Hr(D)?setTimeout(N,D):Mr(r,l,N)))}))),e.data.show&&(n&&n(),L&&L(r,N)),I||M||N()}}}function Ur(e,n){var r=e.elm;i(r._enterCb)&&(r._enterCb.cancelled=!0,r._enterCb());var o=Or(e.data.transition);if(t(o)||1!==r.nodeType)return n();if(!i(r._leaveCb)){var s=o.css,l=o.type,u=o.leaveClass,c=o.leaveToClass,f=o.leaveActiveClass,p=o.beforeLeave,h=o.leave,v=o.afterLeave,m=o.leaveCancelled,g=o.delayLeave,y=o.duration,_=!1!==s&&!X,b=Qr(h),w=d(a(y)?y.leave:y);0;var x=r._leaveCb=P((function(){r.parentNode&&r.parentNode._pending&&(r.parentNode._pending[e.key]=null),_&&(Ir(r,c),Ir(r,f)),x.cancelled?(_&&Ir(r,u),m&&m(r)):(n(),v&&v(r)),r._leaveCb=null}));g?g(k):k()}function k(){x.cancelled||(!e.data.show&&r.parentNode&&((r.parentNode._pending||(r.parentNode._pending={}))[e.key]=e),p&&p(r),_&&(Dr(r,u),Dr(r,f),Pr((function(){Ir(r,u),x.cancelled||(Dr(r,c),b||(Hr(w)?setTimeout(x,w):Mr(r,l,x)))}))),h&&h(r,x),_||b||x())}}function Hr(e){return"number"==typeof e&&!isNaN(e)}function Qr(e){if(t(e))return!1;var n=e.fns;return i(n)?Qr(Array.isArray(n)?n[0]:n):(e._length||e.length)>1}function Kr(e,t){!0!==t.data.show&&Rr(t)}var Jr=function(e){var n,a,s={},l=e.modules,u=e.nodeOps;for(n=0;n<ui.length;++n)for(s[ui[n]]=[],a=0;a<l.length;++a)i(l[a][ui[n]])&&s[ui[n]].push(l[a][ui[n]]);function c(e){var t=u.parentNode(e);i(t)&&u.removeChild(t,e)}function f(e,t,n,o,a,l,c){if(i(e.elm)&&i(l)&&(e=l[c]=_e(e)),e.isRootInsert=!a,!function(e,t,n,o){var a=e.data;if(i(a)){var l=i(e.componentInstance)&&a.keepAlive;if(i(a=a.hook)&&i(a=a.init)&&a(e,!1),i(e.componentInstance))return p(e,t),d(n,e.elm,o),r(l)&&function(e,t,n,r){var o,a=e;for(;a.componentInstance;)if(i(o=(a=a.componentInstance._vnode).data)&&i(o=o.transition)){for(o=0;o<s.activate.length;++o)s.activate[o](li,a);t.push(a);break}d(n,e.elm,r)}(e,t,n,o),!0}}(e,t,n,o)){var f=e.data,h=e.children,m=e.tag;i(m)?(e.elm=e.ns?u.createElementNS(e.ns,m):u.createElement(m,e),y(e),v(e,h,t),i(f)&&g(e,t),d(n,e.elm,o)):r(e.isComment)?(e.elm=u.createComment(e.text),d(n,e.elm,o)):(e.elm=u.createTextNode(e.text),d(n,e.elm,o))}}function p(e,t){i(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,m(e)?(g(e,t),y(e)):(si(e),t.push(e))}function d(e,t,n){i(e)&&(i(n)?u.parentNode(n)===e&&u.insertBefore(e,t,n):u.appendChild(e,t))}function v(e,t,n){if(Array.isArray(t)){0;for(var i=0;i<t.length;++i)f(t[i],n,e.elm,null,!0,t,i)}else o(e.text)&&u.appendChild(e.elm,u.createTextNode(String(e.text)))}function m(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return i(e.tag)}function g(e,t){for(var r=0;r<s.create.length;++r)s.create[r](li,e);i(n=e.data.hook)&&(i(n.create)&&n.create(li,e),i(n.insert)&&t.push(e))}function y(e){var t;if(i(t=e.fnScopeId))u.setStyleScope(e.elm,t);else for(var n=e;n;)i(t=n.context)&&i(t=t.$options._scopeId)&&u.setStyleScope(e.elm,t),n=n.parent;i(t=en)&&t!==e.context&&t!==e.fnContext&&i(t=t.$options._scopeId)&&u.setStyleScope(e.elm,t)}function _(e,t,n,i,r,o){for(;i<=r;++i)f(n[i],o,e,t,!1,n,i)}function b(e){var t,n,r=e.data;if(i(r))for(i(t=r.hook)&&i(t=t.destroy)&&t(e),t=0;t<s.destroy.length;++t)s.destroy[t](e);if(i(t=e.children))for(n=0;n<e.children.length;++n)b(e.children[n])}function w(e,t,n){for(;t<=n;++t){var r=e[t];i(r)&&(i(r.tag)?(x(r),b(r)):c(r.elm))}}function x(e,t){if(i(t)||i(e.data)){var n,r=s.remove.length+1;for(i(t)?t.listeners+=r:t=function(e,t){function n(){0==--n.listeners&&c(e)}return n.listeners=t,n}(e.elm,r),i(n=e.componentInstance)&&i(n=n._vnode)&&i(n.data)&&x(n,t),n=0;n<s.remove.length;++n)s.remove[n](e,t);i(n=e.data.hook)&&i(n=n.remove)?n(e,t):t()}else c(e.elm)}function k(e,t,n,r){for(var o=n;o<r;o++){var a=t[o];if(i(a)&&ci(e,a))return o}}function C(e,n,o,a,l,c){if(e!==n){i(n.elm)&&i(a)&&(n=a[l]=_e(n));var p=n.elm=e.elm;if(r(e.isAsyncPlaceholder))i(n.asyncFactory.resolved)?A(e.elm,n,o):n.isAsyncPlaceholder=!0;else if(r(n.isStatic)&&r(e.isStatic)&&n.key===e.key&&(r(n.isCloned)||r(n.isOnce)))n.componentInstance=e.componentInstance;else{var d,h=n.data;i(h)&&i(d=h.hook)&&i(d=d.prepatch)&&d(e,n);var v=e.children,g=n.children;if(i(h)&&m(n)){for(d=0;d<s.update.length;++d)s.update[d](e,n);i(d=h.hook)&&i(d=d.update)&&d(e,n)}t(n.text)?i(v)&&i(g)?v!==g&&function(e,n,r,o,a){var s,l,c,p=0,d=0,h=n.length-1,v=n[0],m=n[h],g=r.length-1,y=r[0],b=r[g],x=!a;for(;p<=h&&d<=g;)t(v)?v=n[++p]:t(m)?m=n[--h]:ci(v,y)?(C(v,y,o,r,d),v=n[++p],y=r[++d]):ci(m,b)?(C(m,b,o,r,g),m=n[--h],b=r[--g]):ci(v,b)?(C(v,b,o,r,g),x&&u.insertBefore(e,v.elm,u.nextSibling(m.elm)),v=n[++p],b=r[--g]):ci(m,y)?(C(m,y,o,r,d),x&&u.insertBefore(e,m.elm,v.elm),m=n[--h],y=r[++d]):(t(s)&&(s=fi(n,p,h)),t(l=i(y.key)?s[y.key]:k(y,n,p,h))?f(y,o,e,v.elm,!1,r,d):ci(c=n[l],y)?(C(c,y,o,r,d),n[l]=void 0,x&&u.insertBefore(e,c.elm,v.elm)):f(y,o,e,v.elm,!1,r,d),y=r[++d]);p>h?_(e,t(r[g+1])?null:r[g+1].elm,r,d,g,o):d>g&&w(n,p,h)}(p,v,g,o,c):i(g)?(i(e.text)&&u.setTextContent(p,""),_(p,null,g,0,g.length-1,o)):i(v)?w(v,0,v.length-1):i(e.text)&&u.setTextContent(p,""):e.text!==n.text&&u.setTextContent(p,n.text),i(h)&&i(d=h.hook)&&i(d=d.postpatch)&&d(e,n)}}}function O(e,t,n){if(r(n)&&i(e.parent))e.parent.data.pendingInsert=t;else for(var o=0;o<t.length;++o)t[o].data.hook.insert(t[o])}var S=h("attrs,class,staticClass,staticStyle,key");function A(e,t,n,o){var a,s=t.tag,l=t.data,u=t.children;if(o=o||l&&l.pre,t.elm=e,r(t.isComment)&&i(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(i(l)&&(i(a=l.hook)&&i(a=a.init)&&a(t,!0),i(a=t.componentInstance)))return p(t,n),!0;if(i(s)){if(i(u))if(e.hasChildNodes())if(i(a=l)&&i(a=a.domProps)&&i(a=a.innerHTML)){if(a!==e.innerHTML)return!1}else{for(var c=!0,f=e.firstChild,d=0;d<u.length;d++){if(!f||!A(f,u[d],n,o)){c=!1;break}f=f.nextSibling}if(!c||f)return!1}else v(t,u,n);if(i(l)){var h=!1;for(var m in l)if(!S(m)){h=!0,g(t,n);break}!h&&l.class&&ot(l.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,n,o,a){if(!t(n)){var l,c=!1,p=[];if(t(e))c=!0,f(n,p);else{var d=i(e.nodeType);if(!d&&ci(e,n))C(e,n,p,null,null,a);else{if(d){if(1===e.nodeType&&e.hasAttribute(D)&&(e.removeAttribute(D),o=!0),r(o)&&A(e,n,p))return O(n,p,!0),e;l=e,e=new ve(u.tagName(l).toLowerCase(),{},[],void 0,l)}var h=e.elm,v=u.parentNode(h);if(f(n,p,h._leaveCb?null:v,u.nextSibling(h)),i(n.parent))for(var g=n.parent,y=m(n);g;){for(var _=0;_<s.destroy.length;++_)s.destroy[_](g);if(g.elm=n.elm,y){for(var x=0;x<s.create.length;++x)s.create[x](li,g);var k=g.data.hook.insert;if(k.merged)for(var S=1;S<k.fns.length;S++)k.fns[S]()}else si(g);g=g.parent}i(v)?w([e],0,0):i(e.tag)&&b(e)}}return O(n,p,c),n.elm}i(e)&&b(e)}}({nodeOps:oi,modules:[xi,qi,sr,cr,wr,Q?{create:Kr,activate:Kr,remove:function(e,t){!0!==e.data.show?Ur(e,t):t()}}:{}].concat(yi)});X&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&no(e,"input")}));var Wr={inserted:function(e,t,n,i){"select"===n.tag?(i.elm&&!i.elm._vOptions?ct(n,"postpatch",(function(){Wr.componentUpdated(e,t,n)})):Zr(e,t,n.context),e._vOptions=[].map.call(e.options,Yr)):("textarea"===n.tag||ii(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",eo),e.addEventListener("compositionend",to),e.addEventListener("change",to),X&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){Zr(e,t,n.context);var i=e._vOptions,r=e._vOptions=[].map.call(e.options,Yr);if(r.some((function(e,t){return!j(e,i[t])})))(e.multiple?t.value.some((function(e){return Gr(e,r)})):t.value!==t.oldValue&&Gr(t.value,r))&&no(e,"change")}}};function Zr(e,t,n){Xr(e,t,n),(Z||G)&&setTimeout((function(){Xr(e,t,n)}),0)}function Xr(e,t,n){var i=t.value,r=e.multiple;if(!r||Array.isArray(i)){for(var o,a,s=0,l=e.options.length;s<l;s++)if(a=e.options[s],r)o=F(i,Yr(a))>-1,a.selected!==o&&(a.selected=o);else if(j(Yr(a),i))return void(e.selectedIndex!==s&&(e.selectedIndex=s));r||(e.selectedIndex=-1)}}function Gr(e,t){return t.every((function(t){return!j(t,e)}))}function Yr(e){return"_value"in e?e._value:e.value}function eo(e){e.target.composing=!0}function to(e){e.target.composing&&(e.target.composing=!1,no(e.target,"input"))}function no(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function io(e){return!e.componentInstance||e.data&&e.data.transition?e:io(e.componentInstance._vnode)}var ro={model:Wr,show:{bind:function(e,t,n){var i=t.value,r=(n=io(n)).data&&n.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;i&&r?(n.data.show=!0,Rr(n,(function(){e.style.display=o}))):e.style.display=i?o:"none"},update:function(e,t,n){var i=t.value;!i!=!t.oldValue&&((n=io(n)).data&&n.data.transition?(n.data.show=!0,i?Rr(n,(function(){e.style.display=e.__vOriginalDisplay})):Ur(n,(function(){e.style.display="none"}))):e.style.display=i?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,i,r){r||(e.style.display=e.__vOriginalDisplay)}}},oo={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ao(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?ao(Wt(t.children)):e}function so(e){var t={},n=e.$options;for(var i in n.propsData)t[i]=e[i];var r=n._parentListeners;for(var o in r)t[x(o)]=r[o];return t}function lo(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var uo=function(e){return e.tag||yt(e)},co=function(e){return"show"===e.name},fo={name:"transition",props:oo,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(uo)).length){0;var i=this.mode;0;var r=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return r;var a=ao(r);if(!a)return r;if(this._leaving)return lo(e,r);var s="__transition-"+this._uid+"-";a.key=null==a.key?a.isComment?s+"comment":s+a.tag:o(a.key)?0===String(a.key).indexOf(s)?a.key:s+a.key:a.key;var l=(a.data||(a.data={})).transition=so(this),u=this._vnode,c=ao(u);if(a.data.directives&&a.data.directives.some(co)&&(a.data.show=!0),c&&c.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(a,c)&&!yt(c)&&(!c.componentInstance||!c.componentInstance._vnode.isComment)){var f=c.data.transition=T({},l);if("out-in"===i)return this._leaving=!0,ct(f,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),lo(e,r);if("in-out"===i){if(yt(a))return u;var p,d=function(){p()};ct(l,"afterEnter",d),ct(l,"enterCancelled",d),ct(f,"delayLeave",(function(e){p=e}))}}return r}}},po=T({tag:String,moveClass:String},oo);function ho(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function vo(e){e.data.newPos=e.elm.getBoundingClientRect()}function mo(e){var t=e.data.pos,n=e.data.newPos,i=t.left-n.left,r=t.top-n.top;if(i||r){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+i+"px,"+r+"px)",o.transitionDuration="0s"}}delete po.mode;var go={Transition:fo,TransitionGroup:{props:po,beforeMount:function(){var e=this,t=this._update;this._update=function(n,i){var r=tn(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,r(),t.call(e,n,i)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],a=so(this),s=0;s<r.length;s++){var l=r[s];if(l.tag)if(null!=l.key&&0!==String(l.key).indexOf("__vlist"))o.push(l),n[l.key]=l,(l.data||(l.data={})).transition=a;else;}if(i){for(var u=[],c=[],f=0;f<i.length;f++){var p=i[f];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):c.push(p)}this.kept=e(t,null,u),this.removed=c}return e(t,null,o)},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(ho),e.forEach(vo),e.forEach(mo),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var n=e.elm,i=n.style;Dr(n,t),i.transform=i.WebkitTransform=i.transitionDuration="",n.addEventListener(Er,n._moveCb=function e(i){i&&i.target!==n||i&&!/transform$/.test(i.propertyName)||(n.removeEventListener(Er,e),n._moveCb=null,Ir(n,t))})}})))},methods:{hasMove:function(e,t){if(!Ar)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){Cr(n,e)})),kr(n,t),n.style.display="none",this.$el.appendChild(n);var i=Vr(n);return this.$el.removeChild(n),this._hasMove=i.hasTransform}}}};$n.config.mustUseProp=Nn,$n.config.isReservedTag=ei,$n.config.isReservedAttr=In,$n.config.getTagNamespace=ti,$n.config.isUnknownElement=function(e){if(!Q)return!0;if(ei(e))return!1;if(e=e.toLowerCase(),null!=ni[e])return ni[e];var t=document.createElement(e);return e.indexOf("-")>-1?ni[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ni[e]=/HTMLUnknownElement/.test(t.toString())},T($n.options.directives,ro),T($n.options.components,go),$n.prototype.__patch__=Q?Jr:q,$n.prototype.$mount=function(e,t){return function(e,t,n){var i;return e.$el=t,e.$options.render||(e.$options.render=ge),an(e,"beforeMount"),i=function(){e._update(e._render(),n)},new yn(e,i,q,{before:function(){e._isMounted&&!e._isDestroyed&&an(e,"beforeUpdate")}},!0),n=!1,null==e.$vnode&&(e._isMounted=!0,an(e,"mounted")),e}(this,e=e&&Q?ri(e):void 0,t)},Q&&setTimeout((function(){N.devtools&&oe&&oe.emit("init",$n)}),0);var yo=/\{\{((?:.|\r?\n)+?)\}\}/g,_o=/[-.*+?^${}()|[\]\/\\]/g,bo=b((function(e){var t=e[0].replace(_o,"\\$&"),n=e[1].replace(_o,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}));var wo={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=Ri(e,"class");n&&(e.staticClass=JSON.stringify(n));var i=zi(e,"class",!1);i&&(e.classBinding=i)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}};var xo,ko={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=Ri(e,"style");n&&(e.staticStyle=JSON.stringify(fr(n)));var i=zi(e,"style",!1);i&&(e.styleBinding=i)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},Co=function(e){return(xo=xo||document.createElement("div")).innerHTML=e,xo.textContent},Oo=h("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),So=h("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),Ao=h("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),To=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,$o=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+?\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,qo="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+V.source+"]*",Eo="((?:"+qo+"\\:)?"+qo+")",Lo=new RegExp("^<"+Eo),jo=/^\s*(\/?)>/,Fo=new RegExp("^<\\/"+Eo+"[^>]*>"),Po=/^<!DOCTYPE [^>]+>/i,Do=/^<!\--/,Io=/^<!\[/,Mo=h("script,style,textarea",!0),No={},Vo={"<":"<",">":">",""":'"',"&":"&"," ":"\n","	":"\t","'":"'"},Bo=/&(?:lt|gt|quot|amp|#39);/g,zo=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Ro=h("pre,textarea",!0),Uo=function(e,t){return e&&Ro(e)&&"\n"===t[0]};function Ho(e,t){var n=t?zo:Bo;return e.replace(n,(function(e){return Vo[e]}))}var Qo,Ko,Jo,Wo,Zo,Xo,Go,Yo,ea=/^@|^v-on:/,ta=/^v-|^@|^:|^#/,na=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,ia=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,ra=/^\(|\)$/g,oa=/^\[.*\]$/,aa=/:(.*)$/,sa=/^:|^\.|^v-bind:/,la=/\.[^.\]]+(?=[^\]]*$)/g,ua=/^v-slot(:|$)|^#/,ca=/[\r\n]/,fa=/[ \f\t\r\n]+/g,pa=b(Co),da="_empty_";function ha(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:wa(t),rawAttrsMap:{},parent:n,children:[]}}function va(e,t){Qo=t.warn||Fi,Xo=t.isPreTag||E,Go=t.mustUseProp||E,Yo=t.getTagNamespace||E;var n=t.isReservedTag||E;(function(e){return!(!(e.component||e.attrsMap[":is"]||e.attrsMap["v-bind:is"])&&(e.attrsMap.is?n(e.attrsMap.is):n(e.tag)))}),Jo=Pi(t.modules,"transformNode"),Wo=Pi(t.modules,"preTransformNode"),Zo=Pi(t.modules,"postTransformNode"),Ko=t.delimiters;var i,r,o=[],a=!1!==t.preserveWhitespace,s=t.whitespace,l=!1,u=!1;function c(e){if(f(e),l||e.processed||(e=ma(e,t)),o.length||e===i||i.if&&(e.elseif||e.else)&&ya(i,{exp:e.elseif,block:e}),r&&!e.forbidden)if(e.elseif||e.else)a=e,(s=function(e){for(var t=e.length;t--;){if(1===e[t].type)return e[t];e.pop()}}(r.children))&&s.if&&ya(s,{exp:a.elseif,block:a});else{if(e.slotScope){var n=e.slotTarget||'"default"';(r.scopedSlots||(r.scopedSlots={}))[n]=e}r.children.push(e),e.parent=r}var a,s;e.children=e.children.filter((function(e){return!e.slotScope})),f(e),e.pre&&(l=!1),Xo(e.tag)&&(u=!1);for(var c=0;c<Zo.length;c++)Zo[c](e,t)}function f(e){if(!u)for(var t;(t=e.children[e.children.length-1])&&3===t.type&&" "===t.text;)e.children.pop()}return function(e,t){for(var n,i,r=[],o=t.expectHTML,a=t.isUnaryTag||E,s=t.canBeLeftOpenTag||E,l=0;e;){if(n=e,i&&Mo(i)){var u=0,c=i.toLowerCase(),f=No[c]||(No[c]=new RegExp("([\\s\\S]*?)(</"+c+"[^>]*>)","i")),p=e.replace(f,(function(e,n,i){return u=i.length,Mo(c)||"noscript"===c||(n=n.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),Uo(c,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""}));l+=e.length-p.length,e=p,S(c,l-u,l)}else{var d=e.indexOf("<");if(0===d){if(Do.test(e)){var h=e.indexOf("--\x3e");if(h>=0){t.shouldKeepComment&&t.comment(e.substring(4,h),l,l+h+3),k(h+3);continue}}if(Io.test(e)){var v=e.indexOf("]>");if(v>=0){k(v+2);continue}}var m=e.match(Po);if(m){k(m[0].length);continue}var g=e.match(Fo);if(g){var y=l;k(g[0].length),S(g[1],y,l);continue}var _=C();if(_){O(_),Uo(_.tagName,e)&&k(1);continue}}var b=void 0,w=void 0,x=void 0;if(d>=0){for(w=e.slice(d);!(Fo.test(w)||Lo.test(w)||Do.test(w)||Io.test(w)||(x=w.indexOf("<",1))<0);)d+=x,w=e.slice(d);b=e.substring(0,d)}d<0&&(b=e),b&&k(b.length),t.chars&&b&&t.chars(b,l-b.length,l)}if(e===n){t.chars&&t.chars(e);break}}function k(t){l+=t,e=e.substring(t)}function C(){var t=e.match(Lo);if(t){var n,i,r={tagName:t[1],attrs:[],start:l};for(k(t[0].length);!(n=e.match(jo))&&(i=e.match($o)||e.match(To));)i.start=l,k(i[0].length),i.end=l,r.attrs.push(i);if(n)return r.unarySlash=n[1],k(n[0].length),r.end=l,r}}function O(e){var n=e.tagName,l=e.unarySlash;o&&("p"===i&&Ao(n)&&S(i),s(n)&&i===n&&S(n));for(var u=a(n)||!!l,c=e.attrs.length,f=new Array(c),p=0;p<c;p++){var d=e.attrs[p],h=d[3]||d[4]||d[5]||"",v="a"===n&&"href"===d[1]?t.shouldDecodeNewlinesForHref:t.shouldDecodeNewlines;f[p]={name:d[1],value:Ho(h,v)}}u||(r.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:f,start:e.start,end:e.end}),i=n),t.start&&t.start(n,f,u,e.start,e.end)}function S(e,n,o){var a,s;if(null==n&&(n=l),null==o&&(o=l),e)for(s=e.toLowerCase(),a=r.length-1;a>=0&&r[a].lowerCasedTag!==s;a--);else a=0;if(a>=0){for(var u=r.length-1;u>=a;u--)t.end&&t.end(r[u].tag,n,o);r.length=a,i=a&&r[a-1].tag}else"br"===s?t.start&&t.start(e,[],!0,n,o):"p"===s&&(t.start&&t.start(e,[],!1,n,o),t.end&&t.end(e,n,o))}S()}(e,{warn:Qo,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,outputSourceRange:t.outputSourceRange,start:function(e,n,a,s,f){var p=r&&r.ns||Yo(e);Z&&"svg"===p&&(n=function(e){for(var t=[],n=0;n<e.length;n++){var i=e[n];xa.test(i.name)||(i.name=i.name.replace(ka,""),t.push(i))}return t}(n));var d,h=ha(e,n,r);p&&(h.ns=p),"style"!==(d=h).tag&&("script"!==d.tag||d.attrsMap.type&&"text/javascript"!==d.attrsMap.type)||re()||(h.forbidden=!0);for(var v=0;v<Wo.length;v++)h=Wo[v](h,t)||h;l||(!function(e){null!=Ri(e,"v-pre")&&(e.pre=!0)}(h),h.pre&&(l=!0)),Xo(h.tag)&&(u=!0),l?function(e){var t=e.attrsList,n=t.length;if(n)for(var i=e.attrs=new Array(n),r=0;r<n;r++)i[r]={name:t[r].name,value:JSON.stringify(t[r].value)},null!=t[r].start&&(i[r].start=t[r].start,i[r].end=t[r].end);else e.pre||(e.plain=!0)}(h):h.processed||(ga(h),function(e){var t=Ri(e,"v-if");if(t)e.if=t,ya(e,{exp:t,block:e});else{null!=Ri(e,"v-else")&&(e.else=!0);var n=Ri(e,"v-else-if");n&&(e.elseif=n)}}(h),function(e){null!=Ri(e,"v-once")&&(e.once=!0)}(h)),i||(i=h),a?c(h):(r=h,o.push(h))},end:function(e,t,n){var i=o[o.length-1];o.length-=1,r=o[o.length-1],c(i)},chars:function(e,t,n){if(r&&(!Z||"textarea"!==r.tag||r.attrsMap.placeholder!==e)){var i,o,c,f=r.children;if(e=u||e.trim()?"script"===(i=r).tag||"style"===i.tag?e:pa(e):f.length?s?"condense"===s&&ca.test(e)?"":" ":a?" ":"":"")u||"condense"!==s||(e=e.replace(fa," ")),!l&&" "!==e&&(o=function(e,t){var n=t?bo(t):yo;if(n.test(e)){for(var i,r,o,a=[],s=[],l=n.lastIndex=0;i=n.exec(e);){(r=i.index)>l&&(s.push(o=e.slice(l,r)),a.push(JSON.stringify(o)));var u=Li(i[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),l=r+i[0].length}return l<e.length&&(s.push(o=e.slice(l)),a.push(JSON.stringify(o))),{expression:a.join("+"),tokens:s}}}(e,Ko))?c={type:2,expression:o.expression,tokens:o.tokens,text:e}:" "===e&&f.length&&" "===f[f.length-1].text||(c={type:3,text:e}),c&&f.push(c)}},comment:function(e,t,n){if(r){var i={type:3,text:e,isComment:!0};0,r.children.push(i)}}}),i}function ma(e,t){var n;!function(e){var t=zi(e,"key");if(t){e.key=t}}(e),e.plain=!e.key&&!e.scopedSlots&&!e.attrsList.length,function(e){var t=zi(e,"ref");t&&(e.ref=t,e.refInFor=function(e){var t=e;for(;t;){if(void 0!==t.for)return!0;t=t.parent}return!1}(e))}(e),function(e){var t;"template"===e.tag?(t=Ri(e,"scope"),e.slotScope=t||Ri(e,"slot-scope")):(t=Ri(e,"slot-scope"))&&(e.slotScope=t);var n=zi(e,"slot");n&&(e.slotTarget='""'===n?'"default"':n,e.slotTargetDynamic=!(!e.attrsMap[":slot"]&&!e.attrsMap["v-bind:slot"]),"template"===e.tag||e.slotScope||Ii(e,"slot",n,function(e,t){return e.rawAttrsMap[":"+t]||e.rawAttrsMap["v-bind:"+t]||e.rawAttrsMap[t]}(e,"slot")));if("template"===e.tag){var i=Ui(e,ua);if(i){0;var r=_a(i),o=r.name,a=r.dynamic;e.slotTarget=o,e.slotTargetDynamic=a,e.slotScope=i.value||da}}else{var s=Ui(e,ua);if(s){0;var l=e.scopedSlots||(e.scopedSlots={}),u=_a(s),c=u.name,f=u.dynamic,p=l[c]=ha("template",[],e);p.slotTarget=c,p.slotTargetDynamic=f,p.children=e.children.filter((function(e){if(!e.slotScope)return e.parent=p,!0})),p.slotScope=s.value||da,e.children=[],e.plain=!1}}}(e),"slot"===(n=e).tag&&(n.slotName=zi(n,"name")),function(e){var t;(t=zi(e,"is"))&&(e.component=t);null!=Ri(e,"inline-template")&&(e.inlineTemplate=!0)}(e);for(var i=0;i<Jo.length;i++)e=Jo[i](e,t)||e;return function(e){var t,n,i,r,o,a,s,l,u=e.attrsList;for(t=0,n=u.length;t<n;t++){if(i=r=u[t].name,o=u[t].value,ta.test(i))if(e.hasBindings=!0,(a=ba(i.replace(ta,"")))&&(i=i.replace(la,"")),sa.test(i))i=i.replace(sa,""),o=Li(o),(l=oa.test(i))&&(i=i.slice(1,-1)),a&&(a.prop&&!l&&"innerHtml"===(i=x(i))&&(i="innerHTML"),a.camel&&!l&&(i=x(i)),a.sync&&(s=Ki(o,"$event"),l?Bi(e,'"update:"+('+i+")",s,null,!1,0,u[t],!0):(Bi(e,"update:"+x(i),s,null,!1,0,u[t]),O(i)!==x(i)&&Bi(e,"update:"+O(i),s,null,!1,0,u[t])))),a&&a.prop||!e.component&&Go(e.tag,e.attrsMap.type,i)?Di(e,i,o,u[t],l):Ii(e,i,o,u[t],l);else if(ea.test(i))i=i.replace(ea,""),(l=oa.test(i))&&(i=i.slice(1,-1)),Bi(e,i,o,a,!1,0,u[t],l);else{var c=(i=i.replace(ta,"")).match(aa),f=c&&c[1];l=!1,f&&(i=i.slice(0,-(f.length+1)),oa.test(f)&&(f=f.slice(1,-1),l=!0)),Ni(e,i,r,o,f,l,a,u[t])}else Ii(e,i,JSON.stringify(o),u[t]),!e.component&&"muted"===i&&Go(e.tag,e.attrsMap.type,i)&&Di(e,i,"true",u[t])}}(e),e}function ga(e){var t;if(t=Ri(e,"v-for")){var n=function(e){var t=e.match(na);if(!t)return;var n={};n.for=t[2].trim();var i=t[1].trim().replace(ra,""),r=i.match(ia);r?(n.alias=i.replace(ia,"").trim(),n.iterator1=r[1].trim(),r[2]&&(n.iterator2=r[2].trim())):n.alias=i;return n}(t);n&&T(e,n)}}function ya(e,t){e.ifConditions||(e.ifConditions=[]),e.ifConditions.push(t)}function _a(e){var t=e.name.replace(ua,"");return t||"#"!==e.name[0]&&(t="default"),oa.test(t)?{name:t.slice(1,-1),dynamic:!0}:{name:'"'+t+'"',dynamic:!1}}function ba(e){var t=e.match(la);if(t){var n={};return t.forEach((function(e){n[e.slice(1)]=!0})),n}}function wa(e){for(var t={},n=0,i=e.length;n<i;n++)t[e[n].name]=e[n].value;return t}var xa=/^xmlns:NS\d+/,ka=/^NS\d+:/;function Ca(e){return ha(e.tag,e.attrsList.slice(),e.parent)}var Oa=[wo,ko,{preTransformNode:function(e,t){if("input"===e.tag){var n,i=e.attrsMap;if(!i["v-model"])return;if((i[":type"]||i["v-bind:type"])&&(n=zi(e,"type")),i.type||n||!i["v-bind"]||(n="("+i["v-bind"]+").type"),n){var r=Ri(e,"v-if",!0),o=r?"&&("+r+")":"",a=null!=Ri(e,"v-else",!0),s=Ri(e,"v-else-if",!0),l=Ca(e);ga(l),Mi(l,"type","checkbox"),ma(l,t),l.processed=!0,l.if="("+n+")==='checkbox'"+o,ya(l,{exp:l.if,block:l});var u=Ca(e);Ri(u,"v-for",!0),Mi(u,"type","radio"),ma(u,t),ya(l,{exp:"("+n+")==='radio'"+o,block:u});var c=Ca(e);return Ri(c,"v-for",!0),Mi(c,":type",n),ma(c,t),ya(l,{exp:r,block:c}),a?l.else=!0:s&&(l.elseif=s),l}}}}];var Sa,Aa,Ta={expectHTML:!0,modules:Oa,directives:{model:function(e,t,n){n;var i=t.value,r=t.modifiers,o=e.tag,a=e.attrsMap.type;if(e.component)return Qi(e,i,r),!1;if("select"===o)!function(e,t,n){var i='var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return '+(n&&n.number?"_n(val)":"val")+"});";i=i+" "+Ki(t,"$event.target.multiple ? $$selectedVal : $$selectedVal[0]"),Bi(e,"change",i,null,!0)}(e,i,r);else if("input"===o&&"checkbox"===a)!function(e,t,n){var i=n&&n.number,r=zi(e,"value")||"null",o=zi(e,"true-value")||"true",a=zi(e,"false-value")||"false";Di(e,"checked","Array.isArray("+t+")?_i("+t+","+r+")>-1"+("true"===o?":("+t+")":":_q("+t+","+o+")")),Bi(e,"change","var $$a="+t+",$$el=$event.target,$$c=$$el.checked?("+o+"):("+a+");if(Array.isArray($$a)){var $$v="+(i?"_n("+r+")":r)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Ki(t,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Ki(t,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Ki(t,"$$c")+"}",null,!0)}(e,i,r);else if("input"===o&&"radio"===a)!function(e,t,n){var i=n&&n.number,r=zi(e,"value")||"null";Di(e,"checked","_q("+t+","+(r=i?"_n("+r+")":r)+")"),Bi(e,"change",Ki(t,r),null,!0)}(e,i,r);else if("input"===o||"textarea"===o)!function(e,t,n){var i=e.attrsMap.type;0;var r=n||{},o=r.lazy,a=r.number,s=r.trim,l=!o&&"range"!==i,u=o?"change":"range"===i?er:"input",c="$event.target.value";s&&(c="$event.target.value.trim()");a&&(c="_n("+c+")");var f=Ki(t,c);l&&(f="if($event.target.composing)return;"+f);Di(e,"value","("+t+")"),Bi(e,u,f,null,!0),(s||a)&&Bi(e,"blur","$forceUpdate()")}(e,i,r);else{if(!N.isReservedTag(o))return Qi(e,i,r),!1}return!0},text:function(e,t){t.value&&Di(e,"textContent","_s("+t.value+")",t)},html:function(e,t){t.value&&Di(e,"innerHTML","_s("+t.value+")",t)}},isPreTag:function(e){return"pre"===e},isUnaryTag:Oo,mustUseProp:Nn,canBeLeftOpenTag:So,isReservedTag:ei,getTagNamespace:ti,staticKeys:function(e){return e.reduce((function(e,t){return e.concat(t.staticKeys||[])}),[]).join(",")}(Oa)},$a=b((function(e){return h("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(e?","+e:""))}));function qa(e,t){e&&(Sa=$a(t.staticKeys||""),Aa=t.isReservedTag||E,Ea(e),La(e,!1))}function Ea(e){if(e.static=function(e){if(2===e.type)return!1;if(3===e.type)return!0;return!(!e.pre&&(e.hasBindings||e.if||e.for||v(e.tag)||!Aa(e.tag)||function(e){for(;e.parent;){if("template"!==(e=e.parent).tag)return!1;if(e.for)return!0}return!1}(e)||!Object.keys(e).every(Sa)))}(e),1===e.type){if(!Aa(e.tag)&&"slot"!==e.tag&&null==e.attrsMap["inline-template"])return;for(var t=0,n=e.children.length;t<n;t++){var i=e.children[t];Ea(i),i.static||(e.static=!1)}if(e.ifConditions)for(var r=1,o=e.ifConditions.length;r<o;r++){var a=e.ifConditions[r].block;Ea(a),a.static||(e.static=!1)}}}function La(e,t){if(1===e.type){if((e.static||e.once)&&(e.staticInFor=t),e.static&&e.children.length&&(1!==e.children.length||3!==e.children[0].type))return void(e.staticRoot=!0);if(e.staticRoot=!1,e.children)for(var n=0,i=e.children.length;n<i;n++)La(e.children[n],t||!!e.for);if(e.ifConditions)for(var r=1,o=e.ifConditions.length;r<o;r++)La(e.ifConditions[r].block,t)}}var ja=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,Fa=/\([^)]*?\);*$/,Pa=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,Da={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},Ia={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Ma=function(e){return"if("+e+")return null;"},Na={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Ma("$event.target !== $event.currentTarget"),ctrl:Ma("!$event.ctrlKey"),shift:Ma("!$event.shiftKey"),alt:Ma("!$event.altKey"),meta:Ma("!$event.metaKey"),left:Ma("'button' in $event && $event.button !== 0"),middle:Ma("'button' in $event && $event.button !== 1"),right:Ma("'button' in $event && $event.button !== 2")};function Va(e,t){var n=t?"nativeOn:":"on:",i="",r="";for(var o in e){var a=Ba(e[o]);e[o]&&e[o].dynamic?r+=o+","+a+",":i+='"'+o+'":'+a+","}return i="{"+i.slice(0,-1)+"}",r?n+"_d("+i+",["+r.slice(0,-1)+"])":n+i}function Ba(e){if(!e)return"function(){}";if(Array.isArray(e))return"["+e.map((function(e){return Ba(e)})).join(",")+"]";var t=Pa.test(e.value),n=ja.test(e.value),i=Pa.test(e.value.replace(Fa,""));if(e.modifiers){var r="",o="",a=[];for(var s in e.modifiers)if(Na[s])o+=Na[s],Da[s]&&a.push(s);else if("exact"===s){var l=e.modifiers;o+=Ma(["ctrl","shift","alt","meta"].filter((function(e){return!l[e]})).map((function(e){return"$event."+e+"Key"})).join("||"))}else a.push(s);return a.length&&(r+=function(e){return"if(!$event.type.indexOf('key')&&"+e.map(za).join("&&")+")return null;"}(a)),o&&(r+=o),"function($event){"+r+(t?"return "+e.value+".apply(null, arguments)":n?"return ("+e.value+").apply(null, arguments)":i?"return "+e.value:e.value)+"}"}return t||n?e.value:"function($event){"+(i?"return "+e.value:e.value)+"}"}function za(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=Da[e],i=Ia[e];return"_k($event.keyCode,"+JSON.stringify(e)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(i)+")"}var Ra={on:function(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}},bind:function(e,t){e.wrapData=function(n){return"_b("+n+",'"+e.tag+"',"+t.value+","+(t.modifiers&&t.modifiers.prop?"true":"false")+(t.modifiers&&t.modifiers.sync?",true":"")+")"}},cloak:q},Ua=function(e){this.options=e,this.warn=e.warn||Fi,this.transforms=Pi(e.modules,"transformCode"),this.dataGenFns=Pi(e.modules,"genData"),this.directives=T(T({},Ra),e.directives);var t=e.isReservedTag||E;this.maybeComponent=function(e){return!!e.component||!t(e.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Ha(e,t){var n=new Ua(t);return{render:"with(this){return "+(e?"script"===e.tag?"null":Qa(e,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function Qa(e,t){if(e.parent&&(e.pre=e.pre||e.parent.pre),e.staticRoot&&!e.staticProcessed)return Ka(e,t);if(e.once&&!e.onceProcessed)return Ja(e,t);if(e.for&&!e.forProcessed)return Xa(e,t);if(e.if&&!e.ifProcessed)return Wa(e,t);if("template"!==e.tag||e.slotTarget||t.pre){if("slot"===e.tag)return function(e,t){var n=e.slotName||'"default"',i=ts(e,t),r="_t("+n+(i?",function(){return "+i+"}":""),o=e.attrs||e.dynamicAttrs?rs((e.attrs||[]).concat(e.dynamicAttrs||[]).map((function(e){return{name:x(e.name),value:e.value,dynamic:e.dynamic}}))):null,a=e.attrsMap["v-bind"];!o&&!a||i||(r+=",null");o&&(r+=","+o);a&&(r+=(o?"":",null")+","+a);return r+")"}(e,t);var n;if(e.component)n=function(e,t,n){var i=t.inlineTemplate?null:ts(t,n,!0);return"_c("+e+","+Ga(t,n)+(i?","+i:"")+")"}(e.component,e,t);else{var i;(!e.plain||e.pre&&t.maybeComponent(e))&&(i=Ga(e,t));var r=e.inlineTemplate?null:ts(e,t,!0);n="_c('"+e.tag+"'"+(i?","+i:"")+(r?","+r:"")+")"}for(var o=0;o<t.transforms.length;o++)n=t.transforms[o](e,n);return n}return ts(e,t)||"void 0"}function Ka(e,t){e.staticProcessed=!0;var n=t.pre;return e.pre&&(t.pre=e.pre),t.staticRenderFns.push("with(this){return "+Qa(e,t)+"}"),t.pre=n,"_m("+(t.staticRenderFns.length-1)+(e.staticInFor?",true":"")+")"}function Ja(e,t){if(e.onceProcessed=!0,e.if&&!e.ifProcessed)return Wa(e,t);if(e.staticInFor){for(var n="",i=e.parent;i;){if(i.for){n=i.key;break}i=i.parent}return n?"_o("+Qa(e,t)+","+t.onceId+++","+n+")":Qa(e,t)}return Ka(e,t)}function Wa(e,t,n,i){return e.ifProcessed=!0,Za(e.ifConditions.slice(),t,n,i)}function Za(e,t,n,i){if(!e.length)return i||"_e()";var r=e.shift();return r.exp?"("+r.exp+")?"+o(r.block)+":"+Za(e,t,n,i):""+o(r.block);function o(e){return n?n(e,t):e.once?Ja(e,t):Qa(e,t)}}function Xa(e,t,n,i){var r=e.for,o=e.alias,a=e.iterator1?","+e.iterator1:"",s=e.iterator2?","+e.iterator2:"";return e.forProcessed=!0,(i||"_l")+"(("+r+"),function("+o+a+s+"){return "+(n||Qa)(e,t)+"})"}function Ga(e,t){var n="{",i=function(e,t){var n=e.directives;if(!n)return;var i,r,o,a,s="directives:[",l=!1;for(i=0,r=n.length;i<r;i++){o=n[i],a=!0;var u=t.directives[o.name];u&&(a=!!u(e,o,t.warn)),a&&(l=!0,s+='{name:"'+o.name+'",rawName:"'+o.rawName+'"'+(o.value?",value:("+o.value+"),expression:"+JSON.stringify(o.value):"")+(o.arg?",arg:"+(o.isDynamicArg?o.arg:'"'+o.arg+'"'):"")+(o.modifiers?",modifiers:"+JSON.stringify(o.modifiers):"")+"},")}if(l)return s.slice(0,-1)+"]"}(e,t);i&&(n+=i+","),e.key&&(n+="key:"+e.key+","),e.ref&&(n+="ref:"+e.ref+","),e.refInFor&&(n+="refInFor:true,"),e.pre&&(n+="pre:true,"),e.component&&(n+='tag:"'+e.tag+'",');for(var r=0;r<t.dataGenFns.length;r++)n+=t.dataGenFns[r](e);if(e.attrs&&(n+="attrs:"+rs(e.attrs)+","),e.props&&(n+="domProps:"+rs(e.props)+","),e.events&&(n+=Va(e.events,!1)+","),e.nativeEvents&&(n+=Va(e.nativeEvents,!0)+","),e.slotTarget&&!e.slotScope&&(n+="slot:"+e.slotTarget+","),e.scopedSlots&&(n+=function(e,t,n){var i=e.for||Object.keys(t).some((function(e){var n=t[e];return n.slotTargetDynamic||n.if||n.for||Ya(n)})),r=!!e.if;if(!i)for(var o=e.parent;o;){if(o.slotScope&&o.slotScope!==da||o.for){i=!0;break}o.if&&(r=!0),o=o.parent}var a=Object.keys(t).map((function(e){return es(t[e],n)})).join(",");return"scopedSlots:_u(["+a+"]"+(i?",null,true":"")+(!i&&r?",null,false,"+function(e){var t=5381,n=e.length;for(;n;)t=33*t^e.charCodeAt(--n);return t>>>0}(a):"")+")"}(e,e.scopedSlots,t)+","),e.model&&(n+="model:{value:"+e.model.value+",callback:"+e.model.callback+",expression:"+e.model.expression+"},"),e.inlineTemplate){var o=function(e,t){var n=e.children[0];0;if(n&&1===n.type){var i=Ha(n,t.options);return"inlineTemplate:{render:function(){"+i.render+"},staticRenderFns:["+i.staticRenderFns.map((function(e){return"function(){"+e+"}"})).join(",")+"]}"}}(e,t);o&&(n+=o+",")}return n=n.replace(/,$/,"")+"}",e.dynamicAttrs&&(n="_b("+n+',"'+e.tag+'",'+rs(e.dynamicAttrs)+")"),e.wrapData&&(n=e.wrapData(n)),e.wrapListeners&&(n=e.wrapListeners(n)),n}function Ya(e){return 1===e.type&&("slot"===e.tag||e.children.some(Ya))}function es(e,t){var n=e.attrsMap["slot-scope"];if(e.if&&!e.ifProcessed&&!n)return Wa(e,t,es,"null");if(e.for&&!e.forProcessed)return Xa(e,t,es);var i=e.slotScope===da?"":String(e.slotScope),r="function("+i+"){return "+("template"===e.tag?e.if&&n?"("+e.if+")?"+(ts(e,t)||"undefined")+":undefined":ts(e,t)||"undefined":Qa(e,t))+"}",o=i?"":",proxy:true";return"{key:"+(e.slotTarget||'"default"')+",fn:"+r+o+"}"}function ts(e,t,n,i,r){var o=e.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag){var s=n?t.maybeComponent(a)?",1":",0":"";return""+(i||Qa)(a,t)+s}var l=n?function(e,t){for(var n=0,i=0;i<e.length;i++){var r=e[i];if(1===r.type){if(ns(r)||r.ifConditions&&r.ifConditions.some((function(e){return ns(e.block)}))){n=2;break}(t(r)||r.ifConditions&&r.ifConditions.some((function(e){return t(e.block)})))&&(n=1)}}return n}(o,t.maybeComponent):0,u=r||is;return"["+o.map((function(e){return u(e,t)})).join(",")+"]"+(l?","+l:"")}}function ns(e){return void 0!==e.for||"template"===e.tag||"slot"===e.tag}function is(e,t){return 1===e.type?Qa(e,t):3===e.type&&e.isComment?function(e){return"_e("+JSON.stringify(e.text)+")"}(e):"_v("+(2===(n=e).type?n.expression:os(JSON.stringify(n.text)))+")";var n}function rs(e){for(var t="",n="",i=0;i<e.length;i++){var r=e[i],o=os(r.value);r.dynamic?n+=r.name+","+o+",":t+='"'+r.name+'":'+o+","}return t="{"+t.slice(0,-1)+"}",n?"_d("+t+",["+n.slice(0,-1)+"])":t}function os(e){return e.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");function as(e,t){try{return new Function(e)}catch(n){return t.push({err:n,code:e}),q}}function ss(e){var t=Object.create(null);return function(n,i,r){(i=T({},i)).warn;delete i.warn;var o=i.delimiters?String(i.delimiters)+n:n;if(t[o])return t[o];var a=e(n,i);var s={},l=[];return s.render=as(a.render,l),s.staticRenderFns=a.staticRenderFns.map((function(e){return as(e,l)})),t[o]=s}}var ls,us,cs=(ls=function(e,t){var n=va(e.trim(),t);!1!==t.optimize&&qa(n,t);var i=Ha(n,t);return{ast:n,render:i.render,staticRenderFns:i.staticRenderFns}},function(e){function t(t,n){var i=Object.create(e),r=[],o=[];if(n)for(var a in n.modules&&(i.modules=(e.modules||[]).concat(n.modules)),n.directives&&(i.directives=T(Object.create(e.directives||null),n.directives)),n)"modules"!==a&&"directives"!==a&&(i[a]=n[a]);i.warn=function(e,t,n){(n?o:r).push(e)};var s=ls(t.trim(),i);return s.errors=r,s.tips=o,s}return{compile:t,compileToFunctions:ss(t)}})(Ta),fs=(cs.compile,cs.compileToFunctions);function ps(e){return(us=us||document.createElement("div")).innerHTML=e?'<a href="\n"/>':'<div a="\n"/>',us.innerHTML.indexOf(" ")>0}var ds=!!Q&&ps(!1),hs=!!Q&&ps(!0),vs=b((function(e){var t=ri(e);return t&&t.innerHTML})),ms=$n.prototype.$mount;$n.prototype.$mount=function(e,t){if((e=e&&ri(e))===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var i=n.template;if(i)if("string"==typeof i)"#"===i.charAt(0)&&(i=vs(i));else{if(!i.nodeType)return this;i=i.innerHTML}else e&&(i=function(e){if(e.outerHTML)return e.outerHTML;var t=document.createElement("div");return t.appendChild(e.cloneNode(!0)),t.innerHTML}(e));if(i){0;var r=fs(i,{outputSourceRange:!1,shouldDecodeNewlines:ds,shouldDecodeNewlinesForHref:hs,delimiters:n.delimiters,comments:n.comments},this),o=r.render,a=r.staticRenderFns;n.render=o,n.staticRenderFns=a}}return ms.call(this,e,t)},$n.compile=fs;const gs=$n;var ys="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==ys&&ys,_s="URLSearchParams"in ys,bs="Symbol"in ys&&"iterator"in Symbol,ws="FileReader"in ys&&"Blob"in ys&&function(){try{return new Blob,!0}catch(e){return!1}}(),xs="FormData"in ys,ks="ArrayBuffer"in ys;if(ks)var Cs=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],Os=ArrayBuffer.isView||function(e){return e&&Cs.indexOf(Object.prototype.toString.call(e))>-1};function Ss(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(e)||""===e)throw new TypeError('Invalid character in header field name: "'+e+'"');return e.toLowerCase()}function As(e){return"string"!=typeof e&&(e=String(e)),e}function Ts(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return bs&&(t[Symbol.iterator]=function(){return t}),t}function $s(e){this.map={},e instanceof $s?e.forEach((function(e,t){this.append(t,e)}),this):Array.isArray(e)?e.forEach((function(e){this.append(e[0],e[1])}),this):e&&Object.getOwnPropertyNames(e).forEach((function(t){this.append(t,e[t])}),this)}function qs(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function Es(e){return new Promise((function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}}))}function Ls(e){var t=new FileReader,n=Es(t);return t.readAsArrayBuffer(e),n}function js(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function Fs(){return this.bodyUsed=!1,this._initBody=function(e){var t;this.bodyUsed=this.bodyUsed,this._bodyInit=e,e?"string"==typeof e?this._bodyText=e:ws&&Blob.prototype.isPrototypeOf(e)?this._bodyBlob=e:xs&&FormData.prototype.isPrototypeOf(e)?this._bodyFormData=e:_s&&URLSearchParams.prototype.isPrototypeOf(e)?this._bodyText=e.toString():ks&&ws&&((t=e)&&DataView.prototype.isPrototypeOf(t))?(this._bodyArrayBuffer=js(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):ks&&(ArrayBuffer.prototype.isPrototypeOf(e)||Os(e))?this._bodyArrayBuffer=js(e):this._bodyText=e=Object.prototype.toString.call(e):this._bodyText="",this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):_s&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},ws&&(this.blob=function(){var e=qs(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){if(this._bodyArrayBuffer){var e=qs(this);return e||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}return this.blob().then(Ls)}),this.text=function(){var e,t,n,i=qs(this);if(i)return i;if(this._bodyBlob)return e=this._bodyBlob,t=new FileReader,n=Es(t),t.readAsText(e),n;if(this._bodyArrayBuffer)return Promise.resolve(function(e){for(var t=new Uint8Array(e),n=new Array(t.length),i=0;i<t.length;i++)n[i]=String.fromCharCode(t[i]);return n.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},xs&&(this.formData=function(){return this.text().then(Is)}),this.json=function(){return this.text().then(JSON.parse)},this}$s.prototype.append=function(e,t){e=Ss(e),t=As(t);var n=this.map[e];this.map[e]=n?n+", "+t:t},$s.prototype.delete=function(e){delete this.map[Ss(e)]},$s.prototype.get=function(e){return e=Ss(e),this.has(e)?this.map[e]:null},$s.prototype.has=function(e){return this.map.hasOwnProperty(Ss(e))},$s.prototype.set=function(e,t){this.map[Ss(e)]=As(t)},$s.prototype.forEach=function(e,t){for(var n in this.map)this.map.hasOwnProperty(n)&&e.call(t,this.map[n],n,this)},$s.prototype.keys=function(){var e=[];return this.forEach((function(t,n){e.push(n)})),Ts(e)},$s.prototype.values=function(){var e=[];return this.forEach((function(t){e.push(t)})),Ts(e)},$s.prototype.entries=function(){var e=[];return this.forEach((function(t,n){e.push([n,t])})),Ts(e)},bs&&($s.prototype[Symbol.iterator]=$s.prototype.entries);var Ps=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function Ds(e,t){if(!(this instanceof Ds))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var n,i,r=(t=t||{}).body;if(e instanceof Ds){if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new $s(e.headers)),this.method=e.method,this.mode=e.mode,this.signal=e.signal,r||null==e._bodyInit||(r=e._bodyInit,e.bodyUsed=!0)}else this.url=String(e);if(this.credentials=t.credentials||this.credentials||"same-origin",!t.headers&&this.headers||(this.headers=new $s(t.headers)),this.method=(n=t.method||this.method||"GET",i=n.toUpperCase(),Ps.indexOf(i)>-1?i:n),this.mode=t.mode||this.mode||null,this.signal=t.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&r)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(r),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==t.cache&&"no-cache"!==t.cache)){var o=/([?&])_=[^&]*/;if(o.test(this.url))this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function Is(e){var t=new FormData;return e.trim().split("&").forEach((function(e){if(e){var n=e.split("="),i=n.shift().replace(/\+/g," "),r=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(i),decodeURIComponent(r))}})),t}function Ms(e,t){if(!(this instanceof Ms))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');t||(t={}),this.type="default",this.status=void 0===t.status?200:t.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===t.statusText?"":""+t.statusText,this.headers=new $s(t.headers),this.url=t.url||"",this._initBody(e)}Ds.prototype.clone=function(){return new Ds(this,{body:this._bodyInit})},Fs.call(Ds.prototype),Fs.call(Ms.prototype),Ms.prototype.clone=function(){return new Ms(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new $s(this.headers),url:this.url})},Ms.error=function(){var e=new Ms(null,{status:0,statusText:""});return e.type="error",e};var Ns=[301,302,303,307,308];Ms.redirect=function(e,t){if(-1===Ns.indexOf(t))throw new RangeError("Invalid status code");return new Ms(null,{status:t,headers:{location:e}})};var Vs=ys.DOMException;try{new Vs}catch(e){(Vs=function(e,t){this.message=e,this.name=t;var n=Error(e);this.stack=n.stack}).prototype=Object.create(Error.prototype),Vs.prototype.constructor=Vs}function Bs(e,t){return new Promise((function(n,i){var r=new Ds(e,t);if(r.signal&&r.signal.aborted)return i(new Vs("Aborted","AbortError"));var o=new XMLHttpRequest;function a(){o.abort()}o.onload=function(){var e,t,i={status:o.status,statusText:o.statusText,headers:(e=o.getAllResponseHeaders()||"",t=new $s,e.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(e){return 0===e.indexOf("\n")?e.substr(1,e.length):e})).forEach((function(e){var n=e.split(":"),i=n.shift().trim();if(i){var r=n.join(":").trim();t.append(i,r)}})),t)};i.url="responseURL"in o?o.responseURL:i.headers.get("X-Request-URL");var r="response"in o?o.response:o.responseText;setTimeout((function(){n(new Ms(r,i))}),0)},o.onerror=function(){setTimeout((function(){i(new TypeError("Network request failed"))}),0)},o.ontimeout=function(){setTimeout((function(){i(new TypeError("Network request failed"))}),0)},o.onabort=function(){setTimeout((function(){i(new Vs("Aborted","AbortError"))}),0)},o.open(r.method,function(e){try{return""===e&&ys.location.href?ys.location.href:e}catch(t){return e}}(r.url),!0),"include"===r.credentials?o.withCredentials=!0:"omit"===r.credentials&&(o.withCredentials=!1),"responseType"in o&&(ws?o.responseType="blob":ks&&r.headers.get("Content-Type")&&-1!==r.headers.get("Content-Type").indexOf("application/octet-stream")&&(o.responseType="arraybuffer")),!t||"object"!=typeof t.headers||t.headers instanceof $s?r.headers.forEach((function(e,t){o.setRequestHeader(t,e)})):Object.getOwnPropertyNames(t.headers).forEach((function(e){o.setRequestHeader(e,As(t.headers[e]))})),r.signal&&(r.signal.addEventListener("abort",a),o.onreadystatechange=function(){4===o.readyState&&r.signal.removeEventListener("abort",a)}),o.send(void 0===r._bodyInit?null:r._bodyInit)}))}Bs.polyfill=!0,ys.fetch||(ys.fetch=Bs,ys.Headers=$s,ys.Request=Ds,ys.Response=Ms);function zs(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var Rs=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.enterKey="Enter",this.shiftKey="Shift",this.ok=window.fluent_forms_global_var.i18n.confirm_btn,this.continue=window.fluent_forms_global_var.i18n.continue,this.skip=window.fluent_forms_global_var.i18n.skip_btn,this.pressEnter=window.fluent_forms_global_var.i18n.keyboard_instruction,this.multipleChoiceHelpText=window.fluent_forms_global_var.i18n.multi_select_hint,this.multipleChoiceHelpTextSingle=window.fluent_forms_global_var.i18n.single_select_hint,this.otherPrompt="Other",this.placeholder="Type your answer here...",this.submitText="Submit",this.longTextHelpText=window.fluent_forms_global_var.i18n.long_text_help,this.prev="Prev",this.next="Next",this.percentCompleted=window.fluent_forms_global_var.i18n.progress_text,this.invalidPrompt=window.fluent_forms_global_var.i18n.invalid_prompt,this.thankYouText="Thank you!",this.successText="Your submission has been sent.",this.ariaOk="Press to continue",this.ariaRequired="This step is required",this.ariaPrev="Previous step",this.ariaNext="Next step",this.ariaSubmitText="Press to submit",this.ariaMultipleChoice="Press :letter to select",this.ariaTypeAnswer="Type your answer here",Object.assign(this,t||{})}var t,n,i;return t=e,(n=[{key:"formatString",value:function(e){var t=this;return e.replace(/:(\w+)/g,(function(e,n){return t[n]?'<span class="f-string-em">'+t[n]+"</span>":e}))}}])&&zs(t.prototype,n),i&&zs(t,i),e}();function Us(e){return(Us="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Hs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Qs(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function Ks(e,t,n){return t&&Qs(e.prototype,t),n&&Qs(e,n),e}var Js=Object.freeze({WelcomeScreen:"FlowFormWelcomeScreenType",Date:"FlowFormDateType",Dropdown:"FlowFormDropdownType",DropdownMultiple:"FlowFormDropdownMultipleType",Email:"FlowFormEmailType",LongText:"FlowFormLongTextType",MultipleChoice:"FlowFormMultipleChoiceType",MultiplePictureChoice:"FlowFormMultiplePictureChoiceType",Number:"FlowFormNumberType",Password:"FlowFormPasswordType",Phone:"FlowFormPhoneType",SectionBreak:"FlowFormSectionBreakType",Text:"FlowFormTextType",Url:"FlowFormUrlType",TermsAndCondition:"FlowFormTermsAndConditionType",Rate:"FlowFormRateType"}),Ws=(Object.freeze({label:"",value:"",disabled:!0}),Object.freeze({Date:"##/##/####",DateIso:"####-##-##",PhoneUs:"(###) ###-####"})),Zs=function(){function e(t){Hs(this,e),this.label="",this.value=null,this.selected=!1,this.imageSrc=null,this.imageAlt=null,Object.assign(this,t)}return Ks(e,[{key:"choiceLabel",value:function(){return this.label||this.value}},{key:"choiceValue",value:function(){return null!==this.value?this.value:this.label||this.imageAlt||this.imageSrc}},{key:"toggle",value:function(){this.selected=!this.selected}}]),e}(),Xs=function e(t){Hs(this,e),this.url="",this.text="",this.target="_blank",Object.assign(this,t)},Gs=function(){function e(t){Hs(this,e),this.id=null,this.answer=null,this.answered=!1,this.index=0,this.counter=0,this.options=[],this.description="",this.className="",this.type=null,this.html=null,this.required=!1,this.jump=null,this.placeholder=null,this.mask="",this.multiple=!1,this.allowOther=!1,this.other=null,this.language=null,this.tagline=null,this.title=null,this.subtitle=null,this.content=null,this.inline=!1,this.helpText=null,this.helpTextShow=!0,this.descriptionLink=[],this.min=null,this.max=null,this.nextStepOnAnswer=!1,Object.assign(this,t),this.type===Js.Phone&&(this.mask||(this.mask=Ws.Phone),this.placeholder||(this.placeholder=this.mask)),this.type===Js.Url&&(this.mask=null),this.type!==Js.Date||this.placeholder||(this.placeholder="yyyy-mm-dd"),this.multiple&&"object"!=Us(this.answer)&&(this.answer=[])}return Ks(e,[{key:"getJumpId",value:function(){var e=null;return"function"==typeof this.jump?e=this.jump.call(this):this.jump[this.answer]?e=this.jump[this.answer]:this.jump._other&&(e=this.jump._other),e}},{key:"setAnswer",value:function(e){this.type!==Js.Number||""===e||isNaN(+e)||(e=+e),this.answer=e}},{key:"setIndex",value:function(e){this.id||(this.id="q_"+e),this.index=e}},{key:"setCounter",value:function(e){this.counter=e}},{key:"isMultipleChoiceType",value:function(){return[Js.MultipleChoice,Js.MultiplePictureChoice].includes(this.type)}},{key:"showQuestion",value:function(e){var t=!1;if(this.conditional_logics.status){for(var n=0;n<this.conditional_logics.conditions.length;n++){var i=this.evaluateCondition(this.conditional_logics.conditions[n],e[this.conditional_logics.conditions[n].field]);if("any"===this.conditional_logics.type){if(i){t=!0;break}}else{if(!i){t=!1;break}t=!0}}return t}return!0}},{key:"evaluateCondition",value:function(e,t){return"="==e.operator?"object"==Us(t)?null!==t&&-1!=t.indexOf(e.value):t==e.value:"!="==e.operator?"object"==Us(t)?null!==t&&-1==t.indexOf(e.value):t!=e.value:">"==e.operator?t&&t>Number(e.value):"<"==e.operator?t&&t<Number(e.value):">="==e.operator?t&&t>=Number(e.value):"<="==e.operator?t&&t<=Number(e.value):"startsWith"==e.operator?t.startsWith(e.value):"endsWith"==e.operator?t.endsWith(e.value):"contains"==e.operator?null!==t&&-1!=t.indexOf(e.value):"doNotContains"==e.operator&&(null!==t&&-1==t.indexOf(e.value))}}]),e}(),Ys=!1,el=!1;"undefined"!=typeof navigator&&"undefined"!=typeof document&&(Ys=navigator.userAgent.match(/iphone|ipad|ipod/i)||-1!==navigator.userAgent.indexOf("Mac")&&"ontouchend"in document,el=Ys||navigator.userAgent.match(/android/i));var tl={data:function(){return{isIos:Ys,isMobile:el}}};function nl(e,t,n,i,r,o,a,s){var l,u="function"==typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},u._ssrRegister=l):r&&(l=s?function(){r.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,l):[l]}return{exports:e,options:u}}const il=nl({name:"FlowFormBaseType",props:{language:Rs,question:Gs,active:Boolean,disabled:Boolean,value:[String,Array,Boolean,Number,Object]},mixins:[tl],data:function(){return{dirty:!1,dataValue:null,answer:null,enterPressed:!1,allowedChars:null,alwaysAllowedKeys:["ArrowLeft","ArrowRight","Delete","Backspace"],focused:!1,canReceiveFocus:!1}},mounted:function(){this.question.answer?this.dataValue=this.question.answer:this.question.multiple&&(this.dataValue=[])},methods:{fixAnswer:function(e){return e},getElement:function(){for(var e=this.$refs.input;e&&e.$el;)e=e.$el;return e},setFocus:function(){this.focused=!0},unsetFocus:function(e){this.focused=!1},focus:function(){if(!this.focused){var e=this.getElement();e&&e.focus()}},blur:function(){var e=this.getElement();e&&e.blur()},onKeyDown:function(e){this.enterPressed=!1,clearTimeout(this.timeoutId),e&&("Enter"!==e.key||e.shiftKey||this.unsetFocus(),null!==this.allowedChars&&-1===this.alwaysAllowedKeys.indexOf(e.key)&&-1===this.allowedChars.indexOf(e.key)&&e.preventDefault())},onChange:function(e){this.dirty=!0,this.dataValue=e.target.value,this.onKeyDown(),this.setAnswer(this.dataValue)},onEnter:function(){this._onEnter()},_onEnter:function(){this.enterPressed=!0,this.dataValue=this.fixAnswer(this.dataValue),this.setAnswer(this.dataValue),this.isValid()?this.blur():this.focus()},setAnswer:function(e){this.question.setAnswer(e),this.answer=this.question.answer,this.question.answered=this.isValid(),this.$emit("input",this.answer)},showInvalid:function(){return this.dirty&&this.enterPressed&&!this.isValid()},isValid:function(){return!(this.question.required||this.hasValue||!this.dirty)||!!this.validate()},validate:function(){return!this.question.required||this.hasValue}},computed:{placeholder:function(){return this.question.placeholder||this.language.placeholder},hasValue:function(){if(null!==this.dataValue){var e=this.dataValue;return e.trim?e.trim().length>0:!Array.isArray(e)||e.length>0}return!1}}},undefined,undefined,!1,null,null,null).exports;const rl=nl({extends:il,name:Js.Dropdown,computed:{answerLabel:function(){for(var e=0;e<this.question.options.length;e++){var t=this.question.options[e];if(t.choiceValue()===this.dataValue)return t.choiceLabel()}return this.question.placeholder}},methods:{onKeyDownListener:function(e){"ArrowDown"===e.key||"ArrowUp"===e.key?this.setAnswer(this.dataValue):"Enter"===e.key&&this.hasValue&&(this.focused=!1,this.blur())},onKeyUpListener:function(e){"Enter"===e.key&&this.isValid()&&(e.stopPropagation(),this._onEnter(),this.$emit("next"))}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"faux-form"},[n("select",{ref:"input",attrs:{required:e.question.required},domProps:{value:e.dataValue},on:{change:e.onChange,keydown:e.onKeyDownListener,keyup:e.onKeyUpListener}},[e.question.required?n("option",{attrs:{label:" ",value:"",disabled:"",selected:"",hidden:""}},[e._v(" ")]):e._e(),e._v(" "),e._l(e.question.options,(function(t,i){return n("option",{key:"o"+i,attrs:{disabled:t.disabled},domProps:{value:t.choiceValue()}},[e._v("\n "+e._s(t.choiceLabel())+"\n ")])}))],2),e._v(" "),n("span",[n("span",{staticClass:"f-empty",class:{"f-answered":this.question.answer&&this.question.answered}},[e._v(e._s(e.answerLabel))]),e._v(" "),n("span",{staticClass:"f-arrow-down"},[n("svg",{attrs:{version:"1.1",id:"Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"-163 254.1 284.9 284.9","xml:space":"preserve"}},[n("g",[n("path",{attrs:{d:"M119.1,330.6l-14.3-14.3c-1.9-1.9-4.1-2.9-6.6-2.9c-2.5,0-4.7,1-6.6,2.9L-20.5,428.5l-112.2-112.2c-1.9-1.9-4.1-2.9-6.6-2.9c-2.5,0-4.7,0.9-6.6,2.9l-14.3,14.3c-1.9,1.9-2.9,4.1-2.9,6.6c0,2.5,1,4.7,2.9,6.6l133,133c1.9,1.9,4.1,2.9,6.6,2.9s4.7-1,6.6-2.9l133.1-133c1.9-1.9,2.8-4.1,2.8-6.6C121.9,334.7,121,332.5,119.1,330.6z"}})])])])])])}),[],!1,null,null,null).exports;function ol(e,t,n=!0,i){e=e||"",t=t||"";for(var r=0,o=0,a="";r<t.length&&o<e.length;){var s=i[c=t[r]],l=e[o];s&&!s.escape?(s.pattern.test(l)&&(a+=s.transform?s.transform(l):l,r++),o++):(s&&s.escape&&(c=t[++r]),n&&(a+=c),l===c&&o++,r++)}for(var u="";r<t.length&&n;){var c;if(i[c=t[r]]){u="";break}u+=c,r++}return a+u}function al(e,t,n=!0,i){return Array.isArray(t)?function(e,t,n){return t=t.sort(((e,t)=>e.length-t.length)),function(i,r,o=!0){for(var a=0;a<t.length;){var s=t[a];a++;var l=t[a];if(!(l&&e(i,l,!0,n).length>s.length))return e(i,s,o,n)}return""}}(ol,t,i)(e,t,n,i):ol(e,t,n,i)}var sl=n(5460),ll=n.n(sl);function ul(e){var t=document.createEvent("Event");return t.initEvent(e,!0,!0),t}const cl=nl({name:"TheMask",props:{value:[String,Number],mask:{type:[String,Array],required:!0},masked:{type:Boolean,default:!1},tokens:{type:Object,default:()=>ll()}},directives:{mask:function(e,t){var n=t.value;if((Array.isArray(n)||"string"==typeof n)&&(n={mask:n,tokens:ll()}),"INPUT"!==e.tagName.toLocaleUpperCase()){var i=e.getElementsByTagName("input");if(1!==i.length)throw new Error("v-mask directive requires 1 input, found "+i.length);e=i[0]}e.oninput=function(t){if(t.isTrusted){var i=e.selectionEnd,r=e.value[i-1];for(e.value=al(e.value,n.mask,!0,n.tokens);i<e.value.length&&e.value.charAt(i-1)!==r;)i++;e===document.activeElement&&(e.setSelectionRange(i,i),setTimeout((function(){e.setSelectionRange(i,i)}),0)),e.dispatchEvent(ul("input"))}};var r=al(e.value,n.mask,!0,n.tokens);r!==e.value&&(e.value=r,e.dispatchEvent(ul("input")))}},data(){return{lastValue:null,display:this.value}},watch:{value(e){e!==this.lastValue&&(this.display=e)},masked(){this.refresh(this.display)}},computed:{config(){return{mask:this.mask,tokens:this.tokens,masked:this.masked}}},methods:{onInput(e){e.isTrusted||this.refresh(e.target.value)},refresh(e){this.display=e,(e=al(e,this.mask,this.masked,this.tokens))!==this.lastValue&&(this.lastValue=e,this.$emit("input",e))}}},(function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{directives:[{name:"mask",rawName:"v-mask",value:e.config,expression:"config"}],attrs:{type:"text"},domProps:{value:e.display},on:{input:e.onInput}})}),[],!1,null,null,null).exports;const fl=nl({extends:il,name:Js.Text,components:{TheMask:cl},data:function(){return{inputType:"text",canReceiveFocus:!0,tokens:{"*":{pattern:/[0-9a-zA-Z]/},0:{pattern:/\d/},9:{pattern:/\d/,optional:!0},"#":{pattern:/\d/,recursive:!0},A:{pattern:/[a-zA-Z0-9]/},S:{pattern:/[a-zA-Z]/}}}},methods:{validate:function(){return(!this.question.mask||!this.hasValue||this.dataValue.length===this.question.mask.length)&&(!this.question.required||this.hasValue)}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{attrs:{"data-placeholder":"date"===e.inputType?e.placeholder:null}},[e.question.mask?n("the-mask",{ref:"input",attrs:{mask:e.question.mask,masked:!1,tokens:e.tokens,type:e.inputType,value:e.value,required:e.question.required,placeholder:e.placeholder,min:e.question.min,max:e.question.max},on:{change:e.onChange},nativeOn:{keydown:function(t){return e.onKeyDown.apply(null,arguments)},keyup:[function(t){return e.onChange.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.onEnter.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:(t.preventDefault(),e.onEnter.apply(null,arguments))}],focus:function(t){return e.setFocus.apply(null,arguments)},blur:function(t){return e.unsetFocus.apply(null,arguments)}}}):n("input",{ref:"input",attrs:{type:e.inputType,required:e.question.required,min:e.question.min,max:e.question.max,placeholder:e.placeholder},domProps:{value:e.value},on:{keydown:e.onKeyDown,keyup:[e.onChange,function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.onEnter.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:(t.preventDefault(),e.onEnter.apply(null,arguments))}],focus:e.setFocus,blur:e.unsetFocus,change:e.onChange}})],1)}),[],!1,null,null,null).exports;const pl=nl({extends:fl,name:Js.Email,data:function(){return{inputType:"email"}},methods:{validate:function(){if(this.hasValue){return/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(this.dataValue)}return!this.question.required}}},undefined,undefined,!1,null,null,null).exports;const dl=nl({name:"TextareaAutosize",props:{value:{type:[String,Number],default:""},autosize:{type:Boolean,default:!0},minHeight:{type:[Number],default:null},maxHeight:{type:[Number],default:null},important:{type:[Boolean,Array],default:!1}},data:()=>({val:null,maxHeightScroll:!1,height:"auto"}),computed:{computedStyles(){return this.autosize?{resize:this.isResizeImportant?"none !important":"none",height:this.height,overflow:this.maxHeightScroll?"auto":this.isOverflowImportant?"hidden !important":"hidden"}:{}},isResizeImportant(){const e=this.important;return!0===e||Array.isArray(e)&&e.includes("resize")},isOverflowImportant(){const e=this.important;return!0===e||Array.isArray(e)&&e.includes("overflow")},isHeightImportant(){const e=this.important;return!0===e||Array.isArray(e)&&e.includes("height")}},watch:{value(e){this.val=e},val(e){this.$nextTick(this.resize),this.$emit("input",e)},minHeight(){this.$nextTick(this.resize)},maxHeight(){this.$nextTick(this.resize)},autosize(e){e&&this.resize()}},methods:{resize(){const e=this.isHeightImportant?"important":"";return this.height="auto"+(e?" !important":""),this.$nextTick((()=>{let t=this.$el.scrollHeight+1;this.minHeight&&(t=t<this.minHeight?this.minHeight:t),this.maxHeight&&(t>this.maxHeight?(t=this.maxHeight,this.maxHeightScroll=!0):this.maxHeightScroll=!1);const n=t+"px";this.height=`${n}${e?" !important":""}`})),this}},created(){this.val=this.value},mounted(){this.resize()}},(function(){var e=this,t=e.$createElement;return(e._self._c||t)("textarea",{directives:[{name:"model",rawName:"v-model",value:e.val,expression:"val"}],style:e.computedStyles,domProps:{value:e.val},on:{focus:e.resize,input:function(t){t.target.composing||(e.val=t.target.value)}}})}),[],!1,null,null,null).exports;const hl=nl({extends:il,name:Js.LongText,components:{TextareaAutosize:dl},data:function(){return{canReceiveFocus:!0}},mounted:function(){window.addEventListener("resize",this.onResizeListener)},beforeDestroy:function(){window.removeEventListener("resize",this.onResizeListener)},methods:{onResizeListener:function(){this.$refs.input.resize()},unsetFocus:function(e){!e&&this.isMobile||(this.focused=!1)},onEnterDown:function(e){this.isMobile||e.preventDefault()},onEnter:function(){this.isMobile||this._onEnter()}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",[n("textarea-autosize",{ref:"input",attrs:{rows:"1",value:e.value,required:e.question.required,placeholder:e.placeholder},nativeOn:{keydown:[function(t){return e.onKeyDown.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.onEnterDown.apply(null,arguments)}],keyup:[function(t){return e.onChange.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.onEnter.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:(t.preventDefault(),e.onEnter.apply(null,arguments))}],focus:function(t){return e.setFocus.apply(null,arguments)},blur:function(t){return e.unsetFocus.apply(null,arguments)}}})],1)}),[],!1,null,null,null).exports;var vl=n(6073),ml=n.n(vl);function gl(e){return(gl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}const yl=nl({extends:il,name:Js.MultipleChoice,data:function(){return{editingOther:!1,hasImages:!1}},mounted:function(){var e=this.question.answer;this.question.multiple?"object"!=gl(this.dataValue)?this.dataValue=[]:this.question.answer.length&&ml()(this.question.options,(function(t){-1!==e.indexOf(t.value)&&(t.selected=!0)})):this.question.answer&&ml()(this.question.options,(function(t){t.value==e&&(t.selected=!0)})),this.addKeyListener()},beforeDestroy:function(){this.removeKeyListener()},watch:{active:function(e){e?(this.addKeyListener(),this.question.multiple&&this.question.answered&&(this.enterPressed=!1)):this.removeKeyListener()}},methods:{addKeyListener:function(){this.removeKeyListener(),document.addEventListener("keyup",this.onKeyListener)},removeKeyListener:function(){document.removeEventListener("keyup",this.onKeyListener)},onKeyListener:function(e){if(this.active&&!this.editingOther&&e.key&&1===e.key.length){var t=e.key.toUpperCase().charCodeAt(0);if(t>=65&&t<=90){var n=t-65;if(n>-1){var i=this.question.options[n];i?this.toggleAnswer(i):this.question.allowOther&&n===this.question.options.length&&this.startEditOther()}}}},getLabel:function(e){return this.language.ariaMultipleChoice.replace(":letter",this.getToggleKey(e))},getToggleKey:function(e){var t=65+e;return t<=90?String.fromCharCode(t):""},toggleAnswer:function(e){if(!this.question.multiple){this.question.allowOther&&(this.question.other=this.dataValue=null,this.setAnswer(this.dataValue));for(var t=0;t<this.question.options.length;t++){var n=this.question.options[t];n.selected&&this._toggleAnswer(n)}}this._toggleAnswer(e)},_toggleAnswer:function(e){if(e.toggle(),this.question.multiple)this.enterPressed=!1,e.selected?this.dataValue.push(e.choiceValue()):this._removeAnswer(e.choiceValue());else{var t=e.selected;this.dataValue=t?e.value:null}this.isValid()&&this.question.nextStepOnAnswer&&!this.question.multiple&&!this.disabled&&this.$emit("next"),this.setAnswer(this.dataValue)},_removeAnswer:function(e){var t=this.dataValue.indexOf(e);-1!==t&&this.dataValue.splice(t,1)},startEditOther:function(){var e=this;this.editingOther=!0,this.enterPressed=!1,this.$nextTick((function(){e.$refs.otherInput.focus()}))},onChangeOther:function(){if(this.editingOther){var e=[],t=this;this.question.options.forEach((function(n){n.selected&&(t.question.multiple?e.push(n.choiceValue()):n.toggle())})),this.question.other&&this.question.multiple?e.push(this.question.other):this.question.multiple||(e=this.question.other),this.dataValue=e,this.setAnswer(this.dataValue)}},stopEditOther:function(){this.editingOther=!1}},computed:{hasValue:function(){return!!this.question.options.filter((function(e){return e.selected})).length||!!this.question.allowOther&&(this.question.other&&this.question.other.trim().length>0)}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"f-radios-wrap"},[n("ul",{staticClass:"f-radios",class:e.question.multiple?"f-multiple":"f-single",attrs:{role:"listbox"}},[e._l(e.question.options,(function(t,i){return n("li",{key:"m"+i,class:{"f-selected":t.selected},attrs:{"aria-label":e.getLabel(i),role:"option"},on:{click:function(n){return n.preventDefault(),e.toggleAnswer(t)}}},[e.hasImages&&t.imageSrc?n("span",{staticClass:"f-image"},[n("img",{attrs:{src:t.imageSrc,alt:t.imageAlt}})]):e._e(),e._v(" "),n("div",{staticClass:"f-label-wrap"},[n("span",{staticClass:"f-key",attrs:{title:"Press the key to select "}},[e._v(e._s(e.getToggleKey(i)))]),e._v(" "),t.choiceLabel()?n("span",{staticClass:"f-label"},[e._v(e._s(t.choiceLabel()))]):e._e(),e._v(" "),n("span",{staticClass:"ffc_check_svg"},[n("svg",{attrs:{height:"13",width:"16"}},[n("path",{attrs:{d:"M14.293.293l1.414 1.414L5 12.414.293 7.707l1.414-1.414L5 9.586z"}})])])])])})),e._v(" "),!e.hasImages&&e.question.allowOther?n("li",{staticClass:"f-other",class:{"f-selected":e.question.other,"f-focus":e.editingOther},attrs:{"aria-label":e.language.ariaTypeAnswer,role:"option"},on:{click:function(t){return t.preventDefault(),e.startEditOther.apply(null,arguments)}}},[n("div",{staticClass:"f-label-wrap"},[e.editingOther?e._e():n("span",{staticClass:"f-key"},[e._v(e._s(e.getToggleKey(e.question.options.length)))]),e._v(" "),e.editingOther?n("input",{directives:[{name:"model",rawName:"v-model",value:e.question.other,expression:"question.other"}],ref:"otherInput",attrs:{type:"text",maxlength:"256"},domProps:{value:e.question.other},on:{blur:e.stopEditOther,keyup:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.stopEditOther.apply(null,arguments))},e.onChangeOther],change:e.onChangeOther,input:function(t){t.target.composing||e.$set(e.question,"other",t.target.value)}}}):e.question.other?n("span",{staticClass:"f-selected"},[n("span",{staticClass:"f-label"},[e._v(e._s(e.question.other))])]):n("span",{staticClass:"f-label"},[e._v(e._s(e.language.otherPrompt))])])]):e._e()],2)])}),[],!1,null,null,null).exports;const _l=nl({extends:yl,name:Js.MultiplePictureChoice,data:function(){return{hasImages:!0}}},undefined,undefined,!1,null,null,null).exports;const bl=nl({extends:fl,name:Js.Number,data:function(){return{inputType:"tel",allowedChars:"-0123456789."}},methods:{validate:function(){return!(!isNaN(parseInt(this.question.min))&&this.dataValue<this.question.min)&&(!(!isNaN(parseInt(this.question.max))&&this.dataValue>this.question.max)&&(this.hasValue?!isNaN(+this.dataValue):!this.question.required||this.hasValue))}}},undefined,undefined,!1,null,null,null).exports;const wl=nl({extends:fl,name:Js.Password,data:function(){return{inputType:"password"}}},undefined,undefined,!1,null,null,null).exports,xl={extends:fl,name:Js.Phone,data:function(){return{inputType:"tel",canReceiveFocus:!0}},methods:{validate:function(){return this.hasValue?this.iti.isValidNumber():!this.question.required},init:function(){var e=this;if("undefined"!=typeof intlTelInput&&0!=this.question.phone_settings.enabled){var t=this.getElement(),n=JSON.parse(this.question.phone_settings.itlOptions);this.question.phone_settings.ipLookupUrl&&(n.geoIpLookup=function(t,n){fetch(e.question.phone_settings.ipLookupUrl,{headers:{Accept:"application/json"}}).then((function(e){return e.json()})).then((function(e){var n=e&&e.country?e.country:"";t(n)}))}),this.iti=intlTelInput(t,n),t.addEventListener("change",(function(){e.itiFormat()})),t.addEventListener("keyup",(function(){e.itiFormat()}))}},itiFormat:function(){if("undefined"!=typeof intlTelInputUtils){var e=this.iti.getNumber(intlTelInputUtils.numberFormat.E164);"string"==typeof e&&this.iti.setNumber(e)}}},mounted:function(){this.init()}};n(8020);const kl=nl(xl,undefined,undefined,!1,null,null,null).exports;const Cl=nl({extends:il,name:Js.SectionBreak,methods:{onEnter:function(){this.dirty=!0,this._onEnter()},isValid:function(){return!0}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.question.content?n("div",{staticClass:"f-content"},[n("div",{staticClass:"f-section-text",domProps:{innerHTML:e._s(e.question.content)}})]):e._e()}),[],!1,null,null,null).exports;const Ol=nl({extends:fl,name:Js.Url,data:function(){return{inputType:"url"}},methods:{fixAnswer:function(e){return e&&-1===e.indexOf("://")&&(e="https://"+e),e},validate:function(){if(this.hasValue)try{new URL(this.fixAnswer(this.dataValue));return!0}catch(e){return!1}return!this.question.required}}},undefined,undefined,!1,null,null,null).exports;const Sl=nl({extends:fl,name:Js.Date,data:function(){return{inputType:"date"}},methods:{validate:function(){return!(this.question.min&&this.dataValue<this.question.min)&&(!(this.question.max&&this.dataValue>this.question.max)&&(!this.question.required||this.hasValue))}}},undefined,undefined,!1,null,null,null).exports;const Al=nl({extends:yl,name:Js.TermsAndCondition,data:function(){return{hasImages:!0}},methods:{validate:function(){return"on"===this.dataValue?(this.question.error="",!0):!this.question.required||(this.question.error=this.question.requiredMsg,!1)}}},undefined,undefined,!1,null,null,null).exports;function Tl(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function $l(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Tl(Object(n),!0).forEach((function(t){ql(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Tl(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ql(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const El={extends:il,name:Js.WelcomeScreenType,methods:{onEnter:function(){this.dirty=!0,this._onEnter()},isValid:function(){return!0},next:function(){this.$emit("next")}},data:function(){return{extraHtml:"<style>.ff_default_submit_button_wrapper {display: none !important;}</style>"}},computed:{btnStyles:function(){if(""!=this.question.settings.button_style)return{backgroundColor:this.question.settings.background_color,color:this.question.settings.color};var e=this.question.settings.normal_styles,t="normal_styles";if("hover_styles"==this.question.settings.current_state&&(t="hover_styles"),!this.question.settings[t])return e;var n=JSON.parse(JSON.stringify(this.question.settings[t]));return n.borderRadius?n.borderRadius=n.borderRadius+"px":delete n.borderRadius,n.minWidth||delete n.minWidth,$l($l({},e),n)},btnStyleClass:function(){return this.question.settings.button_style},btnSize:function(){return"ff-btn-"+this.question.settings.button_size},wrapperStyle:function(){var e={};return e.textAlign=this.question.settings.align,e},enterStyle:function(){if(""!=this.question.settings.button_style)return{color:this.question.settings.background_color};var e=this.question.settings.normal_styles,t="normal_styles";return"hover_styles"==this.question.settings.current_state&&(t="hover_styles"),this.question.settings[t]?{color:JSON.parse(JSON.stringify(this.question.settings[t])).backgroundColor}:e}}};n(8114);const Ll=nl(El,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"fh2 f-welcome-screen",style:e.wrapperStyle},[n("div",{staticClass:"ffc_q_header"},[n("h4",{staticClass:"f-text"},[e._v(e._s(e.question.title))])]),e._v(" "),n("div",{staticClass:"f-sub"},[e.question.subtitle?n("span",{domProps:{innerHTML:e._s(e.question.subtitle)}}):e._e()]),e._v(" "),n("div",{staticClass:"ff_custom_button"},["default"==e.question.settings.button_ui.type?n("button",{ref:"button",staticClass:"ff-btn",class:[e.btnSize,e.btnStyleClass],style:e.btnStyles,attrs:{type:"button",href:"#"},domProps:{innerHTML:e._s(e.question.settings.button_ui.text)},on:{click:function(t){return t.preventDefault(),e.next.apply(null,arguments)}}}):e._e(),e._v(" "),n("a",{staticClass:"f-enter-desc",style:e.enterStyle,attrs:{href:"#"},domProps:{innerHTML:e._s(e.language.formatString(e.language.pressEnter))},on:{click:function(t){return t.preventDefault(),e.next.apply(null,arguments)}}})])])}),[],!1,null,"56ad9af3",null).exports;const jl={extends:il,name:Js.Rate,data:function(){return{temp_value:null,rateText:null}},computed:{ratings:function(){return this.question.options}},methods:{starOver:function(e,t){this.temp_value=e,this.rateText=t},starOut:function(){this.temp_value=this.dataValue,this.dataValue?this.rateText=this.ratings[this.dataValue]:this.rateText=null},set:function(e,t){var n=this;this.dataValue=e,this.temp_value=e,this.rateText=t,this.dataValue&&(this.question.answer=e,this.$nextTick((function(){n.$emit("next")})))}}};n(429);const Fl=nl(jl,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"star-rating"},[e._l(e.ratings,(function(t,i){return n("label",{staticClass:"star-rating__star",class:{"is-selected":e.temp_value>=i&&null!=e.temp_value,"is-disabled":e.disabled},on:{click:function(n){return e.set(i,t)},mouseover:function(n){return e.starOver(i,t)},mouseout:e.starOut}},[n("input",{directives:[{name:"model",rawName:"v-model",value:e.dataValue,expression:"dataValue"}],staticClass:"star-rating star-rating__checkbox",attrs:{type:"radio",name:e.question.name,disabled:e.disabled},domProps:{value:i,checked:e._q(e.dataValue,i)},on:{change:function(t){e.dataValue=i}}}),e._v("\n ★\n ")])})),e._v(" "),n("span",{directives:[{name:"show",rawName:"v-show",value:"yes"===e.question.show_text,expression:"question.show_text === 'yes'"}],staticClass:"star-rating-text"},[e._v(e._s(e.rateText))])],2)}),[],!1,null,null,null).exports;var Pl=n(9938),Dl=n.n(Pl);const Il={extends:il,name:Js.DropdownMultiple,components:{vSelect:Dl()},methods:{reduce:function(e){return e.value}}};n(3117);const Ml=nl(Il,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("v-select",{attrs:{multiple:!0,placeholder:e.question.placeholder,searchable:"yes"===e.question.searchable,options:e.question.options,reduce:e.reduce,closeOnSelect:!1},model:{value:e.dataValue,callback:function(t){e.dataValue=t},expression:"dataValue"}})}),[],!1,null,null,null).exports;const Nl={props:["serial"],name:"questionCounter"};n(318);var Vl=nl(Nl,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"ffc-counter"},[n("div",{staticClass:"ffc-counter-in"},[n("div",{staticClass:"ffc-counter-div"},[n("span",{staticClass:"counter-value"},[n("span",[e._v(e._s(e.serial))])]),e._v(" "),n("div",{staticClass:" counter-icon-container"},[n("span",{staticClass:"counter-icon-span"},[n("svg",{attrs:{height:"10",width:"11"}},[n("path",{attrs:{d:"M7.586 5L4.293 1.707 5.707.293 10.414 5 5.707 9.707 4.293 8.293z"}}),n("path",{attrs:{d:"M8 4v2H0V4z"}})])])])])])])}),[],!1,null,null,null);var Bl=nl({name:"FlowFormQuestion",components:{FlowFormDateType:Sl,FlowFormDropdownType:rl,FlowFormEmailType:pl,FlowFormLongTextType:hl,FlowFormMultipleChoiceType:yl,FlowFormMultiplePictureChoiceType:_l,FlowFormNumberType:bl,FlowFormPasswordType:wl,FlowFormPhoneType:kl,FlowFormSectionBreakType:Cl,FlowFormTextType:fl,FlowFormUrlType:Ol,FlowFormTermsAndConditionType:Al,FlowFormWelcomeScreenType:Ll,FlowFormRateType:Fl,FlowFormDropdownMultipleType:Ml,questionCounter:Vl.exports},props:{question:Gs,language:Rs,value:[String,Array,Boolean,Number,Object],active:{type:Boolean,default:!1},reverse:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},isActiveForm:{type:Boolean,default:!0},isOnLastStep:{type:Boolean,default:!1},submitting:{type:Boolean,default:!1},replaceSmartCodes:{type:Function,default:function(e){return e}}},mixins:[tl],data:function(){return{QuestionType:Js,dataValue:null,debounced:!1}},mounted:function(){this.focusField(),this.dataValue=this.question.answer,this.$refs.qanimate.addEventListener("animationend",this.onAnimationEnd)},beforeDestroy:function(){this.$refs.qanimate.removeEventListener("animationend",this.onAnimationEnd)},methods:{focusField:function(){if(!this.isActiveForm)return!1;var e=this.$refs.questionComponent;e&&e.focus()},onAnimationEnd:function(){this.focusField()},shouldFocus:function(){var e=this.$refs.questionComponent;return e&&e.canReceiveFocus&&!e.focused},returnFocus:function(){this.$refs.questionComponent;this.shouldFocus()&&this.focusField()},onEnter:function(e){e&&!this.isActiveForm&&(this.isActiveForm=!0),this.isActiveForm&&this.checkAnswer(this.emitAnswer)},onTab:function(e){this.isActiveForm&&this.checkAnswer(this.emitAnswerTab)},checkAnswer:function(e){var t=this,n=this.$refs.questionComponent;n.isValid()&&this.question.nextStepOnAnswer&&!this.question.multiple?(this.$emit("disable",!0),this.debounce((function(){e(n),t.$emit("disable",!1)}),350)):e(n)},emitAnswer:function(e){e&&(e.focused||this.$emit("answer",e),e.onEnter())},emitAnswerTab:function(e){e&&this.question.type!==Js.Date&&(this.returnFocus(),this.$emit("answer",e),e.onEnter())},debounce:function(e,t){var n;return this.debounced=!0,clearTimeout(n),void(n=setTimeout(e,t))},showOkButton:function(){var e=this.$refs.questionComponent;return this.question.type!==Js.WelcomeScreen&&(this.question.type===Js.SectionBreak?this.active:!this.question.required||(!(!this.question.allowOther||!this.question.other)||!(this.question.isMultipleChoiceType()&&!this.question.multiple&&this.question.nextStepOnAnswer)&&(!(!e||null===this.dataValue)&&(e.hasValue&&e.isValid()))))},showSkip:function(){var e=this.$refs.questionComponent;return!(this.question.required||e&&e.hasValue)},showInvalid:function(){var e=this.$refs.questionComponent;return!(!e||null===this.dataValue)&&(this.question.error||e.showInvalid())}},computed:{mainClasses:{cache:!1,get:function(){var e={"q-is-inactive":!this.active,"f-fade-in-down":this.reverse,"f-fade-in-up":!this.reverse,"f-focused":this.$refs.questionComponent&&this.$refs.questionComponent.focused,"f-has-value":this.$refs.questionComponent&&this.$refs.questionComponent.hasValue};return e["field-"+this.question.type.toLowerCase().substring(8,this.question.type.length-4)]=!0,e}},layoutClass:{cache:!1,get:function(){return this.question.style_pref.layout}},setAlignment:{cache:!1,get:function(){var e="";return null!=this.question.settings&&(e+="text-align: ".concat(this.question.settings.align,"; ")),e}},layoutStyle:{cache:!1,get:function(){return{backgroundImage:"url("+this.question.style_pref.media+")",height:"90vh",backgroundRepeat:"no-repeat",backgroundSize:"cover",backgroundPosition:this.question.style_pref.media_x_position+"px "+this.question.style_pref.media_y_position+"px"}}},showHelperText:function(){return!!this.question.subtitle||(this.question.type===Js.LongText||this.question.type===Js.MultipleChoice)&&this.question.helpTextShow},brightness:function(){var e=this.question.style_pref.brightness;if(!e)return!1;var t="";return e>0&&(t+="contrast("+((100-e)/100).toFixed(2)+") "),t+"brightness("+(1+this.question.style_pref.brightness/100)+")"},imagePositionCSS:function(){return("media_right_full"==this.question.style_pref.layout||"media_left_full"==this.question.style_pref.layout)&&this.question.style_pref.media_x_position+"% "+this.question.style_pref.media_y_position+"%"}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{ref:"qanimate",staticClass:"vff-animate q-form",class:e.mainClasses},[n("div",{staticClass:"ff_conv_section_wrapper",class:"ff_conv_layout_"+e.layoutClass},[n("div",{staticClass:"ff_conv_input q-inner "},[n("div",{staticClass:"ffc_question",class:{"f-section-wrap":e.question.type===e.QuestionType.SectionBreak}},[e.question.type===e.QuestionType.WelcomeScreen?[n(e.question.type,{ref:"questionComponent",tag:"flow-form-welcome-screen-type",attrs:{question:e.question,language:e.language,active:e.active,disabled:e.disabled},on:{next:e.onEnter},model:{value:e.dataValue,callback:function(t){e.dataValue=t},expression:"dataValue"}})]:[e.question.type!=e.QuestionType.SectionBreak?n("questionCounter",{attrs:{serial:e.question.counter}}):e._e(),e._v(" "),n("div",{class:{fh2:e.question.type!==e.QuestionType.SectionBreak}},[n("div",{staticClass:"ffc_q_header"},[e.question.title?[e.question.type===e.QuestionType.SectionBreak?n("span",{staticClass:"fh2",domProps:{innerHTML:e._s(e.replaceSmartCodes(e.question.title))}}):n("span",{staticClass:"f-text"},[n("span",{domProps:{innerHTML:e._s(e.replaceSmartCodes(e.question.title))}}),e._v(" \n "),e._v(" "),e.question.required?n("span",{staticClass:"f-required",attrs:{"aria-label":e.language.ariaRequired,role:"note"}},[n("span",{attrs:{"aria-hidden":"true"}},[e._v("*")])]):e._e(),e._v(" "),e.question.inline?n("span",{staticClass:"f-answer"},[n(e.question.type,{ref:"questionComponent",tag:"component",attrs:{question:e.question,language:e.language,active:e.active,disabled:e.disabled},on:{next:e.onEnter},model:{value:e.dataValue,callback:function(t){e.dataValue=t},expression:"dataValue"}})],1):e._e()])]:e._e(),e._v(" "),e.question.tagline?n("span",{staticClass:"f-tagline",domProps:{innerHTML:e._s(e.replaceSmartCodes(e.question.tagline))}}):e._e()],2),e._v(" "),e.question.inline?e._e():n("div",{staticClass:"f-answer f-full-width"},[n(e.question.type,{ref:"questionComponent",tag:"component",attrs:{question:e.question,language:e.language,active:e.active,disabled:e.disabled},on:{next:e.onEnter},model:{value:e.dataValue,callback:function(t){e.dataValue=t},expression:"dataValue"}})],1),e._v(" "),e.showHelperText?n("span",{staticClass:"f-sub"},[e.question.subtitle?n("span",{domProps:{innerHTML:e._s(e.question.subtitle)}}):e._e(),e._v(" "),e.question.type!==e.QuestionType.LongText||e.isMobile?e._e():n("span",{staticClass:"f-help",domProps:{innerHTML:e._s(e.question.helpText||e.language.formatString(e.language.longTextHelpText))}}),e._v(" "),e.question.type===e.QuestionType.MultipleChoice&&e.question.multiple?n("span",{staticClass:"f-help"},[e._v(e._s(e.question.helpText||e.language.multipleChoiceHelpText))]):e.question.type===e.QuestionType.MultipleChoice?n("span",{staticClass:"f-help"},[e._v(e._s(e.question.helpText||e.language.multipleChoiceHelpTextSingle))]):e._e()]):e._e()]),e._v(" "),e.question.description||0!==e.question.descriptionLink.length?n("p",{staticClass:"f-description"},[e.question.description?n("span",[e._v(e._s(e.question.description))]):e._e(),e._v(" "),e._l(e.question.descriptionLink,(function(t,i){return n("a",{key:"m"+i,staticClass:"f-link",attrs:{href:t.url,target:t.target}},[e._v(e._s(t.text||t.url))])}))],2):e._e()]],2),e._v(" "),e.showOkButton()?n("div",{staticClass:"vff-animate f-fade-in f-enter"},[n("button",{ref:"button",staticClass:"o-btn-action",class:{ffc_submitting:e.submitting},attrs:{type:"button",href:"#",disabled:e.submitting,"aria-label":e.language.ariaOk},on:{click:function(t){return t.preventDefault(),e.onEnter.apply(null,arguments)}}},[e.isOnLastStep?n("span",[e._v(e._s(e.language.submitText))]):e.question.type===e.QuestionType.SectionBreak?n("span",{domProps:{innerHTML:e._s(e.language.continue)}}):e.showSkip()?n("span",{domProps:{innerHTML:e._s(e.language.skip)}}):n("span",{domProps:{innerHTML:e._s(e.language.ok)}})]),e._v(" "),e.question.type===e.QuestionType.LongText&&e.isMobile?e._e():n("a",{staticClass:"f-enter-desc",attrs:{href:"#"},domProps:{innerHTML:e._s(e.language.formatString(e.language.pressEnter))},on:{click:function(t){return t.preventDefault(),e.onEnter.apply(null,arguments)}}})]):e._e(),e._v(" "),e.showInvalid()?n("div",{staticClass:"f-invalid",attrs:{role:"alert","aria-live":"assertive"}},[e._v("\n "+e._s(e.question.error||e.language.invalidPrompt)+"\n ")]):e._e()]),e._v(" "),"default"!=e.question.style_pref.layout?n("div",{staticClass:"ff_conv_media_holder"},[n("div",{staticClass:"fcc_block_media_attachment",class:"fc_i_layout_"+e.question.style_pref.layout,style:{filter:e.brightness}},[e.question.style_pref.media?n("picture",{staticClass:"fc_image_holder"},[n("img",{style:{"object-position":e.imagePositionCSS},attrs:{alt:e.question.style_pref.alt_text,src:e.question.style_pref.media}})]):e._e()])]):e._e()])])}),[],!1,null,null,null);function zl(e){return(zl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var Rl=nl({name:"FlowForm",components:{FlowFormQuestion:Bl.exports},props:{questions:{type:Array,validator:function(e){return e.every((function(e){return e instanceof Gs}))}},language:{type:Rs,default:function(){return new Rs}},progressbar:{type:Boolean,default:!0},standalone:{type:Boolean,default:!0},submitting:{type:Boolean,default:!1},navigation:{type:Boolean,default:!0},timer:{type:Boolean,default:!1},timerStartStep:[String,Number],timerStopStep:[String,Number],isActiveForm:{type:Boolean,default:!0},globalVars:{Type:Object,default:{}}},mixins:[tl],data:function(){return{completed:!1,submitted:!1,activeQuestionIndex:0,questionList:[],questionListActivePath:[],reverse:!1,timerOn:!1,timerInterval:null,time:0,disabled:!1,formData:{}}},mounted:function(){document.addEventListener("keydown",this.onKeyDownListener),document.addEventListener("keyup",this.onKeyUpListener,!0),window.addEventListener("beforeunload",this.onBeforeUnload),this.setQuestions(),this.checkTimer()},beforeDestroy:function(){document.removeEventListener("keydown",this.onKeyDownListener),document.removeEventListener("keyup",this.onKeyUpListener,!0),window.removeEventListener("beforeunload",this.onBeforeUnload),this.stopTimer()},computed:{numActiveQuestions:function(){var e=0;return this.questionListActivePath.forEach((function(t){[Js.WelcomeScreen,Js.SectionBreak].includes(t.type)||++e})),e},activeQuestion:function(){return this.questionListActivePath[this.activeQuestionIndex]},activeQuestionId:function(){var e=this.questionModels[this.activeQuestionIndex];return this.isOnLastStep?"_submit":e&&e.id?e.id:null},numCompletedQuestions:function(){var e=0;return this.questionListActivePath.forEach((function(t){![Js.WelcomeScreen,Js.SectionBreak].includes(t.type)&&t.answered&&++e})),e},percentCompleted:function(){return this.numActiveQuestions?Math.floor(this.numCompletedQuestions/this.numActiveQuestions*100):0},isOnLastStep:function(){return this.numActiveQuestions>0&&this.activeQuestionIndex===this.questionListActivePath.length-1},isOnTimerStartStep:function(){return this.activeQuestionId===this.timerStartStep||!this.timerOn&&!this.timerStartStep&&0===this.activeQuestionIndex},isOnTimerStopStep:function(){return!!this.submitted||this.activeQuestionId===this.timerStopStep},hasImageLayout:function(){if(this.questionListActivePath[this.activeQuestionIndex])return"default"!=this.questionListActivePath[this.activeQuestionIndex].style_pref.layout},vffClasses:function(){var e=[];if(this.standalone||e.push("vff-not-standalone"),this.isMobile&&e.push("vff-is-mobile"),this.isIos&&e.push("vff-is-ios"),this.hasImageLayout?e.push("has-img-layout"):e.push("has-default-layout"),this.questionListActivePath[this.activeQuestionIndex]){var t=this.questionListActivePath[this.activeQuestionIndex].style_pref;e.push("vff_layout_"+t.layout)}else e.push("vff_layout_default");return this.isOnLastStep&&e.push("ffc_last_step"),e},questionModels:{cache:!1,get:function(){if(this.questions&&this.questions.length)return this.questions;var e=[];if(!this.questions){var t={options:Zs,descriptionLink:Xs};this.$slots.default.filter((function(e){return e.tag&&-1!==e.tag.indexOf("Question")})).forEach((function(n){var i=n.data.attrs,r=new Gs;null!==n.componentInstance.question&&(r=n.componentInstance.question),n.data.model&&(r.answer=n.data.model.value),Object.keys(r).forEach((function(e){if(void 0!==i[e])if("boolean"==typeof r[e])r[e]=!1!==i[e];else if(e in t){var n=t[e],o=[];i[e].forEach((function(e){var t=new n;Object.keys(t).forEach((function(n){void 0!==e[n]&&(t[n]=e[n])})),o.push(t)})),r[e]=o}else switch(e){case"type":if(-1!==Object.values(Js).indexOf(i[e]))r[e]=i[e];else for(var a in Js)if(a.toLowerCase()===i[e].toLowerCase()){r[e]=Js[a];break}break;default:r[e]=i[e]}})),n.componentInstance.question=r,e.push(r)}))}return e}}},methods:{activeQuestionComponent:function(){return this.$refs.questions?this.$refs.questions[this.activeQuestionIndex]:null},setQuestions:function(){this.setQuestionListActivePath(),this.setQuestionList()},setQuestionListActivePath:function(){var e=[];if(this.questionModels.length){var t={};this.questionModels.forEach((function(e){e.name&&(t[e.name]=e.answer)}));var n,i=0,r=0,o=0;do{var a=this.questionModels[i];if(a.showQuestion(t)){if(a.setIndex(r),a.language=this.language,[Js.WelcomeScreen,Js.SectionBreak].includes(a.type)||(++o,a.setCounter(o)),e.push(a),a.jump)if(a.answered)if(n=a.getJumpId()){if("_submit"===n)i=this.questionModels.length;else for(var s=0;s<this.questionModels.length;s++)if(this.questionModels[s].id===n){i=s;break}}else++i;else i=this.questionModels.length;else++i;++r}else++i}while(i<this.questionModels.length);this.questionListActivePath=e}},setQuestionList:function(){for(var e=[],t=0;t<this.questionListActivePath.length;t++){var n=this.questionListActivePath[t];if(e.push(n),this.formData[n.name]=n.answer,!n.answered){this.completed&&(this.completed=!1);break}}this.questionList=e},onBeforeUnload:function(e){this.activeQuestionIndex>0&&!this.submitted&&(e.preventDefault(),e.returnValue="")},onKeyDownListener:function(e){if("Tab"===e.key&&!this.submitted)if(e.shiftKey)e.stopPropagation(),e.preventDefault(),this.navigation&&this.goToPreviousQuestion();else{var t=this.activeQuestionComponent();t.shouldFocus()?(e.preventDefault(),t.focusField()):(e.stopPropagation(),this.emitTab(),this.reverse=!1)}},onKeyUpListener:function(e){if(!e.shiftKey&&-1!==["Tab","Enter"].indexOf(e.key)&&!this.submitted){var t=this.activeQuestionComponent();"Tab"===e.key&&t.shouldFocus()?t.focusField():("Enter"===e.key&&this.emitEnter(),e.stopPropagation(),this.reverse=!1)}},emitEnter:function(){if(!this.disabled){var e=this.activeQuestionComponent();e?e.onEnter():this.isOnLastStep&&this.submit()}},emitTab:function(){var e=this.activeQuestionComponent();e?e.onTab():this.emitEnter()},submit:function(){this.emitSubmit()},emitComplete:function(){this.$emit("complete",this.completed,this.questionList)},emitSubmit:function(){this.submitting||this.$emit("submit",this.questionList)},isNextQuestionAvailable:function(){if(this.submitted)return!1;var e=this.activeQuestion;return!(!e||e.required)||(!(!this.completed||this.isOnLastStep)||this.activeQuestionIndex<this.questionList.length-1)},onQuestionAnswered:function(e){var t=this;if(e.isValid()){if(this.$emit("answer",e),this.isOnLastStep)return this.submit(),!1;this.activeQuestionIndex<this.questionListActivePath.length&&++this.activeQuestionIndex,this.$nextTick((function(){t.setQuestions(),t.checkTimer(),t.$nextTick((function(){var e=t.activeQuestionComponent();e?(e.focusField(),t.activeQuestionIndex=e.question.index):t.isOnLastStep&&(t.completed=!0,t.activeQuestionIndex=t.questionListActivePath.length,t.$refs.button&&t.$refs.button.focus()),t.$emit("step",t.activeQuestionId,t.activeQuestion)}))}))}else this.completed&&(this.completed=!1)},goToPreviousQuestion:function(){this.blurFocus(),this.activeQuestionIndex>0&&!this.submitted&&(this.isOnTimerStopStep&&this.startTimer(),--this.activeQuestionIndex,this.reverse=!0,this.checkTimer())},goToNextQuestion:function(){this.blurFocus(),this.isNextQuestionAvailable()&&this.emitEnter(),this.reverse=!1},blurFocus:function(){document.activeElement&&document.activeElement.blur&&document.activeElement.blur()},checkTimer:function(){this.timer&&(this.isOnTimerStartStep?this.startTimer():this.isOnTimerStopStep&&this.stopTimer())},startTimer:function(){this.timer&&!this.timerOn&&(this.timerInterval=setInterval(this.incrementTime,1e3),this.timerOn=!0)},stopTimer:function(){this.timerOn&&clearInterval(this.timerInterval),this.timerOn=!1},incrementTime:function(){++this.time,this.$emit("timer",this.time,this.formatTime(this.time))},formatTime:function(e){var t=14,n=5;return e>=3600&&(t=11,n=8),new Date(1e3*e).toISOString().substr(t,n)},setDisabled:function(e){this.disabled=e},replaceSmartCodes:function(e){if(!e||-1==e.indexOf("{dynamic."))return e;for(var t=/{dynamic.(.*?)}/g,n=!1,i=e;n=t.exec(e);){var r=n[1],o="",a=r.split("|");2===a.length&&(r=a[0],o=a[1]);var s=this.formData[r];s?"object"==zl(s)&&(s=s.join(", ")):s=o,i=i.replace(n[0],s)}return i}},watch:{completed:function(){this.emitComplete()},activeQuestionIndex:function(e){this.$emit("activeQuestionIndexChanged",e)},submitted:function(){this.stopTimer()}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"vff",class:e.vffClasses},[n("div",{staticClass:"f-container"},[n("div",{staticClass:"f-form-wrap"},[e._l(e.questionList,(function(t,i){return n("flow-form-question",{key:"q"+i,ref:"questions",refInFor:!0,attrs:{question:t,language:e.language,isActiveForm:e.isActiveForm,active:t.index===e.activeQuestionIndex,reverse:e.reverse,disabled:e.disabled,submitting:e.submitting,isOnLastStep:e.isOnLastStep,replaceSmartCodes:e.replaceSmartCodes},on:{answer:e.onQuestionAnswered,disable:e.setDisabled},model:{value:t.answer,callback:function(n){e.$set(t,"answer",n)},expression:"q.answer"}})})),e._v(" "),e._t("default"),e._v(" "),e.isOnLastStep?n("div",{staticClass:"vff-animate f-fade-in-up field-submittype"},[e._t("complete",(function(){return[n("div",{staticClass:"f-section-wrap"},[n("p",[n("span",{staticClass:"fh2"},[e._v(e._s(e.language.thankYouText))])])])]})),e._v(" "),e._t("completeButton",(function(){return[e.submitted?e._e():n("button",{ref:"button",staticClass:"o-btn-action",class:{ffc_submitting:e.submitting},attrs:{type:"button",href:"#",disabled:e.submitting,"aria-label":e.language.ariaSubmitText},on:{click:function(t){return t.preventDefault(),e.submit()}}},[n("span",[e._v(e._s(e.language.submitText))])]),e._v(" "),e.submitted?e._e():n("a",{staticClass:"f-enter-desc",attrs:{href:"#"},domProps:{innerHTML:e._s(e.language.formatString(e.language.pressEnter))},on:{click:function(t){return t.preventDefault(),e.submit()}}}),e._v(" "),e.submitted?n("p",{staticClass:"text-success"},[e._v(e._s(e.language.successText))]):e._e()]}))],2):e._e()],2)]),e._v(" "),n("div",{staticClass:"vff-footer"},[n("div",{staticClass:"footer-inner-wrap"},[e.progressbar?n("div",{staticClass:"f-progress",class:{"not-started":0===e.percentCompleted,completed:100===e.percentCompleted}},[e.language.percentCompleted?n("span",{staticClass:"ffc_progress_label"},[e._v("\n "+e._s(e.language.percentCompleted.replace("{percent}",e.percentCompleted).replace("{step}",e.numCompletedQuestions).replace("{total}",e.numActiveQuestions))+"\n ")]):e._e(),e._v(" "),n("div",{staticClass:"f-progress-bar"},[n("div",{staticClass:"f-progress-bar-inner",style:"width: "+e.percentCompleted+"%;"})])]):e._e(),e._v(" "),e.navigation?n("div",{staticClass:"f-nav"},["yes"!=e.globalVars.design.disable_branding?n("a",{staticClass:"ffc_power",attrs:{href:"https://fluentforms.com/",target:"_blank",rel:"noopener"}},[e._v("Powered by "),n("b",[e._v("FluentForms")])]):e._e(),e._v(" "),n("a",{staticClass:"f-prev",class:{"f-disabled":0===e.activeQuestionIndex||e.submitted},attrs:{href:"#",role:"button","aria-label":e.language.ariaPrev},on:{click:function(t){return t.preventDefault(),e.goToPreviousQuestion()}}},[n("svg",{attrs:{version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",x:"0px",y:"0px",width:"42.333px",height:"28.334px",viewBox:"78.833 5.5 42.333 28.334","aria-hidden":"true"}},[n("path",{attrs:{d:"M82.039,31.971L100,11.442l17.959,20.529L120,30.187L101.02,8.492c-0.258-0.295-0.629-0.463-1.02-0.463c-0.39,0-0.764,0.168-1.02,0.463L80,30.187L82.039,31.971z"}})]),e._v(" "),n("span",{staticClass:"f-nav-text",attrs:{"aria-hidden":"true"}},[e._v(e._s(e.language.prev))])]),e._v(" "),n("a",{staticClass:"f-next",class:{"f-disabled":!e.isNextQuestionAvailable()},attrs:{href:"#",role:"button","aria-label":e.language.ariaNext},on:{click:function(t){return t.preventDefault(),e.goToNextQuestion()}}},[n("svg",{attrs:{version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",x:"0px",y:"0px",width:"42.333px",height:"28.334px",viewBox:"78.833 5.5 42.333 28.334","aria-hidden":"true"}},[n("path",{attrs:{d:"M117.963,8.031l-17.961,20.529L82.042,8.031l-2.041,1.784l18.98,21.695c0.258,0.295,0.629,0.463,1.02,0.463c0.39,0,0.764-0.168,1.02-0.463l18.98-21.695L117.963,8.031z"}})]),e._v(" "),n("span",{staticClass:"f-nav-text",attrs:{"aria-hidden":"true"}},[e._v(e._s(e.language.next))])])]):e._e(),e._v(" "),e.timer?n("div",{staticClass:"f-timer"},[n("span",[e._v(e._s(e.formatTime(e.time)))])]):e._e()])])])}),[],!1,null,null,null);const Ul=nl({name:"app",components:{FlowForm:Rl.exports},data:function(){return{submitted:!1,completed:!1,language:new Rs,submissionMessage:"",errorMessage:"",hasError:!1,hasjQuery:"function"==typeof window.jQuery,isActiveForm:!0,submitting:!1,handlingScroll:!1}},computed:{questions:function(){var e=[],t=["FlowFormDropdownType","FlowFormDropdownMultipleType","FlowFormMultipleChoiceType","FlowFormTermsAndConditionType"];return this.globalVars.form.questions.forEach((function(n){t.includes(n.type)&&(n.options=n.options.map((function(e){return e.image&&(e.imageSrc=e.image,n.type="FlowFormMultiplePictureChoiceType"),new Zs(e)}))),e.push(new Gs(n))})),e}},mounted:function(){var e=this;if(this.initActiveFormFocus(),"yes"!=this.globalVars.design.disable_scroll_to_next){var t=document.getElementsByClassName("ff_conv_app_"+this.globalVars.form.id);t.length&&((t=t[0]).addEventListener("wheel",this.onMouseScroll),t.addEventListener("swiped",(function(t){var n=t.detail.dir;"up"===n?e.handleAutoQChange("next"):"down"===n&&e.handleAutoQChange("prev")})))}},beforeDestroy:function(){document.removeEventListener("keyup",this.onKeyListener)},methods:{onMouseScroll:function(e){if(this.handlingScroll)return!1;e.deltaY>50?this.handleAutoQChange("next"):e.deltaY<-50&&this.handleAutoQChange("prev"),e.preventDefault()},handleAutoQChange:function(e){var t,n=document.querySelector(".ff_conv_app_"+this.globalVars.form.id+" .f-"+e);!n||(t="f-disabled",(" "+n.className+" ").indexOf(" "+t+" ")>-1)||(this.handlingScroll=!0,n.click())},activeQuestionIndexChanged:function(){var e=this;setTimeout((function(){e.handlingScroll=!1}),1500)},initActiveFormFocus:function(){var e=this;if(this.globalVars.is_inline_form){this.isActiveForm=!1;var t=document.querySelector(".ff_conv_app_frame");document.addEventListener("click",(function(n){e.isActiveForm=t.contains(n.target)})),document.addEventListener("keyup",this.onKeyListener)}else this.isActiveForm=!0,document.addEventListener("keyup",this.onKeyListener)},onKeyListener:function(e){"Enter"===e.key&&this.completed&&!this.submitted&&this.onSendData()},onComplete:function(e,t){this.completed=e},onSubmit:function(e){this.onSendData()},onSendData:function(){var e=this;this.errorMessage="";var t=this.getData(),n=this.globalVars.form.id,i=new FormData;for(var r in this.globalVars.extra_inputs)t+="&"+encodeURIComponent(r)+"="+encodeURIComponent(this.globalVars.extra_inputs[r]);i.append("data",t),i.append("action","fluentform_submit"),i.append("form_id",n);var o=this.globalVars.ajaxurl;var a,s,l=(a="t="+Date.now(),s=o,s+=(s.split("?")[1]?"&":"?")+a);this.submitting=!0,fetch(l,{method:"POST",body:i}).then((function(e){return e.json()})).then((function(t){if(t&&t.data&&t.data.result){if(e.hasjQuery){if(t.data.nextAction)return void jQuery(document.body).trigger("fluentform_next_action_"+t.data.nextAction,{response:t});jQuery(document.body).trigger("fluentform_submission_success",{response:t})}e.$refs.flowform.submitted=e.submitted=!0,t.data.result.message&&(e.submissionMessage=t.data.result.message),"redirectUrl"in t.data.result&&t.data.result.redirectUrl&&(location.href=t.data.result.redirectUrl)}else t.errors?(e.showErrorMessages(t.errors),e.showErrorMessages(t.message)):(e.showErrorMessages(t),e.showErrorMessages(t.message))})).catch((function(t){t.errors?e.showErrorMessages(t.errors):e.showErrorMessages(t)})).finally((function(t){e.submitting=!1}))},getData:function(){var e=[];return this.questions.forEach((function(t){t.name&&t.answer&&e.push(encodeURIComponent(t.name)+"="+encodeURIComponent(t.answer))})),e.join("&")},getSubmitText:function(){return this.globalVars.form.submit_button.settings.button_ui.text||"Submit"},showErrorMessages:function(e){var t=this;if(e)if("string"==typeof e)this.errorMessage=e;else{var n=function(n){if("string"==typeof e[n])t.errorMessage=e[n];else for(var i in e[n]){var r=t.questions.filter((function(e){return e.name===n}));r&&r.length?((r=r[0]).error=e[n][i],t.$refs.flowform.submitted=t.submitted=!1,t.$refs.flowform.activeQuestionIndex=r.index,t.$refs.flowform.$refs.questions[r.index].focusField()):t.errorMessage=e[n][i];break}return"break"};for(var i in e){if("break"===n(i))break}}}}},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e.submissionMessage?n("div",{staticClass:"text-success ff_completed ff-response ff-section-text"},[n("div",{staticClass:"vff vff_layout_default"},[n("div",{staticClass:"f-container"},[n("div",{staticClass:"f-form-wrap"},[n("div",{staticClass:"vff-animate q-form f-fade-in-up field-welcomescreen"},[n("div",{staticClass:"ff_conv_input q-inner",domProps:{innerHTML:e._s(e.submissionMessage)}})])])])])]):n("flow-form",{ref:"flowform",attrs:{questions:e.questions,isActiveForm:e.isActiveForm,language:e.language,globalVars:e.globalVars,standalone:!0,submitting:e.submitting,navigation:1!=e.globalVars.disable_step_naviagtion},on:{complete:e.onComplete,submit:e.onSubmit,activeQuestionIndexChanged:e.activeQuestionIndexChanged},scopedSlots:e._u([{key:"complete",fn:function(){return[n("div",{staticClass:"f-section-wrap"})]},proxy:!0},{key:"completeButton",fn:function(){return[n("div"),e._v(" "),e.errorMessage?n("div",{staticClass:"f-invalid",attrs:{role:"alert","aria-live":"assertive"}},[e._v("\n "+e._s(e.errorMessage)+"\n ")]):e._e()]},proxy:!0}],null,!1,1339125118)})],1)}),[],!1,null,null,null).exports;n(4309);n(6770);var Hl=document.getElementsByClassName("ffc_conv_form"),Ql=[];ml()(Hl,(function(e){Ql.push(e)})),Ql.forEach((function(e){!function(e){window.fluent_forms_global_var=window[e.getAttribute("data-var_name")];var t=new gs({render:function(e){return e(Ul)}});gs.prototype.globalVars=window[e.getAttribute("data-var_name")],t.$mount("#"+e.id)}(e)}))})()})();
|
app/Services/FluentConversational/public/js/conversationalForm.js.LICENSE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Vue.js v2.6.13
|
3 |
+
* (c) 2014-2021 Evan You
|
4 |
+
* Released under the MIT License.
|
5 |
+
*/
|
6 |
+
|
7 |
+
/*!
|
8 |
+
* swiped-events.js - v@version@
|
9 |
+
* Pure JavaScript swipe events
|
10 |
+
* https://github.com/john-doherty/swiped-events
|
11 |
+
* @inspiration https://stackoverflow.com/questions/16348031/disable-scrolling-when-touch-moving-certain-element
|
12 |
+
* @author John Doherty <www.johndoherty.info>
|
13 |
+
* @license MIT
|
14 |
+
*/
|
app/Services/FluentConversational/public/mix-manifest.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"/js/conversationalForm.js": "/js/conversationalForm.js"
|
3 |
+
}
|
app/Services/FormBuilder/Components/CustomSubmitButton.php
ADDED
@@ -0,0 +1,193 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace FluentForm\App\Services\FormBuilder\Components;
|
3 |
+
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
+
exit; // Exit if accessed directly.
|
6 |
+
}
|
7 |
+
|
8 |
+
use FluentForm\App\Helpers\Helper;
|
9 |
+
use FluentForm\App\Services\FormBuilder\BaseFieldManager;
|
10 |
+
use FluentForm\Framework\Helpers\ArrayHelper;
|
11 |
+
|
12 |
+
class CustomSubmitButton extends BaseFieldManager
|
13 |
+
{
|
14 |
+
public function __construct()
|
15 |
+
{
|
16 |
+
parent::__construct(
|
17 |
+
'custom_submit_button',
|
18 |
+
'Custom Submit Button',
|
19 |
+
['submit', 'button', 'custom'],
|
20 |
+
'advanced'
|
21 |
+
);
|
22 |
+
}
|
23 |
+
|
24 |
+
public function pushFormInputType($types)
|
25 |
+
{
|
26 |
+
return $types;
|
27 |
+
}
|
28 |
+
|
29 |
+
function getComponent()
|
30 |
+
{
|
31 |
+
return [
|
32 |
+
'index' => 15,
|
33 |
+
'element' => $this->key,
|
34 |
+
'attributes' => [
|
35 |
+
'class' => '',
|
36 |
+
'type' => 'submit'
|
37 |
+
],
|
38 |
+
'settings' => [
|
39 |
+
'button_style' => '',
|
40 |
+
'button_size' => 'md',
|
41 |
+
'align' => 'left',
|
42 |
+
'container_class' => '',
|
43 |
+
'current_state' => 'normal_styles',
|
44 |
+
'background_color' => 'rgb(64, 158, 255)',
|
45 |
+
'color' => 'rgb(255, 255, 255)',
|
46 |
+
'hover_styles' => (object)[
|
47 |
+
'backgroundColor' => '#ffffff',
|
48 |
+
'borderColor' => '#409EFF',
|
49 |
+
'color' => '#409EFF',
|
50 |
+
'borderRadius' => '',
|
51 |
+
'minWidth' => '100%'
|
52 |
+
],
|
53 |
+
'normal_styles' => (object)[
|
54 |
+
'backgroundColor' => '#409EFF',
|
55 |
+
'borderColor' => '#409EFF',
|
56 |
+
'color' => '#ffffff',
|
57 |
+
'borderRadius' => '',
|
58 |
+
'minWidth' => '100%'
|
59 |
+
],
|
60 |
+
'button_ui' => (object)[
|
61 |
+
'text' => 'Submit',
|
62 |
+
'type' => 'default',
|
63 |
+
'img_url' => ''
|
64 |
+
],
|
65 |
+
'conditional_logics' => []
|
66 |
+
],
|
67 |
+
'editor_options' => [
|
68 |
+
'title' => $this->title,
|
69 |
+
'icon_class' => 'dashicons dashicons-arrow-right-alt',
|
70 |
+
'template' => 'customButton'
|
71 |
+
],
|
72 |
+
];
|
73 |
+
}
|
74 |
+
|
75 |
+
public function pushConditionalSupport($conditonalItems)
|
76 |
+
{
|
77 |
+
return $conditonalItems;
|
78 |
+
}
|
79 |
+
|
80 |
+
|
81 |
+
public function getGeneralEditorElements()
|
82 |
+
{
|
83 |
+
return [
|
84 |
+
'btn_text',
|
85 |
+
'button_ui',
|
86 |
+
'button_style',
|
87 |
+
'button_size',
|
88 |
+
'align',
|
89 |
+
];
|
90 |
+
}
|
91 |
+
|
92 |
+
public function getAdvancedEditorElements()
|
93 |
+
{
|
94 |
+
return [
|
95 |
+
'container_class',
|
96 |
+
'class',
|
97 |
+
'conditional_logics',
|
98 |
+
];
|
99 |
+
}
|
100 |
+
|
101 |
+
public function render($data, $form)
|
102 |
+
{
|
103 |
+
// @todo: We will remove this in our next version [added: 4.0.0]
|
104 |
+
if( class_exists('\FluentFormPro\Components\CustomSubmitField') ) {
|
105 |
+
return '';
|
106 |
+
}
|
107 |
+
|
108 |
+
add_filter('fluentform_is_hide_submit_btn_' . $form->id, '__return_true');
|
109 |
+
|
110 |
+
$elementName = $data['element'];
|
111 |
+
$data = apply_filters('fluenform_rendering_field_data_' . $elementName, $data, $form);
|
112 |
+
|
113 |
+
$btnSize = 'ff-btn-';
|
114 |
+
$color = isset($data['settings']['color']) ? $data['settings']['color'] : '#ffffff';
|
115 |
+
$btnSize .= isset($data['settings']['button_size']) ? $data['settings']['button_size'] : 'md';
|
116 |
+
$backgroundColor = isset($data['settings']['background_color']) ? $data['settings']['background_color'] : '#409EFF';
|
117 |
+
$oldBtnType = isset($data['settings']['button_style']) ? '' : ' ff-btn-primary ';
|
118 |
+
|
119 |
+
$align = 'ff-el-group ff-text-' . @$data['settings']['align'];
|
120 |
+
$data['attributes']['class'] = trim(
|
121 |
+
'ff-btn ff-btn-submit ' . ' ' .
|
122 |
+
$oldBtnType . ' ' .
|
123 |
+
$btnSize . ' ' .
|
124 |
+
$data['attributes']['class']
|
125 |
+
);
|
126 |
+
|
127 |
+
if($tabIndex = \FluentForm\App\Helpers\Helper::getNextTabIndex()) {
|
128 |
+
$data['attributes']['tabindex'] = $tabIndex;
|
129 |
+
}
|
130 |
+
|
131 |
+
$styles = '';
|
132 |
+
if (ArrayHelper::get($data, 'settings.button_style') == '') {
|
133 |
+
$data['attributes']['class'] .= ' wpf_has_custom_css';
|
134 |
+
// it's a custom button
|
135 |
+
$buttonActiveStyles = ArrayHelper::get($data, 'settings.normal_styles', []);
|
136 |
+
$buttonHoverStyles = ArrayHelper::get($data, 'settings.hover_styles', []);
|
137 |
+
|
138 |
+
$activeStates = '';
|
139 |
+
foreach ($buttonActiveStyles as $styleAtr => $styleValue) {
|
140 |
+
if (!$styleValue) {
|
141 |
+
continue;
|
142 |
+
}
|
143 |
+
if ($styleAtr == 'borderRadius') {
|
144 |
+
$styleValue .= 'px';
|
145 |
+
}
|
146 |
+
$activeStates .= ltrim(strtolower(preg_replace('/[A-Z]([A-Z](?![a-z]))*/', '-$0', $styleAtr)), '_') . ':' . $styleValue . ';';
|
147 |
+
}
|
148 |
+
if ($activeStates) {
|
149 |
+
$styles .= 'form.fluent_form_' . $form->id . ' .wpf_has_custom_css.ff-btn-submit { ' . $activeStates . ' }';
|
150 |
+
}
|
151 |
+
$hoverStates = '';
|
152 |
+
foreach ($buttonHoverStyles as $styleAtr => $styleValue) {
|
153 |
+
if (!$styleValue) {
|
154 |
+
continue;
|
155 |
+
}
|
156 |
+
if ($styleAtr == 'borderRadius') {
|
157 |
+
$styleValue .= 'px';
|
158 |
+
}
|
159 |
+
$hoverStates .= ltrim(strtolower(preg_replace('/[A-Z]([A-Z](?![a-z]))*/', '-$0', $styleAtr)), '-') . ':' . $styleValue . ';';
|
160 |
+
}
|
161 |
+
if ($hoverStates) {
|
162 |
+
$styles .= 'form.fluent_form_' . $form->id . ' .wpf_has_custom_css.ff-btn-submit:hover { ' . $hoverStates . ' } ';
|
163 |
+
}
|
164 |
+
} else {
|
165 |
+
$styles .= 'form.fluent_form_' . $form->id . ' .ff-btn-submit { background-color: ' . ArrayHelper::get($data, 'settings.background_color') . '; color: ' . ArrayHelper::get($data, 'settings.color') . '; }';
|
166 |
+
}
|
167 |
+
|
168 |
+
$atts = $this->buildAttributes($data['attributes']);
|
169 |
+
$hasConditions = $this->hasConditions($data) ? 'has-conditions ' : '';
|
170 |
+
$cls = trim($align . ' ' . $data['settings']['container_class'] . ' ' . $hasConditions);
|
171 |
+
|
172 |
+
$html = "<div class='{$cls} ff_submit_btn_wrapper ff_submit_btn_wrapper_custom'>";
|
173 |
+
|
174 |
+
// ADDED IN v1.2.6 - updated in 1.4.4
|
175 |
+
if (isset($data['settings']['button_ui'])) {
|
176 |
+
if ($data['settings']['button_ui']['type'] == 'default') {
|
177 |
+
$html .= '<button ' . $atts . '>' . $data['settings']['button_ui']['text'] . '</button>';
|
178 |
+
} else {
|
179 |
+
$html .= "<button class='ff-btn-submit' type='submit'><img style='max-width: 200px;' src='{$data['settings']['button_ui']['img_url']}' alt='Submit Form'></button>";
|
180 |
+
}
|
181 |
+
} else {
|
182 |
+
$html .= '<button ' . $atts . '>' . $data['settings']['btn_text'] . '</button>';
|
183 |
+
}
|
184 |
+
|
185 |
+
if ($styles) {
|
186 |
+
$html .= '<style>' . $styles . '</style>';
|
187 |
+
}
|
188 |
+
|
189 |
+
$html .= '</div>';
|
190 |
+
|
191 |
+
echo apply_filters('fluenform_rendering_field_html_' . $elementName, $html, $data, $form);
|
192 |
+
}
|
193 |
+
}
|
app/Services/FormBuilder/CountryNames.php
CHANGED
@@ -267,4 +267,9 @@ $country_names = array(
|
|
267 |
'ZW' => __('Zimbabwe', 'fluentform'),
|
268 |
);
|
269 |
|
270 |
-
|
|
|
|
|
|
|
|
|
|
267 |
'ZW' => __('Zimbabwe', 'fluentform'),
|
268 |
);
|
269 |
|
270 |
+
|
271 |
+
$country_names = apply_filters('fluent_editor_countries', $country_names);
|
272 |
+
|
273 |
+
asort($country_names);
|
274 |
+
|
275 |
+
return $country_names;
|
app/Services/FormBuilder/DefaultElements.php
CHANGED
@@ -1140,7 +1140,7 @@ $defaultElements = array(
|
|
1140 |
),
|
1141 |
'settings' => array(
|
1142 |
'label' => __('GDPR Agreement', 'fluentform'),
|
1143 |
-
'tnc_html' => __('I consent to
|
1144 |
'admin_field_label' => __('GDPR Agreement', 'fluentform'),
|
1145 |
'has_checkbox' => true,
|
1146 |
'container_class' => '',
|
1140 |
),
|
1141 |
'settings' => array(
|
1142 |
'label' => __('GDPR Agreement', 'fluentform'),
|
1143 |
+
'tnc_html' => __('I consent to have this website store my submitted information so they can respond to my inquiry', 'fluentform'),
|
1144 |
'admin_field_label' => __('GDPR Agreement', 'fluentform'),
|
1145 |
'has_checkbox' => true,
|
1146 |
'container_class' => '',
|
app/Services/FormBuilder/ElementSettingsPlacement.php
CHANGED
@@ -11,8 +11,7 @@
|
|
11 |
* @version 2.5.0
|
12 |
*/
|
13 |
|
14 |
-
|
15 |
-
$element_settings_placement = array(
|
16 |
'input_name' => array(
|
17 |
'general' => array(
|
18 |
'admin_field_label',
|
@@ -481,6 +480,3 @@ $element_settings_placement = array(
|
|
481 |
)
|
482 |
);
|
483 |
|
484 |
-
return apply_filters(
|
485 |
-
'fluent_editor_element_settings_placement', $element_settings_placement
|
486 |
-
);
|
11 |
* @version 2.5.0
|
12 |
*/
|
13 |
|
14 |
+
return array(
|
|
|
15 |
'input_name' => array(
|
16 |
'general' => array(
|
17 |
'admin_field_label',
|
480 |
)
|
481 |
);
|
482 |
|
|
|
|
|
|
app/Services/FormBuilder/ShortCodeParser.php
CHANGED
@@ -380,5 +380,16 @@ class ShortCodeParser
|
|
380 |
{
|
381 |
return static::$store['original_inputs'];
|
382 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
}
|
384 |
|
380 |
{
|
381 |
return static::$store['original_inputs'];
|
382 |
}
|
383 |
+
|
384 |
+
public static function resetData()
|
385 |
+
{
|
386 |
+
self::$form = null;
|
387 |
+
self::$entry = null;
|
388 |
+
self::$browser = null;
|
389 |
+
self::$formFields = null;
|
390 |
+
|
391 |
+
FormFieldsParser::resetData();
|
392 |
+
FormDataParser::resetData();
|
393 |
+
}
|
394 |
}
|
395 |
|
config/app.php
CHANGED
@@ -16,6 +16,7 @@ return array(
|
|
16 |
'FluentForm\App\Providers\CommonProvider',
|
17 |
'FluentForm\App\Providers\FormBuilderProvider',
|
18 |
'FluentForm\App\Providers\WpFluentProvider',
|
|
|
19 |
),
|
20 |
|
21 |
'backend' => array(
|
16 |
'FluentForm\App\Providers\CommonProvider',
|
17 |
'FluentForm\App\Providers\FormBuilderProvider',
|
18 |
'FluentForm\App\Providers\WpFluentProvider',
|
19 |
+
'FluentForm\App\Providers\FluentConversationalProvider',
|
20 |
),
|
21 |
|
22 |
'backend' => array(
|
fluentform.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Fluent Forms
|
4 |
Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
|
5 |
-
Version:
|
6 |
Author: Contact Form - WPManageNinja LLC
|
7 |
Author URI: https://fluentforms.com
|
8 |
Plugin URI: https://wpmanageninja.com/wp-fluent-form/
|
@@ -16,7 +16,7 @@ defined('ABSPATH') or die;
|
|
16 |
defined('FLUENTFORM') or define('FLUENTFORM', true);
|
17 |
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
|
18 |
|
19 |
-
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '
|
20 |
|
21 |
if (!defined('FLUENTFORM_HAS_NIA')) {
|
22 |
define('FLUENTFORM_HAS_NIA', true);
|
2 |
/*
|
3 |
Plugin Name: Fluent Forms
|
4 |
Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
|
5 |
+
Version: 4.0.0
|
6 |
Author: Contact Form - WPManageNinja LLC
|
7 |
Author URI: https://fluentforms.com
|
8 |
Plugin URI: https://wpmanageninja.com/wp-fluent-form/
|
16 |
defined('FLUENTFORM') or define('FLUENTFORM', true);
|
17 |
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
|
18 |
|
19 |
+
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '4.0.0');
|
20 |
|
21 |
if (!defined('FLUENTFORM_HAS_NIA')) {
|
22 |
define('FLUENTFORM_HAS_NIA', true);
|
glue.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
"plugin_name": "FluentForm",
|
3 |
"plugin_slug": "fluentform",
|
4 |
"plugin_text_domain": "fluentform",
|
5 |
-
"plugin_version": "
|
6 |
"plugin_description": "The most advanced drag and drop form builder plugin for WordPress",
|
7 |
"plugin_uri": "https://wpfluentforms.com",
|
8 |
"plugin_license": "GPLv2 or later",
|
2 |
"plugin_name": "FluentForm",
|
3 |
"plugin_slug": "fluentform",
|
4 |
"plugin_text_domain": "fluentform",
|
5 |
+
"plugin_version": "4.0.0",
|
6 |
"plugin_description": "The most advanced drag and drop form builder plugin for WordPress",
|
7 |
"plugin_uri": "https://wpfluentforms.com",
|
8 |
"plugin_license": "GPLv2 or later",
|
public/css/conversational_design.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.el-form--inline .el-form-item,.el-form--inline .el-form-item__content{display:inline-block;vertical-align:top}.el-form-item:after,.el-form-item__content:after{clear:both}.el-form--label-left .el-form-item__label{text-align:left}.el-form--label-top .el-form-item__label{float:none;display:inline-block;text-align:left;padding:0 0 10px}.el-form--inline .el-form-item{margin-right:10px}.el-form--inline .el-form-item__label{float:none;display:inline-block}.el-form--inline.el-form--label-top .el-form-item__content{display:block}.el-form-item{margin-bottom:22px}.el-form-item:after,.el-form-item:before{display:table;content:""}.el-form-item .el-form-item{margin-bottom:0}.el-form-item--mini.el-form-item,.el-form-item--small.el-form-item{margin-bottom:18px}.el-form-item .el-input__validateIcon{display:none}.el-form-item--medium .el-form-item__content,.el-form-item--medium .el-form-item__label{line-height:36px}.el-form-item--small .el-form-item__content,.el-form-item--small .el-form-item__label{line-height:32px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item--mini .el-form-item__content,.el-form-item--mini .el-form-item__label{line-height:28px}.el-form-item--mini .el-form-item__error{padding-top:1px}.el-form-item__label-wrap{float:left}.el-form-item__label-wrap .el-form-item__label{display:inline-block;float:none}.el-form-item__label{text-align:right;vertical-align:middle;float:left;font-size:14px;color:#606266;line-height:40px;padding:0 12px 0 0;box-sizing:border-box}.el-form-item__content{line-height:40px;position:relative;font-size:14px}.el-form-item__content:after,.el-form-item__content:before{display:table;content:""}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:#f56c6c;font-size:12px;line-height:1;padding-top:4px;position:absolute;top:100%;left:0}.el-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{content:"*";color:#f56c6c;margin-right:4px}.el-form-item.is-error .el-input__inner,.el-form-item.is-error .el-input__inner:focus,.el-form-item.is-error .el-textarea__inner,.el-form-item.is-error .el-textarea__inner:focus{border-color:#f56c6c}.el-form-item.is-error .el-input-group__append .el-input__inner,.el-form-item.is-error .el-input-group__prepend .el-input__inner{border-color:transparent}.el-form-item.is-error .el-input__validateIcon{color:#f56c6c}.el-form-item--feedback .el-input__validateIcon{display:inline-block}.el-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.el-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap}.el-color-predefine__color-selector{margin:0 0 8px 8px;width:20px;height:20px;border-radius:4px;cursor:pointer}.el-color-predefine__color-selector:nth-child(10n+1){margin-left:0}.el-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px #409eff}.el-color-predefine__color-selector>div{display:flex;height:100%;border-radius:3px}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px}.el-color-hue-slider__bar{position:relative;background:linear-gradient(90deg,red,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red);height:100%}.el-color-hue-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(180deg,red,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-svpanel{position:relative;width:280px;height:180px}.el-color-svpanel__black,.el-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.el-color-svpanel__white{background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.el-color-svpanel__black{background:linear-gradient(0deg,#000,transparent)}.el-color-svpanel__cursor{position:absolute}.el-color-svpanel__cursor>div{cursor:head;width:4px;height:4px;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;transform:translate(-2px,-2px)}.el-color-alpha-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-alpha-slider__bar{position:relative;background:linear-gradient(90deg,hsla(0,0%,100%,0),#fff);height:100%}.el-color-alpha-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-alpha-slider.is-vertical{width:20px;height:180px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff)}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-dropdown{width:300px}.el-color-dropdown__main-wrapper{margin-bottom:6px}.el-color-dropdown__main-wrapper:after{content:"";display:table;clear:both}.el-color-dropdown__btns{margin-top:6px;text-align:right}.el-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:#000;width:160px}.el-color-dropdown__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-color-dropdown__btn[disabled]{color:#ccc;cursor:not-allowed}.el-color-dropdown__btn:hover{color:#409eff;border-color:#409eff}.el-color-dropdown__link-btn{cursor:pointer;color:#409eff;text-decoration:none;padding:15px;font-size:12px}.el-color-dropdown__link-btn:hover{color:tint(#409eff,20%)}.el-color-picker{display:inline-block;position:relative;line-height:normal;height:40px}.el-color-picker.is-disabled .el-color-picker__trigger{cursor:not-allowed}.el-color-picker--medium{height:36px}.el-color-picker--medium .el-color-picker__trigger{height:36px;width:36px}.el-color-picker--medium .el-color-picker__mask{height:34px;width:34px}.el-color-picker--small{height:32px}.el-color-picker--small .el-color-picker__trigger{height:32px;width:32px}.el-color-picker--small .el-color-picker__mask{height:30px;width:30px}.el-color-picker--small .el-color-picker__empty,.el-color-picker--small .el-color-picker__icon{transform:translate3d(-50%,-50%,0) scale(.8)}.el-color-picker--mini{height:28px}.el-color-picker--mini .el-color-picker__trigger{height:28px;width:28px}.el-color-picker--mini .el-color-picker__mask{height:26px;width:26px}.el-color-picker--mini .el-color-picker__empty,.el-color-picker--mini .el-color-picker__icon{transform:translate3d(-50%,-50%,0) scale(.8)}.el-color-picker__mask{height:38px;width:38px;border-radius:4px;position:absolute;top:1px;left:1px;z-index:1;cursor:not-allowed;background-color:hsla(0,0%,100%,.7)}.el-color-picker__trigger{display:inline-block;box-sizing:border-box;height:40px;width:40px;padding:4px;border:1px solid #e6e6e6;border-radius:4px;font-size:0;position:relative;cursor:pointer}.el-color-picker__color{position:relative;display:block;box-sizing:border-box;border:1px solid #999;border-radius:2px;width:100%;height:100%;text-align:center}.el-color-picker__color.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-picker__color-inner{position:absolute;left:0;top:0;right:0;bottom:0}.el-color-picker__empty,.el-color-picker__icon{top:50%;left:50%;font-size:12px;position:absolute}.el-color-picker__empty{color:#999;transform:translate3d(-50%,-50%,0)}.el-color-picker__icon{display:inline-block;width:100%;transform:translate3d(-50%,-50%,0);color:#fff;text-align:center}.el-color-picker__panel{position:absolute;z-index:10;padding:6px;box-sizing:content-box;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:14px}.el-textarea__inner{display:block;resize:vertical;padding:5px 15px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;color:#606266;background-color:#fff;background-image:none;border:1px solid #dcdfe6;border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea__inner:hover{border-color:#c0c4cc}.el-textarea__inner:focus{outline:0;border-color:#409eff}.el-textarea .el-input__count{color:#909399;background:#fff;position:absolute;font-size:12px;bottom:5px;right:10px}.el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea.is-exceed .el-textarea__inner{border-color:#f56c6c}.el-textarea.is-exceed .el-input__count{color:#f56c6c}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input::-webkit-scrollbar{z-index:11;width:6px}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:#fff}.el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.el-input .el-input__clear{color:#c0c4cc;font-size:14px;cursor:pointer;transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-input .el-input__clear:hover{color:#909399}.el-input .el-input__count{height:100%;display:inline-flex;align-items:center;color:#909399;font-size:12px}.el-input .el-input__count .el-input__count-inner{background:#fff;line-height:normal;display:inline-block;padding:0 5px}.el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #dcdfe6;box-sizing:border-box;color:#606266;display:inline-block;font-size:inherit;height:40px;line-height:40px;outline:0;padding:0 15px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__prefix,.el-input__suffix{position:absolute;top:0;-webkit-transition:all .3s;height:100%;color:#c0c4cc;text-align:center}.el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input__inner::placeholder{color:#c0c4cc}.el-input__inner:hover{border-color:#c0c4cc}.el-input.is-active .el-input__inner,.el-input__inner:focus{border-color:#409eff;outline:0}.el-input__suffix{right:5px;transition:all .3s;pointer-events:none}.el-input__suffix-inner{pointer-events:all}.el-input__prefix{left:5px;transition:all .3s}.el-input__icon{height:100%;width:25px;text-align:center;transition:all .3s;line-height:40px}.el-input__icon:after{content:"";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__validateIcon{pointer-events:none}.el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-input.is-exceed .el-input__inner{border-color:#f56c6c}.el-input.is-exceed .el-input__suffix .el-input__count{color:#f56c6c}.el-input--suffix .el-input__inner{padding-right:30px}.el-input--prefix .el-input__inner{padding-left:30px}.el-input--medium{font-size:14px}.el-input--medium .el-input__inner{height:36px;line-height:36px}.el-input--medium .el-input__icon{line-height:36px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:32px;line-height:32px}.el-input--small .el-input__icon{line-height:32px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:28px;line-height:28px}.el-input--mini .el-input__icon{line-height:28px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate;border-spacing:0}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:-10px -20px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-input-group--append .el-select .el-input.is-focus .el-input__inner,.el-input-group--prepend .el-select .el-input.is-focus .el-input__inner{border-color:transparent}.el-input__inner::-ms-clear{display:none;width:0;height:0}.el-input-number{position:relative;display:inline-block;width:180px;line-height:38px}.el-input-number .el-input{display:block}.el-input-number .el-input__inner{-webkit-appearance:none;padding-left:50px;padding-right:50px;text-align:center}.el-input-number__decrease,.el-input-number__increase{position:absolute;z-index:1;top:1px;width:40px;height:auto;text-align:center;background:#f5f7fa;color:#606266;cursor:pointer;font-size:13px}.el-input-number__decrease:hover,.el-input-number__increase:hover{color:#409eff}.el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled),.el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled){border-color:#409eff}.el-input-number__decrease.is-disabled,.el-input-number__increase.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-input-number__increase{right:1px;border-radius:0 4px 4px 0;border-left:1px solid #dcdfe6}.el-input-number__decrease{left:1px;border-radius:4px 0 0 4px;border-right:1px solid #dcdfe6}.el-input-number.is-disabled .el-input-number__decrease,.el-input-number.is-disabled .el-input-number__increase{border-color:#e4e7ed;color:#e4e7ed}.el-input-number.is-disabled .el-input-number__decrease:hover,.el-input-number.is-disabled .el-input-number__increase:hover{color:#e4e7ed;cursor:not-allowed}.el-input-number--medium{width:200px;line-height:34px}.el-input-number--medium .el-input-number__decrease,.el-input-number--medium .el-input-number__increase{width:36px;font-size:14px}.el-input-number--medium .el-input__inner{padding-left:43px;padding-right:43px}.el-input-number--small{width:130px;line-height:30px}.el-input-number--small .el-input-number__decrease,.el-input-number--small .el-input-number__increase{width:32px;font-size:13px}.el-input-number--small .el-input-number__decrease [class*=el-icon],.el-input-number--small .el-input-number__increase [class*=el-icon]{transform:scale(.9)}.el-input-number--small .el-input__inner{padding-left:39px;padding-right:39px}.el-input-number--mini{width:130px;line-height:26px}.el-input-number--mini .el-input-number__decrease,.el-input-number--mini .el-input-number__increase{width:28px;font-size:12px}.el-input-number--mini .el-input-number__decrease [class*=el-icon],.el-input-number--mini .el-input-number__increase [class*=el-icon]{transform:scale(.8)}.el-input-number--mini .el-input__inner{padding-left:35px;padding-right:35px}.el-input-number.is-without-controls .el-input__inner{padding-left:15px;padding-right:15px}.el-input-number.is-controls-right .el-input__inner{padding-left:15px;padding-right:50px}.el-input-number.is-controls-right .el-input-number__decrease,.el-input-number.is-controls-right .el-input-number__increase{height:auto;line-height:19px}.el-input-number.is-controls-right .el-input-number__decrease [class*=el-icon],.el-input-number.is-controls-right .el-input-number__increase [class*=el-icon]{transform:scale(.8)}.el-input-number.is-controls-right .el-input-number__increase{border-radius:0 4px 0 0;border-bottom:1px solid #dcdfe6}.el-input-number.is-controls-right .el-input-number__decrease{right:1px;bottom:1px;top:auto;left:auto;border-right:none;border-left:1px solid #dcdfe6;border-radius:0 0 4px}.el-input-number.is-controls-right[class*=medium] [class*=decrease],.el-input-number.is-controls-right[class*=medium] [class*=increase]{line-height:17px}.el-input-number.is-controls-right[class*=small] [class*=decrease],.el-input-number.is-controls-right[class*=small] [class*=increase]{line-height:15px}.el-input-number.is-controls-right[class*=mini] [class*=decrease],.el-input-number.is-controls-right[class*=mini] [class*=increase]{line-height:13px}.el-tooltip:focus:hover,.el-tooltip:focus:not(.focusing){outline-width:0}.el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-height:1.2;min-width:10px;word-wrap:break-word}.el-tooltip__popper .popper__arrow,.el-tooltip__popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-tooltip__popper .popper__arrow{border-width:6px}.el-tooltip__popper .popper__arrow:after{content:" ";border-width:5px}.el-tooltip__popper[x-placement^=top]{margin-bottom:12px}.el-tooltip__popper[x-placement^=top] .popper__arrow{bottom:-6px;border-top-color:#303133;border-bottom-width:0}.el-tooltip__popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-5px;border-top-color:#303133;border-bottom-width:0}.el-tooltip__popper[x-placement^=bottom]{margin-top:12px}.el-tooltip__popper[x-placement^=bottom] .popper__arrow{top:-6px;border-top-width:0;border-bottom-color:#303133}.el-tooltip__popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#303133}.el-tooltip__popper[x-placement^=right]{margin-left:12px}.el-tooltip__popper[x-placement^=right] .popper__arrow{left:-6px;border-right-color:#303133;border-left-width:0}.el-tooltip__popper[x-placement^=right] .popper__arrow:after{bottom:-5px;left:1px;border-right-color:#303133;border-left-width:0}.el-tooltip__popper[x-placement^=left]{margin-right:12px}.el-tooltip__popper[x-placement^=left] .popper__arrow{right:-6px;border-right-width:0;border-left-color:#303133}.el-tooltip__popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-5px;margin-left:-5px;border-right-width:0;border-left-color:#303133}.el-tooltip__popper.is-dark{background:#303133;color:#fff}.el-tooltip__popper.is-light{background:#fff;border:1px solid #303133}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow{border-top-color:#303133}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow:after{border-top-color:#fff}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow{border-bottom-color:#303133}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow:after{border-bottom-color:#fff}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow{border-left-color:#303133}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow:after{border-left-color:#fff}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow{border-right-color:#303133}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow:after{border-right-color:#fff}.el-slider:after,.el-slider:before{display:table;content:""}.el-slider__button-wrapper .el-tooltip,.el-slider__button-wrapper:after{vertical-align:middle;display:inline-block}.el-slider:after{clear:both}.el-slider__runway{width:100%;height:6px;margin:16px 0;background-color:#e4e7ed;border-radius:3px;position:relative;cursor:pointer;vertical-align:middle}.el-slider__runway.show-input{margin-right:160px;width:auto}.el-slider__runway.disabled{cursor:default}.el-slider__runway.disabled .el-slider__bar{background-color:#c0c4cc}.el-slider__runway.disabled .el-slider__button{border-color:#c0c4cc}.el-slider__runway.disabled .el-slider__button-wrapper.dragging,.el-slider__runway.disabled .el-slider__button-wrapper.hover,.el-slider__runway.disabled .el-slider__button-wrapper:hover{cursor:not-allowed}.el-slider__runway.disabled .el-slider__button.dragging,.el-slider__runway.disabled .el-slider__button.hover,.el-slider__runway.disabled .el-slider__button:hover{transform:scale(1);cursor:not-allowed}.el-slider__button-wrapper,.el-slider__stop{-webkit-transform:translateX(-50%);position:absolute}.el-slider__input{float:right;margin-top:3px;width:130px}.el-slider__input.el-input-number--mini{margin-top:5px}.el-slider__input.el-input-number--medium{margin-top:0}.el-slider__input.el-input-number--large{margin-top:-2px}.el-slider__bar{height:6px;background-color:#409eff;border-top-left-radius:3px;border-bottom-left-radius:3px;position:absolute}.el-slider__button-wrapper{height:36px;width:36px;z-index:1001;top:-15px;transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:normal}.el-slider__button-wrapper:after{content:"";height:100%}.el-slider__button-wrapper.hover,.el-slider__button-wrapper:hover{cursor:-webkit-grab;cursor:grab}.el-slider__button-wrapper.dragging{cursor:-webkit-grabbing;cursor:grabbing}.el-slider__button{width:16px;height:16px;border:2px solid #409eff;background-color:#fff;border-radius:50%;transition:.2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.el-slider__button.dragging,.el-slider__button.hover,.el-slider__button:hover{transform:scale(1.2)}.el-slider__button.hover,.el-slider__button:hover{cursor:-webkit-grab;cursor:grab}.el-slider__button.dragging{cursor:-webkit-grabbing;cursor:grabbing}.el-slider__stop{height:6px;width:6px;border-radius:100%;background-color:#fff;transform:translateX(-50%)}.el-slider__marks{top:0;left:12px;width:18px;height:100%}.el-slider__marks-text{position:absolute;transform:translateX(-50%);font-size:14px;color:#909399;margin-top:15px}.el-slider.is-vertical{position:relative}.el-slider.is-vertical .el-slider__runway{width:6px;height:100%;margin:0 16px}.el-slider.is-vertical .el-slider__bar{width:6px;height:auto;border-radius:0 0 3px 3px}.el-slider.is-vertical .el-slider__button-wrapper{top:auto;left:-15px;transform:translateY(50%)}.el-slider.is-vertical .el-slider__stop{transform:translateY(50%)}.el-slider.is-vertical.el-slider--with-input{padding-bottom:58px}.el-slider.is-vertical.el-slider--with-input .el-slider__input{overflow:visible;float:none;position:absolute;bottom:22px;width:36px;margin-top:15px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input__inner{text-align:center;padding-left:5px;padding-right:5px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{top:32px;margin-top:-1px;border:1px solid #dcdfe6;line-height:20px;box-sizing:border-box;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease{width:18px;right:18px;border-bottom-left-radius:4px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{width:19px;border-bottom-right-radius:4px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase~.el-input .el-input__inner{border-bottom-left-radius:0;border-bottom-right-radius:0}.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__increase{border-color:#c0c4cc}.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase{border-color:#409eff}.el-slider.is-vertical .el-slider__marks-text{margin-top:0;left:15px;transform:translateY(50%)}.el-button-group>.el-button.is-active,.el-button-group>.el-button.is-disabled,.el-button-group>.el-button:active,.el-button-group>.el-button:focus,.el-button-group>.el-button:hover{z-index:1}.el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:4px}.el-button+.el-button{margin-left:10px}.el-button:focus,.el-button:hover{color:#409eff;border-color:#c6e2ff;background-color:#ecf5ff}.el-button:active{color:#3a8ee6;border-color:#3a8ee6;outline:0}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon-]+span{margin-left:5px}.el-button.is-plain:focus,.el-button.is-plain:hover{background:#fff;border-color:#409eff;color:#409eff}.el-button.is-active,.el-button.is-plain:active{color:#3a8ee6;border-color:#3a8ee6}.el-button.is-plain:active{background:#fff;outline:0}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5}.el-button.is-disabled.el-button--text{background-color:transparent}.el-button.is-disabled.is-plain,.el-button.is-disabled.is-plain:focus,.el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#ebeef5;color:#c0c4cc}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{pointer-events:none;content:"";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:hsla(0,0%,100%,.35)}.el-button.is-round{border-radius:20px;padding:12px 23px}.el-button.is-circle{border-radius:50%;padding:12px}.el-button--primary{color:#fff;background-color:#409eff;border-color:#409eff}.el-button--primary:focus,.el-button--primary:hover{background:#66b1ff;border-color:#66b1ff;color:#fff}.el-button--primary.is-active,.el-button--primary:active{background:#3a8ee6;border-color:#3a8ee6;color:#fff}.el-button--primary:active{outline:0}.el-button--primary.is-disabled,.el-button--primary.is-disabled:active,.el-button--primary.is-disabled:focus,.el-button--primary.is-disabled:hover{color:#fff;background-color:#a0cfff;border-color:#a0cfff}.el-button--primary.is-plain{color:#409eff;background:#ecf5ff;border-color:#b3d8ff}.el-button--primary.is-plain:focus,.el-button--primary.is-plain:hover{background:#409eff;border-color:#409eff;color:#fff}.el-button--primary.is-plain:active{background:#3a8ee6;border-color:#3a8ee6;color:#fff;outline:0}.el-button--primary.is-plain.is-disabled,.el-button--primary.is-plain.is-disabled:active,.el-button--primary.is-plain.is-disabled:focus,.el-button--primary.is-plain.is-disabled:hover{color:#8cc5ff;background-color:#ecf5ff;border-color:#d9ecff}.el-button--success{color:#fff;background-color:#67c23a;border-color:#67c23a}.el-button--success:focus,.el-button--success:hover{background:#85ce61;border-color:#85ce61;color:#fff}.el-button--success.is-active,.el-button--success:active{background:#5daf34;border-color:#5daf34;color:#fff}.el-button--success:active{outline:0}.el-button--success.is-disabled,.el-button--success.is-disabled:active,.el-button--success.is-disabled:focus,.el-button--success.is-disabled:hover{color:#fff;background-color:#b3e19d;border-color:#b3e19d}.el-button--success.is-plain{color:#67c23a;background:#f0f9eb;border-color:#c2e7b0}.el-button--success.is-plain:focus,.el-button--success.is-plain:hover{background:#67c23a;border-color:#67c23a;color:#fff}.el-button--success.is-plain:active{background:#5daf34;border-color:#5daf34;color:#fff;outline:0}.el-button--success.is-plain.is-disabled,.el-button--success.is-plain.is-disabled:active,.el-button--success.is-plain.is-disabled:focus,.el-button--success.is-plain.is-disabled:hover{color:#a4da89;background-color:#f0f9eb;border-color:#e1f3d8}.el-button--warning{color:#fff;background-color:#e6a23c;border-color:#e6a23c}.el-button--warning:focus,.el-button--warning:hover{background:#ebb563;border-color:#ebb563;color:#fff}.el-button--warning.is-active,.el-button--warning:active{background:#cf9236;border-color:#cf9236;color:#fff}.el-button--warning:active{outline:0}.el-button--warning.is-disabled,.el-button--warning.is-disabled:active,.el-button--warning.is-disabled:focus,.el-button--warning.is-disabled:hover{color:#fff;background-color:#f3d19e;border-color:#f3d19e}.el-button--warning.is-plain{color:#e6a23c;background:#fdf6ec;border-color:#f5dab1}.el-button--warning.is-plain:focus,.el-button--warning.is-plain:hover{background:#e6a23c;border-color:#e6a23c;color:#fff}.el-button--warning.is-plain:active{background:#cf9236;border-color:#cf9236;color:#fff;outline:0}.el-button--warning.is-plain.is-disabled,.el-button--warning.is-plain.is-disabled:active,.el-button--warning.is-plain.is-disabled:focus,.el-button--warning.is-plain.is-disabled:hover{color:#f0c78a;background-color:#fdf6ec;border-color:#faecd8}.el-button--danger{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.el-button--danger:focus,.el-button--danger:hover{background:#f78989;border-color:#f78989;color:#fff}.el-button--danger.is-active,.el-button--danger:active{background:#dd6161;border-color:#dd6161;color:#fff}.el-button--danger:active{outline:0}.el-button--danger.is-disabled,.el-button--danger.is-disabled:active,.el-button--danger.is-disabled:focus,.el-button--danger.is-disabled:hover{color:#fff;background-color:#fab6b6;border-color:#fab6b6}.el-button--danger.is-plain{color:#f56c6c;background:#fef0f0;border-color:#fbc4c4}.el-button--danger.is-plain:focus,.el-button--danger.is-plain:hover{background:#f56c6c;border-color:#f56c6c;color:#fff}.el-button--danger.is-plain:active{background:#dd6161;border-color:#dd6161;color:#fff;outline:0}.el-button--danger.is-plain.is-disabled,.el-button--danger.is-plain.is-disabled:active,.el-button--danger.is-plain.is-disabled:focus,.el-button--danger.is-plain.is-disabled:hover{color:#f9a7a7;background-color:#fef0f0;border-color:#fde2e2}.el-button--info{color:#fff;background-color:#909399;border-color:#909399}.el-button--info:focus,.el-button--info:hover{background:#a6a9ad;border-color:#a6a9ad;color:#fff}.el-button--info.is-active,.el-button--info:active{background:#82848a;border-color:#82848a;color:#fff}.el-button--info:active{outline:0}.el-button--info.is-disabled,.el-button--info.is-disabled:active,.el-button--info.is-disabled:focus,.el-button--info.is-disabled:hover{color:#fff;background-color:#c8c9cc;border-color:#c8c9cc}.el-button--info.is-plain{color:#909399;background:#f4f4f5;border-color:#d3d4d6}.el-button--info.is-plain:focus,.el-button--info.is-plain:hover{background:#909399;border-color:#909399;color:#fff}.el-button--info.is-plain:active{background:#82848a;border-color:#82848a;color:#fff;outline:0}.el-button--info.is-plain.is-disabled,.el-button--info.is-plain.is-disabled:active,.el-button--info.is-plain.is-disabled:focus,.el-button--info.is-plain.is-disabled:hover{color:#bcbec2;background-color:#f4f4f5;border-color:#e9e9eb}.el-button--text,.el-button--text.is-disabled,.el-button--text.is-disabled:focus,.el-button--text.is-disabled:hover,.el-button--text:active{border-color:transparent}.el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.el-button--mini,.el-button--small{font-size:12px;border-radius:3px}.el-button--medium.is-round{padding:10px 20px}.el-button--medium.is-circle{padding:10px}.el-button--small,.el-button--small.is-round{padding:9px 15px}.el-button--small.is-circle{padding:9px}.el-button--mini,.el-button--mini.is-round{padding:7px 15px}.el-button--mini.is-circle{padding:7px}.el-button--text{color:#409eff;background:0 0;padding-left:0;padding-right:0}.el-button--text:focus,.el-button--text:hover{color:#66b1ff;border-color:transparent;background-color:transparent}.el-button--text:active{color:#3a8ee6;background-color:transparent}.el-button-group{display:inline-block;vertical-align:middle}.el-button-group:after,.el-button-group:before{display:table;content:""}.el-button-group:after{clear:both}.el-button-group>.el-button{float:left;position:relative}.el-button-group>.el-button+.el-button{margin-left:0}.el-button-group>.el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group>.el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group>.el-button:first-child:last-child{border-radius:4px}.el-button-group>.el-button:first-child:last-child.is-round{border-radius:20px}.el-button-group>.el-button:first-child:last-child.is-circle{border-radius:50%}.el-button-group>.el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group>.el-button:not(:last-child){margin-right:-1px}.el-button-group>.el-dropdown>.el-button{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:14px}.el-textarea__inner{display:block;resize:vertical;padding:5px 15px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;color:#606266;background-color:#fff;background-image:none;border:1px solid #dcdfe6;border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea__inner:hover{border-color:#c0c4cc}.el-textarea__inner:focus{outline:0;border-color:#409eff}.el-textarea .el-input__count{color:#909399;background:#fff;position:absolute;font-size:12px;bottom:5px;right:10px}.el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea.is-exceed .el-textarea__inner{border-color:#f56c6c}.el-textarea.is-exceed .el-input__count{color:#f56c6c}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input::-webkit-scrollbar{z-index:11;width:6px}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:#fff}.el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.el-input .el-input__clear{color:#c0c4cc;font-size:14px;cursor:pointer;transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-input .el-input__clear:hover{color:#909399}.el-input .el-input__count{height:100%;display:inline-flex;align-items:center;color:#909399;font-size:12px}.el-input .el-input__count .el-input__count-inner{background:#fff;line-height:normal;display:inline-block;padding:0 5px}.el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #dcdfe6;box-sizing:border-box;color:#606266;display:inline-block;font-size:inherit;height:40px;line-height:40px;outline:0;padding:0 15px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__prefix,.el-input__suffix{position:absolute;top:0;-webkit-transition:all .3s;text-align:center;height:100%;color:#c0c4cc}.el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input__inner::placeholder{color:#c0c4cc}.el-input__inner:hover{border-color:#c0c4cc}.el-input.is-active .el-input__inner,.el-input__inner:focus{border-color:#409eff;outline:0}.el-input__suffix{right:5px;transition:all .3s;pointer-events:none}.el-input__suffix-inner{pointer-events:all}.el-input__prefix{left:5px;transition:all .3s}.el-input__icon{height:100%;width:25px;text-align:center;transition:all .3s;line-height:40px}.el-input__icon:after{content:"";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__validateIcon{pointer-events:none}.el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-input.is-exceed .el-input__inner{border-color:#f56c6c}.el-input.is-exceed .el-input__suffix .el-input__count{color:#f56c6c}.el-input--suffix .el-input__inner{padding-right:30px}.el-input--prefix .el-input__inner{padding-left:30px}.el-input--medium{font-size:14px}.el-input--medium .el-input__inner{height:36px;line-height:36px}.el-input--medium .el-input__icon{line-height:36px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:32px;line-height:32px}.el-input--small .el-input__icon{line-height:32px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:28px;line-height:28px}.el-input--mini .el-input__icon{line-height:28px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate;border-spacing:0}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:-10px -20px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-input-group--append .el-select .el-input.is-focus .el-input__inner,.el-input-group--prepend .el-select .el-input.is-focus .el-input__inner{border-color:transparent}.el-input__inner::-ms-clear{display:none;width:0;height:0}.el-row{position:relative;box-sizing:border-box}.el-row:after,.el-row:before{display:table;content:""}.el-row:after{clear:both}.el-row--flex{display:flex}.el-row--flex:after,.el-row--flex:before{display:none}.el-row--flex.is-justify-center{justify-content:center}.el-row--flex.is-justify-end{justify-content:flex-end}.el-row--flex.is-justify-space-between{justify-content:space-between}.el-row--flex.is-justify-space-around{justify-content:space-around}.el-row--flex.is-align-middle{align-items:center}.el-row--flex.is-align-bottom{align-items:flex-end}.el-col-pull-0,.el-col-pull-1,.el-col-pull-2,.el-col-pull-3,.el-col-pull-4,.el-col-pull-5,.el-col-pull-6,.el-col-pull-7,.el-col-pull-8,.el-col-pull-9,.el-col-pull-10,.el-col-pull-11,.el-col-pull-13,.el-col-pull-14,.el-col-pull-15,.el-col-pull-16,.el-col-pull-17,.el-col-pull-18,.el-col-pull-19,.el-col-pull-20,.el-col-pull-21,.el-col-pull-22,.el-col-pull-23,.el-col-pull-24,.el-col-push-0,.el-col-push-1,.el-col-push-2,.el-col-push-3,.el-col-push-4,.el-col-push-5,.el-col-push-6,.el-col-push-7,.el-col-push-8,.el-col-push-9,.el-col-push-10,.el-col-push-11,.el-col-push-12,.el-col-push-13,.el-col-push-14,.el-col-push-15,.el-col-push-16,.el-col-push-17,.el-col-push-18,.el-col-push-19,.el-col-push-20,.el-col-push-21,.el-col-push-22,.el-col-push-23,.el-col-push-24{position:relative}[class*=el-col-]{float:left;box-sizing:border-box}.el-col-0{display:none;width:0}.el-col-offset-0{margin-left:0}.el-col-pull-0{right:0}.el-col-push-0{left:0}.el-col-1{width:4.16667%}.el-col-offset-1{margin-left:4.16667%}.el-col-pull-1{right:4.16667%}.el-col-push-1{left:4.16667%}.el-col-2{width:8.33333%}.el-col-offset-2{margin-left:8.33333%}.el-col-pull-2{right:8.33333%}.el-col-push-2{left:8.33333%}.el-col-3{width:12.5%}.el-col-offset-3{margin-left:12.5%}.el-col-pull-3{right:12.5%}.el-col-push-3{left:12.5%}.el-col-4{width:16.66667%}.el-col-offset-4{margin-left:16.66667%}.el-col-pull-4{right:16.66667%}.el-col-push-4{left:16.66667%}.el-col-5{width:20.83333%}.el-col-offset-5{margin-left:20.83333%}.el-col-pull-5{right:20.83333%}.el-col-push-5{left:20.83333%}.el-col-6{width:25%}.el-col-offset-6{margin-left:25%}.el-col-pull-6{right:25%}.el-col-push-6{left:25%}.el-col-7{width:29.16667%}.el-col-offset-7{margin-left:29.16667%}.el-col-pull-7{right:29.16667%}.el-col-push-7{left:29.16667%}.el-col-8{width:33.33333%}.el-col-offset-8{margin-left:33.33333%}.el-col-pull-8{right:33.33333%}.el-col-push-8{left:33.33333%}.el-col-9{width:37.5%}.el-col-offset-9{margin-left:37.5%}.el-col-pull-9{right:37.5%}.el-col-push-9{left:37.5%}.el-col-10{width:41.66667%}.el-col-offset-10{margin-left:41.66667%}.el-col-pull-10{right:41.66667%}.el-col-push-10{left:41.66667%}.el-col-11{width:45.83333%}.el-col-offset-11{margin-left:45.83333%}.el-col-pull-11{right:45.83333%}.el-col-push-11{left:45.83333%}.el-col-12{width:50%}.el-col-offset-12{margin-left:50%}.el-col-pull-12{position:relative;right:50%}.el-col-push-12{left:50%}.el-col-13{width:54.16667%}.el-col-offset-13{margin-left:54.16667%}.el-col-pull-13{right:54.16667%}.el-col-push-13{left:54.16667%}.el-col-14{width:58.33333%}.el-col-offset-14{margin-left:58.33333%}.el-col-pull-14{right:58.33333%}.el-col-push-14{left:58.33333%}.el-col-15{width:62.5%}.el-col-offset-15{margin-left:62.5%}.el-col-pull-15{right:62.5%}.el-col-push-15{left:62.5%}.el-col-16{width:66.66667%}.el-col-offset-16{margin-left:66.66667%}.el-col-pull-16{right:66.66667%}.el-col-push-16{left:66.66667%}.el-col-17{width:70.83333%}.el-col-offset-17{margin-left:70.83333%}.el-col-pull-17{right:70.83333%}.el-col-push-17{left:70.83333%}.el-col-18{width:75%}.el-col-offset-18{margin-left:75%}.el-col-pull-18{right:75%}.el-col-push-18{left:75%}.el-col-19{width:79.16667%}.el-col-offset-19{margin-left:79.16667%}.el-col-pull-19{right:79.16667%}.el-col-push-19{left:79.16667%}.el-col-20{width:83.33333%}.el-col-offset-20{margin-left:83.33333%}.el-col-pull-20{right:83.33333%}.el-col-push-20{left:83.33333%}.el-col-21{width:87.5%}.el-col-offset-21{margin-left:87.5%}.el-col-pull-21{right:87.5%}.el-col-push-21{left:87.5%}.el-col-22{width:91.66667%}.el-col-offset-22{margin-left:91.66667%}.el-col-pull-22{right:91.66667%}.el-col-push-22{left:91.66667%}.el-col-23{width:95.83333%}.el-col-offset-23{margin-left:95.83333%}.el-col-pull-23{right:95.83333%}.el-col-push-23{left:95.83333%}.el-col-24{width:100%}.el-col-offset-24{margin-left:100%}.el-col-pull-24{right:100%}.el-col-push-24{left:100%}@media only screen and (max-width:767px){.el-col-xs-0{display:none;width:0}.el-col-xs-offset-0{margin-left:0}.el-col-xs-pull-0{position:relative;right:0}.el-col-xs-push-0{position:relative;left:0}.el-col-xs-1{width:4.16667%}.el-col-xs-offset-1{margin-left:4.16667%}.el-col-xs-pull-1{position:relative;right:4.16667%}.el-col-xs-push-1{position:relative;left:4.16667%}.el-col-xs-2{width:8.33333%}.el-col-xs-offset-2{margin-left:8.33333%}.el-col-xs-pull-2{position:relative;right:8.33333%}.el-col-xs-push-2{position:relative;left:8.33333%}.el-col-xs-3{width:12.5%}.el-col-xs-offset-3{margin-left:12.5%}.el-col-xs-pull-3{position:relative;right:12.5%}.el-col-xs-push-3{position:relative;left:12.5%}.el-col-xs-4{width:16.66667%}.el-col-xs-offset-4{margin-left:16.66667%}.el-col-xs-pull-4{position:relative;right:16.66667%}.el-col-xs-push-4{position:relative;left:16.66667%}.el-col-xs-5{width:20.83333%}.el-col-xs-offset-5{margin-left:20.83333%}.el-col-xs-pull-5{position:relative;right:20.83333%}.el-col-xs-push-5{position:relative;left:20.83333%}.el-col-xs-6{width:25%}.el-col-xs-offset-6{margin-left:25%}.el-col-xs-pull-6{position:relative;right:25%}.el-col-xs-push-6{position:relative;left:25%}.el-col-xs-7{width:29.16667%}.el-col-xs-offset-7{margin-left:29.16667%}.el-col-xs-pull-7{position:relative;right:29.16667%}.el-col-xs-push-7{position:relative;left:29.16667%}.el-col-xs-8{width:33.33333%}.el-col-xs-offset-8{margin-left:33.33333%}.el-col-xs-pull-8{position:relative;right:33.33333%}.el-col-xs-push-8{position:relative;left:33.33333%}.el-col-xs-9{width:37.5%}.el-col-xs-offset-9{margin-left:37.5%}.el-col-xs-pull-9{position:relative;right:37.5%}.el-col-xs-push-9{position:relative;left:37.5%}.el-col-xs-10{width:41.66667%}.el-col-xs-offset-10{margin-left:41.66667%}.el-col-xs-pull-10{position:relative;right:41.66667%}.el-col-xs-push-10{position:relative;left:41.66667%}.el-col-xs-11{width:45.83333%}.el-col-xs-offset-11{margin-left:45.83333%}.el-col-xs-pull-11{position:relative;right:45.83333%}.el-col-xs-push-11{position:relative;left:45.83333%}.el-col-xs-12{width:50%}.el-col-xs-offset-12{margin-left:50%}.el-col-xs-pull-12{position:relative;right:50%}.el-col-xs-push-12{position:relative;left:50%}.el-col-xs-13{width:54.16667%}.el-col-xs-offset-13{margin-left:54.16667%}.el-col-xs-pull-13{position:relative;right:54.16667%}.el-col-xs-push-13{position:relative;left:54.16667%}.el-col-xs-14{width:58.33333%}.el-col-xs-offset-14{margin-left:58.33333%}.el-col-xs-pull-14{position:relative;right:58.33333%}.el-col-xs-push-14{position:relative;left:58.33333%}.el-col-xs-15{width:62.5%}.el-col-xs-offset-15{margin-left:62.5%}.el-col-xs-pull-15{position:relative;right:62.5%}.el-col-xs-push-15{position:relative;left:62.5%}.el-col-xs-16{width:66.66667%}.el-col-xs-offset-16{margin-left:66.66667%}.el-col-xs-pull-16{position:relative;right:66.66667%}.el-col-xs-push-16{position:relative;left:66.66667%}.el-col-xs-17{width:70.83333%}.el-col-xs-offset-17{margin-left:70.83333%}.el-col-xs-pull-17{position:relative;right:70.83333%}.el-col-xs-push-17{position:relative;left:70.83333%}.el-col-xs-18{width:75%}.el-col-xs-offset-18{margin-left:75%}.el-col-xs-pull-18{position:relative;right:75%}.el-col-xs-push-18{position:relative;left:75%}.el-col-xs-19{width:79.16667%}.el-col-xs-offset-19{margin-left:79.16667%}.el-col-xs-pull-19{position:relative;right:79.16667%}.el-col-xs-push-19{position:relative;left:79.16667%}.el-col-xs-20{width:83.33333%}.el-col-xs-offset-20{margin-left:83.33333%}.el-col-xs-pull-20{position:relative;right:83.33333%}.el-col-xs-push-20{position:relative;left:83.33333%}.el-col-xs-21{width:87.5%}.el-col-xs-offset-21{margin-left:87.5%}.el-col-xs-pull-21{position:relative;right:87.5%}.el-col-xs-push-21{position:relative;left:87.5%}.el-col-xs-22{width:91.66667%}.el-col-xs-offset-22{margin-left:91.66667%}.el-col-xs-pull-22{position:relative;right:91.66667%}.el-col-xs-push-22{position:relative;left:91.66667%}.el-col-xs-23{width:95.83333%}.el-col-xs-offset-23{margin-left:95.83333%}.el-col-xs-pull-23{position:relative;right:95.83333%}.el-col-xs-push-23{position:relative;left:95.83333%}.el-col-xs-24{width:100%}.el-col-xs-offset-24{margin-left:100%}.el-col-xs-pull-24{position:relative;right:100%}.el-col-xs-push-24{position:relative;left:100%}}@media only screen and (min-width:768px){.el-col-sm-0{display:none;width:0}.el-col-sm-offset-0{margin-left:0}.el-col-sm-pull-0{position:relative;right:0}.el-col-sm-push-0{position:relative;left:0}.el-col-sm-1{width:4.16667%}.el-col-sm-offset-1{margin-left:4.16667%}.el-col-sm-pull-1{position:relative;right:4.16667%}.el-col-sm-push-1{position:relative;left:4.16667%}.el-col-sm-2{width:8.33333%}.el-col-sm-offset-2{margin-left:8.33333%}.el-col-sm-pull-2{position:relative;right:8.33333%}.el-col-sm-push-2{position:relative;left:8.33333%}.el-col-sm-3{width:12.5%}.el-col-sm-offset-3{margin-left:12.5%}.el-col-sm-pull-3{position:relative;right:12.5%}.el-col-sm-push-3{position:relative;left:12.5%}.el-col-sm-4{width:16.66667%}.el-col-sm-offset-4{margin-left:16.66667%}.el-col-sm-pull-4{position:relative;right:16.66667%}.el-col-sm-push-4{position:relative;left:16.66667%}.el-col-sm-5{width:20.83333%}.el-col-sm-offset-5{margin-left:20.83333%}.el-col-sm-pull-5{position:relative;right:20.83333%}.el-col-sm-push-5{position:relative;left:20.83333%}.el-col-sm-6{width:25%}.el-col-sm-offset-6{margin-left:25%}.el-col-sm-pull-6{position:relative;right:25%}.el-col-sm-push-6{position:relative;left:25%}.el-col-sm-7{width:29.16667%}.el-col-sm-offset-7{margin-left:29.16667%}.el-col-sm-pull-7{position:relative;right:29.16667%}.el-col-sm-push-7{position:relative;left:29.16667%}.el-col-sm-8{width:33.33333%}.el-col-sm-offset-8{margin-left:33.33333%}.el-col-sm-pull-8{position:relative;right:33.33333%}.el-col-sm-push-8{position:relative;left:33.33333%}.el-col-sm-9{width:37.5%}.el-col-sm-offset-9{margin-left:37.5%}.el-col-sm-pull-9{position:relative;right:37.5%}.el-col-sm-push-9{position:relative;left:37.5%}.el-col-sm-10{width:41.66667%}.el-col-sm-offset-10{margin-left:41.66667%}.el-col-sm-pull-10{position:relative;right:41.66667%}.el-col-sm-push-10{position:relative;left:41.66667%}.el-col-sm-11{width:45.83333%}.el-col-sm-offset-11{margin-left:45.83333%}.el-col-sm-pull-11{position:relative;right:45.83333%}.el-col-sm-push-11{position:relative;left:45.83333%}.el-col-sm-12{width:50%}.el-col-sm-offset-12{margin-left:50%}.el-col-sm-pull-12{position:relative;right:50%}.el-col-sm-push-12{position:relative;left:50%}.el-col-sm-13{width:54.16667%}.el-col-sm-offset-13{margin-left:54.16667%}.el-col-sm-pull-13{position:relative;right:54.16667%}.el-col-sm-push-13{position:relative;left:54.16667%}.el-col-sm-14{width:58.33333%}.el-col-sm-offset-14{margin-left:58.33333%}.el-col-sm-pull-14{position:relative;right:58.33333%}.el-col-sm-push-14{position:relative;left:58.33333%}.el-col-sm-15{width:62.5%}.el-col-sm-offset-15{margin-left:62.5%}.el-col-sm-pull-15{position:relative;right:62.5%}.el-col-sm-push-15{position:relative;left:62.5%}.el-col-sm-16{width:66.66667%}.el-col-sm-offset-16{margin-left:66.66667%}.el-col-sm-pull-16{position:relative;right:66.66667%}.el-col-sm-push-16{position:relative;left:66.66667%}.el-col-sm-17{width:70.83333%}.el-col-sm-offset-17{margin-left:70.83333%}.el-col-sm-pull-17{position:relative;right:70.83333%}.el-col-sm-push-17{position:relative;left:70.83333%}.el-col-sm-18{width:75%}.el-col-sm-offset-18{margin-left:75%}.el-col-sm-pull-18{position:relative;right:75%}.el-col-sm-push-18{position:relative;left:75%}.el-col-sm-19{width:79.16667%}.el-col-sm-offset-19{margin-left:79.16667%}.el-col-sm-pull-19{position:relative;right:79.16667%}.el-col-sm-push-19{position:relative;left:79.16667%}.el-col-sm-20{width:83.33333%}.el-col-sm-offset-20{margin-left:83.33333%}.el-col-sm-pull-20{position:relative;right:83.33333%}.el-col-sm-push-20{position:relative;left:83.33333%}.el-col-sm-21{width:87.5%}.el-col-sm-offset-21{margin-left:87.5%}.el-col-sm-pull-21{position:relative;right:87.5%}.el-col-sm-push-21{position:relative;left:87.5%}.el-col-sm-22{width:91.66667%}.el-col-sm-offset-22{margin-left:91.66667%}.el-col-sm-pull-22{position:relative;right:91.66667%}.el-col-sm-push-22{position:relative;left:91.66667%}.el-col-sm-23{width:95.83333%}.el-col-sm-offset-23{margin-left:95.83333%}.el-col-sm-pull-23{position:relative;right:95.83333%}.el-col-sm-push-23{position:relative;left:95.83333%}.el-col-sm-24{width:100%}.el-col-sm-offset-24{margin-left:100%}.el-col-sm-pull-24{position:relative;right:100%}.el-col-sm-push-24{position:relative;left:100%}}@media only screen and (min-width:992px){.el-col-md-0{display:none;width:0}.el-col-md-offset-0{margin-left:0}.el-col-md-pull-0{position:relative;right:0}.el-col-md-push-0{position:relative;left:0}.el-col-md-1{width:4.16667%}.el-col-md-offset-1{margin-left:4.16667%}.el-col-md-pull-1{position:relative;right:4.16667%}.el-col-md-push-1{position:relative;left:4.16667%}.el-col-md-2{width:8.33333%}.el-col-md-offset-2{margin-left:8.33333%}.el-col-md-pull-2{position:relative;right:8.33333%}.el-col-md-push-2{position:relative;left:8.33333%}.el-col-md-3{width:12.5%}.el-col-md-offset-3{margin-left:12.5%}.el-col-md-pull-3{position:relative;right:12.5%}.el-col-md-push-3{position:relative;left:12.5%}.el-col-md-4{width:16.66667%}.el-col-md-offset-4{margin-left:16.66667%}.el-col-md-pull-4{position:relative;right:16.66667%}.el-col-md-push-4{position:relative;left:16.66667%}.el-col-md-5{width:20.83333%}.el-col-md-offset-5{margin-left:20.83333%}.el-col-md-pull-5{position:relative;right:20.83333%}.el-col-md-push-5{position:relative;left:20.83333%}.el-col-md-6{width:25%}.el-col-md-offset-6{margin-left:25%}.el-col-md-pull-6{position:relative;right:25%}.el-col-md-push-6{position:relative;left:25%}.el-col-md-7{width:29.16667%}.el-col-md-offset-7{margin-left:29.16667%}.el-col-md-pull-7{position:relative;right:29.16667%}.el-col-md-push-7{position:relative;left:29.16667%}.el-col-md-8{width:33.33333%}.el-col-md-offset-8{margin-left:33.33333%}.el-col-md-pull-8{position:relative;right:33.33333%}.el-col-md-push-8{position:relative;left:33.33333%}.el-col-md-9{width:37.5%}.el-col-md-offset-9{margin-left:37.5%}.el-col-md-pull-9{position:relative;right:37.5%}.el-col-md-push-9{position:relative;left:37.5%}.el-col-md-10{width:41.66667%}.el-col-md-offset-10{margin-left:41.66667%}.el-col-md-pull-10{position:relative;right:41.66667%}.el-col-md-push-10{position:relative;left:41.66667%}.el-col-md-11{width:45.83333%}.el-col-md-offset-11{margin-left:45.83333%}.el-col-md-pull-11{position:relative;right:45.83333%}.el-col-md-push-11{position:relative;left:45.83333%}.el-col-md-12{width:50%}.el-col-md-offset-12{margin-left:50%}.el-col-md-pull-12{position:relative;right:50%}.el-col-md-push-12{position:relative;left:50%}.el-col-md-13{width:54.16667%}.el-col-md-offset-13{margin-left:54.16667%}.el-col-md-pull-13{position:relative;right:54.16667%}.el-col-md-push-13{position:relative;left:54.16667%}.el-col-md-14{width:58.33333%}.el-col-md-offset-14{margin-left:58.33333%}.el-col-md-pull-14{position:relative;right:58.33333%}.el-col-md-push-14{position:relative;left:58.33333%}.el-col-md-15{width:62.5%}.el-col-md-offset-15{margin-left:62.5%}.el-col-md-pull-15{position:relative;right:62.5%}.el-col-md-push-15{position:relative;left:62.5%}.el-col-md-16{width:66.66667%}.el-col-md-offset-16{margin-left:66.66667%}.el-col-md-pull-16{position:relative;right:66.66667%}.el-col-md-push-16{position:relative;left:66.66667%}.el-col-md-17{width:70.83333%}.el-col-md-offset-17{margin-left:70.83333%}.el-col-md-pull-17{position:relative;right:70.83333%}.el-col-md-push-17{position:relative;left:70.83333%}.el-col-md-18{width:75%}.el-col-md-offset-18{margin-left:75%}.el-col-md-pull-18{position:relative;right:75%}.el-col-md-push-18{position:relative;left:75%}.el-col-md-19{width:79.16667%}.el-col-md-offset-19{margin-left:79.16667%}.el-col-md-pull-19{position:relative;right:79.16667%}.el-col-md-push-19{position:relative;left:79.16667%}.el-col-md-20{width:83.33333%}.el-col-md-offset-20{margin-left:83.33333%}.el-col-md-pull-20{position:relative;right:83.33333%}.el-col-md-push-20{position:relative;left:83.33333%}.el-col-md-21{width:87.5%}.el-col-md-offset-21{margin-left:87.5%}.el-col-md-pull-21{position:relative;right:87.5%}.el-col-md-push-21{position:relative;left:87.5%}.el-col-md-22{width:91.66667%}.el-col-md-offset-22{margin-left:91.66667%}.el-col-md-pull-22{position:relative;right:91.66667%}.el-col-md-push-22{position:relative;left:91.66667%}.el-col-md-23{width:95.83333%}.el-col-md-offset-23{margin-left:95.83333%}.el-col-md-pull-23{position:relative;right:95.83333%}.el-col-md-push-23{position:relative;left:95.83333%}.el-col-md-24{width:100%}.el-col-md-offset-24{margin-left:100%}.el-col-md-pull-24{position:relative;right:100%}.el-col-md-push-24{position:relative;left:100%}}@media only screen and (min-width:1200px){.el-col-lg-0{display:none;width:0}.el-col-lg-offset-0{margin-left:0}.el-col-lg-pull-0{position:relative;right:0}.el-col-lg-push-0{position:relative;left:0}.el-col-lg-1{width:4.16667%}.el-col-lg-offset-1{margin-left:4.16667%}.el-col-lg-pull-1{position:relative;right:4.16667%}.el-col-lg-push-1{position:relative;left:4.16667%}.el-col-lg-2{width:8.33333%}.el-col-lg-offset-2{margin-left:8.33333%}.el-col-lg-pull-2{position:relative;right:8.33333%}.el-col-lg-push-2{position:relative;left:8.33333%}.el-col-lg-3{width:12.5%}.el-col-lg-offset-3{margin-left:12.5%}.el-col-lg-pull-3{position:relative;right:12.5%}.el-col-lg-push-3{position:relative;left:12.5%}.el-col-lg-4{width:16.66667%}.el-col-lg-offset-4{margin-left:16.66667%}.el-col-lg-pull-4{position:relative;right:16.66667%}.el-col-lg-push-4{position:relative;left:16.66667%}.el-col-lg-5{width:20.83333%}.el-col-lg-offset-5{margin-left:20.83333%}.el-col-lg-pull-5{position:relative;right:20.83333%}.el-col-lg-push-5{position:relative;left:20.83333%}.el-col-lg-6{width:25%}.el-col-lg-offset-6{margin-left:25%}.el-col-lg-pull-6{position:relative;right:25%}.el-col-lg-push-6{position:relative;left:25%}.el-col-lg-7{width:29.16667%}.el-col-lg-offset-7{margin-left:29.16667%}.el-col-lg-pull-7{position:relative;right:29.16667%}.el-col-lg-push-7{position:relative;left:29.16667%}.el-col-lg-8{width:33.33333%}.el-col-lg-offset-8{margin-left:33.33333%}.el-col-lg-pull-8{position:relative;right:33.33333%}.el-col-lg-push-8{position:relative;left:33.33333%}.el-col-lg-9{width:37.5%}.el-col-lg-offset-9{margin-left:37.5%}.el-col-lg-pull-9{position:relative;right:37.5%}.el-col-lg-push-9{position:relative;left:37.5%}.el-col-lg-10{width:41.66667%}.el-col-lg-offset-10{margin-left:41.66667%}.el-col-lg-pull-10{position:relative;right:41.66667%}.el-col-lg-push-10{position:relative;left:41.66667%}.el-col-lg-11{width:45.83333%}.el-col-lg-offset-11{margin-left:45.83333%}.el-col-lg-pull-11{position:relative;right:45.83333%}.el-col-lg-push-11{position:relative;left:45.83333%}.el-col-lg-12{width:50%}.el-col-lg-offset-12{margin-left:50%}.el-col-lg-pull-12{position:relative;right:50%}.el-col-lg-push-12{position:relative;left:50%}.el-col-lg-13{width:54.16667%}.el-col-lg-offset-13{margin-left:54.16667%}.el-col-lg-pull-13{position:relative;right:54.16667%}.el-col-lg-push-13{position:relative;left:54.16667%}.el-col-lg-14{width:58.33333%}.el-col-lg-offset-14{margin-left:58.33333%}.el-col-lg-pull-14{position:relative;right:58.33333%}.el-col-lg-push-14{position:relative;left:58.33333%}.el-col-lg-15{width:62.5%}.el-col-lg-offset-15{margin-left:62.5%}.el-col-lg-pull-15{position:relative;right:62.5%}.el-col-lg-push-15{position:relative;left:62.5%}.el-col-lg-16{width:66.66667%}.el-col-lg-offset-16{margin-left:66.66667%}.el-col-lg-pull-16{position:relative;right:66.66667%}.el-col-lg-push-16{position:relative;left:66.66667%}.el-col-lg-17{width:70.83333%}.el-col-lg-offset-17{margin-left:70.83333%}.el-col-lg-pull-17{position:relative;right:70.83333%}.el-col-lg-push-17{position:relative;left:70.83333%}.el-col-lg-18{width:75%}.el-col-lg-offset-18{margin-left:75%}.el-col-lg-pull-18{position:relative;right:75%}.el-col-lg-push-18{position:relative;left:75%}.el-col-lg-19{width:79.16667%}.el-col-lg-offset-19{margin-left:79.16667%}.el-col-lg-pull-19{position:relative;right:79.16667%}.el-col-lg-push-19{position:relative;left:79.16667%}.el-col-lg-20{width:83.33333%}.el-col-lg-offset-20{margin-left:83.33333%}.el-col-lg-pull-20{position:relative;right:83.33333%}.el-col-lg-push-20{position:relative;left:83.33333%}.el-col-lg-21{width:87.5%}.el-col-lg-offset-21{margin-left:87.5%}.el-col-lg-pull-21{position:relative;right:87.5%}.el-col-lg-push-21{position:relative;left:87.5%}.el-col-lg-22{width:91.66667%}.el-col-lg-offset-22{margin-left:91.66667%}.el-col-lg-pull-22{position:relative;right:91.66667%}.el-col-lg-push-22{position:relative;left:91.66667%}.el-col-lg-23{width:95.83333%}.el-col-lg-offset-23{margin-left:95.83333%}.el-col-lg-pull-23{position:relative;right:95.83333%}.el-col-lg-push-23{position:relative;left:95.83333%}.el-col-lg-24{width:100%}.el-col-lg-offset-24{margin-left:100%}.el-col-lg-pull-24{position:relative;right:100%}.el-col-lg-push-24{position:relative;left:100%}}@media only screen and (min-width:1920px){.el-col-xl-0{display:none;width:0}.el-col-xl-offset-0{margin-left:0}.el-col-xl-pull-0{position:relative;right:0}.el-col-xl-push-0{position:relative;left:0}.el-col-xl-1{width:4.16667%}.el-col-xl-offset-1{margin-left:4.16667%}.el-col-xl-pull-1{position:relative;right:4.16667%}.el-col-xl-push-1{position:relative;left:4.16667%}.el-col-xl-2{width:8.33333%}.el-col-xl-offset-2{margin-left:8.33333%}.el-col-xl-pull-2{position:relative;right:8.33333%}.el-col-xl-push-2{position:relative;left:8.33333%}.el-col-xl-3{width:12.5%}.el-col-xl-offset-3{margin-left:12.5%}.el-col-xl-pull-3{position:relative;right:12.5%}.el-col-xl-push-3{position:relative;left:12.5%}.el-col-xl-4{width:16.66667%}.el-col-xl-offset-4{margin-left:16.66667%}.el-col-xl-pull-4{position:relative;right:16.66667%}.el-col-xl-push-4{position:relative;left:16.66667%}.el-col-xl-5{width:20.83333%}.el-col-xl-offset-5{margin-left:20.83333%}.el-col-xl-pull-5{position:relative;right:20.83333%}.el-col-xl-push-5{position:relative;left:20.83333%}.el-col-xl-6{width:25%}.el-col-xl-offset-6{margin-left:25%}.el-col-xl-pull-6{position:relative;right:25%}.el-col-xl-push-6{position:relative;left:25%}.el-col-xl-7{width:29.16667%}.el-col-xl-offset-7{margin-left:29.16667%}.el-col-xl-pull-7{position:relative;right:29.16667%}.el-col-xl-push-7{position:relative;left:29.16667%}.el-col-xl-8{width:33.33333%}.el-col-xl-offset-8{margin-left:33.33333%}.el-col-xl-pull-8{position:relative;right:33.33333%}.el-col-xl-push-8{position:relative;left:33.33333%}.el-col-xl-9{width:37.5%}.el-col-xl-offset-9{margin-left:37.5%}.el-col-xl-pull-9{position:relative;right:37.5%}.el-col-xl-push-9{position:relative;left:37.5%}.el-col-xl-10{width:41.66667%}.el-col-xl-offset-10{margin-left:41.66667%}.el-col-xl-pull-10{position:relative;right:41.66667%}.el-col-xl-push-10{position:relative;left:41.66667%}.el-col-xl-11{width:45.83333%}.el-col-xl-offset-11{margin-left:45.83333%}.el-col-xl-pull-11{position:relative;right:45.83333%}.el-col-xl-push-11{position:relative;left:45.83333%}.el-col-xl-12{width:50%}.el-col-xl-offset-12{margin-left:50%}.el-col-xl-pull-12{position:relative;right:50%}.el-col-xl-push-12{position:relative;left:50%}.el-col-xl-13{width:54.16667%}.el-col-xl-offset-13{margin-left:54.16667%}.el-col-xl-pull-13{position:relative;right:54.16667%}.el-col-xl-push-13{position:relative;left:54.16667%}.el-col-xl-14{width:58.33333%}.el-col-xl-offset-14{margin-left:58.33333%}.el-col-xl-pull-14{position:relative;right:58.33333%}.el-col-xl-push-14{position:relative;left:58.33333%}.el-col-xl-15{width:62.5%}.el-col-xl-offset-15{margin-left:62.5%}.el-col-xl-pull-15{position:relative;right:62.5%}.el-col-xl-push-15{position:relative;left:62.5%}.el-col-xl-16{width:66.66667%}.el-col-xl-offset-16{margin-left:66.66667%}.el-col-xl-pull-16{position:relative;right:66.66667%}.el-col-xl-push-16{position:relative;left:66.66667%}.el-col-xl-17{width:70.83333%}.el-col-xl-offset-17{margin-left:70.83333%}.el-col-xl-pull-17{position:relative;right:70.83333%}.el-col-xl-push-17{position:relative;left:70.83333%}.el-col-xl-18{width:75%}.el-col-xl-offset-18{margin-left:75%}.el-col-xl-pull-18{position:relative;right:75%}.el-col-xl-push-18{position:relative;left:75%}.el-col-xl-19{width:79.16667%}.el-col-xl-offset-19{margin-left:79.16667%}.el-col-xl-pull-19{position:relative;right:79.16667%}.el-col-xl-push-19{position:relative;left:79.16667%}.el-col-xl-20{width:83.33333%}.el-col-xl-offset-20{margin-left:83.33333%}.el-col-xl-pull-20{position:relative;right:83.33333%}.el-col-xl-push-20{position:relative;left:83.33333%}.el-col-xl-21{width:87.5%}.el-col-xl-offset-21{margin-left:87.5%}.el-col-xl-pull-21{position:relative;right:87.5%}.el-col-xl-push-21{position:relative;left:87.5%}.el-col-xl-22{width:91.66667%}.el-col-xl-offset-22{margin-left:91.66667%}.el-col-xl-pull-22{position:relative;right:91.66667%}.el-col-xl-push-22{position:relative;left:91.66667%}.el-col-xl-23{width:95.83333%}.el-col-xl-offset-23{margin-left:95.83333%}.el-col-xl-pull-23{position:relative;right:95.83333%}.el-col-xl-push-23{position:relative;left:95.83333%}.el-col-xl-24{width:100%}.el-col-xl-offset-24{margin-left:100%}.el-col-xl-pull-24{position:relative;right:100%}.el-col-xl-push-24{position:relative;left:100%}}.el-switch{display:inline-flex;align-items:center;position:relative;font-size:14px;line-height:20px;height:20px;vertical-align:middle}.el-switch.is-disabled .el-switch__core,.el-switch.is-disabled .el-switch__label{cursor:not-allowed}.el-switch__core,.el-switch__label{display:inline-block;cursor:pointer;vertical-align:middle}.el-switch__label{transition:.2s;height:20px;font-size:14px;font-weight:500;color:#303133}.el-switch__label.is-active{color:#409eff}.el-switch__label--left{margin-right:10px}.el-switch__label--right{margin-left:10px}.el-switch__label *{line-height:1;font-size:14px;display:inline-block}.el-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.el-switch__core{margin:0;position:relative;width:40px;height:20px;border:1px solid #dcdfe6;outline:0;border-radius:10px;box-sizing:border-box;background:#dcdfe6;transition:border-color .3s,background-color .3s}.el-switch__core:after{content:"";position:absolute;top:1px;left:1px;border-radius:100%;transition:all .3s;width:16px;height:16px;background-color:#fff}.el-switch.is-checked .el-switch__core{border-color:#409eff;background-color:#409eff}.el-switch.is-checked .el-switch__core:after{left:100%;margin-left:-17px}.el-switch.is-disabled{opacity:.6}.el-switch--wide .el-switch__label.el-switch__label--left span{left:10px}.el-switch--wide .el-switch__label.el-switch__label--right span{right:10px}.el-switch .label-fade-enter,.el-switch .label-fade-leave-active{opacity:0}.el-popper .popper__arrow,.el-popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-popper .popper__arrow{border-width:6px;filter:drop-shadow(0 2px 12px rgba(0,0,0,.03))}.el-popper .popper__arrow:after{content:" ";border-width:6px}.el-popper[x-placement^=top]{margin-bottom:12px}.el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#ebeef5;border-bottom-width:0}.el-popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.el-popper[x-placement^=bottom]{margin-top:12px}.el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#ebeef5}.el-popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.el-popper[x-placement^=right]{margin-left:12px}.el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#ebeef5;border-left-width:0}.el-popper[x-placement^=right] .popper__arrow:after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.el-popper[x-placement^=left]{margin-right:12px}.el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#ebeef5}.el-popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.el-select-dropdown{position:absolute;z-index:1001;border:1px solid #e4e7ed;border-radius:4px;background-color:#fff;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-sizing:border-box;margin:5px 0}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected{color:#409eff;background-color:#fff}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover{background-color:#f5f7fa}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected:after{position:absolute;right:20px;font-family:element-icons;content:"\E6DA";font-size:12px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.el-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.el-select-dropdown__wrap{max-height:274px}.el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.el-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:14px}.el-textarea__inner{display:block;resize:vertical;padding:5px 15px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;color:#606266;background-color:#fff;background-image:none;border:1px solid #dcdfe6;border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea__inner:hover{border-color:#c0c4cc}.el-textarea__inner:focus{outline:0;border-color:#409eff}.el-textarea .el-input__count{color:#909399;background:#fff;position:absolute;font-size:12px;bottom:5px;right:10px}.el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea.is-exceed .el-textarea__inner{border-color:#f56c6c}.el-textarea.is-exceed .el-input__count{color:#f56c6c}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input::-webkit-scrollbar{z-index:11;width:6px}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:#fff}.el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.el-input .el-input__clear{color:#c0c4cc;font-size:14px;cursor:pointer;transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-input .el-input__clear:hover{color:#909399}.el-input .el-input__count{height:100%;display:inline-flex;align-items:center;color:#909399;font-size:12px}.el-input .el-input__count .el-input__count-inner{background:#fff;line-height:normal;display:inline-block;padding:0 5px}.el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #dcdfe6;box-sizing:border-box;color:#606266;display:inline-block;font-size:inherit;height:40px;line-height:40px;outline:0;padding:0 15px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-select-dropdown__item,.el-tag{white-space:nowrap;-webkit-box-sizing:border-box}.el-input__prefix,.el-input__suffix{position:absolute;top:0;-webkit-transition:all .3s;height:100%;color:#c0c4cc;text-align:center}.el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input__inner::placeholder{color:#c0c4cc}.el-input__inner:hover{border-color:#c0c4cc}.el-input.is-active .el-input__inner,.el-input__inner:focus{border-color:#409eff;outline:0}.el-input__suffix{right:5px;transition:all .3s;pointer-events:none}.el-input__suffix-inner{pointer-events:all}.el-input__prefix{left:5px;transition:all .3s}.el-input__icon{height:100%;width:25px;text-align:center;transition:all .3s;line-height:40px}.el-input__icon:after{content:"";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__validateIcon{pointer-events:none}.el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-input.is-exceed .el-input__inner{border-color:#f56c6c}.el-input.is-exceed .el-input__suffix .el-input__count{color:#f56c6c}.el-input--suffix .el-input__inner{padding-right:30px}.el-input--prefix .el-input__inner{padding-left:30px}.el-input--medium{font-size:14px}.el-input--medium .el-input__inner{height:36px;line-height:36px}.el-input--medium .el-input__icon{line-height:36px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:32px;line-height:32px}.el-input--small .el-input__icon{line-height:32px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:28px;line-height:28px}.el-input--mini .el-input__icon{line-height:28px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate;border-spacing:0}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:-10px -20px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-input-group--append .el-select .el-input.is-focus .el-input__inner,.el-input-group--prepend .el-select .el-input.is-focus .el-input__inner{border-color:transparent}.el-input__inner::-ms-clear{display:none;width:0;height:0}.el-tag{background-color:#ecf5ff;display:inline-block;height:32px;padding:0 10px;line-height:30px;font-size:12px;color:#409eff;border:1px solid #d9ecff;border-radius:4px;box-sizing:border-box}.el-tag.is-hit{border-color:#409eff}.el-tag .el-tag__close{color:#409eff}.el-tag .el-tag__close:hover{color:#fff;background-color:#409eff}.el-tag.el-tag--info{background-color:#f4f4f5;border-color:#e9e9eb;color:#909399}.el-tag.el-tag--info.is-hit{border-color:#909399}.el-tag.el-tag--info .el-tag__close{color:#909399}.el-tag.el-tag--info .el-tag__close:hover{color:#fff;background-color:#909399}.el-tag.el-tag--success{background-color:#f0f9eb;border-color:#e1f3d8;color:#67c23a}.el-tag.el-tag--success.is-hit{border-color:#67c23a}.el-tag.el-tag--success .el-tag__close{color:#67c23a}.el-tag.el-tag--success .el-tag__close:hover{color:#fff;background-color:#67c23a}.el-tag.el-tag--warning{background-color:#fdf6ec;border-color:#faecd8;color:#e6a23c}.el-tag.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag.el-tag--warning .el-tag__close{color:#e6a23c}.el-tag.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#e6a23c}.el-tag.el-tag--danger{background-color:#fef0f0;border-color:#fde2e2;color:#f56c6c}.el-tag.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag.el-tag--danger .el-tag__close{color:#f56c6c}.el-tag.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f56c6c}.el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:16px;width:16px;line-height:16px;vertical-align:middle;top:-1px;right:-5px}.el-tag .el-icon-close:before{display:block}.el-tag--dark{background-color:#409eff;color:#fff}.el-tag--dark,.el-tag--dark.is-hit{border-color:#409eff}.el-tag--dark .el-tag__close{color:#fff}.el-tag--dark .el-tag__close:hover{color:#fff;background-color:#66b1ff}.el-tag--dark.el-tag--info{background-color:#909399;border-color:#909399;color:#fff}.el-tag--dark.el-tag--info.is-hit{border-color:#909399}.el-tag--dark.el-tag--info .el-tag__close{color:#fff}.el-tag--dark.el-tag--info .el-tag__close:hover{color:#fff;background-color:#a6a9ad}.el-tag--dark.el-tag--success{background-color:#67c23a;border-color:#67c23a;color:#fff}.el-tag--dark.el-tag--success.is-hit{border-color:#67c23a}.el-tag--dark.el-tag--success .el-tag__close{color:#fff}.el-tag--dark.el-tag--success .el-tag__close:hover{color:#fff;background-color:#85ce61}.el-tag--dark.el-tag--warning{background-color:#e6a23c;border-color:#e6a23c;color:#fff}.el-tag--dark.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag--dark.el-tag--warning .el-tag__close{color:#fff}.el-tag--dark.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#ebb563}.el-tag--dark.el-tag--danger{background-color:#f56c6c;border-color:#f56c6c;color:#fff}.el-tag--dark.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag--dark.el-tag--danger .el-tag__close{color:#fff}.el-tag--dark.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f78989}.el-tag--plain{background-color:#fff;border-color:#b3d8ff;color:#409eff}.el-tag--plain.is-hit{border-color:#409eff}.el-tag--plain .el-tag__close{color:#409eff}.el-tag--plain .el-tag__close:hover{color:#fff;background-color:#409eff}.el-tag--plain.el-tag--info{background-color:#fff;border-color:#d3d4d6;color:#909399}.el-tag--plain.el-tag--info.is-hit{border-color:#909399}.el-tag--plain.el-tag--info .el-tag__close{color:#909399}.el-tag--plain.el-tag--info .el-tag__close:hover{color:#fff;background-color:#909399}.el-tag--plain.el-tag--success{background-color:#fff;border-color:#c2e7b0;color:#67c23a}.el-tag--plain.el-tag--success.is-hit{border-color:#67c23a}.el-tag--plain.el-tag--success .el-tag__close{color:#67c23a}.el-tag--plain.el-tag--success .el-tag__close:hover{color:#fff;background-color:#67c23a}.el-tag--plain.el-tag--warning{background-color:#fff;border-color:#f5dab1;color:#e6a23c}.el-tag--plain.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag--plain.el-tag--warning .el-tag__close{color:#e6a23c}.el-tag--plain.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#e6a23c}.el-tag--plain.el-tag--danger{background-color:#fff;border-color:#fbc4c4;color:#f56c6c}.el-tag--plain.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag--plain.el-tag--danger .el-tag__close{color:#f56c6c}.el-tag--plain.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f56c6c}.el-tag--medium{height:28px;line-height:26px}.el-tag--medium .el-icon-close{transform:scale(.8)}.el-tag--small{height:24px;padding:0 8px;line-height:22px}.el-tag--small .el-icon-close{transform:scale(.8)}.el-tag--mini{height:20px;padding:0 5px;line-height:19px}.el-tag--mini .el-icon-close{margin-left:-3px;transform:scale(.7)}.el-select-dropdown__item{font-size:14px;padding:0 20px;position:relative;overflow:hidden;text-overflow:ellipsis;color:#606266;height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.el-select-dropdown__item.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-select-dropdown__item.is-disabled:hover{background-color:#fff}.el-select-dropdown__item.hover,.el-select-dropdown__item:hover{background-color:#f5f7fa}.el-select-dropdown__item.selected{color:#409eff;font-weight:700}.el-select-group{margin:0;padding:0}.el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.el-select-group__wrap:not(:last-of-type):after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:#e4e7ed}.el-select-group__title{padding-left:20px;font-size:12px;color:#909399;line-height:30px}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active>.el-scrollbar__bar,.el-scrollbar:focus>.el-scrollbar__bar,.el-scrollbar:hover>.el-scrollbar__bar{opacity:1;transition:opacity .34s ease-out}.el-scrollbar__wrap{overflow:scroll;height:100%}.el-scrollbar__wrap--hidden-default{scrollbar-width:none}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(144,147,153,.3);transition:background-color .3s}.el-scrollbar__thumb:hover{background-color:rgba(144,147,153,.5)}.el-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px;opacity:0;transition:opacity .12s ease-out}.el-scrollbar__bar.is-vertical{width:6px;top:2px}.el-scrollbar__bar.is-vertical>div{width:100%}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-select{display:inline-block;position:relative}.el-select .el-select__tags>span{display:contents}.el-select:hover .el-input__inner{border-color:#c0c4cc}.el-select .el-input__inner{cursor:pointer;padding-right:35px}.el-select .el-input__inner:focus{border-color:#409eff}.el-select .el-input .el-select__caret{color:#c0c4cc;font-size:14px;transition:transform .3s;transform:rotate(180deg);cursor:pointer}.el-select .el-input .el-select__caret.is-reverse{transform:rotate(0)}.el-select .el-input .el-select__caret.is-show-close{font-size:14px;text-align:center;transform:rotate(180deg);border-radius:100%;color:#c0c4cc;transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-select .el-input .el-select__caret.is-show-close:hover{color:#909399}.el-select .el-input.is-disabled .el-input__inner{cursor:not-allowed}.el-select .el-input.is-disabled .el-input__inner:hover{border-color:#e4e7ed}.el-select .el-input.is-focus .el-input__inner{border-color:#409eff}.el-select>.el-input{display:block}.el-select__input{border:none;outline:0;padding:0;margin-left:15px;color:#666;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.el-select__input.is-mini{height:14px}.el-select__close{cursor:pointer;position:absolute;top:8px;z-index:1000;right:25px;color:#c0c4cc;line-height:18px;font-size:14px}.el-select__close:hover{color:#909399}.el-select__tags{position:absolute;line-height:normal;white-space:normal;z-index:1;top:50%;transform:translateY(-50%);display:flex;align-items:center;flex-wrap:wrap}.el-select .el-tag__close{margin-top:-2px}.el-select .el-tag{box-sizing:border-box;border-color:transparent;margin:2px 0 2px 6px;background-color:#f0f2f5}.el-select .el-tag__close.el-icon-close{background-color:#c0c4cc;right:-7px;top:0;color:#fff}.el-select .el-tag__close.el-icon-close:hover{background-color:#909399}.el-select .el-tag__close.el-icon-close:before{display:block;transform:translateY(.5px)}.el-select-group{margin:0;padding:0}.el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.el-select-group__wrap:not(:last-of-type):after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:#e4e7ed}.el-select-group__title{padding-left:20px;font-size:12px;color:#909399;line-height:30px}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-select-dropdown__item{font-size:14px;padding:0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#606266;height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.el-select-dropdown__item.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-select-dropdown__item.is-disabled:hover{background-color:#fff}.el-select-dropdown__item.hover,.el-select-dropdown__item:hover{background-color:#f5f7fa}.el-select-dropdown__item.selected{color:#409eff;font-weight:700}.browser-frame{border-radius:10px;box-shadow:0 0 3px #e6ecef;overflow:hidden;max-width:100%}.browser-controls{height:50px;display:flex;align-items:center;justify-content:space-around;background:#e6ecef;color:#bec4c6}.window-controls{flex:0 0 60px;margin:0 2%}.window-controls span{display:inline-block;width:15px;height:15px;border-radius:50px;background:#ff8585}.window-controls span.minimise{background:#ffd071}.window-controls span.maximise{background:#74ed94}.page-controls{flex:0 0 70px;margin-right:2%}.page-controls span{display:inline-block;width:30px;text-align:center;padding-top:5px;height:20px;font-size:13px;line-height:11px}.url-bar{flex-grow:1;margin-right:2%;padding:5px 5px 0 10px;font-family:monospace;color:#889396;overflow:hidden}.white-container{height:25px;border-radius:3px;background:#fff}.bar-warning{background:#fa6b05;color:#fff}.bar-warning a{color:#fee;font-size:120%}.browser-frame.ffc_browser_mobile{max-width:375px;margin:0 auto}.fcc_conversational_design{margin-top:30px;display:flex;flex-direction:row;align-items:stretch;justify-content:flex-start;min-height:80vh;background:#fafafa}.fcc_conversational_design .ffc_design_sidebar{width:300px;background-color:#fff;border:1px solid #e2e4e7}.fcc_conversational_design .ffc_design_sidebar .ffc_sidebar_header{width:300px}.fcc_conversational_design .ffc_design_sidebar .ffc_sidebar_body{padding:10px 15px}.fcc_conversational_design .ffc_design_sidebar .ffc_sidebar_body .el-form-item__content{text-align:right}.fcc_conversational_design .ffc_design_sidebar .ffc_sidebar_body .el-form-item{margin-bottom:5px}.fcc_conversational_design .ffc_design_sidebar .ffc_sidebar_body .ffc_design_submit{margin-top:30px;text-align:center}.fcc_conversational_design .ffc_design_container{width:100%;padding:10px 20px}.fcc_conversational_design .ffc_sidebar_header ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;align-content:center;justify-content:space-evenly;align-items:center;border-bottom:1px solid #e2e4e7}.fcc_conversational_design .ffc_sidebar_header ul li{padding:10px 5px;cursor:pointer}.fcc_conversational_design .ffc_sidebar_header ul li.ffc_active{color:#409eff;font-weight:700}.fcc_conversational_design .ffc_design_elements .fcc_eq_line .el-form-item__label{line-height:120%}.fcc_conversational_design .ffc_design_elements .el-form-item.fcc_label_top .el-form-item__label{width:100%!important;display:block;line-height:100%;float:none}.fcc_conversational_design .ffc_design_elements .el-form-item.fcc_label_top .el-form-item__content{width:100%;margin-left:0!important;display:block}div#ff_conversation_form_design_app{display:block;overflow:hidden}#fcc_iframe_holder{border-bottom-left-radius:8px;border-bottom-right-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,.08),0 2px 12px rgba(0,0,0,.06)}#fcc_iframe_holder iframe{border-radius:8px}.ffc_meta_settings{max-width:900px;padding:0 20px 20px;background:#fff;margin:0 auto;border-radius:8px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.08),0 2px 12px rgba(0,0,0,.06)}.ffc_meta_settings .el-form-item .el-form-item__label{font-weight:700;margin-bottom:0;line-height:100%}.ffc_meta_settings .el-form-item .ffc_help{font-size:80%}.ffc_meta_settings h3{margin-top:20px;margin-bottom:20px}ul.fcc_inline_social{margin:20px 0;padding:0}ul.fcc_inline_social li{display:inline-block;margin-right:10px}ul.fcc_inline_social li a{text-decoration:none}.fcc_card{box-shadow:0 2px 4px rgba(0,0,0,.08),0 2px 12px rgba(0,0,0,.06);background:#fff;border-radius:8px;padding:20px;margin-bottom:30px}.copy_share.fc_copy_success{background:#409eff!important;color:#fff!important;padding:8px 20px}.fcc_pro_message{margin:10px 0;background:#fef6f1;padding:15px;text-align:center;font-size:13px}.fcc_pro_message a{display:block;margin-top:10px}
|
public/css/fluent-all-forms.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.ff_form_wrap{margin:0}.ff_form_wrap *{box-sizing:border-box}.ff_form_wrap .ff_form_wrap_area{padding:15px 0;overflow:hidden;display:block}.ff_form_wrap .ff_form_wrap_area>h2{margin-top:0}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{-webkit-appearance:none;background-color:#fff;border-radius:4px;border:1px solid #dcdfe6;color:#606266;box-shadow:none;margin:0;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{box-shadow:none}input[type=color].el-select__input,input[type=date].el-select__input,input[type=datetime-local].el-select__input,input[type=datetime].el-select__input,input[type=email].el-select__input,input[type=month].el-select__input,input[type=number].el-select__input,input[type=password].el-select__input,input[type=search].el-select__input,input[type=tel].el-select__input,input[type=text].el-select__input,input[type=time].el-select__input,input[type=url].el-select__input,input[type=week].el-select__input,textarea.el-select__input{border:none;background-color:transparent}p{margin-top:0;margin-bottom:10px}.icon{font:normal normal normal 14px/1 ultimateform;display:inline-block}.mr15{margin-right:15px}.mb15{margin-bottom:15px}.pull-left{float:left!important}.pull-right{float:right!important}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.el-icon-clickable{cursor:pointer}.help-text{margin:0;font-style:italic;font-size:.9em}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:500;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-block{width:100%}.clearfix:after,.clearfix:before,.form-editor:after,.form-editor:before{display:table;content:" "}.clearfix:after,.form-editor:after{clear:both}.el-notification__content p{text-align:left}.label-lh-1-5 label{line-height:1.5}.ff_form_main_nav{display:block;width:auto;overflow:hidden;border-bottom:1px solid #ddd;background:#fff;margin:0 -20px;padding:10px 20px 0;box-sizing:border-box}.ff_form_main_nav span.plugin-name{font-size:16px;color:#6e6e6e;margin-right:30px}.ff_form_main_nav .ninja-tab{padding:10px 10px 18px;display:inline-block;text-decoration:none;color:#000;font-size:15px;line-height:16px;margin-right:15px;border-bottom:2px solid transparent}.ff_form_main_nav .ninja-tab:focus{box-shadow:none}.ff_form_main_nav .ninja-tab.ninja-tab-active{font-weight:700;border-bottom:2px solid #ffd65b}.ff_form_main_nav .ninja-tab.buy_pro_tab{background:#e04f5e;padding:10px 25px;color:#fff}.el-dialog__wrapper .el-dialog{background:transparent}.el-dialog__wrapper .el-dialog__header{display:block;overflow:hidden;background:#f5f5f5;border:1px solid #ddd;padding:10px;border-top-left-radius:5px;border-top-right-radius:5px}.el-dialog__wrapper .el-dialog__header .el-dialog__headerbtn{top:12px}.el-dialog__wrapper .el-dialog__footer{background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.el-dialog__wrapper .el-dialog__body{padding:20px;background:#fff;border-radius:0}.el-dialog__wrapper .el-dialog__body .dialog-footer{padding:10px 20px 20px;text-align:right;box-sizing:border-box;background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px;width:auto;display:block;margin:0 -20px -20px}.ff_nav_top{overflow:hidden;display:block;margin-bottom:15px;width:100%}.ff_nav_top .ff_nav_title{float:left;width:50%}.ff_nav_top .ff_nav_title h3{float:left;margin:0;padding:0;line-height:28px}.ff_nav_top .ff_nav_title .ff_nav_sub_actions{display:inline-block;margin-left:20px}.ff_nav_top .ff_nav_action{float:left;width:50%;text-align:right}.ff_nav_top .ff_search_inline{width:200px;text-align:right;display:inline-block}.el-table__header-wrapper table.el-table__header tr th{background-color:#f5f9f9!important;color:rgba(0,0,0,.6)!important}.ff_global_notices{display:block;width:100%;overflow:hidden;margin-top:20px;box-sizing:border-box}.ff_global_notices .ff_global_notice{background:#fff;margin-right:20px;display:block;position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.ff_global_notices .ff_global_notice.ff_notice_error{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.ff_global_notices .ff_global_notice.ff_notice_success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.el-select-dropdown.el-popper{z-index:99999999999!important}ul.ff_entry_list{list-style:disc;margin-left:20px}span.ff_new_badge{background:#ff4747;padding:0 5px 3px;border-radius:4px;font-size:11px;vertical-align:super;color:#fff;line-height:100%;margin-left:5px}label.el-checkbox,label.el-radio{display:inline-block}.el-time-spinner__list .el-time-spinner__item{margin-bottom:0!important}.ff_card_block{padding:15px 20px;background:#f1f1f1;border-radius:5px}.ff_card_block h3{padding:0;margin:0 0 15px}#wpbody-content{padding-right:30px}#wpbody-content,#wpbody-content *{box-sizing:border-box}.videoWrapper{position:relative;padding-bottom:56.25%;height:0}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.ff-left-spaced{margin-left:10px!important}.doc_video_wrapper{text-align:center;background:#fff;padding:20px 0 0;max-width:800px;margin:0 auto}.el-big-items .el-select-dropdown__wrap{max-height:350px}.ff_email_resend_inline{display:inline-block}.ff_settings_off{background-color:#f7fafc;padding:10px 15px;margin:-15px -35px}.ff_settings_off .ff_settings_block{background:#fff;padding:20px;margin-top:20px;margin-bottom:30px;border-radius:6px;box-shadow:0 0 35px 0 rgba(16,64,112,.15)}.ff_settings_header{margin-left:-15px;margin-right:-15px;margin-top:-10px;padding:10px 20px;border-bottom:1px solid #e0dbdb}.ff_settings_header h2{margin:0;line-height:30px}.el-text-primary{color:#20a0ff}.el-text-info{color:#58b7ff}.el-text-success{color:#13ce66}.el-text-warning{color:#f7ba2a}.el-text-danger{color:#ff4949}.el-notification__content{text-align:left}.el-input-group--append .el-input-group__append{left:-2px}.action-buttons .el-button+.el-button{margin-left:0}.el-box-card{box-shadow:none}.el-box-footer,.el-box-header{background-color:#edf1f6;padding:15px}.el-box-body{padding:15px}.el-form-item__force-inline.el-form-item__label{float:left;padding:11px 12px 11px 0}.el-form-item .el-form-item{margin-bottom:10px}.el-form-item__content .line{text-align:center}.el-basic-collapse{border:0;margin-bottom:15px}.el-basic-collapse .el-collapse-item__header{padding-left:0;display:inline-block;border:0}.el-basic-collapse .el-collapse-item__wrap{border:0}.el-basic-collapse .el-collapse-item__content{padding:0;background-color:#fff}.el-collapse-settings{margin-bottom:15px}.el-collapse-settings .el-collapse-item__header{background:#f1f1f1;padding-left:20px}.el-collapse-settings .el-collapse-item__content{padding-bottom:0;margin-top:15px}.el-collapse-settings .el-collapse-item__arrow{line-height:48px}.el-popover{text-align:left}.option-fields-section--content .el-form-item{margin-bottom:10px}.option-fields-section--content .el-form-item__label{padding-bottom:5px;font-size:13px;line-height:1}.option-fields-section--content .el-input__inner{height:30px;padding:0 8px}.option-fields-section--content .el-form-item__content{line-height:1.5;margin-bottom:5px}.el-dropdown-list{border:0;margin:5px 0;box-shadow:none;padding:0;z-index:10;position:static;min-width:auto;max-height:280px;overflow-y:scroll}.el-dropdown-list .el-dropdown-menu__item{font-size:13px;line-height:18px;padding:4px 10px;border-bottom:1px solid #f1f1f1}.el-dropdown-list .el-dropdown-menu__item:last-of-type{border-bottom:0}.el-form-nested.el-form--label-left .el-form-item__label{float:left;padding:10px 5px 10px 0}.el-message{top:40px}.el-button{text-decoration:none}.form-editor-elements:not(.el-form--label-left):not(.el-form--label-right) .el-form-item__label{line-height:1}.folded .el-dialog__wrapper{left:36px}.el-dialog__wrapper{left:160px}.ff-el-banner{width:200px;height:250px;border:1px solid #dce0e5;float:left;display:inline-block;padding:5px;transition:border .3s}.ff-el-banner,.ff-el-banner-group{overflow:hidden}.ff-el-banner-group .ff-el-banner{margin-right:10px;margin-bottom:30px}.ff-el-banner+.ff-el-banner{margin-right:10px}.ff-el-banner img{width:100%;height:auto;display:block}.ff-el-banner-header{text-align:center;margin:0;background:#909399;padding:3px 6px;font-size:13px;color:#fff;font-weight:400}.ff-el-banner-inner-item{position:relative;overflow:hidden;height:inherit}.ff-el-banner:hover .ff-el-banner-text-inside{opacity:1!important;visibility:visible!important}.ff-el-banner-text-inside{display:flex;justify-content:center;flex-direction:column}.ff-el-banner-text-inside-hoverable{position:absolute;transition:all .3s;color:#fff;top:0;left:0;right:0;bottom:0;padding:10px}.ff-el-banner-text-inside .form-title{color:#fff;margin:0 0 10px}.ff_backdrop{background:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999999}.compact td>.cell,.compact th>.cell{white-space:nowrap}@media (max-width:768px){.form_internal_menu{width:100%;left:0!important;top:44px!important}.form_internal_menu .ff-navigation-right{display:none}.form_internal_menu ul.ff_setting_menu{float:right;padding-right:10px!important}.form_internal_menu ul.ff_setting_menu li a{padding:10px 3px!important}.form_internal_menu .ff_form_name{padding:10px 5px!important;max-width:120px!important}.ff_nav_action{float:right!important;text-align:left!important}div#wpbody-content{padding-right:10px!important}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{min-height:30px}.ff_form_main_nav .plugin-name{display:none}.row-actions{display:inline-block!important}.el-form .el-form-item .el-form-item__label{width:100%!important}.el-form .el-form-item .el-form-item__content{margin-left:0!important}.ff_settings_container{margin:0!important;padding:0 10px!important}.ff_settings_wrapper .ff_settings_sidebar{width:120px!important}.ff_settings_wrapper .ff_settings_sidebar ul.ff_settings_list li a{padding:10px 5px;font-size:10px}.settings_app{min-width:500px}.el-tabs__content{padding:20px 10px!important}.wpf_each_entry a{word-break:break-all}div#js-form-editor--body{padding:20px 0}div#js-form-editor--body .form-editor__body-content{padding:60px 0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu{top:0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{display:block}}@media (max-width:425px){.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{margin-right:0}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right a,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right button,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right span{font-size:10px;padding:5px 4px!important;margin:0 3px}#ff_form_entries_app .ff_nav_top .ff_nav_action,#ff_form_entries_app .ff_nav_top .ff_nav_title{width:100%;margin-bottom:10px}.form_internal_menu{position:relative;display:block!important;background:#fff;overflow:hidden;top:0!important;margin:0 -10px;width:auto}.form_internal_menu ul.ff_setting_menu li a{font-size:11px}.ff_form_application_container{margin-top:0!important}.ff_form_main_nav .ninja-tab{font-size:12px;padding:10px 5px;margin:0}ul.el-pager{display:none!important}.ff_settings_wrapper{min-width:600px}.ff_form_wrap .ff_form_wrap_area{overflow:scroll}button.el-button.pull-right{float:left!important}.entry_header h3{display:block;width:100%!important;clear:both}.v-row .v-col--33{width:100%!important;padding-right:0;margin-bottom:15px}.v-row .v-col--33:last-child{margin-bottom:0}.option-fields-section--content{padding:15px 5px}}.el-popover{text-align:left!important;word-break:inherit!important}.ff_all_forms .pull-right{float:right}.ff_all_forms .form_navigation{margin-bottom:20px}.v-modal{display:none!important}.mtb10{margin-top:10px;margin-bottom:10px}.predefinedModal .el-dialog{overflow-y:scroll;height:600px}.predefinedModal .el-dialog .el-dialog__body{height:484px;overflow:scroll}.ff_form_group{position:relative;width:100%;overflow:hidden}.form_item_group,.form_item_group label{display:inline-block}.form_item_group.form_item_group_search{float:right}.form_action_navigations{margin:-20px -20px 0;padding:10px 20px;background:#f5f5f5;border-bottom:1px solid #ddd}.ff-el-banner{padding:0!important;word-break:break-word}.ff-el-banner:hover{background:#009cff;transition:background-color .1s linear}.item_has_image .ff-el-banner-text-inside.ff-el-banner-text-inside-hoverable{opacity:0;visibility:hidden}.item_has_image:hover .ff-el-banner-text-inside-hoverable{display:flex;background:#009cff;transition:background-color .1s linear}.item_no_image .ff-el-banner-header{position:absolute;z-index:999999;left:0;right:0;top:0;bottom:0;padding-top:110px;font-size:15px;font-weight:700;background:transparent;word-break:break-word}.item_no_image:hover .ff-el-banner-header{display:none;visibility:hidden}.item_no_image:hover .ff-el-banner-text-inside-hoverable{display:flex}.item_no_image .ff-el-banner-text-inside-hoverable{display:none}.ff-el-banner-text-inside{cursor:pointer}.item_education{background-color:#4b77be}.item_government{background-color:#8e44ad}.item_healthcare{background-color:#26a587}.item_hr{background-color:#c3272b}.item_it{background-color:#1f97c1}.item_finance{background-color:#083a82}.item_technology{background-color:#ea7f13}.item_website{background-color:#c93756}.item_product{background-color:#9574a8}.item_marketing{background-color:#f1828d}.item_newsletter{background-color:#d64c84}.item_nonprofit{background-color:#ce9138}.item_social{background-color:#4caf50}.el-notification.right{z-index:9999999999!important}button.el-button.ff_create_post_form.el-button--info.el-button--mini{float:left!important}.el-dialog.el-dialog.post-type-selection{height:165px!important}.el-dialog.el-dialog.post-type-selection .el-dialog__body{height:118px!important;overflow:hidden}small{font-weight:400;font-size:13px;margin-left:15px}
|
1 |
+
.ff_form_wrap{margin:0}.ff_form_wrap *{box-sizing:border-box}.ff_form_wrap .ff_form_wrap_area{padding:15px 0;overflow:hidden;display:block}.ff_form_wrap .ff_form_wrap_area>h2{margin-top:0}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{-webkit-appearance:none;background-color:#fff;border-radius:4px;border:1px solid #dcdfe6;color:#606266;box-shadow:none;margin:0;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{box-shadow:none}input[type=color].el-select__input,input[type=date].el-select__input,input[type=datetime-local].el-select__input,input[type=datetime].el-select__input,input[type=email].el-select__input,input[type=month].el-select__input,input[type=number].el-select__input,input[type=password].el-select__input,input[type=search].el-select__input,input[type=tel].el-select__input,input[type=text].el-select__input,input[type=time].el-select__input,input[type=url].el-select__input,input[type=week].el-select__input,textarea.el-select__input{border:none;background-color:transparent}p{margin-top:0;margin-bottom:10px}.icon{font:normal normal normal 14px/1 ultimateform;display:inline-block}.mr15{margin-right:15px}.mb15{margin-bottom:15px}.pull-left{float:left!important}.pull-right{float:right!important}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.el-icon-clickable{cursor:pointer}.help-text{margin:0;font-style:italic;font-size:.9em}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:500;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-block{width:100%}.clearfix:after,.clearfix:before,.form-editor:after,.form-editor:before{display:table;content:" "}.clearfix:after,.form-editor:after{clear:both}.el-notification__content p{text-align:left}.label-lh-1-5 label{line-height:1.5}.ff_form_main_nav{display:block;width:auto;overflow:hidden;border-bottom:1px solid #ddd;background:#fff;margin:0 -20px;padding:10px 20px 0;box-sizing:border-box}.ff_form_main_nav span.plugin-name{font-size:16px;color:#6e6e6e;margin-right:30px}.ff_form_main_nav .ninja-tab{padding:10px 10px 18px;display:inline-block;text-decoration:none;color:#000;font-size:15px;line-height:16px;margin-right:15px;border-bottom:2px solid transparent}.ff_form_main_nav .ninja-tab:focus{box-shadow:none}.ff_form_main_nav .ninja-tab.ninja-tab-active{font-weight:700;border-bottom:2px solid #ffd65b}.ff_form_main_nav .ninja-tab.buy_pro_tab{background:#e04f5e;padding:10px 25px;color:#fff}.el-dialog__wrapper .el-dialog{background:transparent}.el-dialog__wrapper .el-dialog__header{display:block;overflow:hidden;background:#f5f5f5;border:1px solid #ddd;padding:10px;border-top-left-radius:5px;border-top-right-radius:5px}.el-dialog__wrapper .el-dialog__header .el-dialog__headerbtn{top:12px}.el-dialog__wrapper .el-dialog__footer{background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.el-dialog__wrapper .el-dialog__body{padding:20px;background:#fff;border-radius:0}.el-dialog__wrapper .el-dialog__body .dialog-footer{padding:10px 20px 20px;text-align:right;box-sizing:border-box;background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px;width:auto;display:block;margin:0 -20px -20px}.ff_nav_top{overflow:hidden;display:block;margin-bottom:15px;width:100%}.ff_nav_top .ff_nav_title{float:left;width:50%}.ff_nav_top .ff_nav_title h3{float:left;margin:0;padding:0;line-height:28px}.ff_nav_top .ff_nav_title .ff_nav_sub_actions{display:inline-block;margin-left:20px}.ff_nav_top .ff_nav_action{float:left;width:50%;text-align:right}.ff_nav_top .ff_search_inline{width:200px;text-align:right;display:inline-block}.el-table__header-wrapper table.el-table__header tr th{background-color:#f5f9f9!important;color:rgba(0,0,0,.6)!important}.ff_global_notices{display:block;width:100%;overflow:hidden;margin-top:20px;box-sizing:border-box}.ff_global_notices .ff_global_notice{background:#fff;margin-right:20px;display:block;position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.ff_global_notices .ff_global_notice.ff_notice_error{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.ff_global_notices .ff_global_notice.ff_notice_success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.el-select-dropdown.el-popper{z-index:99999999999!important}ul.ff_entry_list{list-style:disc;margin-left:20px}span.ff_new_badge{background:#ff4747;padding:0 5px 3px;border-radius:4px;font-size:11px;vertical-align:super;color:#fff;line-height:100%;margin-left:5px}label.el-checkbox,label.el-radio{display:inline-block}.el-time-spinner__list .el-time-spinner__item{margin-bottom:0!important}.ff_card_block{padding:15px 20px;background:#f1f1f1;border-radius:5px}.ff_card_block h3{padding:0;margin:0 0 15px}#wpbody-content{padding-right:30px}#wpbody-content,#wpbody-content *{box-sizing:border-box}.videoWrapper{position:relative;padding-bottom:56.25%;height:0}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.ff-left-spaced{margin-left:10px!important}.doc_video_wrapper{text-align:center;background:#fff;padding:20px 0 0;max-width:800px;margin:0 auto}.el-big-items .el-select-dropdown__wrap{max-height:350px}.ff_email_resend_inline{display:inline-block}.ff_settings_off{background-color:#f7fafc;padding:10px 15px;margin:-15px -35px}.ff_settings_off .ff_settings_block{background:#fff;padding:20px;margin-top:20px;margin-bottom:30px;border-radius:6px;box-shadow:0 0 35px 0 rgba(16,64,112,.15)}.ff_settings_header{margin-left:-15px;margin-right:-15px;margin-top:-10px;padding:10px 20px;border-bottom:1px solid #e0dbdb}.ff_settings_header h2{margin:0;line-height:30px}.el-text-primary{color:#20a0ff}.el-text-info{color:#58b7ff}.el-text-success{color:#13ce66}.el-text-warning{color:#f7ba2a}.el-text-danger{color:#ff4949}.el-notification__content{text-align:left}.el-input-group--append .el-input-group__append{left:-2px}.action-buttons .el-button+.el-button{margin-left:0}.el-box-card{box-shadow:none}.el-box-footer,.el-box-header{background-color:#edf1f6;padding:15px}.el-box-body{padding:15px}.el-form-item__force-inline.el-form-item__label{float:left;padding:11px 12px 11px 0}.el-form-item .el-form-item{margin-bottom:10px}.el-form-item__content .line{text-align:center}.el-basic-collapse{border:0;margin-bottom:15px}.el-basic-collapse .el-collapse-item__header{padding-left:0;display:inline-block;border:0}.el-basic-collapse .el-collapse-item__wrap{border:0}.el-basic-collapse .el-collapse-item__content{padding:0;background-color:#fff}.el-collapse-settings{margin-bottom:15px}.el-collapse-settings .el-collapse-item__header{background:#f1f1f1;padding-left:20px}.el-collapse-settings .el-collapse-item__content{padding-bottom:0;margin-top:15px}.el-collapse-settings .el-collapse-item__arrow{line-height:48px}.el-popover{text-align:left}.option-fields-section--content .el-form-item{margin-bottom:10px}.option-fields-section--content .el-form-item__label{padding-bottom:5px;font-size:13px;line-height:1}.option-fields-section--content .el-input__inner{height:30px;padding:0 8px}.option-fields-section--content .el-form-item__content{line-height:1.5;margin-bottom:5px}.el-dropdown-list{border:0;margin:5px 0;box-shadow:none;padding:0;z-index:10;position:static;min-width:auto;max-height:280px;overflow-y:scroll}.el-dropdown-list .el-dropdown-menu__item{font-size:13px;line-height:18px;padding:4px 10px;border-bottom:1px solid #f1f1f1}.el-dropdown-list .el-dropdown-menu__item:last-of-type{border-bottom:0}.el-form-nested.el-form--label-left .el-form-item__label{float:left;padding:10px 5px 10px 0}.el-message{top:40px}.el-button{text-decoration:none}.form-editor-elements:not(.el-form--label-left):not(.el-form--label-right) .el-form-item__label{line-height:1}.folded .el-dialog__wrapper{left:36px}.el-dialog__wrapper{left:160px}.ff-el-banner{width:200px;height:250px;border:1px solid #dce0e5;float:left;display:inline-block;padding:5px;transition:border .3s}.ff-el-banner,.ff-el-banner-group{overflow:hidden}.ff-el-banner-group .ff-el-banner{margin-right:10px;margin-bottom:30px}.ff-el-banner+.ff-el-banner{margin-right:10px}.ff-el-banner img{width:100%;height:auto;display:block}.ff-el-banner-header{text-align:center;margin:0;background:#909399;padding:3px 6px;font-size:13px;color:#fff;font-weight:400}.ff-el-banner-inner-item{position:relative;overflow:hidden;height:inherit}.ff-el-banner:hover .ff-el-banner-text-inside{opacity:1!important;visibility:visible!important}.ff-el-banner-text-inside{display:flex;justify-content:center;flex-direction:column}.ff-el-banner-text-inside-hoverable{position:absolute;transition:all .3s;color:#fff;top:0;left:0;right:0;bottom:0;padding:10px}.ff-el-banner-text-inside .form-title{color:#fff;margin:0 0 10px}.ff_backdrop{background:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999999}.compact td>.cell,.compact th>.cell{white-space:nowrap}@media (max-width:768px){.form_internal_menu{width:100%;left:0!important;top:44px!important}.form_internal_menu .ff-navigation-right{display:none}.form_internal_menu ul.ff_setting_menu{float:right;padding-right:10px!important}.form_internal_menu ul.ff_setting_menu li a{padding:10px 3px!important}.form_internal_menu .ff_form_name{padding:10px 5px!important;max-width:120px!important}.ff_nav_action{float:right!important;text-align:left!important}div#wpbody-content{padding-right:10px!important}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{min-height:30px}.ff_form_main_nav .plugin-name{display:none}.row-actions{display:inline-block!important}.el-form .el-form-item .el-form-item__label{width:100%!important}.el-form .el-form-item .el-form-item__content{margin-left:0!important}.ff_settings_container{margin:0!important;padding:0 10px!important}.ff_settings_wrapper .ff_settings_sidebar{width:120px!important}.ff_settings_wrapper .ff_settings_sidebar ul.ff_settings_list li a{padding:10px 5px;font-size:10px}.settings_app{min-width:500px}.el-tabs__content{padding:20px 10px!important}.wpf_each_entry a{word-break:break-all}div#js-form-editor--body{padding:20px 0}div#js-form-editor--body .form-editor__body-content{padding:60px 0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu{top:0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{display:block}}@media (max-width:425px){.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{margin-right:0}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right a,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right button,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right span{font-size:10px;padding:5px 4px!important;margin:0 3px}#ff_form_entries_app .ff_nav_top .ff_nav_action,#ff_form_entries_app .ff_nav_top .ff_nav_title{width:100%;margin-bottom:10px}.form_internal_menu{position:relative;display:block!important;background:#fff;overflow:hidden;top:0!important;margin:0 -10px;width:auto}.form_internal_menu ul.ff_setting_menu li a{font-size:11px}.ff_form_application_container{margin-top:0!important}.ff_form_main_nav .ninja-tab{font-size:12px;padding:10px 5px;margin:0}ul.el-pager{display:none!important}.ff_settings_wrapper{min-width:600px}.ff_form_wrap .ff_form_wrap_area{overflow:scroll}button.el-button.pull-right{float:left!important}.entry_header h3{display:block;width:100%!important;clear:both}.v-row .v-col--33{width:100%!important;padding-right:0;margin-bottom:15px}.v-row .v-col--33:last-child{margin-bottom:0}.option-fields-section--content{padding:15px 5px}}.el-popover{text-align:left!important;word-break:inherit!important}.ff_all_forms .pull-right{float:right}.ff_all_forms .form_navigation{margin-bottom:20px}.v-modal{display:none!important}.mtb10{margin-top:10px;margin-bottom:10px}.predefinedModal .el-dialog{overflow-y:scroll;height:600px}.predefinedModal .el-dialog .el-dialog__body{height:484px;overflow:scroll}.ff_form_group{position:relative;width:100%;overflow:hidden}.form_item_group,.form_item_group label{display:inline-block}.form_item_group.form_item_group_search{float:right}.form_action_navigations{margin:-20px -20px 0;padding:10px 20px;background:#f5f5f5;border-bottom:1px solid #ddd}.ff-el-banner{padding:0!important;word-break:break-word}.ff-el-banner:hover{background:#009cff;transition:background-color .1s linear}.item_has_image .ff-el-banner-text-inside.ff-el-banner-text-inside-hoverable{opacity:0;visibility:hidden}.item_has_image:hover .ff-el-banner-text-inside-hoverable{display:flex;background:#009cff;transition:background-color .1s linear}.item_no_image .ff-el-banner-header{position:absolute;z-index:999999;left:0;right:0;top:0;bottom:0;padding-top:110px;font-size:15px;font-weight:700;background:transparent;word-break:break-word}.item_no_image:hover .ff-el-banner-header{display:none;visibility:hidden}.item_no_image:hover .ff-el-banner-text-inside-hoverable{display:flex}.item_no_image .ff-el-banner-text-inside-hoverable{display:none}.ff-el-banner-text-inside{cursor:pointer}.item_education{background-color:#4b77be}.item_government{background-color:#8e44ad}.item_healthcare{background-color:#26a587}.item_hr{background-color:#c3272b}.item_it{background-color:#1f97c1}.item_finance{background-color:#083a82}.item_technology{background-color:#ea7f13}.item_website{background-color:#c93756}.item_product{background-color:#9574a8}.item_marketing{background-color:#f1828d}.item_newsletter{background-color:#d64c84}.item_nonprofit{background-color:#ce9138}.item_social{background-color:#4caf50}.el-notification.right{z-index:9999999999!important}button.el-button.ff_create_post_form.el-button--info.el-button--mini{float:left!important}.el-dialog.el-dialog.post-type-selection{height:165px!important}.el-dialog.el-dialog.post-type-selection .el-dialog__body{height:118px!important;overflow:hidden}small{font-weight:400;font-size:13px;margin-left:15px}.shortcode_btn{width:250px;overflow:hidden;display:block;height:26px;font-size:11px;border-radius:4px}.classic_shortcode{margin-bottom:7px}
|
public/css/fluent-forms-admin-sass.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}@font-face{font-family:element-icons;src:url(../fonts/element-icons.woff?535877f50039c0cb49a6196a5b7517cd) format("woff"),url(../fonts/element-icons.ttf?732389ded34cb9c52dd88271f1345af9) format("truetype");font-weight:400;font-display:"auto";font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-ice-cream-round:before{content:"\E6A0"}.el-icon-ice-cream-square:before{content:"\E6A3"}.el-icon-lollipop:before{content:"\E6A4"}.el-icon-potato-strips:before{content:"\E6A5"}.el-icon-milk-tea:before{content:"\E6A6"}.el-icon-ice-drink:before{content:"\E6A7"}.el-icon-ice-tea:before{content:"\E6A9"}.el-icon-coffee:before{content:"\E6AA"}.el-icon-orange:before{content:"\E6AB"}.el-icon-pear:before{content:"\E6AC"}.el-icon-apple:before{content:"\E6AD"}.el-icon-cherry:before{content:"\E6AE"}.el-icon-watermelon:before{content:"\E6AF"}.el-icon-grape:before{content:"\E6B0"}.el-icon-refrigerator:before{content:"\E6B1"}.el-icon-goblet-square-full:before{content:"\E6B2"}.el-icon-goblet-square:before{content:"\E6B3"}.el-icon-goblet-full:before{content:"\E6B4"}.el-icon-goblet:before{content:"\E6B5"}.el-icon-cold-drink:before{content:"\E6B6"}.el-icon-coffee-cup:before{content:"\E6B8"}.el-icon-water-cup:before{content:"\E6B9"}.el-icon-hot-water:before{content:"\E6BA"}.el-icon-ice-cream:before{content:"\E6BB"}.el-icon-dessert:before{content:"\E6BC"}.el-icon-sugar:before{content:"\E6BD"}.el-icon-tableware:before{content:"\E6BE"}.el-icon-burger:before{content:"\E6BF"}.el-icon-knife-fork:before{content:"\E6C1"}.el-icon-fork-spoon:before{content:"\E6C2"}.el-icon-chicken:before{content:"\E6C3"}.el-icon-food:before{content:"\E6C4"}.el-icon-dish-1:before{content:"\E6C5"}.el-icon-dish:before{content:"\E6C6"}.el-icon-moon-night:before{content:"\E6EE"}.el-icon-moon:before{content:"\E6F0"}.el-icon-cloudy-and-sunny:before{content:"\E6F1"}.el-icon-partly-cloudy:before{content:"\E6F2"}.el-icon-cloudy:before{content:"\E6F3"}.el-icon-sunny:before{content:"\E6F6"}.el-icon-sunset:before{content:"\E6F7"}.el-icon-sunrise-1:before{content:"\E6F8"}.el-icon-sunrise:before{content:"\E6F9"}.el-icon-heavy-rain:before{content:"\E6FA"}.el-icon-lightning:before{content:"\E6FB"}.el-icon-light-rain:before{content:"\E6FC"}.el-icon-wind-power:before{content:"\E6FD"}.el-icon-baseball:before{content:"\E712"}.el-icon-soccer:before{content:"\E713"}.el-icon-football:before{content:"\E715"}.el-icon-basketball:before{content:"\E716"}.el-icon-ship:before{content:"\E73F"}.el-icon-truck:before{content:"\E740"}.el-icon-bicycle:before{content:"\E741"}.el-icon-mobile-phone:before{content:"\E6D3"}.el-icon-service:before{content:"\E6D4"}.el-icon-key:before{content:"\E6E2"}.el-icon-unlock:before{content:"\E6E4"}.el-icon-lock:before{content:"\E6E5"}.el-icon-watch:before{content:"\E6FE"}.el-icon-watch-1:before{content:"\E6FF"}.el-icon-timer:before{content:"\E702"}.el-icon-alarm-clock:before{content:"\E703"}.el-icon-map-location:before{content:"\E704"}.el-icon-delete-location:before{content:"\E705"}.el-icon-add-location:before{content:"\E706"}.el-icon-location-information:before{content:"\E707"}.el-icon-location-outline:before{content:"\E708"}.el-icon-location:before{content:"\E79E"}.el-icon-place:before{content:"\E709"}.el-icon-discover:before{content:"\E70A"}.el-icon-first-aid-kit:before{content:"\E70B"}.el-icon-trophy-1:before{content:"\E70C"}.el-icon-trophy:before{content:"\E70D"}.el-icon-medal:before{content:"\E70E"}.el-icon-medal-1:before{content:"\E70F"}.el-icon-stopwatch:before{content:"\E710"}.el-icon-mic:before{content:"\E711"}.el-icon-copy-document:before{content:"\E718"}.el-icon-full-screen:before{content:"\E719"}.el-icon-switch-button:before{content:"\E71B"}.el-icon-aim:before{content:"\E71C"}.el-icon-crop:before{content:"\E71D"}.el-icon-odometer:before{content:"\E71E"}.el-icon-time:before{content:"\E71F"}.el-icon-bangzhu:before{content:"\E724"}.el-icon-close-notification:before{content:"\E726"}.el-icon-microphone:before{content:"\E727"}.el-icon-turn-off-microphone:before{content:"\E728"}.el-icon-position:before{content:"\E729"}.el-icon-postcard:before{content:"\E72A"}.el-icon-message:before{content:"\E72B"}.el-icon-chat-line-square:before{content:"\E72D"}.el-icon-chat-dot-square:before{content:"\E72E"}.el-icon-chat-dot-round:before{content:"\E72F"}.el-icon-chat-square:before{content:"\E730"}.el-icon-chat-line-round:before{content:"\E731"}.el-icon-chat-round:before{content:"\E732"}.el-icon-set-up:before{content:"\E733"}.el-icon-turn-off:before{content:"\E734"}.el-icon-open:before{content:"\E735"}.el-icon-connection:before{content:"\E736"}.el-icon-link:before{content:"\E737"}.el-icon-cpu:before{content:"\E738"}.el-icon-thumb:before{content:"\E739"}.el-icon-female:before{content:"\E73A"}.el-icon-male:before{content:"\E73B"}.el-icon-guide:before{content:"\E73C"}.el-icon-news:before{content:"\E73E"}.el-icon-price-tag:before{content:"\E744"}.el-icon-discount:before{content:"\E745"}.el-icon-wallet:before{content:"\E747"}.el-icon-coin:before{content:"\E748"}.el-icon-money:before{content:"\E749"}.el-icon-bank-card:before{content:"\E74A"}.el-icon-box:before{content:"\E74B"}.el-icon-present:before{content:"\E74C"}.el-icon-sell:before{content:"\E6D5"}.el-icon-sold-out:before{content:"\E6D6"}.el-icon-shopping-bag-2:before{content:"\E74D"}.el-icon-shopping-bag-1:before{content:"\E74E"}.el-icon-shopping-cart-2:before{content:"\E74F"}.el-icon-shopping-cart-1:before{content:"\E750"}.el-icon-shopping-cart-full:before{content:"\E751"}.el-icon-smoking:before{content:"\E752"}.el-icon-no-smoking:before{content:"\E753"}.el-icon-house:before{content:"\E754"}.el-icon-table-lamp:before{content:"\E755"}.el-icon-school:before{content:"\E756"}.el-icon-office-building:before{content:"\E757"}.el-icon-toilet-paper:before{content:"\E758"}.el-icon-notebook-2:before{content:"\E759"}.el-icon-notebook-1:before{content:"\E75A"}.el-icon-files:before{content:"\E75B"}.el-icon-collection:before{content:"\E75C"}.el-icon-receiving:before{content:"\E75D"}.el-icon-suitcase-1:before{content:"\E760"}.el-icon-suitcase:before{content:"\E761"}.el-icon-film:before{content:"\E763"}.el-icon-collection-tag:before{content:"\E765"}.el-icon-data-analysis:before{content:"\E766"}.el-icon-pie-chart:before{content:"\E767"}.el-icon-data-board:before{content:"\E768"}.el-icon-data-line:before{content:"\E76D"}.el-icon-reading:before{content:"\E769"}.el-icon-magic-stick:before{content:"\E76A"}.el-icon-coordinate:before{content:"\E76B"}.el-icon-mouse:before{content:"\E76C"}.el-icon-brush:before{content:"\E76E"}.el-icon-headset:before{content:"\E76F"}.el-icon-umbrella:before{content:"\E770"}.el-icon-scissors:before{content:"\E771"}.el-icon-mobile:before{content:"\E773"}.el-icon-attract:before{content:"\E774"}.el-icon-monitor:before{content:"\E775"}.el-icon-search:before{content:"\E778"}.el-icon-takeaway-box:before{content:"\E77A"}.el-icon-paperclip:before{content:"\E77D"}.el-icon-printer:before{content:"\E77E"}.el-icon-document-add:before{content:"\E782"}.el-icon-document:before{content:"\E785"}.el-icon-document-checked:before{content:"\E786"}.el-icon-document-copy:before{content:"\E787"}.el-icon-document-delete:before{content:"\E788"}.el-icon-document-remove:before{content:"\E789"}.el-icon-tickets:before{content:"\E78B"}.el-icon-folder-checked:before{content:"\E77F"}.el-icon-folder-delete:before{content:"\E780"}.el-icon-folder-remove:before{content:"\E781"}.el-icon-folder-add:before{content:"\E783"}.el-icon-folder-opened:before{content:"\E784"}.el-icon-folder:before{content:"\E78A"}.el-icon-edit-outline:before{content:"\E764"}.el-icon-edit:before{content:"\E78C"}.el-icon-date:before{content:"\E78E"}.el-icon-c-scale-to-original:before{content:"\E7C6"}.el-icon-view:before{content:"\E6CE"}.el-icon-loading:before{content:"\E6CF"}.el-icon-rank:before{content:"\E6D1"}.el-icon-sort-down:before{content:"\E7C4"}.el-icon-sort-up:before{content:"\E7C5"}.el-icon-sort:before{content:"\E6D2"}.el-icon-finished:before{content:"\E6CD"}.el-icon-refresh-left:before{content:"\E6C7"}.el-icon-refresh-right:before{content:"\E6C8"}.el-icon-refresh:before{content:"\E6D0"}.el-icon-video-play:before{content:"\E7C0"}.el-icon-video-pause:before{content:"\E7C1"}.el-icon-d-arrow-right:before{content:"\E6DC"}.el-icon-d-arrow-left:before{content:"\E6DD"}.el-icon-arrow-up:before{content:"\E6E1"}.el-icon-arrow-down:before{content:"\E6DF"}.el-icon-arrow-right:before{content:"\E6E0"}.el-icon-arrow-left:before{content:"\E6DE"}.el-icon-top-right:before{content:"\E6E7"}.el-icon-top-left:before{content:"\E6E8"}.el-icon-top:before{content:"\E6E6"}.el-icon-bottom:before{content:"\E6EB"}.el-icon-right:before{content:"\E6E9"}.el-icon-back:before{content:"\E6EA"}.el-icon-bottom-right:before{content:"\E6EC"}.el-icon-bottom-left:before{content:"\E6ED"}.el-icon-caret-top:before{content:"\E78F"}.el-icon-caret-bottom:before{content:"\E790"}.el-icon-caret-right:before{content:"\E791"}.el-icon-caret-left:before{content:"\E792"}.el-icon-d-caret:before{content:"\E79A"}.el-icon-share:before{content:"\E793"}.el-icon-menu:before{content:"\E798"}.el-icon-s-grid:before{content:"\E7A6"}.el-icon-s-check:before{content:"\E7A7"}.el-icon-s-data:before{content:"\E7A8"}.el-icon-s-opportunity:before{content:"\E7AA"}.el-icon-s-custom:before{content:"\E7AB"}.el-icon-s-claim:before{content:"\E7AD"}.el-icon-s-finance:before{content:"\E7AE"}.el-icon-s-comment:before{content:"\E7AF"}.el-icon-s-flag:before{content:"\E7B0"}.el-icon-s-marketing:before{content:"\E7B1"}.el-icon-s-shop:before{content:"\E7B4"}.el-icon-s-open:before{content:"\E7B5"}.el-icon-s-management:before{content:"\E7B6"}.el-icon-s-ticket:before{content:"\E7B7"}.el-icon-s-release:before{content:"\E7B8"}.el-icon-s-home:before{content:"\E7B9"}.el-icon-s-promotion:before{content:"\E7BA"}.el-icon-s-operation:before{content:"\E7BB"}.el-icon-s-unfold:before{content:"\E7BC"}.el-icon-s-fold:before{content:"\E7A9"}.el-icon-s-platform:before{content:"\E7BD"}.el-icon-s-order:before{content:"\E7BE"}.el-icon-s-cooperation:before{content:"\E7BF"}.el-icon-bell:before{content:"\E725"}.el-icon-message-solid:before{content:"\E799"}.el-icon-video-camera:before{content:"\E772"}.el-icon-video-camera-solid:before{content:"\E796"}.el-icon-camera:before{content:"\E779"}.el-icon-camera-solid:before{content:"\E79B"}.el-icon-download:before{content:"\E77C"}.el-icon-upload2:before{content:"\E77B"}.el-icon-upload:before{content:"\E7C3"}.el-icon-picture-outline-round:before{content:"\E75F"}.el-icon-picture-outline:before{content:"\E75E"}.el-icon-picture:before{content:"\E79F"}.el-icon-close:before{content:"\E6DB"}.el-icon-check:before{content:"\E6DA"}.el-icon-plus:before{content:"\E6D9"}.el-icon-minus:before{content:"\E6D8"}.el-icon-help:before{content:"\E73D"}.el-icon-s-help:before{content:"\E7B3"}.el-icon-circle-close:before{content:"\E78D"}.el-icon-circle-check:before{content:"\E720"}.el-icon-circle-plus-outline:before{content:"\E723"}.el-icon-remove-outline:before{content:"\E722"}.el-icon-zoom-out:before{content:"\E776"}.el-icon-zoom-in:before{content:"\E777"}.el-icon-error:before{content:"\E79D"}.el-icon-success:before{content:"\E79C"}.el-icon-circle-plus:before{content:"\E7A0"}.el-icon-remove:before{content:"\E7A2"}.el-icon-info:before{content:"\E7A1"}.el-icon-question:before{content:"\E7A4"}.el-icon-warning-outline:before{content:"\E6C9"}.el-icon-warning:before{content:"\E7A3"}.el-icon-goods:before{content:"\E7C2"}.el-icon-s-goods:before{content:"\E7B2"}.el-icon-star-off:before{content:"\E717"}.el-icon-star-on:before{content:"\E797"}.el-icon-more-outline:before{content:"\E6CC"}.el-icon-more:before{content:"\E794"}.el-icon-phone-outline:before{content:"\E6CB"}.el-icon-phone:before{content:"\E795"}.el-icon-user:before{content:"\E6E3"}.el-icon-user-solid:before{content:"\E7A5"}.el-icon-setting:before{content:"\E6CA"}.el-icon-s-tools:before{content:"\E7AC"}.el-icon-delete:before{content:"\E6D7"}.el-icon-delete-solid:before{content:"\E7C9"}.el-icon-eleme:before{content:"\E7C7"}.el-icon-platform-eleme:before{content:"\E7CA"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@font-face{font-family:fluentform;src:url(../fonts/fluentform.eot?bd247f4736d5cb3fc5fcb8b8650cc549);src:url(../fonts/fluentform.eot?bd247f4736d5cb3fc5fcb8b8650cc549?#iefix) format("embedded-opentype"),url(../fonts/fluentform.woff?483735301c8b46d6edb8fded7b6c75d7) format("woff"),url(../fonts/fluentform.ttf?9209f40bff8597892e6b2e91e8a79507) format("truetype"),url(../fonts/fluentform.svg?ce3318fa2f1123ecc0fde93bd4a30375#fluentform) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}[class*=" icon-"]:before,[class^=icon-]:before,[data-icon]:before{font-family:fluentform!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-trash-o:before{content:"\E000"}.icon-pencil:before{content:"\E001"}.icon-clone:before{content:"\E002"}.icon-arrows:before{content:"\E003"}.icon-user:before{content:"\E004"}.icon-text-width:before{content:"\E005"}.icon-unlock-alt:before{content:"\E006"}.icon-paragraph:before{content:"\E007"}.icon-columns:before{content:"\E008"}.icon-plus-circle:before{content:"\E009"}.icon-minus-circle:before{content:"\E00A"}.icon-link:before{content:"\E00B"}.icon-envelope-o:before{content:"\E00C"}.icon-caret-square-o-down:before{content:"\E00D"}.icon-list-ul:before{content:"\E00E"}.icon-dot-circle-o:before{content:"\E00F"}.icon-check-square-o:before{content:"\E010"}.icon-eye-slash:before{content:"\E011"}.icon-picture-o:before{content:"\E012"}.icon-calendar-o:before{content:"\E013"}.icon-upload:before{content:"\E014"}.icon-globe:before{content:"\E015"}.icon-pound:before{content:"\E016"}.icon-map-marker:before{content:"\E017"}.icon-credit-card:before{content:"\E018"}.icon-step-forward:before{content:"\E019"}.icon-code:before{content:"\E01A"}.icon-html5:before{content:"\E01B"}.icon-qrcode:before{content:"\E01C"}.icon-certificate:before{content:"\E01D"}.icon-star-half-o:before{content:"\E01E"}.icon-eye:before{content:"\E01F"}.icon-save:before{content:"\E020"}.icon-puzzle-piece:before{content:"\E021"}.icon-slack:before{content:"\E022"}.icon-trash:before{content:"\E023"}.icon-lock:before{content:"\E024"}.icon-chevron-down:before{content:"\E025"}.icon-chevron-up:before{content:"\E026"}.icon-chevron-right:before{content:"\E027"}.icon-chevron-left:before{content:"\E028"}.icon-circle-o:before{content:"\E029"}.icon-cog:before{content:"\E02A"}.icon-info:before{content:"\E02C"}.icon-info-circle:before{content:"\E02B"}.icon-ink-pen:before{content:"\E02D"}.icon-keyboard-o:before{content:"\E02E"}@font-face{font-family:fluentformeditors;src:url(../fonts/fluentformeditors.eot?a038536a0a1cc2bc001758da589bec20);src:url(../fonts/fluentformeditors.eot?a038536a0a1cc2bc001758da589bec20?#iefix) format("embedded-opentype"),url(../fonts/fluentformeditors.woff?239e1c8f54d107e3d9a1b4d16f7b00ee) format("woff"),url(../fonts/fluentformeditors.ttf?f02d86d8c42f8966121c9a432d3decb0) format("truetype"),url(../fonts/fluentformeditors.svg?be1434b6a10d2f8df2694a86009f6f5d#fluentformeditors) format("svg");font-weight:400;font-style:normal}[class*=" ff-edit-"]:before,[class^=ff-edit-]:before{font-family:fluentformeditors!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ff-edit-column-2:before{content:"b"}.ff-edit-rating:before{content:"c"}.ff-edit-checkable-grid:before{content:"d"}.ff-edit-hidden-field:before{content:"e"}.ff-edit-section-break:before{content:"f"}.ff-edit-recaptha:before{content:"g"}.ff-edit-html:before{content:"h"}.ff-edit-shortcode:before{content:"i"}.ff-edit-terms-condition:before{content:"j"}.ff-edit-action-hook:before{content:"k"}.ff-edit-step:before{content:"l"}.ff-edit-name:before{content:"m"}.ff-edit-email:before{content:"n"}.ff-edit-text:before{content:"o"}.ff-edit-mask:before{content:"p"}.ff-edit-textarea:before{content:"q"}.ff-edit-address:before{content:"r"}.ff-edit-country:before{content:"s"}.ff-edit-dropdown:before{content:"u"}.ff-edit-radio:before{content:"v"}.ff-edit-checkbox-1:before{content:"w"}.ff-edit-multiple-choice:before{content:"x"}.ff-edit-website-url:before{content:"y"}.ff-edit-password:before{content:"z"}.ff-edit-date:before{content:"A"}.ff-edit-files:before{content:"B"}.ff-edit-images:before{content:"C"}.ff-edit-gdpr:before{content:"E"}.ff-edit-three-column:before{content:"G"}.ff-edit-repeat:before{content:"F"}.ff-edit-numeric:before{content:"t"}.ff-edit-credit-card:before{content:"a"}.ff-edit-keyboard-o:before{content:"D"}.ff-edit-shopping-cart:before{content:"H"}.ff-edit-link:before{content:"I"}.ff-edit-ios-cart-outline:before{content:"J"}.ff-edit-tint:before{content:"K"}.ff_form_wrap{margin:0}.ff_form_wrap *{box-sizing:border-box}.ff_form_wrap .ff_form_wrap_area{padding:15px 0;overflow:hidden;display:block}.ff_form_wrap .ff_form_wrap_area>h2{margin-top:0}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{-webkit-appearance:none;background-color:#fff;border-radius:4px;border:1px solid #dcdfe6;color:#606266;box-shadow:none;margin:0;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{box-shadow:none}input[type=color].el-select__input,input[type=date].el-select__input,input[type=datetime-local].el-select__input,input[type=datetime].el-select__input,input[type=email].el-select__input,input[type=month].el-select__input,input[type=number].el-select__input,input[type=password].el-select__input,input[type=search].el-select__input,input[type=tel].el-select__input,input[type=text].el-select__input,input[type=time].el-select__input,input[type=url].el-select__input,input[type=week].el-select__input,textarea.el-select__input{border:none;background-color:transparent}p{margin-top:0;margin-bottom:10px}.icon{font:normal normal normal 14px/1 ultimateform;display:inline-block}.mr15{margin-right:15px}.mb15{margin-bottom:15px}.pull-left{float:left!important}.pull-right{float:right!important}.text-left{text-align:left}.text-center{text-align:center}.el-icon-clickable{cursor:pointer}.help-text{margin:0;font-style:italic;font-size:.9em}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:500;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-block{width:100%}.clearfix:after,.clearfix:before,.form-editor:after,.form-editor:before{display:table;content:" "}.clearfix:after,.form-editor:after{clear:both}.el-notification__content p{text-align:left}.label-lh-1-5 label{line-height:1.5}.ff_form_main_nav{display:block;width:auto;overflow:hidden;border-bottom:1px solid #ddd;background:#fff;margin:0 -20px;padding:10px 20px 0;box-sizing:border-box}.ff_form_main_nav span.plugin-name{font-size:16px;color:#6e6e6e;margin-right:30px}.ff_form_main_nav .ninja-tab{padding:10px 10px 18px;display:inline-block;text-decoration:none;color:#000;font-size:15px;line-height:16px;margin-right:15px;border-bottom:2px solid transparent}.ff_form_main_nav .ninja-tab:focus{box-shadow:none}.ff_form_main_nav .ninja-tab.ninja-tab-active{font-weight:700;border-bottom:2px solid #ffd65b}.ff_form_main_nav .ninja-tab.buy_pro_tab{background:#e04f5e;padding:10px 25px;color:#fff}.el-dialog__wrapper .el-dialog{background:transparent}.el-dialog__wrapper .el-dialog__header{display:block;overflow:hidden;background:#f5f5f5;border:1px solid #ddd;padding:10px;border-top-left-radius:5px;border-top-right-radius:5px}.el-dialog__wrapper .el-dialog__header .el-dialog__headerbtn{top:12px}.el-dialog__wrapper .el-dialog__footer{background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.el-dialog__wrapper .el-dialog__body{padding:20px;background:#fff;border-radius:0}.el-dialog__wrapper .el-dialog__body .dialog-footer{padding:10px 20px 20px;text-align:right;box-sizing:border-box;background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px;width:auto;display:block;margin:0 -20px -20px}.ff_nav_top{overflow:hidden;display:block;margin-bottom:15px;width:100%}.ff_nav_top .ff_nav_title{float:left;width:50%}.ff_nav_top .ff_nav_title h3{float:left;margin:0;padding:0;line-height:28px}.ff_nav_top .ff_nav_title .ff_nav_sub_actions{display:inline-block;margin-left:20px}.ff_nav_top .ff_nav_action{float:left;width:50%;text-align:right}.ff_nav_top .ff_search_inline{width:200px;text-align:right;display:inline-block}.el-table__header-wrapper table.el-table__header tr th{background-color:#f5f9f9!important;color:rgba(0,0,0,.6)!important}.ff_global_notices{display:block;width:100%;overflow:hidden;margin-top:20px;box-sizing:border-box}.ff_global_notices .ff_global_notice{background:#fff;margin-right:20px;display:block;position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.ff_global_notices .ff_global_notice.ff_notice_error{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.ff_global_notices .ff_global_notice.ff_notice_success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.el-select-dropdown.el-popper{z-index:99999999999!important}ul.ff_entry_list{list-style:disc;margin-left:20px}span.ff_new_badge{background:#ff4747;padding:0 5px 3px;border-radius:4px;font-size:11px;vertical-align:super;color:#fff;line-height:100%;margin-left:5px}label.el-checkbox,label.el-radio{display:inline-block}.el-time-spinner__list .el-time-spinner__item{margin-bottom:0!important}.ff_card_block{padding:15px 20px;background:#f1f1f1;border-radius:5px}.ff_card_block h3{padding:0;margin:0 0 15px}#wpbody-content{padding-right:30px}#wpbody-content,#wpbody-content *{box-sizing:border-box}.videoWrapper{position:relative;padding-bottom:56.25%;height:0}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.ff-left-spaced{margin-left:10px!important}.doc_video_wrapper{text-align:center;background:#fff;padding:20px 0 0;max-width:800px;margin:0 auto}.el-big-items .el-select-dropdown__wrap{max-height:350px}.ff_email_resend_inline{display:inline-block}.ff_settings_off{background-color:#f7fafc;padding:10px 15px;margin:-15px -35px}.ff_settings_off .ff_settings_block{background:#fff;padding:20px;margin-top:20px;margin-bottom:30px;border-radius:6px;box-shadow:0 0 35px 0 rgba(16,64,112,.15)}.ff_settings_header{margin-left:-15px;margin-right:-15px;margin-top:-10px;padding:10px 20px;border-bottom:1px solid #e0dbdb}.ff_settings_header h2{margin:0;line-height:30px}.ultimate-nav-menu{background-color:#fff;border-radius:4px}.ultimate-nav-menu>ul{margin:0}.ultimate-nav-menu>ul>li{display:inline-block;margin:0;font-weight:600}.ultimate-nav-menu>ul>li+li{margin-left:-4px}.ultimate-nav-menu>ul>li a{padding:10px;display:block;text-decoration:none;color:#23282d}.ultimate-nav-menu>ul>li a:hover{background-color:#337ab7;color:#fff}.ultimate-nav-menu>ul>li:first-of-type a{border-radius:4px 0 0 4px}.ultimate-nav-menu>ul>li.active a{background-color:#337ab7;color:#fff}.nav-tabs *{box-sizing:border-box}.nav-tab-list{margin:0}.nav-tab-list li{display:inline-block;margin-bottom:0;text-align:center;background-color:#f5f5f5}.nav-tab-list li+li{margin-left:-4x;border-left:1px solid #e2e4e7}.nav-tab-list li:hover{background-color:#e2e4e7}.nav-tab-list li.active{background-color:#fff;border-bottom-color:#fff;font-size:15px}.nav-tab-list li a{color:#000;display:block;padding:12px;font-weight:600;text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.nav-tab-list li a:focus{box-shadow:none}.toggle-fields-options{overflow:hidden}.toggle-fields-options li{width:50%;float:left}.nav-tab-items{background-color:#fff}.vddl-draggable,.vddl-list{position:relative}.vddl-dragging{opacity:1}.vddl-dragging-source{display:none}.select{min-width:200px}.new-elements .btn-element{padding:10px 5px;background-color:#fff;display:block;color:#636a84;cursor:move;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:all .05s;text-align:center;border-radius:0;box-shadow:0 1px 2px 0 #d9d9da}.new-elements .btn-element:hover{background-color:#636a84;color:#fff}.new-elements .btn-element:active:not([draggable=false]){box-shadow:inset 0 2px 7px -4px rgba(0,0,0,.5);transform:translateY(1px)}.new-elements .btn-element i{display:block;text-align:center;margin:0 auto}.new-elements .btn-element[draggable=false]{opacity:.5;cursor:pointer}.mtb15{margin-top:15px;margin-bottom:15px}.text-right{text-align:right}.container,footer{max-width:980px;min-width:730px;margin:0 auto}.help-text{margin-bottom:0}.demo-content{width:100%}.vddl-list__handle div.vddl-nodrag{display:flex;align-items:center;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.vddl-list__handle input[type=radio]{margin-right:0}.vddl-list__handle .nodrag div{margin-right:6px}.vddl-list__handle .nodrag div:last-of-type{margin-right:0}.vddl-list__handle .handle{cursor:move;width:25px;height:16px;background:url(../images/handle.png?e2ed9fef1f5e01da3fbe7239f619d775) 50% no-repeat;background-size:20px 20px}.vddl-draggable .el-form-item{margin-bottom:5px}.tooltip-icon{color:#828f96;vertical-align:middle!important}.option-fields-section{border-bottom:1px solid #dfdfdf;background:#fff}.option-fields-section:last-child{margin-bottom:-5px}.option-fields-section.option-fields-section_active{background:#f3f4f5}.option-fields-section:first-child .option-fields-section--title{border-top:1px solid #e3e5e8!important;background:#fff}.option-fields-section:first-child .option-fields-section--title.active{border-top:0}.option-fields-section--title{padding:14px 20px;margin:0;font-size:13px;font-weight:600;cursor:pointer;overflow:hidden;position:relative}.option-fields-section--title:after{content:"\E025";position:absolute;right:20px;font-family:fluentform;vertical-align:middle}.option-fields-section--title.active{font-weight:700}.option-fields-section--title.active:after{content:"\E026"}.option-fields-section--icon{float:right;vertical-align:middle;margin-top:3px}.option-fields-section--content{max-height:1050vh;padding:15px 20px}.slide-fade-enter-active,.slide-fade-leave-active{overflow:hidden;transition:all .2s ease-in-out}.slide-fade-enter,.slide-fade-leave-to{max-height:0!important;opacity:.2;transform:translateY(-11px)}.form-editor *{box-sizing:border-box}.form-editor .address-field-option label.el-checkbox{display:inline-block}.form-editor--body,.form-editor--sidebar{float:left}.form-editor--body{background-color:#fff;width:60%;padding:20px 20px 30px;height:calc(100vh - 51px);overflow-y:scroll}.form-editor--body::-webkit-scrollbar{-webkit-appearance:none;display:none}.form-editor--body .ff-el-form-hide_label .el-form-item__label,.form-editor--body .ff-el-form-hide_label>label{display:none}.form-editor--body .el-slider__button-wrapper{z-index:0}.form-editor .ff-el-form-bottom.el-form-item,.form-editor .ff-el-form-bottom .el-form-item{display:flex;flex-direction:column-reverse}.form-editor .ff-el-form-bottom .el-form-item__label{padding:10px 0 0}.form-editor .ff-el-form-right .el-form-item__label{text-align:right;padding-right:5px}.form-editor--sidebar{width:40%;background-color:#f3f3f4}.form-editor--sidebar-content{height:90vh;overflow-y:scroll;border-left:1px solid #e2e4e7;padding-bottom:50px}.form-editor--sidebar-content::-webkit-scrollbar{-webkit-appearance:none;display:none}.form-editor--sidebar-content .nav-tab-list li{background-color:#f3f3f4}.form-editor--sidebar-content .nav-tab-list li a{padding:15px}.form-editor--sidebar-content .nav-tab-list li.active{background-color:#f3f3f4;box-shadow:inset 0 -2px #409eff}.form-editor--sidebar-content .nav-tab-list li+li{border-left:1px solid #e3e5e8}.form-editor--sidebar-content .search-element{margin:0;padding:0}.form-editor--sidebar-content .search-element .el-input--small .el-input__inner{height:40px}.form-editor--sidebar-content .search-element-result{padding:16px 15px 15px;margin-top:0!important;border-top:1px solid #e3e5e8}.form-editor--sidebar .nav-tab-items{background-color:transparent}.form-editor--sidebar .ff_advnced_options_wrap{max-height:300px;overflow-y:auto;margin-bottom:10px}.form-editor__body-content{max-width:100%;margin:0 auto}.form-editor__body-content .ff_check_photo_item{float:left;margin-right:10px;margin-bottom:10px}.form-editor__body-content .ff_check_photo_item .ff_photo_holder{width:120px;height:120px;background-size:cover;background-position:50%;background-repeat:no-repeat}div#js-form-editor--body .form-editor__body-content{background-color:#fff;padding:30px 20px 30px 0}#ff_form_editor_app{margin-right:-30px}body.ff_full_screen{overflow-y:hidden}body.ff_full_screen #ff_form_editor_app{margin-right:0}body.ff_full_screen .form-editor--sidebar-content{height:calc(100vh - 56px)}body.ff_full_screen .wrap.ff_form_wrap{background:#fff;color:#444;z-index:100099!important;position:fixed;overflow:hidden;top:0;bottom:0;left:0!important;right:0!important;height:100%;min-width:0;cursor:default;margin:0!important}body.ff_full_screen .wrap.ff_form_wrap .form_internal_menu{position:absolute;top:0;left:0;right:0}body.ff_full_screen .wrap.ff_form_wrap .form_internal_menu li{opacity:.5}body.ff_full_screen .wrap.ff_form_wrap .form_internal_menu li:hover{opacity:1}body.ff_full_screen div#js-form-editor--body .form-editor__body-content{padding:30px}body{overflow-y:hidden}.styler_row{width:100%;overflow:hidden;margin-bottom:10px}.styler_row .el-form-item{width:50%;float:left}.styler_row.styler_row_3 .el-form-item{width:32%;margin-right:1%}#wp-link-wrap,.el-color-picker__panel,.el-dialog__wrapper,.el-message,.el-notification,.el-notification.right,.el-popper,.el-tooltip__popper,div.mce-inline-toolbar-grp.mce-arrow-up{z-index:9999999999!important}.ff_code_editor textarea{background:#353535!important;color:#fff!important}.el-popper.el-dropdown-list-wrapper .el-dropdown-menu{width:100%}.ff_editor_html{display:block;width:100%;overflow:hidden}.ff_editor_html img.aligncenter{display:block;text-align:center;margin:0 auto}.address-field-option__settings{margin-top:10px}.address-field-option .pad-b-20{padding-bottom:20px!important}.el-form-item .ff_list_inline>div{width:auto!important;float:none!important;margin:0 15px 10px 0;display:-moz-inline-stack;display:inline-block}.el-form-item .ff_list_3col{width:100%}.el-form-item .ff_list_3col>div{width:33.3%;display:-moz-inline-stack;display:inline-block;margin:0 0 2px;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_2col{width:100%}.el-form-item .ff_list_2col>div{width:50%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_4col{width:100%}.el-form-item .ff_list_4col>div{width:25%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_5col{width:100%}.el-form-item .ff_list_5col>div{width:20%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images){width:auto!important;float:none!important;display:-moz-inline-stack;display:inline-block;position:relative;margin:0 0 10px;line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #dcdfe6;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:6px 20px;border-radius:0}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images) input{opacity:0;outline:none;position:absolute;margin:0;z-index:-1}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images):first-child{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;box-shadow:none!important}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images):last-child{border-radius:0 4px 4px 0}#wpwrap{background:#fff}#switchScreen{color:grey;font-size:25px;vertical-align:middle;font-weight:700;margin-left:10px;cursor:pointer}.form-editor--sidebar .el-form--label-top .el-form-item__label{padding-bottom:6px}.ff_setting_menu li{opacity:.5}.ff_setting_menu li:hover{opacity:1}.ff_setting_menu li.active{opacity:.8}.ff_form_name{opacity:.5}.ff_form_name:hover{opacity:1}.ff-navigation-right .btn.copy,.ff-navigation-right>a{opacity:.5}.ff-navigation-right:hover .btn.copy,.ff-navigation-right:hover>a{opacity:1}.editor_play_video{position:absolute;top:373px;right:38%;background:#409eff;padding:10px 20px;color:#fff;border-radius:20px;box-shadow:0 1px 2px 2px #dae9cc;font-size:19px;cursor:pointer}.form-editor .form-editor--sidebar{position:relative}.form-editor .code{overflow-x:scroll}.form-editor .search-element{padding:10px 20px}.form-editor .ff-user-guide{text-align:center;margin-top:-105px;position:relative;z-index:1}.form-editor .post-form-settings label.el-form-item__label{font-weight:500;margin-top:8px;color:#606266}.chained-select-settings .uploader{width:100%;height:130px;position:relative;margin-top:10px}.chained-select-settings .el-upload--text,.chained-select-settings .el-upload-dragger{width:100%;height:130px}.chained-select-settings .el-upload-list,.chained-select-settings .el-upload-list .el-upload-list__item{margin:-5px 0 0}.chained-select-settings .btn-danger{color:#f56c6c}.conditional-logic{margin-bottom:10px}.condition-field,.condition-value{width:30%}.condition-operator{width:85px}.form-control-2{line-height:28;height:28px;border-radius:5px;padding:2px 5px;vertical-align:middle}mark{background-color:#929292!important;color:#fff!important;font-size:11px;padding:5px;display:inline-block;line-height:1}.highlighted .field-options-settings{background-color:#ffc6c6}.flexable{display:flex}.flexable .el-form-item{margin-right:5px}.flexable .el-form-item:last-of-type{margin-right:0}.field-options-settings{margin-bottom:5px;background-color:#f1f1f1;padding:3px 8px;transition:all .5s}.address-field-option .el-form-item{margin-bottom:15px}.address-field-option .el-checkbox+.el-checkbox{margin-left:0}.address-field-option .required-checkbox{margin-right:10px;display:none}.address-field-option .required-checkbox.is-open{display:block}.address-field-option__settings{margin-top:15px;display:none}.address-field-option__settings.is-open{display:block}.el-form-item.ff_full_width_child .el-form-item__content{width:100%;margin-left:0!important}.el-select .el-input{min-width:70px}.input-with-select .el-input-group__prepend{background-color:#fff}.pull-right.top-check-action>label{margin-right:10px}.pull-right.top-check-action>label:last-child{margin-right:0}.pull-right.top-check-action span.el-checkbox__label{padding-left:3px}.item_desc textarea{margin-top:5px;width:100%}.optionsToRender{margin:7px 0}.action-btn{display:inline-block;min-width:32px}.sidebar-popper{max-width:300px;line-height:1.5}.el-form-item .select{height:35px!important;min-width:100%}.address-field-wrapper{margin-top:10px}.chained-Select-template .header{margin-right:5px}.checkable-grids{border-collapse:collapse}.checkable-grids thead>tr>th{padding:7px 10px;background:#f1f1f1}.checkable-grids tbody>tr>td{padding:7px 10px}.checkable-grids tbody>tr>td:not(:first-of-type){text-align:center}.checkable-grids tbody>tr:nth-child(2n)>td{background:#f1f1f1}.checkable-grids tbody>tr:nth-child(2n - 1)>td{background:#fff}.net-promoter-button{border-radius:inherit}.ff-el-net-promoter-tags{display:flex;justify-content:space-between;max-width:550px}.ff-el-net-promoter-tags p{font-size:12px;opacity:.6}.ff-el-rate{display:inline-block}.repeat-field--item{width:calc(100% - 40px);float:left;margin-right:5px;display:flex}.repeat-field--item>div{flex-grow:1;margin:0 3px}.repeat-field--item .el-form-item__label{text-align:left}.repeat-field-actions{margin-top:40px}.section-break__title{margin-top:0;margin-bottom:10px;font-size:18px}.el-form-item .select{width:100%;min-height:35px}.ff-btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:6px 12px;font-size:16px;line-height:1.5;border-radius:4px;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.ff-btn:focus,.ff-btn:hover{outline:0;text-decoration:none;box-shadow:0 0 0 2px rgba(0,123,255,.25)}.ff-btn.disabled,.ff-btn:disabled{opacity:.65}.ff-btn-lg{padding:8px 16px;font-size:18px;line-height:1.5;border-radius:6px}.ff-btn-sm{padding:4px 8px;font-size:13px;line-height:1.5;border-radius:3px}.ff-btn-block{display:block;width:100%}.ff-btn-primary{background-color:#409eff;color:#fff}.ff-btn-green{background-color:#67c23a;color:#fff}.ff-btn-orange{background-color:#e6a23c;color:#fff}.ff-btn-red{background-color:#f56c6c;color:#fff}.ff-btn-gray{background-color:#909399;color:#fff}.taxonomy-template .el-form-item .select{width:100%;height:35px!important;min-width:100%}.taxonomy-template .el-form-item .el-checkbox .el-checkbox__inner{border:1px solid #7e8993;border-radius:4px;background:#fff;color:#555;clear:both;height:1rem;margin:-.25rem .25rem 0 0;width:1rem;min-width:1rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);transition:border-color .05s ease-in-out}.taxonomy-template .el-form-item .el-checkbox{line-height:19px;display:block;margin:5px 0}.taxonomy-template .el-form-item .el-checkbox .el-checkbox__label{padding-left:5px}.ff_tc{overflow:hidden}.ff_tc .el-checkbox__input{vertical-align:top}.ff_tc .el-checkbox__label{overflow:hidden;word-break:break-word;white-space:break-spaces}.panel{border-radius:8px;border:1px solid #ebebeb;overflow:hidden;margin-bottom:15px}.panel__heading{background:#f5f5f5;border-bottom:1px solid #ebebeb;height:42px}.panel__heading .form-name-editable{float:left;font-size:14px;padding:4px 8px;margin:8px 0 8px 8px;max-width:250px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;border-radius:2px}.panel__heading .form-name-editable:hover{background-color:#fff;cursor:pointer}.panel__heading .copy-form-shortcode{float:left;padding:4px 8px;margin:8px 0 8px 8px;background-color:#909399;color:#fff;cursor:pointer;border-radius:2px}.panel__heading--btn{padding:3px}.panel__heading .form-inline{padding:5px;float:left}.panel__body{background:#fff;padding:10px 0}.panel__body p{font-size:14px;line-height:20px;color:#666}.panel__body--list{background:#fff}.panel__body--item,.panel__body .panel__placeholder{width:100%;min-height:70px;padding:10px;background:#fff;box-sizing:border-box}.panel__body--item.no-padding-left{padding-left:0}.panel__body--item:last-child{border-bottom:none}.panel__body--item{position:relative;max-width:100%}.panel__body--item.selected{background-color:#eceef1;border:1px solid #eceef1;box-shadow:-3px 0 0 0 #555d66}.panel__body--item>.popup-search-element{transition:all .3s;position:absolute;left:50%;transform:translateX(-50%);bottom:-10px;visibility:hidden;opacity:0;z-index:3}.panel__body--item.is-editor-inserter>.item-actions-wrapper,.panel__body--item.is-editor-inserter>.popup-search-element,.panel__body--item:hover>.item-actions-wrapper,.panel__body--item:hover>.popup-search-element{opacity:1;visibility:visible}.panel__body--item iframe,.panel__body--item img{max-width:100%}.panel .panel__placeholder{background:#f5f5f5}.panel.panel--info .panel__body,.panel>.panel__body{padding:15px}.el-fluid{width:100%!important}.label-block{display:inline-block;margin-bottom:10px;line-height:1;font-weight:500}.form-group{margin-bottom:15px}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}textarea.form-control{height:auto}label.is-required:before{content:"* ";color:red}.el-checkbox-horizontal,.el-radio-horizontal{display:inline-block}.el-checkbox-horizontal .el-checkbox,.el-checkbox-horizontal .el-radio,.el-radio-horizontal .el-checkbox,.el-radio-horizontal .el-radio{display:block;white-space:normal;margin-left:23px;margin-bottom:7px}.el-checkbox-horizontal .el-checkbox+.el-checkbox,.el-checkbox-horizontal .el-checkbox+.el-radio,.el-checkbox-horizontal .el-radio+.el-checkbox,.el-checkbox-horizontal .el-radio+.el-radio,.el-radio-horizontal .el-checkbox+.el-checkbox,.el-radio-horizontal .el-checkbox+.el-radio,.el-radio-horizontal .el-radio+.el-checkbox,.el-radio-horizontal .el-radio+.el-radio{margin-left:23px}.el-checkbox-horizontal .el-checkbox__input,.el-checkbox-horizontal .el-radio__input,.el-radio-horizontal .el-checkbox__input,.el-radio-horizontal .el-radio__input{margin-left:-23px}.form-inline{display:inline-block}.form-inline .el-input{width:auto}.v-form-item{margin-bottom:15px}.v-form-item:last-of-type{margin-bottom:0}.v-form-item label{margin-top:9px;display:inline-block}.settings-page{background-color:#fff}.settings-body{padding:15px}.el-text-primary{color:#20a0ff}.el-text-info{color:#58b7ff}.el-text-success{color:#13ce66}.el-text-warning{color:#f7ba2a}.el-text-danger{color:#ff4949}.el-notification__content{text-align:left}.el-input-group--append .el-input-group__append{left:-2px}.action-buttons .el-button+.el-button{margin-left:0}.el-box-card{box-shadow:none}.el-box-footer,.el-box-header{background-color:#edf1f6;padding:15px}.el-box-body{padding:15px}.el-form-item__force-inline.el-form-item__label{float:left;padding:11px 12px 11px 0}.el-form-item .el-form-item{margin-bottom:10px}.el-form-item__content .line{text-align:center}.el-basic-collapse{border:0;margin-bottom:15px}.el-basic-collapse .el-collapse-item__header{padding-left:0;display:inline-block;border:0}.el-basic-collapse .el-collapse-item__wrap{border:0}.el-basic-collapse .el-collapse-item__content{padding:0;background-color:#fff}.el-collapse-settings{margin-bottom:15px}.el-collapse-settings .el-collapse-item__header{background:#f1f1f1;padding-left:20px}.el-collapse-settings .el-collapse-item__content{padding-bottom:0;margin-top:15px}.el-collapse-settings .el-collapse-item__arrow{line-height:48px}.el-popover{text-align:left}.option-fields-section--content .el-form-item{margin-bottom:10px}.option-fields-section--content .el-form-item__label{padding-bottom:5px;font-size:13px;line-height:1}.option-fields-section--content .el-input__inner{height:30px;padding:0 8px}.option-fields-section--content .el-form-item__content{line-height:1.5;margin-bottom:5px}.el-dropdown-list{border:0;margin:5px 0;box-shadow:none;padding:0;z-index:10;position:static;min-width:auto;max-height:280px;overflow-y:scroll}.el-dropdown-list .el-dropdown-menu__item{font-size:13px;line-height:18px;padding:4px 10px;border-bottom:1px solid #f1f1f1}.el-dropdown-list .el-dropdown-menu__item:last-of-type{border-bottom:0}.el-form-nested.el-form--label-left .el-form-item__label{float:left;padding:10px 5px 10px 0}.el-message{top:40px}.el-button{text-decoration:none}.form-editor-elements:not(.el-form--label-left):not(.el-form--label-right) .el-form-item__label{line-height:1}.folded .el-dialog__wrapper{left:36px}.el-dialog__wrapper{left:160px}.ff-el-banner{width:200px;height:250px;border:1px solid #dce0e5;float:left;display:inline-block;padding:5px;transition:border .3s}.ff-el-banner,.ff-el-banner-group{overflow:hidden}.ff-el-banner-group .ff-el-banner{margin-right:10px;margin-bottom:30px}.ff-el-banner+.ff-el-banner{margin-right:10px}.ff-el-banner img{width:100%;height:auto;display:block}.ff-el-banner-header{text-align:center;margin:0;background:#909399;padding:3px 6px;font-size:13px;color:#fff;font-weight:400}.ff-el-banner-inner-item{position:relative;overflow:hidden;height:inherit}.ff-el-banner:hover .ff-el-banner-text-inside{opacity:1!important;visibility:visible!important}.ff-el-banner-text-inside{display:flex;justify-content:center;flex-direction:column}.ff-el-banner-text-inside-hoverable{position:absolute;transition:all .3s;color:#fff;top:0;left:0;right:0;bottom:0;padding:10px}.ff-el-banner-text-inside .form-title{color:#fff;margin:0 0 10px}.ff_backdrop{background:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999999}.compact td>.cell,.compact th>.cell{white-space:nowrap}.list-group{margin:0}.list-group>li.title{background:#ddd;padding:5px 10px}.list-group li{line-height:1.5;margin-bottom:6px}.list-group li>ul{padding-left:10px;padding-right:10px}.flex-container{display:flex;align-items:center}.flex-container .flex-col{flex:1 100%;padding-left:10px;padding-right:10px}.flex-container .flex-col:first-child{padding-left:0}.flex-container .flex-col:last-child{padding-right:0}.hidden-field-item{background-color:#f5f5f5;margin-bottom:10px}.form-step__wrapper.form-step__wrapper{background:#f5f5f5;border:1px solid #f0f0f0;padding:10px}.form-step__start{border-radius:3px 3px 0 0;margin-bottom:10px;border-radius:0 0 3px 3px}.step-start{margin-left:-10px;margin-right:-10px}.step-start__indicator{text-align:center;position:relative;padding:5px 0}.step-start__indicator strong{font-size:14px;font-weight:600;color:#000;background:#f5f5f5;padding:3px 10px;position:relative;z-index:2}.step-start__indicator hr{position:absolute;top:7px;left:10px;right:10px;border:0;z-index:1;border-top:1px solid #e3e3e3}.vddl-list{padding-left:0;min-height:70px}.vddl-placeholder{width:100%;min-height:70px;border:1px dashed #cfcfcf;background:#f5f5f5}.empty-dropzone{height:70px;border:1px dashed #cfcfcf;margin:0 10px}.empty-dropzone.vddl-dragover{border-color:transparent;height:auto}.popup-search-element{display:inline-block;cursor:pointer;font-style:normal;background:#009fff;color:#fff;width:23px;height:23px;line-height:20px;font-size:16px;border-radius:50%;text-align:center;font-weight:700}.empty-dropzone-placeholder{display:table-cell;text-align:center;width:1000px;height:inherit;vertical-align:middle}.empty-dropzone-placeholder .popup-search-element{background-color:#676767;position:relative;z-index:2}.field-option-settings .section-heading{font-size:15px;margin-top:0;border-bottom:1px solid #f5f5f5;margin-bottom:1rem;padding-bottom:8px}.item-actions-wrapper{top:0;opacity:0;z-index:3;position:absolute;transition:all .3s;visibility:hidden}.item-actions{background-color:#000}.item-actions .icon{color:#fff;cursor:pointer;padding:7px 10px}.item-actions .icon:hover{background-color:#409eff}.hover-action-top-right{top:-12px;right:15px}.hover-action-middle{left:0;width:100%;height:100%;border:1px solid #e3e5e8;display:flex;align-items:center;justify-content:center;background-color:hsla(0,0%,87.1%,.3764705882352941)}.item-container{border:1px dashed #ffb900;display:flex}.item-container .col{box-sizing:border-box;flex-grow:1;border-right:1px dashed #ffb900;flex-basis:0;background:rgba(255,185,0,.08)}.item-container .col .panel__body{background:transparent}.item-container .col:last-of-type{border-right:0}.ff-el-form-left .el-form-item__label,.ff-el-form-right .el-form-item__label{padding-right:10px;float:left!important;width:120px;line-height:40px;padding-bottom:0}.ff-el-form-left .el-form-item__content,.ff-el-form-right .el-form-item__content{margin-left:120px}.ff-el-form-left .el-form-item__label{text-align:left}.ff-el-form-right .el-form-item__label{text-align:right}.ff-el-form-top .el-form-item__label{text-align:left;padding-bottom:10px;float:none;display:inline-block;line-height:1}.ff-el-form-top .el-form-item__content{margin-left:auto!important}.action-btn .icon{cursor:pointer;vertical-align:middle}.sr-only{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.editor-inserter__wrapper{height:auto;position:relative}.editor-inserter__wrapper:before{border:8px solid #e2e4e7}.editor-inserter__wrapper:after{border:8px solid #fff}.editor-inserter__wrapper:after,.editor-inserter__wrapper:before{content:" ";position:absolute;left:50%;transform:translateX(-50%);border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent}.editor-inserter__wrapper.is-bottom:after,.editor-inserter__wrapper.is-bottom:before{border-top:none}.editor-inserter__wrapper.is-bottom:before{top:-9px}.editor-inserter__wrapper.is-bottom:after{top:-7px}.editor-inserter__wrapper.is-top:after,.editor-inserter__wrapper.is-top:before{border-bottom:none}.editor-inserter__wrapper.is-top:before{bottom:-9px}.editor-inserter__wrapper.is-top:after{bottom:-7px}.editor-inserter__contents{height:235px;overflow:scroll}.editor-inserter__content-items{display:flex;flex-wrap:wrap;padding:10px}.editor-inserter__content-item{width:33.33333%;text-align:center;padding:15px 5px;cursor:pointer;border-radius:4px;border:1px solid transparent}.editor-inserter__content-item:hover{box-shadow:1px 2px 3px rgba(0,0,0,.15);border-color:#bec5d0}.editor-inserter__content-item .icon{font-size:18px}.editor-inserter__content-item .icon.dashicons{font-family:dashicons}.editor-inserter__content-item div{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.editor-inserter__search.editor-inserter__search{width:100%;border-radius:0;height:35px;padding:6px 8px;border-color:#e2e4e7}.editor-inserter__tabs li{width:25%}.editor-inserter__tabs li a{padding:10px 6px}.search-popup-wrapper{position:fixed;z-index:3;background-color:#fff;box-shadow:0 3px 20px rgba(25,30,35,.1),0 1px 3px rgba(25,30,35,.1);border:1px solid #e2e4e7}.userContent{max-height:200px;border:1px solid #ebedee;padding:20px;overflow:scroll}.address-field-option{margin-bottom:10px;padding-bottom:10px;margin-left:-10px;padding-left:10px}.address-field-option .el-icon-caret-top,.address-field-option>.el-icon-caret-bottom{font-size:18px}.address-field-option .address-field-option__settings.is-open{padding:10px 15px 0;background:#fff}.address-field-option:hover{box-shadow:-5px 0 0 0 #409eff}.vddl-list__handle_scrollable{max-height:190px;overflow:scroll;width:100%;margin-bottom:10px;background:#fff;padding:5px 10px;margin-top:5px}.entry_navs a{text-decoration:none;padding:2px 5px}.entry_navs a.active{background:#20a0ff;color:#fff}.entry-multi-texts{width:100%}.entry-multi-texts .mult-text-each{float:left;margin-right:2%;min-width:30%}.addresss_editor{background:#eaeaea;padding:10px 20px;overflow:hidden;display:block;width:100%;margin-left:-20px}.addresss_editor .each_address_field{width:45%;float:left;padding-right:5%}.repeat_field_items{overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.repeat_field_items .field_item{display:flex;flex-direction:column;flex-basis:100%;flex:1;padding-right:20px}.repeat_field_items .field_item.field_item_action{display:block!important;flex:0.35;padding-right:0}.ff-table,.ff_entry_table_field,table.editor_table{display:table;width:100%;text-align:left;border-collapse:collapse;white-space:normal}.ff-table td,.ff_entry_table_field td,table.editor_table td{border:1px solid #e4e4e4;padding:7px;text-align:left}.ff-table th,.ff_entry_table_field th,table.editor_table th{border:1px solid #e4e4e4;padding:0 7px;background:#f5f5f5}.ff-payment-table tbody td{padding:15px 10px}.ff-payment-table thead th{padding:15px 10px;font-weight:500;font-size:120%}.ff-payment-table tfoot th{padding:10px}.ff-payment-table tfoot .text-right{text-align:right}.ff_list_items li{display:block;list-style:none;padding:7px 0;overflow:hidden}.ff_list_items li:hover{background:#f7fafc}.ff_list_items li .ff_list_header{width:180px;float:left;font-weight:700;color:#697386}.ff_list_items li .ff_list_value{color:#697386}.ff_card_badge{background-color:#d6ecff;border-radius:20px;padding:2px 8px;color:#3d4eac;font-weight:500;text-transform:capitalize}.edit_entry_view .el-form-item>label{font-weight:700}.edit_entry_view .el-form-item{margin:0 -20px;padding:10px 20px}.edit_entry_view .el-form-item:nth-child(2n){background:#f9f7f7}.edit_entry_view .el-dialog__footer{margin:20px -20px -25px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top:2px solid #dcdfe6}.fluentform-wrapper .json_action{cursor:pointer}.fluentform-wrapper .show_code{width:100%;min-height:500px;background:#2e2a2a;color:#fff;padding:20px;line-height:24px}.fluentform-wrapper .entry-details{background-color:#fff}.fluentform-wrapper .entry-details .table{width:100%;border-collapse:collapse}.fluentform-wrapper .entry-details .table tr:nth-child(2n),.fluentform-wrapper .entry-details .table tr:nth-child(odd){background-color:#fff}.fluentform-wrapper .entry-details .table tr td{padding:8px 10px}.fluentform-wrapper .entry-title{font-size:17px;margin:0;border-bottom:1px solid #fdfdfd;padding:15px}.fluentform-wrapper .entry-body,.fluentform-wrapper .entry-field,.fluentform-wrapper .entry-value{padding:6px 10px}.fluentform-wrapper .entry-footer{padding:10px;text-align:right;border-top:1px solid #ddd;background:#f5f5f5}.response_wrapper .response_header{font-weight:700;background-color:#eaf2fa;border-bottom:1px solid #fff;line-height:1.5;padding:7px 7px 7px 10px}.response_wrapper .response_body{border-bottom:1px solid #dfdfdf;padding:7px 7px 15px 40px;line-height:1.8;overflow:hidden}.response_wrapper .response_body *{box-sizing:border-box}.ff-table{width:100%;border-collapse:collapse;text-align:left}.ff-table thead>tr>th{padding:7px 10px;background:#f1f1f1}.ff-table tbody>tr>td{padding:7px 10px}.ff-table tbody>tr:nth-child(2n)>td{background:#f1f1f1}.ff-table tbody>tr:nth-child(2n - 1)>td{background:#fff}.input-image{height:auto;width:150px;max-width:100%;float:left;margin-right:10px}.input-image img{width:100%}.input_file_ext{width:100%;display:block;background:#eee;font-size:16px;text-align:center;color:#a7a3a3;padding:15px 10px}.input_file_ext i{font-size:22px;display:block;color:#797878}.input_file a,.input_file a:hover{text-decoration:none}.entry_info_box{box-shadow:0 7px 14px 0 rgba(60,66,87,.1),0 3px 6px 0 rgba(0,0,0,.07);border-radius:4px;background-color:#fff;margin-bottom:30px}.entry_info_box .entry_info_header{padding:16px 20px;box-shadow:inset 0 -1px #e3e8ee}.entry_info_box .entry_info_header .info_box_header{line-height:24px;font-size:20px;font-weight:500;font-size:16px;display:inline-block}.entry_info_box .entry_info_header .info_box_header_actions{display:inline-block;float:right;text-align:right}.entry_info_box .entry_info_body{padding:16px 20px}.wpf_each_entry{margin:0 -20px;padding:12px 20px;box-shadow:inset 0 -1px 0 #f3f4f5}.wpf_each_entry:last-child{box-shadow:none}.wpf_each_entry:hover{background-color:#f7fafc}.wpf_each_entry .wpf_entry_label{font-weight:700;color:#697386}.wpf_each_entry .wpf_entry_value{margin-top:8px;padding-left:25px;white-space:pre-line}.entry_info_body.narrow_items{padding:0 15px 15px}.entry_info_body.narrow_items .wpf_each_entry{margin:0 -15px;padding:10px 15px}.entry_info_body.narrow_items .wpf_each_entry p{margin:5px 0}.entry_header{display:block;overflow:hidden;margin:0 0 15px}.entry_header h3{margin:0;line-height:31px}.wpf_entry_value input[type=checkbox]:disabled:checked{opacity:1!important;border:1px solid #65afd2}.wpf_entry_value input[type=checkbox]:disabled{opacity:1!important;border:1px solid #909399}a.input-image{border:1px solid #e3e8ee}a.input-image:hover{border:1px solid grey}a.input-image:hover img{opacity:.8}.show_on_hover{display:none}.el-table__row:hover .show_on_hover{display:inline-block}.show_on_hover [class*=el-icon-],.show_on_hover [class^=el-icon-]{font-size:16px}.inline_actions{margin-left:5px}.inline_item.inline_actions{display:inline-block}.action_button{cursor:pointer}.current_form_name button.el-button.el-button--default.el-button--mini{max-width:170px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.entries_table{overflow:hidden}.compact_input{margin-left:10px}.compact_input span.el-checkbox__label{padding-left:5px}.report_status_filter label.el-checkbox{display:block;margin-left:0!important;padding-left:0;margin-bottom:7px}.ff_report_body{width:100%;min-height:20px}@media print{.ff_nav_action,.form_internal_menu,div#adminmenumain,div#wpadminbar{display:none}.ff_chart_switcher,.ff_print_hide{display:none!important}div#wpcontent{margin-left:0;padding-left:0}html.wp-toolbar{padding:0}.wrap.ff_form_wrap,div#wpcontent{background:#fff}.ff_report_body{position:absolute;top:0;left:10px;right:10px}.ff_form_application_container{margin-top:0!important}.all_report_items{width:100%!important}.ff-table{width:auto;border-collapse:collapse;text-align:left;float:right}}.ff_report_card{display:block;width:100%;margin-bottom:20px;border-radius:10px;background:#fff}.ff_report_card .report_header{padding:10px 20px;border-bottom:1px solid #e4e4e4;font-weight:700}.ff_report_card .report_header .ff_chart_switcher{display:inline-block;float:right}.ff_report_card .report_header .ff_chart_switcher span{cursor:pointer;color:#bbb}.ff_report_card .report_header .ff_chart_switcher span.active_chart{color:#f56c6c}.ff_report_card .report_header .ff_chart_switcher span.ff_rotate_90{transform:rotate(90deg)}.ff_report_card .report_body{padding:20px;overflow:hidden}.ff_report_card .report_body .chart_data{width:50%;float:right;padding-left:20px}.ff_report_card .report_body .ff_chart_view{width:50%;float:left;max-width:380px}ul.entry_item_list{padding-left:30px;list-style:disc;list-style-position:initial;list-style-image:none;list-style-type:disc}.star_big{font-size:20px;display:inline-block;margin-right:5px;vertical-align:middle!important}.wpf_each_entry ul{padding-left:20px;list-style:disc}.el-table-column--selection .cell{text-overflow:clip!important}.payments_wrapper{margin-top:20px}.payments_wrapper *{box-sizing:border-box}.payment_header .payment_title{display:inline-block;margin-right:20px;font-size:23px}.ff-error{background:#ff9800}.ff-error,.ff-success{color:#fff;padding:10px}.ff-success{background:#4caf50}.payment_header{overflow:hidden}.payment_header .payment_actions{float:right}.entry_chart{padding:10px;background:#fff;margin:20px 0;box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-table .warning-row{background:#fdf5e6}span.ff_payment_badge{padding:0 10px 2px;border:1px solid grey;border-radius:9px;margin-left:5px;font-size:12px}tr.el-table__row td{padding:18px 0}.pull-right.ff_paginate{margin-top:20px}.payment_details{margin-top:10px;padding-top:10px;border-top:1px solid #ddd}.add_note_wrapper{padding:20px}.fluent_notes .fluent_note_content{background:#eaf2fa;padding:10px 15px;font-size:13px;line-height:160%}.fluent_notes .fluent_note_meta{padding:5px 15px;font-size:11px}.wpf_add_note_box button{float:right;margin-top:15px}.wpf_add_note_box{overflow:hidden;display:block;margin-bottom:30px;border-bottom:1px solid #dcdfe6;padding-bottom:30px}span.ff_tag{background:#697386;color:#fff;padding:2px 10px;border-radius:10px;font-size:10px}.el-table .cell.el-tooltip{max-height:50px;overflow:hidden}.form-editor--sidebar{position:relative}.code{overflow-x:scroll}.search-element{padding:10px 20px}.ff-user-guide{text-align:center;margin-top:-105px;position:relative;z-index:1}.post-form-settings label.el-form-item__label{font-weight:500;margin-top:8px;color:#606266}.transaction_item_small{margin:0 -20px 20px;padding:10px 20px;background:#f5f5f5}.transaction_item_heading{display:block;border-bottom:1px solid grey;margin:0 -20px 20px;padding:10px 20px}.transaction_heading_title{display:inline-block;font-size:16px;font-weight:500}.transaction_heading_action{float:right;margin-top:-10px}.transaction_item_line{padding:0;font-size:15px;margin-bottom:10px}.transaction_item_line .ff_list_value{background:#ff4;padding:2px 6px}.ff_badge_status_pending{background-color:#ffff03}.ff_badge_status_paid{background:#67c23a;color:#fff}.entry_submission_log .wpf_entry_label{margin-bottom:10px}.entry_submission_log_component{font-weight:700;text-transform:capitalize}.entry_submission_log span:first-child{color:#fff;border-radius:3px}.entry_submission_log .log_status_error,.entry_submission_log .log_status_failed{background:#c23434}.entry_submission_log .log_status_success{background:#348938}@media (max-width:768px){.form_internal_menu{width:100%;left:0!important;top:44px!important}.form_internal_menu .ff-navigation-right{display:none}.form_internal_menu ul.ff_setting_menu{float:right;padding-right:10px!important}.form_internal_menu ul.ff_setting_menu li a{padding:10px 3px!important}.form_internal_menu .ff_form_name{padding:10px 5px!important;max-width:120px!important}.ff_nav_action{float:right!important;text-align:left!important}div#wpbody-content{padding-right:10px!important}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{min-height:30px}.ff_form_main_nav .plugin-name{display:none}.row-actions{display:inline-block!important}.el-form .el-form-item .el-form-item__label{width:100%!important}.el-form .el-form-item .el-form-item__content{margin-left:0!important}.ff_settings_container{margin:0!important;padding:0 10px!important}.ff_settings_wrapper .ff_settings_sidebar{width:120px!important}.ff_settings_wrapper .ff_settings_sidebar ul.ff_settings_list li a{padding:10px 5px;font-size:10px}.settings_app{min-width:500px}.el-tabs__content{padding:20px 10px!important}.wpf_each_entry a{word-break:break-all}div#js-form-editor--body{padding:20px 0}div#js-form-editor--body .form-editor__body-content{padding:60px 0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu{top:0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{display:block}}@media (max-width:425px){.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{margin-right:0}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right a,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right button,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right span{font-size:10px;padding:5px 4px!important;margin:0 3px}#ff_form_entries_app .ff_nav_top .ff_nav_action,#ff_form_entries_app .ff_nav_top .ff_nav_title{width:100%;margin-bottom:10px}.form_internal_menu{position:relative;display:block!important;background:#fff;overflow:hidden;top:0!important;margin:0 -10px;width:auto}.form_internal_menu ul.ff_setting_menu li a{font-size:11px}.ff_form_application_container{margin-top:0!important}.ff_form_main_nav .ninja-tab{font-size:12px;padding:10px 5px;margin:0}ul.el-pager{display:none!important}.ff_settings_wrapper{min-width:600px}.ff_form_wrap .ff_form_wrap_area{overflow:scroll}button.el-button.pull-right{float:left!important}.entry_header h3{display:block;width:100%!important;clear:both}.v-row .v-col--33{width:100%!important;padding-right:0;margin-bottom:15px}.v-row .v-col--33:last-child{margin-bottom:0}.option-fields-section--content{padding:15px 5px}}.el-popover{text-align:left!important;word-break:inherit!important}
|
1 |
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}@font-face{font-family:element-icons;src:url(../fonts/element-icons.woff?535877f50039c0cb49a6196a5b7517cd) format("woff"),url(../fonts/element-icons.ttf?732389ded34cb9c52dd88271f1345af9) format("truetype");font-weight:400;font-display:"auto";font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-ice-cream-round:before{content:"\E6A0"}.el-icon-ice-cream-square:before{content:"\E6A3"}.el-icon-lollipop:before{content:"\E6A4"}.el-icon-potato-strips:before{content:"\E6A5"}.el-icon-milk-tea:before{content:"\E6A6"}.el-icon-ice-drink:before{content:"\E6A7"}.el-icon-ice-tea:before{content:"\E6A9"}.el-icon-coffee:before{content:"\E6AA"}.el-icon-orange:before{content:"\E6AB"}.el-icon-pear:before{content:"\E6AC"}.el-icon-apple:before{content:"\E6AD"}.el-icon-cherry:before{content:"\E6AE"}.el-icon-watermelon:before{content:"\E6AF"}.el-icon-grape:before{content:"\E6B0"}.el-icon-refrigerator:before{content:"\E6B1"}.el-icon-goblet-square-full:before{content:"\E6B2"}.el-icon-goblet-square:before{content:"\E6B3"}.el-icon-goblet-full:before{content:"\E6B4"}.el-icon-goblet:before{content:"\E6B5"}.el-icon-cold-drink:before{content:"\E6B6"}.el-icon-coffee-cup:before{content:"\E6B8"}.el-icon-water-cup:before{content:"\E6B9"}.el-icon-hot-water:before{content:"\E6BA"}.el-icon-ice-cream:before{content:"\E6BB"}.el-icon-dessert:before{content:"\E6BC"}.el-icon-sugar:before{content:"\E6BD"}.el-icon-tableware:before{content:"\E6BE"}.el-icon-burger:before{content:"\E6BF"}.el-icon-knife-fork:before{content:"\E6C1"}.el-icon-fork-spoon:before{content:"\E6C2"}.el-icon-chicken:before{content:"\E6C3"}.el-icon-food:before{content:"\E6C4"}.el-icon-dish-1:before{content:"\E6C5"}.el-icon-dish:before{content:"\E6C6"}.el-icon-moon-night:before{content:"\E6EE"}.el-icon-moon:before{content:"\E6F0"}.el-icon-cloudy-and-sunny:before{content:"\E6F1"}.el-icon-partly-cloudy:before{content:"\E6F2"}.el-icon-cloudy:before{content:"\E6F3"}.el-icon-sunny:before{content:"\E6F6"}.el-icon-sunset:before{content:"\E6F7"}.el-icon-sunrise-1:before{content:"\E6F8"}.el-icon-sunrise:before{content:"\E6F9"}.el-icon-heavy-rain:before{content:"\E6FA"}.el-icon-lightning:before{content:"\E6FB"}.el-icon-light-rain:before{content:"\E6FC"}.el-icon-wind-power:before{content:"\E6FD"}.el-icon-baseball:before{content:"\E712"}.el-icon-soccer:before{content:"\E713"}.el-icon-football:before{content:"\E715"}.el-icon-basketball:before{content:"\E716"}.el-icon-ship:before{content:"\E73F"}.el-icon-truck:before{content:"\E740"}.el-icon-bicycle:before{content:"\E741"}.el-icon-mobile-phone:before{content:"\E6D3"}.el-icon-service:before{content:"\E6D4"}.el-icon-key:before{content:"\E6E2"}.el-icon-unlock:before{content:"\E6E4"}.el-icon-lock:before{content:"\E6E5"}.el-icon-watch:before{content:"\E6FE"}.el-icon-watch-1:before{content:"\E6FF"}.el-icon-timer:before{content:"\E702"}.el-icon-alarm-clock:before{content:"\E703"}.el-icon-map-location:before{content:"\E704"}.el-icon-delete-location:before{content:"\E705"}.el-icon-add-location:before{content:"\E706"}.el-icon-location-information:before{content:"\E707"}.el-icon-location-outline:before{content:"\E708"}.el-icon-location:before{content:"\E79E"}.el-icon-place:before{content:"\E709"}.el-icon-discover:before{content:"\E70A"}.el-icon-first-aid-kit:before{content:"\E70B"}.el-icon-trophy-1:before{content:"\E70C"}.el-icon-trophy:before{content:"\E70D"}.el-icon-medal:before{content:"\E70E"}.el-icon-medal-1:before{content:"\E70F"}.el-icon-stopwatch:before{content:"\E710"}.el-icon-mic:before{content:"\E711"}.el-icon-copy-document:before{content:"\E718"}.el-icon-full-screen:before{content:"\E719"}.el-icon-switch-button:before{content:"\E71B"}.el-icon-aim:before{content:"\E71C"}.el-icon-crop:before{content:"\E71D"}.el-icon-odometer:before{content:"\E71E"}.el-icon-time:before{content:"\E71F"}.el-icon-bangzhu:before{content:"\E724"}.el-icon-close-notification:before{content:"\E726"}.el-icon-microphone:before{content:"\E727"}.el-icon-turn-off-microphone:before{content:"\E728"}.el-icon-position:before{content:"\E729"}.el-icon-postcard:before{content:"\E72A"}.el-icon-message:before{content:"\E72B"}.el-icon-chat-line-square:before{content:"\E72D"}.el-icon-chat-dot-square:before{content:"\E72E"}.el-icon-chat-dot-round:before{content:"\E72F"}.el-icon-chat-square:before{content:"\E730"}.el-icon-chat-line-round:before{content:"\E731"}.el-icon-chat-round:before{content:"\E732"}.el-icon-set-up:before{content:"\E733"}.el-icon-turn-off:before{content:"\E734"}.el-icon-open:before{content:"\E735"}.el-icon-connection:before{content:"\E736"}.el-icon-link:before{content:"\E737"}.el-icon-cpu:before{content:"\E738"}.el-icon-thumb:before{content:"\E739"}.el-icon-female:before{content:"\E73A"}.el-icon-male:before{content:"\E73B"}.el-icon-guide:before{content:"\E73C"}.el-icon-news:before{content:"\E73E"}.el-icon-price-tag:before{content:"\E744"}.el-icon-discount:before{content:"\E745"}.el-icon-wallet:before{content:"\E747"}.el-icon-coin:before{content:"\E748"}.el-icon-money:before{content:"\E749"}.el-icon-bank-card:before{content:"\E74A"}.el-icon-box:before{content:"\E74B"}.el-icon-present:before{content:"\E74C"}.el-icon-sell:before{content:"\E6D5"}.el-icon-sold-out:before{content:"\E6D6"}.el-icon-shopping-bag-2:before{content:"\E74D"}.el-icon-shopping-bag-1:before{content:"\E74E"}.el-icon-shopping-cart-2:before{content:"\E74F"}.el-icon-shopping-cart-1:before{content:"\E750"}.el-icon-shopping-cart-full:before{content:"\E751"}.el-icon-smoking:before{content:"\E752"}.el-icon-no-smoking:before{content:"\E753"}.el-icon-house:before{content:"\E754"}.el-icon-table-lamp:before{content:"\E755"}.el-icon-school:before{content:"\E756"}.el-icon-office-building:before{content:"\E757"}.el-icon-toilet-paper:before{content:"\E758"}.el-icon-notebook-2:before{content:"\E759"}.el-icon-notebook-1:before{content:"\E75A"}.el-icon-files:before{content:"\E75B"}.el-icon-collection:before{content:"\E75C"}.el-icon-receiving:before{content:"\E75D"}.el-icon-suitcase-1:before{content:"\E760"}.el-icon-suitcase:before{content:"\E761"}.el-icon-film:before{content:"\E763"}.el-icon-collection-tag:before{content:"\E765"}.el-icon-data-analysis:before{content:"\E766"}.el-icon-pie-chart:before{content:"\E767"}.el-icon-data-board:before{content:"\E768"}.el-icon-data-line:before{content:"\E76D"}.el-icon-reading:before{content:"\E769"}.el-icon-magic-stick:before{content:"\E76A"}.el-icon-coordinate:before{content:"\E76B"}.el-icon-mouse:before{content:"\E76C"}.el-icon-brush:before{content:"\E76E"}.el-icon-headset:before{content:"\E76F"}.el-icon-umbrella:before{content:"\E770"}.el-icon-scissors:before{content:"\E771"}.el-icon-mobile:before{content:"\E773"}.el-icon-attract:before{content:"\E774"}.el-icon-monitor:before{content:"\E775"}.el-icon-search:before{content:"\E778"}.el-icon-takeaway-box:before{content:"\E77A"}.el-icon-paperclip:before{content:"\E77D"}.el-icon-printer:before{content:"\E77E"}.el-icon-document-add:before{content:"\E782"}.el-icon-document:before{content:"\E785"}.el-icon-document-checked:before{content:"\E786"}.el-icon-document-copy:before{content:"\E787"}.el-icon-document-delete:before{content:"\E788"}.el-icon-document-remove:before{content:"\E789"}.el-icon-tickets:before{content:"\E78B"}.el-icon-folder-checked:before{content:"\E77F"}.el-icon-folder-delete:before{content:"\E780"}.el-icon-folder-remove:before{content:"\E781"}.el-icon-folder-add:before{content:"\E783"}.el-icon-folder-opened:before{content:"\E784"}.el-icon-folder:before{content:"\E78A"}.el-icon-edit-outline:before{content:"\E764"}.el-icon-edit:before{content:"\E78C"}.el-icon-date:before{content:"\E78E"}.el-icon-c-scale-to-original:before{content:"\E7C6"}.el-icon-view:before{content:"\E6CE"}.el-icon-loading:before{content:"\E6CF"}.el-icon-rank:before{content:"\E6D1"}.el-icon-sort-down:before{content:"\E7C4"}.el-icon-sort-up:before{content:"\E7C5"}.el-icon-sort:before{content:"\E6D2"}.el-icon-finished:before{content:"\E6CD"}.el-icon-refresh-left:before{content:"\E6C7"}.el-icon-refresh-right:before{content:"\E6C8"}.el-icon-refresh:before{content:"\E6D0"}.el-icon-video-play:before{content:"\E7C0"}.el-icon-video-pause:before{content:"\E7C1"}.el-icon-d-arrow-right:before{content:"\E6DC"}.el-icon-d-arrow-left:before{content:"\E6DD"}.el-icon-arrow-up:before{content:"\E6E1"}.el-icon-arrow-down:before{content:"\E6DF"}.el-icon-arrow-right:before{content:"\E6E0"}.el-icon-arrow-left:before{content:"\E6DE"}.el-icon-top-right:before{content:"\E6E7"}.el-icon-top-left:before{content:"\E6E8"}.el-icon-top:before{content:"\E6E6"}.el-icon-bottom:before{content:"\E6EB"}.el-icon-right:before{content:"\E6E9"}.el-icon-back:before{content:"\E6EA"}.el-icon-bottom-right:before{content:"\E6EC"}.el-icon-bottom-left:before{content:"\E6ED"}.el-icon-caret-top:before{content:"\E78F"}.el-icon-caret-bottom:before{content:"\E790"}.el-icon-caret-right:before{content:"\E791"}.el-icon-caret-left:before{content:"\E792"}.el-icon-d-caret:before{content:"\E79A"}.el-icon-share:before{content:"\E793"}.el-icon-menu:before{content:"\E798"}.el-icon-s-grid:before{content:"\E7A6"}.el-icon-s-check:before{content:"\E7A7"}.el-icon-s-data:before{content:"\E7A8"}.el-icon-s-opportunity:before{content:"\E7AA"}.el-icon-s-custom:before{content:"\E7AB"}.el-icon-s-claim:before{content:"\E7AD"}.el-icon-s-finance:before{content:"\E7AE"}.el-icon-s-comment:before{content:"\E7AF"}.el-icon-s-flag:before{content:"\E7B0"}.el-icon-s-marketing:before{content:"\E7B1"}.el-icon-s-shop:before{content:"\E7B4"}.el-icon-s-open:before{content:"\E7B5"}.el-icon-s-management:before{content:"\E7B6"}.el-icon-s-ticket:before{content:"\E7B7"}.el-icon-s-release:before{content:"\E7B8"}.el-icon-s-home:before{content:"\E7B9"}.el-icon-s-promotion:before{content:"\E7BA"}.el-icon-s-operation:before{content:"\E7BB"}.el-icon-s-unfold:before{content:"\E7BC"}.el-icon-s-fold:before{content:"\E7A9"}.el-icon-s-platform:before{content:"\E7BD"}.el-icon-s-order:before{content:"\E7BE"}.el-icon-s-cooperation:before{content:"\E7BF"}.el-icon-bell:before{content:"\E725"}.el-icon-message-solid:before{content:"\E799"}.el-icon-video-camera:before{content:"\E772"}.el-icon-video-camera-solid:before{content:"\E796"}.el-icon-camera:before{content:"\E779"}.el-icon-camera-solid:before{content:"\E79B"}.el-icon-download:before{content:"\E77C"}.el-icon-upload2:before{content:"\E77B"}.el-icon-upload:before{content:"\E7C3"}.el-icon-picture-outline-round:before{content:"\E75F"}.el-icon-picture-outline:before{content:"\E75E"}.el-icon-picture:before{content:"\E79F"}.el-icon-close:before{content:"\E6DB"}.el-icon-check:before{content:"\E6DA"}.el-icon-plus:before{content:"\E6D9"}.el-icon-minus:before{content:"\E6D8"}.el-icon-help:before{content:"\E73D"}.el-icon-s-help:before{content:"\E7B3"}.el-icon-circle-close:before{content:"\E78D"}.el-icon-circle-check:before{content:"\E720"}.el-icon-circle-plus-outline:before{content:"\E723"}.el-icon-remove-outline:before{content:"\E722"}.el-icon-zoom-out:before{content:"\E776"}.el-icon-zoom-in:before{content:"\E777"}.el-icon-error:before{content:"\E79D"}.el-icon-success:before{content:"\E79C"}.el-icon-circle-plus:before{content:"\E7A0"}.el-icon-remove:before{content:"\E7A2"}.el-icon-info:before{content:"\E7A1"}.el-icon-question:before{content:"\E7A4"}.el-icon-warning-outline:before{content:"\E6C9"}.el-icon-warning:before{content:"\E7A3"}.el-icon-goods:before{content:"\E7C2"}.el-icon-s-goods:before{content:"\E7B2"}.el-icon-star-off:before{content:"\E717"}.el-icon-star-on:before{content:"\E797"}.el-icon-more-outline:before{content:"\E6CC"}.el-icon-more:before{content:"\E794"}.el-icon-phone-outline:before{content:"\E6CB"}.el-icon-phone:before{content:"\E795"}.el-icon-user:before{content:"\E6E3"}.el-icon-user-solid:before{content:"\E7A5"}.el-icon-setting:before{content:"\E6CA"}.el-icon-s-tools:before{content:"\E7AC"}.el-icon-delete:before{content:"\E6D7"}.el-icon-delete-solid:before{content:"\E7C9"}.el-icon-eleme:before{content:"\E7C7"}.el-icon-platform-eleme:before{content:"\E7CA"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@font-face{font-family:fluentform;src:url(../fonts/fluentform.eot?bd247f4736d5cb3fc5fcb8b8650cc549);src:url(../fonts/fluentform.eot?bd247f4736d5cb3fc5fcb8b8650cc549?#iefix) format("embedded-opentype"),url(../fonts/fluentform.woff?483735301c8b46d6edb8fded7b6c75d7) format("woff"),url(../fonts/fluentform.ttf?9209f40bff8597892e6b2e91e8a79507) format("truetype"),url(../fonts/fluentform.svg?ce3318fa2f1123ecc0fde93bd4a30375#fluentform) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}[class*=" icon-"]:before,[class^=icon-]:before,[data-icon]:before{font-family:fluentform!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-trash-o:before{content:"\E000"}.icon-pencil:before{content:"\E001"}.icon-clone:before{content:"\E002"}.icon-arrows:before{content:"\E003"}.icon-user:before{content:"\E004"}.icon-text-width:before{content:"\E005"}.icon-unlock-alt:before{content:"\E006"}.icon-paragraph:before{content:"\E007"}.icon-columns:before{content:"\E008"}.icon-plus-circle:before{content:"\E009"}.icon-minus-circle:before{content:"\E00A"}.icon-link:before{content:"\E00B"}.icon-envelope-o:before{content:"\E00C"}.icon-caret-square-o-down:before{content:"\E00D"}.icon-list-ul:before{content:"\E00E"}.icon-dot-circle-o:before{content:"\E00F"}.icon-check-square-o:before{content:"\E010"}.icon-eye-slash:before{content:"\E011"}.icon-picture-o:before{content:"\E012"}.icon-calendar-o:before{content:"\E013"}.icon-upload:before{content:"\E014"}.icon-globe:before{content:"\E015"}.icon-pound:before{content:"\E016"}.icon-map-marker:before{content:"\E017"}.icon-credit-card:before{content:"\E018"}.icon-step-forward:before{content:"\E019"}.icon-code:before{content:"\E01A"}.icon-html5:before{content:"\E01B"}.icon-qrcode:before{content:"\E01C"}.icon-certificate:before{content:"\E01D"}.icon-star-half-o:before{content:"\E01E"}.icon-eye:before{content:"\E01F"}.icon-save:before{content:"\E020"}.icon-puzzle-piece:before{content:"\E021"}.icon-slack:before{content:"\E022"}.icon-trash:before{content:"\E023"}.icon-lock:before{content:"\E024"}.icon-chevron-down:before{content:"\E025"}.icon-chevron-up:before{content:"\E026"}.icon-chevron-right:before{content:"\E027"}.icon-chevron-left:before{content:"\E028"}.icon-circle-o:before{content:"\E029"}.icon-cog:before{content:"\E02A"}.icon-info:before{content:"\E02C"}.icon-info-circle:before{content:"\E02B"}.icon-ink-pen:before{content:"\E02D"}.icon-keyboard-o:before{content:"\E02E"}@font-face{font-family:fluentformeditors;src:url(../fonts/fluentformeditors.eot?a038536a0a1cc2bc001758da589bec20);src:url(../fonts/fluentformeditors.eot?a038536a0a1cc2bc001758da589bec20?#iefix) format("embedded-opentype"),url(../fonts/fluentformeditors.woff?239e1c8f54d107e3d9a1b4d16f7b00ee) format("woff"),url(../fonts/fluentformeditors.ttf?f02d86d8c42f8966121c9a432d3decb0) format("truetype"),url(../fonts/fluentformeditors.svg?be1434b6a10d2f8df2694a86009f6f5d#fluentformeditors) format("svg");font-weight:400;font-style:normal}[class*=" ff-edit-"]:before,[class^=ff-edit-]:before{font-family:fluentformeditors!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ff-edit-column-2:before{content:"b"}.ff-edit-rating:before{content:"c"}.ff-edit-checkable-grid:before{content:"d"}.ff-edit-hidden-field:before{content:"e"}.ff-edit-section-break:before{content:"f"}.ff-edit-recaptha:before{content:"g"}.ff-edit-html:before{content:"h"}.ff-edit-shortcode:before{content:"i"}.ff-edit-terms-condition:before{content:"j"}.ff-edit-action-hook:before{content:"k"}.ff-edit-step:before{content:"l"}.ff-edit-name:before{content:"m"}.ff-edit-email:before{content:"n"}.ff-edit-text:before{content:"o"}.ff-edit-mask:before{content:"p"}.ff-edit-textarea:before{content:"q"}.ff-edit-address:before{content:"r"}.ff-edit-country:before{content:"s"}.ff-edit-dropdown:before{content:"u"}.ff-edit-radio:before{content:"v"}.ff-edit-checkbox-1:before{content:"w"}.ff-edit-multiple-choice:before{content:"x"}.ff-edit-website-url:before{content:"y"}.ff-edit-password:before{content:"z"}.ff-edit-date:before{content:"A"}.ff-edit-files:before{content:"B"}.ff-edit-images:before{content:"C"}.ff-edit-gdpr:before{content:"E"}.ff-edit-three-column:before{content:"G"}.ff-edit-repeat:before{content:"F"}.ff-edit-numeric:before{content:"t"}.ff-edit-credit-card:before{content:"a"}.ff-edit-keyboard-o:before{content:"D"}.ff-edit-shopping-cart:before{content:"H"}.ff-edit-link:before{content:"I"}.ff-edit-ios-cart-outline:before{content:"J"}.ff-edit-tint:before{content:"K"}.ff_form_wrap{margin:0}.ff_form_wrap *{box-sizing:border-box}.ff_form_wrap .ff_form_wrap_area{padding:15px 0;overflow:hidden;display:block}.ff_form_wrap .ff_form_wrap_area>h2{margin-top:0}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{-webkit-appearance:none;background-color:#fff;border-radius:4px;border:1px solid #dcdfe6;color:#606266;box-shadow:none;margin:0;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{box-shadow:none}input[type=color].el-select__input,input[type=date].el-select__input,input[type=datetime-local].el-select__input,input[type=datetime].el-select__input,input[type=email].el-select__input,input[type=month].el-select__input,input[type=number].el-select__input,input[type=password].el-select__input,input[type=search].el-select__input,input[type=tel].el-select__input,input[type=text].el-select__input,input[type=time].el-select__input,input[type=url].el-select__input,input[type=week].el-select__input,textarea.el-select__input{border:none;background-color:transparent}p{margin-top:0;margin-bottom:10px}.icon{font:normal normal normal 14px/1 ultimateform;display:inline-block}.mr15{margin-right:15px}.mb15{margin-bottom:15px}.pull-left{float:left!important}.pull-right{float:right!important}.text-left{text-align:left}.text-center{text-align:center}.el-icon-clickable{cursor:pointer}.help-text{margin:0;font-style:italic;font-size:.9em}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:500;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-block{width:100%}.clearfix:after,.clearfix:before,.form-editor:after,.form-editor:before{display:table;content:" "}.clearfix:after,.form-editor:after{clear:both}.el-notification__content p{text-align:left}.label-lh-1-5 label{line-height:1.5}.ff_form_main_nav{display:block;width:auto;overflow:hidden;border-bottom:1px solid #ddd;background:#fff;margin:0 -20px;padding:10px 20px 0;box-sizing:border-box}.ff_form_main_nav span.plugin-name{font-size:16px;color:#6e6e6e;margin-right:30px}.ff_form_main_nav .ninja-tab{padding:10px 10px 18px;display:inline-block;text-decoration:none;color:#000;font-size:15px;line-height:16px;margin-right:15px;border-bottom:2px solid transparent}.ff_form_main_nav .ninja-tab:focus{box-shadow:none}.ff_form_main_nav .ninja-tab.ninja-tab-active{font-weight:700;border-bottom:2px solid #ffd65b}.ff_form_main_nav .ninja-tab.buy_pro_tab{background:#e04f5e;padding:10px 25px;color:#fff}.el-dialog__wrapper .el-dialog{background:transparent}.el-dialog__wrapper .el-dialog__header{display:block;overflow:hidden;background:#f5f5f5;border:1px solid #ddd;padding:10px;border-top-left-radius:5px;border-top-right-radius:5px}.el-dialog__wrapper .el-dialog__header .el-dialog__headerbtn{top:12px}.el-dialog__wrapper .el-dialog__footer{background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.el-dialog__wrapper .el-dialog__body{padding:20px;background:#fff;border-radius:0}.el-dialog__wrapper .el-dialog__body .dialog-footer{padding:10px 20px 20px;text-align:right;box-sizing:border-box;background:#f5f5f5;border-bottom-left-radius:5px;border-bottom-right-radius:5px;width:auto;display:block;margin:0 -20px -20px}.ff_nav_top{overflow:hidden;display:block;margin-bottom:15px;width:100%}.ff_nav_top .ff_nav_title{float:left;width:50%}.ff_nav_top .ff_nav_title h3{float:left;margin:0;padding:0;line-height:28px}.ff_nav_top .ff_nav_title .ff_nav_sub_actions{display:inline-block;margin-left:20px}.ff_nav_top .ff_nav_action{float:left;width:50%;text-align:right}.ff_nav_top .ff_search_inline{width:200px;text-align:right;display:inline-block}.el-table__header-wrapper table.el-table__header tr th{background-color:#f5f9f9!important;color:rgba(0,0,0,.6)!important}.ff_global_notices{display:block;width:100%;overflow:hidden;margin-top:20px;box-sizing:border-box}.ff_global_notices .ff_global_notice{background:#fff;margin-right:20px;display:block;position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.ff_global_notices .ff_global_notice.ff_notice_error{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.ff_global_notices .ff_global_notice.ff_notice_success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.el-select-dropdown.el-popper{z-index:99999999999!important}ul.ff_entry_list{list-style:disc;margin-left:20px}span.ff_new_badge{background:#ff4747;padding:0 5px 3px;border-radius:4px;font-size:11px;vertical-align:super;color:#fff;line-height:100%;margin-left:5px}label.el-checkbox,label.el-radio{display:inline-block}.el-time-spinner__list .el-time-spinner__item{margin-bottom:0!important}.ff_card_block{padding:15px 20px;background:#f1f1f1;border-radius:5px}.ff_card_block h3{padding:0;margin:0 0 15px}#wpbody-content{padding-right:30px}#wpbody-content,#wpbody-content *{box-sizing:border-box}.videoWrapper{position:relative;padding-bottom:56.25%;height:0}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.ff-left-spaced{margin-left:10px!important}.doc_video_wrapper{text-align:center;background:#fff;padding:20px 0 0;max-width:800px;margin:0 auto}.el-big-items .el-select-dropdown__wrap{max-height:350px}.ff_email_resend_inline{display:inline-block}.ff_settings_off{background-color:#f7fafc;padding:10px 15px;margin:-15px -35px}.ff_settings_off .ff_settings_block{background:#fff;padding:20px;margin-top:20px;margin-bottom:30px;border-radius:6px;box-shadow:0 0 35px 0 rgba(16,64,112,.15)}.ff_settings_header{margin-left:-15px;margin-right:-15px;margin-top:-10px;padding:10px 20px;border-bottom:1px solid #e0dbdb}.ff_settings_header h2{margin:0;line-height:30px}.ultimate-nav-menu{background-color:#fff;border-radius:4px}.ultimate-nav-menu>ul{margin:0}.ultimate-nav-menu>ul>li{display:inline-block;margin:0;font-weight:600}.ultimate-nav-menu>ul>li+li{margin-left:-4px}.ultimate-nav-menu>ul>li a{padding:10px;display:block;text-decoration:none;color:#23282d}.ultimate-nav-menu>ul>li a:hover{background-color:#337ab7;color:#fff}.ultimate-nav-menu>ul>li:first-of-type a{border-radius:4px 0 0 4px}.ultimate-nav-menu>ul>li.active a{background-color:#337ab7;color:#fff}.nav-tabs *{box-sizing:border-box}.nav-tab-list{margin:0}.nav-tab-list li{display:inline-block;margin-bottom:0;text-align:center;background-color:#f5f5f5}.nav-tab-list li+li{margin-left:-4x;border-left:1px solid #e2e4e7}.nav-tab-list li:hover{background-color:#e2e4e7}.nav-tab-list li.active{background-color:#fff;border-bottom-color:#fff;font-size:15px}.nav-tab-list li a{color:#000;display:block;padding:12px;font-weight:600;text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.nav-tab-list li a:focus{box-shadow:none}.toggle-fields-options{overflow:hidden}.toggle-fields-options li{width:50%;float:left}.nav-tab-items{background-color:#fff}.vddl-draggable,.vddl-list{position:relative}.vddl-dragging{opacity:1}.vddl-dragging-source{display:none}.select{min-width:200px}.new-elements .btn-element{padding:10px 5px;background-color:#fff;display:block;color:#636a84;cursor:move;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:all .05s;text-align:center;border-radius:0;box-shadow:0 1px 2px 0 #d9d9da}.new-elements .btn-element:hover{background-color:#636a84;color:#fff}.new-elements .btn-element:active:not([draggable=false]){box-shadow:inset 0 2px 7px -4px rgba(0,0,0,.5);transform:translateY(1px)}.new-elements .btn-element i{display:block;text-align:center;margin:0 auto}.new-elements .btn-element[draggable=false]{opacity:.5;cursor:pointer}.mtb15{margin-top:15px;margin-bottom:15px}.text-right{text-align:right}.container,footer{max-width:980px;min-width:730px;margin:0 auto}.help-text{margin-bottom:0}.demo-content{width:100%}.vddl-list__handle div.vddl-nodrag{display:flex;align-items:center;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.vddl-list__handle input[type=radio]{margin-right:0}.vddl-list__handle .nodrag div{margin-right:6px}.vddl-list__handle .nodrag div:last-of-type{margin-right:0}.vddl-list__handle .handle{cursor:move;width:25px;height:16px;background:url(../images/handle.png?e2ed9fef1f5e01da3fbe7239f619d775) 50% no-repeat;background-size:20px 20px}.vddl-draggable .el-form-item{margin-bottom:5px}.tooltip-icon{color:#828f96;vertical-align:middle!important}.option-fields-section{border-bottom:1px solid #dfdfdf;background:#fff}.option-fields-section:last-child{margin-bottom:-5px}.option-fields-section.option-fields-section_active{background:#f3f4f5}.option-fields-section:first-child .option-fields-section--title{border-top:1px solid #e3e5e8!important;background:#fff}.option-fields-section:first-child .option-fields-section--title.active{border-top:0}.option-fields-section--title{padding:14px 20px;margin:0;font-size:13px;font-weight:600;cursor:pointer;overflow:hidden;position:relative}.option-fields-section--title:after{content:"\E025";position:absolute;right:20px;font-family:fluentform;vertical-align:middle}.option-fields-section--title.active{font-weight:700}.option-fields-section--title.active:after{content:"\E026"}.option-fields-section--icon{float:right;vertical-align:middle;margin-top:3px}.option-fields-section--content{max-height:1050vh;padding:15px 20px}.slide-fade-enter-active,.slide-fade-leave-active{overflow:hidden;transition:all .2s ease-in-out}.slide-fade-enter,.slide-fade-leave-to{max-height:0!important;opacity:.2;transform:translateY(-11px)}.ff_conv_section_wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-grow:1;flex-basis:50%}.ff_conv_section_wrapper.ff_conv_layout_default{padding:10px 0}.ff_conv_section_wrapper.ff_conv_layout_default .ff_conv_media_preview{display:none!important}.ff_conv_section_wrapper.ff_conv_layout_default .ff_conv_input{padding-left:30px;width:100%}.ff_conv_section_wrapper .ff_conv_input{width:100%;padding:0 20px 0 30px;display:flex;flex-direction:column-reverse}.ff_conv_section_wrapper .ff_conv_input label.el-form-item__label{font-size:18px;margin-bottom:5px}.ff_conv_section_wrapper .ff_conv_input .help-text{margin-bottom:8px;font-style:normal!important}.ff_conv_section_wrapper .ff_conv_media_preview{width:100%}.ff_conv_section_wrapper .ff_conv_media_preview img{max-width:100%;max-height:300px}.ff_conv_section_wrapper.ff_conv_layout_media_right .ff_conv_media_preview{text-align:center}.ff_conv_section_wrapper.ff_conv_layout_media_left{flex-direction:row-reverse}.ff_conv_section_wrapper.ff_conv_layout_media_left .ff_conv_media_preview{text-align:center}.ff_conv_section_wrapper.ff_conv_layout_media_left .ff_conv_input{width:100%;padding:30px 0 30px 30px}.ff_conv_section_wrapper.ff_conv_layout_media_right_full .ff_conv_media_preview{margin:-10px -10px -10px 0}.ff_conv_section_wrapper.ff_conv_layout_media_right_full img{display:block;margin:0 auto;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:50% 50%;object-position:50% 50%;border-top-right-radius:8px;border-bottom-right-radius:8px}.ff_conv_section_wrapper.ff_conv_layout_media_left_full{flex-direction:row-reverse}.ff_conv_section_wrapper.ff_conv_layout_media_left_full .ff_conv_media_preview{margin:-10px 0 -10px -10px}.ff_conv_section_wrapper.ff_conv_layout_media_left_full .ff_conv_input{width:100%;padding:30px 0 30px 30px}.ff_conv_section_wrapper.ff_conv_layout_media_left_full img{display:block;margin:0 auto;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:50% 50%;object-position:50% 50%;border-top-left-radius:8px;border-bottom-left-radius:8px}.ff_conv_section{color:#262627;border-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,.08),0 2px 12px rgba(0,0,0,.06);-webkit-animation:expand 1s cubic-bezier(.22,1,.36,1) 0s 1 normal none running;animation:expand 1s cubic-bezier(.22,1,.36,1) 0s 1 normal none running;width:100%;height:100%;position:relative;background-color:transparent;margin-bottom:20px;cursor:pointer}.ff_conv_section .hover-action-middle{align-items:flex-start;justify-content:flex-end}.ff_conv_section .panel__body--item{border-radius:10px}.ff_conv_section .panel__body--item.selected{background:#fff;box-shadow:0 0 5px 1px #409eff}.ff_iconed_radios>label{border:1px solid #737373;padding:5px 10px;color:#737373;margin-right:20px}.ff_iconed_radios>label span.el-radio__input{display:none}.ff_iconed_radios>label .el-radio__label{padding-left:0}.ff_iconed_radios>label i{font-size:30px;width:30px;height:30px}.ff_iconed_radios>label.is-checked{border:1px solid #409eff;background:#409eff}.ff_iconed_radios>label.is-checked i{color:#fff;display:block}.ff_conversion_editor{background:#fafafa}.ff_conversion_editor .form-editor--body,.ff_conversion_editor .form-editor__body-content,.ff_conversion_editor .panel__body--list{background-color:#fafafa!important}.ff_conversion_editor .ffc_btn_wrapper{margin-top:20px;display:flex;align-items:center}.ff_conversion_editor .ffc_btn_wrapper .fcc_btn_help{padding-left:15px}.ff_conversion_editor .welcome_screen.text-center .ffc_btn_wrapper{justify-content:center}.ff_conversion_editor .welcome_screen.text-right .ffc_btn_wrapper{justify-content:flex-end}.ff_conversion_editor .ff_default_submit_button_wrapper{display:block!important}.ff_conversion_editor .fcc_pro_message{margin:10px 0;background:#fef6f1;padding:15px;text-align:center;font-size:13px}.ff_conversion_editor .fcc_pro_message a{display:block;margin-top:10px}.ff_conversion_editor .ffc_raw_content{max-height:250px;max-width:60%;margin:0 auto;overflow:hidden}.form-editor *{box-sizing:border-box}.form-editor .address-field-option label.el-checkbox{display:inline-block}.form-editor--body,.form-editor--sidebar{float:left}.form-editor--body{background-color:#fff;width:60%;padding:20px 20px 30px;height:calc(100vh - 51px);overflow-y:scroll}.form-editor--body::-webkit-scrollbar{-webkit-appearance:none;display:none}.form-editor--body .ff-el-form-hide_label .el-form-item__label,.form-editor--body .ff-el-form-hide_label>label{display:none}.form-editor--body .el-slider__button-wrapper{z-index:0}.form-editor .ff-el-form-bottom.el-form-item,.form-editor .ff-el-form-bottom .el-form-item{display:flex;flex-direction:column-reverse}.form-editor .ff-el-form-bottom .el-form-item__label{padding:10px 0 0}.form-editor .ff-el-form-right .el-form-item__label{text-align:right;padding-right:5px}.form-editor--sidebar{width:40%;background-color:#f3f3f4}.form-editor--sidebar-content{height:90vh;overflow-y:scroll;border-left:1px solid #e2e4e7;padding-bottom:50px}.form-editor--sidebar-content::-webkit-scrollbar{-webkit-appearance:none;display:none}.form-editor--sidebar-content .nav-tab-list li{background-color:#f3f3f4}.form-editor--sidebar-content .nav-tab-list li a{padding:15px}.form-editor--sidebar-content .nav-tab-list li.active{background-color:#f3f3f4;box-shadow:inset 0 -2px #409eff}.form-editor--sidebar-content .nav-tab-list li+li{border-left:1px solid #e3e5e8}.form-editor--sidebar-content .search-element{margin:0;padding:0}.form-editor--sidebar-content .search-element .el-input--small .el-input__inner{height:40px}.form-editor--sidebar-content .search-element-result{padding:16px 15px 15px;margin-top:0!important;border-top:1px solid #e3e5e8}.form-editor--sidebar .nav-tab-items{background-color:transparent}.form-editor--sidebar .ff_advnced_options_wrap{max-height:300px;overflow-y:auto;margin-bottom:10px}.form-editor__body-content{max-width:100%;margin:0 auto}.form-editor__body-content .ff_check_photo_item{float:left;margin-right:10px;margin-bottom:10px}.form-editor__body-content .ff_check_photo_item .ff_photo_holder{width:120px;height:120px;background-size:cover;background-position:50%;background-repeat:no-repeat}div#js-form-editor--body .form-editor__body-content{background-color:#fff;padding:30px 20px 30px 0}#ff_form_editor_app{margin-right:-30px}body.ff_full_screen{overflow-y:hidden}body.ff_full_screen #ff_form_editor_app{margin-right:0}body.ff_full_screen .form-editor--sidebar-content{height:calc(100vh - 56px)}body.ff_full_screen .wrap.ff_form_wrap{background:#fff;color:#444;z-index:100099!important;position:fixed;overflow:hidden;top:0;bottom:0;left:0!important;right:0!important;height:100%;min-width:0;cursor:default;margin:0!important}body.ff_full_screen .wrap.ff_form_wrap .form_internal_menu{position:absolute;top:0;left:0;right:0}body.ff_full_screen .wrap.ff_form_wrap .form_internal_menu li{opacity:.5}body.ff_full_screen .wrap.ff_form_wrap .form_internal_menu li:hover{opacity:1}body.ff_full_screen div#js-form-editor--body .form-editor__body-content{padding:30px}body{overflow-y:hidden}.styler_row{width:100%;overflow:hidden;margin-bottom:10px}.styler_row .el-form-item{width:50%;float:left}.styler_row.styler_row_3 .el-form-item{width:32%;margin-right:1%}#wp-link-wrap,.el-color-picker__panel,.el-dialog__wrapper,.el-message,.el-notification,.el-notification.right,.el-popper,.el-tooltip__popper,div.mce-inline-toolbar-grp.mce-arrow-up{z-index:9999999999!important}.ff_code_editor textarea{background:#353535!important;color:#fff!important}.el-popper.el-dropdown-list-wrapper .el-dropdown-menu{width:100%}.ff_editor_html{display:block;width:100%;overflow:hidden}.ff_editor_html img.aligncenter{display:block;text-align:center;margin:0 auto}.address-field-option__settings{margin-top:10px}.address-field-option .pad-b-20{padding-bottom:20px!important}.el-form-item .ff_list_inline>div{width:auto!important;float:none!important;margin:0 15px 10px 0;display:-moz-inline-stack;display:inline-block}.el-form-item .ff_list_3col{width:100%}.el-form-item .ff_list_3col>div{width:33.3%;display:-moz-inline-stack;display:inline-block;margin:0 0 2px;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_2col{width:100%}.el-form-item .ff_list_2col>div{width:50%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_4col{width:100%}.el-form-item .ff_list_4col>div{width:25%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_5col{width:100%}.el-form-item .ff_list_5col>div{width:20%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images){width:auto!important;float:none!important;display:-moz-inline-stack;display:inline-block;position:relative;margin:0 0 10px;line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #dcdfe6;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:6px 20px;border-radius:0}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images) input{opacity:0;outline:none;position:absolute;margin:0;z-index:-1}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images):first-child{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;box-shadow:none!important}.el-form-item .ff_list_buttons>div:not(.ff_checkable_images):last-child{border-radius:0 4px 4px 0}#wpwrap{background:#fff}#switchScreen{color:grey;font-size:25px;vertical-align:middle;font-weight:700;margin-left:10px;cursor:pointer}.form-editor--sidebar .el-form--label-top .el-form-item__label{padding-bottom:6px}.ff_setting_menu li{opacity:.5}.ff_setting_menu li:hover{opacity:1}.ff_setting_menu li.active{opacity:.8}.ff_form_name{opacity:.5}.ff_form_name:hover{opacity:1}.ff-navigation-right .btn.copy,.ff-navigation-right>a{opacity:.5}.ff-navigation-right:hover .btn.copy,.ff-navigation-right:hover>a{opacity:1}.editor_play_video{position:absolute;top:373px;right:38%;background:#409eff;padding:10px 20px;color:#fff;border-radius:20px;box-shadow:0 1px 2px 2px #dae9cc;font-size:19px;cursor:pointer}.form-editor .form-editor--sidebar{position:relative}.form-editor .code{overflow-x:scroll}.form-editor .search-element{padding:10px 20px}.form-editor .ff-user-guide{text-align:center;margin-top:-105px;position:relative;z-index:1}.form-editor .post-form-settings label.el-form-item__label{font-weight:500;margin-top:8px;color:#606266}.chained-select-settings .uploader{width:100%;height:130px;position:relative;margin-top:10px}.chained-select-settings .el-upload--text,.chained-select-settings .el-upload-dragger{width:100%;height:130px}.chained-select-settings .el-upload-list,.chained-select-settings .el-upload-list .el-upload-list__item{margin:-5px 0 0}.chained-select-settings .btn-danger{color:#f56c6c}.conditional-logic{margin-bottom:10px}.condition-field,.condition-value{width:30%}.condition-operator{width:85px}.form-control-2{line-height:28;height:28px;border-radius:5px;padding:2px 5px;vertical-align:middle}mark{background-color:#929292!important;color:#fff!important;font-size:11px;padding:5px;display:inline-block;line-height:1}.highlighted .field-options-settings{background-color:#ffc6c6}.flexable{display:flex}.flexable .el-form-item{margin-right:5px}.flexable .el-form-item:last-of-type{margin-right:0}.field-options-settings{margin-bottom:5px;background-color:#f1f1f1;padding:3px 8px;transition:all .5s}.address-field-option .el-form-item{margin-bottom:15px}.address-field-option .el-checkbox+.el-checkbox{margin-left:0}.address-field-option .required-checkbox{margin-right:10px;display:none}.address-field-option .required-checkbox.is-open{display:block}.address-field-option__settings{margin-top:15px;display:none}.address-field-option__settings.is-open{display:block}.el-form-item.ff_full_width_child .el-form-item__content{width:100%;margin-left:0!important}.el-select .el-input{min-width:70px}.input-with-select .el-input-group__prepend{background-color:#fff}.pull-right.top-check-action>label{margin-right:10px}.pull-right.top-check-action>label:last-child{margin-right:0}.pull-right.top-check-action span.el-checkbox__label{padding-left:3px}.item_desc textarea{margin-top:5px;width:100%}.optionsToRender{margin:7px 0}.action-btn{display:inline-block;min-width:32px}.sidebar-popper{max-width:300px;line-height:1.5}.el-form-item .select{height:35px!important;min-width:100%}.address-field-wrapper{margin-top:10px}.chained-Select-template .header{margin-right:5px}.checkable-grids{border-collapse:collapse}.checkable-grids thead>tr>th{padding:7px 10px;background:#f1f1f1}.checkable-grids tbody>tr>td{padding:7px 10px}.checkable-grids tbody>tr>td:not(:first-of-type){text-align:center}.checkable-grids tbody>tr:nth-child(2n)>td{background:#f1f1f1}.checkable-grids tbody>tr:nth-child(2n - 1)>td{background:#fff}.net-promoter-button{border-radius:inherit}.ff-el-net-promoter-tags{display:flex;justify-content:space-between;max-width:550px}.ff-el-net-promoter-tags p{font-size:12px;opacity:.6}.ff-el-rate{display:inline-block}.repeat-field--item{width:calc(100% - 40px);float:left;margin-right:5px;display:flex}.repeat-field--item>div{flex-grow:1;margin:0 3px}.repeat-field--item .el-form-item__label{text-align:left}.repeat-field-actions{margin-top:40px}.section-break__title{margin-top:0;margin-bottom:10px;font-size:18px}.el-form-item .select{width:100%;min-height:35px}.ff-btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:6px 12px;font-size:16px;line-height:1.5;border-radius:4px;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.ff-btn:focus,.ff-btn:hover{outline:0;text-decoration:none;box-shadow:0 0 0 2px rgba(0,123,255,.25)}.ff-btn.disabled,.ff-btn:disabled{opacity:.65}.ff-btn-lg{padding:8px 16px;font-size:18px;line-height:1.5;border-radius:6px}.ff-btn-sm{padding:4px 8px;font-size:13px;line-height:1.5;border-radius:3px}.ff-btn-block{display:block;width:100%}.ff-btn-primary{background-color:#409eff;color:#fff}.ff-btn-green{background-color:#67c23a;color:#fff}.ff-btn-orange{background-color:#e6a23c;color:#fff}.ff-btn-red{background-color:#f56c6c;color:#fff}.ff-btn-gray{background-color:#909399;color:#fff}.taxonomy-template .el-form-item .select{width:100%;height:35px!important;min-width:100%}.taxonomy-template .el-form-item .el-checkbox .el-checkbox__inner{border:1px solid #7e8993;border-radius:4px;background:#fff;color:#555;clear:both;height:1rem;margin:-.25rem .25rem 0 0;width:1rem;min-width:1rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);transition:border-color .05s ease-in-out}.taxonomy-template .el-form-item .el-checkbox{line-height:19px;display:block;margin:5px 0}.taxonomy-template .el-form-item .el-checkbox .el-checkbox__label{padding-left:5px}.ff_tc{overflow:hidden}.ff_tc .el-checkbox__input{vertical-align:top}.ff_tc .el-checkbox__label{overflow:hidden;word-break:break-word;white-space:break-spaces}.v-row.ff_items_1 .v-col--33,.v-row.ff_items_2 .v-col--33,.v-row .v-col--50:last-child{padding-right:15px}.panel{border-radius:8px;border:1px solid #ebebeb;overflow:hidden;margin-bottom:15px}.panel__heading{background:#f5f5f5;border-bottom:1px solid #ebebeb;height:42px}.panel__heading .form-name-editable{float:left;font-size:14px;padding:4px 8px;margin:8px 0 8px 8px;max-width:250px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;border-radius:2px}.panel__heading .form-name-editable:hover{background-color:#fff;cursor:pointer}.panel__heading .copy-form-shortcode{float:left;padding:4px 8px;margin:8px 0 8px 8px;background-color:#909399;color:#fff;cursor:pointer;border-radius:2px}.panel__heading--btn{padding:3px}.panel__heading .form-inline{padding:5px;float:left}.panel__body{background:#fff;padding:10px 0}.panel__body p{font-size:14px;line-height:20px;color:#666}.panel__body--list{background:#fff}.panel__body--item,.panel__body .panel__placeholder{width:100%;min-height:70px;padding:10px;background:#fff;box-sizing:border-box}.panel__body--item.no-padding-left{padding-left:0}.panel__body--item:last-child{border-bottom:none}.panel__body--item{position:relative;max-width:100%}.panel__body--item.selected{background-color:#eceef1;border:1px solid #eceef1;box-shadow:-3px 0 0 0 #555d66}.panel__body--item>.popup-search-element{transition:all .3s;position:absolute;left:50%;transform:translateX(-50%);bottom:-10px;visibility:hidden;opacity:0;z-index:3}.panel__body--item.is-editor-inserter>.item-actions-wrapper,.panel__body--item.is-editor-inserter>.popup-search-element,.panel__body--item:hover>.item-actions-wrapper,.panel__body--item:hover>.popup-search-element{opacity:1;visibility:visible}.panel__body--item iframe,.panel__body--item img{max-width:100%}.panel .panel__placeholder{background:#f5f5f5}.panel.panel--info .panel__body,.panel>.panel__body{padding:15px}.el-fluid{width:100%!important}.label-block{display:inline-block;margin-bottom:10px;line-height:1;font-weight:500}.form-group{margin-bottom:15px}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}textarea.form-control{height:auto}label.is-required:before{content:"* ";color:red}.el-checkbox-horizontal,.el-radio-horizontal{display:inline-block}.el-checkbox-horizontal .el-checkbox,.el-checkbox-horizontal .el-radio,.el-radio-horizontal .el-checkbox,.el-radio-horizontal .el-radio{display:block;white-space:normal;margin-left:23px;margin-bottom:7px}.el-checkbox-horizontal .el-checkbox+.el-checkbox,.el-checkbox-horizontal .el-checkbox+.el-radio,.el-checkbox-horizontal .el-radio+.el-checkbox,.el-checkbox-horizontal .el-radio+.el-radio,.el-radio-horizontal .el-checkbox+.el-checkbox,.el-radio-horizontal .el-checkbox+.el-radio,.el-radio-horizontal .el-radio+.el-checkbox,.el-radio-horizontal .el-radio+.el-radio{margin-left:23px}.el-checkbox-horizontal .el-checkbox__input,.el-checkbox-horizontal .el-radio__input,.el-radio-horizontal .el-checkbox__input,.el-radio-horizontal .el-radio__input{margin-left:-23px}.form-inline{display:inline-block}.form-inline .el-input{width:auto}.v-form-item{margin-bottom:15px}.v-form-item:last-of-type{margin-bottom:0}.v-form-item label{margin-top:9px;display:inline-block}.settings-page{background-color:#fff}.settings-body{padding:15px}.el-text-primary{color:#20a0ff}.el-text-info{color:#58b7ff}.el-text-success{color:#13ce66}.el-text-warning{color:#f7ba2a}.el-text-danger{color:#ff4949}.el-notification__content{text-align:left}.el-input-group--append .el-input-group__append{left:-2px}.action-buttons .el-button+.el-button{margin-left:0}.el-box-card{box-shadow:none}.el-box-footer,.el-box-header{background-color:#edf1f6;padding:15px}.el-box-body{padding:15px}.el-form-item__force-inline.el-form-item__label{float:left;padding:11px 12px 11px 0}.el-form-item .el-form-item{margin-bottom:10px}.el-form-item__content .line{text-align:center}.el-basic-collapse{border:0;margin-bottom:15px}.el-basic-collapse .el-collapse-item__header{padding-left:0;display:inline-block;border:0}.el-basic-collapse .el-collapse-item__wrap{border:0}.el-basic-collapse .el-collapse-item__content{padding:0;background-color:#fff}.el-collapse-settings{margin-bottom:15px}.el-collapse-settings .el-collapse-item__header{background:#f1f1f1;padding-left:20px}.el-collapse-settings .el-collapse-item__content{padding-bottom:0;margin-top:15px}.el-collapse-settings .el-collapse-item__arrow{line-height:48px}.el-popover{text-align:left}.option-fields-section--content .el-form-item{margin-bottom:10px}.option-fields-section--content .el-form-item__label{padding-bottom:5px;font-size:13px;line-height:1}.option-fields-section--content .el-input__inner{height:30px;padding:0 8px}.option-fields-section--content .el-form-item__content{line-height:1.5;margin-bottom:5px}.el-dropdown-list{border:0;margin:5px 0;box-shadow:none;padding:0;z-index:10;position:static;min-width:auto;max-height:280px;overflow-y:scroll}.el-dropdown-list .el-dropdown-menu__item{font-size:13px;line-height:18px;padding:4px 10px;border-bottom:1px solid #f1f1f1}.el-dropdown-list .el-dropdown-menu__item:last-of-type{border-bottom:0}.el-form-nested.el-form--label-left .el-form-item__label{float:left;padding:10px 5px 10px 0}.el-message{top:40px}.el-button{text-decoration:none}.form-editor-elements:not(.el-form--label-left):not(.el-form--label-right) .el-form-item__label{line-height:1}.folded .el-dialog__wrapper{left:36px}.el-dialog__wrapper{left:160px}.ff-el-banner{width:200px;height:250px;border:1px solid #dce0e5;float:left;display:inline-block;padding:5px;transition:border .3s}.ff-el-banner,.ff-el-banner-group{overflow:hidden}.ff-el-banner-group .ff-el-banner{margin-right:10px;margin-bottom:30px}.ff-el-banner+.ff-el-banner{margin-right:10px}.ff-el-banner img{width:100%;height:auto;display:block}.ff-el-banner-header{text-align:center;margin:0;background:#909399;padding:3px 6px;font-size:13px;color:#fff;font-weight:400}.ff-el-banner-inner-item{position:relative;overflow:hidden;height:inherit}.ff-el-banner:hover .ff-el-banner-text-inside{opacity:1!important;visibility:visible!important}.ff-el-banner-text-inside{display:flex;justify-content:center;flex-direction:column}.ff-el-banner-text-inside-hoverable{position:absolute;transition:all .3s;color:#fff;top:0;left:0;right:0;bottom:0;padding:10px}.ff-el-banner-text-inside .form-title{color:#fff;margin:0 0 10px}.ff_backdrop{background:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999999}.compact td>.cell,.compact th>.cell{white-space:nowrap}.list-group{margin:0}.list-group>li.title{background:#ddd;padding:5px 10px}.list-group li{line-height:1.5;margin-bottom:6px}.list-group li>ul{padding-left:10px;padding-right:10px}.flex-container{display:flex;align-items:center}.flex-container .flex-col{flex:1 100%;padding-left:10px;padding-right:10px}.flex-container .flex-col:first-child{padding-left:0}.flex-container .flex-col:last-child{padding-right:0}.hidden-field-item{background-color:#f5f5f5;margin-bottom:10px}.form-step__wrapper.form-step__wrapper{background:#f5f5f5;border:1px solid #f0f0f0;padding:10px}.form-step__start{border-radius:3px 3px 0 0;margin-bottom:10px;border-radius:0 0 3px 3px}.step-start{margin-left:-10px;margin-right:-10px}.step-start__indicator{text-align:center;position:relative;padding:5px 0}.step-start__indicator strong{font-size:14px;font-weight:600;color:#000;background:#f5f5f5;padding:3px 10px;position:relative;z-index:2}.step-start__indicator hr{position:absolute;top:7px;left:10px;right:10px;border:0;z-index:1;border-top:1px solid #e3e3e3}.vddl-list{padding-left:0;min-height:70px}.vddl-placeholder{width:100%;min-height:70px;border:1px dashed #cfcfcf;background:#f5f5f5}.empty-dropzone{height:70px;border:1px dashed #cfcfcf;margin:0 10px}.empty-dropzone.vddl-dragover{border-color:transparent;height:auto}.popup-search-element{display:inline-block;cursor:pointer;font-style:normal;background:#009fff;color:#fff;width:23px;height:23px;line-height:20px;font-size:16px;border-radius:50%;text-align:center;font-weight:700}.empty-dropzone-placeholder{display:table-cell;text-align:center;width:1000px;height:inherit;vertical-align:middle}.empty-dropzone-placeholder .popup-search-element{background-color:#676767;position:relative;z-index:2}.field-option-settings .section-heading{font-size:15px;margin-top:0;border-bottom:1px solid #f5f5f5;margin-bottom:1rem;padding-bottom:8px}.item-actions-wrapper{top:0;opacity:0;z-index:3;position:absolute;transition:all .3s;visibility:hidden}.item-actions{background-color:#000}.item-actions .icon{color:#fff;cursor:pointer;padding:7px 10px}.item-actions .icon:hover{background-color:#409eff}.hover-action-top-right{top:-12px;right:15px}.hover-action-middle{left:0;width:100%;height:100%;border:1px solid #e3e5e8;display:flex;align-items:center;justify-content:center;background-color:hsla(0,0%,87.1%,.3764705882352941)}.item-container{border:1px dashed #ffb900;display:flex}.item-container .col{box-sizing:border-box;flex-grow:1;border-right:1px dashed #ffb900;flex-basis:0;background:rgba(255,185,0,.08)}.item-container .col .panel__body{background:transparent}.item-container .col:last-of-type{border-right:0}.ff-el-form-left .el-form-item__label,.ff-el-form-right .el-form-item__label{padding-right:10px;float:left!important;width:120px;line-height:40px;padding-bottom:0}.ff-el-form-left .el-form-item__content,.ff-el-form-right .el-form-item__content{margin-left:120px}.ff-el-form-left .el-form-item__label{text-align:left}.ff-el-form-right .el-form-item__label{text-align:right}.ff-el-form-top .el-form-item__label{text-align:left;padding-bottom:10px;float:none;display:inline-block;line-height:1}.ff-el-form-top .el-form-item__content{margin-left:auto!important}.action-btn .icon{cursor:pointer;vertical-align:middle}.sr-only{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.editor-inserter__wrapper{height:auto;position:relative}.editor-inserter__wrapper:before{border:8px solid #e2e4e7}.editor-inserter__wrapper:after{border:8px solid #fff}.editor-inserter__wrapper:after,.editor-inserter__wrapper:before{content:" ";position:absolute;left:50%;transform:translateX(-50%);border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent}.editor-inserter__wrapper.is-bottom:after,.editor-inserter__wrapper.is-bottom:before{border-top:none}.editor-inserter__wrapper.is-bottom:before{top:-9px}.editor-inserter__wrapper.is-bottom:after{top:-7px}.editor-inserter__wrapper.is-top:after,.editor-inserter__wrapper.is-top:before{border-bottom:none}.editor-inserter__wrapper.is-top:before{bottom:-9px}.editor-inserter__wrapper.is-top:after{bottom:-7px}.editor-inserter__contents{height:235px;overflow:scroll}.editor-inserter__content-items{display:flex;flex-wrap:wrap;padding:10px}.editor-inserter__content-item{width:33.33333%;text-align:center;padding:15px 5px;cursor:pointer;border-radius:4px;border:1px solid transparent}.editor-inserter__content-item:hover{box-shadow:1px 2px 3px rgba(0,0,0,.15);border-color:#bec5d0}.editor-inserter__content-item .icon{font-size:18px}.editor-inserter__content-item .icon.dashicons{font-family:dashicons}.editor-inserter__content-item div{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.editor-inserter__search.editor-inserter__search{width:100%;border-radius:0;height:35px;padding:6px 8px;border-color:#e2e4e7}.editor-inserter__tabs li{width:25%}.editor-inserter__tabs li a{padding:10px 6px}.search-popup-wrapper{position:fixed;z-index:3;background-color:#fff;box-shadow:0 3px 20px rgba(25,30,35,.1),0 1px 3px rgba(25,30,35,.1);border:1px solid #e2e4e7}.userContent{max-height:200px;border:1px solid #ebedee;padding:20px;overflow:scroll}.address-field-option{margin-bottom:10px;padding-bottom:10px;margin-left:-10px;padding-left:10px}.address-field-option .el-icon-caret-top,.address-field-option>.el-icon-caret-bottom{font-size:18px}.address-field-option .address-field-option__settings.is-open{padding:10px 15px 0;background:#fff}.address-field-option:hover{box-shadow:-5px 0 0 0 #409eff}.vddl-list__handle_scrollable{max-height:190px;overflow:scroll;width:100%;margin-bottom:10px;background:#fff;padding:5px 10px;margin-top:5px}.entry_navs a{text-decoration:none;padding:2px 5px}.entry_navs a.active{background:#20a0ff;color:#fff}.entry-multi-texts{width:100%}.entry-multi-texts .mult-text-each{float:left;margin-right:2%;min-width:30%}.addresss_editor{background:#eaeaea;padding:10px 20px;overflow:hidden;display:block;width:100%;margin-left:-20px}.addresss_editor .each_address_field{width:45%;float:left;padding-right:5%}.repeat_field_items{overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.repeat_field_items .field_item{display:flex;flex-direction:column;flex-basis:100%;flex:1;padding-right:20px}.repeat_field_items .field_item.field_item_action{display:block!important;flex:0.35;padding-right:0}.ff-table,.ff_entry_table_field,table.editor_table{display:table;width:100%;text-align:left;border-collapse:collapse;white-space:normal}.ff-table td,.ff_entry_table_field td,table.editor_table td{border:1px solid #e4e4e4;padding:7px;text-align:left}.ff-table th,.ff_entry_table_field th,table.editor_table th{border:1px solid #e4e4e4;padding:0 7px;background:#f5f5f5}.ff-payment-table tbody td{padding:15px 10px}.ff-payment-table thead th{padding:15px 10px;font-weight:500;font-size:120%}.ff-payment-table tfoot th{padding:10px}.ff-payment-table tfoot .text-right{text-align:right}.ff_list_items li{display:block;list-style:none;padding:7px 0;overflow:hidden}.ff_list_items li:hover{background:#f7fafc}.ff_list_items li .ff_list_header{width:180px;float:left;font-weight:700;color:#697386}.ff_list_items li .ff_list_value{color:#697386}.ff_card_badge{background-color:#d6ecff;border-radius:20px;padding:2px 8px;color:#3d4eac;font-weight:500;text-transform:capitalize}.edit_entry_view .el-form-item>label{font-weight:700}.edit_entry_view .el-form-item{margin:0 -20px;padding:10px 20px}.edit_entry_view .el-form-item:nth-child(2n){background:#f9f7f7}.edit_entry_view .el-dialog__footer{margin:20px -20px -25px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top:2px solid #dcdfe6}.fluentform-wrapper .json_action{cursor:pointer}.fluentform-wrapper .show_code{width:100%;min-height:500px;background:#2e2a2a;color:#fff;padding:20px;line-height:24px}.fluentform-wrapper .entry-details{background-color:#fff}.fluentform-wrapper .entry-details .table{width:100%;border-collapse:collapse}.fluentform-wrapper .entry-details .table tr:nth-child(2n),.fluentform-wrapper .entry-details .table tr:nth-child(odd){background-color:#fff}.fluentform-wrapper .entry-details .table tr td{padding:8px 10px}.fluentform-wrapper .entry-title{font-size:17px;margin:0;border-bottom:1px solid #fdfdfd;padding:15px}.fluentform-wrapper .entry-body,.fluentform-wrapper .entry-field,.fluentform-wrapper .entry-value{padding:6px 10px}.fluentform-wrapper .entry-footer{padding:10px;text-align:right;border-top:1px solid #ddd;background:#f5f5f5}.response_wrapper .response_header{font-weight:700;background-color:#eaf2fa;border-bottom:1px solid #fff;line-height:1.5;padding:7px 7px 7px 10px}.response_wrapper .response_body{border-bottom:1px solid #dfdfdf;padding:7px 7px 15px 40px;line-height:1.8;overflow:hidden}.response_wrapper .response_body *{box-sizing:border-box}.ff-table{width:100%;border-collapse:collapse;text-align:left}.ff-table thead>tr>th{padding:7px 10px;background:#f1f1f1}.ff-table tbody>tr>td{padding:7px 10px}.ff-table tbody>tr:nth-child(2n)>td{background:#f1f1f1}.ff-table tbody>tr:nth-child(2n - 1)>td{background:#fff}.input-image{height:auto;width:150px;max-width:100%;float:left;margin-right:10px}.input-image img{width:100%}.input_file_ext{width:100%;display:block;background:#eee;font-size:16px;text-align:center;color:#a7a3a3;padding:15px 10px}.input_file_ext i{font-size:22px;display:block;color:#797878}.input_file a,.input_file a:hover{text-decoration:none}.entry_info_box{box-shadow:0 7px 14px 0 rgba(60,66,87,.1),0 3px 6px 0 rgba(0,0,0,.07);border-radius:4px;background-color:#fff;margin-bottom:30px}.entry_info_box .entry_info_header{padding:16px 20px;box-shadow:inset 0 -1px #e3e8ee}.entry_info_box .entry_info_header .info_box_header{line-height:24px;font-size:20px;font-weight:500;font-size:16px;display:inline-block}.entry_info_box .entry_info_header .info_box_header_actions{display:inline-block;float:right;text-align:right}.entry_info_box .entry_info_body{padding:16px 20px}.wpf_each_entry{margin:0 -20px;padding:12px 20px;box-shadow:inset 0 -1px 0 #f3f4f5}.wpf_each_entry:last-child{box-shadow:none}.wpf_each_entry:hover{background-color:#f7fafc}.wpf_each_entry .wpf_entry_label{font-weight:700;color:#697386}.wpf_each_entry .wpf_entry_value{margin-top:8px;padding-left:25px;white-space:pre-line}.entry_info_body.narrow_items{padding:0 15px 15px}.entry_info_body.narrow_items .wpf_each_entry{margin:0 -15px;padding:10px 15px}.entry_info_body.narrow_items .wpf_each_entry p{margin:5px 0}.entry_header{display:block;overflow:hidden;margin:0 0 15px}.entry_header h3{margin:0;line-height:31px}.wpf_entry_value input[type=checkbox]:disabled:checked{opacity:1!important;border:1px solid #65afd2}.wpf_entry_value input[type=checkbox]:disabled{opacity:1!important;border:1px solid #909399}a.input-image{border:1px solid #e3e8ee}a.input-image:hover{border:1px solid grey}a.input-image:hover img{opacity:.8}.show_on_hover{display:none}.el-table__row:hover .show_on_hover{display:inline-block}.show_on_hover [class*=el-icon-],.show_on_hover [class^=el-icon-]{font-size:16px}.inline_actions{margin-left:5px}.inline_item.inline_actions{display:inline-block}.action_button{cursor:pointer}.current_form_name button.el-button.el-button--default.el-button--mini{max-width:170px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.entries_table{overflow:hidden}.compact_input{margin-left:10px}.compact_input span.el-checkbox__label{padding-left:5px}.report_status_filter label.el-checkbox{display:block;margin-left:0!important;padding-left:0;margin-bottom:7px}.ff_report_body{width:100%;min-height:20px}@media print{.ff_nav_action,.form_internal_menu,div#adminmenumain,div#wpadminbar{display:none}.ff_chart_switcher,.ff_print_hide{display:none!important}div#wpcontent{margin-left:0;padding-left:0}html.wp-toolbar{padding:0}.wrap.ff_form_wrap,div#wpcontent{background:#fff}.ff_report_body{position:absolute;top:0;left:10px;right:10px}.ff_form_application_container{margin-top:0!important}.all_report_items{width:100%!important}.ff-table{width:auto;border-collapse:collapse;text-align:left;float:right}}.ff_report_card{display:block;width:100%;margin-bottom:20px;border-radius:10px;background:#fff}.ff_report_card .report_header{padding:10px 20px;border-bottom:1px solid #e4e4e4;font-weight:700}.ff_report_card .report_header .ff_chart_switcher{display:inline-block;float:right}.ff_report_card .report_header .ff_chart_switcher span{cursor:pointer;color:#bbb}.ff_report_card .report_header .ff_chart_switcher span.active_chart{color:#f56c6c}.ff_report_card .report_header .ff_chart_switcher span.ff_rotate_90{transform:rotate(90deg)}.ff_report_card .report_body{padding:20px;overflow:hidden}.ff_report_card .report_body .chart_data{width:50%;float:right;padding-left:20px}.ff_report_card .report_body .ff_chart_view{width:50%;float:left;max-width:380px}ul.entry_item_list{padding-left:30px;list-style:disc;list-style-position:initial;list-style-image:none;list-style-type:disc}.star_big{font-size:20px;display:inline-block;margin-right:5px;vertical-align:middle!important}.wpf_each_entry ul{padding-left:20px;list-style:disc}.el-table-column--selection .cell{text-overflow:clip!important}.payments_wrapper{margin-top:20px}.payments_wrapper *{box-sizing:border-box}.payment_header .payment_title{display:inline-block;margin-right:20px;font-size:23px}.ff-error{background:#ff9800}.ff-error,.ff-success{color:#fff;padding:10px}.ff-success{background:#4caf50}.payment_header{overflow:hidden}.payment_header .payment_actions{float:right}.entry_chart{padding:10px;background:#fff;margin:20px 0;box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-table .warning-row{background:#fdf5e6}span.ff_payment_badge{padding:0 10px 2px;border:1px solid grey;border-radius:9px;margin-left:5px;font-size:12px}tr.el-table__row td{padding:18px 0}.pull-right.ff_paginate{margin-top:20px}.payment_details{margin-top:10px;padding-top:10px;border-top:1px solid #ddd}.add_note_wrapper{padding:20px}.fluent_notes .fluent_note_content{background:#eaf2fa;padding:10px 15px;font-size:13px;line-height:160%}.fluent_notes .fluent_note_meta{padding:5px 15px;font-size:11px}.wpf_add_note_box button{float:right;margin-top:15px}.wpf_add_note_box{overflow:hidden;display:block;margin-bottom:30px;border-bottom:1px solid #dcdfe6;padding-bottom:30px}span.ff_tag{background:#697386;color:#fff;padding:2px 10px;border-radius:10px;font-size:10px}.el-table .cell.el-tooltip{max-height:50px;overflow:hidden}.form-editor--sidebar{position:relative}.code{overflow-x:scroll}.search-element{padding:10px 20px}.ff-user-guide{text-align:center;margin-top:-105px;position:relative;z-index:1}.post-form-settings label.el-form-item__label{font-weight:500;margin-top:8px;color:#606266}.transaction_item_small{margin:0 -20px 20px;padding:10px 20px;background:#f5f5f5}.transaction_item_heading{display:block;border-bottom:1px solid grey;margin:0 -20px 20px;padding:10px 20px}.transaction_heading_title{display:inline-block;font-size:16px;font-weight:500}.transaction_heading_action{float:right;margin-top:-10px}.transaction_item_line{padding:0;font-size:15px;margin-bottom:10px}.transaction_item_line .ff_list_value{background:#ff4;padding:2px 6px}.ff_badge_status_pending{background-color:#ffff03}.ff_badge_status_paid{background:#67c23a;color:#fff}.entry_submission_log .wpf_entry_label{margin-bottom:10px}.entry_submission_log_component{font-weight:700;text-transform:capitalize}.entry_submission_log span:first-child{color:#fff;border-radius:3px}.entry_submission_log .log_status_error,.entry_submission_log .log_status_failed{background:#c23434}.entry_submission_log .log_status_success{background:#348938}@media (max-width:768px){.form_internal_menu{width:100%;left:0!important;top:44px!important}.form_internal_menu .ff-navigation-right{display:none}.form_internal_menu ul.ff_setting_menu{float:right;padding-right:10px!important}.form_internal_menu ul.ff_setting_menu li a{padding:10px 3px!important}.form_internal_menu .ff_form_name{padding:10px 5px!important;max-width:120px!important}.ff_nav_action{float:right!important;text-align:left!important}div#wpbody-content{padding-right:10px!important}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{min-height:30px}.ff_form_main_nav .plugin-name{display:none}.row-actions{display:inline-block!important}.el-form .el-form-item .el-form-item__label{width:100%!important}.el-form .el-form-item .el-form-item__content{margin-left:0!important}.ff_settings_container{margin:0!important;padding:0 10px!important}.ff_settings_wrapper .ff_settings_sidebar{width:120px!important}.ff_settings_wrapper .ff_settings_sidebar ul.ff_settings_list li a{padding:10px 5px;font-size:10px}.settings_app{min-width:500px}.el-tabs__content{padding:20px 10px!important}.wpf_each_entry a{word-break:break-all}div#js-form-editor--body{padding:20px 0}div#js-form-editor--body .form-editor__body-content{padding:60px 0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu{top:0!important}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{display:block}}@media (max-width:425px){.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right{margin-right:0}.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right a,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right button,.wrap.ff_form_wrap.ff_screen_editor .form_internal_menu .ff-navigation-right span{font-size:10px;padding:5px 4px!important;margin:0 3px}#ff_form_entries_app .ff_nav_top .ff_nav_action,#ff_form_entries_app .ff_nav_top .ff_nav_title{width:100%;margin-bottom:10px}.form_internal_menu{position:relative;display:block!important;background:#fff;overflow:hidden;top:0!important;margin:0 -10px;width:auto}.form_internal_menu ul.ff_setting_menu li a{font-size:11px}.ff_form_application_container{margin-top:0!important}.ff_form_main_nav .ninja-tab{font-size:12px;padding:10px 5px;margin:0}ul.el-pager{display:none!important}.ff_settings_wrapper{min-width:600px}.ff_form_wrap .ff_form_wrap_area{overflow:scroll}button.el-button.pull-right{float:left!important}.entry_header h3{display:block;width:100%!important;clear:both}.v-row .v-col--33{width:100%!important;padding-right:0;margin-bottom:15px}.v-row .v-col--33:last-child{margin-bottom:0}.option-fields-section--content{padding:15px 5px}}.el-popover{text-align:left!important;word-break:inherit!important}
|
public/img/conversational/demo_1.jpg
ADDED
Binary file
|
public/img/conversational/demo_2.jpg
ADDED
Binary file
|
public/img/conversational/demo_3.jpg
ADDED
Binary file
|
public/img/conversational/demo_4.jpg
ADDED
Binary file
|
public/img/conversational/demo_5.jpg
ADDED
Binary file
|
public/img/forms/conversational.gif
ADDED
Binary file
|
public/index.php
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// silence is golden
|
public/js/admin_notices.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(n){var t={};function e(o){if(t[o])return t[o].exports;var i=t[o]={i:o,l:!1,exports:{}};return n[o].call(i.exports,i,i.exports,e),i.l=!0,i.exports}e.m=n,e.c=t,e.d=function(n,t,o){e.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:o})},e.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},e.t=function(n,t){if(1&t&&(n=e(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var o=Object.create(null);if(e.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var i in n)e.d(o,i,function(t){return n[t]}.bind(null,i));return o},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,"a",t),t},e.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},e.p="/",e(e.s=
|
1 |
+
!function(n){var t={};function e(o){if(t[o])return t[o].exports;var i=t[o]={i:o,l:!1,exports:{}};return n[o].call(i.exports,i,i.exports,e),i.l=!0,i.exports}e.m=n,e.c=t,e.d=function(n,t,o){e.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:o})},e.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},e.t=function(n,t){if(1&t&&(n=e(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var o=Object.create(null);if(e.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var i in n)e.d(o,i,function(t){return n[t]}.bind(null,i));return o},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,"a",t),t},e.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},e.p="/",e(e.s=568)}({568:function(n,t,e){n.exports=e(569)},569:function(n,t){({initNagButton:function(){jQuery(".ff_nag_cross").on("click",(function(n){n.preventDefault();var t=jQuery(this).attr("data-notice_name"),e=jQuery(this).attr("data-notice_type");jQuery("#ff_notice_"+t).remove(),FluentFormsGlobal.$post({action:"fluentform_notice_action",notice_name:t,action_type:e}).then((function(n){console.log(n)})).fail((function(n){console.log(n)}))}))},initTrackYes:function(){jQuery(".ff_track_yes").on("click",(function(n){n.preventDefault();var t=jQuery(this).attr("data-notice_name"),e=0;jQuery("#ff-optin-send-email").attr("checked")&&(e=1),jQuery("#ff_notice_"+t).remove(),FluentFormsGlobal.$post({action:"fluentform_notice_action_track_yes",notice_name:t,email_enabled:e}).then((function(n){console.log(n)})).fail((function(n){console.log(n)}))}))},initSmtpInstall:function(){var n=jQuery(".intstall_fluentsmtp");n.on("click",(function(t){var e=this;t.preventDefault(),jQuery(this).attr("disabled",!0),jQuery(".ff_addon_installing").show(),FluentFormsGlobal.$post({action:"fluentform_install_fluentsmtp"}).then((function(t){n.text("Please wait...."),t.is_installed&&t.config_url?window.location.href=t.config_url:t.is_installed?location.reload():alert("something is wrong when installing the plugin. Please install FluentSMTP manually."),console.log(t)})).fail((function(n){var t="something is wrong when installing the plugin. Please install FluentSMTP manually.";n.responseJSON&&n.responseJSON.message&&(t=n.responseJSON.message),alert(t),console.log(n)})).always((function(){jQuery(e).attr("disabled",!1),jQuery(".ff_addon_installing").hide()}))}))},initReady:function(){var n=this;jQuery(document).ready((function(){n.initNagButton(),n.initTrackYes(),n.initSmtpInstall()}))}}).initReady()}});
|
public/js/all_entries.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
/*! For license information please see all_entries.js.LICENSE.txt */
|
2 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=572)}([function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,(d.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},function(e,t,n){e.exports=n(126)},function(e,t,n){(function(e){e.exports=function(){"use strict";var t,r;function i(){return t.apply(null,arguments)}function a(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function o(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(s(e,t))return!1;return!0}function d(e){return void 0===e}function u(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function h(e,t){var n,r=[];for(n=0;n<e.length;++n)r.push(t(e[n],n));return r}function f(e,t){for(var n in t)s(t,n)&&(e[n]=t[n]);return s(t,"toString")&&(e.toString=t.toString),s(t,"valueOf")&&(e.valueOf=t.valueOf),e}function m(e,t,n,r){return kt(e,t,n,r,!0).utc()}function p(e){return null==e._pf&&(e._pf={empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidEra:null,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],era:null,meridiem:null,rfc2822:!1,weekdayMismatch:!1}),e._pf}function _(e){if(null==e._isValid){var t=p(e),n=r.call(t.parsedDateParts,(function(e){return null!=e})),i=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict&&(i=i&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return i;e._isValid=i}return e._isValid}function g(e){var t=m(NaN);return null!=e?f(p(t),e):p(t).userInvalidated=!0,t}r=Array.prototype.some?Array.prototype.some:function(e){var t,n=Object(this),r=n.length>>>0;for(t=0;t<r;t++)if(t in n&&e.call(this,n[t],t,n))return!0;return!1};var y=i.momentProperties=[],v=!1;function b(e,t){var n,r,i;if(d(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),d(t._i)||(e._i=t._i),d(t._f)||(e._f=t._f),d(t._l)||(e._l=t._l),d(t._strict)||(e._strict=t._strict),d(t._tzm)||(e._tzm=t._tzm),d(t._isUTC)||(e._isUTC=t._isUTC),d(t._offset)||(e._offset=t._offset),d(t._pf)||(e._pf=p(t)),d(t._locale)||(e._locale=t._locale),y.length>0)for(n=0;n<y.length;n++)d(i=t[r=y[n]])||(e[r]=i);return e}function M(e){b(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===v&&(v=!0,i.updateOffset(this),v=!1)}function L(e){return e instanceof M||null!=e&&null!=e._isAMomentObject}function x(e){!1===i.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function w(e,t){var n=!0;return f((function(){if(null!=i.deprecationHandler&&i.deprecationHandler(null,e),n){var r,a,o,l=[];for(a=0;a<arguments.length;a++){if(r="","object"==typeof arguments[a]){for(o in r+="\n["+a+"] ",arguments[0])s(arguments[0],o)&&(r+=o+": "+arguments[0][o]+", ");r=r.slice(0,-2)}else r=arguments[a];l.push(r)}x(e+"\nArguments: "+Array.prototype.slice.call(l).join("")+"\n"+(new Error).stack),n=!1}return t.apply(this,arguments)}),t)}var k,Y={};function S(e,t){null!=i.deprecationHandler&&i.deprecationHandler(e,t),Y[e]||(x(t),Y[e]=!0)}function D(e){return"undefined"!=typeof Function&&e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}function T(e,t){var n,r=f({},e);for(n in t)s(t,n)&&(o(e[n])&&o(t[n])?(r[n]={},f(r[n],e[n]),f(r[n],t[n])):null!=t[n]?r[n]=t[n]:delete r[n]);for(n in e)s(e,n)&&!s(t,n)&&o(e[n])&&(r[n]=f({},r[n]));return r}function C(e){null!=e&&this.set(e)}function O(e,t,n){var r=""+Math.abs(e),i=t-r.length;return(e>=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+r}i.suppressDeprecationWarnings=!1,i.deprecationHandler=null,k=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)s(e,t)&&n.push(t);return n};var j=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,H=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,P={},E={};function A(e,t,n,r){var i=r;"string"==typeof r&&(i=function(){return this[r]()}),e&&(E[e]=i),t&&(E[t[0]]=function(){return O(i.apply(this,arguments),t[1],t[2])}),n&&(E[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function F(e,t){return e.isValid()?(t=$(t,e.localeData()),P[t]=P[t]||function(e){var t,n,r,i=e.match(j);for(t=0,n=i.length;t<n;t++)E[i[t]]?i[t]=E[i[t]]:i[t]=(r=i[t]).match(/\[[\s\S]/)?r.replace(/^\[|\]$/g,""):r.replace(/\\/g,"");return function(t){var r,a="";for(r=0;r<n;r++)a+=D(i[r])?i[r].call(t,e):i[r];return a}}(t),P[t](e)):e.localeData().invalidDate()}function $(e,t){var n=5;function r(e){return t.longDateFormat(e)||e}for(H.lastIndex=0;n>=0&&H.test(e);)e=e.replace(H,r),H.lastIndex=0,n-=1;return e}var I={};function N(e,t){var n=e.toLowerCase();I[n]=I[n+"s"]=I[t]=e}function W(e){return"string"==typeof e?I[e]||I[e.toLowerCase()]:void 0}function z(e){var t,n,r={};for(n in e)s(e,n)&&(t=W(n))&&(r[t]=e[n]);return r}var R={};function B(e,t){R[e]=t}function V(e){return e%4==0&&e%100!=0||e%400==0}function U(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function J(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=U(t)),n}function q(e,t){return function(n){return null!=n?(K(this,e,n),i.updateOffset(this,t),this):G(this,e)}}function G(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function K(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&V(e.year())&&1===e.month()&&29===e.date()?(n=J(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Le(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}var X,Z=/\d/,Q=/\d\d/,ee=/\d{3}/,te=/\d{4}/,ne=/[+-]?\d{6}/,re=/\d\d?/,ie=/\d\d\d\d?/,ae=/\d\d\d\d\d\d?/,oe=/\d{1,3}/,se=/\d{1,4}/,le=/[+-]?\d{1,6}/,de=/\d+/,ue=/[+-]?\d+/,ce=/Z|[+-]\d\d:?\d\d/gi,he=/Z|[+-]\d\d(?::?\d\d)?/gi,fe=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;function me(e,t,n){X[e]=D(t)?t:function(e,r){return e&&n?n:t}}function pe(e,t){return s(X,e)?X[e](t._strict,t._locale):new RegExp(_e(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function _e(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}X={};var ge,ye={};function ve(e,t){var n,r=t;for("string"==typeof e&&(e=[e]),u(t)&&(r=function(e,n){n[t]=J(e)}),n=0;n<e.length;n++)ye[e[n]]=r}function be(e,t){ve(e,(function(e,n,r,i){r._w=r._w||{},t(e,r._w,r,i)}))}function Me(e,t,n){null!=t&&s(ye,e)&&ye[e](t,n._a,n,e)}function Le(e,t){if(isNaN(e)||isNaN(t))return NaN;var n,r=(t%(n=12)+n)%n;return e+=(t-r)/12,1===r?V(e)?29:28:31-r%7%2}ge=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1},A("M",["MM",2],"Mo",(function(){return this.month()+1})),A("MMM",0,0,(function(e){return this.localeData().monthsShort(this,e)})),A("MMMM",0,0,(function(e){return this.localeData().months(this,e)})),N("month","M"),B("month",8),me("M",re),me("MM",re,Q),me("MMM",(function(e,t){return t.monthsShortRegex(e)})),me("MMMM",(function(e,t){return t.monthsRegex(e)})),ve(["M","MM"],(function(e,t){t[1]=J(e)-1})),ve(["MMM","MMMM"],(function(e,t,n,r){var i=n._locale.monthsParse(e,r,n._strict);null!=i?t[1]=i:p(n).invalidMonth=e}));var xe="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),we="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ke=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,Ye=fe,Se=fe;function De(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],r=0;r<12;++r)a=m([2e3,r]),this._shortMonthsParse[r]=this.monthsShort(a,"").toLocaleLowerCase(),this._longMonthsParse[r]=this.months(a,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(i=ge.call(this._shortMonthsParse,o))?i:null:-1!==(i=ge.call(this._longMonthsParse,o))?i:null:"MMM"===t?-1!==(i=ge.call(this._shortMonthsParse,o))||-1!==(i=ge.call(this._longMonthsParse,o))?i:null:-1!==(i=ge.call(this._longMonthsParse,o))||-1!==(i=ge.call(this._shortMonthsParse,o))?i:null}function Te(e,t){var n;if(!e.isValid())return e;if("string"==typeof t)if(/^\d+$/.test(t))t=J(t);else if(!u(t=e.localeData().monthsParse(t)))return e;return n=Math.min(e.date(),Le(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n),e}function Ce(e){return null!=e?(Te(this,e),i.updateOffset(this,!0),this):G(this,"Month")}function Oe(){function e(e,t){return t.length-e.length}var t,n,r=[],i=[],a=[];for(t=0;t<12;t++)n=m([2e3,t]),r.push(this.monthsShort(n,"")),i.push(this.months(n,"")),a.push(this.months(n,"")),a.push(this.monthsShort(n,""));for(r.sort(e),i.sort(e),a.sort(e),t=0;t<12;t++)r[t]=_e(r[t]),i[t]=_e(i[t]);for(t=0;t<24;t++)a[t]=_e(a[t]);this._monthsRegex=new RegExp("^("+a.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+r.join("|")+")","i")}function je(e){return V(e)?366:365}A("Y",0,0,(function(){var e=this.year();return e<=9999?O(e,4):"+"+e})),A(0,["YY",2],0,(function(){return this.year()%100})),A(0,["YYYY",4],0,"year"),A(0,["YYYYY",5],0,"year"),A(0,["YYYYYY",6,!0],0,"year"),N("year","y"),B("year",1),me("Y",ue),me("YY",re,Q),me("YYYY",se,te),me("YYYYY",le,ne),me("YYYYYY",le,ne),ve(["YYYYY","YYYYYY"],0),ve("YYYY",(function(e,t){t[0]=2===e.length?i.parseTwoDigitYear(e):J(e)})),ve("YY",(function(e,t){t[0]=i.parseTwoDigitYear(e)})),ve("Y",(function(e,t){t[0]=parseInt(e,10)})),i.parseTwoDigitYear=function(e){return J(e)+(J(e)>68?1900:2e3)};var He=q("FullYear",!0);function Pe(e,t,n,r,i,a,o){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,a,o),s}function Ee(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Ae(e,t,n){var r=7+t-n;return-(7+Ee(e,0,r).getUTCDay()-t)%7+r-1}function Fe(e,t,n,r,i){var a,o,s=1+7*(t-1)+(7+n-r)%7+Ae(e,r,i);return s<=0?o=je(a=e-1)+s:s>je(e)?(a=e+1,o=s-je(e)):(a=e,o=s),{year:a,dayOfYear:o}}function $e(e,t,n){var r,i,a=Ae(e.year(),t,n),o=Math.floor((e.dayOfYear()-a-1)/7)+1;return o<1?r=o+Ie(i=e.year()-1,t,n):o>Ie(e.year(),t,n)?(r=o-Ie(e.year(),t,n),i=e.year()+1):(i=e.year(),r=o),{week:r,year:i}}function Ie(e,t,n){var r=Ae(e,t,n),i=Ae(e+1,t,n);return(je(e)-r+i)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}A("w",["ww",2],"wo","week"),A("W",["WW",2],"Wo","isoWeek"),N("week","w"),N("isoWeek","W"),B("week",5),B("isoWeek",5),me("w",re),me("ww",re,Q),me("W",re),me("WW",re,Q),be(["w","ww","W","WW"],(function(e,t,n,r){t[r.substr(0,1)]=J(e)})),A("d",0,"do","day"),A("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),A("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),A("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),A("e",0,0,"weekday"),A("E",0,0,"isoWeekday"),N("day","d"),N("weekday","e"),N("isoWeekday","E"),B("day",11),B("weekday",11),B("isoWeekday",11),me("d",re),me("e",re),me("E",re),me("dd",(function(e,t){return t.weekdaysMinRegex(e)})),me("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),me("dddd",(function(e,t){return t.weekdaysRegex(e)})),be(["dd","ddd","dddd"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:p(n).invalidWeekday=e})),be(["d","e","E"],(function(e,t,n,r){t[r]=J(e)}));var We="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),ze="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Re="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Be=fe,Ve=fe,Ue=fe;function Je(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)a=m([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(a,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(a,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(a,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=ge.call(this._weekdaysParse,o))?i:null:"ddd"===t?-1!==(i=ge.call(this._shortWeekdaysParse,o))?i:null:-1!==(i=ge.call(this._minWeekdaysParse,o))?i:null:"dddd"===t?-1!==(i=ge.call(this._weekdaysParse,o))||-1!==(i=ge.call(this._shortWeekdaysParse,o))||-1!==(i=ge.call(this._minWeekdaysParse,o))?i:null:"ddd"===t?-1!==(i=ge.call(this._shortWeekdaysParse,o))||-1!==(i=ge.call(this._weekdaysParse,o))||-1!==(i=ge.call(this._minWeekdaysParse,o))?i:null:-1!==(i=ge.call(this._minWeekdaysParse,o))||-1!==(i=ge.call(this._weekdaysParse,o))||-1!==(i=ge.call(this._shortWeekdaysParse,o))?i:null}function qe(){function e(e,t){return t.length-e.length}var t,n,r,i,a,o=[],s=[],l=[],d=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),r=_e(this.weekdaysMin(n,"")),i=_e(this.weekdaysShort(n,"")),a=_e(this.weekdays(n,"")),o.push(r),s.push(i),l.push(a),d.push(r),d.push(i),d.push(a);o.sort(e),s.sort(e),l.sort(e),d.sort(e),this._weekdaysRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Ge(){return this.hours()%12||12}function Ke(e,t){A(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Xe(e,t){return t._meridiemParse}A("H",["HH",2],0,"hour"),A("h",["hh",2],0,Ge),A("k",["kk",2],0,(function(){return this.hours()||24})),A("hmm",0,0,(function(){return""+Ge.apply(this)+O(this.minutes(),2)})),A("hmmss",0,0,(function(){return""+Ge.apply(this)+O(this.minutes(),2)+O(this.seconds(),2)})),A("Hmm",0,0,(function(){return""+this.hours()+O(this.minutes(),2)})),A("Hmmss",0,0,(function(){return""+this.hours()+O(this.minutes(),2)+O(this.seconds(),2)})),Ke("a",!0),Ke("A",!1),N("hour","h"),B("hour",13),me("a",Xe),me("A",Xe),me("H",re),me("h",re),me("k",re),me("HH",re,Q),me("hh",re,Q),me("kk",re,Q),me("hmm",ie),me("hmmss",ae),me("Hmm",ie),me("Hmmss",ae),ve(["H","HH"],3),ve(["k","kk"],(function(e,t,n){var r=J(e);t[3]=24===r?0:r})),ve(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),ve(["h","hh"],(function(e,t,n){t[3]=J(e),p(n).bigHour=!0})),ve("hmm",(function(e,t,n){var r=e.length-2;t[3]=J(e.substr(0,r)),t[4]=J(e.substr(r)),p(n).bigHour=!0})),ve("hmmss",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=J(e.substr(0,r)),t[4]=J(e.substr(r,2)),t[5]=J(e.substr(i)),p(n).bigHour=!0})),ve("Hmm",(function(e,t,n){var r=e.length-2;t[3]=J(e.substr(0,r)),t[4]=J(e.substr(r))})),ve("Hmmss",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=J(e.substr(0,r)),t[4]=J(e.substr(r,2)),t[5]=J(e.substr(i))}));var Ze,Qe=q("Hours",!0),et={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:xe,monthsShort:we,week:{dow:0,doy:6},weekdays:We,weekdaysMin:Re,weekdaysShort:ze,meridiemParse:/[ap]\.?m?\.?/i},tt={},nt={};function rt(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n<r;n+=1)if(e[n]!==t[n])return n;return r}function it(e){return e?e.toLowerCase().replace("_","-"):e}function at(t){var r=null;if(void 0===tt[t]&&void 0!==e&&e&&e.exports)try{r=Ze._abbr,n(507)("./"+t),ot(r)}catch(e){tt[t]=null}return tt[t]}function ot(e,t){var n;return e&&((n=d(t)?lt(e):st(e,t))?Ze=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Ze._abbr}function st(e,t){if(null!==t){var n,r=et;if(t.abbr=e,null!=tt[e])S("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])r=tt[t.parentLocale]._config;else{if(null==(n=at(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;r=n._config}return tt[e]=new C(T(r,t)),nt[e]&&nt[e].forEach((function(e){st(e.name,e.config)})),ot(e),tt[e]}return delete tt[e],null}function lt(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Ze;if(!a(e)){if(t=at(e))return t;e=[e]}return function(e){for(var t,n,r,i,a=0;a<e.length;){for(t=(i=it(e[a]).split("-")).length,n=(n=it(e[a+1]))?n.split("-"):null;t>0;){if(r=at(i.slice(0,t).join("-")))return r;if(n&&n.length>=t&&rt(i,n)>=t-1)break;t--}a++}return Ze}(e)}function dt(e){var t,n=e._a;return n&&-2===p(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Le(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,p(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),p(e)._overflowWeeks&&-1===t&&(t=7),p(e)._overflowWeekday&&-1===t&&(t=8),p(e).overflow=t),e}var ut=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ct=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ht=/Z|[+-]\d\d(?::?\d\d)?/,ft=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],mt=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],pt=/^\/?Date\((-?\d+)/i,_t=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,gt={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function yt(e){var t,n,r,i,a,o,s=e._i,l=ut.exec(s)||ct.exec(s);if(l){for(p(e).iso=!0,t=0,n=ft.length;t<n;t++)if(ft[t][1].exec(l[1])){i=ft[t][0],r=!1!==ft[t][2];break}if(null==i)return void(e._isValid=!1);if(l[3]){for(t=0,n=mt.length;t<n;t++)if(mt[t][1].exec(l[3])){a=(l[2]||" ")+mt[t][0];break}if(null==a)return void(e._isValid=!1)}if(!r&&null!=a)return void(e._isValid=!1);if(l[4]){if(!ht.exec(l[4]))return void(e._isValid=!1);o="Z"}e._f=i+(a||"")+(o||""),xt(e)}else e._isValid=!1}function vt(e){var t=parseInt(e,10);return t<=49?2e3+t:t<=999?1900+t:t}function bt(e){var t,n,r,i,a,o,s,l,d=_t.exec(e._i.replace(/\([^)]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,""));if(d){if(n=d[4],r=d[3],i=d[2],a=d[5],o=d[6],s=d[7],l=[vt(n),we.indexOf(r),parseInt(i,10),parseInt(a,10),parseInt(o,10)],s&&l.push(parseInt(s,10)),t=l,!function(e,t,n){return!e||ze.indexOf(e)===new Date(t[0],t[1],t[2]).getDay()||(p(n).weekdayMismatch=!0,n._isValid=!1,!1)}(d[1],t,e))return;e._a=t,e._tzm=function(e,t,n){if(e)return gt[e];if(t)return 0;var r=parseInt(n,10),i=r%100;return(r-i)/100*60+i}(d[8],d[9],d[10]),e._d=Ee.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),p(e).rfc2822=!0}else e._isValid=!1}function Mt(e,t,n){return null!=e?e:null!=t?t:n}function Lt(e){var t,n,r,a,o,s=[];if(!e._d){for(r=function(e){var t=new Date(i.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,r,i,a,o,s,l,d;null!=(t=e._w).GG||null!=t.W||null!=t.E?(a=1,o=4,n=Mt(t.GG,e._a[0],$e(Yt(),1,4).year),r=Mt(t.W,1),((i=Mt(t.E,1))<1||i>7)&&(l=!0)):(a=e._locale._week.dow,o=e._locale._week.doy,d=$e(Yt(),a,o),n=Mt(t.gg,e._a[0],d.year),r=Mt(t.w,d.week),null!=t.d?((i=t.d)<0||i>6)&&(l=!0):null!=t.e?(i=t.e+a,(t.e<0||t.e>6)&&(l=!0)):i=a),r<1||r>Ie(n,a,o)?p(e)._overflowWeeks=!0:null!=l?p(e)._overflowWeekday=!0:(s=Fe(n,r,i,a,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=Mt(e._a[0],r[0]),(e._dayOfYear>je(o)||0===e._dayOfYear)&&(p(e)._overflowDayOfYear=!0),n=Ee(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ee:Pe).apply(null,s),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(p(e).weekdayMismatch=!0)}}function xt(e){if(e._f!==i.ISO_8601)if(e._f!==i.RFC_2822){e._a=[],p(e).empty=!0;var t,n,r,a,o,s,l=""+e._i,d=l.length,u=0;for(r=$(e._f,e._locale).match(j)||[],t=0;t<r.length;t++)a=r[t],(n=(l.match(pe(a,e))||[])[0])&&((o=l.substr(0,l.indexOf(n))).length>0&&p(e).unusedInput.push(o),l=l.slice(l.indexOf(n)+n.length),u+=n.length),E[a]?(n?p(e).empty=!1:p(e).unusedTokens.push(a),Me(a,n,e)):e._strict&&!n&&p(e).unusedTokens.push(a);p(e).charsLeftOver=d-u,l.length>0&&p(e).unusedInput.push(l),e._a[3]<=12&&!0===p(e).bigHour&&e._a[3]>0&&(p(e).bigHour=void 0),p(e).parsedDateParts=e._a.slice(0),p(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),null!==(s=p(e).era)&&(e._a[0]=e._locale.erasConvertYear(s,e._a[0])),Lt(e),dt(e)}else bt(e);else yt(e)}function wt(e){var t=e._i,n=e._f;return e._locale=e._locale||lt(e._l),null===t||void 0===n&&""===t?g({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),L(t)?new M(dt(t)):(c(t)?e._d=t:a(n)?function(e){var t,n,r,i,a,o,s=!1;if(0===e._f.length)return p(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;i<e._f.length;i++)a=0,o=!1,t=b({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[i],xt(t),_(t)&&(o=!0),a+=p(t).charsLeftOver,a+=10*p(t).unusedTokens.length,p(t).score=a,s?a<r&&(r=a,n=t):(null==r||a<r||o)&&(r=a,n=t,o&&(s=!0));f(e,n||t)}(e):n?xt(e):function(e){var t=e._i;d(t)?e._d=new Date(i.now()):c(t)?e._d=new Date(t.valueOf()):"string"==typeof t?function(e){var t=pt.exec(e._i);null===t?(yt(e),!1===e._isValid&&(delete e._isValid,bt(e),!1===e._isValid&&(delete e._isValid,e._strict?e._isValid=!1:i.createFromInputFallback(e)))):e._d=new Date(+t[1])}(e):a(t)?(e._a=h(t.slice(0),(function(e){return parseInt(e,10)})),Lt(e)):o(t)?function(e){if(!e._d){var t=z(e._i),n=void 0===t.day?t.date:t.day;e._a=h([t.year,t.month,n,t.hour,t.minute,t.second,t.millisecond],(function(e){return e&&parseInt(e,10)})),Lt(e)}}(e):u(t)?e._d=new Date(t):i.createFromInputFallback(e)}(e),_(e)||(e._d=null),e))}function kt(e,t,n,r,i){var s,d={};return!0!==t&&!1!==t||(r=t,t=void 0),!0!==n&&!1!==n||(r=n,n=void 0),(o(e)&&l(e)||a(e)&&0===e.length)&&(e=void 0),d._isAMomentObject=!0,d._useUTC=d._isUTC=i,d._l=n,d._i=e,d._f=t,d._strict=r,(s=new M(dt(wt(d))))._nextDay&&(s.add(1,"d"),s._nextDay=void 0),s}function Yt(e,t,n,r){return kt(e,t,n,r,!1)}i.createFromInputFallback=w("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",(function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))})),i.ISO_8601=function(){},i.RFC_2822=function(){};var St=w("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",(function(){var e=Yt.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:g()})),Dt=w("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",(function(){var e=Yt.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:g()}));function Tt(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Yt();for(n=t[0],r=1;r<t.length;++r)t[r].isValid()&&!t[r][e](n)||(n=t[r]);return n}var Ct=["year","quarter","month","week","day","hour","minute","second","millisecond"];function Ot(e){var t=z(e),n=t.year||0,r=t.quarter||0,i=t.month||0,a=t.week||t.isoWeek||0,o=t.day||0,l=t.hour||0,d=t.minute||0,u=t.second||0,c=t.millisecond||0;this._isValid=function(e){var t,n,r=!1;for(t in e)if(s(e,t)&&(-1===ge.call(Ct,t)||null!=e[t]&&isNaN(e[t])))return!1;for(n=0;n<Ct.length;++n)if(e[Ct[n]]){if(r)return!1;parseFloat(e[Ct[n]])!==J(e[Ct[n]])&&(r=!0)}return!0}(t),this._milliseconds=+c+1e3*u+6e4*d+1e3*l*60*60,this._days=+o+7*a,this._months=+i+3*r+12*n,this._data={},this._locale=lt(),this._bubble()}function jt(e){return e instanceof Ot}function Ht(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function Pt(e,t){A(e,0,0,(function(){var e=this.utcOffset(),n="+";return e<0&&(e=-e,n="-"),n+O(~~(e/60),2)+t+O(~~e%60,2)}))}Pt("Z",":"),Pt("ZZ",""),me("Z",he),me("ZZ",he),ve(["Z","ZZ"],(function(e,t,n){n._useUTC=!0,n._tzm=At(he,e)}));var Et=/([\+\-]|\d\d)/gi;function At(e,t){var n,r,i=(t||"").match(e);return null===i?null:0===(r=60*(n=((i[i.length-1]||[])+"").match(Et)||["-",0,0])[1]+J(n[2]))?0:"+"===n[0]?r:-r}function Ft(e,t){var n,r;return t._isUTC?(n=t.clone(),r=(L(e)||c(e)?e.valueOf():Yt(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+r),i.updateOffset(n,!1),n):Yt(e).local()}function $t(e){return-Math.round(e._d.getTimezoneOffset())}function It(){return!!this.isValid()&&this._isUTC&&0===this._offset}i.updateOffset=function(){};var Nt=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Wt=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function zt(e,t){var n,r,i,a,o,l,d=e,c=null;return jt(e)?d={ms:e._milliseconds,d:e._days,M:e._months}:u(e)||!isNaN(+e)?(d={},t?d[t]=+e:d.milliseconds=+e):(c=Nt.exec(e))?(n="-"===c[1]?-1:1,d={y:0,d:J(c[2])*n,h:J(c[3])*n,m:J(c[4])*n,s:J(c[5])*n,ms:J(Ht(1e3*c[6]))*n}):(c=Wt.exec(e))?(n="-"===c[1]?-1:1,d={y:Rt(c[2],n),M:Rt(c[3],n),w:Rt(c[4],n),d:Rt(c[5],n),h:Rt(c[6],n),m:Rt(c[7],n),s:Rt(c[8],n)}):null==d?d={}:"object"==typeof d&&("from"in d||"to"in d)&&(a=Yt(d.from),o=Yt(d.to),i=a.isValid()&&o.isValid()?(o=Ft(o,a),a.isBefore(o)?l=Bt(a,o):((l=Bt(o,a)).milliseconds=-l.milliseconds,l.months=-l.months),l):{milliseconds:0,months:0},(d={}).ms=i.milliseconds,d.M=i.months),r=new Ot(d),jt(e)&&s(e,"_locale")&&(r._locale=e._locale),jt(e)&&s(e,"_isValid")&&(r._isValid=e._isValid),r}function Rt(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Bt(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Vt(e,t){return function(n,r){var i;return null===r||isNaN(+r)||(S(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),i=n,n=r,r=i),Ut(this,zt(n,r),e),this}}function Ut(e,t,n,r){var a=t._milliseconds,o=Ht(t._days),s=Ht(t._months);e.isValid()&&(r=null==r||r,s&&Te(e,G(e,"Month")+s*n),o&&K(e,"Date",G(e,"Date")+o*n),a&&e._d.setTime(e._d.valueOf()+a*n),r&&i.updateOffset(e,o||s))}zt.fn=Ot.prototype,zt.invalid=function(){return zt(NaN)};var Jt=Vt(1,"add"),qt=Vt(-1,"subtract");function Gt(e){return"string"==typeof e||e instanceof String}function Kt(e){return L(e)||c(e)||Gt(e)||u(e)||function(e){var t=a(e),n=!1;return t&&(n=0===e.filter((function(t){return!u(t)&&Gt(e)})).length),t&&n}(e)||function(e){var t,n,r=o(e)&&!l(e),i=!1,a=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"];for(t=0;t<a.length;t+=1)n=a[t],i=i||s(e,n);return r&&i}(e)||null==e}function Xt(e){var t,n=o(e)&&!l(e),r=!1,i=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"];for(t=0;t<i.length;t+=1)r=r||s(e,i[t]);return n&&r}function Zt(e,t){if(e.date()<t.date())return-Zt(t,e);var n=12*(t.year()-e.year())+(t.month()-e.month()),r=e.clone().add(n,"months");return-(n+(t-r<0?(t-r)/(r-e.clone().add(n-1,"months")):(t-r)/(e.clone().add(n+1,"months")-r)))||0}function Qt(e){var t;return void 0===e?this._locale._abbr:(null!=(t=lt(e))&&(this._locale=t),this)}i.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",i.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var en=w("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",(function(e){return void 0===e?this.localeData():this.locale(e)}));function tn(){return this._locale}function nn(e,t){return(e%t+t)%t}function rn(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function an(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function on(e,t){return t.erasAbbrRegex(e)}function sn(){var e,t,n=[],r=[],i=[],a=[],o=this.eras();for(e=0,t=o.length;e<t;++e)r.push(_e(o[e].name)),n.push(_e(o[e].abbr)),i.push(_e(o[e].narrow)),a.push(_e(o[e].name)),a.push(_e(o[e].abbr)),a.push(_e(o[e].narrow));this._erasRegex=new RegExp("^("+a.join("|")+")","i"),this._erasNameRegex=new RegExp("^("+r.join("|")+")","i"),this._erasAbbrRegex=new RegExp("^("+n.join("|")+")","i"),this._erasNarrowRegex=new RegExp("^("+i.join("|")+")","i")}function ln(e,t){A(0,[e,e.length],0,t)}function dn(e,t,n,r,i){var a;return null==e?$e(this,r,i).year:(t>(a=Ie(e,r,i))&&(t=a),un.call(this,e,t,n,r,i))}function un(e,t,n,r,i){var a=Fe(e,t,n,r,i),o=Ee(a.year,0,a.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}A("N",0,0,"eraAbbr"),A("NN",0,0,"eraAbbr"),A("NNN",0,0,"eraAbbr"),A("NNNN",0,0,"eraName"),A("NNNNN",0,0,"eraNarrow"),A("y",["y",1],"yo","eraYear"),A("y",["yy",2],0,"eraYear"),A("y",["yyy",3],0,"eraYear"),A("y",["yyyy",4],0,"eraYear"),me("N",on),me("NN",on),me("NNN",on),me("NNNN",(function(e,t){return t.erasNameRegex(e)})),me("NNNNN",(function(e,t){return t.erasNarrowRegex(e)})),ve(["N","NN","NNN","NNNN","NNNNN"],(function(e,t,n,r){var i=n._locale.erasParse(e,r,n._strict);i?p(n).era=i:p(n).invalidEra=e})),me("y",de),me("yy",de),me("yyy",de),me("yyyy",de),me("yo",(function(e,t){return t._eraYearOrdinalRegex||de})),ve(["y","yy","yyy","yyyy"],0),ve(["yo"],(function(e,t,n,r){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[0]=n._locale.eraYearOrdinalParse(e,i):t[0]=parseInt(e,10)})),A(0,["gg",2],0,(function(){return this.weekYear()%100})),A(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),ln("gggg","weekYear"),ln("ggggg","weekYear"),ln("GGGG","isoWeekYear"),ln("GGGGG","isoWeekYear"),N("weekYear","gg"),N("isoWeekYear","GG"),B("weekYear",1),B("isoWeekYear",1),me("G",ue),me("g",ue),me("GG",re,Q),me("gg",re,Q),me("GGGG",se,te),me("gggg",se,te),me("GGGGG",le,ne),me("ggggg",le,ne),be(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,r){t[r.substr(0,2)]=J(e)})),be(["gg","GG"],(function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)})),A("Q",0,"Qo","quarter"),N("quarter","Q"),B("quarter",7),me("Q",Z),ve("Q",(function(e,t){t[1]=3*(J(e)-1)})),A("D",["DD",2],"Do","date"),N("date","D"),B("date",9),me("D",re),me("DD",re,Q),me("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),ve(["D","DD"],2),ve("Do",(function(e,t){t[2]=J(e.match(re)[0])}));var cn=q("Date",!0);A("DDD",["DDDD",3],"DDDo","dayOfYear"),N("dayOfYear","DDD"),B("dayOfYear",4),me("DDD",oe),me("DDDD",ee),ve(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=J(e)})),A("m",["mm",2],0,"minute"),N("minute","m"),B("minute",14),me("m",re),me("mm",re,Q),ve(["m","mm"],4);var hn=q("Minutes",!1);A("s",["ss",2],0,"second"),N("second","s"),B("second",15),me("s",re),me("ss",re,Q),ve(["s","ss"],5);var fn,mn,pn=q("Seconds",!1);for(A("S",0,0,(function(){return~~(this.millisecond()/100)})),A(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),A(0,["SSS",3],0,"millisecond"),A(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),A(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),A(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),A(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),A(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),A(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),N("millisecond","ms"),B("millisecond",16),me("S",oe,Z),me("SS",oe,Q),me("SSS",oe,ee),fn="SSSS";fn.length<=9;fn+="S")me(fn,de);function _n(e,t){t[6]=J(1e3*("0."+e))}for(fn="S";fn.length<=9;fn+="S")ve(fn,_n);mn=q("Milliseconds",!1),A("z",0,0,"zoneAbbr"),A("zz",0,0,"zoneName");var gn=M.prototype;function yn(e){return e}gn.add=Jt,gn.calendar=function(e,t){1===arguments.length&&(arguments[0]?Kt(arguments[0])?(e=arguments[0],t=void 0):Xt(arguments[0])&&(t=arguments[0],e=void 0):(e=void 0,t=void 0));var n=e||Yt(),r=Ft(n,this).startOf("day"),a=i.calendarFormat(this,r)||"sameElse",o=t&&(D(t[a])?t[a].call(this,n):t[a]);return this.format(o||this.localeData().calendar(a,this,Yt(n)))},gn.clone=function(){return new M(this)},gn.diff=function(e,t,n){var r,i,a;if(!this.isValid())return NaN;if(!(r=Ft(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=W(t)){case"year":a=Zt(this,r)/12;break;case"month":a=Zt(this,r);break;case"quarter":a=Zt(this,r)/3;break;case"second":a=(this-r)/1e3;break;case"minute":a=(this-r)/6e4;break;case"hour":a=(this-r)/36e5;break;case"day":a=(this-r-i)/864e5;break;case"week":a=(this-r-i)/6048e5;break;default:a=this-r}return n?a:U(a)},gn.endOf=function(e){var t,n;if(void 0===(e=W(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?an:rn,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=36e5-nn(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":t=this._d.valueOf(),t+=6e4-nn(t,6e4)-1;break;case"second":t=this._d.valueOf(),t+=1e3-nn(t,1e3)-1}return this._d.setTime(t),i.updateOffset(this,!0),this},gn.format=function(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=F(this,e);return this.localeData().postformat(t)},gn.from=function(e,t){return this.isValid()&&(L(e)&&e.isValid()||Yt(e).isValid())?zt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},gn.fromNow=function(e){return this.from(Yt(),e)},gn.to=function(e,t){return this.isValid()&&(L(e)&&e.isValid()||Yt(e).isValid())?zt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},gn.toNow=function(e){return this.to(Yt(),e)},gn.get=function(e){return D(this[e=W(e)])?this[e]():this},gn.invalidAt=function(){return p(this).overflow},gn.isAfter=function(e,t){var n=L(e)?e:Yt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=W(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())},gn.isBefore=function(e,t){var n=L(e)?e:Yt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=W(t)||"millisecond")?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())},gn.isBetween=function(e,t,n,r){var i=L(e)?e:Yt(e),a=L(t)?t:Yt(t);return!!(this.isValid()&&i.isValid()&&a.isValid())&&(("("===(r=r||"()")[0]?this.isAfter(i,n):!this.isBefore(i,n))&&(")"===r[1]?this.isBefore(a,n):!this.isAfter(a,n)))},gn.isSame=function(e,t){var n,r=L(e)?e:Yt(e);return!(!this.isValid()||!r.isValid())&&("millisecond"===(t=W(t)||"millisecond")?this.valueOf()===r.valueOf():(n=r.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))},gn.isSameOrAfter=function(e,t){return this.isSame(e,t)||this.isAfter(e,t)},gn.isSameOrBefore=function(e,t){return this.isSame(e,t)||this.isBefore(e,t)},gn.isValid=function(){return _(this)},gn.lang=en,gn.locale=Qt,gn.localeData=tn,gn.max=Dt,gn.min=St,gn.parsingFlags=function(){return f({},p(this))},gn.set=function(e,t){if("object"==typeof e){var n,r=function(e){var t,n=[];for(t in e)s(e,t)&&n.push({unit:t,priority:R[t]});return n.sort((function(e,t){return e.priority-t.priority})),n}(e=z(e));for(n=0;n<r.length;n++)this[r[n].unit](e[r[n].unit])}else if(D(this[e=W(e)]))return this[e](t);return this},gn.startOf=function(e){var t,n;if(void 0===(e=W(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?an:rn,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=nn(t+(this._isUTC?0:6e4*this.utcOffset()),36e5);break;case"minute":t=this._d.valueOf(),t-=nn(t,6e4);break;case"second":t=this._d.valueOf(),t-=nn(t,1e3)}return this._d.setTime(t),i.updateOffset(this,!0),this},gn.subtract=qt,gn.toArray=function(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]},gn.toObject=function(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}},gn.toDate=function(){return new Date(this.valueOf())},gn.toISOString=function(e){if(!this.isValid())return null;var t=!0!==e,n=t?this.clone().utc():this;return n.year()<0||n.year()>9999?F(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):D(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",F(n,"Z")):F(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},gn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r="moment",i="";return this.isLocal()||(r=0===this.utcOffset()?"moment.utc":"moment.parseZone",i="Z"),e="["+r+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n=i+'[")]',this.format(e+t+"-MM-DD[T]HH:mm:ss.SSS"+n)},"undefined"!=typeof Symbol&&null!=Symbol.for&&(gn[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),gn.toJSON=function(){return this.isValid()?this.toISOString():null},gn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},gn.unix=function(){return Math.floor(this.valueOf()/1e3)},gn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},gn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},gn.eraName=function(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;e<t;++e){if(n=this.clone().startOf("day").valueOf(),r[e].since<=n&&n<=r[e].until)return r[e].name;if(r[e].until<=n&&n<=r[e].since)return r[e].name}return""},gn.eraNarrow=function(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;e<t;++e){if(n=this.clone().startOf("day").valueOf(),r[e].since<=n&&n<=r[e].until)return r[e].narrow;if(r[e].until<=n&&n<=r[e].since)return r[e].narrow}return""},gn.eraAbbr=function(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;e<t;++e){if(n=this.clone().startOf("day").valueOf(),r[e].since<=n&&n<=r[e].until)return r[e].abbr;if(r[e].until<=n&&n<=r[e].since)return r[e].abbr}return""},gn.eraYear=function(){var e,t,n,r,a=this.localeData().eras();for(e=0,t=a.length;e<t;++e)if(n=a[e].since<=a[e].until?1:-1,r=this.clone().startOf("day").valueOf(),a[e].since<=r&&r<=a[e].until||a[e].until<=r&&r<=a[e].since)return(this.year()-i(a[e].since).year())*n+a[e].offset;return this.year()},gn.year=He,gn.isLeapYear=function(){return V(this.year())},gn.weekYear=function(e){return dn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},gn.isoWeekYear=function(e){return dn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},gn.quarter=gn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},gn.month=Ce,gn.daysInMonth=function(){return Le(this.year(),this.month())},gn.week=gn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},gn.isoWeek=gn.isoWeeks=function(e){var t=$e(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},gn.weeksInYear=function(){var e=this.localeData()._week;return Ie(this.year(),e.dow,e.doy)},gn.weeksInWeekYear=function(){var e=this.localeData()._week;return Ie(this.weekYear(),e.dow,e.doy)},gn.isoWeeksInYear=function(){return Ie(this.year(),1,4)},gn.isoWeeksInISOWeekYear=function(){return Ie(this.isoWeekYear(),1,4)},gn.date=cn,gn.day=gn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,"d")):t},gn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},gn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},gn.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},gn.hour=gn.hours=Qe,gn.minute=gn.minutes=hn,gn.second=gn.seconds=pn,gn.millisecond=gn.milliseconds=mn,gn.utcOffset=function(e,t,n){var r,a=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=At(he,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(r=$t(this)),this._offset=e,this._isUTC=!0,null!=r&&this.add(r,"m"),a!==e&&(!t||this._changeInProgress?Ut(this,zt(e-a,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,i.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?a:$t(this)},gn.utc=function(e){return this.utcOffset(0,e)},gn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract($t(this),"m")),this},gn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=At(ce,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},gn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Yt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},gn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},gn.isLocal=function(){return!!this.isValid()&&!this._isUTC},gn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},gn.isUtc=It,gn.isUTC=It,gn.zoneAbbr=function(){return this._isUTC?"UTC":""},gn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},gn.dates=w("dates accessor is deprecated. Use date instead.",cn),gn.months=w("months accessor is deprecated. Use month instead",Ce),gn.years=w("years accessor is deprecated. Use year instead",He),gn.zone=w("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),gn.isDSTShifted=w("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!d(this._isDSTShifted))return this._isDSTShifted;var e,t={};return b(t,this),(t=wt(t))._a?(e=t._isUTC?m(t._a):Yt(t._a),this._isDSTShifted=this.isValid()&&function(e,t,n){var r,i=Math.min(e.length,t.length),a=Math.abs(e.length-t.length),o=0;for(r=0;r<i;r++)(n&&e[r]!==t[r]||!n&&J(e[r])!==J(t[r]))&&o++;return o+a}(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}));var vn=C.prototype;function bn(e,t,n,r){var i=lt(),a=m().set(r,t);return i[n](a,e)}function Mn(e,t,n){if(u(e)&&(t=e,e=void 0),e=e||"",null!=t)return bn(e,t,n,"month");var r,i=[];for(r=0;r<12;r++)i[r]=bn(e,r,n,"month");return i}function Ln(e,t,n,r){"boolean"==typeof e?(u(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,u(t)&&(n=t,t=void 0),t=t||"");var i,a=lt(),o=e?a._week.dow:0,s=[];if(null!=n)return bn(t,(n+o)%7,r,"day");for(i=0;i<7;i++)s[i]=bn(t,(i+o)%7,r,"day");return s}vn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return D(r)?r.call(t,n):r},vn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(j).map((function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e})).join(""),this._longDateFormat[e])},vn.invalidDate=function(){return this._invalidDate},vn.ordinal=function(e){return this._ordinal.replace("%d",e)},vn.preparse=yn,vn.postformat=yn,vn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return D(i)?i(e,t,n,r):i.replace(/%d/i,e)},vn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return D(n)?n(t):n.replace(/%s/i,t)},vn.set=function(e){var t,n;for(n in e)s(e,n)&&(D(t=e[n])?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},vn.eras=function(e,t){var n,r,a,o=this._eras||lt("en")._eras;for(n=0,r=o.length;n<r;++n){switch(typeof o[n].since){case"string":a=i(o[n].since).startOf("day"),o[n].since=a.valueOf()}switch(typeof o[n].until){case"undefined":o[n].until=1/0;break;case"string":a=i(o[n].until).startOf("day").valueOf(),o[n].until=a.valueOf()}}return o},vn.erasParse=function(e,t,n){var r,i,a,o,s,l=this.eras();for(e=e.toUpperCase(),r=0,i=l.length;r<i;++r)if(a=l[r].name.toUpperCase(),o=l[r].abbr.toUpperCase(),s=l[r].narrow.toUpperCase(),n)switch(t){case"N":case"NN":case"NNN":if(o===e)return l[r];break;case"NNNN":if(a===e)return l[r];break;case"NNNNN":if(s===e)return l[r]}else if([a,o,s].indexOf(e)>=0)return l[r]},vn.erasConvertYear=function(e,t){var n=e.since<=e.until?1:-1;return void 0===t?i(e.since).year():i(e.since).year()+(t-e.offset)*n},vn.erasAbbrRegex=function(e){return s(this,"_erasAbbrRegex")||sn.call(this),e?this._erasAbbrRegex:this._erasRegex},vn.erasNameRegex=function(e){return s(this,"_erasNameRegex")||sn.call(this),e?this._erasNameRegex:this._erasRegex},vn.erasNarrowRegex=function(e){return s(this,"_erasNarrowRegex")||sn.call(this),e?this._erasNarrowRegex:this._erasRegex},vn.months=function(e,t){return e?a(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||ke).test(t)?"format":"standalone"][e.month()]:a(this._months)?this._months:this._months.standalone},vn.monthsShort=function(e,t){return e?a(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[ke.test(t)?"format":"standalone"][e.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},vn.monthsParse=function(e,t,n){var r,i,a;if(this._monthsParseExact)return De.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=m([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[r]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[r]||(a="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[r]=new RegExp(a.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[r].test(e))return r;if(n&&"MMM"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},vn.monthsRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||Oe.call(this),e?this._monthsStrictRegex:this._monthsRegex):(s(this,"_monthsRegex")||(this._monthsRegex=Se),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},vn.monthsShortRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||Oe.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(s(this,"_monthsShortRegex")||(this._monthsShortRegex=Ye),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},vn.week=function(e){return $e(e,this._week.dow,this._week.doy).week},vn.firstDayOfYear=function(){return this._week.doy},vn.firstDayOfWeek=function(){return this._week.dow},vn.weekdays=function(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},vn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},vn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},vn.weekdaysParse=function(e,t,n){var r,i,a;if(this._weekdaysParseExact)return Je.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=m([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(a="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[r]=new RegExp(a.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},vn.weekdaysRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=Be),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},vn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ve),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},vn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ue),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},vn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},vn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},ot("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===J(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),i.lang=w("moment.lang is deprecated. Use moment.locale instead.",ot),i.langData=w("moment.langData is deprecated. Use moment.localeData instead.",lt);var xn=Math.abs;function wn(e,t,n,r){var i=zt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function kn(e){return e<0?Math.floor(e):Math.ceil(e)}function Yn(e){return 4800*e/146097}function Sn(e){return 146097*e/4800}function Dn(e){return function(){return this.as(e)}}var Tn=Dn("ms"),Cn=Dn("s"),On=Dn("m"),jn=Dn("h"),Hn=Dn("d"),Pn=Dn("w"),En=Dn("M"),An=Dn("Q"),Fn=Dn("y");function $n(e){return function(){return this.isValid()?this._data[e]:NaN}}var In=$n("milliseconds"),Nn=$n("seconds"),Wn=$n("minutes"),zn=$n("hours"),Rn=$n("days"),Bn=$n("months"),Vn=$n("years"),Un=Math.round,Jn={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function qn(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var Gn=Math.abs;function Kn(e){return(e>0)-(e<0)||+e}function Xn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,i,a,o,s,l=Gn(this._milliseconds)/1e3,d=Gn(this._days),u=Gn(this._months),c=this.asSeconds();return c?(e=U(l/60),t=U(e/60),l%=60,e%=60,n=U(u/12),u%=12,r=l?l.toFixed(3).replace(/\.?0+$/,""):"",i=c<0?"-":"",a=Kn(this._months)!==Kn(c)?"-":"",o=Kn(this._days)!==Kn(c)?"-":"",s=Kn(this._milliseconds)!==Kn(c)?"-":"",i+"P"+(n?a+n+"Y":"")+(u?a+u+"M":"")+(d?o+d+"D":"")+(t||e||l?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(l?s+r+"S":"")):"P0D"}var Zn=Ot.prototype;return Zn.isValid=function(){return this._isValid},Zn.abs=function(){var e=this._data;return this._milliseconds=xn(this._milliseconds),this._days=xn(this._days),this._months=xn(this._months),e.milliseconds=xn(e.milliseconds),e.seconds=xn(e.seconds),e.minutes=xn(e.minutes),e.hours=xn(e.hours),e.months=xn(e.months),e.years=xn(e.years),this},Zn.add=function(e,t){return wn(this,e,t,1)},Zn.subtract=function(e,t){return wn(this,e,t,-1)},Zn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=W(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+Yn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Sn(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}},Zn.asMilliseconds=Tn,Zn.asSeconds=Cn,Zn.asMinutes=On,Zn.asHours=jn,Zn.asDays=Hn,Zn.asWeeks=Pn,Zn.asMonths=En,Zn.asQuarters=An,Zn.asYears=Fn,Zn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*J(this._months/12):NaN},Zn._bubble=function(){var e,t,n,r,i,a=this._milliseconds,o=this._days,s=this._months,l=this._data;return a>=0&&o>=0&&s>=0||a<=0&&o<=0&&s<=0||(a+=864e5*kn(Sn(s)+o),o=0,s=0),l.milliseconds=a%1e3,e=U(a/1e3),l.seconds=e%60,t=U(e/60),l.minutes=t%60,n=U(t/60),l.hours=n%24,o+=U(n/24),i=U(Yn(o)),s+=i,o-=kn(Sn(i)),r=U(s/12),s%=12,l.days=o,l.months=s,l.years=r,this},Zn.clone=function(){return zt(this)},Zn.get=function(e){return e=W(e),this.isValid()?this[e+"s"]():NaN},Zn.milliseconds=In,Zn.seconds=Nn,Zn.minutes=Wn,Zn.hours=zn,Zn.days=Rn,Zn.weeks=function(){return U(this.days()/7)},Zn.months=Bn,Zn.years=Vn,Zn.humanize=function(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,i=!1,a=Jn;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(i=e),"object"==typeof t&&(a=Object.assign({},Jn,t),null!=t.s&&null==t.ss&&(a.ss=t.s-1)),n=this.localeData(),r=function(e,t,n,r){var i=zt(e).abs(),a=Un(i.as("s")),o=Un(i.as("m")),s=Un(i.as("h")),l=Un(i.as("d")),d=Un(i.as("M")),u=Un(i.as("w")),c=Un(i.as("y")),h=a<=n.ss&&["s",a]||a<n.s&&["ss",a]||o<=1&&["m"]||o<n.m&&["mm",o]||s<=1&&["h"]||s<n.h&&["hh",s]||l<=1&&["d"]||l<n.d&&["dd",l];return null!=n.w&&(h=h||u<=1&&["w"]||u<n.w&&["ww",u]),(h=h||d<=1&&["M"]||d<n.M&&["MM",d]||c<=1&&["y"]||["yy",c])[2]=t,h[3]=+e>0,h[4]=r,qn.apply(null,h)}(this,!i,a,n),i&&(r=n.pastFuture(+this,r)),n.postformat(r)},Zn.toISOString=Xn,Zn.toString=Xn,Zn.toJSON=Xn,Zn.locale=Qt,Zn.localeData=tn,Zn.toIsoString=w("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Xn),Zn.lang=en,A("X",0,0,"unix"),A("x",0,0,"valueOf"),me("x",ue),me("X",/[+-]?\d+(\.\d{1,3})?/),ve("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),ve("x",(function(e,t,n){n._d=new Date(J(e))})),i.version="2.29.1",t=Yt,i.fn=gn,i.min=function(){var e=[].slice.call(arguments,0);return Tt("isBefore",e)},i.max=function(){var e=[].slice.call(arguments,0);return Tt("isAfter",e)},i.now=function(){return Date.now?Date.now():+new Date},i.utc=m,i.unix=function(e){return Yt(1e3*e)},i.months=function(e,t){return Mn(e,t,"months")},i.isDate=c,i.locale=ot,i.invalid=g,i.duration=zt,i.isMoment=L,i.weekdays=function(e,t,n){return Ln(e,t,n,"weekdays")},i.parseZone=function(){return Yt.apply(null,arguments).parseZone()},i.localeData=lt,i.isDuration=jt,i.monthsShort=function(e,t){return Mn(e,t,"monthsShort")},i.weekdaysMin=function(e,t,n){return Ln(e,t,n,"weekdaysMin")},i.defineLocale=st,i.updateLocale=function(e,t){if(null!=t){var n,r,i=et;null!=tt[e]&&null!=tt[e].parentLocale?tt[e].set(T(tt[e]._config,t)):(null!=(r=at(e))&&(i=r._config),t=T(i,t),null==r&&(t.abbr=e),(n=new C(t)).parentLocale=tt[e],tt[e]=n),ot(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?(tt[e]=tt[e].parentLocale,e===ot()&&ot(e)):null!=tt[e]&&delete tt[e]);return tt[e]},i.locales=function(){return k(tt)},i.weekdaysShort=function(e,t,n){return Ln(e,t,n,"weekdaysShort")},i.normalizeUnits=W,i.relativeTimeRounding=function(e){return void 0===e?Un:"function"==typeof e&&(Un=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==Jn[e]&&(void 0===t?Jn[e]:(Jn[e]=t,"s"===e&&(Jn.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},i.prototype=gn,i.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},i}()}).call(this,n(51)(e))},function(e,t,n){"use strict";function r(e,t,n){this.$children.forEach((function(i){i.$options.componentName===e?i.$emit.apply(i,[t].concat(n)):r.apply(i,[e,t].concat([n]))}))}t.__esModule=!0,t.default={methods:{dispatch:function(e,t,n){for(var r=this.$parent||this.$root,i=r.$options.componentName;r&&(!i||i!==e);)(r=r.$parent)&&(i=r.$options.componentName);r&&r.$emit.apply(r,[t].concat(n))},broadcast:function(e,t,n){r.call(this,e,t,n)}}}},function(e,t,n){"use strict";t.__esModule=!0,t.isEmpty=t.isEqual=t.arrayEquals=t.looseEqual=t.capitalize=t.kebabCase=t.autoprefixer=t.isFirefox=t.isEdge=t.isIE=t.coerceTruthyValueToArray=t.arrayFind=t.arrayFindIndex=t.escapeRegexpString=t.valueEquals=t.generateId=t.getValueByPath=void 0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.noop=function(){},t.hasOwn=function(e,t){return l.call(e,t)},t.toObject=function(e){for(var t={},n=0;n<e.length;n++)e[n]&&d(t,e[n]);return t},t.getPropByPath=function(e,t,n){for(var r=e,i=(t=(t=t.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),a=0,o=i.length;a<o-1&&(r||n);++a){var s=i[a];if(!(s in r)){if(n)throw new Error("please transfer a valid prop path to form item!");break}r=r[s]}return{o:r,k:i[a],v:r?r[i[a]]:null}},t.rafThrottle=function(e){var t=!1;return function(){for(var n=this,r=arguments.length,i=Array(r),a=0;a<r;a++)i[a]=arguments[a];t||(t=!0,window.requestAnimationFrame((function(r){e.apply(n,i),t=!1})))}},t.objToArray=function(e){if(Array.isArray(e))return e;return f(e)?[]:[e]};var i,a=n(1),o=(i=a)&&i.__esModule?i:{default:i},s=n(123);var l=Object.prototype.hasOwnProperty;function d(e,t){for(var n in t)e[n]=t[n];return e}t.getValueByPath=function(e,t){for(var n=(t=t||"").split("."),r=e,i=null,a=0,o=n.length;a<o;a++){var s=n[a];if(!r)break;if(a===o-1){i=r[s];break}r=r[s]}return i};t.generateId=function(){return Math.floor(1e4*Math.random())},t.valueEquals=function(e,t){if(e===t)return!0;if(!(e instanceof Array))return!1;if(!(t instanceof Array))return!1;if(e.length!==t.length)return!1;for(var n=0;n!==e.length;++n)if(e[n]!==t[n])return!1;return!0},t.escapeRegexpString=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return String(e).replace(/[|\\{}()[\]^$+*?.]/g,"\\$&")};var u=t.arrayFindIndex=function(e,t){for(var n=0;n!==e.length;++n)if(t(e[n]))return n;return-1},c=(t.arrayFind=function(e,t){var n=u(e,t);return-1!==n?e[n]:void 0},t.coerceTruthyValueToArray=function(e){return Array.isArray(e)?e:e?[e]:[]},t.isIE=function(){return!o.default.prototype.$isServer&&!isNaN(Number(document.documentMode))},t.isEdge=function(){return!o.default.prototype.$isServer&&navigator.userAgent.indexOf("Edge")>-1},t.isFirefox=function(){return!o.default.prototype.$isServer&&!!window.navigator.userAgent.match(/firefox/i)},t.autoprefixer=function(e){if("object"!==(void 0===e?"undefined":r(e)))return e;var t=["ms-","webkit-"];return["transform","transition","animation"].forEach((function(n){var r=e[n];n&&r&&t.forEach((function(t){e[t+n]=r}))})),e},t.kebabCase=function(e){var t=/([^-])([A-Z])/g;return e.replace(t,"$1-$2").replace(t,"$1-$2").toLowerCase()},t.capitalize=function(e){return(0,s.isString)(e)?e.charAt(0).toUpperCase()+e.slice(1):e},t.looseEqual=function(e,t){var n=(0,s.isObject)(e),r=(0,s.isObject)(t);return n&&r?JSON.stringify(e)===JSON.stringify(t):!n&&!r&&String(e)===String(t)}),h=t.arrayEquals=function(e,t){if(t=t||[],(e=e||[]).length!==t.length)return!1;for(var n=0;n<e.length;n++)if(!c(e[n],t[n]))return!1;return!0},f=(t.isEqual=function(e,t){return Array.isArray(e)&&Array.isArray(t)?h(e,t):c(e,t)},t.isEmpty=function(e){if(null==e)return!0;if("boolean"==typeof e)return!1;if("number"==typeof e)return!e;if(e instanceof Error)return""===e.message;switch(Object.prototype.toString.call(e)){case"[object String]":case"[object Array]":return!e.length;case"[object File]":case"[object Map]":case"[object Set]":return!e.size;case"[object Object]":return!Object.keys(e).length}return!1})},,function(e,t,n){"use strict";t.__esModule=!0,t.isInContainer=t.getScrollContainer=t.isScroll=t.getStyle=t.once=t.off=t.on=void 0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.hasClass=f,t.addClass=function(e,t){if(!e)return;for(var n=e.className,r=(t||"").split(" "),i=0,a=r.length;i<a;i++){var o=r[i];o&&(e.classList?e.classList.add(o):f(e,o)||(n+=" "+o))}e.classList||(e.className=n)},t.removeClass=function(e,t){if(!e||!t)return;for(var n=t.split(" "),r=" "+e.className+" ",i=0,a=n.length;i<a;i++){var o=n[i];o&&(e.classList?e.classList.remove(o):f(e,o)&&(r=r.replace(" "+o+" "," ")))}e.classList||(e.className=(r||"").replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g,""))},t.setStyle=function e(t,n,i){if(!t||!n)return;if("object"===(void 0===n?"undefined":r(n)))for(var a in n)n.hasOwnProperty(a)&&e(t,a,n[a]);else"opacity"===(n=u(n))&&d<9?t.style.filter=isNaN(i)?"":"alpha(opacity="+100*i+")":t.style[n]=i};var i,a=n(1);var o=((i=a)&&i.__esModule?i:{default:i}).default.prototype.$isServer,s=/([\:\-\_]+(.))/g,l=/^moz([A-Z])/,d=o?0:Number(document.documentMode),u=function(e){return e.replace(s,(function(e,t,n,r){return r?n.toUpperCase():n})).replace(l,"Moz$1")},c=t.on=!o&&document.addEventListener?function(e,t,n){e&&t&&n&&e.addEventListener(t,n,!1)}:function(e,t,n){e&&t&&n&&e.attachEvent("on"+t,n)},h=t.off=!o&&document.removeEventListener?function(e,t,n){e&&t&&e.removeEventListener(t,n,!1)}:function(e,t,n){e&&t&&e.detachEvent("on"+t,n)};t.once=function(e,t,n){c(e,t,(function r(){n&&n.apply(this,arguments),h(e,t,r)}))};function f(e,t){if(!e||!t)return!1;if(-1!==t.indexOf(" "))throw new Error("className should not contain space.");return e.classList?e.classList.contains(t):(" "+e.className+" ").indexOf(" "+t+" ")>-1}var m=t.getStyle=d<9?function(e,t){if(!o){if(!e||!t)return null;"float"===(t=u(t))&&(t="styleFloat");try{switch(t){case"opacity":try{return e.filters.item("alpha").opacity/100}catch(e){return 1}default:return e.style[t]||e.currentStyle?e.currentStyle[t]:null}}catch(n){return e.style[t]}}}:function(e,t){if(!o){if(!e||!t)return null;"float"===(t=u(t))&&(t="cssFloat");try{var n=document.defaultView.getComputedStyle(e,"");return e.style[t]||n?n[t]:null}catch(n){return e.style[t]}}};var p=t.isScroll=function(e,t){if(!o)return m(e,null!==t||void 0!==t?t?"overflow-y":"overflow-x":"overflow").match(/(scroll|auto)/)};t.getScrollContainer=function(e,t){if(!o){for(var n=e;n;){if([window,document,document.documentElement].includes(n))return window;if(p(n,t))return n;n=n.parentNode}return n}},t.isInContainer=function(e,t){if(o||!e||!t)return!1;var n=e.getBoundingClientRect(),r=void 0;return r=[window,document,document.documentElement,null,void 0].includes(t)?{top:0,right:window.innerWidth,bottom:window.innerHeight,left:0}:t.getBoundingClientRect(),n.top<r.bottom&&n.bottom>r.top&&n.right>r.left&&n.left<r.right}},function(e,t){var n=Array.isArray;e.exports=n},function(e,t,n){e.exports=n(154)},function(e,t,n){var r=n(84),i="object"==typeof self&&self&&self.Object===Object&&self,a=r||i||Function("return this")();e.exports=a},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e){for(var t=1,n=arguments.length;t<n;t++){var r=arguments[t]||{};for(var i in r)if(r.hasOwnProperty(i)){var a=r[i];void 0!==a&&(e[i]=a)}}return e}},,function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},,,,function(e,t,n){"use strict";t.__esModule=!0,t.PopupManager=void 0;var r=l(n(1)),i=l(n(10)),a=l(n(130)),o=l(n(47)),s=n(6);function l(e){return e&&e.__esModule?e:{default:e}}var d=1,u=void 0;t.default={props:{visible:{type:Boolean,default:!1},openDelay:{},closeDelay:{},zIndex:{},modal:{type:Boolean,default:!1},modalFade:{type:Boolean,default:!0},modalClass:{},modalAppendToBody:{type:Boolean,default:!1},lockScroll:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!1},closeOnClickModal:{type:Boolean,default:!1}},beforeMount:function(){this._popupId="popup-"+d++,a.default.register(this._popupId,this)},beforeDestroy:function(){a.default.deregister(this._popupId),a.default.closeModal(this._popupId),this.restoreBodyStyle()},data:function(){return{opened:!1,bodyPaddingRight:null,computedBodyPaddingRight:0,withoutHiddenClass:!0,rendered:!1}},watch:{visible:function(e){var t=this;if(e){if(this._opening)return;this.rendered?this.open():(this.rendered=!0,r.default.nextTick((function(){t.open()})))}else this.close()}},methods:{open:function(e){var t=this;this.rendered||(this.rendered=!0);var n=(0,i.default)({},this.$props||this,e);this._closeTimer&&(clearTimeout(this._closeTimer),this._closeTimer=null),clearTimeout(this._openTimer);var r=Number(n.openDelay);r>0?this._openTimer=setTimeout((function(){t._openTimer=null,t.doOpen(n)}),r):this.doOpen(n)},doOpen:function(e){if(!this.$isServer&&(!this.willOpen||this.willOpen())&&!this.opened){this._opening=!0;var t=this.$el,n=e.modal,r=e.zIndex;if(r&&(a.default.zIndex=r),n&&(this._closing&&(a.default.closeModal(this._popupId),this._closing=!1),a.default.openModal(this._popupId,a.default.nextZIndex(),this.modalAppendToBody?void 0:t,e.modalClass,e.modalFade),e.lockScroll)){this.withoutHiddenClass=!(0,s.hasClass)(document.body,"el-popup-parent--hidden"),this.withoutHiddenClass&&(this.bodyPaddingRight=document.body.style.paddingRight,this.computedBodyPaddingRight=parseInt((0,s.getStyle)(document.body,"paddingRight"),10)),u=(0,o.default)();var i=document.documentElement.clientHeight<document.body.scrollHeight,l=(0,s.getStyle)(document.body,"overflowY");u>0&&(i||"scroll"===l)&&this.withoutHiddenClass&&(document.body.style.paddingRight=this.computedBodyPaddingRight+u+"px"),(0,s.addClass)(document.body,"el-popup-parent--hidden")}"static"===getComputedStyle(t).position&&(t.style.position="absolute"),t.style.zIndex=a.default.nextZIndex(),this.opened=!0,this.onOpen&&this.onOpen(),this.doAfterOpen()}},doAfterOpen:function(){this._opening=!1},close:function(){var e=this;if(!this.willClose||this.willClose()){null!==this._openTimer&&(clearTimeout(this._openTimer),this._openTimer=null),clearTimeout(this._closeTimer);var t=Number(this.closeDelay);t>0?this._closeTimer=setTimeout((function(){e._closeTimer=null,e.doClose()}),t):this.doClose()}},doClose:function(){this._closing=!0,this.onClose&&this.onClose(),this.lockScroll&&setTimeout(this.restoreBodyStyle,200),this.opened=!1,this.doAfterClose()},doAfterClose:function(){a.default.closeModal(this._popupId),this._closing=!1},restoreBodyStyle:function(){this.modal&&this.withoutHiddenClass&&(document.body.style.paddingRight=this.bodyPaddingRight,(0,s.removeClass)(document.body,"el-popup-parent--hidden")),this.withoutHiddenClass=!0}}},t.PopupManager=a.default},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=76)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},11:function(e,t){e.exports=n(28)},21:function(e,t){e.exports=n(57)},4:function(e,t){e.exports=n(3)},76:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["textarea"===e.type?"el-textarea":"el-input",e.inputSize?"el-input--"+e.inputSize:"",{"is-disabled":e.inputDisabled,"is-exceed":e.inputExceed,"el-input-group":e.$slots.prepend||e.$slots.append,"el-input-group--append":e.$slots.append,"el-input-group--prepend":e.$slots.prepend,"el-input--prefix":e.$slots.prefix||e.prefixIcon,"el-input--suffix":e.$slots.suffix||e.suffixIcon||e.clearable||e.showPassword}],on:{mouseenter:function(t){e.hovering=!0},mouseleave:function(t){e.hovering=!1}}},["textarea"!==e.type?[e.$slots.prepend?n("div",{staticClass:"el-input-group__prepend"},[e._t("prepend")],2):e._e(),"textarea"!==e.type?n("input",e._b({ref:"input",staticClass:"el-input__inner",attrs:{tabindex:e.tabindex,type:e.showPassword?e.passwordVisible?"text":"password":e.type,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,"aria-label":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},"input",e.$attrs,!1)):e._e(),e.$slots.prefix||e.prefixIcon?n("span",{staticClass:"el-input__prefix"},[e._t("prefix"),e.prefixIcon?n("i",{staticClass:"el-input__icon",class:e.prefixIcon}):e._e()],2):e._e(),e.getSuffixVisible()?n("span",{staticClass:"el-input__suffix"},[n("span",{staticClass:"el-input__suffix-inner"},[e.showClear&&e.showPwdVisible&&e.isWordLimitVisible?e._e():[e._t("suffix"),e.suffixIcon?n("i",{staticClass:"el-input__icon",class:e.suffixIcon}):e._e()],e.showClear?n("i",{staticClass:"el-input__icon el-icon-circle-close el-input__clear",on:{mousedown:function(e){e.preventDefault()},click:e.clear}}):e._e(),e.showPwdVisible?n("i",{staticClass:"el-input__icon el-icon-view el-input__clear",on:{click:e.handlePasswordVisible}}):e._e(),e.isWordLimitVisible?n("span",{staticClass:"el-input__count"},[n("span",{staticClass:"el-input__count-inner"},[e._v("\n "+e._s(e.textLength)+"/"+e._s(e.upperLimit)+"\n ")])]):e._e()],2),e.validateState?n("i",{staticClass:"el-input__icon",class:["el-input__validateIcon",e.validateIcon]}):e._e()]):e._e(),e.$slots.append?n("div",{staticClass:"el-input-group__append"},[e._t("append")],2):e._e()]:n("textarea",e._b({ref:"textarea",staticClass:"el-textarea__inner",style:e.textareaStyle,attrs:{tabindex:e.tabindex,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,"aria-label":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},"textarea",e.$attrs,!1)),e.isWordLimitVisible&&"textarea"===e.type?n("span",{staticClass:"el-input__count"},[e._v(e._s(e.textLength)+"/"+e._s(e.upperLimit))]):e._e()],2)};r._withStripped=!0;var i=n(4),a=n.n(i),o=n(11),s=n.n(o),l=void 0,d="\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important\n",u=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"];function c(e){var t=window.getComputedStyle(e),n=t.getPropertyValue("box-sizing"),r=parseFloat(t.getPropertyValue("padding-bottom"))+parseFloat(t.getPropertyValue("padding-top")),i=parseFloat(t.getPropertyValue("border-bottom-width"))+parseFloat(t.getPropertyValue("border-top-width"));return{contextStyle:u.map((function(e){return e+":"+t.getPropertyValue(e)})).join(";"),paddingSize:r,borderSize:i,boxSizing:n}}function h(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;l||(l=document.createElement("textarea"),document.body.appendChild(l));var r=c(e),i=r.paddingSize,a=r.borderSize,o=r.boxSizing,s=r.contextStyle;l.setAttribute("style",s+";"+d),l.value=e.value||e.placeholder||"";var u=l.scrollHeight,h={};"border-box"===o?u+=a:"content-box"===o&&(u-=i),l.value="";var f=l.scrollHeight-i;if(null!==t){var m=f*t;"border-box"===o&&(m=m+i+a),u=Math.max(m,u),h.minHeight=m+"px"}if(null!==n){var p=f*n;"border-box"===o&&(p=p+i+a),u=Math.min(p,u)}return h.height=u+"px",l.parentNode&&l.parentNode.removeChild(l),l=null,h}var f=n(9),m=n.n(f),p=n(21),_={name:"ElInput",componentName:"ElInput",mixins:[a.a,s.a],inheritAttrs:!1,inject:{elForm:{default:""},elFormItem:{default:""}},data:function(){return{textareaCalcStyle:{},hovering:!1,focused:!1,isComposing:!1,passwordVisible:!1}},props:{value:[String,Number],size:String,resize:String,form:String,disabled:Boolean,readonly:Boolean,type:{type:String,default:"text"},autosize:{type:[Boolean,Object],default:!1},autocomplete:{type:String,default:"off"},autoComplete:{type:String,validator:function(e){return!0}},validateEvent:{type:Boolean,default:!0},suffixIcon:String,prefixIcon:String,label:String,clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},tabindex:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},validateState:function(){return this.elFormItem?this.elFormItem.validateState:""},needStatusIcon:function(){return!!this.elForm&&this.elForm.statusIcon},validateIcon:function(){return{validating:"el-icon-loading",success:"el-icon-circle-check",error:"el-icon-circle-close"}[this.validateState]},textareaStyle:function(){return m()({},this.textareaCalcStyle,{resize:this.resize})},inputSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputDisabled:function(){return this.disabled||(this.elForm||{}).disabled},nativeInputValue:function(){return null===this.value||void 0===this.value?"":String(this.value)},showClear:function(){return this.clearable&&!this.inputDisabled&&!this.readonly&&this.nativeInputValue&&(this.focused||this.hovering)},showPwdVisible:function(){return this.showPassword&&!this.inputDisabled&&!this.readonly&&(!!this.nativeInputValue||this.focused)},isWordLimitVisible:function(){return this.showWordLimit&&this.$attrs.maxlength&&("text"===this.type||"textarea"===this.type)&&!this.inputDisabled&&!this.readonly&&!this.showPassword},upperLimit:function(){return this.$attrs.maxlength},textLength:function(){return"number"==typeof this.value?String(this.value).length:(this.value||"").length},inputExceed:function(){return this.isWordLimitVisible&&this.textLength>this.upperLimit}},watch:{value:function(e){this.$nextTick(this.resizeTextarea),this.validateEvent&&this.dispatch("ElFormItem","el.form.change",[e])},nativeInputValue:function(){this.setNativeInputValue()},type:function(){var e=this;this.$nextTick((function(){e.setNativeInputValue(),e.resizeTextarea(),e.updateIconOffset()}))}},methods:{focus:function(){this.getInput().focus()},blur:function(){this.getInput().blur()},getMigratingConfig:function(){return{props:{icon:"icon is removed, use suffix-icon / prefix-icon instead.","on-icon-click":"on-icon-click is removed."},events:{click:"click is removed."}}},handleBlur:function(e){this.focused=!1,this.$emit("blur",e),this.validateEvent&&this.dispatch("ElFormItem","el.form.blur",[this.value])},select:function(){this.getInput().select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize;if("textarea"===this.type)if(e){var t=e.minRows,n=e.maxRows;this.textareaCalcStyle=h(this.$refs.textarea,t,n)}else this.textareaCalcStyle={minHeight:h(this.$refs.textarea).minHeight}}},setNativeInputValue:function(){var e=this.getInput();e&&e.value!==this.nativeInputValue&&(e.value=this.nativeInputValue)},handleFocus:function(e){this.focused=!0,this.$emit("focus",e)},handleCompositionStart:function(){this.isComposing=!0},handleCompositionUpdate:function(e){var t=e.target.value,n=t[t.length-1]||"";this.isComposing=!Object(p.isKorean)(n)},handleCompositionEnd:function(e){this.isComposing&&(this.isComposing=!1,this.handleInput(e))},handleInput:function(e){this.isComposing||e.target.value!==this.nativeInputValue&&(this.$emit("input",e.target.value),this.$nextTick(this.setNativeInputValue))},handleChange:function(e){this.$emit("change",e.target.value)},calcIconOffset:function(e){var t=[].slice.call(this.$el.querySelectorAll(".el-input__"+e)||[]);if(t.length){for(var n=null,r=0;r<t.length;r++)if(t[r].parentNode===this.$el){n=t[r];break}if(n){var i={suffix:"append",prefix:"prepend"}[e];this.$slots[i]?n.style.transform="translateX("+("suffix"===e?"-":"")+this.$el.querySelector(".el-input-group__"+i).offsetWidth+"px)":n.removeAttribute("style")}}},updateIconOffset:function(){this.calcIconOffset("prefix"),this.calcIconOffset("suffix")},clear:function(){this.$emit("input",""),this.$emit("change",""),this.$emit("clear")},handlePasswordVisible:function(){this.passwordVisible=!this.passwordVisible,this.focus()},getInput:function(){return this.$refs.input||this.$refs.textarea},getSuffixVisible:function(){return this.$slots.suffix||this.suffixIcon||this.showClear||this.showPassword||this.isWordLimitVisible||this.validateState&&this.needStatusIcon}},created:function(){this.$on("inputSelect",this.select)},mounted:function(){this.setNativeInputValue(),this.resizeTextarea(),this.updateIconOffset()},updated:function(){this.$nextTick(this.updateIconOffset)}},g=n(0),y=Object(g.a)(_,r,[],!1,null,null,null);y.options.__file="packages/input/src/input.vue";var v=y.exports;v.install=function(e){e.component(v.name,v)};t.default=v},9:function(e,t){e.exports=n(10)}})},,,,,function(e,t,n){var r=n(35),i=n(160),a=n(161),o=r?r.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":o&&o in Object(e)?i(e):a(e)}},function(e,t,n){var r=n(102),i=n(55);e.exports=function(e){return null!=e&&i(e.length)&&!r(e)}},function(e,t,n){"use strict";t.__esModule=!0;var r,i=n(1),a=(r=i)&&r.__esModule?r:{default:r},o=n(17);var s=a.default.prototype.$isServer?function(){}:n(131),l=function(e){return e.stopPropagation()};t.default={props:{transformOrigin:{type:[Boolean,String],default:!0},placement:{type:String,default:"bottom"},boundariesPadding:{type:Number,default:5},reference:{},popper:{},offset:{default:0},value:Boolean,visibleArrow:Boolean,arrowOffset:{type:Number,default:35},appendToBody:{type:Boolean,default:!0},popperOptions:{type:Object,default:function(){return{gpuAcceleration:!1}}}},data:function(){return{showPopper:!1,currentPlacement:""}},watch:{value:{immediate:!0,handler:function(e){this.showPopper=e,this.$emit("input",e)}},showPopper:function(e){this.disabled||(e?this.updatePopper():this.destroyPopper(),this.$emit("input",e))}},methods:{createPopper:function(){var e=this;if(!this.$isServer&&(this.currentPlacement=this.currentPlacement||this.placement,/^(top|bottom|left|right)(-start|-end)?$/g.test(this.currentPlacement))){var t=this.popperOptions,n=this.popperElm=this.popperElm||this.popper||this.$refs.popper,r=this.referenceElm=this.referenceElm||this.reference||this.$refs.reference;!r&&this.$slots.reference&&this.$slots.reference[0]&&(r=this.referenceElm=this.$slots.reference[0].elm),n&&r&&(this.visibleArrow&&this.appendArrow(n),this.appendToBody&&document.body.appendChild(this.popperElm),this.popperJS&&this.popperJS.destroy&&this.popperJS.destroy(),t.placement=this.currentPlacement,t.offset=this.offset,t.arrowOffset=this.arrowOffset,this.popperJS=new s(r,n,t),this.popperJS.onCreate((function(t){e.$emit("created",e),e.resetTransformOrigin(),e.$nextTick(e.updatePopper)})),"function"==typeof t.onUpdate&&this.popperJS.onUpdate(t.onUpdate),this.popperJS._popper.style.zIndex=o.PopupManager.nextZIndex(),this.popperElm.addEventListener("click",l))}},updatePopper:function(){var e=this.popperJS;e?(e.update(),e._popper&&(e._popper.style.zIndex=o.PopupManager.nextZIndex())):this.createPopper()},doDestroy:function(e){!this.popperJS||this.showPopper&&!e||(this.popperJS.destroy(),this.popperJS=null)},destroyPopper:function(){this.popperJS&&this.resetTransformOrigin()},resetTransformOrigin:function(){if(this.transformOrigin){var e=this.popperJS._popper.getAttribute("x-placement").split("-")[0],t={top:"bottom",bottom:"top",left:"right",right:"left"}[e];this.popperJS._popper.style.transformOrigin="string"==typeof this.transformOrigin?this.transformOrigin:["top","bottom"].indexOf(e)>-1?"center "+t:t+" center"}},appendArrow:function(e){var t=void 0;if(!this.appended){for(var n in this.appended=!0,e.attributes)if(/^_v-/.test(e.attributes[n].name)){t=e.attributes[n].name;break}var r=document.createElement("div");t&&r.setAttribute(t,""),r.setAttribute("x-arrow",""),r.className="popper__arrow",e.appendChild(r)}}},beforeDestroy:function(){this.doDestroy(!0),this.popperElm&&this.popperElm.parentNode===document.body&&(this.popperElm.removeEventListener("click",l),document.body.removeChild(this.popperElm))},deactivated:function(){this.$options.beforeDestroy[0].call(this)}}},,function(e,t,n){"use strict";t.__esModule=!0;n(4);t.default={mounted:function(){},methods:{getMigratingConfig:function(){return{props:{},events:{}}}}}},,,,function(e,t,n){var r=n(114),i=n(101),a=n(25);e.exports=function(e){return a(e)?r(e):i(e)}},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=97)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},97:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("button",{staticClass:"el-button",class:[e.type?"el-button--"+e.type:"",e.buttonSize?"el-button--"+e.buttonSize:"",{"is-disabled":e.buttonDisabled,"is-loading":e.loading,"is-plain":e.plain,"is-round":e.round,"is-circle":e.circle}],attrs:{disabled:e.buttonDisabled||e.loading,autofocus:e.autofocus,type:e.nativeType},on:{click:e.handleClick}},[e.loading?n("i",{staticClass:"el-icon-loading"}):e._e(),e.icon&&!e.loading?n("i",{class:e.icon}):e._e(),e.$slots.default?n("span",[e._t("default")],2):e._e()])};r._withStripped=!0;var i={name:"ElButton",inject:{elForm:{default:""},elFormItem:{default:""}},props:{type:{type:String,default:"default"},size:String,icon:{type:String,default:""},nativeType:{type:String,default:"button"},loading:Boolean,disabled:Boolean,plain:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},buttonSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},buttonDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},methods:{handleClick:function(e){this.$emit("click",e)}}},a=n(0),o=Object(a.a)(i,r,[],!1,null,null,null);o.options.__file="packages/button/src/button.vue";var s=o.exports;s.install=function(e){e.component(s.name,s)};t.default=s}})},function(e,t,n){var r=n(83);e.exports=function(e,t,n){return void 0===n?r(e,t,!1):r(e,n,!1!==t)}},function(e,t,n){var r=n(9).Symbol;e.exports=r},function(e,t,n){"use strict";t.__esModule=!0,t.i18n=t.use=t.t=void 0;var r=o(n(132)),i=o(n(1)),a=o(n(133));function o(e){return e&&e.__esModule?e:{default:e}}var s=(0,o(n(134)).default)(i.default),l=r.default,d=!1,u=function(){var e=Object.getPrototypeOf(this||i.default).$t;if("function"==typeof e&&i.default.locale)return d||(d=!0,i.default.locale(i.default.config.lang,(0,a.default)(l,i.default.locale(i.default.config.lang)||{},{clone:!0}))),e.apply(this,arguments)},c=t.t=function(e,t){var n=u.apply(this,arguments);if(null!=n)return n;for(var r=e.split("."),i=l,a=0,o=r.length;a<o;a++){var d=r[a];if(n=i[d],a===o-1)return s(n,t);if(!n)return"";i=n}return""},h=t.use=function(e){l=e||l},f=t.i18n=function(e){u=e||u};t.default={use:h,t:c,i18n:f}},function(e,t,n){"use strict";t.__esModule=!0;var r=n(36);t.default={methods:{t:function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return r.t.apply(this,t)}}}},function(e,t,n){"use strict";t.__esModule=!0,t.removeResizeListener=t.addResizeListener=void 0;var r,i=n(135),a=(r=i)&&r.__esModule?r:{default:r};var o="undefined"==typeof window,s=function(e){var t=e,n=Array.isArray(t),r=0;for(t=n?t:t[Symbol.iterator]();;){var i;if(n){if(r>=t.length)break;i=t[r++]}else{if((r=t.next()).done)break;i=r.value}var a=i.target.__resizeListeners__||[];a.length&&a.forEach((function(e){e()}))}};t.addResizeListener=function(e,t){o||(e.__resizeListeners__||(e.__resizeListeners__=[],e.__ro__=new a.default(s),e.__ro__.observe(e)),e.__resizeListeners__.push(t))},t.removeResizeListener=function(e,t){e&&e.__resizeListeners__&&(e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(t),1),e.__resizeListeners__.length||e.__ro__.disconnect())}},function(e,t,n){"use strict";t.__esModule=!0;var r,i=n(1),a=(r=i)&&r.__esModule?r:{default:r},o=n(6);var s=[],l="@@clickoutsideContext",d=void 0,u=0;function c(e,t,n){return function(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!(n&&n.context&&r.target&&i.target)||e.contains(r.target)||e.contains(i.target)||e===r.target||n.context.popperElm&&(n.context.popperElm.contains(r.target)||n.context.popperElm.contains(i.target))||(t.expression&&e[l].methodName&&n.context[e[l].methodName]?n.context[e[l].methodName]():e[l].bindingFn&&e[l].bindingFn())}}!a.default.prototype.$isServer&&(0,o.on)(document,"mousedown",(function(e){return d=e})),!a.default.prototype.$isServer&&(0,o.on)(document,"mouseup",(function(e){s.forEach((function(t){return t[l].documentHandler(e,d)}))})),t.default={bind:function(e,t,n){s.push(e);var r=u++;e[l]={id:r,documentHandler:c(e,t,n),methodName:t.expression,bindingFn:t.value}},update:function(e,t,n){e[l].documentHandler=c(e,t,n),e[l].methodName=t.expression,e[l].bindingFn=t.value},unbind:function(e){for(var t=s.length,n=0;n<t;n++)if(s[n][l].id===e[l].id){s.splice(n,1);break}delete e[l]}}},,,,,,,,function(e,t,n){"use strict";t.__esModule=!0,t.default=function(){if(a.default.prototype.$isServer)return 0;if(void 0!==o)return o;var e=document.createElement("div");e.className="el-scrollbar__wrap",e.style.visibility="hidden",e.style.width="100px",e.style.position="absolute",e.style.top="-9999px",document.body.appendChild(e);var t=e.offsetWidth;e.style.overflow="scroll";var n=document.createElement("div");n.style.width="100%",e.appendChild(n);var r=n.offsetWidth;return e.parentNode.removeChild(e),o=t-r};var r,i=n(1),a=(r=i)&&r.__esModule?r:{default:r};var o=void 0},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=61)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},10:function(e,t){e.exports=n(19)},12:function(e,t){e.exports=n(39)},14:function(e,t){e.exports=n(73)},16:function(e,t){e.exports=n(38)},17:function(e,t){e.exports=n(34)},21:function(e,t){e.exports=n(57)},22:function(e,t){e.exports=n(58)},3:function(e,t){e.exports=n(4)},31:function(e,t){e.exports=n(136)},33:function(e,t,n){"use strict";var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-select-dropdown__item",class:{selected:e.itemSelected,"is-disabled":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t("default",[n("span",[e._v(e._s(e.currentLabel))])])],2)};r._withStripped=!0;var i=n(4),a=n.n(i),o=n(3),s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l={mixins:[a.a],name:"ElOption",componentName:"ElOption",inject:["select"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return"[object object]"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?"":this.value)},currentValue:function(){return this.value||this.label||""},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch("ElSelect","setSelected")},value:function(e,t){var n=this.select,r=n.remote,i=n.valueKey;if(!this.created&&!r){if(i&&"object"===(void 0===e?"undefined":s(e))&&"object"===(void 0===t?"undefined":s(t))&&e[i]===t[i])return;this.dispatch("ElSelect","setSelected")}}},methods:{isEqual:function(e,t){if(this.isObject){var n=this.select.valueKey;return Object(o.getValueByPath)(e,n)===Object(o.getValueByPath)(t,n)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var n=this.select.valueKey;return e&&e.some((function(e){return Object(o.getValueByPath)(e,n)===Object(o.getValueByPath)(t,n)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch("ElSelect","handleOptionClick",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(o.escapeRegexpString)(e),"i").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on("queryChange",this.queryChange),this.$on("handleGroupDisabled",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,n=e.multiple?t:[t],r=this.select.cachedOptions.indexOf(this),i=n.indexOf(this);r>-1&&i<0&&this.select.cachedOptions.splice(r,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},d=n(0),u=Object(d.a)(l,r,[],!1,null,null,null);u.options.__file="packages/select/src/option.vue";t.a=u.exports},37:function(e,t){e.exports=n(98)},4:function(e,t){e.exports=n(3)},5:function(e,t){e.exports=n(26)},6:function(e,t){e.exports=n(37)},61:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleClose,expression:"handleClose"}],staticClass:"el-select",class:[e.selectSize?"el-select--"+e.selectSize:""],on:{click:function(t){return t.stopPropagation(),e.toggleMenu(t)}}},[e.multiple?n("div",{ref:"tags",staticClass:"el-select__tags",style:{"max-width":e.inputWidth-32+"px",width:"100%"}},[e.collapseTags&&e.selected.length?n("span",[n("el-tag",{attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:e.selected[0].hitState,type:"info","disable-transitions":""},on:{close:function(t){e.deleteTag(t,e.selected[0])}}},[n("span",{staticClass:"el-select__tags-text"},[e._v(e._s(e.selected[0].currentLabel))])]),e.selected.length>1?n("el-tag",{attrs:{closable:!1,size:e.collapseTagSize,type:"info","disable-transitions":""}},[n("span",{staticClass:"el-select__tags-text"},[e._v("+ "+e._s(e.selected.length-1))])]):e._e()],1):e._e(),e.collapseTags?e._e():n("transition-group",{on:{"after-leave":e.resetInputHeight}},e._l(e.selected,(function(t){return n("el-tag",{key:e.getValueKey(t),attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:t.hitState,type:"info","disable-transitions":""},on:{close:function(n){e.deleteTag(n,t)}}},[n("span",{staticClass:"el-select__tags-text"},[e._v(e._s(t.currentLabel))])])})),1),e.filterable?n("input",{directives:[{name:"model",rawName:"v-model",value:e.query,expression:"query"}],ref:"input",staticClass:"el-select__input",class:[e.selectSize?"is-"+e.selectSize:""],style:{"flex-grow":"1",width:e.inputLength/(e.inputWidth-32)+"%","max-width":e.inputWidth-42+"px"},attrs:{type:"text",disabled:e.selectDisabled,autocomplete:e.autoComplete||e.autocomplete},domProps:{value:e.query},on:{focus:e.handleFocus,blur:function(t){e.softFocus=!1},keyup:e.managePlaceholder,keydown:[e.resetInputState,function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.preventDefault(),e.navigateOptions("next")},function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.preventDefault(),e.navigateOptions("prev")},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!("button"in t)&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){return!("button"in t)&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.deletePrevTag(t)},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab"))return null;e.visible=!1}],compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition,input:[function(t){t.target.composing||(e.query=t.target.value)},e.debouncedQueryChange]}}):e._e()],1):e._e(),n("el-input",{ref:"reference",class:{"is-focus":e.visible},attrs:{type:"text",placeholder:e.currentPlaceholder,name:e.name,id:e.id,autocomplete:e.autoComplete||e.autocomplete,size:e.selectSize,disabled:e.selectDisabled,readonly:e.readonly,"validate-event":!1,tabindex:e.multiple&&e.filterable?"-1":null},on:{focus:e.handleFocus,blur:e.handleBlur},nativeOn:{keyup:function(t){return e.debouncedOnInputChange(t)},keydown:[function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.stopPropagation(),t.preventDefault(),e.navigateOptions("next")},function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.stopPropagation(),t.preventDefault(),e.navigateOptions("prev")},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!("button"in t)&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab"))return null;e.visible=!1}],paste:function(t){return e.debouncedOnInputChange(t)},mouseenter:function(t){e.inputHovering=!0},mouseleave:function(t){e.inputHovering=!1}},model:{value:e.selectedLabel,callback:function(t){e.selectedLabel=t},expression:"selectedLabel"}},[e.$slots.prefix?n("template",{slot:"prefix"},[e._t("prefix")],2):e._e(),n("template",{slot:"suffix"},[n("i",{directives:[{name:"show",rawName:"v-show",value:!e.showClose,expression:"!showClose"}],class:["el-select__caret","el-input__icon","el-icon-"+e.iconClass]}),e.showClose?n("i",{staticClass:"el-select__caret el-input__icon el-icon-circle-close",on:{click:e.handleClearClick}}):e._e()])],2),n("transition",{attrs:{name:"el-zoom-in-top"},on:{"before-enter":e.handleMenuEnter,"after-leave":e.doDestroy}},[n("el-select-menu",{directives:[{name:"show",rawName:"v-show",value:e.visible&&!1!==e.emptyText,expression:"visible && emptyText !== false"}],ref:"popper",attrs:{"append-to-body":e.popperAppendToBody}},[n("el-scrollbar",{directives:[{name:"show",rawName:"v-show",value:e.options.length>0&&!e.loading,expression:"options.length > 0 && !loading"}],ref:"scrollbar",class:{"is-empty":!e.allowCreate&&e.query&&0===e.filteredOptionsCount},attrs:{tag:"ul","wrap-class":"el-select-dropdown__wrap","view-class":"el-select-dropdown__list"}},[e.showNewOption?n("el-option",{attrs:{value:e.query,created:""}}):e._e(),e._t("default")],2),e.emptyText&&(!e.allowCreate||e.loading||e.allowCreate&&0===e.options.length)?[e.$slots.empty?e._t("empty"):n("p",{staticClass:"el-select-dropdown__empty"},[e._v("\n "+e._s(e.emptyText)+"\n ")])]:e._e()],2)],1)],1)};r._withStripped=!0;var i=n(4),a=n.n(i),o=n(22),s=n.n(o),l=n(6),d=n.n(l),u=n(10),c=n.n(u),h=function(){var e=this.$createElement;return(this._self._c||e)("div",{staticClass:"el-select-dropdown el-popper",class:[{"is-multiple":this.$parent.multiple},this.popperClass],style:{minWidth:this.minWidth}},[this._t("default")],2)};h._withStripped=!0;var f=n(5),m={name:"ElSelectDropdown",componentName:"ElSelectDropdown",mixins:[n.n(f).a],props:{placement:{default:"bottom-start"},boundariesPadding:{default:0},popperOptions:{default:function(){return{gpuAcceleration:!1}}},visibleArrow:{default:!0},appendToBody:{type:Boolean,default:!0}},data:function(){return{minWidth:""}},computed:{popperClass:function(){return this.$parent.popperClass}},watch:{"$parent.inputWidth":function(){this.minWidth=this.$parent.$el.getBoundingClientRect().width+"px"}},mounted:function(){var e=this;this.referenceElm=this.$parent.$refs.reference.$el,this.$parent.popperElm=this.popperElm=this.$el,this.$on("updatePopper",(function(){e.$parent.visible&&e.updatePopper()})),this.$on("destroyPopper",this.destroyPopper)}},p=n(0),_=Object(p.a)(m,h,[],!1,null,null,null);_.options.__file="packages/select/src/select-dropdown.vue";var g=_.exports,y=n(33),v=n(37),b=n.n(v),M=n(14),L=n.n(M),x=n(17),w=n.n(x),k=n(12),Y=n.n(k),S=n(16),D=n(31),T=n.n(D),C=n(3),O=n(21),j={mixins:[a.a,d.a,s()("reference"),{data:function(){return{hoverOption:-1}},computed:{optionsAllDisabled:function(){return this.options.filter((function(e){return e.visible})).every((function(e){return e.disabled}))}},watch:{hoverIndex:function(e){var t=this;"number"==typeof e&&e>-1&&(this.hoverOption=this.options[e]||{}),this.options.forEach((function(e){e.hover=t.hoverOption===e}))}},methods:{navigateOptions:function(e){var t=this;if(this.visible){if(0!==this.options.length&&0!==this.filteredOptionsCount&&!this.optionsAllDisabled){"next"===e?(this.hoverIndex++,this.hoverIndex===this.options.length&&(this.hoverIndex=0)):"prev"===e&&(this.hoverIndex--,this.hoverIndex<0&&(this.hoverIndex=this.options.length-1));var n=this.options[this.hoverIndex];!0!==n.disabled&&!0!==n.groupDisabled&&n.visible||this.navigateOptions(e),this.$nextTick((function(){return t.scrollToOption(t.hoverOption)}))}}else this.visible=!0}}}],name:"ElSelect",componentName:"ElSelect",inject:{elForm:{default:""},elFormItem:{default:""}},provide:function(){return{select:this}},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},readonly:function(){return!this.filterable||this.multiple||!Object(C.isIE)()&&!Object(C.isEdge)()&&!this.visible},showClose:function(){var e=this.multiple?Array.isArray(this.value)&&this.value.length>0:void 0!==this.value&&null!==this.value&&""!==this.value;return this.clearable&&!this.selectDisabled&&this.inputHovering&&e},iconClass:function(){return this.remote&&this.filterable?"":this.visible?"arrow-up is-reverse":"arrow-up"},debounce:function(){return this.remote?300:0},emptyText:function(){return this.loading?this.loadingText||this.t("el.select.loading"):(!this.remote||""!==this.query||0!==this.options.length)&&(this.filterable&&this.query&&this.options.length>0&&0===this.filteredOptionsCount?this.noMatchText||this.t("el.select.noMatch"):0===this.options.length?this.noDataText||this.t("el.select.noData"):null)},showNewOption:function(){var e=this,t=this.options.filter((function(e){return!e.created})).some((function(t){return t.currentLabel===e.query}));return this.filterable&&this.allowCreate&&""!==this.query&&!t},selectSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},selectDisabled:function(){return this.disabled||(this.elForm||{}).disabled},collapseTagSize:function(){return["small","mini"].indexOf(this.selectSize)>-1?"mini":"small"},propPlaceholder:function(){return void 0!==this.placeholder?this.placeholder:this.t("el.select.placeholder")}},components:{ElInput:c.a,ElSelectMenu:g,ElOption:y.a,ElTag:b.a,ElScrollbar:L.a},directives:{Clickoutside:Y.a},props:{name:String,id:String,value:{required:!0},autocomplete:{type:String,default:"off"},autoComplete:{type:String,validator:function(e){return!0}},automaticDropdown:Boolean,size:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:String,remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String,required:!1},defaultFirstOption:Boolean,reserveKeyword:Boolean,valueKey:{type:String,default:"value"},collapseTags:Boolean,popperAppendToBody:{type:Boolean,default:!0}},data:function(){return{options:[],cachedOptions:[],createdLabel:null,createdSelected:!1,selected:this.multiple?[]:{},inputLength:20,inputWidth:0,initialInputHeight:0,cachedPlaceHolder:"",optionsCount:0,filteredOptionsCount:0,visible:!1,softFocus:!1,selectedLabel:"",hoverIndex:-1,query:"",previousQuery:null,inputHovering:!1,currentPlaceholder:"",menuVisibleOnFocus:!1,isOnComposition:!1,isSilentBlur:!1}},watch:{selectDisabled:function(){var e=this;this.$nextTick((function(){e.resetInputHeight()}))},propPlaceholder:function(e){this.cachedPlaceHolder=this.currentPlaceholder=e},value:function(e,t){this.multiple&&(this.resetInputHeight(),e&&e.length>0||this.$refs.input&&""!==this.query?this.currentPlaceholder="":this.currentPlaceholder=this.cachedPlaceHolder,this.filterable&&!this.reserveKeyword&&(this.query="",this.handleQueryChange(this.query))),this.setSelected(),this.filterable&&!this.multiple&&(this.inputLength=20),Object(C.valueEquals)(e,t)||this.dispatch("ElFormItem","el.form.change",e)},visible:function(e){var t=this;e?(this.broadcast("ElSelectDropdown","updatePopper"),this.filterable&&(this.query=this.remote?"":this.selectedLabel,this.handleQueryChange(this.query),this.multiple?this.$refs.input.focus():(this.remote||(this.broadcast("ElOption","queryChange",""),this.broadcast("ElOptionGroup","queryChange")),this.selectedLabel&&(this.currentPlaceholder=this.selectedLabel,this.selectedLabel="")))):(this.broadcast("ElSelectDropdown","destroyPopper"),this.$refs.input&&this.$refs.input.blur(),this.query="",this.previousQuery=null,this.selectedLabel="",this.inputLength=20,this.menuVisibleOnFocus=!1,this.resetHoverIndex(),this.$nextTick((function(){t.$refs.input&&""===t.$refs.input.value&&0===t.selected.length&&(t.currentPlaceholder=t.cachedPlaceHolder)})),this.multiple||(this.selected&&(this.filterable&&this.allowCreate&&this.createdSelected&&this.createdLabel?this.selectedLabel=this.createdLabel:this.selectedLabel=this.selected.currentLabel,this.filterable&&(this.query=this.selectedLabel)),this.filterable&&(this.currentPlaceholder=this.cachedPlaceHolder))),this.$emit("visible-change",e)},options:function(){var e=this;if(!this.$isServer){this.$nextTick((function(){e.broadcast("ElSelectDropdown","updatePopper")})),this.multiple&&this.resetInputHeight();var t=this.$el.querySelectorAll("input");-1===[].indexOf.call(t,document.activeElement)&&this.setSelected(),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()}}},methods:{handleComposition:function(e){var t=this,n=e.target.value;if("compositionend"===e.type)this.isOnComposition=!1,this.$nextTick((function(e){return t.handleQueryChange(n)}));else{var r=n[n.length-1]||"";this.isOnComposition=!Object(O.isKorean)(r)}},handleQueryChange:function(e){var t=this;this.previousQuery===e||this.isOnComposition||(null!==this.previousQuery||"function"!=typeof this.filterMethod&&"function"!=typeof this.remoteMethod?(this.previousQuery=e,this.$nextTick((function(){t.visible&&t.broadcast("ElSelectDropdown","updatePopper")})),this.hoverIndex=-1,this.multiple&&this.filterable&&this.$nextTick((function(){var e=15*t.$refs.input.value.length+20;t.inputLength=t.collapseTags?Math.min(50,e):e,t.managePlaceholder(),t.resetInputHeight()})),this.remote&&"function"==typeof this.remoteMethod?(this.hoverIndex=-1,this.remoteMethod(e)):"function"==typeof this.filterMethod?(this.filterMethod(e),this.broadcast("ElOptionGroup","queryChange")):(this.filteredOptionsCount=this.optionsCount,this.broadcast("ElOption","queryChange",e),this.broadcast("ElOptionGroup","queryChange")),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()):this.previousQuery=e)},scrollToOption:function(e){var t=Array.isArray(e)&&e[0]?e[0].$el:e.$el;if(this.$refs.popper&&t){var n=this.$refs.popper.$el.querySelector(".el-select-dropdown__wrap");T()(n,t)}this.$refs.scrollbar&&this.$refs.scrollbar.handleScroll()},handleMenuEnter:function(){var e=this;this.$nextTick((function(){return e.scrollToOption(e.selected)}))},emitChange:function(e){Object(C.valueEquals)(this.value,e)||this.$emit("change",e)},getOption:function(e){for(var t=void 0,n="[object object]"===Object.prototype.toString.call(e).toLowerCase(),r="[object null]"===Object.prototype.toString.call(e).toLowerCase(),i="[object undefined]"===Object.prototype.toString.call(e).toLowerCase(),a=this.cachedOptions.length-1;a>=0;a--){var o=this.cachedOptions[a];if(n?Object(C.getValueByPath)(o.value,this.valueKey)===Object(C.getValueByPath)(e,this.valueKey):o.value===e){t=o;break}}if(t)return t;var s={value:e,currentLabel:n||r||i?"":e};return this.multiple&&(s.hitState=!1),s},setSelected:function(){var e=this;if(!this.multiple){var t=this.getOption(this.value);return t.created?(this.createdLabel=t.currentLabel,this.createdSelected=!0):this.createdSelected=!1,this.selectedLabel=t.currentLabel,this.selected=t,void(this.filterable&&(this.query=this.selectedLabel))}var n=[];Array.isArray(this.value)&&this.value.forEach((function(t){n.push(e.getOption(t))})),this.selected=n,this.$nextTick((function(){e.resetInputHeight()}))},handleFocus:function(e){this.softFocus?this.softFocus=!1:((this.automaticDropdown||this.filterable)&&(this.visible=!0,this.filterable&&(this.menuVisibleOnFocus=!0)),this.$emit("focus",e))},blur:function(){this.visible=!1,this.$refs.reference.blur()},handleBlur:function(e){var t=this;setTimeout((function(){t.isSilentBlur?t.isSilentBlur=!1:t.$emit("blur",e)}),50),this.softFocus=!1},handleClearClick:function(e){this.deleteSelected(e)},doDestroy:function(){this.$refs.popper&&this.$refs.popper.doDestroy()},handleClose:function(){this.visible=!1},toggleLastOptionHitState:function(e){if(Array.isArray(this.selected)){var t=this.selected[this.selected.length-1];if(t)return!0===e||!1===e?(t.hitState=e,e):(t.hitState=!t.hitState,t.hitState)}},deletePrevTag:function(e){if(e.target.value.length<=0&&!this.toggleLastOptionHitState()){var t=this.value.slice();t.pop(),this.$emit("input",t),this.emitChange(t)}},managePlaceholder:function(){""!==this.currentPlaceholder&&(this.currentPlaceholder=this.$refs.input.value?"":this.cachedPlaceHolder)},resetInputState:function(e){8!==e.keyCode&&this.toggleLastOptionHitState(!1),this.inputLength=15*this.$refs.input.value.length+20,this.resetInputHeight()},resetInputHeight:function(){var e=this;this.collapseTags&&!this.filterable||this.$nextTick((function(){if(e.$refs.reference){var t=e.$refs.reference.$el.childNodes,n=[].filter.call(t,(function(e){return"INPUT"===e.tagName}))[0],r=e.$refs.tags,i=e.initialInputHeight||40;n.style.height=0===e.selected.length?i+"px":Math.max(r?r.clientHeight+(r.clientHeight>i?6:0):0,i)+"px",e.visible&&!1!==e.emptyText&&e.broadcast("ElSelectDropdown","updatePopper")}}))},resetHoverIndex:function(){var e=this;setTimeout((function(){e.multiple?e.selected.length>0?e.hoverIndex=Math.min.apply(null,e.selected.map((function(t){return e.options.indexOf(t)}))):e.hoverIndex=-1:e.hoverIndex=e.options.indexOf(e.selected)}),300)},handleOptionSelect:function(e,t){var n=this;if(this.multiple){var r=(this.value||[]).slice(),i=this.getValueIndex(r,e.value);i>-1?r.splice(i,1):(this.multipleLimit<=0||r.length<this.multipleLimit)&&r.push(e.value),this.$emit("input",r),this.emitChange(r),e.created&&(this.query="",this.handleQueryChange(""),this.inputLength=20),this.filterable&&this.$refs.input.focus()}else this.$emit("input",e.value),this.emitChange(e.value),this.visible=!1;this.isSilentBlur=t,this.setSoftFocus(),this.visible||this.$nextTick((function(){n.scrollToOption(e)}))},setSoftFocus:function(){this.softFocus=!0;var e=this.$refs.input||this.$refs.reference;e&&e.focus()},getValueIndex:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n="[object object]"===Object.prototype.toString.call(t).toLowerCase();if(n){var r=this.valueKey,i=-1;return e.some((function(e,n){return Object(C.getValueByPath)(e,r)===Object(C.getValueByPath)(t,r)&&(i=n,!0)})),i}return e.indexOf(t)},toggleMenu:function(){this.selectDisabled||(this.menuVisibleOnFocus?this.menuVisibleOnFocus=!1:this.visible=!this.visible,this.visible&&(this.$refs.input||this.$refs.reference).focus())},selectOption:function(){this.visible?this.options[this.hoverIndex]&&this.handleOptionSelect(this.options[this.hoverIndex]):this.toggleMenu()},deleteSelected:function(e){e.stopPropagation();var t=this.multiple?[]:"";this.$emit("input",t),this.emitChange(t),this.visible=!1,this.$emit("clear")},deleteTag:function(e,t){var n=this.selected.indexOf(t);if(n>-1&&!this.selectDisabled){var r=this.value.slice();r.splice(n,1),this.$emit("input",r),this.emitChange(r),this.$emit("remove-tag",t.value)}e.stopPropagation()},onInputChange:function(){this.filterable&&this.query!==this.selectedLabel&&(this.query=this.selectedLabel,this.handleQueryChange(this.query))},onOptionDestroy:function(e){e>-1&&(this.optionsCount--,this.filteredOptionsCount--,this.options.splice(e,1))},resetInputWidth:function(){this.inputWidth=this.$refs.reference.$el.getBoundingClientRect().width},handleResize:function(){this.resetInputWidth(),this.multiple&&this.resetInputHeight()},checkDefaultFirstOption:function(){this.hoverIndex=-1;for(var e=!1,t=this.options.length-1;t>=0;t--)if(this.options[t].created){e=!0,this.hoverIndex=t;break}if(!e)for(var n=0;n!==this.options.length;++n){var r=this.options[n];if(this.query){if(!r.disabled&&!r.groupDisabled&&r.visible){this.hoverIndex=n;break}}else if(r.itemSelected){this.hoverIndex=n;break}}},getValueKey:function(e){return"[object object]"!==Object.prototype.toString.call(e.value).toLowerCase()?e.value:Object(C.getValueByPath)(e.value,this.valueKey)}},created:function(){var e=this;this.cachedPlaceHolder=this.currentPlaceholder=this.propPlaceholder,this.multiple&&!Array.isArray(this.value)&&this.$emit("input",[]),!this.multiple&&Array.isArray(this.value)&&this.$emit("input",""),this.debouncedOnInputChange=w()(this.debounce,(function(){e.onInputChange()})),this.debouncedQueryChange=w()(this.debounce,(function(t){e.handleQueryChange(t.target.value)})),this.$on("handleOptionClick",this.handleOptionSelect),this.$on("setSelected",this.setSelected)},mounted:function(){var e=this;this.multiple&&Array.isArray(this.value)&&this.value.length>0&&(this.currentPlaceholder=""),Object(S.addResizeListener)(this.$el,this.handleResize);var t=this.$refs.reference;if(t&&t.$el){var n=t.$el.querySelector("input");this.initialInputHeight=n.getBoundingClientRect().height||{medium:36,small:32,mini:28}[this.selectSize]}this.remote&&this.multiple&&this.resetInputHeight(),this.$nextTick((function(){t&&t.$el&&(e.inputWidth=t.$el.getBoundingClientRect().width)})),this.setSelected()},beforeDestroy:function(){this.$el&&this.handleResize&&Object(S.removeResizeListener)(this.$el,this.handleResize)}},H=Object(p.a)(j,r,[],!1,null,null,null);H.options.__file="packages/select/src/select.vue";var P=H.exports;P.install=function(e){e.component(P.name,P)};t.default=P}})},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=68)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},15:function(e,t){e.exports=n(17)},2:function(e,t){e.exports=n(6)},41:function(e,t){e.exports=n(153)},68:function(e,t,n){"use strict";n.r(t);var r=n(7),i=n.n(r),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:"el-loading-fade"},on:{"after-leave":e.handleAfterLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-loading-mask",class:[e.customClass,{"is-fullscreen":e.fullscreen}],style:{backgroundColor:e.background||""}},[n("div",{staticClass:"el-loading-spinner"},[e.spinner?n("i",{class:e.spinner}):n("svg",{staticClass:"circular",attrs:{viewBox:"25 25 50 50"}},[n("circle",{staticClass:"path",attrs:{cx:"50",cy:"50",r:"20",fill:"none"}})]),e.text?n("p",{staticClass:"el-loading-text"},[e._v(e._s(e.text))]):e._e()])])])};a._withStripped=!0;var o={data:function(){return{text:null,spinner:null,background:null,fullscreen:!0,visible:!1,customClass:""}},methods:{handleAfterLeave:function(){this.$emit("after-leave")},setText:function(e){this.text=e}}},s=n(0),l=Object(s.a)(o,a,[],!1,null,null,null);l.options.__file="packages/loading/src/loading.vue";var d=l.exports,u=n(2),c=n(15),h=n(41),f=n.n(h),m=i.a.extend(d),p={install:function(e){if(!e.prototype.$isServer){var t=function(t,r){r.value?e.nextTick((function(){r.modifiers.fullscreen?(t.originalPosition=Object(u.getStyle)(document.body,"position"),t.originalOverflow=Object(u.getStyle)(document.body,"overflow"),t.maskStyle.zIndex=c.PopupManager.nextZIndex(),Object(u.addClass)(t.mask,"is-fullscreen"),n(document.body,t,r)):(Object(u.removeClass)(t.mask,"is-fullscreen"),r.modifiers.body?(t.originalPosition=Object(u.getStyle)(document.body,"position"),["top","left"].forEach((function(e){var n="top"===e?"scrollTop":"scrollLeft";t.maskStyle[e]=t.getBoundingClientRect()[e]+document.body[n]+document.documentElement[n]-parseInt(Object(u.getStyle)(document.body,"margin-"+e),10)+"px"})),["height","width"].forEach((function(e){t.maskStyle[e]=t.getBoundingClientRect()[e]+"px"})),n(document.body,t,r)):(t.originalPosition=Object(u.getStyle)(t,"position"),n(t,t,r)))})):(f()(t.instance,(function(e){if(t.instance.hiding){t.domVisible=!1;var n=r.modifiers.fullscreen||r.modifiers.body?document.body:t;Object(u.removeClass)(n,"el-loading-parent--relative"),Object(u.removeClass)(n,"el-loading-parent--hidden"),t.instance.hiding=!1}}),300,!0),t.instance.visible=!1,t.instance.hiding=!0)},n=function(t,n,r){n.domVisible||"none"===Object(u.getStyle)(n,"display")||"hidden"===Object(u.getStyle)(n,"visibility")?n.domVisible&&!0===n.instance.hiding&&(n.instance.visible=!0,n.instance.hiding=!1):(Object.keys(n.maskStyle).forEach((function(e){n.mask.style[e]=n.maskStyle[e]})),"absolute"!==n.originalPosition&&"fixed"!==n.originalPosition&&Object(u.addClass)(t,"el-loading-parent--relative"),r.modifiers.fullscreen&&r.modifiers.lock&&Object(u.addClass)(t,"el-loading-parent--hidden"),n.domVisible=!0,t.appendChild(n.mask),e.nextTick((function(){n.instance.hiding?n.instance.$emit("after-leave"):n.instance.visible=!0})),n.domInserted=!0)};e.directive("loading",{bind:function(e,n,r){var i=e.getAttribute("element-loading-text"),a=e.getAttribute("element-loading-spinner"),o=e.getAttribute("element-loading-background"),s=e.getAttribute("element-loading-custom-class"),l=r.context,d=new m({el:document.createElement("div"),data:{text:l&&l[i]||i,spinner:l&&l[a]||a,background:l&&l[o]||o,customClass:l&&l[s]||s,fullscreen:!!n.modifiers.fullscreen}});e.instance=d,e.mask=d.$el,e.maskStyle={},n.value&&t(e,n)},update:function(e,n){e.instance.setText(e.getAttribute("element-loading-text")),n.oldValue!==n.value&&t(e,n)},unbind:function(e,n){e.domInserted&&(e.mask&&e.mask.parentNode&&e.mask.parentNode.removeChild(e.mask),t(e,{value:!1,modifiers:n.modifiers})),e.instance&&e.instance.$destroy()}})}}},_=p,g=n(9),y=n.n(g),v=i.a.extend(d),b={text:null,fullscreen:!0,body:!1,lock:!1,customClass:""},M=void 0;v.prototype.originalPosition="",v.prototype.originalOverflow="",v.prototype.close=function(){var e=this;this.fullscreen&&(M=void 0),f()(this,(function(t){var n=e.fullscreen||e.body?document.body:e.target;Object(u.removeClass)(n,"el-loading-parent--relative"),Object(u.removeClass)(n,"el-loading-parent--hidden"),e.$el&&e.$el.parentNode&&e.$el.parentNode.removeChild(e.$el),e.$destroy()}),300),this.visible=!1};var L=function(e,t,n){var r={};e.fullscreen?(n.originalPosition=Object(u.getStyle)(document.body,"position"),n.originalOverflow=Object(u.getStyle)(document.body,"overflow"),r.zIndex=c.PopupManager.nextZIndex()):e.body?(n.originalPosition=Object(u.getStyle)(document.body,"position"),["top","left"].forEach((function(t){var n="top"===t?"scrollTop":"scrollLeft";r[t]=e.target.getBoundingClientRect()[t]+document.body[n]+document.documentElement[n]+"px"})),["height","width"].forEach((function(t){r[t]=e.target.getBoundingClientRect()[t]+"px"}))):n.originalPosition=Object(u.getStyle)(t,"position"),Object.keys(r).forEach((function(e){n.$el.style[e]=r[e]}))},x=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!i.a.prototype.$isServer){if("string"==typeof(e=y()({},b,e)).target&&(e.target=document.querySelector(e.target)),e.target=e.target||document.body,e.target!==document.body?e.fullscreen=!1:e.body=!0,e.fullscreen&&M)return M;var t=e.body?document.body:e.target,n=new v({el:document.createElement("div"),data:e});return L(e,t,n),"absolute"!==n.originalPosition&&"fixed"!==n.originalPosition&&Object(u.addClass)(t,"el-loading-parent--relative"),e.fullscreen&&e.lock&&Object(u.addClass)(t,"el-loading-parent--hidden"),t.appendChild(n.$el),i.a.nextTick((function(){n.visible=!0})),e.fullscreen&&(M=n),n}};t.default={install:function(e){e.use(_),e.prototype.$loading=x},directive:_,service:x}},7:function(e,t){e.exports=n(1)},9:function(e,t){e.exports=n(10)}})},function(e,t,n){(function(e){var r=n(9),i=n(162),a=t&&!t.nodeType&&t,o=a&&"object"==typeof e&&e&&!e.nodeType&&e,s=o&&o.exports===a?r.Buffer:void 0,l=(s?s.isBuffer:void 0)||i;e.exports=l}).call(this,n(51)(e))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t){var n=Object.prototype;e.exports=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||n)}},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=83)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},4:function(e,t){e.exports=n(3)},83:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("label",{staticClass:"el-checkbox",class:[e.border&&e.checkboxSize?"el-checkbox--"+e.checkboxSize:"",{"is-disabled":e.isDisabled},{"is-bordered":e.border},{"is-checked":e.isChecked}],attrs:{id:e.id}},[n("span",{staticClass:"el-checkbox__input",class:{"is-disabled":e.isDisabled,"is-checked":e.isChecked,"is-indeterminate":e.indeterminate,"is-focus":e.focus},attrs:{tabindex:!!e.indeterminate&&0,role:!!e.indeterminate&&"checkbox","aria-checked":!!e.indeterminate&&"mixed"}},[n("span",{staticClass:"el-checkbox__inner"}),e.trueLabel||e.falseLabel?n("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox__original",attrs:{type:"checkbox","aria-hidden":e.indeterminate?"true":"false",name:e.name,disabled:e.isDisabled,"true-value":e.trueLabel,"false-value":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var n=e.model,r=t.target,i=r.checked?e.trueLabel:e.falseLabel;if(Array.isArray(n)){var a=e._i(n,null);r.checked?a<0&&(e.model=n.concat([null])):a>-1&&(e.model=n.slice(0,a).concat(n.slice(a+1)))}else e.model=i},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):n("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox__original",attrs:{type:"checkbox","aria-hidden":e.indeterminate?"true":"false",disabled:e.isDisabled,name:e.name},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var n=e.model,r=t.target,i=!!r.checked;if(Array.isArray(n)){var a=e.label,o=e._i(n,a);r.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=i},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}})]),e.$slots.default||e.label?n("span",{staticClass:"el-checkbox__label"},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2):e._e()])};r._withStripped=!0;var i=n(4),a={name:"ElCheckbox",mixins:[n.n(i).a],inject:{elForm:{default:""},elFormItem:{default:""}},componentName:"ElCheckbox",data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},computed:{model:{get:function(){return this.isGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this.isGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.length<this._checkboxGroup.min&&(this.isLimitExceeded=!0),void 0!==this._checkboxGroup.max&&e.length>this._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch("ElCheckboxGroup","input",[e])):(this.$emit("input",e),this.selfModel=e)}},isChecked:function(){return"[object Boolean]"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},isGroup:function(){for(var e=this.$parent;e;){if("ElCheckboxGroup"===e.$options.componentName)return this._checkboxGroup=e,!0;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,n=e.min;return!(!t&&!n)&&this.model.length>=t&&!this.isChecked||this.model.length<=n&&this.isChecked},isDisabled:function(){return this.isGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._checkboxGroup.checkboxGroupSize||e}},props:{value:{},label:{},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number],id:String,controls:String,border:Boolean,size:String},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var n=void 0;n=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit("change",n,e),this.$nextTick((function(){t.isGroup&&t.dispatch("ElCheckboxGroup","change",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()},mounted:function(){this.indeterminate&&this.$el.setAttribute("aria-controls",this.controls)},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",e)}}},o=n(0),s=Object(o.a)(a,r,[],!1,null,null,null);s.options.__file="packages/checkbox/src/checkbox.vue";var l=s.exports;l.install=function(e){e.component(l.name,l)};t.default=l}})},,function(e,t){e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=53)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},3:function(e,t){e.exports=n(4)},33:function(e,t,n){"use strict";var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-select-dropdown__item",class:{selected:e.itemSelected,"is-disabled":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t("default",[n("span",[e._v(e._s(e.currentLabel))])])],2)};r._withStripped=!0;var i=n(4),a=n.n(i),o=n(3),s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l={mixins:[a.a],name:"ElOption",componentName:"ElOption",inject:["select"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return"[object object]"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?"":this.value)},currentValue:function(){return this.value||this.label||""},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch("ElSelect","setSelected")},value:function(e,t){var n=this.select,r=n.remote,i=n.valueKey;if(!this.created&&!r){if(i&&"object"===(void 0===e?"undefined":s(e))&&"object"===(void 0===t?"undefined":s(t))&&e[i]===t[i])return;this.dispatch("ElSelect","setSelected")}}},methods:{isEqual:function(e,t){if(this.isObject){var n=this.select.valueKey;return Object(o.getValueByPath)(e,n)===Object(o.getValueByPath)(t,n)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var n=this.select.valueKey;return e&&e.some((function(e){return Object(o.getValueByPath)(e,n)===Object(o.getValueByPath)(t,n)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch("ElSelect","handleOptionClick",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(o.escapeRegexpString)(e),"i").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on("queryChange",this.queryChange),this.$on("handleGroupDisabled",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,n=e.multiple?t:[t],r=this.select.cachedOptions.indexOf(this),i=n.indexOf(this);r>-1&&i<0&&this.select.cachedOptions.splice(r,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},d=n(0),u=Object(d.a)(l,r,[],!1,null,null,null);u.options.__file="packages/select/src/option.vue";t.a=u.exports},4:function(e,t){e.exports=n(3)},53:function(e,t,n){"use strict";n.r(t);var r=n(33);r.a.install=function(e){e.component(r.a.name,r.a)},t.default=r.a}})},function(e,t,n){"use strict";t.__esModule=!0,t.isDef=function(e){return null!=e},t.isKorean=function(e){return/([(\uAC00-\uD7AF)|(\u3130-\u318F)])+/gi.test(e)}},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e){return{methods:{focus:function(){this.$refs[e].focus()}}}}},,,,,,,,,,,,,,function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=131)}({131:function(e,t,n){"use strict";n.r(t);var r=n(5),i=n.n(r),a=n(17),o=n.n(a),s=n(2),l=n(3),d=n(7),u=n.n(d),c={name:"ElTooltip",mixins:[i.a],props:{openDelay:{type:Number,default:0},disabled:Boolean,manual:Boolean,effect:{type:String,default:"dark"},arrowOffset:{type:Number,default:0},popperClass:String,content:String,visibleArrow:{default:!0},transition:{type:String,default:"el-fade-in-linear"},popperOptions:{default:function(){return{boundariesPadding:10,gpuAcceleration:!1}}},enterable:{type:Boolean,default:!0},hideAfter:{type:Number,default:0},tabindex:{type:Number,default:0}},data:function(){return{tooltipId:"el-tooltip-"+Object(l.generateId)(),timeoutPending:null,focusing:!1}},beforeCreate:function(){var e=this;this.$isServer||(this.popperVM=new u.a({data:{node:""},render:function(e){return this.node}}).$mount(),this.debounceClose=o()(200,(function(){return e.handleClosePopper()})))},render:function(e){var t=this;this.popperVM&&(this.popperVM.node=e("transition",{attrs:{name:this.transition},on:{afterLeave:this.doDestroy}},[e("div",{on:{mouseleave:function(){t.setExpectedState(!1),t.debounceClose()},mouseenter:function(){t.setExpectedState(!0)}},ref:"popper",attrs:{role:"tooltip",id:this.tooltipId,"aria-hidden":this.disabled||!this.showPopper?"true":"false"},directives:[{name:"show",value:!this.disabled&&this.showPopper}],class:["el-tooltip__popper","is-"+this.effect,this.popperClass]},[this.$slots.content||this.content])]));var n=this.getFirstElement();if(!n)return null;var r=n.data=n.data||{};return r.staticClass=this.addTooltipClass(r.staticClass),n},mounted:function(){var e=this;this.referenceElm=this.$el,1===this.$el.nodeType&&(this.$el.setAttribute("aria-describedby",this.tooltipId),this.$el.setAttribute("tabindex",this.tabindex),Object(s.on)(this.referenceElm,"mouseenter",this.show),Object(s.on)(this.referenceElm,"mouseleave",this.hide),Object(s.on)(this.referenceElm,"focus",(function(){if(e.$slots.default&&e.$slots.default.length){var t=e.$slots.default[0].componentInstance;t&&t.focus?t.focus():e.handleFocus()}else e.handleFocus()})),Object(s.on)(this.referenceElm,"blur",this.handleBlur),Object(s.on)(this.referenceElm,"click",this.removeFocusing)),this.value&&this.popperVM&&this.popperVM.$nextTick((function(){e.value&&e.updatePopper()}))},watch:{focusing:function(e){e?Object(s.addClass)(this.referenceElm,"focusing"):Object(s.removeClass)(this.referenceElm,"focusing")}},methods:{show:function(){this.setExpectedState(!0),this.handleShowPopper()},hide:function(){this.setExpectedState(!1),this.debounceClose()},handleFocus:function(){this.focusing=!0,this.show()},handleBlur:function(){this.focusing=!1,this.hide()},removeFocusing:function(){this.focusing=!1},addTooltipClass:function(e){return e?"el-tooltip "+e.replace("el-tooltip",""):"el-tooltip"},handleShowPopper:function(){var e=this;this.expectedState&&!this.manual&&(clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.showPopper=!0}),this.openDelay),this.hideAfter>0&&(this.timeoutPending=setTimeout((function(){e.showPopper=!1}),this.hideAfter)))},handleClosePopper:function(){this.enterable&&this.expectedState||this.manual||(clearTimeout(this.timeout),this.timeoutPending&&clearTimeout(this.timeoutPending),this.showPopper=!1,this.disabled&&this.doDestroy())},setExpectedState:function(e){!1===e&&clearTimeout(this.timeoutPending),this.expectedState=e},getFirstElement:function(){var e=this.$slots.default;if(!Array.isArray(e))return null;for(var t=null,n=0;n<e.length;n++)e[n]&&e[n].tag&&(t=e[n]);return t}},beforeDestroy:function(){this.popperVM&&this.popperVM.$destroy()},destroyed:function(){var e=this.referenceElm;1===e.nodeType&&(Object(s.off)(e,"mouseenter",this.show),Object(s.off)(e,"mouseleave",this.hide),Object(s.off)(e,"focus",this.handleFocus),Object(s.off)(e,"blur",this.handleBlur),Object(s.off)(e,"click",this.removeFocusing))},install:function(e){e.component(c.name,c)}};t.default=c},17:function(e,t){e.exports=n(34)},2:function(e,t){e.exports=n(6)},3:function(e,t){e.exports=n(4)},5:function(e,t){e.exports=n(26)},7:function(e,t){e.exports=n(1)}})},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=127)}({127:function(e,t,n){"use strict";n.r(t);var r=n(16),i=n(38),a=n.n(i),o=n(3),s=n(2),l={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}};function d(e){var t=e.move,n=e.size,r=e.bar,i={},a="translate"+r.axis+"("+t+"%)";return i[r.size]=n,i.transform=a,i.msTransform=a,i.webkitTransform=a,i}var u={name:"Bar",props:{vertical:Boolean,size:String,move:Number},computed:{bar:function(){return l[this.vertical?"vertical":"horizontal"]},wrap:function(){return this.$parent.wrap}},render:function(e){var t=this.size,n=this.move,r=this.bar;return e("div",{class:["el-scrollbar__bar","is-"+r.key],on:{mousedown:this.clickTrackHandler}},[e("div",{ref:"thumb",class:"el-scrollbar__thumb",on:{mousedown:this.clickThumbHandler},style:d({size:t,move:n,bar:r})})])},methods:{clickThumbHandler:function(e){e.ctrlKey||2===e.button||(this.startDrag(e),this[this.bar.axis]=e.currentTarget[this.bar.offset]-(e[this.bar.client]-e.currentTarget.getBoundingClientRect()[this.bar.direction]))},clickTrackHandler:function(e){var t=100*(Math.abs(e.target.getBoundingClientRect()[this.bar.direction]-e[this.bar.client])-this.$refs.thumb[this.bar.offset]/2)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=t*this.wrap[this.bar.scrollSize]/100},startDrag:function(e){e.stopImmediatePropagation(),this.cursorDown=!0,Object(s.on)(document,"mousemove",this.mouseMoveDocumentHandler),Object(s.on)(document,"mouseup",this.mouseUpDocumentHandler),document.onselectstart=function(){return!1}},mouseMoveDocumentHandler:function(e){if(!1!==this.cursorDown){var t=this[this.bar.axis];if(t){var n=100*(-1*(this.$el.getBoundingClientRect()[this.bar.direction]-e[this.bar.client])-(this.$refs.thumb[this.bar.offset]-t))/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=n*this.wrap[this.bar.scrollSize]/100}}},mouseUpDocumentHandler:function(e){this.cursorDown=!1,this[this.bar.axis]=0,Object(s.off)(document,"mousemove",this.mouseMoveDocumentHandler),document.onselectstart=null}},destroyed:function(){Object(s.off)(document,"mouseup",this.mouseUpDocumentHandler)}},c={name:"ElScrollbar",components:{Bar:u},props:{native:Boolean,wrapStyle:{},wrapClass:{},viewClass:{},viewStyle:{},noresize:Boolean,tag:{type:String,default:"div"}},data:function(){return{sizeWidth:"0",sizeHeight:"0",moveX:0,moveY:0}},computed:{wrap:function(){return this.$refs.wrap}},render:function(e){var t=a()(),n=this.wrapStyle;if(t){var r="-"+t+"px",i="margin-bottom: "+r+"; margin-right: "+r+";";Array.isArray(this.wrapStyle)?(n=Object(o.toObject)(this.wrapStyle)).marginRight=n.marginBottom=r:"string"==typeof this.wrapStyle?n+=i:n=i}var s=e(this.tag,{class:["el-scrollbar__view",this.viewClass],style:this.viewStyle,ref:"resize"},this.$slots.default),l=e("div",{ref:"wrap",style:n,on:{scroll:this.handleScroll},class:[this.wrapClass,"el-scrollbar__wrap",t?"":"el-scrollbar__wrap--hidden-default"]},[[s]]),d=void 0;return d=this.native?[e("div",{ref:"wrap",class:[this.wrapClass,"el-scrollbar__wrap"],style:n},[[s]])]:[l,e(u,{attrs:{move:this.moveX,size:this.sizeWidth}}),e(u,{attrs:{vertical:!0,move:this.moveY,size:this.sizeHeight}})],e("div",{class:"el-scrollbar"},d)},methods:{handleScroll:function(){var e=this.wrap;this.moveY=100*e.scrollTop/e.clientHeight,this.moveX=100*e.scrollLeft/e.clientWidth},update:function(){var e,t,n=this.wrap;n&&(e=100*n.clientHeight/n.scrollHeight,t=100*n.clientWidth/n.scrollWidth,this.sizeHeight=e<100?e+"%":"",this.sizeWidth=t<100?t+"%":"")}},mounted:function(){this.native||(this.$nextTick(this.update),!this.noresize&&Object(r.addResizeListener)(this.$refs.resize,this.update))},beforeDestroy:function(){this.native||!this.noresize&&Object(r.removeResizeListener)(this.$refs.resize,this.update)},install:function(e){e.component(c.name,c)}};t.default=c},16:function(e,t){e.exports=n(38)},2:function(e,t){e.exports=n(6)},3:function(e,t){e.exports=n(4)},38:function(e,t){e.exports=n(47)}})},function(e,t,n){var r=n(159),i=n(13),a=Object.prototype,o=a.hasOwnProperty,s=a.propertyIsEnumerable,l=r(function(){return arguments}())?r:function(e){return i(e)&&o.call(e,"callee")&&!s.call(e,"callee")};e.exports=l},function(e,t,n){var r=n(163),i=n(76),a=n(77),o=a&&a.isTypedArray,s=o?i(o):r;e.exports=s},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,n){(function(e){var r=n(84),i=t&&!t.nodeType&&t,a=i&&"object"==typeof e&&e&&!e.nodeType&&e,o=a&&a.exports===i&&r.process,s=function(){try{var e=a&&a.require&&a.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=s}).call(this,n(51)(e))},,,function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.isVNode=function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(0,i.hasOwn)(e,"componentOptions")};var i=n(4)},function(e,t,n){var r=n(155),i=n(165)(r);e.exports=i},function(e,t){var n=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var r=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==r||"symbol"!=r&&n.test(e))&&e>-1&&e%1==0&&e<t}},function(e,t){e.exports=function(e,t,n,r){var i,a=0;return"boolean"!=typeof t&&(r=n,n=t,t=void 0),function(){var o=this,s=Number(new Date)-a,l=arguments;function d(){a=Number(new Date),n.apply(o,l)}function u(){i=void 0}r&&!i&&d(),i&&clearTimeout(i),void 0===r&&s>e?d():!0!==t&&(i=setTimeout(r?u:d,void 0===r?e-s:e))}}},function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(this,n(12))},,function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=70)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},15:function(e,t){e.exports=n(17)},23:function(e,t){e.exports=n(80)},7:function(e,t){e.exports=n(1)},70:function(e,t,n){"use strict";n.r(t);var r=n(7),i=n.n(r),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:"el-notification-fade"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],class:["el-notification",e.customClass,e.horizontalClass],style:e.positionStyle,attrs:{role:"alert"},on:{mouseenter:function(t){e.clearTimer()},mouseleave:function(t){e.startTimer()},click:e.click}},[e.type||e.iconClass?n("i",{staticClass:"el-notification__icon",class:[e.typeClass,e.iconClass]}):e._e(),n("div",{staticClass:"el-notification__group",class:{"is-with-icon":e.typeClass||e.iconClass}},[n("h2",{staticClass:"el-notification__title",domProps:{textContent:e._s(e.title)}}),n("div",{directives:[{name:"show",rawName:"v-show",value:e.message,expression:"message"}],staticClass:"el-notification__content"},[e._t("default",[e.dangerouslyUseHTMLString?n("p",{domProps:{innerHTML:e._s(e.message)}}):n("p",[e._v(e._s(e.message))])])],2),e.showClose?n("div",{staticClass:"el-notification__closeBtn el-icon-close",on:{click:function(t){return t.stopPropagation(),e.close(t)}}}):e._e()])])])};a._withStripped=!0;var o={success:"success",info:"info",warning:"warning",error:"error"},s={data:function(){return{visible:!1,title:"",message:"",duration:4500,type:"",showClose:!0,customClass:"",iconClass:"",onClose:null,onClick:null,closed:!1,verticalOffset:0,timer:null,dangerouslyUseHTMLString:!1,position:"top-right"}},computed:{typeClass:function(){return this.type&&o[this.type]?"el-icon-"+o[this.type]:""},horizontalClass:function(){return this.position.indexOf("right")>-1?"right":"left"},verticalProperty:function(){return/^top-/.test(this.position)?"top":"bottom"},positionStyle:function(){var e;return(e={})[this.verticalProperty]=this.verticalOffset+"px",e}},watch:{closed:function(e){e&&(this.visible=!1,this.$el.addEventListener("transitionend",this.destroyElement))}},methods:{destroyElement:function(){this.$el.removeEventListener("transitionend",this.destroyElement),this.$destroy(!0),this.$el.parentNode.removeChild(this.$el)},click:function(){"function"==typeof this.onClick&&this.onClick()},close:function(){this.closed=!0,"function"==typeof this.onClose&&this.onClose()},clearTimer:function(){clearTimeout(this.timer)},startTimer:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration))},keydown:function(e){46===e.keyCode||8===e.keyCode?this.clearTimer():27===e.keyCode?this.closed||this.close():this.startTimer()}},mounted:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration)),document.addEventListener("keydown",this.keydown)},beforeDestroy:function(){document.removeEventListener("keydown",this.keydown)}},l=n(0),d=Object(l.a)(s,a,[],!1,null,null,null);d.options.__file="packages/notification/src/main.vue";var u=d.exports,c=n(9),h=n.n(c),f=n(15),m=n(23),p=i.a.extend(u),_=void 0,g=[],y=1,v=function e(t){if(!i.a.prototype.$isServer){var n=(t=h()({},t)).onClose,r="notification_"+y++,a=t.position||"top-right";t.onClose=function(){e.close(r,n)},_=new p({data:t}),Object(m.isVNode)(t.message)&&(_.$slots.default=[t.message],t.message="REPLACED_BY_VNODE"),_.id=r,_.$mount(),document.body.appendChild(_.$el),_.visible=!0,_.dom=_.$el,_.dom.style.zIndex=f.PopupManager.nextZIndex();var o=t.offset||0;return g.filter((function(e){return e.position===a})).forEach((function(e){o+=e.$el.offsetHeight+16})),o+=16,_.verticalOffset=o,g.push(_),_}};["success","warning","info","error"].forEach((function(e){v[e]=function(t){return("string"==typeof t||Object(m.isVNode)(t))&&(t={message:t}),t.type=e,v(t)}})),v.close=function(e,t){var n=-1,r=g.length,i=g.filter((function(t,r){return t.id===e&&(n=r,!0)}))[0];if(i&&("function"==typeof t&&t(i),g.splice(n,1),!(r<=1)))for(var a=i.position,o=i.dom.offsetHeight,s=n;s<r-1;s++)g[s].position===a&&(g[s].dom.style[i.verticalProperty]=parseInt(g[s].dom.style[i.verticalProperty],10)-o-16+"px")},v.closeAll=function(){for(var e=g.length-1;e>=0;e--)g[e].close()};var b=v;t.default=b},9:function(e,t){e.exports=n(10)}})},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=116)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},116:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("label",{staticClass:"el-radio",class:[e.border&&e.radioSize?"el-radio--"+e.radioSize:"",{"is-disabled":e.isDisabled},{"is-focus":e.focus},{"is-bordered":e.border},{"is-checked":e.model===e.label}],attrs:{role:"radio","aria-checked":e.model===e.label,"aria-disabled":e.isDisabled,tabindex:e.tabIndex},on:{keydown:function(t){if(!("button"in t)&&e._k(t.keyCode,"space",32,t.key,[" ","Spacebar"]))return null;t.stopPropagation(),t.preventDefault(),e.model=e.isDisabled?e.model:e.label}}},[n("span",{staticClass:"el-radio__input",class:{"is-disabled":e.isDisabled,"is-checked":e.model===e.label}},[n("span",{staticClass:"el-radio__inner"}),n("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],ref:"radio",staticClass:"el-radio__original",attrs:{type:"radio","aria-hidden":"true",name:e.name,disabled:e.isDisabled,tabindex:"-1"},domProps:{value:e.label,checked:e._q(e.model,e.label)},on:{focus:function(t){e.focus=!0},blur:function(t){e.focus=!1},change:[function(t){e.model=e.label},e.handleChange]}})]),n("span",{staticClass:"el-radio__label",on:{keydown:function(e){e.stopPropagation()}}},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])};r._withStripped=!0;var i=n(4),a={name:"ElRadio",mixins:[n.n(i).a],inject:{elForm:{default:""},elFormItem:{default:""}},componentName:"ElRadio",props:{value:{},label:{},disabled:Boolean,name:String,border:Boolean,size:String},data:function(){return{focus:!1}},computed:{isGroup:function(){for(var e=this.$parent;e;){if("ElRadioGroup"===e.$options.componentName)return this._radioGroup=e,!0;e=e.$parent}return!1},model:{get:function(){return this.isGroup?this._radioGroup.value:this.value},set:function(e){this.isGroup?this.dispatch("ElRadioGroup","input",[e]):this.$emit("input",e),this.$refs.radio&&(this.$refs.radio.checked=this.model===this.label)}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},radioSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._radioGroup.radioGroupSize||e},isDisabled:function(){return this.isGroup?this._radioGroup.disabled||this.disabled||(this.elForm||{}).disabled:this.disabled||(this.elForm||{}).disabled},tabIndex:function(){return this.isDisabled||this.isGroup&&this.model!==this.label?-1:0}},methods:{handleChange:function(){var e=this;this.$nextTick((function(){e.$emit("change",e.model),e.isGroup&&e.dispatch("ElRadioGroup","handleChange",e.model)}))}}},o=n(0),s=Object(o.a)(a,r,[],!1,null,null,null);s.options.__file="packages/radio/src/radio.vue";var l=s.exports;l.install=function(e){e.component(l.name,l)};t.default=l},4:function(e,t){e.exports=n(3)}})},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=79)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},4:function(e,t){e.exports=n(3)},79:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this.$createElement;return(this._self._c||e)(this._elTag,{tag:"component",staticClass:"el-radio-group",attrs:{role:"radiogroup"},on:{keydown:this.handleKeydown}},[this._t("default")],2)};r._withStripped=!0;var i=n(4),a=n.n(i),o=Object.freeze({LEFT:37,UP:38,RIGHT:39,DOWN:40}),s={name:"ElRadioGroup",componentName:"ElRadioGroup",inject:{elFormItem:{default:""}},mixins:[a.a],props:{value:{},size:String,fill:String,textColor:String,disabled:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},_elTag:function(){return(this.$vnode.data||{}).tag||"div"},radioGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},created:function(){var e=this;this.$on("handleChange",(function(t){e.$emit("change",t)}))},mounted:function(){var e=this.$el.querySelectorAll("[type=radio]"),t=this.$el.querySelectorAll("[role=radio]")[0];![].some.call(e,(function(e){return e.checked}))&&t&&(t.tabIndex=0)},methods:{handleKeydown:function(e){var t=e.target,n="INPUT"===t.nodeName?"[type=radio]":"[role=radio]",r=this.$el.querySelectorAll(n),i=r.length,a=[].indexOf.call(r,t),s=this.$el.querySelectorAll("[role=radio]");switch(e.keyCode){case o.LEFT:case o.UP:e.stopPropagation(),e.preventDefault(),0===a?(s[i-1].click(),s[i-1].focus()):(s[a-1].click(),s[a-1].focus());break;case o.RIGHT:case o.DOWN:a===i-1?(e.stopPropagation(),e.preventDefault(),s[0].click(),s[0].focus()):(s[a+1].click(),s[a+1].focus())}}},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",[this.value])}}},l=n(0),d=Object(l.a)(s,r,[],!1,null,null,null);d.options.__file="packages/radio/src/radio-group.vue";var u=d.exports;u.install=function(e){e.component(u.name,u)};t.default=u}})},function(e,t,n){"use strict";t.__esModule=!0,t.default={el:{colorpicker:{confirm:"OK",clear:"Clear"},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:""},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"}}}},,,,,,,,,function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=124)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},124:function(e,t,n){"use strict";n.r(t);var r={name:"ElTag",props:{text:String,closable:Boolean,type:String,hit:Boolean,disableTransitions:Boolean,color:String,size:String,effect:{type:String,default:"light",validator:function(e){return-1!==["dark","light","plain"].indexOf(e)}}},methods:{handleClose:function(e){e.stopPropagation(),this.$emit("close",e)},handleClick:function(e){this.$emit("click",e)}},computed:{tagSize:function(){return this.size||(this.$ELEMENT||{}).size}},render:function(e){var t=this.type,n=this.tagSize,r=this.hit,i=this.effect,a=e("span",{class:["el-tag",t?"el-tag--"+t:"",n?"el-tag--"+n:"",i?"el-tag--"+i:"",r&&"is-hit"],style:{backgroundColor:this.color},on:{click:this.handleClick}},[this.$slots.default,this.closable&&e("i",{class:"el-tag__close el-icon-close",on:{click:this.handleClose}})]);return this.disableTransitions?a:e("transition",{attrs:{name:"el-zoom-in-center"}},[a])}},i=n(0),a=Object(i.a)(r,void 0,void 0,!1,null,null,null);a.options.__file="packages/tag/src/tag.vue";var o=a.exports;o.install=function(e){e.component(o.name,o)};t.default=o}})},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=86)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},4:function(e,t){e.exports=n(3)},86:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this.$createElement;return(this._self._c||e)("div",{staticClass:"el-checkbox-group",attrs:{role:"group","aria-label":"checkbox-group"}},[this._t("default")],2)};r._withStripped=!0;var i=n(4),a={name:"ElCheckboxGroup",componentName:"ElCheckboxGroup",mixins:[n.n(i).a],inject:{elFormItem:{default:""}},props:{value:{},disabled:Boolean,min:Number,max:Number,size:String,fill:String,textColor:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",[e])}}},o=n(0),s=Object(o.a)(a,r,[],!1,null,null,null);s.options.__file="packages/checkbox/src/checkbox-group.vue";var l=s.exports;l.install=function(e){e.component(l.name,l)};t.default=l}})},,function(e,t,n){var r=n(52),i=n(164),a=Object.prototype.hasOwnProperty;e.exports=function(e){if(!r(e))return i(e);var t=[];for(var n in Object(e))a.call(e,n)&&"constructor"!=n&&t.push(n);return t}},function(e,t,n){var r=n(24),i=n(18);e.exports=function(e){if(!i(e))return!1;var t=r(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},,,,,,,,,,,function(e,t){e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););return e}},function(e,t,n){var r=n(158),i=n(74),a=n(7),o=n(50),s=n(82),l=n(75),d=Object.prototype.hasOwnProperty;e.exports=function(e,t){var n=a(e),u=!n&&i(e),c=!n&&!u&&o(e),h=!n&&!u&&!c&&l(e),f=n||u||c||h,m=f?r(e.length,String):[],p=m.length;for(var _ in e)!t&&!d.call(e,_)||f&&("length"==_||c&&("offset"==_||"parent"==_)||h&&("buffer"==_||"byteLength"==_||"byteOffset"==_)||s(_,p))||m.push(_);return m}},function(e,t){e.exports=function(e,t){return function(n){return e(t(n))}}},function(e,t){e.exports=function(e){return e}},,,,,,function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=75)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},15:function(e,t){e.exports=n(17)},23:function(e,t){e.exports=n(80)},7:function(e,t){e.exports=n(1)},75:function(e,t,n){"use strict";n.r(t);var r=n(7),i=n.n(r),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:"el-message-fade"},on:{"after-leave":e.handleAfterLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],class:["el-message",e.type&&!e.iconClass?"el-message--"+e.type:"",e.center?"is-center":"",e.showClose?"is-closable":"",e.customClass],style:e.positionStyle,attrs:{role:"alert"},on:{mouseenter:e.clearTimer,mouseleave:e.startTimer}},[e.iconClass?n("i",{class:e.iconClass}):n("i",{class:e.typeClass}),e._t("default",[e.dangerouslyUseHTMLString?n("p",{staticClass:"el-message__content",domProps:{innerHTML:e._s(e.message)}}):n("p",{staticClass:"el-message__content"},[e._v(e._s(e.message))])]),e.showClose?n("i",{staticClass:"el-message__closeBtn el-icon-close",on:{click:e.close}}):e._e()],2)])};a._withStripped=!0;var o={success:"success",info:"info",warning:"warning",error:"error"},s={data:function(){return{visible:!1,message:"",duration:3e3,type:"info",iconClass:"",customClass:"",onClose:null,showClose:!1,closed:!1,verticalOffset:20,timer:null,dangerouslyUseHTMLString:!1,center:!1}},computed:{typeClass:function(){return this.type&&!this.iconClass?"el-message__icon el-icon-"+o[this.type]:""},positionStyle:function(){return{top:this.verticalOffset+"px"}}},watch:{closed:function(e){e&&(this.visible=!1)}},methods:{handleAfterLeave:function(){this.$destroy(!0),this.$el.parentNode.removeChild(this.$el)},close:function(){this.closed=!0,"function"==typeof this.onClose&&this.onClose(this)},clearTimer:function(){clearTimeout(this.timer)},startTimer:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration))},keydown:function(e){27===e.keyCode&&(this.closed||this.close())}},mounted:function(){this.startTimer(),document.addEventListener("keydown",this.keydown)},beforeDestroy:function(){document.removeEventListener("keydown",this.keydown)}},l=n(0),d=Object(l.a)(s,a,[],!1,null,null,null);d.options.__file="packages/message/src/main.vue";var u=d.exports,c=n(15),h=n(23),f=i.a.extend(u),m=void 0,p=[],_=1,g=function e(t){if(!i.a.prototype.$isServer){"string"==typeof(t=t||{})&&(t={message:t});var n=t.onClose,r="message_"+_++;t.onClose=function(){e.close(r,n)},(m=new f({data:t})).id=r,Object(h.isVNode)(m.message)&&(m.$slots.default=[m.message],m.message=null),m.$mount(),document.body.appendChild(m.$el);var a=t.offset||20;return p.forEach((function(e){a+=e.$el.offsetHeight+16})),m.verticalOffset=a,m.visible=!0,m.$el.style.zIndex=c.PopupManager.nextZIndex(),p.push(m),m}};["success","warning","info","error"].forEach((function(e){g[e]=function(t){return"string"==typeof t&&(t={message:t}),t.type=e,g(t)}})),g.close=function(e,t){for(var n=p.length,r=-1,i=void 0,a=0;a<n;a++)if(e===p[a].id){i=p[a].$el.offsetHeight,r=a,"function"==typeof t&&t(p[a]),p.splice(a,1);break}if(!(n<=1||-1===r||r>p.length-1))for(var o=r;o<n-1;o++){var s=p[o].$el;s.style.top=parseInt(s.style.top,10)-i-16+"px"}},g.closeAll=function(){for(var e=p.length-1;e>=0;e--)p[e].close()};var y=g;t.default=y}})},function(e,t,n){"use strict";t.__esModule=!0,t.isString=function(e){return"[object String]"===Object.prototype.toString.call(e)},t.isObject=function(e){return"[object Object]"===Object.prototype.toString.call(e)},t.isHtmlElement=function(e){return e&&e.nodeType===Node.ELEMENT_NODE};t.isFunction=function(e){return e&&"[object Function]"==={}.toString.call(e)},t.isUndefined=function(e){return void 0===e},t.isDefined=function(e){return null!=e}},function(e,t,n){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=99)}({0:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o,s){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var u=d.render;d.render=function(e,t){return l.call(t),u(e,t)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:e,options:d}}n.d(t,"a",(function(){return r}))},99:function(e,t,n){"use strict";n.r(t);var r=function(){var e=this.$createElement;return(this._self._c||e)("div",{staticClass:"el-button-group"},[this._t("default")],2)};r._withStripped=!0;var i={name:"ElButtonGroup"},a=n(0),o=Object(a.a)(i,r,[],!1,null,null,null);o.opti
|
1 |
/*! For license information please see all_entries.js.LICENSE.txt */
|
|