Coming Soon Page & Maintenance Mode by SeedProd - Version 6.0.8.4

Version Description

  • Fixed - Landing page preview link
  • Fixed - Duplicate Page
  • Tweak - removed deprecated function
Download this release

Release Info

Developer seedprod
Plugin Icon 128x128 Coming Soon Page & Maintenance Mode by SeedProd
Version 6.0.8.4
Comparing to
See all releases

Code changes from version 6.0.8.3 to 6.0.8.4

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: maintenance mode, coming soon page, coming soon, under construction, landi
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 6.0.8.3
9
  Text Domain: coming-soon
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -32,7 +32,7 @@ Create a Coming Soon Page, Maintenance Mode Page, Landing Pages and Custom 404 p
32
  * Create Webinar Pages
33
  * Create Thank You Pages
34
  * Create 404 Pages
35
- * Custom Page Builder
36
  * Headline Block
37
  * Text Block
38
  * List Block
@@ -142,6 +142,11 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
142
 
143
 
144
  == Changelog ==
 
 
 
 
 
145
  = 6.0.8.3 =
146
  * Tweak - menus require manage_options capability
147
 
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 6.0.8.4
9
  Text Domain: coming-soon
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
32
  * Create Webinar Pages
33
  * Create Thank You Pages
34
  * Create 404 Pages
35
+ * Page Builder
36
  * Headline Block
37
  * Text Block
38
  * List Block
142
 
143
 
144
  == Changelog ==
145
+ = 6.0.8.4 =
146
+ * Fixed - Landing page preview link
147
+ * Fixed - Duplicate Page
148
+ * Tweak - removed deprecated function
149
+
150
  = 6.0.8.3 =
151
  * Tweak - menus require manage_options capability
152
 
app/bootstrap.php CHANGED
@@ -92,7 +92,7 @@ function seedprod_lite_admin_enqueue_scripts($hook_suffix)
92
  // );
93
  }
94
  }
95
-
96
  if (strpos($hook_suffix, 'seedprod_lite_builder') !== false) {
97
  wp_enqueue_style(
98
  'seedprod-css',
@@ -138,7 +138,7 @@ function seedprod_lite_admin_enqueue_scripts($hook_suffix)
138
  SEEDPROD_VERSION
139
  );
140
  }
141
-
142
  wp_enqueue_style('seedprod-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700&display=swap', false);
143
 
144
  wp_enqueue_style(
@@ -192,7 +192,7 @@ function seedprod_lite_wp_enqueue_styles()
192
  false,
193
  SEEDPROD_VERSION
194
  );
195
-
196
  //wp_enqueue_style('seedprod-fontawesome');
197
  }
198
  add_action('init', 'seedprod_lite_wp_enqueue_styles');
@@ -233,7 +233,7 @@ function seedprod_lite_deregister_backend_styles()
233
  $s = explode("|", $keep_styles);
234
 
235
  $wpforms_url = plugins_url('wpforms');
236
-
237
  foreach ($wp_styles->queue as $handle) {
238
  //echo '<br> '.$handle;
239
  if (!in_array($handle, $s)) {
@@ -261,14 +261,14 @@ function seedprod_lite_deregister_backend_styles()
261
 
262
 
263
  // remove scripts
264
-
265
  $s = 'admin-bar|common|utils|wp-auth-check|media-upload|jquery|media-editor|media-audiovideo|mce-view|image-edit|wp-tinymce|editor|quicktags|wplink|jquery-ui-autocomplete|thickbox|svg-painter|jquery-ui-core|jquery-ui-mouse|jquery-ui-accordion|jquery-ui-datepicker|jquery-ui-dialog|jquery-ui-slider|jquery-ui-sortable|jquery-ui-droppable|jquery-ui-tabs|jquery-ui-widget';
266
  $d = explode("|", urldecode($s));
267
 
268
  global $wp_scripts;
269
  foreach ($wp_scripts->queue as $handle) :
270
  //echo '<br>removed '.$handle;
271
-
272
  if (!empty($d)) {
273
  if (!in_array($handle, $d)) {
274
  if (strpos($handle, 'seedprod') === false) {
@@ -303,7 +303,7 @@ add_action('admin_footer_text', 'seedprod_lite_admin_footer');
303
  function seedprod_lite_admin_footer($text)
304
  {
305
  global $current_screen;
306
-
307
  if (!empty($current_screen->id) && strpos($current_screen->id, 'seedprod') !== false && SEEDPROD_BUILD == 'lite') {
308
  $url = 'https://wordpress.org/support/plugin/coming-soon/reviews/?filter=5#new-post';
309
  $text = sprintf(__('Please rate <strong>SeedProd</strong> <a href="%s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%s" target="_blank">WordPress.org</a> to help us spread the word. Thank you from the SeedProd team!', 'coming-soon'), $url, $url);
@@ -313,80 +313,9 @@ function seedprod_lite_admin_footer($text)
313
 
314
 
315
 
316
- // Add or Upgrade DB
317
- add_action('admin_init', 'seedprod_lite_upgrade', 0);
318
-
319
- /**
320
- * Upgrade setting pages. This allows you to run an upgrade script when the version changes.
321
- *
322
- */
323
- function seedprod_lite_upgrade()
324
- {
325
-
326
- // try to update license key
327
- $old_key = get_option('seed_cspv5_license_key');
328
- $new_key = get_option('seedprod_api_key');
329
- if(!empty($old_key) && empty($new_key)){
330
- update_option('seedprod_api_key',$old_key);
331
- $r = seedprod_lite_save_api_key($old_key);
332
- }
333
-
334
- // get current version
335
- $seedprod_current_version = get_option('seedprod_version');
336
- $upgrade_complete = false;
337
- if (empty($seedprod_current_version)) {
338
- $seedprod_current_version = 0;
339
- }
340
-
341
- //if ($seedprod_current_version === 0) {
342
- if (version_compare($seedprod_current_version, SEEDPROD_VERSION) === -1 || !empty($_GET['seedprod_force_db_setup'])) {
343
- // Upgrade db if new version
344
- seedprod_lite_database_setup();
345
- $upgrade_complete = true;
346
- }
347
-
348
- if ($upgrade_complete) {
349
- update_option('seedprod_version', SEEDPROD_VERSION);
350
- }
351
- //}
352
- }
353
-
354
- /**
355
- * Create Database to Store Emails
356
- */
357
- function seedprod_lite_database_setup()
358
- {
359
- global $wpdb;
360
- $tablename = $wpdb->prefix . 'csp3_subscribers';
361
-
362
- $sql = "CREATE TABLE `$tablename` (
363
- id int(11) unsigned NOT NULL AUTO_INCREMENT,
364
- page_id int(11) NOT NULL,
365
- page_uuid varchar(255) DEFAULT NULL,
366
- email varchar(255) DEFAULT NULL,
367
- fname varchar(255) DEFAULT NULL,
368
- lname varchar(255) DEFAULT NULL,
369
- ref_url varchar(255) DEFAULT NULL,
370
- clicks int(11) NOT NULL DEFAULT '0',
371
- conversions int(11) NOT NULL DEFAULT '0',
372
- referrer int(11) NOT NULL DEFAULT '0',
373
- confirmed int(11) NOT NULL DEFAULT '0',
374
- optin_confirm int(11) NOT NULL DEFAULT '0',
375
- ip varchar(255) DEFAULT NULL,
376
- meta text DEFAULT NULL,
377
- created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
378
- PRIMARY KEY (id),
379
- KEY csp3_subscribers_page_uuid_idx (page_uuid)
380
- );";
381
-
382
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
383
-
384
- $test = dbDelta($sql);
385
- }
386
-
387
  function seedprod_lite_change_footer_version($str) {
388
  if (!empty($_GET['page']) && strpos($_GET['page'], 'seedprod_lite') !== false) {
389
  return $str.' - SeedProd '.SEEDPROD_VERSION;
390
- }
391
  }
392
- add_filter( 'update_footer', 'seedprod_lite_change_footer_version', 9999 );
92
  // );
93
  }
94
  }
95
+
96
  if (strpos($hook_suffix, 'seedprod_lite_builder') !== false) {
97
  wp_enqueue_style(
98
  'seedprod-css',
138
  SEEDPROD_VERSION
139
  );
140
  }
141
+
142
  wp_enqueue_style('seedprod-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700&display=swap', false);
143
 
144
  wp_enqueue_style(
192
  false,
193
  SEEDPROD_VERSION
194
  );
195
+
196
  //wp_enqueue_style('seedprod-fontawesome');
197
  }
198
  add_action('init', 'seedprod_lite_wp_enqueue_styles');
233
  $s = explode("|", $keep_styles);
234
 
235
  $wpforms_url = plugins_url('wpforms');
236
+
237
  foreach ($wp_styles->queue as $handle) {
238
  //echo '<br> '.$handle;
239
  if (!in_array($handle, $s)) {
261
 
262
 
263
  // remove scripts
264
+
265
  $s = 'admin-bar|common|utils|wp-auth-check|media-upload|jquery|media-editor|media-audiovideo|mce-view|image-edit|wp-tinymce|editor|quicktags|wplink|jquery-ui-autocomplete|thickbox|svg-painter|jquery-ui-core|jquery-ui-mouse|jquery-ui-accordion|jquery-ui-datepicker|jquery-ui-dialog|jquery-ui-slider|jquery-ui-sortable|jquery-ui-droppable|jquery-ui-tabs|jquery-ui-widget';
266
  $d = explode("|", urldecode($s));
267
 
268
  global $wp_scripts;
269
  foreach ($wp_scripts->queue as $handle) :
270
  //echo '<br>removed '.$handle;
271
+
272
  if (!empty($d)) {
273
  if (!in_array($handle, $d)) {
274
  if (strpos($handle, 'seedprod') === false) {
303
  function seedprod_lite_admin_footer($text)
304
  {
305
  global $current_screen;
306
+
307
  if (!empty($current_screen->id) && strpos($current_screen->id, 'seedprod') !== false && SEEDPROD_BUILD == 'lite') {
308
  $url = 'https://wordpress.org/support/plugin/coming-soon/reviews/?filter=5#new-post';
309
  $text = sprintf(__('Please rate <strong>SeedProd</strong> <a href="%s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%s" target="_blank">WordPress.org</a> to help us spread the word. Thank you from the SeedProd team!', 'coming-soon'), $url, $url);
313
 
314
 
315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  function seedprod_lite_change_footer_version($str) {
317
  if (!empty($_GET['page']) && strpos($_GET['page'], 'seedprod_lite') !== false) {
318
  return $str.' - SeedProd '.SEEDPROD_VERSION;
319
+ }
320
  }
321
+ add_filter( 'update_footer', 'seedprod_lite_change_footer_version', 9999 );
app/load_controller.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
 
 
2
 
3
  require_once(SEEDPROD_PLUGIN_PATH.'app/cpt.php');
4
  require_once(SEEDPROD_PLUGIN_PATH.'app/admin-bar-menu.php');
5
  require_once(SEEDPROD_PLUGIN_PATH.'app/notifications.php');
6
  require_once(SEEDPROD_PLUGIN_PATH.'app/render-lp.php');
7
  require_once(SEEDPROD_PLUGIN_PATH.'app/render-csp-mm.php');
8
- //require_once(SEEDPROD_PLUGIN_PATH.'app/render-domain-mapping.php');
9
  require_once(SEEDPROD_PLUGIN_PATH.'app/backwards/backwards_compatibility.php');
10
  require_once(SEEDPROD_PLUGIN_PATH.'app/subscriber.php');
11
  add_action( 'plugins_loaded', array( 'seedprod_lite_Render', 'get_instance' ) );
@@ -27,7 +28,6 @@ if (is_admin()) {
27
 
28
  // Load on Public and Admin
29
  require_once(SEEDPROD_PLUGIN_PATH.'app/license.php');
30
- require_once(SEEDPROD_PLUGIN_PATH.'app/functions-utils.php');
31
  require_once(SEEDPROD_PLUGIN_PATH.'app/includes/upgrade.php');
32
 
33
 
1
  <?php
2
+ // must load first
3
+ require_once(SEEDPROD_PLUGIN_PATH.'app/functions-utils.php');
4
 
5
  require_once(SEEDPROD_PLUGIN_PATH.'app/cpt.php');
6
  require_once(SEEDPROD_PLUGIN_PATH.'app/admin-bar-menu.php');
7
  require_once(SEEDPROD_PLUGIN_PATH.'app/notifications.php');
8
  require_once(SEEDPROD_PLUGIN_PATH.'app/render-lp.php');
9
  require_once(SEEDPROD_PLUGIN_PATH.'app/render-csp-mm.php');
 
10
  require_once(SEEDPROD_PLUGIN_PATH.'app/backwards/backwards_compatibility.php');
11
  require_once(SEEDPROD_PLUGIN_PATH.'app/subscriber.php');
12
  add_action( 'plugins_loaded', array( 'seedprod_lite_Render', 'get_instance' ) );
28
 
29
  // Load on Public and Admin
30
  require_once(SEEDPROD_PLUGIN_PATH.'app/license.php');
 
31
  require_once(SEEDPROD_PLUGIN_PATH.'app/includes/upgrade.php');
32
 
33
 
app/lpage.php CHANGED
@@ -53,13 +53,13 @@ function seedprod_lite_new_lpage()
53
  if (!empty($_GET['type'])) {
54
  $type = sanitize_text_field($_GET['type']);
55
  }
56
-
57
  // base page settings
58
  require_once(SEEDPROD_PLUGIN_PATH.'resources/data-templates/basic-page.php');
59
  $settings = json_decode($seedprod_basic_lpage);
60
  $settings->is_new = true;
61
  $settings->page_type = $type;
62
-
63
 
64
  $cpt = 'page';
65
  if ($type == 'cs' || $type == 'mm' || $type == 'p404') {
@@ -113,7 +113,7 @@ function seedprod_lite_new_lpage()
113
  if ($type == 'p404') {
114
  update_option('seedprod_404_page_id', $id);
115
  }
116
-
117
  if ($type == 'lp') {
118
  if (is_numeric($id)) {
119
  $lpage_name = esc_html__('New Page', 'coming-soon') . " (ID #$id)";
@@ -122,7 +122,7 @@ function seedprod_lite_new_lpage()
122
  }
123
  }
124
 
125
-
126
 
127
  wp_update_post(
128
  array(
@@ -201,7 +201,7 @@ function seedprod_lite_lpage_datatable()
201
  $orderby = 'post_title';
202
  }
203
  $sql .= ' ORDER BY ' . esc_sql($orderby);
204
-
205
  if (sanitize_text_field($_GET['order']) === 'desc') {
206
  $order = 'DESC';
207
  } else {
@@ -216,7 +216,7 @@ function seedprod_lite_lpage_datatable()
216
  if (empty($_POST['s'])) {
217
  $sql .= ' OFFSET ' . ($current_page - 1) * $per_page;
218
  }
219
-
220
  $results = $wpdb->get_results($sql);
221
 
222
  $data = array();
@@ -245,7 +245,7 @@ function seedprod_lite_lpage_datatable()
245
  }
246
 
247
  // Load Data
248
-
249
  $data[] = array(
250
  'id' => $v->ID,
251
  'name' => $v->post_title,
@@ -304,7 +304,7 @@ function seedprod_lite_lpage_get_data_total($filter = null)
304
  if (!empty($_GET['s'])) {
305
  $sql .= ' AND post_name LIKE "%'. esc_sql(sanitize_text_field($_GET['s'])) .'%"';
306
  }
307
-
308
  $results = $wpdb->get_var($sql);
309
  return $results;
310
  }
@@ -387,13 +387,13 @@ function seedprod_lite_duplicate_lpage()
387
  }
388
 
389
  $post = get_post($id);
390
- $json = json_decode($post->post_content_filtered);
391
-
392
  $args = array(
393
  'comment_status' => 'closed',
394
  'ping_status' => 'closed',
395
  'post_content' => $post->post_content,
396
- 'post_content_filtered' => $post->post_content_filtered,
397
  'post_status' => 'draft',
398
  'post_title' => $post->post_title .'- Copy',
399
  'post_type' => 'page',
@@ -484,7 +484,6 @@ function seedprod_lite_delete_archived_lpages()
484
  }
485
  }
486
 
487
-
488
  /*
489
  * Save/Update lpage
490
  */
@@ -492,7 +491,6 @@ function seedprod_lite_delete_archived_lpages()
492
  function seedprod_lite_save_lpage()
493
  {
494
  if (check_ajax_referer('seedprod_nonce')) {
495
-
496
 
497
  // Validate
498
  $errors = array();
@@ -531,7 +529,7 @@ function seedprod_lite_save_lpage()
531
  $lpage_post_status = sanitize_title($sp_post['lpage_post_status']);
532
  $settings = $sp_post['settings'];
533
  //$settings = wp_json_encode(json_decode( stripslashes($sp_post['settings'])));
534
-
535
  // set update array
536
  $update = array();
537
  $update['ID'] = $lpage_id;
@@ -587,7 +585,7 @@ function seedprod_lite_save_lpage()
587
  update_option('seedprod_cspv5_migrated', true);
588
  }
589
 
590
- // migrate landong page if id exists
591
  $settings = json_decode(stripslashes_deep($sp_post['settings']));
592
  if (!empty($settings->cspv5_id)) {
593
  $cspv5_id = $settings->cspv5_id;
@@ -606,6 +604,7 @@ function seedprod_lite_save_lpage()
606
  );
607
  }
608
 
 
609
  wp_send_json($response);
610
  }
611
  }
@@ -693,7 +692,7 @@ function seedprod_lite_save_template()
693
  'id' => $lpage_id,
694
  'code' => '',
695
  );
696
-
697
  wp_send_json($response, 403);
698
  } else {
699
  $lpage_id = absint($_POST['lpage_id']);
@@ -717,7 +716,7 @@ function seedprod_lite_save_template()
717
  $template_code_merge = json_decode($template_code, true);
718
  $settings = $settings + $template_code_merge;
719
  }
720
-
721
  $settings['page_type'] = sanitize_text_field($_POST['lpage_type']);
722
 
723
  // save settings
@@ -773,7 +772,7 @@ function seedprod_lite_get_template_code($id)
773
  }else{
774
  $url = SEEDPROD_API_URL.'templates?id='.$id.'&filter=template_code'.'&api_token='.$apikey;
775
  }
776
-
777
 
778
  $response = wp_remote_get($url);
779
 
@@ -806,3 +805,4 @@ function seedprod_lite_get_namespaced_custom_css()
806
  }
807
  }
808
  }
 
53
  if (!empty($_GET['type'])) {
54
  $type = sanitize_text_field($_GET['type']);
55
  }
56
+
57
  // base page settings
58
  require_once(SEEDPROD_PLUGIN_PATH.'resources/data-templates/basic-page.php');
59
  $settings = json_decode($seedprod_basic_lpage);
60
  $settings->is_new = true;
61
  $settings->page_type = $type;
62
+
63
 
64
  $cpt = 'page';
65
  if ($type == 'cs' || $type == 'mm' || $type == 'p404') {
113
  if ($type == 'p404') {
114
  update_option('seedprod_404_page_id', $id);
115
  }
116
+
117
  if ($type == 'lp') {
118
  if (is_numeric($id)) {
119
  $lpage_name = esc_html__('New Page', 'coming-soon') . " (ID #$id)";
122
  }
123
  }
124
 
125
+
126
 
127
  wp_update_post(
128
  array(
201
  $orderby = 'post_title';
202
  }
203
  $sql .= ' ORDER BY ' . esc_sql($orderby);
204
+
205
  if (sanitize_text_field($_GET['order']) === 'desc') {
206
  $order = 'DESC';
207
  } else {
216
  if (empty($_POST['s'])) {
217
  $sql .= ' OFFSET ' . ($current_page - 1) * $per_page;
218
  }
219
+
220
  $results = $wpdb->get_results($sql);
221
 
222
  $data = array();
245
  }
246
 
247
  // Load Data
248
+
249
  $data[] = array(
250
  'id' => $v->ID,
251
  'name' => $v->post_title,
304
  if (!empty($_GET['s'])) {
305
  $sql .= ' AND post_name LIKE "%'. esc_sql(sanitize_text_field($_GET['s'])) .'%"';
306
  }
307
+
308
  $results = $wpdb->get_var($sql);
309
  return $results;
310
  }
387
  }
388
 
389
  $post = get_post($id);
390
+ $json = $post->post_content_filtered;
391
+
392
  $args = array(
393
  'comment_status' => 'closed',
394
  'ping_status' => 'closed',
395
  'post_content' => $post->post_content,
396
+ //'post_content_filtered' => $post->post_content_filtered,
397
  'post_status' => 'draft',
398
  'post_title' => $post->post_title .'- Copy',
399
  'post_type' => 'page',
484
  }
485
  }
486
 
 
487
  /*
488
  * Save/Update lpage
489
  */
491
  function seedprod_lite_save_lpage()
492
  {
493
  if (check_ajax_referer('seedprod_nonce')) {
 
494
 
495
  // Validate
496
  $errors = array();
529
  $lpage_post_status = sanitize_title($sp_post['lpage_post_status']);
530
  $settings = $sp_post['settings'];
531
  //$settings = wp_json_encode(json_decode( stripslashes($sp_post['settings'])));
532
+
533
  // set update array
534
  $update = array();
535
  $update['ID'] = $lpage_id;
585
  update_option('seedprod_cspv5_migrated', true);
586
  }
587
 
588
+ // migrate landing page if id exists
589
  $settings = json_decode(stripslashes_deep($sp_post['settings']));
590
  if (!empty($settings->cspv5_id)) {
591
  $cspv5_id = $settings->cspv5_id;
604
  );
605
  }
606
 
607
+
608
  wp_send_json($response);
609
  }
610
  }
692
  'id' => $lpage_id,
693
  'code' => '',
694
  );
695
+
696
  wp_send_json($response, 403);
697
  } else {
698
  $lpage_id = absint($_POST['lpage_id']);
716
  $template_code_merge = json_decode($template_code, true);
717
  $settings = $settings + $template_code_merge;
718
  }
719
+
720
  $settings['page_type'] = sanitize_text_field($_POST['lpage_type']);
721
 
722
  // save settings
772
  }else{
773
  $url = SEEDPROD_API_URL.'templates?id='.$id.'&filter=template_code'.'&api_token='.$apikey;
774
  }
775
+
776
 
777
  $response = wp_remote_get($url);
778
 
805
  }
806
  }
807
  }
808
+
app/render-domain-mapping.php DELETED
@@ -1,93 +0,0 @@
1
- <?php
2
- //query custom db fake
3
- $mapped = array(
4
- 'domain'=> 'ddd.test',
5
- 'path' => 'mypath',
6
- 'mapped_page_id' => 5349,
7
- );
8
- $seedprod_page_mapped_id = null;
9
- $seedprod_page_mapped_url = null;
10
-
11
- // get requested url
12
- $seedprod_page_mapped_url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
13
- $url_parsed = parse_url($seedprod_page_mapped_url);
14
-
15
- // see if we have a match, real plugin would query db for domain, then path
16
- if($url_parsed['host'] == $mapped['domain'] && $url_parsed['path'] == '/'.$mapped['path']){
17
- // if we match show the mapped page
18
- $seedprod_page_mapped_id = $mapped['mapped_page_id'];
19
- if(function_exists('bp_is_active')){
20
- add_action( 'template_redirect', 'seedprod_lite_mapped_domain_render',9);
21
- }else{
22
- add_action( 'template_redirect', 'seedprod_lite_mapped_domain_render',10);
23
- }
24
- }
25
-
26
- function seedprod_lite_mapped_domain_render(){
27
- global $seedprod_page_mapped_id;
28
- if(!empty($seedprod_page_mapped_id)){
29
- $has_settings = get_post_meta( $seedprod_page_mapped_id, '_seedprod_page', true );
30
- if (!empty($has_settings)) {
31
- // Get Page
32
- global $wpdb;
33
- $tablename = $wpdb->prefix . 'posts';
34
- $sql = "SELECT * FROM $tablename WHERE id= %d";
35
- $safe_sql = $wpdb->prepare($sql, absint($seedprod_page_mapped_id));
36
- $page = $wpdb->get_row($safe_sql);
37
-
38
- $settings = json_decode($page->post_content_filtered);
39
-
40
- $template = SEEDPROD_PLUGIN_PATH.'resources/views/seedprod-preview.php';
41
- add_action('wp_enqueue_scripts', 'seedprod_lite_deregister_styles', PHP_INT_MAX);
42
- add_filter( 'option_siteurl', 'seedprod_lite_modify_url' );
43
- add_filter( 'option_home', 'seedprod_lite_modify_url' );
44
- add_filter( 'script_loader_src', 'seedprod_lite_modify_asset_url', 10, 2 );
45
- add_filter( 'style_loader_src', 'seedprod_lite_modify_asset_url', 10, 2 );
46
- add_filter( 'stylesheet_directory_uri', 'seedprod_lite_modify_url' );
47
- add_filter( 'template_directory_uri', 'seedprod_lite_modify_url' );
48
- add_filter( 'pre_get_document_title', 'seedprod_lite_replace_title', 10, 2 );
49
- //remove_action( 'wp_head', '_wp_render_title_tag', 1 );
50
- header("HTTP/1.1 200 OK");
51
- $is_mapped =true;
52
- require_once($template);
53
-
54
- exit();
55
- }
56
- }
57
- }
58
-
59
- function seedprod_lite_modify_url( $url ) {
60
- return seedprod_lite_replace_url( $url );
61
- }
62
-
63
- function seedprod_lite_modify_asset_url( $url, $handle ) {
64
- return seedprod_lite_replace_url( $url );
65
- }
66
-
67
- function seedprod_lite_replace_url( $url ) {
68
- global $seedprod_page_mapped_url;
69
- $url_parsed = parse_url($seedprod_page_mapped_url);
70
- $new_domain = $url_parsed['scheme'].'://'.$url_parsed['host'];
71
- if(strpos($url,'/wp-content/') != false){
72
- $domain = explode('/wp-content/',$url);
73
- $url = str_replace($domain[0],$new_domain,$url);
74
- }elseif(strpos($url,'/wp-includes/') != false){
75
- $domain = explode('/wp-includes/',$url);
76
- $url = str_replace($domain[0],$new_domain,$url);
77
- }else{
78
- $url = $new_domain;
79
- }
80
- return $url;
81
- }
82
-
83
- function seedprod_lite_replace_title($title){
84
- global $seedprod_page_mapped_url;
85
- $url_parsed = parse_url($seedprod_page_mapped_url);
86
- $new_domain = $url_parsed['host'];
87
- global $wp_query;
88
- //if (is_404()) {
89
- $title = $new_domain;
90
- //}
91
-
92
- return $title;
93
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/render-lp.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php
2
  /**
3
  * Landing Page Render
4
  */
@@ -7,16 +7,17 @@
7
  add_filter( 'template_include','seedprod_lite_lppage_render');
8
 
9
  function seedprod_lite_lppage_render($template){
10
- global $post;
11
- if(!empty($post)){
12
- $has_settings = get_post_meta( $post->ID, '_seedprod_page', true );
13
- if (!empty($has_settings) && $post->post_type = 'page') {
14
-
15
- $template = SEEDPROD_PLUGIN_PATH.'resources/views/seedprod-preview.php';
16
- add_action('wp_enqueue_scripts', 'seedprod_lite_deregister_styles', PHP_INT_MAX);
17
- }
18
- }
19
- return $template;
 
20
  }
21
 
22
  // clean theme styles on our custom landing pages
@@ -28,8 +29,9 @@ function seedprod_lite_deregister_styles(){
28
  //echo '<br> '.$handle;
29
  if (strpos($wp_styles->registered[$handle]->src, 'wp-content/themes') !== false) {
30
  //var_dump($wp_styles->registered[$handle]->src);
31
- wp_dequeue_style($handle);
32
  wp_deregister_style($handle);
33
  }
34
  }
35
- };
 
1
+ <?php
2
  /**
3
  * Landing Page Render
4
  */
7
  add_filter( 'template_include','seedprod_lite_lppage_render');
8
 
9
  function seedprod_lite_lppage_render($template){
10
+ global $post;
11
+ if(!empty($post)){
12
+ $has_settings = get_post_meta( $post->ID, '_seedprod_page', true );
13
+
14
+ if (!empty($has_settings) && $post->post_type = 'page') {
15
+
16
+ $template = SEEDPROD_PLUGIN_PATH.'resources/views/seedprod-preview.php';
17
+ add_action('wp_enqueue_scripts', 'seedprod_lite_deregister_styles', PHP_INT_MAX);
18
+ }
19
+ }
20
+ return $template;
21
  }
22
 
23
  // clean theme styles on our custom landing pages
29
  //echo '<br> '.$handle;
30
  if (strpos($wp_styles->registered[$handle]->src, 'wp-content/themes') !== false) {
31
  //var_dump($wp_styles->registered[$handle]->src);
32
+ wp_dequeue_style($handle);
33
  wp_deregister_style($handle);
34
  }
35
  }
36
+ };
37
+
app/routes.php CHANGED
@@ -269,9 +269,9 @@ if (defined('DOING_AJAX')) {
269
  add_action('wp_ajax_seedprod_lite_get_rafflepress_code', 'seedprod_lite_get_rafflepress_code');
270
 
271
 
272
-
273
  add_action('wp_ajax_seedprod_lite_dismiss_upsell', 'seedprod_lite_dismiss_upsell');
274
 
 
275
  }
276
 
277
 
269
  add_action('wp_ajax_seedprod_lite_get_rafflepress_code', 'seedprod_lite_get_rafflepress_code');
270
 
271
 
 
272
  add_action('wp_ajax_seedprod_lite_dismiss_upsell', 'seedprod_lite_dismiss_upsell');
273
 
274
+
275
  }
276
 
277
 
app/subscriber.php CHANGED
@@ -25,48 +25,7 @@ function seedprod_lite_subscribers_datatable()
25
  $filter = null;
26
  }
27
 
28
-
29
- global $wpdb;
30
- $tablename = $wpdb->prefix . 'csp3_subscribers';
31
-
32
- // Get records
33
-
34
- $sql = "SELECT *
35
- FROM $tablename
36
- ";
37
-
38
- if(!empty($_GET['id'])){
39
- $sql .= ' WHERE page_uuid = "'.esc_sql($_GET['id']). '"';;
40
- }else{
41
- $sql .= ' WHERE 1 =1 ';
42
- }
43
-
44
- if (!empty($_GET['s'])) {
45
- $sql .= ' AND email LIKE "%'. esc_sql(trim(sanitize_text_field($_GET['s']))).'%"';
46
- }
47
-
48
- if (! empty($_GET['orderby'])) {
49
- // $orderby = $_GET['orderby'];
50
- // if ($_GET['orderby'] == 'entries') {
51
- // $orderby = 'entries_count';
52
- // }
53
- // $sql .= ' ORDER BY ' . esc_sql(sanitize_text_field($orderby));
54
- // if(sanitize_text_field($_GET['order']) === 'desc'){
55
- // $order = 'DESC';
56
- // }else{
57
- // $order = 'ASC';
58
- // }
59
- // $sql .= ' ' . $order;
60
- } else {
61
- $sql .= ' ORDER BY created DESC';
62
- }
63
-
64
- $sql .= " LIMIT $per_page";
65
- if (empty($_GET['s'])) {
66
- $sql .= ' OFFSET ' . ($current_page - 1) * $per_page;
67
- }
68
-
69
- $results = $wpdb->get_results($sql);
70
  //var_dump($results);
71
  $data = array();
72
  foreach ($results as $v) {
@@ -85,30 +44,16 @@ function seedprod_lite_subscribers_datatable()
85
  );
86
  }
87
 
88
- $totalitems = seedprod_lite_subscribers_get_data_total($filter);
89
- $views = seedprod_lite_subscribers_get_views($filter);
90
 
91
  // Get recent subscriber data
92
  $chart_timeframe = 7;
93
  if(!empty($_GET['interval'])){
94
  $chart_timeframe = absint($_GET['interval']);
95
  }
96
-
97
- if (empty($_GET['id'])) {
98
- $tablename = $wpdb->prefix . 'csp3_subscribers';
99
- $sql = 'SELECT count(id) as count,DATE_FORMAT(created,"%Y-%m-%d") as created FROM '.$tablename.' ';
100
- $sql .= ' WHERE created >= DATE(NOW()) - INTERVAL '.esc_sql($chart_timeframe).' DAY GROUP BY DAY(created)';
101
- $recent_subscribers = $wpdb->get_results($sql);
102
-
103
 
104
- } else {
105
-
106
- $tablename = $wpdb->prefix . 'csp3_subscribers';
107
- $sql = 'SELECT count(id) as count,DATE_FORMAT(created,"%Y-%m-%d") as created FROM '.$tablename.' ';
108
- $sql .= ' WHERE page_uuid = "'.esc_sql($_GET['id']). '"';
109
- $sql .= ' AND created >= DATE(NOW()) - INTERVAL '.esc_sql($chart_timeframe).' DAY GROUP BY DAY(created)';
110
- $recent_subscribers = $wpdb->get_results($sql);
111
- }
112
 
113
 
114
  $now = new \DateTime("$chart_timeframe days ago", new \DateTimeZone('America/New_York'));
25
  $filter = null;
26
  }
27
 
28
+ $results = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  //var_dump($results);
30
  $data = array();
31
  foreach ($results as $v) {
44
  );
45
  }
46
 
47
+ $totalitems = 0;
48
+ $views = array();
49
 
50
  // Get recent subscriber data
51
  $chart_timeframe = 7;
52
  if(!empty($_GET['interval'])){
53
  $chart_timeframe = absint($_GET['interval']);
54
  }
 
 
 
 
 
 
 
55
 
56
+ $recent_subscribers = array();
 
 
 
 
 
 
 
57
 
58
 
59
  $now = new \DateTime("$chart_timeframe days ago", new \DateTimeZone('America/New_York'));
coming-soon.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Coming Soon Page, Maintenance Mode & Landing Pages by SeedProd
4
  Plugin URI: https://www.seedprod.com
5
  Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
- Version: 6.0.8.3
7
  Author: SeedProd
8
  Author URI: https://www.seedprod.com
9
  TextDomain: coming-soon
@@ -16,7 +16,7 @@ License: GPLv2 or later
16
  */
17
  define('SEEDPROD_BUILD', 'lite');
18
  define('SEEDPROD_SLUG', 'coming-soon/coming-soon.php');
19
- define('SEEDPROD_VERSION', '6.0.8.3');
20
  define('SEEDPROD_PLUGIN_PATH', plugin_dir_path(__FILE__));
21
  // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seedprod/
22
  define('SEEDPROD_PLUGIN_URL', plugin_dir_url(__FILE__));
3
  Plugin Name: Coming Soon Page, Maintenance Mode & Landing Pages by SeedProd
4
  Plugin URI: https://www.seedprod.com
5
  Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
+ Version: 6.0.8.4
7
  Author: SeedProd
8
  Author URI: https://www.seedprod.com
9
  TextDomain: coming-soon
16
  */
17
  define('SEEDPROD_BUILD', 'lite');
18
  define('SEEDPROD_SLUG', 'coming-soon/coming-soon.php');
19
+ define('SEEDPROD_VERSION', '6.0.8.4');
20
  define('SEEDPROD_PLUGIN_PATH', plugin_dir_path(__FILE__));
21
  // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seedprod/
22
  define('SEEDPROD_PLUGIN_URL', plugin_dir_url(__FILE__));
public/lite/vue-backend/js/admin.js CHANGED
@@ -1 +1 @@
1
- (function(t){function s(s){for(var a,o,r=s[0],p=s[1],l=s[2],d=0,u=[];d<r.length;d++)o=r[d],n[o]&&u.push(n[o][0]),n[o]=0;for(a in p)Object.prototype.hasOwnProperty.call(p,a)&&(t[a]=p[a]);c&&c(s);while(u.length)u.shift()();return i.push.apply(i,l||[]),e()}function e(){for(var t,s=0;s<i.length;s++){for(var e=i[s],a=!0,r=1;r<e.length;r++){var p=e[r];0!==n[p]&&(a=!1)}a&&(i.splice(s--,1),t=o(o.s=e[0]))}return t}var a={},n={admin:0},i=[];function o(s){if(a[s])return a[s].exports;var e=a[s]={i:s,l:!1,exports:{}};return t[s].call(e.exports,e,e.exports,o),e.l=!0,e.exports}o.m=t,o.c=a,o.d=function(t,s,e){o.o(t,s)||Object.defineProperty(t,s,{enumerable:!0,get:e})},o.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(t,s){if(1&s&&(t=o(t)),8&s)return t;if(4&s&&"object"===typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(o.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&s&&"string"!=typeof t)for(var a in t)o.d(e,a,function(s){return t[s]}.bind(null,a));return e},o.n=function(t){var s=t&&t.__esModule?function(){return t["default"]}:function(){return t};return o.d(s,"a",s),s},o.o=function(t,s){return Object.prototype.hasOwnProperty.call(t,s)},o.p="/wp-content/plugins/seedprod-pro/public/lite/vue-backend/";var r=window["webpackJsonp"]=window["webpackJsonp"]||[],p=r.push.bind(r);r.push=s,r=r.slice();for(var l=0;l<r.length;l++)s(r[l]);var c=p;i.push([1,"chunk-vendors","chunk-common"]),e()})({1:function(t,s,e){t.exports=e("9150")},9150:function(t,s,e){"use strict";e.r(s);e("7f7f"),e("cadf"),e("551c"),e("f751"),e("097d");var a,n=e("2b0e"),i=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-app seedprod sp-antialiased sp-font-display"},["seedprod_lite"==t.shared.page_path&&t.shared.show_topbar_cta?e("div",{staticClass:"sp--ml-5 sp-bg-green sp-text-white sp-py-2 sp-px-8 sp-text-sm sp-flex sp-justify-center sp-leading-normal sp-relative"},[t._v("\n You’re using SeedProd Lite. To unlock more features consider\n "),e("a",{staticClass:"sp-ml-1 sp-text-white hover:sp-text-white sp-no-underline sp-border-0 sp-border-b sp-border-white sp-border-dotted",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugintopbar",target:"_blank"}},[t._v("upgrading to Pro")]),e("span",{staticClass:"sp-text-white sp-absolute sp-cursor-pointer sp-right-0 sp-top-0 sp-opacity-75 sp-mt-2 sp-mr-1",on:{click:t.dismiss_upsell}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])]):t._e(),!1===t.shared.seedprod_csp4_migrated&&1==t.shared.seedprod_csp4_imported?e("div",{staticClass:"sp--ml-5 sp-bg-green sp-text-white sp-py-4 sp-px-8 sp-text-lg sp-flex sp-justify-center sp-leading-normal"},[e("svg",{staticClass:"sp-fill-current sp-w-20 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"}})]),t._m(0)]):t._e(),!1===t.shared.seedprod_cspv5_migrated&&1==t.shared.seedprod_cspv5_imported?e("div",{staticClass:"sp--ml-5 sp-bg-green sp-text-white sp-py-4 sp-px-8 sp-text-lg sp-flex sp-justify-center sp-leading-normal"},[e("svg",{staticClass:"sp-fill-current sp-w-20 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"}})]),e("div",[t._v("\n We have migrated your page settings from the old version to our new builder. Don't worry nothing has changed with your pages. However, a lot has changed in the plugin.\n "),e("a",{staticClass:"sp-text-white sp-font-bold",attrs:{href:"https://www.seedprod.com/docs/migrating-from-the-previous-pro-version/?dep="+t.shared.seedprod_unsupported_feature,target:"_blank"}},[t._v("Learn more about the all new SeedProd plugin and how to complete the migration process.")])])]):t._e(),"welcome"!=t.$router.currentRoute.name?e("div",{staticClass:"sp-bg-white sp--ml-5 sp-pt-6 sp-pb-8 sp-px-8 sp-text-neutral sp-flex sp-items-end sp-justify-between"},[e("div",{staticClass:"sp-flex sp-items-end sp-flex-1"},[e("img",{attrs:{id:"seedprod-logo",src:t.shared.plugin_path+"public/svg/seedprod-logo.svg",alt:t.txt_6}}),e("span",{staticClass:"sp-inline-block sp-px-6 sp-flex sp-items-end"},[e("svg",{attrs:{width:"12",height:"29",viewBox:"0 0 12 29",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 28L11 0.999998",stroke:"#D3CED2"}})])]),"pages"==this.$route.name||"dashboard"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_1))]):t._e(),"growthtools"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_2))]):t._e(),"aboutus_aboutus"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_3))]):t._e(),"subscribers"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_4))]):t._e(),"settings_general"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_5))]):t._e()]),e("div",[e("a",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-p-c63 sp-text-neutral-60",attrs:{href:"https://www.seedprod.com/docs/",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"}})])])])]):t._e(),t.shared.notifications.length>0?e("div",{staticClass:"sp-ml-3 sp-bg-white sp-rounded sp-p-4 sp-mt-4 sp-mr-4 sp-flex sp-shadow"},[t.shared.notifications[t.notification_index].img?e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.notifications[t.notification_index].img}}):e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/bell.svg"}}),e("div",{staticClass:"sp-flex-1"},[e("div",{staticClass:"sp-text-lg sp-font-semibold sp-mb-2 sp-flex sp-justify-between"},[t._v("\n "+t._s(t.shared.notifications[t.notification_index].title)+"\n "),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40 hover:sp-text-red",on:{click:function(s){return t.dismiss_notifications(t.shared.notifications[t.notification_index].id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])]),e("div",{staticClass:"sp-mb-3 sp-text-base",domProps:{innerHTML:t._s(t.shared.notifications[t.notification_index].content)}}),e("div",{staticClass:"sp-flex sp-justify-between sp-items-center"},[e("div",[t.shared.notifications[t.notification_index].btns.main?e("a",{staticClass:"button button-primary sp-mr-2",attrs:{href:t.shared.notifications[t.notification_index].btns.main.url,target:"_blank"}},[t._v(t._s(t.shared.notifications[t.notification_index].btns.main.text))]):t._e(),t.shared.notifications[t.notification_index].btns.alt?e("a",{staticClass:"button button-secondary",attrs:{href:t.shared.notifications[t.notification_index].btns.alt.url,target:"_blank"}},[t._v(t._s(t.shared.notifications[t.notification_index].btns.alt.text))]):t._e()]),e("div",[e("a",{staticClass:"sp-cursor-pointer sp-border sp-border-neutral-20 sp-border-solid sp-rounded sp-p-2 sp-text-10px sp-text-neutral-40 hover:sp-border-neutral-40 hover:sp-text-40 sp-mr-1",class:{"sp-invisible":0==t.notification_index},attrs:{title:t.txt_7},on:{click:function(s){return s.preventDefault(),t.scroll_notifications("prev")}}},[e("i",{staticClass:"fa fa-chevron-left",attrs:{"aria-hidden":"true"}})]),e("a",{staticClass:"sp-cursor-pointer sp-border sp-border-neutral-20 sp-border-solid sp-rounded sp-p-2 sp-text-10px sp-text-neutral-40 hover:sp-border-neutral-40 hover:sp-text-40",class:{"sp-invisible":t.notification_index==t.shared.notifications.length-1},attrs:{title:t.txt_8},on:{click:function(s){return s.preventDefault(),t.scroll_notifications("next")}}},[e("i",{staticClass:"fa fa-chevron-right",attrs:{"aria-hidden":"true"}})])])])])]):t._e(),e("div",{staticClass:"sp-pl-3 sp-pr-8"},[e("keep-alive",[e("router-view")],1)],1)])},o=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[t._v('\n We have migrated your page settings from the old version to our new builder. Don\'t worry nothing has changed with your page. Your old version will continue to display until you click "Edit" on the Coming Soon or Maintenance Page and then "Save". After Saving the new version will be displayed.\n '),e("br"),e("a",{staticClass:"sp-text-white sp-font-bold",attrs:{href:"https://www.seedprod.com/docs/migrating-from-the-previous-free-version/",target:"_blank"}},[t._v("Learn more about the all new SeedProd plugin and how to complete the migration process.")])])}],r=e("4328"),p=e.n(r),l=(e("2ef0"),e("561c")),c={data:function(){return{txt_1:Object(l["a"])("Pages","coming-soon"),txt_2:Object(l["a"])("Growth Tools","coming-soon"),txt_3:Object(l["a"])("About Us","coming-soon"),txt_4:Object(l["a"])("Subscribers","coming-soon"),txt_5:Object(l["a"])("Settings","coming-soon"),txt_6:Object(l["a"])("SeedProd Logo","coming-soon"),txt_7:Object(l["a"])("Previous message ","coming-soon"),txt_8:Object(l["a"])("Next message","coming-soon"),notification_index:0,shared:seedprod_store_admin}},mounted:function(){},watch:{$route:function(t,s){jQuery("html").scrollTop(0)}},methods:{dismiss_upsell:function(){var t=p.a.stringify({id:1});this.axios.post(seedprod_dismiss_upsell,t,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.status&&location.reload()})},dismiss_notifications:function(t){var s=this,e=p.a.stringify({id:t});s.$delete(s.shared.notifications,s.notification_index),s.notification_index>0?s.notification_index=s.notification_index-1:s.notification_index.length>1&&0==s.notification_index?s.notification_index=s.notification_index+1:s.notification_index=0,this.axios.post(seedprod_notification_dismiss,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.success&&location.reload()})},scroll_notifications:function(t){"prev"==t&&this.notification_index--,"next"==t&&this.notification_index++},goto_settings:function(){this.$router.push({name:"settings"}).catch(function(t){})},show_upgrade_notice:function(t,s){var e=this,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"link",n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];n?(t="Upgrade to PRO",s="Increase traffic, engagement, and get more email subscribers. Click below to learn more about all our awesome features."):(t+=" is a PRO Feature",s="We're sorry, the "+s+" feature is not available on your plan. Please upgrade to the PRO plan to unlock all these awesome features."),this.$swal({title:t,text:s,type:"success",showCancelButton:!1,confirmButtonColor:"#4CAF50",cancelButtonColor:"#d33",confirmButtonText:"UPGRADE TO PRO"}).then(function(t){t.value&&(window.open(e.shared.upgrade_link+a,"_blank"),e.$swal.fire("","Thanks for your interest in SeedProd Pro!<br>If you have any questions or issues just <a href='https://www.seedprod.com/?contact=1' target='_blank'>let us know</a>.<br><br>After purchasing SeedProd Pro, you'll need to download and install the Pro version of the plugin, and then remove the free plugin. <br><br>(Don't worry, all your settings will be preserved.)","info"))})}}},d=c,u=e("2877"),g=Object(u["a"])(d,i,o,!1,null,null,null),m=g.exports,h=e("8c4f"),b=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{attrs:{id:"poststuff"}},[e("div",{staticClass:"metabox-holder columns-1",attrs:{id:"post-body"}},[e("div",{staticClass:"clearfix",attrs:{id:"post-body-content"}},[e("div",{staticClass:"sp-flex sp-mt-8 sp-overflow-x-scroll sp-pb-2"},[e("div",{staticClass:"sp-border sp-border-neutral-15 sp-border-solid sp-bg-white sp-w-275 sp-text-center sp-flex-shrink-0"},[e("img",{staticClass:"sp-mx-auto sp-block sp-mt-8 sp-mb-5",attrs:{src:t.shared.plugin_path+"public/svg/cs-page.svg",alt:t.txt_29}}),e("div",{staticClass:"sp-text-xl sp-text-center sp-font-bold sp-mb-6 sp-text-neutral"},[t._v("\n "+t._s(t.txt_1)+"\n ")]),e("p",{staticClass:"sp-px-5 sp-text-15px sp-text-center sp-my-4 sp-text-neutral"},[t._v("\n "+t._s(t.txt_3)+"\n ")]),""==t.shared.csp_id?e("div",[e("a",{staticClass:"sp-font-semibold sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("cs")}}},[t._v(t._s(t.txt_4))])]):e("div",[e("a",{staticClass:"sp-font-semibold sp-mr-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("cs")}}},[t._v(t._s(t.txt_5))]),1!=t.shared.seedprod_csp4_imported?e("a",{staticClass:"sp-font-semibold sp-ml-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-neutral-80 sp-no-underline hover:sp-bg-neutral-15",attrs:{href:t.shared.csp_preview_url,target:"_blank"}},[t._v(t._s(t.txt_6))]):t._e()]),e("div",{staticClass:"sp-bg-neutral-5 sp-h-8 sp-flex sp-items-center sp-justify-center"},[e("toggle-button",{attrs:{width:40,sync:!0},on:{change:function(s){return t.enable_mode(1)}},model:{value:t.shared.settings.enable_coming_soon_mode,callback:function(s){t.$set(t.shared.settings,"enable_coming_soon_mode",s)},expression:"shared.settings.enable_coming_soon_mode"}}),t._v(" \n "),t.shared.settings.enable_coming_soon_mode?e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-green sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_7))]):e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_8))])],1)]),e("div",{staticClass:"sp-ml-4 sp-border sp-border-neutral-15 sp-border-solid sp-bg-white sp-w-275 sp-text-center sp-flex-shrink-0"},[e("img",{staticClass:"sp-mx-auto sp-block sp-mt-8 sp-mb-5",attrs:{src:t.shared.plugin_path+"public/svg/mm-page.svg",alt:t.txt_30}}),e("div",{staticClass:"sp-text-xl sp-text-center sp-font-bold sp-mb-6 sp-text-neutral"},[t._v("\n "+t._s(t.txt_9)+"\n ")]),e("p",{staticClass:"sp-px-5 sp-text-15px sp-text-center sp-my-4 sp-text-neutral"},[t._v("\n "+t._s(t.txt_10)+"\n ")]),""==t.shared.mmp_id?e("div",[e("a",{staticClass:"sp-font-semibold sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("mm")}}},[t._v(t._s(t.txt_11))])]):e("div",[e("a",{staticClass:"sp-font-semibold sp-mr-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("mm")}}},[t._v(t._s(t.txt_5))]),1!=t.shared.seedprod_csp4_imported?e("a",{staticClass:"sp-font-semibold sp-ml-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-neutral-80 sp-no-underline hover:sp-bg-neutral-15",attrs:{href:t.shared.mmp_preview_url,target:"_blank"}},[t._v(t._s(t.txt_6))]):t._e()]),e("div",{staticClass:"sp-bg-neutral-5 sp-h-8 sp-flex sp-items-center sp-justify-center"},[e("toggle-button",{attrs:{width:40,sync:!0},on:{change:function(s){return t.enable_mode(2)}},model:{value:t.shared.settings.enable_maintenance_mode,callback:function(s){t.$set(t.shared.settings,"enable_maintenance_mode",s)},expression:"shared.settings.enable_maintenance_mode"}}),t._v(" \n "),t.shared.settings.enable_maintenance_mode?e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-green sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_7))]):e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_8))])],1)]),e("div",{staticClass:"sp-ml-4 sp-border sp-border-neutral-15 sp-border-solid sp-bg-white sp-w-275 sp-text-center sp-flex-shrink-0 sp-relative",on:{mouseenter:function(s){t.show_404_upgrade=!0},mouseleave:function(s){t.show_404_upgrade=!1}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-green sp-rounded sp-z-20 sp-px-1 sp-text-10px sp-font-semibold sp-mt-2 sp-mr-1"},[e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("g",{attrs:{fill:"none"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",opacity:".87"}})]),e("path",{attrs:{d:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"}})])]),e("div",{staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center sp-z-20 ",class:{"sp-hidden":!t.show_404_upgrade}},[e("a",{staticClass:"mt-20 sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin404page",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n Upgrade to PRO\n ")])]),e("div",{staticClass:"sp-pro-only"},[e("img",{staticClass:"sp-mx-auto sp-block sp-mt-8 sp-mb-5",attrs:{src:t.shared.plugin_path+"public/svg/404-page.svg",alt:t.txt_31}}),e("div",{staticClass:"sp-text-xl sp-text-center sp-font-bold sp-mb-6 sp-text-neutral"},[t._v("\n "+t._s(t.txt_14)+"\n ")]),e("p",{staticClass:"sp-px-5 sp-text-15px sp-text-center sp-my-4 sp-text-neutral"},[t._v("\n "+t._s(t.txt_15)+"\n ")]),""==t.shared.p404_id?e("div",[e("a",{staticClass:"sp-font-semibold sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"javascript:void(0);"}},[t._v(t._s(t.txt_16))])]):e("div",[e("a",{staticClass:"sp-font-semibold sp-mr-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"javascript:void(0);"}},[t._v(t._s(t.txt_5))]),e("a",{staticClass:"sp-font-semibold sp-ml-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-neutral-80 sp-no-underline hover:sp-bg-neutral-15",attrs:{href:"javascript:void(0);"}},[t._v(t._s(t.txt_6))])]),e("div",{staticClass:"sp-bg-neutral-5 sp-h-8 sp-flex sp-items-center sp-justify-center"},[e("toggle-button",{attrs:{width:40,sync:!0}}),t._v(" \n\n "),e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_8))])],1)])])]),e("div",{staticClass:"sp-mt-8 sp-font-semibold"},[e("hr",{staticClass:"sp-border-b-0 sp-border-neutral-15 sp-mb-10"}),e("div",{staticClass:"sp-flex sp-items-center sp-mb-6"},[e("h3",{staticClass:"sp-text-2xl sp-text-neutral sp-m-0 sp-font-bold"},[t._v("\n "+t._s(t.txt_17)+"\n ")]),e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.txt_32},expression:"{\n content: txt_32,\n }",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle sp-ml-2 sp-mr-6 sp-text-xs"}),0!=t.shared.page_count?e("a",{staticClass:"sp-font-semibold sp-text-xs sp-flex sp-items-center sp-inline-block sp-bg-primary sp-px-3 sp-py-2 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"admin.php?page="+t.shared.page_path+"_template&id=0#/template"}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("\n "+t._s(t.txt_18)+"\n ")]):t._e()]),0!=t.shared.page_count?e("div",[e("ul",{staticClass:"subsubsub"},t._l(t.filters,function(s,a){return e("li",{key:a},[e("a",{class:{current:t.filter==a},attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.filter_table(a)}}},[t._v(t._s(s.label))]),t._v("\n ("+t._s(s.count)+")\n "),"archived"!=a?e("span",[t._v("|")]):t._e()])}),0),e("p",{staticClass:"search-box"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"order-search-input"}},[t._v(t._s(t.txt_2))]),e("span",{staticClass:"sp-relative sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"sp-rounded sp-border-solid sp-border sp-border-neutral-15 sp-outline-none",staticStyle:{padding:"6px 10px"},attrs:{id:"order-search-input"},domProps:{value:t.search},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.loadItems("search")},input:function(s){s.target.composing||(t.search=s.target.value)}}}),t._v(" \n "),t.search.length>0?e("i",{staticClass:"fas fa-times-circle sp-absolute sp-text-neutral-20 sp-right-0 sp-mr-2",attrs:{id:"seedprod-search-close"},on:{click:function(s){return s.preventDefault(),t.clear_search(s)}}}):t._e()]),e("input",{staticClass:"button",attrs:{type:"submit",id:"search-submit"},domProps:{value:t.txt_2},on:{click:function(s){return s.preventDefault(),t.loadItems("search")}}})]),e("list-table",{ref:"lpagedt",attrs:{columns:t.columns,loading:t.loading,rows:t.rows,actions:t.actions,"show-cb":t.showcb,"total-items":t.totalitems,"bulk-actions":t.filter_bulk(t.bulkactions),"total-pages":t.totalpages,"per-page":t.perpage,"current-page":t.currentpage,"action-column":t.actioncol,"sort-by":t.orderby,"sort-order":t.order,filter:t.filter},on:{pagination:t.goToPage,rowOver:t.rowOver,rowOut:t.rowOut,"action:click":t.onActionClick,"bulk:click":t.onBulkAction,sort:t.sortCallback},scopedSlots:t._u([{key:"subscribers",fn:function(s){return[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.goto_subscribers(s.row.id)}}},[t._v(t._s(s.row.subscribers))])]}},{key:"url",fn:function(s){return["trash"!=s.row.post_status?e("a",{attrs:{href:s.row.url,target:"_blank"}},[t._v(t._s(s.row.url))]):e("span")]}},{key:"name",fn:function(s){return[e("span",{staticClass:"sp-text-sm"},[e("a",{staticClass:"sp-font-bold",attrs:{href:"?page="+t.shared.page_path+"_builder&id="+s.row.id+"#/setup/"+s.row.id+"/block-options"}},[t._v(t._s(s.row.name))]),"publish"!=s.row.post_status?e("span",{staticClass:"post-state sp-font-bold"},[t._v(" – "+t._s(s.row.status))]):t._e()]),"trash"!=s.row.post_status?e("div",{staticClass:"row-actions",class:{"sp-invisible":t.show_row!=s.row.id}},[e("span",{staticClass:"setup"},[e("a",{attrs:{href:"?page="+t.shared.page_path+"_builder&id="+s.row.id+"#/setup/"+s.row.id+"/block-options"}},[t._v(t._s(t.txt_19))]),t._v("\n |\n ")]),e("span",{staticClass:"subscribers"},[e("a",{attrs:{href:"?page="+t.shared.page_path+"#/subscribers/"+s.row.id}},[t._v(t._s(t.txt_20))]),t._v("\n |\n ")]),e("span",{staticClass:"publish2"},[e("a",{attrs:{href:t.shared.home_url+"?p="+s.row.id+"&preview=true",target:"_blank"}},[t._v(t._s(t.txt_6))]),t._v("\n |\n ")]),e("span",{staticClass:"duplicate"},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.duplicate(s.row)}}},[t._v(t._s(t.txt_21))]),t._v("\n |\n ")]),e("span",{staticClass:"delete"},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.archive(s.row.id)}}},[t._v(t._s(t.txt_22))])])]):e("div",{staticClass:"row-actions",class:{"sp-invisible":t.show_row!=s.row.id}},[e("span",{},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.unarchive(s.row.id)}}},[t._v(t._s(t.txt_27))]),t._v("\n |\n ")]),e("span",{staticClass:"delete"},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.trash(s.row.id)}}},[t._v(t._s(t.txt_28))])])])]}},{key:"date",fn:function(s){return["publish"==s.row.post_status?e("div",{staticClass:"sp-font-semibold date column-date sp-w-full"},[t._v("\n "+t._s(t.txt_23)+"\n "),e("br"),e("span",{attrs:{title:s.row.posted_at}},[t._v(t._s(s.row.posted_at))])]):t._e(),"draft"==s.row.post_status||"trash"==s.row.post_status?e("div",{staticClass:"sp-font-semibold column-date sp-w-full"},[t._v("\n "+t._s(t.txt_24)+"\n "),e("br"),e("span",{attrs:{title:s.row.modified_at}},[t._v(t._s(s.row.modified_at))])]):t._e()]}}],null,!1,1981860501)})],1):e("div",{staticClass:"sp-bg-neutral-10 sp-flex sp-justify-center sp-flex-col sp-items-center sp-h-64"},[e("div",{staticClass:"sp-font-bold sp-text-xl sp-mb-4"},[t._v(t._s(t.txt_25))]),e("a",{staticClass:"sp-font-semibold sp-text-sm sp-inline-flex sp-items-center sp-inline-block sp-bg-primary sp-px-5 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"admin.php?page="+t.shared.page_path+"_template&id=0#/template"}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4 sp-mr-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("\n "+t._s(t.txt_26)+"\n ")])])])])])])])},f=[],v=e("bd86"),x=e("e814"),w=e.n(x),C=(e("6b54"),e("386d"),e("f499")),y=e.n(C),k=e("323e"),j=e.n(k),O=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{class:{"table-loading":t.loading}},[t.loading?e("div",{staticClass:"table-loader-wrap"},[e("div",{staticClass:"table-loader-center"},[e("div",{staticClass:"table-loader"}),e("div",{staticClass:"table-loader-txt"},[t._v(t._s(t.txt_1)+"...")])])]):t._e(),e("div",{staticClass:"tablenav top"},[t.hasBulkActions?e("div",{staticClass:"alignleft actions bulkactions"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-top"}},[t._v(t._s(t.txt_2))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkLocal,expression:"bulkLocal"}],attrs:{name:"action",id:"bulk-action-selector-top"},on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.bulkLocal=s.target.multiple?e:e[0]}}},[e("option",{attrs:{value:"-1"}},[t._v(t._s(t.txt_3))]),t._l(t.bulkActions,function(s){return e("option",{domProps:{value:s.key}},[t._v(t._s(s.label))])})],2),e("button",{staticClass:"button action",staticStyle:{"margin-bottom":"1px"},attrs:{disabled:!t.checkedItems.length&&-1===this.bulkLocal.indexOf("all")},on:{click:function(s){return s.preventDefault(),t.handleBulkAction(s)}}},[t._v("\n\t\t\t\t"+t._s(t.txt_4)+"\n\t\t\t")])]):t._e(),e("div",{staticClass:"alignleft actions"},[t._t("filters")],2),e("div",{staticClass:"tablenav-pages"},[e("span",{staticClass:"displaying-num"},[t._v(t._s(t.itemsTotal)+" "+t._s(t.txt_5))]),t.hasPagination?e("span",{staticClass:"pagination-links"},[t.disableFirst?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("«")]):e("a",{staticClass:"first-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("«")])]),t.disablePrev?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("‹")]):e("a",{staticClass:"prev-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage-1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("‹")])]),e("span",{staticClass:"paging-input"},[e("span",{staticClass:"tablenav-paging-text"},[e("input",{staticClass:"current-page",attrs:{type:"text",name:"paged","aria-describedby":"table-paging",size:"1"},domProps:{value:t.currentPage},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.goToCustomPage(s)}}}),t._v("\n\t\t\t\t\t\tof\n\t\t\t\t\t\t"),e("span",{staticClass:"total-pages"},[t._v(t._s(t.totalPages))])])]),t.disableNext?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("›")]):e("a",{staticClass:"next-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage+1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("›")])]),t.disableLast?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("»")]):e("a",{staticClass:"last-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.totalPages)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("»")])])]):t._e()])]),e("table",{class:t.tableClass},[e("thead",[e("tr",[t.showCb?e("td",{staticClass:"manage-column column-cb check-column"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.selectAll,expression:"selectAll"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.selectAll)?t._i(t.selectAll,null)>-1:t.selectAll},on:{change:function(s){var e=t.selectAll,a=s.target,n=!!a.checked;if(Array.isArray(e)){var i=null,o=t._i(e,i);a.checked?o<0&&(t.selectAll=e.concat([i])):o>-1&&(t.selectAll=e.slice(0,o).concat(e.slice(o+1)))}else t.selectAll=n}}})]):t._e(),t._l(t.columns,function(s,a){return e("th",{key:a,class:["column",a,{sortable:t.isSortable(s)},{sorted:t.isSorted(a)},{asc:t.isSorted(a)&&"asc"===t.sortOrder},{desc:t.isSorted(a)&&"desc"===t.sortOrder}]},[t.isSortable(s)?e("a",{attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.handleSortBy(a)}}},[e("span",[t._v(t._s(s.label))]),e("span",{staticClass:"sorting-indicator"})]):[t._v("\n\t\t\t\t\t\t"+t._s(s.label)+"\n\t\t\t\t\t")]],2)})],2)]),e("tfoot",[e("tr",[t.showCb?e("td",{staticClass:"manage-column column-cb check-column"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.selectAll,expression:"selectAll"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.selectAll)?t._i(t.selectAll,null)>-1:t.selectAll},on:{change:function(s){var e=t.selectAll,a=s.target,n=!!a.checked;if(Array.isArray(e)){var i=null,o=t._i(e,i);a.checked?o<0&&(t.selectAll=e.concat([i])):o>-1&&(t.selectAll=e.slice(0,o).concat(e.slice(o+1)))}else t.selectAll=n}}})]):t._e(),t._l(t.columns,function(s,a){return e("th",{key:a,class:["column",a]},[t._v("\n\t\t\t\t\t"+t._s(s.label)+"\n\t\t\t\t")])})],2)]),e("tbody",[t.rows.length?t._l(t.rows,function(s){return e("tr",{key:s[t.index],class:s["class"],on:{mouseover:function(e){return t.rowOver(s)},mouseleave:function(e){return t.rowOut(s)}}},[t.showCb?e("th",{staticClass:"check-column",attrs:{scope:"row"}},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.checkedItems,expression:"checkedItems"}],attrs:{type:"checkbox",name:"item[]"},domProps:{value:s[t.index],checked:Array.isArray(t.checkedItems)?t._i(t.checkedItems,s[t.index])>-1:t.checkedItems},on:{change:function(e){var a=t.checkedItems,n=e.target,i=!!n.checked;if(Array.isArray(a)){var o=s[t.index],r=t._i(a,o);n.checked?r<0&&(t.checkedItems=a.concat([o])):r>-1&&(t.checkedItems=a.slice(0,r).concat(a.slice(r+1)))}else t.checkedItems=i}}})]):t._e(),t._l(t.columns,function(a,n){return e("td",{key:n,class:["column",n]},[t._t(n,[t._v(t._s(s[n]))],{row:s}),t.actionColumn===n&&t.hasActions?e("div",{staticClass:"row-actions"},[t._t("row-actions",t._l(t.actions,function(a,n){return"archived"!=t.filter?e("span",{key:n,class:a.key},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.actionClicked(a.key,s)}}},[t._v(t._s(a.label))]),t.hideActionSeparator(a.key)?t._e():[t._v("\n\t\t\t\t\t\t\t\t\t\t|\n\t\t\t\t\t\t\t\t\t")]],2):t._e()}),{row:s})],2):t._e()],2)})],2)}):e("tr",[e("td",{attrs:{colspan:t.colspan}},[t._v(t._s(t.txt_6))])])],2)]),e("div",{staticClass:"tablenav bottom"},[t.hasBulkActions?e("div",{staticClass:"alignleft actions bulkactions"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-bottom"}},[t._v(t._s(t.txt_7))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkLocal,expression:"bulkLocal"}],attrs:{name:"action",id:"bulk-action-selector-bottom"},on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.bulkLocal=s.target.multiple?e:e[0]}}},[e("option",{attrs:{value:"-1"}},[t._v(t._s(t.txt_3))]),t._l(t.bulkActions,function(s,a){return e("option",{key:a,domProps:{value:s.key}},[t._v(t._s(s.label))])})],2),e("button",{staticClass:"button action",staticStyle:{"margin-bottom":"1px"},attrs:{disabled:!t.checkedItems.length},on:{click:function(s){return s.preventDefault(),t.handleBulkAction(s)}}},[t._v("\n\t\t\t\t"+t._s(t.txt_4)+"\n\t\t\t")])]):t._e(),e("div",{staticClass:"tablenav-pages"},[e("span",{staticClass:"displaying-num"},[t._v(t._s(t.itemsTotal)+" "+t._s(t.txt_5))]),t.hasPagination?e("span",{staticClass:"pagination-links"},[t.disableFirst?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("«")]):e("a",{staticClass:"first-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("«")])]),t.disablePrev?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("‹")]):e("a",{staticClass:"prev-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage-1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("‹")])]),e("span",{staticClass:"paging-input"},[e("span",{staticClass:"tablenav-paging-text"},[e("input",{staticClass:"current-page",attrs:{type:"text",name:"paged","aria-describedby":"table-paging",size:"1"},domProps:{value:t.currentPage},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.goToCustomPage(s)}}}),t._v("\n\t\t\t\t\t\tof\n\t\t\t\t\t\t"),e("span",{staticClass:"total-pages"},[t._v(t._s(t.totalPages))])])]),t.disableNext?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("›")]):e("a",{staticClass:"next-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage+1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("›")])]),t.disableLast?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("»")]):e("a",{staticClass:"last-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.totalPages)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("»")])])]):t._e()])])])},P=[],L=(e("ac6a"),e("a4bb")),S=e.n(L),M=(e("c5f6"),{name:"ListTable",props:{filter:{type:String,default:""},columns:{type:Object,required:!0,default:function(){return{}}},rows:{type:Array,required:!0,default:function(){return[]}},index:{type:String,default:"id"},showCb:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},actionColumn:{type:String,default:""},actions:{type:Array,required:!1,default:function(){return[]}},bulkActions:{type:Array,required:!1,default:function(){return[]}},tableClass:{type:String,default:"wp-list-table widefat fixed striped"},notFound:{type:String,default:"No items found."},totalItems:{type:Number,default:0},totalPages:{type:Number,default:1},perPage:{type:Number,default:20},currentPage:{type:Number,default:1},sortBy:{type:String,default:null},sortOrder:{type:String,default:"asc"}},data:function(){return{txt_1:Object(l["a"])("Loading","coming-soon"),txt_2:Object(l["a"])("Select bulk action","coming-soon"),txt_3:Object(l["a"])("Bulk Actions","coming-soon"),txt_4:Object(l["a"])("Apply","coming-soon"),txt_5:Object(l["a"])("items","coming-soon"),txt_6:Object(l["a"])("No items found.","coming-soon"),txt_7:Object(l["a"])("Select bulk action","coming-soon"),txt_8:Object(l["a"])("Select bulk action","coming-soon"),bulkLocal:"-1",checkedItems:[],shared:seedprod_store_admin}},computed:{hasActions:function(){return this.actions.length>0},hasBulkActions:function(){return this.bulkLocal="-1",this.bulkActions.length>0},itemsTotal:function(){return this.totalItems||this.rows.length},hasPagination:function(){return this.itemsTotal>this.perPage},disableFirst:function(){return 1===this.currentPage||2===this.currentPage},disablePrev:function(){return 1===this.currentPage},disableNext:function(){return this.currentPage===this.totalPages},disableLast:function(){return this.currentPage===this.totalPages||this.currentPage==this.totalPages-1},colspan:function(){var t=S()(this.columns).length;return this.showCb&&(t+=1),t},selectAll:{get:function(){return!!this.rows.length&&(!!this.rows&&this.checkedItems.length==this.rows.length)},set:function(t){var s=[],e=this;t&&this.rows.forEach(function(t){void 0!==t[e.index]?s.push(t[e.index]):s.push(t.id)}),this.checkedItems=s}}},methods:{hideActionSeparator:function(t){return t===this.actions[this.actions.length-1].key},rowOver:function(t){this.$emit("rowOver",t)},rowOut:function(t){this.$emit("rowOut",t)},actionClicked:function(t,s){this.$emit("action:click",t,s)},goToPage:function(t){this.$emit("pagination",t)},goToCustomPage:function(t){var s=w()(t.target.value);!isNaN(s)&&s>0&&s<=this.totalPages&&this.$emit("pagination",s)},handleBulkAction:function(){"-1"!==this.bulkLocal&&this.$emit("bulk:click",this.bulkLocal,this.checkedItems)},clear_checked:function(){this.checkedItems=[]},isSortable:function(t){return!(!t.hasOwnProperty("sortable")||!0!==t.sortable)},isSorted:function(t){return t===this.sortBy},handleSortBy:function(t){var s="asc"===this.sortOrder?"desc":"asc";this.$emit("sort",t,s)}}}),T=M,z=Object(u["a"])(T,O,P,!1,null,null,null),B=z.exports,A={name:"Dashboard",components:{ListTable:B},data:function(){return{txt_1:Object(l["a"])("Coming Soon Mode","coming-soon"),txt_2:Object(l["a"])("Search Landing Pages","coming-soon"),txt_3:Object(l["a"])("The Coming Soon Page will be available to search engines if your site is not private.","coming-soon"),txt_4:Object(l["a"])("Set up a Coming Soon Page","coming-soon"),txt_5:Object(l["a"])("Edit Page","coming-soon"),txt_6:Object(l["a"])("Preview","coming-soon"),txt_7:Object(l["a"])("Active","coming-soon"),txt_8:Object(l["a"])("Inactive","coming-soon"),txt_9:Object(l["a"])("Maintenance Mode","coming-soon"),txt_10:Object(l["a"])("The Maintenance Mode Page will notify search engines that the site is unavailable.","coming-soon"),txt_11:Object(l["a"])("Set up a Maintenance Mode Page","coming-soon"),txt_14:Object(l["a"])("404 Page","coming-soon"),txt_15:Object(l["a"])("Replace your default theme 404 page with a custom high converting 404 page.","coming-soon"),txt_16:Object(l["a"])("Set up a 404 Page","coming-soon"),txt_17:Object(l["a"])("Landing Pages","coming-soon"),txt_18:Object(l["a"])("Add New Landing Page","coming-soon"),txt_19:Object(l["a"])("Edit","coming-soon"),txt_20:Object(l["a"])("Subscribers","coming-soon"),txt_21:Object(l["a"])("Duplicate","coming-soon"),txt_22:Object(l["a"])("Trash","coming-soon"),txt_23:Object(l["a"])("Published","coming-soon"),txt_24:Object(l["a"])("Last Modified","coming-soon"),txt_25:Object(l["a"])("You do not have any landing pages yet.","coming-soon"),txt_26:Object(l["a"])("Create New Landing Page","coming-soon"),txt_27:Object(l["a"])("Restore","coming-soon"),txt_28:Object(l["a"])("Delete Permanently","coming-soon"),txt_29:Object(l["a"])("SeedProd Coming Soon Page","coming-soon"),txt_30:Object(l["a"])("SeedProd Maintenance Page","coming-soon"),txt_31:Object(l["a"])("SeedProd 404 Page","coming-soon"),txt_32:Object(l["a"])("Create Optin, Sales, Webinar, Thank You or any type of Landing Page you need.","coming-soon"),shared:seedprod_store_admin,show_404_upgrade:!1,show_row:!1,show_action:!1,loading:!0,search:"",showcb:!0,totalitems:0,totalpages:0,perpage:10,actioncol:"name",currentpage:1,orderby:"",order:"",filter:"all",filters:{all:{label:Object(l["a"])("All","coming-soon"),count:0},published:{label:Object(l["a"])("Published","coming-soon"),count:0},drafts:{label:Object(l["a"])("Drafts","coming-soon"),count:0},archived:{label:Object(l["a"])("Trash","coming-soon"),count:0}},bulkactions:[{key:"archive_selected_lpages",label:Object(l["a"])("Move To Trash","coming-soon")},{key:"unarchive_selected_lpages",label:Object(l["a"])("Restore","coming-soon")},{key:"delete_all_archived_lpages",label:Object(l["a"])("Delete Permanently","coming-soon")}],columns:{name:{label:Object(l["a"])("Name","coming-soon"),sortable:!0},url:{label:Object(l["a"])("URL","coming-soon"),sortable:!1},date:{label:Object(l["a"])("Date","coming-soon"),sortable:!0}},actions:[],rows:[{name:Object(l["a"])("Loading","coming-soon")+" ...",status:"",type:"",subscribers:"",entries:"",active:""}]}},methods:(a={show_actions:function(t){this.show_action=t},create_edit_page:function(t){var s=!1;"cs"==t&&(s=this.shared.csp_id),"mm"==t&&(s=this.shared.mmp_id),"p404"==t&&(s=this.shared.p404_id),s?location.href="?page="+this.shared.page_path+"_builder&id="+s+"#/setup/"+s+"/block-options":("cs"==t&&(location.href="?page="+this.shared.page_path+"_template&id=0&type=cs#/template"),"mm"==t&&(location.href="?page="+this.shared.page_path+"_template&id=0&type=mm#/template"),"p404"==t&&(location.href="?page="+this.shared.page_path+"_template&id=0&type=p404#/template"))},enable_mode:function(t){var s=t;j.a.start(),1==t&&!0===this.shared.settings.enable_maintenance_mode&&(this.shared.settings.enable_maintenance_mode=!1),2==t&&!0===this.shared.settings.enable_coming_soon_mode&&(this.shared.settings.enable_coming_soon_mode=!1);var e=p.a.stringify({settings:y()(this.shared.settings)}),a="admin-ajax.php?action="+this.shared.page_path+"_save_settings&_wpnonce="+seedprod_nonce;this.axios.post(a,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){j.a.done(),1!=s&&2!=s||location.reload()})},filter_bulk:function(t){var s=[];return s="archived"==this.filter?t.slice(1):t.slice(0,1),s},hideActionSeparator:function(t){return t===this.actions[this.actions.length-1].key},rowOver:function(t){this.show_row=t.id},rowOut:function(t){this.show_row=!1},enable_disable:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_enable_disable_lpage_ajax_url+"&id="+t.id+"&current_state="+t.active).then(function(e){s.loading=!1,"enabled"==e.data.status&&(t.active=!0,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Page Enabled",toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3})),"disabled"==e.data.status&&(t.active=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Page Disabled",toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}))})},status_action:function(t,s){"needs_setup"==s&&(location.href="?page="+this.shared.page_path+"_builder&id="+t+"#/setup/"+t)},goto_dashboard:function(){this.$router.push({name:"dashboard"})},clear_search:function(){this.search,this.loadItems()},archive:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_archive_selected_lpages+"&ids="+encodeURIComponent(t.toString())).then(function(t){s.loading=!1,s.$refs.lpagedt.clear_checked(),t.data.status&&(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Pages Moved to Trash.","coming-soon"),toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.loadItems())})},unarchive:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_unarchive_selected_lpages+"&ids="+encodeURIComponent(t.toString())).then(function(t){s.loading=!1,s.$refs.lpagedt.clear_checked(),t.data.status&&(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Pages Restored.","coming-soon"),customClass:"sp-toast-success",toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3}),s.loadItems())})},trash:function(t){var s=this,e=this;this.$swal({imageUrl:e.shared.plugin_path+"public/img/delete.png",title:Object(l["a"])("Are you sure?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:Object(l["a"])("Yes, empty trash!","coming-soon")}).then(function(a){a.value&&(e.loading=!0,s.axios.get(seedprod_delete_archived_lpages+"&ids="+encodeURIComponent(t.toString())).then(function(t){e.loading=!1,e.$refs.lpagedt.clear_checked(),t.data.status&&(e.$swal({imageUrl:e.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Pages Deleted!","coming-soon"),toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),e.loadItems())}))})},duplicate:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_duplicate_lpage_url+"&id="+t.id).then(function(t){s.loading=!1,t.data.status&&(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Page Duplicated","coming-soon"),toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.orderby="",s.loadItems())})},loadItems:function(t){"search"==t?(this.currentpage=1,this.orderby="",this.order="",this.filter=""):this.search="";var s=this;s.loading=!0,j.a.start(),this.axios.get("admin-ajax.php?action="+this.shared.page_path+"_lpage_datatable&_wpnonce="+seedprod_nonce+"&current_page="+this.currentpage+"&orderby="+this.orderby+"&order="+this.order+"&filter="+this.filter+"&s="+this.search).then(function(t){s.loading=!1,j.a.done(),s.rows=t.data.rows,s.totalitems=w()(t.data.totalitems),s.totalpages=w()(t.data.totalpages),s.currentpage=w()(t.data.currentpage),null!=t.data.views&&(s.filters.all.count=w()(t.data.views.all),s.filters.archived.count=w()(t.data.views.archived),s.filters.published.count=w()(t.data.views.published),s.filters.drafts.count=w()(t.data.views.drafts))})},filter_table:function(t){this.filter=t,0==this.filters[t].count?this.rows=[]:this.loadItems()}},Object(v["a"])(a,"show_actions",function(t){this.show_action=t}),Object(v["a"])(a,"goto_subscribers",function(t){this.$router.push({name:"subscribers",params:{id:t}})}),Object(v["a"])(a,"goToPage",function(t){this.currentpage=t,this.loadItems()}),Object(v["a"])(a,"actionClicked",function(t,s){this.onActionClick(t,s)}),Object(v["a"])(a,"onActionClick",function(t,s){"duplicate"==t&&this.duplicate(s),"delete"==t&&this.archive(s.id),"setup"==t&&(location.href="?page="+this.shared.page_path+"_builder&id="+s.id+"#/setup/"+s.id+"/block-options"),"publish2"==t&&window.open(this.shared.home_url+"?p="+s.id+"&preview=true","_blank"),"subscribers"==t&&this.$router.push({name:"subscribers",params:{id:s.id}})}),Object(v["a"])(a,"onBulkAction",function(t,s){"archive_selected_lpages"==t&&this.archive(s),"unarchive_selected_lpages"==t&&this.unarchive(s),"delete_all_archived_lpages"==t&&this.trash(s)}),Object(v["a"])(a,"sortCallback",function(t,s){this.orderby=t,this.order=s,this.loadItems()}),Object(v["a"])(a,"setWithExpiry",function(t,s,e){var a=new Date,n={value:s,expiry:a.getTime()+e};localStorage.setItem(t,y()(n))}),Object(v["a"])(a,"getWithExpiry",function(t){var s=localStorage.getItem(t);if(!s)return null;var e=JSON.parse(s),a=new Date;return a.getTime()>e.expiry?(localStorage.removeItem(t),null):e.value}),a),created:function(){this.loadItems()}},$=A,D=Object(u["a"])($,b,f,!1,null,null,null),U=D.exports,I=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-grid sp-grid-cols-1 lg:sp-grid-cols-2 xl:sp-grid-cols-3 sp-gap-6 sp-mt-10 "},t._l(t.plugins,function(s,a){return e("div",{key:a,staticClass:"sp-w-full sp-bg-white sp-border-neutral-15 sp-border sp-border-solid sp-py-10 sp-px-8 sp-flex sp-justify-between sp-flex-col"},[e("div",{staticClass:"seedprod-plugin-recommendations-block sp-flex sp-flex-col"},[e("div",{staticClass:"sp-flex sp-items-center sp-flex-col"},[e("div",[e("img",{staticClass:"sp-w-16",attrs:{src:s.icon}})]),e("div",{staticClass:"sp-text-center sp-text-neutral-80"},[e("h3",{staticClass:"sp-text-neutral-80 sp-text-xl"},[t._v(t._s(s.name))]),e("p",{staticClass:"sp-text-sm",domProps:{innerHTML:t._s(s.desc)}})])])]),e("div",[t.shared.doing_ajax==a||"all"==t.shared.doing_ajax?e("div",[t._m(0,!0)]):e("div",{staticClass:"sp-flex sp-flex-col sp-items-center"},[!0===s.is_pro?e("div",[t._v("\n "+t._s(t.plugins["wpforms-pro"])+"\n "),e("strong",[t._v(t._s(t.txt_1)+":")]),t._v(" "+t._s(t.txt_2)+"\n ")]):e("div",{staticClass:"sp-flex sp-flex-col sp-items-center"},[e("div",[e("strong",[t._v(t._s(t.txt_1)+":")]),t._v("\n "+t._s(s.status)+"\n ")]),e("button",{staticClass:"sp-mt-1 sp-inline-block sp-bg-primary sp-px-5 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",on:{click:function(s){return t.plugin_action(a)}}},[t._v(t._s(t.plugin_btn_txt(s)))])])])])])}),0)])},H=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticStyle:{"text-align":"center",flex:"1"}},[e("i",{staticClass:"fas fa-spinner fa-spin"})])}],E={name:"GrowthTools",components:{},data:function(){return{txt_1:Object(l["a"])("Status","coming-soon"),txt_2:Object(l["a"])("PRO Version installed","coming-soon"),all_plugins:{},plugins:{rafflepress:{slug_base:"rafflepress",slug:"rafflepress/rafflepress.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-rp.png",name:"RafflePress",desc:"Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.",url:"https://downloads.wordpress.org/plugin/rafflepress.zip",status:"",status_code:"",is_pro:!1},wpforms:{slug_base:"wpforms-lite",slug:"wpforms-lite/wpforms.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-wpforms.png",name:"WPForms",desc:"The most beginner friendly drag & drop WordPress forms plugin allowing you to create beautifdivcontact forms, subscription forms, payment forms, and more in minutes, not hours!",url:"https://downloads.wordpress.org/plugin/wpforms-lite.zip",status:"",status_code:"",is_pro:!1},optinmonster:{slug_base:"optinmonster",slug:"optinmonster/optin-monster-wp-api.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-om.png",name:"OptinMonster",desc:"Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers.",url:"https://downloads.wordpress.org/plugin/optinmonster.zip",status:"",status_code:"",is_pro:!1},wpmailsmtp:{slug_base:"wp-mail-smtp",slug:"wp-mail-smtp/wp_mail_smtp.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-smtp.png",name:"WP Mail SMTP",desc:"SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication.",url:"https://downloads.wordpress.org/plugin/wp-mail-smtp.zip",status:"",status_code:"",is_pro:!1},monsterinsights:{slug_base:"google-analytics-for-wordpress",slug:"google-analytics-for-wordpress/googleanalytics.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-mi.png",name:"MonsterInsights",desc:"MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.",url:"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip",status:"",status_code:"",is_pro:!1},trustpulse:{slug_base:"trustpulse-api",slug:"trustpulse-api/trustpulse.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-trustpulse.png",name:"TrustPulse",desc:"TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and conversions with social proof notifications. Use it to boost sales on your Woocommerce store, increase signups on your membership site, get more email subscribers, and more.",url:"https://downloads.wordpress.org/plugin/coming-soon.zip",status:"",status_code:"",is_pro:!1}},shared:seedprod_store_admin}},methods:{plugin_action:function(t){var s=this;this.doing_ajax=!0;var e="",a="",n=t;if(s.shared.doing_ajax=t,0===this.plugins[t].status_code){e=seedprod_get_install_addon_url;var i=p.a.stringify({plugin:this.plugins[t].url,type:"plugin"});a="install"}if(1===this.plugins[t].status_code){e=seedprod_deactivate_addon_url;i=p.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});a="deactivate"}if(2===this.plugins[t].status_code){e=seedprod_activate_addon_url;i=p.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});a="activate"}this.axios.post(e,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(e){if(s.shared.doing_ajax=!1,"install"==a)if(e.data.error){s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.error,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3});var i=p.a.stringify({plugin:s.plugins[n].slug_base});s.axios.post(seedprod_plugin_nonce_url,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data&&window.open("update.php?action=install-plugin&plugin="+s.plugins[n].slug_base+"&_wpnonce="+t.data,"_blank")})}else s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Plugin Installed, click Activate",toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate();"activate"==a&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Active",s.plugins[t].status_code=1,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})),"deactivate"==a&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3}))}).catch(function(t){s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})},plugin_btn_txt:function(t){var s="";return"Not Installed"==t.status&&(s=Object(l["a"])("Install","coming-soon")),"Active"==t.status&&(s=Object(l["a"])("Deactivate","coming-soon")),"Inactive"==t.status&&(s=Object(l["a"])("Activate","coming-soon")),s}},mounted:function(){var t=this;t.shared.doing_ajax="all",this.axios.get(seedprod_get_plugins_list_url).then(function(s){if(t.shared.doing_ajax=!1,s.data)for(var e in s.data)void 0!==t.plugins[e]&&("wpforms"==e&&0!==s.data["wpforms-pro"].status&&(t.plugins[e].is_pro=!0),"rafflepress"==e&&0!==s.data["rafflepress-pro"].status&&(t.plugins[e].is_pro=!0),"monsterinsights"==e&&0!==s.data["monsterinsights-pro"].status&&(t.plugins[e].is_pro=!0),"wpmailsmtp"==e&&0!==s.data["wpmailsmtp-pro"].status&&(t.plugins[e].is_pro=!0),t.plugins[e].status=s.data[e].label,t.plugins[e].status_code=s.data[e].status)}).catch(function(s){t.shared.doing_ajax=!1,t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})})}},N=E,F=Object(u["a"])(N,I,H,!1,null,null,null),W=F.exports,R=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-absolute sp-z-10 sp-w-full sp-flex sp-justify-center"},[e("LiteCTASubscribers")],1),e("div",{staticStyle:{filter:"blur(3px)"},attrs:{id:"seedprod-users"}},[e("div",{staticClass:"md:sp-flex sp-mt-10"},[e("div",{staticClass:"sp-w-full md:sp-w-1/2 sp-flex sp-items-center"},[e("h1",{staticClass:"sp-text-neutral sp-font-bold sp-text-2xl sp-m-0"},[t._v(t._s(t.txt_1))])]),0!=t.shared.subscriber_count?e("div",{staticClass:"sp-w-full md:sp-w-1/2 sp-flex sp-items-center sp-justify-end"},[e("a",{staticClass:"sp-inline-block sp-bg-neutral-15 hover:sp-bg-neutral-20 sp-h-40px sp-px-4 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-sm sp-cursor-pointer sp-font-semibold sp-flex sp-items-center sp-mr-2",attrs:{href:"#",target:"_blank"},on:{click:function(s){return s.preventDefault(),t.export_subscribers(s)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-relative"},[e("div",{staticClass:"sp-bg-white sp-border sp-border-neutral-20 sp-border-solid sp-rounded-sm sp-h-40px sp-w-275 sp-cursor-pointer"},[e("span",{staticClass:"sp-flex sp-items-center sp-h-40px sp-justify-between sp-text-neutral-80 sp-px-3 sp-text-base sp-truncate",on:{click:function(s){return s.preventDefault(),t.toggle_lpage_list(s)}}},[t._v("\n "+t._s(t.lpage_name)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7 10l5 5 5-5z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])]),t.show_lpage_list?e("div",{staticClass:"sp-absolute sp-bg-white sp-border sp-border-neutral-20 sp-border-solid sp-rounded-sm sp-z-20 sp-w-275 sp-h-275 sp-overflow-y-auto sp-shadow-lg sp-px-1 sp-py-1"},[e("ul",{staticClass:"sp-m-0"},[0==t.lpage_list.length&&0!=t.shared.page_count?e("li",{staticClass:"sp-m-0 sp-py-1"},[e("span",{staticClass:"sp-px-2 sp-text-neutral-80 sp-text-sm sp-font-bold"},[t._v("\n "+t._s(t.txt_3)+"\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})])]):t._e(),e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(0,0,"All Pages")}}},[t._v(t._s(t.txt_4))])]),""!=t.shared.csp_id?e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(t.shared.csp_id,t.shared.csp_uuid,"Coming Soon Page")}}},[t._v(t._s(t.txt_5))])]):t._e(),""!=t.shared.mmp_id?e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(t.shared.mmp_id,t.shared.mmp_uuid,"Maintenance Mode Page")}}},[t._v(t._s(t.txt_6))])]):t._e(),""!=t.shared.p404_id?e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(t.shared.p404_id,t.shared.p404_uuid,"404 Page")}}},[t._v(t._s(t.txt_7))])]):t._e(),0!=t.lpage_list.length?e("hr",{staticClass:"sp-border sp-border-neutral-20 sp-border-b-0"}):t._e(),0!=t.lpage_list.length?e("li",{staticClass:"sp-m-0 sp-py-1"},[e("span",{staticClass:"sp-px-2 sp-text-neutral-40 sp-font-bold sp-uppercase sp-tracking-wide sp-text-12px"},[t._v(t._s(t.txt_8))])]):t._e(),t._l(t.lpage_list,function(s,a){return e("li",{key:a,staticClass:"sp-m-0"},[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-1 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.load_lpage_users(s.id,s.uuid,s.name)}}},[t._v(t._s(s.name))])])})],2)]):t._e()]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.chart_timeframe,expression:"chart_timeframe"}],staticClass:"sp-form-select sp-h-40px sp-border sp-border-neutral-20 sp-border-solid sp-ml-2",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.chart_timeframe=s.target.multiple?e:e[0]},t.loadItems]}},[e("option",{attrs:{value:"7"}},[t._v("7 "+t._s(t.txt_9))]),e("option",{attrs:{value:"30"}},[t._v("30 "+t._s(t.txt_9))])])]):t._e()]),0!=t.shared.subscriber_count?e("div",[e("div",{staticClass:"sp-border sp-border-neutral-20 sp-border-solid sp-mt-5 sp-mb-3"},[e("GChart",{attrs:{type:"AreaChart",data:t.chartData,options:t.chartOptions}})],1),e("div",{attrs:{id:"poststuff"}},[e("div",{staticClass:"metabox-holder columns-1",attrs:{id:"post-body"}},[e("div",{staticClass:"clearfix",attrs:{id:"post-body-content"}},[e("ul",{staticClass:"subsubsub"},t._l(t.filters,function(s,a){return e("li",{key:a},[e("a",{class:{current:t.filter==a},attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.filter_table(a)}}},[t._v(t._s(s.label))]),t._v("\n ("+t._s(s.count)+")\n "),"invalid"!=a?e("span",[t._v("|")]):t._e()])}),0),e("p",{staticClass:"search-box sp-hidden"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"order-search-input"}},[t._v(t._s(t.txt_12))]),e("span",{staticClass:"sp-relative sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"sp-rounded sp-border-solid sp-border sp-border-neutral-15 sp-outline-none",staticStyle:{padding:"6px 10px"},attrs:{id:"order-search-input"},domProps:{value:t.search},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.loadItems("search")},input:function(s){s.target.composing||(t.search=s.target.value)}}}),t._v(" \n "),t.search.length>0?e("i",{staticClass:"fas fa-times-circle sp-absolute sp-text-neutral-20 sp-right-0 sp-mr-2",attrs:{id:"seedprod-search-close"},on:{click:function(s){return s.preventDefault(),t.clear_search(s)}}}):t._e()]),e("input",{staticClass:"button",attrs:{type:"submit",id:"search-submit"},domProps:{value:t.txt_12},on:{click:function(s){return s.preventDefault(),t.loadItems("search")}}})]),e("list-table",{ref:"subscribersdt",attrs:{columns:t.columns,loading:t.loading,rows:t.rows,actions:t.actions,"show-cb":t.showcb,"total-items":t.totalitems,"bulk-actions":t.bulkactions,"total-pages":t.totalpages,"per-page":t.perpage,"current-page":t.currentpage,"action-column":t.actioncol,"sort-by":t.orderby,"sort-order":t.order},on:{pagination:t.goToPage,"action:click":t.onActionClick,"bulk:click":t.onBulkAction,sort:t.sortCallback}})],1)]),e("br",{staticClass:"clear"})])]):e("div",{staticClass:"sp-mt-6 sp-bg-neutral-10 sp-flex sp-justify-center sp-flex-col sp-items-center sp-h-64"},[e("div",{staticClass:"sp-font-bold sp-text-xl sp-mb-4"},[t._v(t._s(t.txt_10))]),e("a",{staticClass:"sp-font-semibold sp-text-sm sp-inline-flex sp-items-center sp-inline-block sp-bg-primary sp-px-5 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"admin.php?page="+t.shared.page_path}},[t._v(t._s(t.txt_11))])])])])},V=[],G=e("a745"),Y=e.n(G),q=e("b132"),K=e("cb43"),J=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-mt-6 sp-bg-white sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-px-10 sp-py-10 sp-text-center",staticStyle:{width:"650px"}},[e("div",[e("span",{staticClass:"sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")]),e("h1",{staticClass:"sp-mt-4 sp-mb-8 sp-leading-tight sp-text-34px sp-font-bold sp-text-neutral"},[t._v("\n \n Start Collecting Emails with SeedProd Pro\n ")]),e("div",{staticClass:"sp-text-center sp-mb-4 sp-text-base"},[e("div",{staticClass:"sp-inline-flex sp-text-left"},[e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v("\n "+t._s(t.txt_995)+"\n ")]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_996))])]),e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9910))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9911))])])])]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginsubscriberpage",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")])])])])},Q=[],X={name:"LiteCTASubscribers",data:function(){return{txt_1:Object(l["a"])("Dismiss this message","coming-soon"),txt_2:Object(l["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(l["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(l["a"])("Pro Features:","coming-soon"),txt_995:Object(l["a"])("Filter by Page","coming-soon"),txt_996:Object(l["a"])("Export to a CSV File","coming-soon"),txt_997:Object(l["a"])("Premium Email Marketing Integrations","coming-soon"),txt_998:Object(l["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(l["a"])("Page Access Controls","coming-soon"),txt_9910:Object(l["a"])("Subscribers Over Time","coming-soon"),txt_9911:Object(l["a"])("See Name and Emails","coming-soon"),txt_9912:Object(l["a"])("Email Subscriber Management","coming-soon"),txt_9913:Object(l["a"])("Saved Templates","coming-soon"),txt_9914:Object(l["a"])("Plus much more...","coming-soon"),txt_15:Object(l["a"])("Bonus:","coming-soon"),txt_16:Object(l["a"])("SeedProd Lite users get","coming-soon"),txt_17:Object(l["a"])("a discount off the regular price","coming-soon"),txt_18:Object(l["a"])("automatically applied at checkout.","coming-soon"),txt_19:Object(l["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon"),shared:seedprod_store_admin}},methods:{dismiss:function(){var t=this,s=p.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},Z=X,tt=Object(u["a"])(Z,J,Q,!1,null,null,null),st=tt.exports;window.lodash=_.noConflict();var et={name:"Subscribers",mixins:[q["a"]],components:{ListTable:B,GChart:K["GChart"],LiteCTASubscribers:st},data:function(){var t;return t={txt_1:Object(l["a"])("Subscribers Overview","coming-soon"),txt_2:Object(l["a"])("Export to CSV","coming-soon"),txt_3:Object(l["a"])("Loading","coming-soon"),txt_4:Object(l["a"])("All Pages","coming-soon"),txt_5:Object(l["a"])("Coming Soon Page","coming-soon"),txt_6:Object(l["a"])("Maintenance Mode Page","coming-soon"),txt_7:Object(l["a"])("404 Page","coming-soon"),txt_8:Object(l["a"])("Landing Pages","coming-soon"),txt_9:Object(l["a"])("Days","coming-soon"),chart_timeframe:7,txt_10:Object(l["a"])("You do not have any subscribers yet.","coming-soon"),txt_11:Object(l["a"])("Go to Pages","coming-soon"),txt_12:Object(l["a"])("Search Emails","coming-soon")},Object(v["a"])(t,"chart_timeframe",7),Object(v["a"])(t,"chartData",[]),Object(v["a"])(t,"chartOptions",{chart:{title:"Subsribers Overview",subtitle:"Subscribers"},colors:["#DD4A1F"]}),Object(v["a"])(t,"enable_confirmation_email",!1),Object(v["a"])(t,"show_lpage_list",!1),Object(v["a"])(t,"shared",seedprod_store_admin),Object(v["a"])(t,"lpage_name","All Pages"),Object(v["a"])(t,"show_action",!1),Object(v["a"])(t,"lpage_uuid",""),Object(v["a"])(t,"lpage_id",this.$route.params.id),Object(v["a"])(t,"loading",!0),Object(v["a"])(t,"search",""),Object(v["a"])(t,"showcb",!0),Object(v["a"])(t,"totalitems",0),Object(v["a"])(t,"totalpages",0),Object(v["a"])(t,"perpage",100),Object(v["a"])(t,"actioncol","email"),Object(v["a"])(t,"currentpage",1),Object(v["a"])(t,"orderby",""),Object(v["a"])(t,"order",""),Object(v["a"])(t,"filter","all"),Object(v["a"])(t,"seedprod_remote_api",seedprod_remote_api),Object(v["a"])(t,"filters",{}),Object(v["a"])(t,"bulkactions",[{key:"delete_subscribers",label:"Delete Subscribers"}]),Object(v["a"])(t,"columns",{email:{label:Object(l["a"])("Email","coming-soon"),sortable:!1},full_name:{label:Object(l["a"])("Name","coming-soon"),sortable:!1},created_at:{label:Object(l["a"])("Created","coming-soon"),sortable:!1}}),Object(v["a"])(t,"actions",[{key:"delete",label:Object(l["a"])("Delete","coming-soon")}]),Object(v["a"])(t,"lpage_list",[]),Object(v["a"])(t,"rows",[{name:Object(l["a"])("Loading","coming-soon")+" ...",status:"",type:"",subscribers:"",entries:"",active:""}]),t},methods:{load_lpages:function(){var t=this;this.axios.get("admin-ajax.php?action="+this.shared.page_path+"_get_lpage_list&_wpnonce="+seedprod_nonce).then(function(s){s.data&&(t.lpage_list=s.data,lodash.each(t.lpage_list,function(s,e){s.id==t.$route.params.id&&""==t.lpage_uuid&&(t.lpage_uuid=s.uuid,t.lpage_name=s.name,t.load_lpage_users(s.id,s.uuid,s.name,!1))}))})},load_lpage_users:function(t,s,e){var a=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];this.show_lpage_list=!1,this.lpage_id=t,this.lpage_uuid=s,this.lpage_name=e,a?this.$router.push({name:"subscribers",params:{id:t}}):this.loadItems()},clear_search:function(){this.search,this.loadItems()},toggle_lpage_list:function(){!1===this.show_lpage_list&&this.load_lpages(),this.show_lpage_list=!this.show_lpage_list},trash:function(t){var s=this,e=this,a="";Y()(t)&&(a="s"),this.$swal({imageUrl:e.shared.plugin_path+"public/img/delete.png",title:Object(l["a"])("Are you sure?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:"Yes, delete user"+a+"!"}).then(function(a){if(a.value){e.loading=!0;var n=seedprod_delete_subscribers_url,i=p.a.stringify({items:t,api_token:e.shared.api_token});s.axios.post(n,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){e.loading=!1,e.$refs.subscribersdt.clear_checked(),(t.data>0||1==t.data.success)&&(e.$swal({imageUrl:e.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(l["a"])("Subscribers Deleted","coming-soon"),toast:!0,customClass:"sp-toast-error",type:null,position:"top-end",showConfirmButton:!1,timer:3e3}),e.loadItems())}).catch(function(t){j.a.done(),console.log(t),e.shared.doing_ajax=!1,e.$swal({imageUrl:e.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})}})},export_subscribers:function(){location.href="admin.php?page="+this.shared.page_path+"&action="+this.shared.page_path+"_export_subscribers&id="+this.lpage_id+"&page_uuid="+this.lpage_uuid+"&_wpnonce="+seedprod_nonce,this.$swal({imageUrl:this.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Exported Started","coming-soon"),toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})},loadItems:function(t,s){"search"==t?(this.currentpage=1,this.orderby="",this.order="",this.filter=""):this.search="";seedprod_remote_api;var e=this;e.loading=!0,j.a.start(),this.axios.get("admin-ajax.php?action="+this.shared.page_path+"_subscribers_datatable&_wpnonce="+seedprod_nonce+"&current_page="+this.currentpage+"&orderby="+this.orderby+"&order="+this.order+"&filter="+this.filter+"&s="+this.search+"&id="+this.lpage_uuid+"&interval="+this.chart_timeframe).then(function(t){e.loading=!1,j.a.done(),t.data.lpage_name&&(e.lpage_name=t.data.lpage_name),"all"==e.filter&&0==e.shared.subscriber_count?(e.shared.subscriber_count=t.data.subscribers.total,e.axios.get(seedprod_update_subscriber_count)):e.shared.subscriber_count=1,e.rows=t.data.rows,e.totalitems=w()(t.data.totalitems),e.totalpages=w()(t.data.totalpages),e.currentpage=w()(t.data.currentpage),e.chartData=t.data.recent_subscribers})},goToPage:function(t){this.currentpage=t,this.loadItems()},onActionClick:function(t,s){"delete"==t&&this.trash(s.id)},onBulkAction:function(t,s){"delete_subscribers"==t&&this.trash(s)},sortCallback:function(t,s){this.orderby=t,this.order=s,this.loadItems()}},created:function(){0==this.$route.params.id&&this.loadItems(),this.load_lpages()},watch:{$route:function(t,s){this.filter="all",this.loadItems("",t.params.id)}}},at=et,nt=Object(u["a"])(at,R,V,!1,null,null,null),it=nt.exports,ot=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{attrs:{id:"seedprod-settings"}},[e("router-view",{attrs:{name:"main"}})],1)])},rt=[],pt={name:"Settings",data:function(){return{txt_1:Object(l["a"])("General","coming-soon"),txt_2:Object(l["a"])("Emails","coming-soon"),txt_3:Object(l["a"])("Integrations","coming-soon"),shared:seedprod_store_admin}},created:function(){var t=document.querySelector(".wp-first-item a[href='admin.php?page="+this.shared.page_path+"']"),s="current";t.classList.remove(s),t.parentNode.classList.remove(s);t=document.querySelector("a[href='admin.php?page="+this.shared.page_path+"_settings']"),s="current";t.classList?t.classList.add(s):t.className+=" "+s,t.parentNode.classList?t.parentNode.classList.add(s):t.parentNode.className+=" "+s},methods:{}},lt=pt,ct=Object(u["a"])(lt,ot,rt,!1,null,null,null),dt=ct.exports,ut=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("table",{staticClass:"form-table sp-text-neutral-80"},[e("tbody",[e("tr",{staticClass:"seedprod-settings-title",attrs:{valign:"top"}},[e("td",{staticClass:"sp-p-0 sp-border-b sp-border-t-0 sp-border-l-0 sp-border-r-0 sp-border-neutral-10 sp-border-solid sp-pb-5",attrs:{colspan:"2"}},[e("h4",{staticClass:"sp-text-xl sp-mt-4 sp-mb-1"},[t._v(t._s(t.txt_1))]),"seedprod_pro"==t.shared.page_path?e("p",[t._v("\n\t\t\t\t\t\t"+t._s(t.txt_2)+"\n\t\t\t\t\t")]):t._e(),"seedprod_lite"==t.shared.page_path?e("p",[e("span",{domProps:{innerHTML:t._s(t.txt_3)}}),e("img",{staticClass:"emoji",attrs:{draggable:"false",alt:"🙂",src:"https://s.w.org/images/core/emoji/11.2.0/svg/1f642.svg"}})]):t._e(),"seedprod_lite"==t.shared.page_path?e("p",{staticClass:"sp-mt-2",domProps:{innerHTML:t._s(t.txt_4)}}):t._e()])]),"seedprod_pro"==t.shared.page_path?e("tr",{staticClass:"seedprod-settings-form sp-border-b sp-border-t-0 sp-border-l-0 sp-border-r-0 sp-border-neutral-10 sp-border-solid",attrs:{valign:"top"}},[e("th",{attrs:{scope:"row"}},[e("strong",{staticClass:"sp-text-neutral-80"},[t._v(t._s(t.txt_6))])]),e("td",[e("form",{staticClass:"form-inline"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings_page_meta.api_key,expression:"shared.settings_page_meta.api_key"}],staticClass:"sp-form-input sp-w-64 sp-m-0",staticStyle:{"margin-bottom":"5px"},attrs:{type:"password",autocomplete:"off",placeholder:t.txt_7},domProps:{value:t.shared.settings_page_meta.api_key},on:{input:function(s){s.target.composing||t.$set(t.shared.settings_page_meta,"api_key",s.target.value)}}}),e("button",{staticClass:"sp-inline-block sp-text-sm sp-bg-primary sp-px-4 sp-py-3 sp-rounded-sm sp-leading-none sp-text-white sp-no-underline sp-rounded-md sp-text-base sp-ml-1 hover:sp-bg-primary-lighter sp-cursor-pointer",attrs:{disabled:t.shared.doing_ajax&&"api_key"==t.shared.settings_page_meta.button},on:{click:function(s){return s.preventDefault(),t.save_api_key(s)}}},[t.shared.doing_ajax&&"api_key"==t.shared.settings_page_meta.button?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v(" "),t.shared.license_name?e("span",[t._v(t._s(t.txt_8))]):e("span",[t._v(t._s(t.txt_9))])]),t.shared.license_name?e("span",[e("button",{staticClass:"sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-4 sp-py-3 sp-rounded-sm sp-leading-none sp-text-neutral-80 sp-no-underline sp-rounded-md sp-text-base sp-ml-1 hover:sp-bg-neutral-15 sp-cursor-pointer",attrs:{disabled:t.shared.doing_ajax&&"deactivate_api_key"==t.shared.settings_page_meta.button},on:{click:function(s){return s.preventDefault(),t.deactivate_api_key(s)}}},[t.shared.doing_ajax&&"deactivate_api_key"==t.shared.settings_page_meta.button?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v(" "),e("span",[t._v(t._s(t.txt_10))])])]):t._e(),"seedprod_lite"==t.shared.page_path&&t.show_unlock?e("span",[e("button",{staticClass:"btn btn-primary btn-sm",attrs:{disabled:t.shared.doing_ajax&&"unlock"==t.shared.settings_page_meta.button},on:{click:t.start_free_to_pro_upgrade}},[t.shared.doing_ajax&&"unlock"==t.shared.settings_page_meta.button?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v(" "+t._s(t.txt_11)+"\n\t\t\t\t\t\t\t")])]):t._e()]),t.shared.license_name?e("div",{staticClass:"sp-text-neutral-80",staticStyle:{"margin-top":"2px"},domProps:{innerHTML:t._s(t.txt_12)}}):t._e()])]):t._e(),e("tr",{staticClass:"seedprod-settings-title",attrs:{valign:"top"}},[e("td",{staticClass:"sp-p-0 sp-border-b sp-border-t-0 sp-border-l-0 sp-border-r-0 sp-border-neutral-10 sp-border-solid sp-pb-5",attrs:{colspan:"2"}},[e("h4",{staticClass:"sp-text-xl sp-mt-4 sp-mb-1"},[t._v(t._s(t.txt_13))]),e("a",{attrs:{href:"admin.php?page=sp_pro_debug"}},[t._v("View Debug Information")])])])])]),"seedprod_lite"==t.shared.page_path&&t.shared.show_inline_cta?e("div",[e("SettingsLiteCTA")],1):t._e()])},gt=[],_t=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-mt-6 sp-bg-white sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-px-10 sp-py-10 sp-text-center sp-relative"},[e("span",{staticClass:"sp-neutral-60 sp-absolute sp-cursor-pointer sp-right-0 sp-top-0 sp-opacity-75 sp-mt-2 sp-mr-1",on:{click:t.dismiss_upsell}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("div",[e("span",{staticClass:"sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")]),t._m(0),e("div",{staticClass:"sp-text-center sp-mb-4 sp-text-base"},[e("div",{staticClass:"sp-inline-flex sp-text-left"},[e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v("\n "+t._s(t.txt_995)+"\n ")]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_996))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_997))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_998))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_999))])]),e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9910))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9911))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9912))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9913))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9914))])])])]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginsettingsabout",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")])])])])},mt=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("h1",{staticClass:"sp-mt-4 sp-mb-8 sp-leading-tight sp-text-34px sp-font-bold sp-text-neutral"},[t._v("\n Upgrade to SeedProd Pro\n "),e("br"),t._v("Today and Save\n ")])}],ht={name:"SettingsLiteCTA",data:function(){return{txt_1:Object(l["a"])("Dismiss this message","coming-soon"),txt_2:Object(l["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(l["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(l["a"])("Pro Features:","coming-soon"),txt_995:Object(l["a"])("Powerful Page Editor","coming-soon"),txt_996:Object(l["a"])("20+ PRO Page Blocks","coming-soon"),txt_997:Object(l["a"])("Email Marketing Integrations","coming-soon"),txt_998:Object(l["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(l["a"])("Access Controls","coming-soon"),txt_9910:Object(l["a"])("100+ PRO Page Templates","coming-soon"),txt_9911:Object(l["a"])("PRO Smart Sections","coming-soon"),txt_9912:Object(l["a"])("Subscriber Management","coming-soon"),txt_9913:Object(l["a"])("Saved Templates","coming-soon"),txt_9914:Object(l["a"])("Plus much more...","coming-soon"),txt_15:Object(l["a"])("Bonus:","coming-soon"),txt_16:Object(l["a"])("SeedProd Lite users get","coming-soon"),txt_17:Object(l["a"])("a discount off the regular price","coming-soon"),txt_18:Object(l["a"])("automatically applied at checkout.","coming-soon"),txt_19:Object(l["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon"),shared:seedprod_store_admin}},methods:{dismiss_upsell:function(){var t=p.a.stringify({id:3});this.axios.post(seedprod_dismiss_upsell,t,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.status&&location.reload()})},dismiss:function(){var t=this,s=p.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},bt=ht,ft=Object(u["a"])(bt,_t,mt,!1,null,null,null),vt=ft.exports,xt={name:"SettingsGeneral",mixins:[q["a"]],data:function(){return{txt_1:Object(l["a"])("License","coming-soon"),txt_2:Object(l["a"])("Your license key provides access to updates and addons.","coming-soon"),txt_3:Object(l["a"])("You're using <strong>SeedProd Lite</strong> - No License needed. Enjoy!","coming-soon"),txt_4:Object(l["b"])(Object(l["a"])("To unlock more features consider <a href='%s' target='_blank'>upgrading to PRO</a> . As a valued SeedProd Lite user you'll receive <strong>a discount off the regular price</strong>, automatically applied at checkout!","coming-soon"),"https://www.seedprod.com/lite-upgrade/?discount=LITEUPGRADE&amp;utm_source=WordPress&amp;utm_medium=seedprod-license-page&amp;utm_campaign=liteplugin"),txt_5:Object(l["b"])(Object(l["a"])("If you already have a license key for <a href='%s' target='_blank'>SeedProd Pro</a>, please enter it to Upgrade to the Pro Features.","coming-soon"),seedprod_store_admin.upgrade_link+"welcome"),txt_6:Object(l["a"])("License Key","coming-soon"),txt_7:Object(l["a"])("Enter Your License Key Here","coming-soon"),txt_8:Object(l["a"])("Recheck Key","coming-soon"),txt_9:Object(l["a"])("Verify Key","coming-soon"),txt_10:Object(l["a"])("Deactivate Key","coming-soon"),txt_11:Object(l["a"])("Connect to SeedProd","coming-soon"),txt_12:Object(l["b"])(Object(l["a"])("You currently have the <strong>%s</strong> license.","coming-soon"),seedprod_store_admin.license_name),txt_13:Object(l["a"])("Debug Information","coming-soon"),show_unlock:!1,shared:seedprod_store_admin}},computed:{slug:function(){var t=this.slugify(this.page_meta.upgrade_feature);return t}},methods:{goto_dashboard:function(){this.$router.push({name:"dashboard"})},start_free_to_pro_upgrade:function(){var t=this;j.a.start();var s=p.a.stringify({});t.shared.doing_ajax=!0,t.shared.settings_page_meta.button="unlock",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Preparing to Unlock... Please wait...",toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3}),this.axios.post(seedprod_upgrade_license_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,s.data.success?location.href=s.data.data.url:t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.data.data.message,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})})},save_settings:function(){var t=this;j.a.start(),this.$validator.validateAll().then(function(s){if(s){var e=p.a.stringify({settings:t.shared.settings});return t.shared.doing_ajax=!0,t.shared.settings_page_meta.button="settings",void t.axios.post(seedprod_save_settings_ajax_url,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){j.a.done(),t.shared.doing_ajax=!1,t.shared.settings.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Saved!","coming-soon"),toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(l["a"])("Could not be saved. Please contact Support if you continue to experience this issue.","coming-soon"),toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})})}var a="";t.errors.all().forEach(function(t){a=a+t+"\n"}),a+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:a,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})})},deactivate_api_key:function(){var t=this,s=p.a.stringify({api_key:t.shared.settings_page_meta.api_key});t.shared.doing_ajax=!0,j.a.start(),t.shared.settings_page_meta.button="deactivate_api_key",t.axios.post(seedprod_api_key_deactivate_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(j.a.done(),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,"true"==s.data.status){var e="success";t.shared.license_name="",t.shared.settings_page_meta.api_key=""}else e="error";t.$swal({imageUrl:t.shared.plugin_path+"public/svg/"+e+"-24px-white.svg",text:s.data.msg,toast:!0,type:null,customClass:"sp-toast-"+e,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})},save_api_key:function(){var t=this,s=p.a.stringify({api_key:t.shared.settings_page_meta.api_key});t.shared.doing_ajax=!0,j.a.start(),t.shared.settings_page_meta.button="api_key";var e="admin-ajax.php?action="+this.shared.page_path+"_save_api_key&_wpnonce="+seedprod_nonce;t.axios.post(e,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(j.a.done(),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.shared.license_name=1,t.txt_12=s.data.license_name,console.log(s.data.license_name),"true"==s.data.status){t.show_unlock=!0;var e="success";s.data.body.plugin_name&&(t.shared.license_name=s.data.body.plugin_name)}else{e="error";t.shared.license_name=""}t.$swal({imageUrl:t.shared.plugin_path+"public/svg/"+e+"-24px-white.svg",text:s.data.msg,toast:!0,type:null,customClass:"sp-toast-"+e,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){console.log(s),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})})}},components:{SettingsLiteCTA:vt}},wt=xt,Ct=Object(u["a"])(wt,ut,gt,!1,null,null,null),yt=Ct.exports,kt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",[e("div",{staticClass:"sp-bg-white sp--ml-5 sp-flex sp-flex-col sp-items-center",attrs:{id:"sp-welcome-top"}},[e("div",{staticClass:"robbie"},[e("img",{staticClass:"sp-mt-16",attrs:{id:"seedprod-welcome-logo",src:t.shared.plugin_path+"public/svg/seedprod-logo.svg",alt:t.txt_14}})]),e("div",{staticClass:"sp-mx-auto sp-text-center sp-text-15px sp-w-460 sp-font-semibold sp-text-neutral-80 sp-mb-6 sp-mt-5 sp-leading-relaxed"},[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-mb-32 sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-p-10 sp-w-580 sp-z-20 sp-bg-white sp-shadow-2xl"},["seedprod_lite"==t.shared.page_path?e("div",{staticClass:"sp-font-bold sp-text-base sp-text-neutral"},[e("span",{domProps:{innerHTML:t._s(t.txt_2)}}),e("img",{staticClass:"emoji",attrs:{draggable:"false",alt:"🙂",src:"https://s.w.org/images/core/emoji/11.2.0/svg/1f642.svg"}})]):t._e(),"seedprod_pro"==t.shared.page_path?e("div",{staticClass:"sp-font-bold sp-text-base sp-text-neutral sp-text-center ",attrs:{id:"license-sub"}},[t._v("\n "+t._s(t.txt_3)+"\n ")]):t._e(),"seedprod_pro"==t.shared.page_path?e("form",{staticClass:"sp-flex sp-mt-6"},[e("div",{staticClass:"sp-flex sp-mx-auto"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings_page_meta.api_key,expression:"\n\t\t\t\t\t\t\t\t\t\t\tshared.settings_page_meta.api_key\n\t\t\t\t\t\t\t\t\t\t"}],staticClass:"sp-form-input sp-h-48px",staticStyle:{"min-width":"300px"},attrs:{type:"password",name:"name",placeholder:t.txt_5,autocomplete:"off"},domProps:{value:t.shared.settings_page_meta.api_key},on:{input:function(s){s.target.composing||t.$set(t.shared.settings_page_meta,"api_key",s.target.value)}}}),e("button",{staticClass:"sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-4 sp-py-4 sp-rounded-sm sp-leading-none sp-text-white sp-no-underline sp-rounded-md sp-text-base sp-ml-1 hover:sp-bg-primary-lighter sp-cursor-pointer sp-border-none",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(s){return s.preventDefault(),t.save_api_key(s)}}},[t.shared.doing_ajax?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v("\n  "+t._s(t.txt_6)+"\n ")])])]):t._e(),e("div",{staticClass:"sp-text-15px sp-text-neutral-80 sp-text-center sp-mt-2",domProps:{innerHTML:t._s(t.txt_7)}})])]),e("div",[e("a",{staticClass:"play-video sp-mx-auto sp-block sp-text-center sp--mt-40",attrs:{href:"#",title:t.txt_15},on:{click:function(s){return s.preventDefault(),t.watch_video(s)}}},[e("img",{staticClass:"video-thumbnail",attrs:{src:t.shared.plugin_path+"public/img/welcome-video.png",alt:t.txt_13}})]),e("div",[e("div",{staticClass:"sp-text-lg sp-text-neutral-80 sp-w-full sp-leading-relaxed sp-mt-8 sp-mx-auto sp-text-center",domProps:{innerHTML:t._s(t.txt_8)}}),e("div",{staticClass:"sp-flex sp-justify-center sp-pb-3 sp-pt-6"},[e("div",{staticClass:"sp-mr-1"},[e("a",{staticClass:"sp-mb-4 sp-inline-block sp-bg-primary sp-px-5 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px sp-ml-1 hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{id:"first-step",href:"admin.php?page="+t.shared.page_path}},[t._v(t._s(t.txt_9))])]),e("div",{staticClass:"sp-ml-1"},[e("a",{staticClass:"sp-mb-4 sp-inline-block sp-bg-neutral-10 hover:sp-bg-neutral-20 sp-px-5 sp-py-4 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-17px sp-ml-1 sp-cursor-pointer sp-font-semibold",attrs:{href:"https://seedprod.com/docs/creating-your-first-lpage/?utm_source=WordPress&utm_medium=link&utm_campaign=liteplugin",target:"_blank",rel:"noopener noreferrer"}},[t._v(t._s(t.txt_10))])])])]),e("div",[e("hr",{staticClass:"sp-border sp-border-neutral-20 sp-border-b-0 sp-w-24 sp-mb-8"}),e("h1",{staticClass:"sp-text-center sp-font-bold sp-text-34px sp-text-neutral sp-mt-2 sp-leading-normal sp-tracking-tight",domProps:{innerHTML:t._s(t.txt_11)}}),e("div",{staticClass:"sp-text-17px sp-text-neutral-80 sp-mx-auto sp-w-580 sp-leading-relaxed sp-mt-8 sp-text-center sp-w-full sp-mb-12",domProps:{innerHTML:t._s(t.txt_12)}}),e("div",{staticClass:"sm:sp-flex sp-w-690 sp-mx-auto sp-text-neutral-80 sp-mb-6"},[e("div",{staticClass:"sp-flex sp-items-start sm:sp-mr-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold",domProps:{innerHTML:t._s(t.txt_16)}}),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_22)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sm:sp-ml-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_27))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n\t\t\t\t "+t._s(t.txt_28)+"\n ")])])])]),e("div",{staticClass:"sm:sp-flex sp-w-690 sp-mx-auto sp-text-neutral-80 sp-mb-6"},[e("div",{staticClass:"sp-flex sp-items-start sm:sp-mr-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_29))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_30)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sm:sp-ml-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_31))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_32)+"\n ")])])])]),e("div",{staticClass:"sm:sp-flex sp-w-690 sp-mx-auto sp-text-neutral-80 sp-mb-6"},[e("div",{staticClass:"sp-flex sp-items-start sm:sp-mr-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_33))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_34)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sm:sp-ml-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_35))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_36)+"\n ")])])])]),"seedprod_lite"==t.shared.page_path?e("div",{staticClass:"sp-mt-6 sp-bg-white sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-w-720 sp-mx-auto sp-px-10 sp-py-10 sp-text-center"},[e("div",[e("span",{staticClass:"sp-text-primary sp-text-lg sp-font-bold"},[t._v(t._s(t.txt_17))]),e("h1",{staticClass:"sp-mt-4 sp-mb-8 sp-leading-tight sp-text-34px sp-font-bold sp-text-neutral",domProps:{innerHTML:t._s(t.txt_23)}},[e("span",{staticClass:"sp-text-primary"},[t._v(t._s(t.txt_18))])]),e("div",{staticClass:"sp-text-center sp-mb-4 sp-text-base"},[e("div",{staticClass:"sp-inline-flex sp-text-left"},[e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v("\n "+t._s(t.txt_995)+"\n ")]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_996))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_997))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_998))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_999))])]),e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9910))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9911))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9912))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9913))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9914))])])])]),e("a",{staticClass:"sp-inline-block sp-bg-green sp-px-6 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-flex sp-items-center sp-justify-center",attrs:{href:this.shared.upgrade_link+"pluginwelcomepage",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" "+t._s(t.txt_24)+"\n ")])])]):t._e(),e("div",{staticClass:"sm:sp-flex sp-w-720 sp-mx-auto sp-mt-2 sp-mb-20"},[e("div",{staticClass:"sp-testimonial sm:sp-mr-3 sp-w-1/2"},[e("p",{staticClass:"sp-bg-white sp-rounded-md sp-py-5 sp-px-6 sp-text-neutral-80 sp-text-15px sp-mb-0 sp-relative sp-leading-relaxed "},[t._v(t._s(t.txt_21))]),e("div",{staticClass:"sp-flex sp-items-center sp-mt-6 sp-pl-5"},[e("img",{staticClass:"sp-w-10 sp-rounded-full sp-mr-5",attrs:{src:t.shared.plugin_path+"public/img/chris-ducker.jpg"}}),t._m(0)])]),e("div",{staticClass:"sp-testimonial sm:sp-ml-3 sp-w-1/2"},[e("p",{staticClass:"sp-bg-white sp-rounded-md sp-py-5 sp-px-6 sp-text-neutral-80 sp-text-15px sp-mb-0 sp-relative sp-leading-relaxed "},[t._v(t._s(t.txt_26))]),e("div",{staticClass:"sp-flex sp-items-center sp-mt-6 sp-pl-5"},[e("img",{staticClass:"sp-w-10 sp-rounded-full sp-mr-5",attrs:{src:t.shared.plugin_path+"public/img/ruthie-unaegbu.jpg"}}),t._m(1)])])])])])])])},jt=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-text-neutral-80 sp-text-xs"},[e("strong",{staticClass:"sp-font-bold"},[t._v("Chris Ducker")]),e("p",{staticClass:"sp-m-0 sp-text-neutral-60 sp-mt-1"},[t._v("Author of #1 Bestselling Book 'Virtual Freedom'")])])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-text-neutral-80 sp-text-xs"},[e("strong",{staticClass:"sp-font-bold"},[t._v("Ruthie Unaegbu")]),e("p",{staticClass:"sp-m-0 sp-text-neutral-60 sp-mt-1"},[t._v("WordPress Freelancer")])])}],Ot={name:"Welcome",mixins:[q["a"]],data:function(){return{txt_1:Object(l["a"])("Thank you for choosing SeedProd - The #1 Coming Soon Page and Maintenance Mode Plugin for WordPress.","coming-soon"),txt_2:Object(l["a"])("You're using <strong>SeedProd Lite</strong> - No License needed. Enjoy!","coming-soon"),txt_3:Object(l["a"])("Enter your license key to enable all the features of the plugin.","coming-soon"),txt_4:Object(l["b"])(Object(l["a"])("If you already have a license key for <a href='%s' target='_blank'>SeedProd Pro</a>, please enter it to Upgrade to the Pro Features.","coming-soon"),seedprod_store_admin.upgrade_link+"welcome"),txt_5:Object(l["a"])("Enter Your License Key Here","coming-soon"),txt_6:Object(l["a"])("Verify key","coming-soon"),txt_7:Object(l["b"])(Object(l["a"])("Don't have a license key or need to renew? Visit <a href='%s' target='_blank' class='sp-text-primary'>seedprod.com</a>","coming-soon"),"https://www.seedprod.com?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginwelcomelicense"),txt_8:Object(l["a"])("SeedProd makes it easy to create landing pages in WordPress.<br>You can watch the video tutorial or read our guide on how create your first page.","coming-soon"),txt_9:Object(l["a"])("Create Your First Page","coming-soon"),txt_10:Object(l["a"])("Read the Full Guide","coming-soon"),txt_11:Object(l["a"])("SeedProd Features &amp; Solutions","coming-soon"),txt_12:Object(l["a"])("SeedProd is both easy to use and extremely powerful. We have tons of<br />helpful features to help you create a successful landing page.","coming-soon"),txt_13:Object(l["a"])("Watch how to create your first landing page","coming-soon"),txt_14:Object(l["a"])("Robbie the Rabbit the SeedProd mascot","coming-soon"),txt_15:Object(l["a"])("Watch how to create your first page","coming-soon"),txt_16:Object(l["a"])("Drag &amp; Drop Page Builder","coming-soon"),txt_17:Object(l["a"])("Special Upgrade Offer - Save 50% Off","coming-soon"),txt_18:Object(l["a"])("Save 20%","coming-soon"),txt_19:Object(l["a"])("Pro","coming-soon"),txt_20:Object(l["a"])("per year","coming-soon"),txt_21:Object(l["a"])("\"Want to create a great looking 'coming soon' landing page and grab emails easily? Check out SeedProd\"","coming-soon"),txt_22:Object(l["a"])("Our Drag & Drop Page Builder lets you create great looking pages and layouts fast so you can get your landing page up in minutes. No coding required!","coming-soon"),txt_23:Object(l["a"])("Upgrade to SeedProd Pro<br />Today and Save","coming-soon"),txt_24:Object(l["a"])("Upgrade to PRO Now","coming-soon"),txt_25:Object(l["a"])("List","coming-soon"),txt_26:Object(l["a"])('"Just gotta say how awesome SeedProd really is! WordPress freelancers really need this in their repertoire!"',"coming-soon"),txt_27:Object(l["a"])("Landing Page Templates","coming-soon"),txt_28:Object(l["a"])("Create a variety of landing pages including sales, optin, coming soon, maintenance mode, webinar, and thank you pages. New templates added regularly.","coming-soon"),txt_29:Object(l["a"])("Smart Sections","coming-soon"),txt_30:Object(l["a"])("We created professionally designed pre-built sections like headers, calls to action, so you don't need to be a designer to create beautiful layouts.","coming-soon"),txt_31:Object(l["a"])("Premium Integrations","coming-soon"),txt_32:Object(l["a"])("Collect emails with your favorite 3rd party email marketing service providers including MailChimp, ActiveCampaign, ConvertKit, Constant Contact and more...","coming-soon"),txt_33:Object(l["a"])("No Coding Skills Needed","coming-soon"),txt_34:Object(l["a"])("We've eliminated all the technical barries that keep you from building the perfect landing page.","coming-soon"),txt_35:Object(l["a"])("Super Fast Loading Pages","coming-soon"),txt_36:Object(l["a"])("Bloat free code results in faster loading pages which means your page converts higher.","coming-soon"),txt_995:Object(l["a"])("Drag & Drop Page Builder","coming-soon"),txt_996:Object(l["a"])("20+ PRO Page Blocks","coming-soon"),txt_997:Object(l["a"])("Email Marketing Integrations","coming-soon"),txt_998:Object(l["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(l["a"])("Page Access Controls","coming-soon"),txt_9910:Object(l["a"])("100+ PRO Page Templates","coming-soon"),txt_9911:Object(l["a"])("PRO Smart Sections","coming-soon"),txt_9912:Object(l["a"])("Subscriber Management","coming-soon"),txt_9913:Object(l["a"])("Saved Templates","coming-soon"),txt_9914:Object(l["a"])("Plus much more...","coming-soon"),shared:seedprod_store_admin}},methods:{watch_video:function(){this.$swal({width:600,html:'<iframe width="100%" height="315" src="https://www.youtube.com/embed/MUXoqm3VpRo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>',toast:!1,customContainerClass:"seedprod-welcome-video"})},save_api_key:function(){var t=this,s=p.a.stringify({api_key:t.shared.settings_page_meta.api_key});t.shared.doing_ajax=!0,j.a.start(),t.shared.settings_page_meta.button="api_key";var e="admin-ajax.php?action="+this.shared.page_path+"_save_api_key&_wpnonce="+seedprod_nonce;t.axios.post(e,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(j.a.done(),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,"true"==s.data.status)var e="success";else e="error";t.$swal({imageUrl:t.shared.plugin_path+"public/svg/"+e+"-24px-white.svg",text:s.data.msg,toast:!0,type:null,customClass:"sp-toast-"+e,position:"top-end",showConfirmButton:!1,timer:3e4});var a=document.getElementById("first-step");a.scrollIntoView(!1)}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})}}},Pt=Ot,Lt=Object(u["a"])(Pt,kt,jt,!1,null,null,null),St=Lt.exports,Mt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{attrs:{id:"seedprod-aboutus"}},[e("nav",{staticClass:"sp-hidden"},[e("ul",{},[e("router-link",{attrs:{tag:"li",to:{name:"aboutus_aboutus"}}},[e("a",[e("span",[t._v(t._s(t.txt_1))])])]),e("router-link",{attrs:{tag:"li",to:{name:"aboutus_gettingstarted"}}},[e("a",[e("span",[t._v(t._s(t.txt_2))])])]),"seedprod_lite"==t.shared.page_path?e("router-link",{attrs:{tag:"li",to:{name:"aboutus_litevspro"}}},[e("a",[e("span",[t._v(t._s(t.txt_3))])])]):t._e()],1)]),e("div",[e("router-view",{attrs:{name:"main"}})],1)])},Tt=[],zt={name:"Aboutus",data:function(){return{txt_1:Object(l["a"])("About Us","coming-soon"),txt_2:Object(l["a"])("Getting Started","coming-soon"),txt_3:Object(l["a"])("Lite vs Pro","coming-soon"),shared:seedprod_store_admin}},computed:{},created:function(){var t=document.querySelector(".wp-first-item a[href='admin.php?page="+this.shared.page_path+"']"),s="current";t.classList.remove(s),t.parentNode.classList.remove(s);t=document.querySelector("a[href='admin.php?page="+this.shared.page_path+"_about_us']"),s="current";t.classList?t.classList.add(s):t.className+=" "+s,t.parentNode.classList?t.parentNode.classList.add(s):t.parentNode.className+=" "+s},methods:{}},Bt=zt,At=Object(u["a"])(Bt,Mt,Tt,!1,null,null,null),$t=At.exports,Dt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"lg:sp-flex sp-mt-10 sp-a"},[e("div",{staticClass:"sp-mr-20"},[e("h3",{staticClass:"sp-mt-0 sp-text-neutral sp-text-xl sp-leading-normal"},[t._v("\n "+t._s(t.txt_1)+"\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_2)+"\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_3)+"\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_4)+"\n "),e("a",{attrs:{href:"https://www.wpbeginner.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("WPBeginner")]),t._v(", "+t._s(t.txt_6)+",\n "),e("a",{attrs:{href:"https://optinmonster.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("OptinMonster")]),t._v(", "+t._s(t.txt_7)+",\n "),e("a",{attrs:{href:"https://www.monsterinsights.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("MonsterInsights")]),t._v(", "+t._s(t.txt_8)+",\n "),e("a",{attrs:{href:"https://www.wpforms.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("WPForms")]),t._v(", "+t._s(t.txt_9)+",\n "),e("a",{attrs:{href:"https://rafflepress.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("RafflePress")]),t._v(", "+t._s(t.txt_10)+",\n "),e("a",{attrs:{href:"https://trustpulse.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("TrustPulse")]),t._v(".\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_5)+"\n ")])]),e("div",{},[e("img",{staticClass:"sp-rounded",attrs:{src:t.shared.plugin_path+"public/img/team.jpg",alt:t.txt_11}}),e("figcaption",{staticClass:"sp-text-neutral-80 sp-text-15px sp-text-center sp-mt-6"},[t._v("\n "+t._s(t.txt_12)+": Syed, John & Thomas"),e("br")])])]),"seedprod_lite"==t.shared.page_path&&t.shared.show_inline_cta?e("div",[e("SettingsLiteCTA")],1):t._e()])},Ut=[],It={name:"AboutusAbout",data:function(){return{txt_1:Object(l["a"])("Hello and welcome to SeedProd, the most beginner friendly drag & drop WordPress landing page plugin. At SeedProd, we build software that helps you create beautiful responsive landing pages for your website in minutes.","coming-soon"),txt_2:Object(l["a"])("Over the years, we found that most WordPress landing page plugins were bloated, buggy, slow, and very hard to use. So we started with a simple goal: build a WordPress landing page plugin that’s both easy and powerful.","coming-soon"),txt_3:Object(l["a"])("Our goal is to take the pain out of creating landing pages and make it easy.","coming-soon"),txt_4:Object(l["a"])("SeedProd is brought to you by the same team that’s behind the largest WordPress resource site,","coming-soon"),txt_5:Object(l["a"])("Yup, we know a thing or two about building awesome products that customers love.","coming-soon"),txt_6:Object(l["a"])("the most popular lead-generation software","coming-soon"),txt_7:Object(l["a"])("the best WordPress analytics plugin","coming-soon"),txt_8:Object(l["a"])("the best WordPress forms plugin","coming-soon"),txt_9:Object(l["a"])("the best WordPress giveaway plugin","coming-soon"),txt_10:Object(l["a"])("and finally the best WordPress FOMO plugin","coming-soon"),txt_11:Object(l["a"])("SeedProd Team photo","coming-soon"),txt_12:Object(l["a"])("The SeedProd Team","coming-soon"),shared:seedprod_store_admin}},methods:{},components:{SettingsLiteCTA:vt}},Ht=It,Et=Object(u["a"])(Ht,Dt,Ut,!1,null,null,null),Nt=Et.exports;n["default"].use(h["a"]);var Ft=new h["a"]({routes:[{name:"dashboard",path:"/",component:U},{name:"growthtools",path:"/growth-tools",component:W},{name:"subscribers",path:"/subscribers/:id",component:it},{path:"/settings",component:dt,children:[{name:"settings_general",path:"",components:{main:yt}}]},{path:"/aboutus",component:$t,children:[{name:"aboutus_aboutus",path:"",components:{main:Nt}}]},{name:"welcome",path:"/welcome",component:St}],linkActiveClass:"active"}),Wt=Ft,Rt=e("619c"),Vt=e("e37d"),Gt=e("bc3a"),Yt=e.n(Gt),qt=e("a7fe"),Kt=e.n(qt),Jt=e("7bb1"),Qt=e("f206");n["default"].config.devtools=!0,n["default"].component("ToggleButton",Qt["ToggleButton"]),n["default"].use(Rt["a"]),n["default"].use(Jt["a"]),n["default"].use(Vt["a"],{defaultClass:"seedprod-tooltip"}),n["default"].use(Kt.a,Yt.a),n["default"].config.productionTip=!1;var Xt={show_topbar_cta:seedprod_data_admin.show_topbar_cta,show_inline_cta:seedprod_data_admin.show_inline_cta,seedprod_unsupported_feature:seedprod_data_admin.seedprod_unsupported_feature,seedprod_csp4_migrated:seedprod_data_admin.seedprod_csp4_migrated,seedprod_csp4_imported:seedprod_data_admin.seedprod_csp4_imported,seedprod_cspv5_migrated:seedprod_data_admin.seedprod_cspv5_migrated,seedprod_cspv5_imported:seedprod_data_admin.seedprod_cspv5_imported,page_count:seedprod_data_admin.page_count,subscriber_count:seedprod_data_admin.subscriber_count,notifications:seedprod_data_admin.notifications,csp_id:seedprod_data_admin.csp_id,mmp_id:seedprod_data_admin.mmp_id,p404_id:seedprod_data_admin.p404_id,csp_uuid:seedprod_data_admin.csp_uuid,mmp_uuid:seedprod_data_admin.mmp_uuid,p404_uuid:seedprod_data_admin.p404_uuid,csp_preview_url:seedprod_data_admin.csp_preview_url,mmp_preview_url:seedprod_data_admin.mmp_preview_url,p404_preview_url:seedprod_data_admin.p404_preview_url,api_token:seedprod_data_admin.api_token,license_key:seedprod_data_admin.license_key,license_name:seedprod_data_admin.license_name,per:seedprod_data_admin.per,page_path:seedprod_data_admin.page_path,name:seedprod_data_admin.name,email:seedprod_data_admin.email,upgrade_link:seedprod_data_admin.upgrade_link,doing_ajax:!1,plugin_path:seedprod_data_admin.plugin_path,home_url:seedprod_data_admin.home_url,settings:seedprod_data_admin.settings,settings_page_meta:{lclass:seedprod_data_admin.lclass,lmsg:seedprod_data_admin.lmsg,button:"",api_key:seedprod_data_admin.api_key,timezones:seedprod_data_admin.timezones,dismiss_settings_lite_cta:seedprod_data_admin.dismiss_settings_lite_cta}};window.seedprod_store_admin=Xt;new n["default"]({router:Wt,mounted:function(){},render:function(t){return t(m)}}).$mount("#seedprod-vue-app");var Zt=function(){iFrameResize({log:!1,checkOrigin:!1},"#inline-help")};window.help_iframe=Zt}});
1
+ (function(t){function s(s){for(var a,o,r=s[0],p=s[1],l=s[2],d=0,u=[];d<r.length;d++)o=r[d],n[o]&&u.push(n[o][0]),n[o]=0;for(a in p)Object.prototype.hasOwnProperty.call(p,a)&&(t[a]=p[a]);c&&c(s);while(u.length)u.shift()();return i.push.apply(i,l||[]),e()}function e(){for(var t,s=0;s<i.length;s++){for(var e=i[s],a=!0,r=1;r<e.length;r++){var p=e[r];0!==n[p]&&(a=!1)}a&&(i.splice(s--,1),t=o(o.s=e[0]))}return t}var a={},n={admin:0},i=[];function o(s){if(a[s])return a[s].exports;var e=a[s]={i:s,l:!1,exports:{}};return t[s].call(e.exports,e,e.exports,o),e.l=!0,e.exports}o.m=t,o.c=a,o.d=function(t,s,e){o.o(t,s)||Object.defineProperty(t,s,{enumerable:!0,get:e})},o.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(t,s){if(1&s&&(t=o(t)),8&s)return t;if(4&s&&"object"===typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(o.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&s&&"string"!=typeof t)for(var a in t)o.d(e,a,function(s){return t[s]}.bind(null,a));return e},o.n=function(t){var s=t&&t.__esModule?function(){return t["default"]}:function(){return t};return o.d(s,"a",s),s},o.o=function(t,s){return Object.prototype.hasOwnProperty.call(t,s)},o.p="/wp-content/plugins/seedprod-pro/public/lite/vue-backend/";var r=window["webpackJsonp"]=window["webpackJsonp"]||[],p=r.push.bind(r);r.push=s,r=r.slice();for(var l=0;l<r.length;l++)s(r[l]);var c=p;i.push([1,"chunk-vendors","chunk-common"]),e()})({1:function(t,s,e){t.exports=e("9150")},9150:function(t,s,e){"use strict";e.r(s);e("7f7f"),e("cadf"),e("551c"),e("f751"),e("097d");var a,n=e("2b0e"),i=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-app seedprod sp-antialiased sp-font-display"},["seedprod_lite"==t.shared.page_path&&t.shared.show_topbar_cta?e("div",{staticClass:"sp--ml-5 sp-bg-green sp-text-white sp-py-2 sp-px-8 sp-text-sm sp-flex sp-justify-center sp-leading-normal sp-relative"},[t._v("\n You’re using SeedProd Lite. To unlock more features consider\n "),e("a",{staticClass:"sp-ml-1 sp-text-white hover:sp-text-white sp-no-underline sp-border-0 sp-border-b sp-border-white sp-border-dotted",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugintopbar",target:"_blank"}},[t._v("upgrading to Pro")]),e("span",{staticClass:"sp-text-white sp-absolute sp-cursor-pointer sp-right-0 sp-top-0 sp-opacity-75 sp-mt-2 sp-mr-1",on:{click:t.dismiss_upsell}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])]):t._e(),!1===t.shared.seedprod_csp4_migrated&&1==t.shared.seedprod_csp4_imported?e("div",{staticClass:"sp--ml-5 sp-bg-green sp-text-white sp-py-4 sp-px-8 sp-text-lg sp-flex sp-justify-center sp-leading-normal"},[e("svg",{staticClass:"sp-fill-current sp-w-20 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"}})]),t._m(0)]):t._e(),!1===t.shared.seedprod_cspv5_migrated&&1==t.shared.seedprod_cspv5_imported?e("div",{staticClass:"sp--ml-5 sp-bg-green sp-text-white sp-py-4 sp-px-8 sp-text-lg sp-flex sp-justify-center sp-leading-normal"},[e("svg",{staticClass:"sp-fill-current sp-w-20 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"}})]),e("div",[t._v("\n We have migrated your page settings from the old version to our new builder. Don't worry nothing has changed with your pages. However, a lot has changed in the plugin.\n "),e("a",{staticClass:"sp-text-white sp-font-bold",attrs:{href:"https://www.seedprod.com/docs/migrating-from-the-previous-pro-version/?dep="+t.shared.seedprod_unsupported_feature,target:"_blank"}},[t._v("Learn more about the all new SeedProd plugin and how to complete the migration process.")])])]):t._e(),"welcome"!=t.$router.currentRoute.name?e("div",{staticClass:"sp-bg-white sp--ml-5 sp-pt-6 sp-pb-8 sp-px-8 sp-text-neutral sp-flex sp-items-end sp-justify-between"},[e("div",{staticClass:"sp-flex sp-items-end sp-flex-1"},[e("img",{attrs:{id:"seedprod-logo",src:t.shared.plugin_path+"public/svg/seedprod-logo.svg",alt:t.txt_6}}),e("span",{staticClass:"sp-inline-block sp-px-6 sp-flex sp-items-end"},[e("svg",{attrs:{width:"12",height:"29",viewBox:"0 0 12 29",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 28L11 0.999998",stroke:"#D3CED2"}})])]),"pages"==this.$route.name||"dashboard"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_1))]):t._e(),"growthtools"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_2))]):t._e(),"aboutus_aboutus"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_3))]):t._e(),"subscribers"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_4))]):t._e(),"settings_general"==this.$route.name?e("div",{staticClass:"sp-text-2xl sp-font-semibold"},[t._v(t._s(t.txt_5))]):t._e()]),e("div",[e("a",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-p-c63 sp-text-neutral-60",attrs:{href:"https://www.seedprod.com/docs/",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"}})])])])]):t._e(),t.shared.notifications.length>0?e("div",{staticClass:"sp-ml-3 sp-bg-white sp-rounded sp-p-4 sp-mt-4 sp-mr-4 sp-flex sp-shadow"},[t.shared.notifications[t.notification_index].img?e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.notifications[t.notification_index].img}}):e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/bell.svg"}}),e("div",{staticClass:"sp-flex-1"},[e("div",{staticClass:"sp-text-lg sp-font-semibold sp-mb-2 sp-flex sp-justify-between"},[t._v("\n "+t._s(t.shared.notifications[t.notification_index].title)+"\n "),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40 hover:sp-text-red",on:{click:function(s){return t.dismiss_notifications(t.shared.notifications[t.notification_index].id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])]),e("div",{staticClass:"sp-mb-3 sp-text-base",domProps:{innerHTML:t._s(t.shared.notifications[t.notification_index].content)}}),e("div",{staticClass:"sp-flex sp-justify-between sp-items-center"},[e("div",[t.shared.notifications[t.notification_index].btns.main?e("a",{staticClass:"button button-primary sp-mr-2",attrs:{href:t.shared.notifications[t.notification_index].btns.main.url,target:"_blank"}},[t._v(t._s(t.shared.notifications[t.notification_index].btns.main.text))]):t._e(),t.shared.notifications[t.notification_index].btns.alt?e("a",{staticClass:"button button-secondary",attrs:{href:t.shared.notifications[t.notification_index].btns.alt.url,target:"_blank"}},[t._v(t._s(t.shared.notifications[t.notification_index].btns.alt.text))]):t._e()]),e("div",[e("a",{staticClass:"sp-cursor-pointer sp-border sp-border-neutral-20 sp-border-solid sp-rounded sp-p-2 sp-text-10px sp-text-neutral-40 hover:sp-border-neutral-40 hover:sp-text-40 sp-mr-1",class:{"sp-invisible":0==t.notification_index},attrs:{title:t.txt_7},on:{click:function(s){return s.preventDefault(),t.scroll_notifications("prev")}}},[e("i",{staticClass:"fa fa-chevron-left",attrs:{"aria-hidden":"true"}})]),e("a",{staticClass:"sp-cursor-pointer sp-border sp-border-neutral-20 sp-border-solid sp-rounded sp-p-2 sp-text-10px sp-text-neutral-40 hover:sp-border-neutral-40 hover:sp-text-40",class:{"sp-invisible":t.notification_index==t.shared.notifications.length-1},attrs:{title:t.txt_8},on:{click:function(s){return s.preventDefault(),t.scroll_notifications("next")}}},[e("i",{staticClass:"fa fa-chevron-right",attrs:{"aria-hidden":"true"}})])])])])]):t._e(),e("div",{staticClass:"sp-pl-3 sp-pr-8"},[e("keep-alive",[e("router-view")],1)],1)])},o=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[t._v('\n We have migrated your page settings from the old version to our new builder. Don\'t worry nothing has changed with your page. Your old version will continue to display until you click "Edit" on the Coming Soon or Maintenance Page and then "Save". After Saving the new version will be displayed.\n '),e("br"),e("a",{staticClass:"sp-text-white sp-font-bold",attrs:{href:"https://www.seedprod.com/docs/migrating-from-the-previous-free-version/",target:"_blank"}},[t._v("Learn more about the all new SeedProd plugin and how to complete the migration process.")])])}],r=e("4328"),p=e.n(r),l=(e("2ef0"),e("561c")),c={data:function(){return{txt_1:Object(l["a"])("Pages","coming-soon"),txt_2:Object(l["a"])("Growth Tools","coming-soon"),txt_3:Object(l["a"])("About Us","coming-soon"),txt_4:Object(l["a"])("Subscribers","coming-soon"),txt_5:Object(l["a"])("Settings","coming-soon"),txt_6:Object(l["a"])("SeedProd Logo","coming-soon"),txt_7:Object(l["a"])("Previous message ","coming-soon"),txt_8:Object(l["a"])("Next message","coming-soon"),notification_index:0,shared:seedprod_store_admin}},mounted:function(){},watch:{$route:function(t,s){jQuery("html").scrollTop(0)}},methods:{dismiss_upsell:function(){var t=p.a.stringify({id:1});this.axios.post(seedprod_dismiss_upsell,t,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.status&&location.reload()})},dismiss_notifications:function(t){var s=this,e=p.a.stringify({id:t});s.$delete(s.shared.notifications,s.notification_index),s.notification_index>0?s.notification_index=s.notification_index-1:s.notification_index.length>1&&0==s.notification_index?s.notification_index=s.notification_index+1:s.notification_index=0,this.axios.post(seedprod_notification_dismiss,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.success&&location.reload()})},scroll_notifications:function(t){"prev"==t&&this.notification_index--,"next"==t&&this.notification_index++},goto_settings:function(){this.$router.push({name:"settings"}).catch(function(t){})},show_upgrade_notice:function(t,s){var e=this,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"link",n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];n?(t="Upgrade to PRO",s="Increase traffic, engagement, and get more email subscribers. Click below to learn more about all our awesome features."):(t+=" is a PRO Feature",s="We're sorry, the "+s+" feature is not available on your plan. Please upgrade to the PRO plan to unlock all these awesome features."),this.$swal({title:t,text:s,type:"success",showCancelButton:!1,confirmButtonColor:"#4CAF50",cancelButtonColor:"#d33",confirmButtonText:"UPGRADE TO PRO"}).then(function(t){t.value&&(window.open(e.shared.upgrade_link+a,"_blank"),e.$swal.fire("","Thanks for your interest in SeedProd Pro!<br>If you have any questions or issues just <a href='https://www.seedprod.com/?contact=1' target='_blank'>let us know</a>.<br><br>After purchasing SeedProd Pro, you'll need to download and install the Pro version of the plugin, and then remove the free plugin. <br><br>(Don't worry, all your settings will be preserved.)","info"))})}}},d=c,u=e("2877"),g=Object(u["a"])(d,i,o,!1,null,null,null),m=g.exports,h=e("8c4f"),b=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{attrs:{id:"poststuff"}},[e("div",{staticClass:"metabox-holder columns-1",attrs:{id:"post-body"}},[e("div",{staticClass:"clearfix",attrs:{id:"post-body-content"}},[e("div",{staticClass:"sp-flex sp-mt-8 sp-overflow-x-scroll sp-pb-2"},[e("div",{staticClass:"sp-border sp-border-neutral-15 sp-border-solid sp-bg-white sp-w-275 sp-text-center sp-flex-shrink-0"},[e("img",{staticClass:"sp-mx-auto sp-block sp-mt-8 sp-mb-5",attrs:{src:t.shared.plugin_path+"public/svg/cs-page.svg",alt:t.txt_29}}),e("div",{staticClass:"sp-text-xl sp-text-center sp-font-bold sp-mb-6 sp-text-neutral"},[t._v("\n "+t._s(t.txt_1)+"\n ")]),e("p",{staticClass:"sp-px-5 sp-text-15px sp-text-center sp-my-4 sp-text-neutral"},[t._v("\n "+t._s(t.txt_3)+"\n ")]),""==t.shared.csp_id?e("div",[e("a",{staticClass:"sp-font-semibold sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("cs")}}},[t._v(t._s(t.txt_4))])]):e("div",[e("a",{staticClass:"sp-font-semibold sp-mr-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("cs")}}},[t._v(t._s(t.txt_5))]),1!=t.shared.seedprod_csp4_imported?e("a",{staticClass:"sp-font-semibold sp-ml-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-neutral-80 sp-no-underline hover:sp-bg-neutral-15",attrs:{href:t.shared.csp_preview_url,target:"_blank"}},[t._v(t._s(t.txt_6))]):t._e()]),e("div",{staticClass:"sp-bg-neutral-5 sp-h-8 sp-flex sp-items-center sp-justify-center"},[e("toggle-button",{attrs:{width:40,sync:!0},on:{change:function(s){return t.enable_mode(1)}},model:{value:t.shared.settings.enable_coming_soon_mode,callback:function(s){t.$set(t.shared.settings,"enable_coming_soon_mode",s)},expression:"shared.settings.enable_coming_soon_mode"}}),t._v(" \n "),t.shared.settings.enable_coming_soon_mode?e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-green sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_7))]):e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_8))])],1)]),e("div",{staticClass:"sp-ml-4 sp-border sp-border-neutral-15 sp-border-solid sp-bg-white sp-w-275 sp-text-center sp-flex-shrink-0"},[e("img",{staticClass:"sp-mx-auto sp-block sp-mt-8 sp-mb-5",attrs:{src:t.shared.plugin_path+"public/svg/mm-page.svg",alt:t.txt_30}}),e("div",{staticClass:"sp-text-xl sp-text-center sp-font-bold sp-mb-6 sp-text-neutral"},[t._v("\n "+t._s(t.txt_9)+"\n ")]),e("p",{staticClass:"sp-px-5 sp-text-15px sp-text-center sp-my-4 sp-text-neutral"},[t._v("\n "+t._s(t.txt_10)+"\n ")]),""==t.shared.mmp_id?e("div",[e("a",{staticClass:"sp-font-semibold sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("mm")}}},[t._v(t._s(t.txt_11))])]):e("div",[e("a",{staticClass:"sp-font-semibold sp-mr-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.create_edit_page("mm")}}},[t._v(t._s(t.txt_5))]),1!=t.shared.seedprod_csp4_imported?e("a",{staticClass:"sp-font-semibold sp-ml-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-neutral-80 sp-no-underline hover:sp-bg-neutral-15",attrs:{href:t.shared.mmp_preview_url,target:"_blank"}},[t._v(t._s(t.txt_6))]):t._e()]),e("div",{staticClass:"sp-bg-neutral-5 sp-h-8 sp-flex sp-items-center sp-justify-center"},[e("toggle-button",{attrs:{width:40,sync:!0},on:{change:function(s){return t.enable_mode(2)}},model:{value:t.shared.settings.enable_maintenance_mode,callback:function(s){t.$set(t.shared.settings,"enable_maintenance_mode",s)},expression:"shared.settings.enable_maintenance_mode"}}),t._v(" \n "),t.shared.settings.enable_maintenance_mode?e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-green sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_7))]):e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_8))])],1)]),e("div",{staticClass:"sp-ml-4 sp-border sp-border-neutral-15 sp-border-solid sp-bg-white sp-w-275 sp-text-center sp-flex-shrink-0 sp-relative",on:{mouseenter:function(s){t.show_404_upgrade=!0},mouseleave:function(s){t.show_404_upgrade=!1}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-green sp-rounded sp-z-20 sp-px-1 sp-text-10px sp-font-semibold sp-mt-2 sp-mr-1"},[e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("g",{attrs:{fill:"none"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",opacity:".87"}})]),e("path",{attrs:{d:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"}})])]),e("div",{staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center sp-z-20 ",class:{"sp-hidden":!t.show_404_upgrade}},[e("a",{staticClass:"mt-20 sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin404page",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n Upgrade to PRO\n ")])]),e("div",{staticClass:"sp-pro-only"},[e("img",{staticClass:"sp-mx-auto sp-block sp-mt-8 sp-mb-5",attrs:{src:t.shared.plugin_path+"public/svg/404-page.svg",alt:t.txt_31}}),e("div",{staticClass:"sp-text-xl sp-text-center sp-font-bold sp-mb-6 sp-text-neutral"},[t._v("\n "+t._s(t.txt_14)+"\n ")]),e("p",{staticClass:"sp-px-5 sp-text-15px sp-text-center sp-my-4 sp-text-neutral"},[t._v("\n "+t._s(t.txt_15)+"\n ")]),""==t.shared.p404_id?e("div",[e("a",{staticClass:"sp-font-semibold sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"javascript:void(0);"}},[t._v(t._s(t.txt_16))])]):e("div",[e("a",{staticClass:"sp-font-semibold sp-mr-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"javascript:void(0);"}},[t._v(t._s(t.txt_5))]),e("a",{staticClass:"sp-font-semibold sp-ml-1 sp-mb-4 sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-3 sp-py-3 sp-rounded-md sp-leading-none sp-text-neutral-80 sp-no-underline hover:sp-bg-neutral-15",attrs:{href:"javascript:void(0);"}},[t._v(t._s(t.txt_6))])]),e("div",{staticClass:"sp-bg-neutral-5 sp-h-8 sp-flex sp-items-center sp-justify-center"},[e("toggle-button",{attrs:{width:40,sync:!0}}),t._v(" \n\n "),e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_8))])],1)])])]),e("div",{staticClass:"sp-mt-8 sp-font-semibold"},[e("hr",{staticClass:"sp-border-b-0 sp-border-neutral-15 sp-mb-10"}),e("div",{staticClass:"sp-flex sp-items-center sp-mb-6"},[e("h3",{staticClass:"sp-text-2xl sp-text-neutral sp-m-0 sp-font-bold"},[t._v("\n "+t._s(t.txt_17)+"\n ")]),e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.txt_32},expression:"{\n content: txt_32,\n }",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle sp-ml-2 sp-mr-6 sp-text-xs"}),0!=t.shared.page_count?e("a",{staticClass:"sp-font-semibold sp-text-xs sp-flex sp-items-center sp-inline-block sp-bg-primary sp-px-3 sp-py-2 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"admin.php?page="+t.shared.page_path+"_template&id=0#/template"}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("\n "+t._s(t.txt_18)+"\n ")]):t._e()]),0!=t.shared.page_count?e("div",[e("ul",{staticClass:"subsubsub"},t._l(t.filters,function(s,a){return e("li",{key:a},[e("a",{class:{current:t.filter==a},attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.filter_table(a)}}},[t._v(t._s(s.label))]),t._v("\n ("+t._s(s.count)+")\n "),"archived"!=a?e("span",[t._v("|")]):t._e()])}),0),e("p",{staticClass:"search-box"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"order-search-input"}},[t._v(t._s(t.txt_2))]),e("span",{staticClass:"sp-relative sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"sp-rounded sp-border-solid sp-border sp-border-neutral-15 sp-outline-none",staticStyle:{padding:"6px 10px"},attrs:{id:"order-search-input"},domProps:{value:t.search},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.loadItems("search")},input:function(s){s.target.composing||(t.search=s.target.value)}}}),t._v(" \n "),t.search.length>0?e("i",{staticClass:"fas fa-times-circle sp-absolute sp-text-neutral-20 sp-right-0 sp-mr-2",attrs:{id:"seedprod-search-close"},on:{click:function(s){return s.preventDefault(),t.clear_search(s)}}}):t._e()]),e("input",{staticClass:"button",attrs:{type:"submit",id:"search-submit"},domProps:{value:t.txt_2},on:{click:function(s){return s.preventDefault(),t.loadItems("search")}}})]),e("list-table",{ref:"lpagedt",attrs:{columns:t.columns,loading:t.loading,rows:t.rows,actions:t.actions,"show-cb":t.showcb,"total-items":t.totalitems,"bulk-actions":t.filter_bulk(t.bulkactions),"total-pages":t.totalpages,"per-page":t.perpage,"current-page":t.currentpage,"action-column":t.actioncol,"sort-by":t.orderby,"sort-order":t.order,filter:t.filter},on:{pagination:t.goToPage,rowOver:t.rowOver,rowOut:t.rowOut,"action:click":t.onActionClick,"bulk:click":t.onBulkAction,sort:t.sortCallback},scopedSlots:t._u([{key:"subscribers",fn:function(s){return[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.goto_subscribers(s.row.id)}}},[t._v(t._s(s.row.subscribers))])]}},{key:"url",fn:function(s){return["trash"!=s.row.post_status?e("a",{attrs:{href:s.row.url,target:"_blank"}},[t._v(t._s(s.row.url))]):e("span")]}},{key:"name",fn:function(s){return[e("span",{staticClass:"sp-text-sm"},[e("a",{staticClass:"sp-font-bold",attrs:{href:"?page="+t.shared.page_path+"_builder&id="+s.row.id+"#/setup/"+s.row.id+"/block-options"}},[t._v(t._s(s.row.name))]),"publish"!=s.row.post_status?e("span",{staticClass:"post-state sp-font-bold"},[t._v(" – "+t._s(s.row.status))]):t._e()]),"trash"!=s.row.post_status?e("div",{staticClass:"row-actions",class:{"sp-invisible":t.show_row!=s.row.id}},[e("span",{staticClass:"setup"},[e("a",{attrs:{href:"?page="+t.shared.page_path+"_builder&id="+s.row.id+"#/setup/"+s.row.id+"/block-options"}},[t._v(t._s(t.txt_19))]),t._v("\n |\n ")]),e("span",{staticClass:"subscribers"},[e("a",{attrs:{href:"?page="+t.shared.page_path+"#/subscribers/"+s.row.id}},[t._v(t._s(t.txt_20))]),t._v("\n |\n ")]),e("span",{staticClass:"publish2"},[e("a",{attrs:{href:t.shared.home_url+"?page_id="+s.row.id,target:"_blank"}},[t._v(t._s(t.txt_6))]),t._v("\n |\n ")]),e("span",{staticClass:"duplicate"},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.duplicate(s.row)}}},[t._v(t._s(t.txt_21))]),t._v("\n |\n ")]),e("span",{staticClass:"delete"},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.archive(s.row.id)}}},[t._v(t._s(t.txt_22))])])]):e("div",{staticClass:"row-actions",class:{"sp-invisible":t.show_row!=s.row.id}},[e("span",{},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.unarchive(s.row.id)}}},[t._v(t._s(t.txt_27))]),t._v("\n |\n ")]),e("span",{staticClass:"delete"},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.trash(s.row.id)}}},[t._v(t._s(t.txt_28))])])])]}},{key:"date",fn:function(s){return["publish"==s.row.post_status?e("div",{staticClass:"sp-font-semibold date column-date sp-w-full"},[t._v("\n "+t._s(t.txt_23)+"\n "),e("br"),e("span",{attrs:{title:s.row.posted_at}},[t._v(t._s(s.row.posted_at))])]):t._e(),"draft"==s.row.post_status||"trash"==s.row.post_status?e("div",{staticClass:"sp-font-semibold column-date sp-w-full"},[t._v("\n "+t._s(t.txt_24)+"\n "),e("br"),e("span",{attrs:{title:s.row.modified_at}},[t._v(t._s(s.row.modified_at))])]):t._e()]}}],null,!1,3456503522)})],1):e("div",{staticClass:"sp-bg-neutral-10 sp-flex sp-justify-center sp-flex-col sp-items-center sp-h-64"},[e("div",{staticClass:"sp-font-bold sp-text-xl sp-mb-4"},[t._v(t._s(t.txt_25))]),e("a",{staticClass:"sp-font-semibold sp-text-sm sp-inline-flex sp-items-center sp-inline-block sp-bg-primary sp-px-5 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"admin.php?page="+t.shared.page_path+"_template&id=0#/template"}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4 sp-mr-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("\n "+t._s(t.txt_26)+"\n ")])])])])])])])},f=[],v=e("bd86"),x=e("e814"),w=e.n(x),C=(e("6b54"),e("386d"),e("f499")),y=e.n(C),k=e("323e"),j=e.n(k),O=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{class:{"table-loading":t.loading}},[t.loading?e("div",{staticClass:"table-loader-wrap"},[e("div",{staticClass:"table-loader-center"},[e("div",{staticClass:"table-loader"}),e("div",{staticClass:"table-loader-txt"},[t._v(t._s(t.txt_1)+"...")])])]):t._e(),e("div",{staticClass:"tablenav top"},[t.hasBulkActions?e("div",{staticClass:"alignleft actions bulkactions"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-top"}},[t._v(t._s(t.txt_2))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkLocal,expression:"bulkLocal"}],attrs:{name:"action",id:"bulk-action-selector-top"},on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.bulkLocal=s.target.multiple?e:e[0]}}},[e("option",{attrs:{value:"-1"}},[t._v(t._s(t.txt_3))]),t._l(t.bulkActions,function(s){return e("option",{domProps:{value:s.key}},[t._v(t._s(s.label))])})],2),e("button",{staticClass:"button action",staticStyle:{"margin-bottom":"1px"},attrs:{disabled:!t.checkedItems.length&&-1===this.bulkLocal.indexOf("all")},on:{click:function(s){return s.preventDefault(),t.handleBulkAction(s)}}},[t._v("\n\t\t\t\t"+t._s(t.txt_4)+"\n\t\t\t")])]):t._e(),e("div",{staticClass:"alignleft actions"},[t._t("filters")],2),e("div",{staticClass:"tablenav-pages"},[e("span",{staticClass:"displaying-num"},[t._v(t._s(t.itemsTotal)+" "+t._s(t.txt_5))]),t.hasPagination?e("span",{staticClass:"pagination-links"},[t.disableFirst?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("«")]):e("a",{staticClass:"first-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("«")])]),t.disablePrev?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("‹")]):e("a",{staticClass:"prev-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage-1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("‹")])]),e("span",{staticClass:"paging-input"},[e("span",{staticClass:"tablenav-paging-text"},[e("input",{staticClass:"current-page",attrs:{type:"text",name:"paged","aria-describedby":"table-paging",size:"1"},domProps:{value:t.currentPage},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.goToCustomPage(s)}}}),t._v("\n\t\t\t\t\t\tof\n\t\t\t\t\t\t"),e("span",{staticClass:"total-pages"},[t._v(t._s(t.totalPages))])])]),t.disableNext?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("›")]):e("a",{staticClass:"next-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage+1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("›")])]),t.disableLast?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("»")]):e("a",{staticClass:"last-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.totalPages)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("»")])])]):t._e()])]),e("table",{class:t.tableClass},[e("thead",[e("tr",[t.showCb?e("td",{staticClass:"manage-column column-cb check-column"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.selectAll,expression:"selectAll"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.selectAll)?t._i(t.selectAll,null)>-1:t.selectAll},on:{change:function(s){var e=t.selectAll,a=s.target,n=!!a.checked;if(Array.isArray(e)){var i=null,o=t._i(e,i);a.checked?o<0&&(t.selectAll=e.concat([i])):o>-1&&(t.selectAll=e.slice(0,o).concat(e.slice(o+1)))}else t.selectAll=n}}})]):t._e(),t._l(t.columns,function(s,a){return e("th",{key:a,class:["column",a,{sortable:t.isSortable(s)},{sorted:t.isSorted(a)},{asc:t.isSorted(a)&&"asc"===t.sortOrder},{desc:t.isSorted(a)&&"desc"===t.sortOrder}]},[t.isSortable(s)?e("a",{attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.handleSortBy(a)}}},[e("span",[t._v(t._s(s.label))]),e("span",{staticClass:"sorting-indicator"})]):[t._v("\n\t\t\t\t\t\t"+t._s(s.label)+"\n\t\t\t\t\t")]],2)})],2)]),e("tfoot",[e("tr",[t.showCb?e("td",{staticClass:"manage-column column-cb check-column"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.selectAll,expression:"selectAll"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.selectAll)?t._i(t.selectAll,null)>-1:t.selectAll},on:{change:function(s){var e=t.selectAll,a=s.target,n=!!a.checked;if(Array.isArray(e)){var i=null,o=t._i(e,i);a.checked?o<0&&(t.selectAll=e.concat([i])):o>-1&&(t.selectAll=e.slice(0,o).concat(e.slice(o+1)))}else t.selectAll=n}}})]):t._e(),t._l(t.columns,function(s,a){return e("th",{key:a,class:["column",a]},[t._v("\n\t\t\t\t\t"+t._s(s.label)+"\n\t\t\t\t")])})],2)]),e("tbody",[t.rows.length?t._l(t.rows,function(s){return e("tr",{key:s[t.index],class:s["class"],on:{mouseover:function(e){return t.rowOver(s)},mouseleave:function(e){return t.rowOut(s)}}},[t.showCb?e("th",{staticClass:"check-column",attrs:{scope:"row"}},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.checkedItems,expression:"checkedItems"}],attrs:{type:"checkbox",name:"item[]"},domProps:{value:s[t.index],checked:Array.isArray(t.checkedItems)?t._i(t.checkedItems,s[t.index])>-1:t.checkedItems},on:{change:function(e){var a=t.checkedItems,n=e.target,i=!!n.checked;if(Array.isArray(a)){var o=s[t.index],r=t._i(a,o);n.checked?r<0&&(t.checkedItems=a.concat([o])):r>-1&&(t.checkedItems=a.slice(0,r).concat(a.slice(r+1)))}else t.checkedItems=i}}})]):t._e(),t._l(t.columns,function(a,n){return e("td",{key:n,class:["column",n]},[t._t(n,[t._v(t._s(s[n]))],{row:s}),t.actionColumn===n&&t.hasActions?e("div",{staticClass:"row-actions"},[t._t("row-actions",t._l(t.actions,function(a,n){return"archived"!=t.filter?e("span",{key:n,class:a.key},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.actionClicked(a.key,s)}}},[t._v(t._s(a.label))]),t.hideActionSeparator(a.key)?t._e():[t._v("\n\t\t\t\t\t\t\t\t\t\t|\n\t\t\t\t\t\t\t\t\t")]],2):t._e()}),{row:s})],2):t._e()],2)})],2)}):e("tr",[e("td",{attrs:{colspan:t.colspan}},[t._v(t._s(t.txt_6))])])],2)]),e("div",{staticClass:"tablenav bottom"},[t.hasBulkActions?e("div",{staticClass:"alignleft actions bulkactions"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-bottom"}},[t._v(t._s(t.txt_7))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkLocal,expression:"bulkLocal"}],attrs:{name:"action",id:"bulk-action-selector-bottom"},on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.bulkLocal=s.target.multiple?e:e[0]}}},[e("option",{attrs:{value:"-1"}},[t._v(t._s(t.txt_3))]),t._l(t.bulkActions,function(s,a){return e("option",{key:a,domProps:{value:s.key}},[t._v(t._s(s.label))])})],2),e("button",{staticClass:"button action",staticStyle:{"margin-bottom":"1px"},attrs:{disabled:!t.checkedItems.length},on:{click:function(s){return s.preventDefault(),t.handleBulkAction(s)}}},[t._v("\n\t\t\t\t"+t._s(t.txt_4)+"\n\t\t\t")])]):t._e(),e("div",{staticClass:"tablenav-pages"},[e("span",{staticClass:"displaying-num"},[t._v(t._s(t.itemsTotal)+" "+t._s(t.txt_5))]),t.hasPagination?e("span",{staticClass:"pagination-links"},[t.disableFirst?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("«")]):e("a",{staticClass:"first-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("«")])]),t.disablePrev?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("‹")]):e("a",{staticClass:"prev-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage-1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("‹")])]),e("span",{staticClass:"paging-input"},[e("span",{staticClass:"tablenav-paging-text"},[e("input",{staticClass:"current-page",attrs:{type:"text",name:"paged","aria-describedby":"table-paging",size:"1"},domProps:{value:t.currentPage},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.goToCustomPage(s)}}}),t._v("\n\t\t\t\t\t\tof\n\t\t\t\t\t\t"),e("span",{staticClass:"total-pages"},[t._v(t._s(t.totalPages))])])]),t.disableNext?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("›")]):e("a",{staticClass:"next-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.currentPage+1)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("›")])]),t.disableLast?e("span",{staticClass:"tablenav-pages-navspan button disabled",attrs:{"aria-hidden":"true"}},[t._v("»")]):e("a",{staticClass:"last-page",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.goToPage(t.totalPages)}}},[e("span",{staticClass:"tablenav-pages-navspan button",attrs:{"aria-hidden":"true"}},[t._v("»")])])]):t._e()])])])},P=[],L=(e("ac6a"),e("a4bb")),S=e.n(L),M=(e("c5f6"),{name:"ListTable",props:{filter:{type:String,default:""},columns:{type:Object,required:!0,default:function(){return{}}},rows:{type:Array,required:!0,default:function(){return[]}},index:{type:String,default:"id"},showCb:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},actionColumn:{type:String,default:""},actions:{type:Array,required:!1,default:function(){return[]}},bulkActions:{type:Array,required:!1,default:function(){return[]}},tableClass:{type:String,default:"wp-list-table widefat fixed striped"},notFound:{type:String,default:"No items found."},totalItems:{type:Number,default:0},totalPages:{type:Number,default:1},perPage:{type:Number,default:20},currentPage:{type:Number,default:1},sortBy:{type:String,default:null},sortOrder:{type:String,default:"asc"}},data:function(){return{txt_1:Object(l["a"])("Loading","coming-soon"),txt_2:Object(l["a"])("Select bulk action","coming-soon"),txt_3:Object(l["a"])("Bulk Actions","coming-soon"),txt_4:Object(l["a"])("Apply","coming-soon"),txt_5:Object(l["a"])("items","coming-soon"),txt_6:Object(l["a"])("No items found.","coming-soon"),txt_7:Object(l["a"])("Select bulk action","coming-soon"),txt_8:Object(l["a"])("Select bulk action","coming-soon"),bulkLocal:"-1",checkedItems:[],shared:seedprod_store_admin}},computed:{hasActions:function(){return this.actions.length>0},hasBulkActions:function(){return this.bulkLocal="-1",this.bulkActions.length>0},itemsTotal:function(){return this.totalItems||this.rows.length},hasPagination:function(){return this.itemsTotal>this.perPage},disableFirst:function(){return 1===this.currentPage||2===this.currentPage},disablePrev:function(){return 1===this.currentPage},disableNext:function(){return this.currentPage===this.totalPages},disableLast:function(){return this.currentPage===this.totalPages||this.currentPage==this.totalPages-1},colspan:function(){var t=S()(this.columns).length;return this.showCb&&(t+=1),t},selectAll:{get:function(){return!!this.rows.length&&(!!this.rows&&this.checkedItems.length==this.rows.length)},set:function(t){var s=[],e=this;t&&this.rows.forEach(function(t){void 0!==t[e.index]?s.push(t[e.index]):s.push(t.id)}),this.checkedItems=s}}},methods:{hideActionSeparator:function(t){return t===this.actions[this.actions.length-1].key},rowOver:function(t){this.$emit("rowOver",t)},rowOut:function(t){this.$emit("rowOut",t)},actionClicked:function(t,s){this.$emit("action:click",t,s)},goToPage:function(t){this.$emit("pagination",t)},goToCustomPage:function(t){var s=w()(t.target.value);!isNaN(s)&&s>0&&s<=this.totalPages&&this.$emit("pagination",s)},handleBulkAction:function(){"-1"!==this.bulkLocal&&this.$emit("bulk:click",this.bulkLocal,this.checkedItems)},clear_checked:function(){this.checkedItems=[]},isSortable:function(t){return!(!t.hasOwnProperty("sortable")||!0!==t.sortable)},isSorted:function(t){return t===this.sortBy},handleSortBy:function(t){var s="asc"===this.sortOrder?"desc":"asc";this.$emit("sort",t,s)}}}),T=M,z=Object(u["a"])(T,O,P,!1,null,null,null),B=z.exports,A={name:"Dashboard",components:{ListTable:B},data:function(){return{txt_1:Object(l["a"])("Coming Soon Mode","coming-soon"),txt_2:Object(l["a"])("Search Landing Pages","coming-soon"),txt_3:Object(l["a"])("The Coming Soon Page will be available to search engines if your site is not private.","coming-soon"),txt_4:Object(l["a"])("Set up a Coming Soon Page","coming-soon"),txt_5:Object(l["a"])("Edit Page","coming-soon"),txt_6:Object(l["a"])("Preview","coming-soon"),txt_7:Object(l["a"])("Active","coming-soon"),txt_8:Object(l["a"])("Inactive","coming-soon"),txt_9:Object(l["a"])("Maintenance Mode","coming-soon"),txt_10:Object(l["a"])("The Maintenance Mode Page will notify search engines that the site is unavailable.","coming-soon"),txt_11:Object(l["a"])("Set up a Maintenance Mode Page","coming-soon"),txt_14:Object(l["a"])("404 Page","coming-soon"),txt_15:Object(l["a"])("Replace your default theme 404 page with a custom high converting 404 page.","coming-soon"),txt_16:Object(l["a"])("Set up a 404 Page","coming-soon"),txt_17:Object(l["a"])("Landing Pages","coming-soon"),txt_18:Object(l["a"])("Add New Landing Page","coming-soon"),txt_19:Object(l["a"])("Edit","coming-soon"),txt_20:Object(l["a"])("Subscribers","coming-soon"),txt_21:Object(l["a"])("Duplicate","coming-soon"),txt_22:Object(l["a"])("Trash","coming-soon"),txt_23:Object(l["a"])("Published","coming-soon"),txt_24:Object(l["a"])("Last Modified","coming-soon"),txt_25:Object(l["a"])("You do not have any landing pages yet.","coming-soon"),txt_26:Object(l["a"])("Create New Landing Page","coming-soon"),txt_27:Object(l["a"])("Restore","coming-soon"),txt_28:Object(l["a"])("Delete Permanently","coming-soon"),txt_29:Object(l["a"])("SeedProd Coming Soon Page","coming-soon"),txt_30:Object(l["a"])("SeedProd Maintenance Page","coming-soon"),txt_31:Object(l["a"])("SeedProd 404 Page","coming-soon"),txt_32:Object(l["a"])("Create Optin, Sales, Webinar, Thank You or any type of Landing Page you need.","coming-soon"),shared:seedprod_store_admin,show_404_upgrade:!1,show_row:!1,show_action:!1,loading:!0,search:"",showcb:!0,totalitems:0,totalpages:0,perpage:10,actioncol:"name",currentpage:1,orderby:"",order:"",filter:"all",filters:{all:{label:Object(l["a"])("All","coming-soon"),count:0},published:{label:Object(l["a"])("Published","coming-soon"),count:0},drafts:{label:Object(l["a"])("Drafts","coming-soon"),count:0},archived:{label:Object(l["a"])("Trash","coming-soon"),count:0}},bulkactions:[{key:"archive_selected_lpages",label:Object(l["a"])("Move To Trash","coming-soon")},{key:"unarchive_selected_lpages",label:Object(l["a"])("Restore","coming-soon")},{key:"delete_all_archived_lpages",label:Object(l["a"])("Delete Permanently","coming-soon")}],columns:{name:{label:Object(l["a"])("Name","coming-soon"),sortable:!0},url:{label:Object(l["a"])("URL","coming-soon"),sortable:!1},date:{label:Object(l["a"])("Date","coming-soon"),sortable:!0}},actions:[],rows:[{name:Object(l["a"])("Loading","coming-soon")+" ...",status:"",type:"",subscribers:"",entries:"",active:""}]}},methods:(a={show_actions:function(t){this.show_action=t},create_edit_page:function(t){var s=!1;"cs"==t&&(s=this.shared.csp_id),"mm"==t&&(s=this.shared.mmp_id),"p404"==t&&(s=this.shared.p404_id),s?location.href="?page="+this.shared.page_path+"_builder&id="+s+"#/setup/"+s+"/block-options":("cs"==t&&(location.href="?page="+this.shared.page_path+"_template&id=0&type=cs#/template"),"mm"==t&&(location.href="?page="+this.shared.page_path+"_template&id=0&type=mm#/template"),"p404"==t&&(location.href="?page="+this.shared.page_path+"_template&id=0&type=p404#/template"))},enable_mode:function(t){var s=t;j.a.start(),1==t&&!0===this.shared.settings.enable_maintenance_mode&&(this.shared.settings.enable_maintenance_mode=!1),2==t&&!0===this.shared.settings.enable_coming_soon_mode&&(this.shared.settings.enable_coming_soon_mode=!1);var e=p.a.stringify({settings:y()(this.shared.settings)}),a="admin-ajax.php?action="+this.shared.page_path+"_save_settings&_wpnonce="+seedprod_nonce;this.axios.post(a,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){j.a.done(),1!=s&&2!=s||location.reload()})},filter_bulk:function(t){var s=[];return s="archived"==this.filter?t.slice(1):t.slice(0,1),s},hideActionSeparator:function(t){return t===this.actions[this.actions.length-1].key},rowOver:function(t){this.show_row=t.id},rowOut:function(t){this.show_row=!1},enable_disable:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_enable_disable_lpage_ajax_url+"&id="+t.id+"&current_state="+t.active).then(function(e){s.loading=!1,"enabled"==e.data.status&&(t.active=!0,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Page Enabled",toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3})),"disabled"==e.data.status&&(t.active=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Page Disabled",toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}))})},status_action:function(t,s){"needs_setup"==s&&(location.href="?page="+this.shared.page_path+"_builder&id="+t+"#/setup/"+t)},goto_dashboard:function(){this.$router.push({name:"dashboard"})},clear_search:function(){this.search,this.loadItems()},archive:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_archive_selected_lpages+"&ids="+encodeURIComponent(t.toString())).then(function(t){s.loading=!1,s.$refs.lpagedt.clear_checked(),t.data.status&&(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Pages Moved to Trash.","coming-soon"),toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.loadItems())})},unarchive:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_unarchive_selected_lpages+"&ids="+encodeURIComponent(t.toString())).then(function(t){s.loading=!1,s.$refs.lpagedt.clear_checked(),t.data.status&&(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Pages Restored.","coming-soon"),customClass:"sp-toast-success",toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3}),s.loadItems())})},trash:function(t){var s=this,e=this;this.$swal({imageUrl:e.shared.plugin_path+"public/img/delete.png",title:Object(l["a"])("Are you sure?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:Object(l["a"])("Yes, empty trash!","coming-soon")}).then(function(a){a.value&&(e.loading=!0,s.axios.get(seedprod_delete_archived_lpages+"&ids="+encodeURIComponent(t.toString())).then(function(t){e.loading=!1,e.$refs.lpagedt.clear_checked(),t.data.status&&(e.$swal({imageUrl:e.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Pages Deleted!","coming-soon"),toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),e.loadItems())}))})},duplicate:function(t){var s=this;s.loading=!0,this.axios.get(seedprod_duplicate_lpage_url+"&id="+t.id).then(function(t){s.loading=!1,t.data.status&&(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Page Duplicated","coming-soon"),toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.orderby="",s.loadItems())})},loadItems:function(t){"search"==t?(this.currentpage=1,this.orderby="",this.order="",this.filter=""):this.search="";var s=this;s.loading=!0,j.a.start(),this.axios.get("admin-ajax.php?action="+this.shared.page_path+"_lpage_datatable&_wpnonce="+seedprod_nonce+"&current_page="+this.currentpage+"&orderby="+this.orderby+"&order="+this.order+"&filter="+this.filter+"&s="+this.search).then(function(t){s.loading=!1,j.a.done(),s.rows=t.data.rows,s.totalitems=w()(t.data.totalitems),s.totalpages=w()(t.data.totalpages),s.currentpage=w()(t.data.currentpage),null!=t.data.views&&(s.filters.all.count=w()(t.data.views.all),s.filters.archived.count=w()(t.data.views.archived),s.filters.published.count=w()(t.data.views.published),s.filters.drafts.count=w()(t.data.views.drafts))})},filter_table:function(t){this.filter=t,0==this.filters[t].count?this.rows=[]:this.loadItems()}},Object(v["a"])(a,"show_actions",function(t){this.show_action=t}),Object(v["a"])(a,"goto_subscribers",function(t){this.$router.push({name:"subscribers",params:{id:t}})}),Object(v["a"])(a,"goToPage",function(t){this.currentpage=t,this.loadItems()}),Object(v["a"])(a,"actionClicked",function(t,s){this.onActionClick(t,s)}),Object(v["a"])(a,"onActionClick",function(t,s){"duplicate"==t&&this.duplicate(s),"delete"==t&&this.archive(s.id),"setup"==t&&(location.href="?page="+this.shared.page_path+"_builder&id="+s.id+"#/setup/"+s.id+"/block-options"),"publish2"==t&&window.open(this.shared.home_url+"?p="+s.id+"&preview=true","_blank"),"subscribers"==t&&this.$router.push({name:"subscribers",params:{id:s.id}})}),Object(v["a"])(a,"onBulkAction",function(t,s){"archive_selected_lpages"==t&&this.archive(s),"unarchive_selected_lpages"==t&&this.unarchive(s),"delete_all_archived_lpages"==t&&this.trash(s)}),Object(v["a"])(a,"sortCallback",function(t,s){this.orderby=t,this.order=s,this.loadItems()}),Object(v["a"])(a,"setWithExpiry",function(t,s,e){var a=new Date,n={value:s,expiry:a.getTime()+e};localStorage.setItem(t,y()(n))}),Object(v["a"])(a,"getWithExpiry",function(t){var s=localStorage.getItem(t);if(!s)return null;var e=JSON.parse(s),a=new Date;return a.getTime()>e.expiry?(localStorage.removeItem(t),null):e.value}),a),created:function(){this.loadItems()}},$=A,D=Object(u["a"])($,b,f,!1,null,null,null),U=D.exports,I=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-grid sp-grid-cols-1 lg:sp-grid-cols-2 xl:sp-grid-cols-3 sp-gap-6 sp-mt-10 "},t._l(t.plugins,function(s,a){return e("div",{key:a,staticClass:"sp-w-full sp-bg-white sp-border-neutral-15 sp-border sp-border-solid sp-py-10 sp-px-8 sp-flex sp-justify-between sp-flex-col"},[e("div",{staticClass:"seedprod-plugin-recommendations-block sp-flex sp-flex-col"},[e("div",{staticClass:"sp-flex sp-items-center sp-flex-col"},[e("div",[e("img",{staticClass:"sp-w-16",attrs:{src:s.icon}})]),e("div",{staticClass:"sp-text-center sp-text-neutral-80"},[e("h3",{staticClass:"sp-text-neutral-80 sp-text-xl"},[t._v(t._s(s.name))]),e("p",{staticClass:"sp-text-sm",domProps:{innerHTML:t._s(s.desc)}})])])]),e("div",[t.shared.doing_ajax==a||"all"==t.shared.doing_ajax?e("div",[t._m(0,!0)]):e("div",{staticClass:"sp-flex sp-flex-col sp-items-center"},[!0===s.is_pro?e("div",[t._v("\n "+t._s(t.plugins["wpforms-pro"])+"\n "),e("strong",[t._v(t._s(t.txt_1)+":")]),t._v(" "+t._s(t.txt_2)+"\n ")]):e("div",{staticClass:"sp-flex sp-flex-col sp-items-center"},[e("div",[e("strong",[t._v(t._s(t.txt_1)+":")]),t._v("\n "+t._s(s.status)+"\n ")]),e("button",{staticClass:"sp-mt-1 sp-inline-block sp-bg-primary sp-px-5 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",on:{click:function(s){return t.plugin_action(a)}}},[t._v(t._s(t.plugin_btn_txt(s)))])])])])])}),0)])},H=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticStyle:{"text-align":"center",flex:"1"}},[e("i",{staticClass:"fas fa-spinner fa-spin"})])}],E={name:"GrowthTools",components:{},data:function(){return{txt_1:Object(l["a"])("Status","coming-soon"),txt_2:Object(l["a"])("PRO Version installed","coming-soon"),all_plugins:{},plugins:{rafflepress:{slug_base:"rafflepress",slug:"rafflepress/rafflepress.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-rp.png",name:"RafflePress",desc:"Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.",url:"https://downloads.wordpress.org/plugin/rafflepress.zip",status:"",status_code:"",is_pro:!1},wpforms:{slug_base:"wpforms-lite",slug:"wpforms-lite/wpforms.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-wpforms.png",name:"WPForms",desc:"The most beginner friendly drag & drop WordPress forms plugin allowing you to create beautifdivcontact forms, subscription forms, payment forms, and more in minutes, not hours!",url:"https://downloads.wordpress.org/plugin/wpforms-lite.zip",status:"",status_code:"",is_pro:!1},optinmonster:{slug_base:"optinmonster",slug:"optinmonster/optin-monster-wp-api.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-om.png",name:"OptinMonster",desc:"Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers.",url:"https://downloads.wordpress.org/plugin/optinmonster.zip",status:"",status_code:"",is_pro:!1},wpmailsmtp:{slug_base:"wp-mail-smtp",slug:"wp-mail-smtp/wp_mail_smtp.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-smtp.png",name:"WP Mail SMTP",desc:"SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication.",url:"https://downloads.wordpress.org/plugin/wp-mail-smtp.zip",status:"",status_code:"",is_pro:!1},monsterinsights:{slug_base:"google-analytics-for-wordpress",slug:"google-analytics-for-wordpress/googleanalytics.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-mi.png",name:"MonsterInsights",desc:"MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.",url:"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip",status:"",status_code:"",is_pro:!1},trustpulse:{slug_base:"trustpulse-api",slug:"trustpulse-api/trustpulse.php",icon:seedprod_store_admin.plugin_path+"public/img/plugin-trustpulse.png",name:"TrustPulse",desc:"TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and conversions with social proof notifications. Use it to boost sales on your Woocommerce store, increase signups on your membership site, get more email subscribers, and more.",url:"https://downloads.wordpress.org/plugin/coming-soon.zip",status:"",status_code:"",is_pro:!1}},shared:seedprod_store_admin}},methods:{plugin_action:function(t){var s=this;this.doing_ajax=!0;var e="",a="",n=t;if(s.shared.doing_ajax=t,0===this.plugins[t].status_code){e=seedprod_get_install_addon_url;var i=p.a.stringify({plugin:this.plugins[t].url,type:"plugin"});a="install"}if(1===this.plugins[t].status_code){e=seedprod_deactivate_addon_url;i=p.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});a="deactivate"}if(2===this.plugins[t].status_code){e=seedprod_activate_addon_url;i=p.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});a="activate"}this.axios.post(e,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(e){if(s.shared.doing_ajax=!1,"install"==a)if(e.data.error){s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.error,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3});var i=p.a.stringify({plugin:s.plugins[n].slug_base});s.axios.post(seedprod_plugin_nonce_url,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data&&window.open("update.php?action=install-plugin&plugin="+s.plugins[n].slug_base+"&_wpnonce="+t.data,"_blank")})}else s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Plugin Installed, click Activate",toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate();"activate"==a&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Active",s.plugins[t].status_code=1,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})),"deactivate"==a&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3}))}).catch(function(t){s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})},plugin_btn_txt:function(t){var s="";return"Not Installed"==t.status&&(s=Object(l["a"])("Install","coming-soon")),"Active"==t.status&&(s=Object(l["a"])("Deactivate","coming-soon")),"Inactive"==t.status&&(s=Object(l["a"])("Activate","coming-soon")),s}},mounted:function(){var t=this;t.shared.doing_ajax="all",this.axios.get(seedprod_get_plugins_list_url).then(function(s){if(t.shared.doing_ajax=!1,s.data)for(var e in s.data)void 0!==t.plugins[e]&&("wpforms"==e&&0!==s.data["wpforms-pro"].status&&(t.plugins[e].is_pro=!0),"rafflepress"==e&&0!==s.data["rafflepress-pro"].status&&(t.plugins[e].is_pro=!0),"monsterinsights"==e&&0!==s.data["monsterinsights-pro"].status&&(t.plugins[e].is_pro=!0),"wpmailsmtp"==e&&0!==s.data["wpmailsmtp-pro"].status&&(t.plugins[e].is_pro=!0),t.plugins[e].status=s.data[e].label,t.plugins[e].status_code=s.data[e].status)}).catch(function(s){t.shared.doing_ajax=!1,t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})})}},N=E,F=Object(u["a"])(N,I,H,!1,null,null,null),W=F.exports,R=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-absolute sp-z-10 sp-w-full sp-flex sp-justify-center"},[e("LiteCTASubscribers")],1),e("div",{staticStyle:{filter:"blur(3px)"},attrs:{id:"seedprod-users"}},[e("div",{staticClass:"md:sp-flex sp-mt-10"},[e("div",{staticClass:"sp-w-full md:sp-w-1/2 sp-flex sp-items-center"},[e("h1",{staticClass:"sp-text-neutral sp-font-bold sp-text-2xl sp-m-0"},[t._v(t._s(t.txt_1))])]),0!=t.shared.subscriber_count?e("div",{staticClass:"sp-w-full md:sp-w-1/2 sp-flex sp-items-center sp-justify-end"},[e("a",{staticClass:"sp-inline-block sp-bg-neutral-15 hover:sp-bg-neutral-20 sp-h-40px sp-px-4 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-sm sp-cursor-pointer sp-font-semibold sp-flex sp-items-center sp-mr-2",attrs:{href:"#",target:"_blank"},on:{click:function(s){return s.preventDefault(),t.export_subscribers(s)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-relative"},[e("div",{staticClass:"sp-bg-white sp-border sp-border-neutral-20 sp-border-solid sp-rounded-sm sp-h-40px sp-w-275 sp-cursor-pointer"},[e("span",{staticClass:"sp-flex sp-items-center sp-h-40px sp-justify-between sp-text-neutral-80 sp-px-3 sp-text-base sp-truncate",on:{click:function(s){return s.preventDefault(),t.toggle_lpage_list(s)}}},[t._v("\n "+t._s(t.lpage_name)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7 10l5 5 5-5z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])]),t.show_lpage_list?e("div",{staticClass:"sp-absolute sp-bg-white sp-border sp-border-neutral-20 sp-border-solid sp-rounded-sm sp-z-20 sp-w-275 sp-h-275 sp-overflow-y-auto sp-shadow-lg sp-px-1 sp-py-1"},[e("ul",{staticClass:"sp-m-0"},[0==t.lpage_list.length&&0!=t.shared.page_count?e("li",{staticClass:"sp-m-0 sp-py-1"},[e("span",{staticClass:"sp-px-2 sp-text-neutral-80 sp-text-sm sp-font-bold"},[t._v("\n "+t._s(t.txt_3)+"\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})])]):t._e(),e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(0,0,"All Pages")}}},[t._v(t._s(t.txt_4))])]),""!=t.shared.csp_id?e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(t.shared.csp_id,t.shared.csp_uuid,"Coming Soon Page")}}},[t._v(t._s(t.txt_5))])]):t._e(),""!=t.shared.mmp_id?e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(t.shared.mmp_id,t.shared.mmp_uuid,"Maintenance Mode Page")}}},[t._v(t._s(t.txt_6))])]):t._e(),""!=t.shared.p404_id?e("li",[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-0 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.load_lpage_users(t.shared.p404_id,t.shared.p404_uuid,"404 Page")}}},[t._v(t._s(t.txt_7))])]):t._e(),0!=t.lpage_list.length?e("hr",{staticClass:"sp-border sp-border-neutral-20 sp-border-b-0"}):t._e(),0!=t.lpage_list.length?e("li",{staticClass:"sp-m-0 sp-py-1"},[e("span",{staticClass:"sp-px-2 sp-text-neutral-40 sp-font-bold sp-uppercase sp-tracking-wide sp-text-12px"},[t._v(t._s(t.txt_8))])]):t._e(),t._l(t.lpage_list,function(s,a){return e("li",{key:a,staticClass:"sp-m-0"},[e("a",{staticClass:"sp-rounded-sm sp-block sp-py-1 sp-text-neutral-80 sp-text-sm sp-no-underline sp-font-semibold sp-cursor-pointer hover:sp-bg-neutral-10 sp-px-2",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.load_lpage_users(s.id,s.uuid,s.name)}}},[t._v(t._s(s.name))])])})],2)]):t._e()]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.chart_timeframe,expression:"chart_timeframe"}],staticClass:"sp-form-select sp-h-40px sp-border sp-border-neutral-20 sp-border-solid sp-ml-2",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.chart_timeframe=s.target.multiple?e:e[0]},t.loadItems]}},[e("option",{attrs:{value:"7"}},[t._v("7 "+t._s(t.txt_9))]),e("option",{attrs:{value:"30"}},[t._v("30 "+t._s(t.txt_9))])])]):t._e()]),0!=t.shared.subscriber_count?e("div",[e("div",{staticClass:"sp-border sp-border-neutral-20 sp-border-solid sp-mt-5 sp-mb-3"},[e("GChart",{attrs:{type:"AreaChart",data:t.chartData,options:t.chartOptions}})],1),e("div",{attrs:{id:"poststuff"}},[e("div",{staticClass:"metabox-holder columns-1",attrs:{id:"post-body"}},[e("div",{staticClass:"clearfix",attrs:{id:"post-body-content"}},[e("ul",{staticClass:"subsubsub"},t._l(t.filters,function(s,a){return e("li",{key:a},[e("a",{class:{current:t.filter==a},attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.filter_table(a)}}},[t._v(t._s(s.label))]),t._v("\n ("+t._s(s.count)+")\n "),"invalid"!=a?e("span",[t._v("|")]):t._e()])}),0),e("p",{staticClass:"search-box sp-hidden"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"order-search-input"}},[t._v(t._s(t.txt_12))]),e("span",{staticClass:"sp-relative sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"sp-rounded sp-border-solid sp-border sp-border-neutral-15 sp-outline-none",staticStyle:{padding:"6px 10px"},attrs:{id:"order-search-input"},domProps:{value:t.search},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.loadItems("search")},input:function(s){s.target.composing||(t.search=s.target.value)}}}),t._v(" \n "),t.search.length>0?e("i",{staticClass:"fas fa-times-circle sp-absolute sp-text-neutral-20 sp-right-0 sp-mr-2",attrs:{id:"seedprod-search-close"},on:{click:function(s){return s.preventDefault(),t.clear_search(s)}}}):t._e()]),e("input",{staticClass:"button",attrs:{type:"submit",id:"search-submit"},domProps:{value:t.txt_12},on:{click:function(s){return s.preventDefault(),t.loadItems("search")}}})]),e("list-table",{ref:"subscribersdt",attrs:{columns:t.columns,loading:t.loading,rows:t.rows,actions:t.actions,"show-cb":t.showcb,"total-items":t.totalitems,"bulk-actions":t.bulkactions,"total-pages":t.totalpages,"per-page":t.perpage,"current-page":t.currentpage,"action-column":t.actioncol,"sort-by":t.orderby,"sort-order":t.order},on:{pagination:t.goToPage,"action:click":t.onActionClick,"bulk:click":t.onBulkAction,sort:t.sortCallback}})],1)]),e("br",{staticClass:"clear"})])]):e("div",{staticClass:"sp-mt-6 sp-bg-neutral-10 sp-flex sp-justify-center sp-flex-col sp-items-center sp-h-64"},[e("div",{staticClass:"sp-font-bold sp-text-xl sp-mb-4"},[t._v(t._s(t.txt_10))]),e("a",{staticClass:"sp-font-semibold sp-text-sm sp-inline-flex sp-items-center sp-inline-block sp-bg-primary sp-px-5 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline hover:sp-bg-primary-lighter",attrs:{href:"admin.php?page="+t.shared.page_path}},[t._v(t._s(t.txt_11))])])])])},V=[],G=e("a745"),Y=e.n(G),q=e("b132"),K=e("cb43"),J=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-mt-6 sp-bg-white sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-px-10 sp-py-10 sp-text-center",staticStyle:{width:"650px"}},[e("div",[e("span",{staticClass:"sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")]),e("h1",{staticClass:"sp-mt-4 sp-mb-8 sp-leading-tight sp-text-34px sp-font-bold sp-text-neutral"},[t._v("\n \n Start Collecting Emails with SeedProd Pro\n ")]),e("div",{staticClass:"sp-text-center sp-mb-4 sp-text-base"},[e("div",{staticClass:"sp-inline-flex sp-text-left"},[e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v("\n "+t._s(t.txt_995)+"\n ")]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_996))])]),e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9910))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9911))])])])]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginsubscriberpage",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")])])])])},Q=[],X={name:"LiteCTASubscribers",data:function(){return{txt_1:Object(l["a"])("Dismiss this message","coming-soon"),txt_2:Object(l["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(l["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(l["a"])("Pro Features:","coming-soon"),txt_995:Object(l["a"])("Filter by Page","coming-soon"),txt_996:Object(l["a"])("Export to a CSV File","coming-soon"),txt_997:Object(l["a"])("Premium Email Marketing Integrations","coming-soon"),txt_998:Object(l["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(l["a"])("Page Access Controls","coming-soon"),txt_9910:Object(l["a"])("Subscribers Over Time","coming-soon"),txt_9911:Object(l["a"])("See Name and Emails","coming-soon"),txt_9912:Object(l["a"])("Email Subscriber Management","coming-soon"),txt_9913:Object(l["a"])("Saved Templates","coming-soon"),txt_9914:Object(l["a"])("Plus much more...","coming-soon"),txt_15:Object(l["a"])("Bonus:","coming-soon"),txt_16:Object(l["a"])("SeedProd Lite users get","coming-soon"),txt_17:Object(l["a"])("a discount off the regular price","coming-soon"),txt_18:Object(l["a"])("automatically applied at checkout.","coming-soon"),txt_19:Object(l["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon"),shared:seedprod_store_admin}},methods:{dismiss:function(){var t=this,s=p.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},Z=X,tt=Object(u["a"])(Z,J,Q,!1,null,null,null),st=tt.exports;window.lodash=_.noConflict();var et={name:"Subscribers",mixins:[q["a"]],components:{ListTable:B,GChart:K["GChart"],LiteCTASubscribers:st},data:function(){var t;return t={txt_1:Object(l["a"])("Subscribers Overview","coming-soon"),txt_2:Object(l["a"])("Export to CSV","coming-soon"),txt_3:Object(l["a"])("Loading","coming-soon"),txt_4:Object(l["a"])("All Pages","coming-soon"),txt_5:Object(l["a"])("Coming Soon Page","coming-soon"),txt_6:Object(l["a"])("Maintenance Mode Page","coming-soon"),txt_7:Object(l["a"])("404 Page","coming-soon"),txt_8:Object(l["a"])("Landing Pages","coming-soon"),txt_9:Object(l["a"])("Days","coming-soon"),chart_timeframe:7,txt_10:Object(l["a"])("You do not have any subscribers yet.","coming-soon"),txt_11:Object(l["a"])("Go to Pages","coming-soon"),txt_12:Object(l["a"])("Search Emails","coming-soon")},Object(v["a"])(t,"chart_timeframe",7),Object(v["a"])(t,"chartData",[]),Object(v["a"])(t,"chartOptions",{chart:{title:"Subsribers Overview",subtitle:"Subscribers"},colors:["#DD4A1F"]}),Object(v["a"])(t,"enable_confirmation_email",!1),Object(v["a"])(t,"show_lpage_list",!1),Object(v["a"])(t,"shared",seedprod_store_admin),Object(v["a"])(t,"lpage_name","All Pages"),Object(v["a"])(t,"show_action",!1),Object(v["a"])(t,"lpage_uuid",""),Object(v["a"])(t,"lpage_id",this.$route.params.id),Object(v["a"])(t,"loading",!0),Object(v["a"])(t,"search",""),Object(v["a"])(t,"showcb",!0),Object(v["a"])(t,"totalitems",0),Object(v["a"])(t,"totalpages",0),Object(v["a"])(t,"perpage",100),Object(v["a"])(t,"actioncol","email"),Object(v["a"])(t,"currentpage",1),Object(v["a"])(t,"orderby",""),Object(v["a"])(t,"order",""),Object(v["a"])(t,"filter","all"),Object(v["a"])(t,"seedprod_remote_api",seedprod_remote_api),Object(v["a"])(t,"filters",{}),Object(v["a"])(t,"bulkactions",[{key:"delete_subscribers",label:"Delete Subscribers"}]),Object(v["a"])(t,"columns",{email:{label:Object(l["a"])("Email","coming-soon"),sortable:!1},full_name:{label:Object(l["a"])("Name","coming-soon"),sortable:!1},created_at:{label:Object(l["a"])("Created","coming-soon"),sortable:!1}}),Object(v["a"])(t,"actions",[{key:"delete",label:Object(l["a"])("Delete","coming-soon")}]),Object(v["a"])(t,"lpage_list",[]),Object(v["a"])(t,"rows",[{name:Object(l["a"])("Loading","coming-soon")+" ...",status:"",type:"",subscribers:"",entries:"",active:""}]),t},methods:{load_lpages:function(){var t=this;this.axios.get("admin-ajax.php?action="+this.shared.page_path+"_get_lpage_list&_wpnonce="+seedprod_nonce).then(function(s){s.data&&(t.lpage_list=s.data,lodash.each(t.lpage_list,function(s,e){s.id==t.$route.params.id&&""==t.lpage_uuid&&(t.lpage_uuid=s.uuid,t.lpage_name=s.name,t.load_lpage_users(s.id,s.uuid,s.name,!1))}))})},load_lpage_users:function(t,s,e){var a=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];this.show_lpage_list=!1,this.lpage_id=t,this.lpage_uuid=s,this.lpage_name=e,a?this.$router.push({name:"subscribers",params:{id:t}}):this.loadItems()},clear_search:function(){this.search,this.loadItems()},toggle_lpage_list:function(){!1===this.show_lpage_list&&this.load_lpages(),this.show_lpage_list=!this.show_lpage_list},trash:function(t){var s=this,e=this,a="";Y()(t)&&(a="s"),this.$swal({imageUrl:e.shared.plugin_path+"public/img/delete.png",title:Object(l["a"])("Are you sure?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:"Yes, delete user"+a+"!"}).then(function(a){if(a.value){e.loading=!0;var n=seedprod_delete_subscribers_url,i=p.a.stringify({items:t,api_token:e.shared.api_token});s.axios.post(n,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){e.loading=!1,e.$refs.subscribersdt.clear_checked(),(t.data>0||1==t.data.success)&&(e.$swal({imageUrl:e.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(l["a"])("Subscribers Deleted","coming-soon"),toast:!0,customClass:"sp-toast-error",type:null,position:"top-end",showConfirmButton:!1,timer:3e3}),e.loadItems())}).catch(function(t){j.a.done(),console.log(t),e.shared.doing_ajax=!1,e.$swal({imageUrl:e.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})}})},export_subscribers:function(){location.href="admin.php?page="+this.shared.page_path+"&action="+this.shared.page_path+"_export_subscribers&id="+this.lpage_id+"&page_uuid="+this.lpage_uuid+"&_wpnonce="+seedprod_nonce,this.$swal({imageUrl:this.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Exported Started","coming-soon"),toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})},loadItems:function(t,s){"search"==t?(this.currentpage=1,this.orderby="",this.order="",this.filter=""):this.search="";seedprod_remote_api;var e=this;e.loading=!0,j.a.start(),this.axios.get("admin-ajax.php?action="+this.shared.page_path+"_subscribers_datatable&_wpnonce="+seedprod_nonce+"&current_page="+this.currentpage+"&orderby="+this.orderby+"&order="+this.order+"&filter="+this.filter+"&s="+this.search+"&id="+this.lpage_uuid+"&interval="+this.chart_timeframe).then(function(t){e.loading=!1,j.a.done(),t.data.lpage_name&&(e.lpage_name=t.data.lpage_name),"all"==e.filter&&0==e.shared.subscriber_count?(e.shared.subscriber_count=t.data.subscribers.total,e.axios.get(seedprod_update_subscriber_count)):e.shared.subscriber_count=1,e.rows=t.data.rows,e.totalitems=w()(t.data.totalitems),e.totalpages=w()(t.data.totalpages),e.currentpage=w()(t.data.currentpage),e.chartData=t.data.recent_subscribers})},goToPage:function(t){this.currentpage=t,this.loadItems()},onActionClick:function(t,s){"delete"==t&&this.trash(s.id)},onBulkAction:function(t,s){"delete_subscribers"==t&&this.trash(s)},sortCallback:function(t,s){this.orderby=t,this.order=s,this.loadItems()}},created:function(){0==this.$route.params.id&&this.loadItems(),this.load_lpages()},watch:{$route:function(t,s){this.filter="all",this.loadItems("",t.params.id)}}},at=et,nt=Object(u["a"])(at,R,V,!1,null,null,null),it=nt.exports,ot=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{attrs:{id:"seedprod-settings"}},[e("router-view",{attrs:{name:"main"}})],1)])},rt=[],pt={name:"Settings",data:function(){return{txt_1:Object(l["a"])("General","coming-soon"),txt_2:Object(l["a"])("Emails","coming-soon"),txt_3:Object(l["a"])("Integrations","coming-soon"),shared:seedprod_store_admin}},created:function(){var t=document.querySelector(".wp-first-item a[href='admin.php?page="+this.shared.page_path+"']"),s="current";t.classList.remove(s),t.parentNode.classList.remove(s);t=document.querySelector("a[href='admin.php?page="+this.shared.page_path+"_settings']"),s="current";t.classList?t.classList.add(s):t.className+=" "+s,t.parentNode.classList?t.parentNode.classList.add(s):t.parentNode.className+=" "+s},methods:{}},lt=pt,ct=Object(u["a"])(lt,ot,rt,!1,null,null,null),dt=ct.exports,ut=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("table",{staticClass:"form-table sp-text-neutral-80"},[e("tbody",[e("tr",{staticClass:"seedprod-settings-title",attrs:{valign:"top"}},[e("td",{staticClass:"sp-p-0 sp-border-b sp-border-t-0 sp-border-l-0 sp-border-r-0 sp-border-neutral-10 sp-border-solid sp-pb-5",attrs:{colspan:"2"}},[e("h4",{staticClass:"sp-text-xl sp-mt-4 sp-mb-1"},[t._v(t._s(t.txt_1))]),"seedprod_pro"==t.shared.page_path?e("p",[t._v("\n\t\t\t\t\t\t"+t._s(t.txt_2)+"\n\t\t\t\t\t")]):t._e(),"seedprod_lite"==t.shared.page_path?e("p",[e("span",{domProps:{innerHTML:t._s(t.txt_3)}}),e("img",{staticClass:"emoji",attrs:{draggable:"false",alt:"🙂",src:"https://s.w.org/images/core/emoji/11.2.0/svg/1f642.svg"}})]):t._e(),"seedprod_lite"==t.shared.page_path?e("p",{staticClass:"sp-mt-2",domProps:{innerHTML:t._s(t.txt_4)}}):t._e()])]),"seedprod_pro"==t.shared.page_path?e("tr",{staticClass:"seedprod-settings-form sp-border-b sp-border-t-0 sp-border-l-0 sp-border-r-0 sp-border-neutral-10 sp-border-solid",attrs:{valign:"top"}},[e("th",{attrs:{scope:"row"}},[e("strong",{staticClass:"sp-text-neutral-80"},[t._v(t._s(t.txt_6))])]),e("td",[e("form",{staticClass:"form-inline"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings_page_meta.api_key,expression:"shared.settings_page_meta.api_key"}],staticClass:"sp-form-input sp-w-64 sp-m-0",staticStyle:{"margin-bottom":"5px"},attrs:{type:"password",autocomplete:"off",placeholder:t.txt_7},domProps:{value:t.shared.settings_page_meta.api_key},on:{input:function(s){s.target.composing||t.$set(t.shared.settings_page_meta,"api_key",s.target.value)}}}),e("button",{staticClass:"sp-inline-block sp-text-sm sp-bg-primary sp-px-4 sp-py-3 sp-rounded-sm sp-leading-none sp-text-white sp-no-underline sp-rounded-md sp-text-base sp-ml-1 hover:sp-bg-primary-lighter sp-cursor-pointer",attrs:{disabled:t.shared.doing_ajax&&"api_key"==t.shared.settings_page_meta.button},on:{click:function(s){return s.preventDefault(),t.save_api_key(s)}}},[t.shared.doing_ajax&&"api_key"==t.shared.settings_page_meta.button?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v(" "),t.shared.license_name?e("span",[t._v(t._s(t.txt_8))]):e("span",[t._v(t._s(t.txt_9))])]),t.shared.license_name?e("span",[e("button",{staticClass:"sp-inline-block sp-text-sm sp-bg-neutral-10 sp-px-4 sp-py-3 sp-rounded-sm sp-leading-none sp-text-neutral-80 sp-no-underline sp-rounded-md sp-text-base sp-ml-1 hover:sp-bg-neutral-15 sp-cursor-pointer",attrs:{disabled:t.shared.doing_ajax&&"deactivate_api_key"==t.shared.settings_page_meta.button},on:{click:function(s){return s.preventDefault(),t.deactivate_api_key(s)}}},[t.shared.doing_ajax&&"deactivate_api_key"==t.shared.settings_page_meta.button?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v(" "),e("span",[t._v(t._s(t.txt_10))])])]):t._e(),"seedprod_lite"==t.shared.page_path&&t.show_unlock?e("span",[e("button",{staticClass:"btn btn-primary btn-sm",attrs:{disabled:t.shared.doing_ajax&&"unlock"==t.shared.settings_page_meta.button},on:{click:t.start_free_to_pro_upgrade}},[t.shared.doing_ajax&&"unlock"==t.shared.settings_page_meta.button?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v(" "+t._s(t.txt_11)+"\n\t\t\t\t\t\t\t")])]):t._e()]),t.shared.license_name?e("div",{staticClass:"sp-text-neutral-80",staticStyle:{"margin-top":"2px"},domProps:{innerHTML:t._s(t.txt_12)}}):t._e()])]):t._e(),e("tr",{staticClass:"seedprod-settings-title",attrs:{valign:"top"}},[e("td",{staticClass:"sp-p-0 sp-border-b sp-border-t-0 sp-border-l-0 sp-border-r-0 sp-border-neutral-10 sp-border-solid sp-pb-5",attrs:{colspan:"2"}},[e("h4",{staticClass:"sp-text-xl sp-mt-4 sp-mb-1"},[t._v(t._s(t.txt_13))]),e("a",{attrs:{href:"admin.php?page=sp_pro_debug"}},[t._v("View Debug Information")])])])])]),"seedprod_lite"==t.shared.page_path&&t.shared.show_inline_cta?e("div",[e("SettingsLiteCTA")],1):t._e()])},gt=[],_t=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-mt-6 sp-bg-white sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-px-10 sp-py-10 sp-text-center sp-relative"},[e("span",{staticClass:"sp-neutral-60 sp-absolute sp-cursor-pointer sp-right-0 sp-top-0 sp-opacity-75 sp-mt-2 sp-mr-1",on:{click:t.dismiss_upsell}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("div",[e("span",{staticClass:"sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")]),t._m(0),e("div",{staticClass:"sp-text-center sp-mb-4 sp-text-base"},[e("div",{staticClass:"sp-inline-flex sp-text-left"},[e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v("\n "+t._s(t.txt_995)+"\n ")]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_996))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_997))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_998))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_999))])]),e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9910))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9911))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9912))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9913))]),e("li",{staticClass:"sp-font-normal"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9914))])])])]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginsettingsabout",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")])])])])},mt=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("h1",{staticClass:"sp-mt-4 sp-mb-8 sp-leading-tight sp-text-34px sp-font-bold sp-text-neutral"},[t._v("\n Upgrade to SeedProd Pro\n "),e("br"),t._v("Today and Save\n ")])}],ht={name:"SettingsLiteCTA",data:function(){return{txt_1:Object(l["a"])("Dismiss this message","coming-soon"),txt_2:Object(l["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(l["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(l["a"])("Pro Features:","coming-soon"),txt_995:Object(l["a"])("Powerful Page Editor","coming-soon"),txt_996:Object(l["a"])("20+ PRO Page Blocks","coming-soon"),txt_997:Object(l["a"])("Email Marketing Integrations","coming-soon"),txt_998:Object(l["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(l["a"])("Access Controls","coming-soon"),txt_9910:Object(l["a"])("100+ PRO Page Templates","coming-soon"),txt_9911:Object(l["a"])("PRO Smart Sections","coming-soon"),txt_9912:Object(l["a"])("Subscriber Management","coming-soon"),txt_9913:Object(l["a"])("Saved Templates","coming-soon"),txt_9914:Object(l["a"])("Plus much more...","coming-soon"),txt_15:Object(l["a"])("Bonus:","coming-soon"),txt_16:Object(l["a"])("SeedProd Lite users get","coming-soon"),txt_17:Object(l["a"])("a discount off the regular price","coming-soon"),txt_18:Object(l["a"])("automatically applied at checkout.","coming-soon"),txt_19:Object(l["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon"),shared:seedprod_store_admin}},methods:{dismiss_upsell:function(){var t=p.a.stringify({id:3});this.axios.post(seedprod_dismiss_upsell,t,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.status&&location.reload()})},dismiss:function(){var t=this,s=p.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},bt=ht,ft=Object(u["a"])(bt,_t,mt,!1,null,null,null),vt=ft.exports,xt={name:"SettingsGeneral",mixins:[q["a"]],data:function(){return{txt_1:Object(l["a"])("License","coming-soon"),txt_2:Object(l["a"])("Your license key provides access to updates and addons.","coming-soon"),txt_3:Object(l["a"])("You're using <strong>SeedProd Lite</strong> - No License needed. Enjoy!","coming-soon"),txt_4:Object(l["b"])(Object(l["a"])("To unlock more features consider <a href='%s' target='_blank'>upgrading to PRO</a> . As a valued SeedProd Lite user you'll receive <strong>a discount off the regular price</strong>, automatically applied at checkout!","coming-soon"),"https://www.seedprod.com/lite-upgrade/?discount=LITEUPGRADE&amp;utm_source=WordPress&amp;utm_medium=seedprod-license-page&amp;utm_campaign=liteplugin"),txt_5:Object(l["b"])(Object(l["a"])("If you already have a license key for <a href='%s' target='_blank'>SeedProd Pro</a>, please enter it to Upgrade to the Pro Features.","coming-soon"),seedprod_store_admin.upgrade_link+"welcome"),txt_6:Object(l["a"])("License Key","coming-soon"),txt_7:Object(l["a"])("Enter Your License Key Here","coming-soon"),txt_8:Object(l["a"])("Recheck Key","coming-soon"),txt_9:Object(l["a"])("Verify Key","coming-soon"),txt_10:Object(l["a"])("Deactivate Key","coming-soon"),txt_11:Object(l["a"])("Connect to SeedProd","coming-soon"),txt_12:Object(l["b"])(Object(l["a"])("You currently have the <strong>%s</strong> license.","coming-soon"),seedprod_store_admin.license_name),txt_13:Object(l["a"])("Debug Information","coming-soon"),show_unlock:!1,shared:seedprod_store_admin}},computed:{slug:function(){var t=this.slugify(this.page_meta.upgrade_feature);return t}},methods:{goto_dashboard:function(){this.$router.push({name:"dashboard"})},start_free_to_pro_upgrade:function(){var t=this;j.a.start();var s=p.a.stringify({});t.shared.doing_ajax=!0,t.shared.settings_page_meta.button="unlock",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Preparing to Unlock... Please wait...",toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3}),this.axios.post(seedprod_upgrade_license_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,s.data.success?location.href=s.data.data.url:t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.data.data.message,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})})},save_settings:function(){var t=this;j.a.start(),this.$validator.validateAll().then(function(s){if(s){var e=p.a.stringify({settings:t.shared.settings});return t.shared.doing_ajax=!0,t.shared.settings_page_meta.button="settings",void t.axios.post(seedprod_save_settings_ajax_url,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){j.a.done(),t.shared.doing_ajax=!1,t.shared.settings.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(l["a"])("Saved!","coming-soon"),toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(l["a"])("Could not be saved. Please contact Support if you continue to experience this issue.","coming-soon"),toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})})}var a="";t.errors.all().forEach(function(t){a=a+t+"\n"}),a+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:a,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})})},deactivate_api_key:function(){var t=this,s=p.a.stringify({api_key:t.shared.settings_page_meta.api_key});t.shared.doing_ajax=!0,j.a.start(),t.shared.settings_page_meta.button="deactivate_api_key",t.axios.post(seedprod_api_key_deactivate_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(j.a.done(),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,"true"==s.data.status){var e="success";t.shared.license_name="",t.shared.settings_page_meta.api_key=""}else e="error";t.$swal({imageUrl:t.shared.plugin_path+"public/svg/"+e+"-24px-white.svg",text:s.data.msg,toast:!0,type:null,customClass:"sp-toast-"+e,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})},save_api_key:function(){var t=this,s=p.a.stringify({api_key:t.shared.settings_page_meta.api_key});t.shared.doing_ajax=!0,j.a.start(),t.shared.settings_page_meta.button="api_key";var e="admin-ajax.php?action="+this.shared.page_path+"_save_api_key&_wpnonce="+seedprod_nonce;t.axios.post(e,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(j.a.done(),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.shared.license_name=1,t.txt_12=s.data.license_name,console.log(s.data.license_name),"true"==s.data.status){t.show_unlock=!0;var e="success";s.data.body.plugin_name&&(t.shared.license_name=s.data.body.plugin_name)}else{e="error";t.shared.license_name=""}t.$swal({imageUrl:t.shared.plugin_path+"public/svg/"+e+"-24px-white.svg",text:s.data.msg,toast:!0,type:null,customClass:"sp-toast-"+e,position:"top-end",showConfirmButton:!1,timer:3e3})}).catch(function(s){console.log(s),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})})}},components:{SettingsLiteCTA:vt}},wt=xt,Ct=Object(u["a"])(wt,ut,gt,!1,null,null,null),yt=Ct.exports,kt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",[e("div",{staticClass:"sp-bg-white sp--ml-5 sp-flex sp-flex-col sp-items-center",attrs:{id:"sp-welcome-top"}},[e("div",{staticClass:"robbie"},[e("img",{staticClass:"sp-mt-16",attrs:{id:"seedprod-welcome-logo",src:t.shared.plugin_path+"public/svg/seedprod-logo.svg",alt:t.txt_14}})]),e("div",{staticClass:"sp-mx-auto sp-text-center sp-text-15px sp-w-460 sp-font-semibold sp-text-neutral-80 sp-mb-6 sp-mt-5 sp-leading-relaxed"},[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-mb-32 sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-p-10 sp-w-580 sp-z-20 sp-bg-white sp-shadow-2xl"},["seedprod_lite"==t.shared.page_path?e("div",{staticClass:"sp-font-bold sp-text-base sp-text-neutral"},[e("span",{domProps:{innerHTML:t._s(t.txt_2)}}),e("img",{staticClass:"emoji",attrs:{draggable:"false",alt:"🙂",src:"https://s.w.org/images/core/emoji/11.2.0/svg/1f642.svg"}})]):t._e(),"seedprod_pro"==t.shared.page_path?e("div",{staticClass:"sp-font-bold sp-text-base sp-text-neutral sp-text-center ",attrs:{id:"license-sub"}},[t._v("\n "+t._s(t.txt_3)+"\n ")]):t._e(),"seedprod_pro"==t.shared.page_path?e("form",{staticClass:"sp-flex sp-mt-6"},[e("div",{staticClass:"sp-flex sp-mx-auto"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings_page_meta.api_key,expression:"\n\t\t\t\t\t\t\t\t\t\t\tshared.settings_page_meta.api_key\n\t\t\t\t\t\t\t\t\t\t"}],staticClass:"sp-form-input sp-h-48px",staticStyle:{"min-width":"300px"},attrs:{type:"password",name:"name",placeholder:t.txt_5,autocomplete:"off"},domProps:{value:t.shared.settings_page_meta.api_key},on:{input:function(s){s.target.composing||t.$set(t.shared.settings_page_meta,"api_key",s.target.value)}}}),e("button",{staticClass:"sp-mb-4 sp-inline-block sp-text-sm sp-bg-primary sp-px-4 sp-py-4 sp-rounded-sm sp-leading-none sp-text-white sp-no-underline sp-rounded-md sp-text-base sp-ml-1 hover:sp-bg-primary-lighter sp-cursor-pointer sp-border-none",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(s){return s.preventDefault(),t.save_api_key(s)}}},[t.shared.doing_ajax?e("i",{staticClass:"fas fa-spinner fa-spin"}):t._e(),t._v("\n  "+t._s(t.txt_6)+"\n ")])])]):t._e(),e("div",{staticClass:"sp-text-15px sp-text-neutral-80 sp-text-center sp-mt-2",domProps:{innerHTML:t._s(t.txt_7)}})])]),e("div",[e("a",{staticClass:"play-video sp-mx-auto sp-block sp-text-center sp--mt-40",attrs:{href:"#",title:t.txt_15},on:{click:function(s){return s.preventDefault(),t.watch_video(s)}}},[e("img",{staticClass:"video-thumbnail",attrs:{src:t.shared.plugin_path+"public/img/welcome-video.png",alt:t.txt_13}})]),e("div",[e("div",{staticClass:"sp-text-lg sp-text-neutral-80 sp-w-full sp-leading-relaxed sp-mt-8 sp-mx-auto sp-text-center",domProps:{innerHTML:t._s(t.txt_8)}}),e("div",{staticClass:"sp-flex sp-justify-center sp-pb-3 sp-pt-6"},[e("div",{staticClass:"sp-mr-1"},[e("a",{staticClass:"sp-mb-4 sp-inline-block sp-bg-primary sp-px-5 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px sp-ml-1 hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{id:"first-step",href:"admin.php?page="+t.shared.page_path}},[t._v(t._s(t.txt_9))])]),e("div",{staticClass:"sp-ml-1"},[e("a",{staticClass:"sp-mb-4 sp-inline-block sp-bg-neutral-10 hover:sp-bg-neutral-20 sp-px-5 sp-py-4 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-17px sp-ml-1 sp-cursor-pointer sp-font-semibold",attrs:{href:"https://seedprod.com/docs/creating-your-first-lpage/?utm_source=WordPress&utm_medium=link&utm_campaign=liteplugin",target:"_blank",rel:"noopener noreferrer"}},[t._v(t._s(t.txt_10))])])])]),e("div",[e("hr",{staticClass:"sp-border sp-border-neutral-20 sp-border-b-0 sp-w-24 sp-mb-8"}),e("h1",{staticClass:"sp-text-center sp-font-bold sp-text-34px sp-text-neutral sp-mt-2 sp-leading-normal sp-tracking-tight",domProps:{innerHTML:t._s(t.txt_11)}}),e("div",{staticClass:"sp-text-17px sp-text-neutral-80 sp-mx-auto sp-w-580 sp-leading-relaxed sp-mt-8 sp-text-center sp-w-full sp-mb-12",domProps:{innerHTML:t._s(t.txt_12)}}),e("div",{staticClass:"sm:sp-flex sp-w-690 sp-mx-auto sp-text-neutral-80 sp-mb-6"},[e("div",{staticClass:"sp-flex sp-items-start sm:sp-mr-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold",domProps:{innerHTML:t._s(t.txt_16)}}),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_22)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sm:sp-ml-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_27))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n\t\t\t\t "+t._s(t.txt_28)+"\n ")])])])]),e("div",{staticClass:"sm:sp-flex sp-w-690 sp-mx-auto sp-text-neutral-80 sp-mb-6"},[e("div",{staticClass:"sp-flex sp-items-start sm:sp-mr-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_29))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_30)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sm:sp-ml-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_31))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_32)+"\n ")])])])]),e("div",{staticClass:"sm:sp-flex sp-w-690 sp-mx-auto sp-text-neutral-80 sp-mb-6"},[e("div",{staticClass:"sp-flex sp-items-start sm:sp-mr-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_33))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_34)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sm:sp-ml-8 sp-w-1/2"},[e("img",{staticClass:"sp-mr-4",attrs:{src:t.shared.plugin_path+"public/svg/green-check.svg"}}),e("div",[e("h5",{staticClass:"sp-m-0 sp-text-15px sp-font-bold"},[t._v(t._s(t.txt_35))]),e("p",{staticClass:"sp-text-15px"},[t._v("\n "+t._s(t.txt_36)+"\n ")])])])]),"seedprod_lite"==t.shared.page_path?e("div",{staticClass:"sp-mt-6 sp-bg-white sp-border-neutral-15 sp-border sp-rounded sp-border-solid sp-w-720 sp-mx-auto sp-px-10 sp-py-10 sp-text-center"},[e("div",[e("span",{staticClass:"sp-text-primary sp-text-lg sp-font-bold"},[t._v(t._s(t.txt_17))]),e("h1",{staticClass:"sp-mt-4 sp-mb-8 sp-leading-tight sp-text-34px sp-font-bold sp-text-neutral",domProps:{innerHTML:t._s(t.txt_23)}},[e("span",{staticClass:"sp-text-primary"},[t._v(t._s(t.txt_18))])]),e("div",{staticClass:"sp-text-center sp-mb-4 sp-text-base"},[e("div",{staticClass:"sp-inline-flex sp-text-left"},[e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v("\n "+t._s(t.txt_995)+"\n ")]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_996))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_997))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_998))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_999))])]),e("ul",{staticClass:"sp-px-4"},[e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9910))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9911))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9912))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9913))]),e("li",{staticClass:"sp-font-bold"},[e("span",{staticClass:"sp-text-green sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),t._v(t._s(t.txt_9914))])])])]),e("a",{staticClass:"sp-inline-block sp-bg-green sp-px-6 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-17px hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-flex sp-items-center sp-justify-center",attrs:{href:this.shared.upgrade_link+"pluginwelcomepage",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" "+t._s(t.txt_24)+"\n ")])])]):t._e(),e("div",{staticClass:"sm:sp-flex sp-w-720 sp-mx-auto sp-mt-2 sp-mb-20"},[e("div",{staticClass:"sp-testimonial sm:sp-mr-3 sp-w-1/2"},[e("p",{staticClass:"sp-bg-white sp-rounded-md sp-py-5 sp-px-6 sp-text-neutral-80 sp-text-15px sp-mb-0 sp-relative sp-leading-relaxed "},[t._v(t._s(t.txt_21))]),e("div",{staticClass:"sp-flex sp-items-center sp-mt-6 sp-pl-5"},[e("img",{staticClass:"sp-w-10 sp-rounded-full sp-mr-5",attrs:{src:t.shared.plugin_path+"public/img/chris-ducker.jpg"}}),t._m(0)])]),e("div",{staticClass:"sp-testimonial sm:sp-ml-3 sp-w-1/2"},[e("p",{staticClass:"sp-bg-white sp-rounded-md sp-py-5 sp-px-6 sp-text-neutral-80 sp-text-15px sp-mb-0 sp-relative sp-leading-relaxed "},[t._v(t._s(t.txt_26))]),e("div",{staticClass:"sp-flex sp-items-center sp-mt-6 sp-pl-5"},[e("img",{staticClass:"sp-w-10 sp-rounded-full sp-mr-5",attrs:{src:t.shared.plugin_path+"public/img/ruthie-unaegbu.jpg"}}),t._m(1)])])])])])])])},jt=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-text-neutral-80 sp-text-xs"},[e("strong",{staticClass:"sp-font-bold"},[t._v("Chris Ducker")]),e("p",{staticClass:"sp-m-0 sp-text-neutral-60 sp-mt-1"},[t._v("Author of #1 Bestselling Book 'Virtual Freedom'")])])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-text-neutral-80 sp-text-xs"},[e("strong",{staticClass:"sp-font-bold"},[t._v("Ruthie Unaegbu")]),e("p",{staticClass:"sp-m-0 sp-text-neutral-60 sp-mt-1"},[t._v("WordPress Freelancer")])])}],Ot={name:"Welcome",mixins:[q["a"]],data:function(){return{txt_1:Object(l["a"])("Thank you for choosing SeedProd - The #1 Coming Soon Page and Maintenance Mode Plugin for WordPress.","coming-soon"),txt_2:Object(l["a"])("You're using <strong>SeedProd Lite</strong> - No License needed. Enjoy!","coming-soon"),txt_3:Object(l["a"])("Enter your license key to enable all the features of the plugin.","coming-soon"),txt_4:Object(l["b"])(Object(l["a"])("If you already have a license key for <a href='%s' target='_blank'>SeedProd Pro</a>, please enter it to Upgrade to the Pro Features.","coming-soon"),seedprod_store_admin.upgrade_link+"welcome"),txt_5:Object(l["a"])("Enter Your License Key Here","coming-soon"),txt_6:Object(l["a"])("Verify key","coming-soon"),txt_7:Object(l["b"])(Object(l["a"])("Don't have a license key or need to renew? Visit <a href='%s' target='_blank' class='sp-text-primary'>seedprod.com</a>","coming-soon"),"https://www.seedprod.com?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginwelcomelicense"),txt_8:Object(l["a"])("SeedProd makes it easy to create landing pages in WordPress.<br>You can watch the video tutorial or read our guide on how create your first page.","coming-soon"),txt_9:Object(l["a"])("Create Your First Page","coming-soon"),txt_10:Object(l["a"])("Read the Full Guide","coming-soon"),txt_11:Object(l["a"])("SeedProd Features &amp; Solutions","coming-soon"),txt_12:Object(l["a"])("SeedProd is both easy to use and extremely powerful. We have tons of<br />helpful features to help you create a successful landing page.","coming-soon"),txt_13:Object(l["a"])("Watch how to create your first landing page","coming-soon"),txt_14:Object(l["a"])("Robbie the Rabbit the SeedProd mascot","coming-soon"),txt_15:Object(l["a"])("Watch how to create your first page","coming-soon"),txt_16:Object(l["a"])("Drag &amp; Drop Page Builder","coming-soon"),txt_17:Object(l["a"])("Special Upgrade Offer - Save 50% Off","coming-soon"),txt_18:Object(l["a"])("Save 20%","coming-soon"),txt_19:Object(l["a"])("Pro","coming-soon"),txt_20:Object(l["a"])("per year","coming-soon"),txt_21:Object(l["a"])("\"Want to create a great looking 'coming soon' landing page and grab emails easily? Check out SeedProd\"","coming-soon"),txt_22:Object(l["a"])("Our Drag & Drop Page Builder lets you create great looking pages and layouts fast so you can get your landing page up in minutes. No coding required!","coming-soon"),txt_23:Object(l["a"])("Upgrade to SeedProd Pro<br />Today and Save","coming-soon"),txt_24:Object(l["a"])("Upgrade to PRO Now","coming-soon"),txt_25:Object(l["a"])("List","coming-soon"),txt_26:Object(l["a"])('"Just gotta say how awesome SeedProd really is! WordPress freelancers really need this in their repertoire!"',"coming-soon"),txt_27:Object(l["a"])("Landing Page Templates","coming-soon"),txt_28:Object(l["a"])("Create a variety of landing pages including sales, optin, coming soon, maintenance mode, webinar, and thank you pages. New templates added regularly.","coming-soon"),txt_29:Object(l["a"])("Smart Sections","coming-soon"),txt_30:Object(l["a"])("We created professionally designed pre-built sections like headers, calls to action, so you don't need to be a designer to create beautiful layouts.","coming-soon"),txt_31:Object(l["a"])("Premium Integrations","coming-soon"),txt_32:Object(l["a"])("Collect emails with your favorite 3rd party email marketing service providers including MailChimp, ActiveCampaign, ConvertKit, Constant Contact and more...","coming-soon"),txt_33:Object(l["a"])("No Coding Skills Needed","coming-soon"),txt_34:Object(l["a"])("We've eliminated all the technical barries that keep you from building the perfect landing page.","coming-soon"),txt_35:Object(l["a"])("Super Fast Loading Pages","coming-soon"),txt_36:Object(l["a"])("Bloat free code results in faster loading pages which means your page converts higher.","coming-soon"),txt_995:Object(l["a"])("Drag & Drop Page Builder","coming-soon"),txt_996:Object(l["a"])("20+ PRO Page Blocks","coming-soon"),txt_997:Object(l["a"])("Email Marketing Integrations","coming-soon"),txt_998:Object(l["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(l["a"])("Page Access Controls","coming-soon"),txt_9910:Object(l["a"])("100+ PRO Page Templates","coming-soon"),txt_9911:Object(l["a"])("PRO Smart Sections","coming-soon"),txt_9912:Object(l["a"])("Subscriber Management","coming-soon"),txt_9913:Object(l["a"])("Saved Templates","coming-soon"),txt_9914:Object(l["a"])("Plus much more...","coming-soon"),shared:seedprod_store_admin}},methods:{watch_video:function(){this.$swal({width:600,html:'<iframe width="100%" height="315" src="https://www.youtube.com/embed/MUXoqm3VpRo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>',toast:!1,customContainerClass:"seedprod-welcome-video"})},save_api_key:function(){var t=this,s=p.a.stringify({api_key:t.shared.settings_page_meta.api_key});t.shared.doing_ajax=!0,j.a.start(),t.shared.settings_page_meta.button="api_key";var e="admin-ajax.php?action="+this.shared.page_path+"_save_api_key&_wpnonce="+seedprod_nonce;t.axios.post(e,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(j.a.done(),t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,"true"==s.data.status)var e="success";else e="error";t.$swal({imageUrl:t.shared.plugin_path+"public/svg/"+e+"-24px-white.svg",text:s.data.msg,toast:!0,type:null,customClass:"sp-toast-"+e,position:"top-end",showConfirmButton:!1,timer:3e4});var a=document.getElementById("first-step");a.scrollIntoView(!1)}).catch(function(s){t.shared.doing_ajax=!1,t.shared.settings_page_meta.button=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})}}},Pt=Ot,Lt=Object(u["a"])(Pt,kt,jt,!1,null,null,null),St=Lt.exports,Mt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{attrs:{id:"seedprod-aboutus"}},[e("nav",{staticClass:"sp-hidden"},[e("ul",{},[e("router-link",{attrs:{tag:"li",to:{name:"aboutus_aboutus"}}},[e("a",[e("span",[t._v(t._s(t.txt_1))])])]),e("router-link",{attrs:{tag:"li",to:{name:"aboutus_gettingstarted"}}},[e("a",[e("span",[t._v(t._s(t.txt_2))])])]),"seedprod_lite"==t.shared.page_path?e("router-link",{attrs:{tag:"li",to:{name:"aboutus_litevspro"}}},[e("a",[e("span",[t._v(t._s(t.txt_3))])])]):t._e()],1)]),e("div",[e("router-view",{attrs:{name:"main"}})],1)])},Tt=[],zt={name:"Aboutus",data:function(){return{txt_1:Object(l["a"])("About Us","coming-soon"),txt_2:Object(l["a"])("Getting Started","coming-soon"),txt_3:Object(l["a"])("Lite vs Pro","coming-soon"),shared:seedprod_store_admin}},computed:{},created:function(){var t=document.querySelector(".wp-first-item a[href='admin.php?page="+this.shared.page_path+"']"),s="current";t.classList.remove(s),t.parentNode.classList.remove(s);t=document.querySelector("a[href='admin.php?page="+this.shared.page_path+"_about_us']"),s="current";t.classList?t.classList.add(s):t.className+=" "+s,t.parentNode.classList?t.parentNode.classList.add(s):t.parentNode.className+=" "+s},methods:{}},Bt=zt,At=Object(u["a"])(Bt,Mt,Tt,!1,null,null,null),$t=At.exports,Dt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"lg:sp-flex sp-mt-10 sp-a"},[e("div",{staticClass:"sp-mr-20"},[e("h3",{staticClass:"sp-mt-0 sp-text-neutral sp-text-xl sp-leading-normal"},[t._v("\n "+t._s(t.txt_1)+"\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_2)+"\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_3)+"\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_4)+"\n "),e("a",{attrs:{href:"https://www.wpbeginner.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("WPBeginner")]),t._v(", "+t._s(t.txt_6)+",\n "),e("a",{attrs:{href:"https://optinmonster.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("OptinMonster")]),t._v(", "+t._s(t.txt_7)+",\n "),e("a",{attrs:{href:"https://www.monsterinsights.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("MonsterInsights")]),t._v(", "+t._s(t.txt_8)+",\n "),e("a",{attrs:{href:"https://www.wpforms.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("WPForms")]),t._v(", "+t._s(t.txt_9)+",\n "),e("a",{attrs:{href:"https://rafflepress.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("RafflePress")]),t._v(", "+t._s(t.txt_10)+",\n "),e("a",{attrs:{href:"https://trustpulse.com/?utm_source=seedprodplugin&utm_medium=pluginaboutpage&utm_campaign=aboutseedprod",target:"_blank",rel:"noopener noreferrer"}},[t._v("TrustPulse")]),t._v(".\n ")]),e("p",{staticClass:"sp-text-neutral-80 sp-text-17px"},[t._v("\n "+t._s(t.txt_5)+"\n ")])]),e("div",{},[e("img",{staticClass:"sp-rounded",attrs:{src:t.shared.plugin_path+"public/img/team.jpg",alt:t.txt_11}}),e("figcaption",{staticClass:"sp-text-neutral-80 sp-text-15px sp-text-center sp-mt-6"},[t._v("\n "+t._s(t.txt_12)+": Syed, John & Thomas"),e("br")])])]),"seedprod_lite"==t.shared.page_path&&t.shared.show_inline_cta?e("div",[e("SettingsLiteCTA")],1):t._e()])},Ut=[],It={name:"AboutusAbout",data:function(){return{txt_1:Object(l["a"])("Hello and welcome to SeedProd, the most beginner friendly drag & drop WordPress landing page plugin. At SeedProd, we build software that helps you create beautiful responsive landing pages for your website in minutes.","coming-soon"),txt_2:Object(l["a"])("Over the years, we found that most WordPress landing page plugins were bloated, buggy, slow, and very hard to use. So we started with a simple goal: build a WordPress landing page plugin that’s both easy and powerful.","coming-soon"),txt_3:Object(l["a"])("Our goal is to take the pain out of creating landing pages and make it easy.","coming-soon"),txt_4:Object(l["a"])("SeedProd is brought to you by the same team that’s behind the largest WordPress resource site,","coming-soon"),txt_5:Object(l["a"])("Yup, we know a thing or two about building awesome products that customers love.","coming-soon"),txt_6:Object(l["a"])("the most popular lead-generation software","coming-soon"),txt_7:Object(l["a"])("the best WordPress analytics plugin","coming-soon"),txt_8:Object(l["a"])("the best WordPress forms plugin","coming-soon"),txt_9:Object(l["a"])("the best WordPress giveaway plugin","coming-soon"),txt_10:Object(l["a"])("and finally the best WordPress FOMO plugin","coming-soon"),txt_11:Object(l["a"])("SeedProd Team photo","coming-soon"),txt_12:Object(l["a"])("The SeedProd Team","coming-soon"),shared:seedprod_store_admin}},methods:{},components:{SettingsLiteCTA:vt}},Ht=It,Et=Object(u["a"])(Ht,Dt,Ut,!1,null,null,null),Nt=Et.exports;n["default"].use(h["a"]);var Ft=new h["a"]({routes:[{name:"dashboard",path:"/",component:U},{name:"growthtools",path:"/growth-tools",component:W},{name:"subscribers",path:"/subscribers/:id",component:it},{path:"/settings",component:dt,children:[{name:"settings_general",path:"",components:{main:yt}}]},{path:"/aboutus",component:$t,children:[{name:"aboutus_aboutus",path:"",components:{main:Nt}}]},{name:"welcome",path:"/welcome",component:St}],linkActiveClass:"active"}),Wt=Ft,Rt=e("619c"),Vt=e("e37d"),Gt=e("bc3a"),Yt=e.n(Gt),qt=e("a7fe"),Kt=e.n(qt),Jt=e("7bb1"),Qt=e("f206");n["default"].config.devtools=!0,n["default"].component("ToggleButton",Qt["ToggleButton"]),n["default"].use(Rt["a"]),n["default"].use(Jt["a"]),n["default"].use(Vt["a"],{defaultClass:"seedprod-tooltip"}),n["default"].use(Kt.a,Yt.a),n["default"].config.productionTip=!1;var Xt={show_topbar_cta:seedprod_data_admin.show_topbar_cta,show_inline_cta:seedprod_data_admin.show_inline_cta,seedprod_unsupported_feature:seedprod_data_admin.seedprod_unsupported_feature,seedprod_csp4_migrated:seedprod_data_admin.seedprod_csp4_migrated,seedprod_csp4_imported:seedprod_data_admin.seedprod_csp4_imported,seedprod_cspv5_migrated:seedprod_data_admin.seedprod_cspv5_migrated,seedprod_cspv5_imported:seedprod_data_admin.seedprod_cspv5_imported,page_count:seedprod_data_admin.page_count,subscriber_count:seedprod_data_admin.subscriber_count,notifications:seedprod_data_admin.notifications,csp_id:seedprod_data_admin.csp_id,mmp_id:seedprod_data_admin.mmp_id,p404_id:seedprod_data_admin.p404_id,csp_uuid:seedprod_data_admin.csp_uuid,mmp_uuid:seedprod_data_admin.mmp_uuid,p404_uuid:seedprod_data_admin.p404_uuid,csp_preview_url:seedprod_data_admin.csp_preview_url,mmp_preview_url:seedprod_data_admin.mmp_preview_url,p404_preview_url:seedprod_data_admin.p404_preview_url,api_token:seedprod_data_admin.api_token,license_key:seedprod_data_admin.license_key,license_name:seedprod_data_admin.license_name,per:seedprod_data_admin.per,page_path:seedprod_data_admin.page_path,name:seedprod_data_admin.name,email:seedprod_data_admin.email,upgrade_link:seedprod_data_admin.upgrade_link,doing_ajax:!1,plugin_path:seedprod_data_admin.plugin_path,home_url:seedprod_data_admin.home_url,settings:seedprod_data_admin.settings,settings_page_meta:{lclass:seedprod_data_admin.lclass,lmsg:seedprod_data_admin.lmsg,button:"",api_key:seedprod_data_admin.api_key,timezones:seedprod_data_admin.timezones,dismiss_settings_lite_cta:seedprod_data_admin.dismiss_settings_lite_cta}};window.seedprod_store_admin=Xt;new n["default"]({router:Wt,mounted:function(){},render:function(t){return t(m)}}).$mount("#seedprod-vue-app");var Zt=function(){iFrameResize({log:!1,checkOrigin:!1},"#inline-help")};window.help_iframe=Zt}});
public/lite/vue-backend/js/index.js CHANGED
@@ -1,2 +1,2 @@
1
- (function(t){function s(s){for(var o,n,l=s[0],r=s[1],c=s[2],d=0,u=[];d<l.length;d++)n=l[d],i[n]&&u.push(i[n][0]),i[n]=0;for(o in r)Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o]);p&&p(s);while(u.length)u.shift()();return a.push.apply(a,c||[]),e()}function e(){for(var t,s=0;s<a.length;s++){for(var e=a[s],o=!0,l=1;l<e.length;l++){var r=e[l];0!==i[r]&&(o=!1)}o&&(a.splice(s--,1),t=n(n.s=e[0]))}return t}var o={},i={index:0},a=[];function n(s){if(o[s])return o[s].exports;var e=o[s]={i:s,l:!1,exports:{}};return t[s].call(e.exports,e,e.exports,n),e.l=!0,e.exports}n.m=t,n.c=o,n.d=function(t,s,e){n.o(t,s)||Object.defineProperty(t,s,{enumerable:!0,get:e})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,s){if(1&s&&(t=n(t)),8&s)return t;if(4&s&&"object"===typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(n.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&s&&"string"!=typeof t)for(var o in t)n.d(e,o,function(s){return t[s]}.bind(null,o));return e},n.n=function(t){var s=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(s,"a",s),s},n.o=function(t,s){return Object.prototype.hasOwnProperty.call(t,s)},n.p="/wp-content/plugins/seedprod-pro/public/lite/vue-backend/";var l=window["webpackJsonp"]=window["webpackJsonp"]||[],r=l.push.bind(l);l.push=s,l=l.slice();for(var c=0;c<l.length;c++)s(l[c]);var p=r;a.push([0,"chunk-vendors","chunk-common"]),e()})({0:function(t,s,e){t.exports=e("56d7")},"56d7":function(t,s,e){"use strict";e.r(s);var o=e("f499"),i=e.n(o),a=(e("7f7f"),e("cadf"),e("551c"),e("f751"),e("097d"),e("2b0e")),n=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",["template"==t.$router.currentRoute.name?e("div",{key:t.componentKey,ref:"spbuilder",staticClass:"sp--ml-5 sp-antialiased sp-font-sans",attrs:{id:"seedprod-customizer"}},[e("keep-alive",[e("router-view")],1),t.shared.doing_ajax?e("div",{attrs:{id:"seedprod-ajax-status"}},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()],1):e("div",{key:t.componentKey,ref:"spbuilder",staticClass:"seedprod sp-fixed sp-bg-neutral-5 sp-top-0 sp-left-0 sp-bottom-0 sp-right-0 sp-h-full sp-z-10 sp-antialiased sp-font-sans",class:{"sp-overflow-y-scroll":"publish"==t.$router.currentRoute.name||"template"==t.$router.currentRoute.name},attrs:{id:"seedprod-customizer"}},[e("router-view"),t.shared.doing_ajax?e("div",{attrs:{id:"seedprod-ajax-status"}},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()],1)])},l=[],r=(e("6762"),e("2fdb"),e("2ef0")),c=e.n(r),p=e("4328"),d=e.n(p),u=e("323e"),g=e.n(u),h=e("66cb"),v=e.n(h),m=e("b132"),b=e("561c"),f={mixins:[m["a"]],data:function(){return{shared:seedprod_store,componentKey:0,renderComponent:!0}},components:{},created:function(){},mounted:function(){localStorage.removeItem("history"),this.update_head_css()},watch:{$route:function(t,s){("template"==s.name&&"setup_details"==t.name||"template"==s.name&&"publish"==t.name)&&this.save_lpage(!0)},"shared.settings.document":{handler:function(t){this.update_storage()},deep:!0}},methods:{kb_shortcuts:function(t){t.expectedEvent.keyCode&&this.$router.push({name:"setup_block_options"})},update_storage:c.a.debounce(function(){if(null===localStorage.getItem("history"))var t=[];else t=JSON.parse(localStorage.getItem("history"));var s=this.shared.settings.document;t.length>10&&t.shift(),t.push(s),localStorage.setItem("history",i()(t))},500),undome:function(){var t=JSON.parse(localStorage.getItem("history"));this.shared.settings.document=t[0],this.forceRerender()},forceRerender:function(){var t=this;this.renderComponent=!1,this.$nextTick().then(function(){t.renderComponent=!0})}}};window.onbeforeunload=function(){if(!seedprod_page.includes("_template")&&i()(seedprod_store.settings)!==seedprod_store.settings_org)return Object(b["a"])("Changes not saved, are you sure you want to leave?","coming-soon")};var x=f,w=e("2877"),C=Object(w["a"])(x,n,l,!1,null,null,null),k=C.exports,y=e("8c4f"),z=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{},[e("div",{staticClass:"sp-bg-white"},["welcome"!=t.$router.currentRoute.name?e("div",{staticClass:"sp-bg-white sp-pt-6 sp-pb-10 sp-px-8 sp-text-neutral sp-flex sp-justify-between"},[e("div",{staticClass:"sp-flex sp-justify-center sp-flex-1 sp-flex-col"},[e("a",{staticClass:"sp-text-neutral-60 sp-text-12px sp-font-semibold sp-uppercase sp-mb-2",attrs:{href:"admin.php?page="+t.shared.page_path+"#/"},domProps:{innerHTML:t._s(t.txt_1)}}),e("h1",{staticClass:"sp-text-neutral sp-text-xl sp-font-bold"},[t._v(t._s(t.txt_2))])]),e("div",[e("a",{staticClass:"sp-bg-neutral-10 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-p-c63 sp-text-neutral-60",attrs:{href:"https://www.seedprod.com/docs/",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"}})])])])]):t._e(),e("div",{staticClass:"sp-flex sp-px-8 sp-bg-white"},[e("div",{staticClass:"sp-text-base sp-cursor-pointer sp-font-semibold sp-text-neutral-60 sp-pb-5 sp-mr-8 hover:sp-text-neutral",class:{"sp-border-b-2 sp-border-primary sp-text-neutral sp-font-bold":1==t.tab},on:{click:function(s){return t.set_tab(1)}}},[t._v("\n "+t._s(t.txt_3)+"\n ")]),e("div",{staticClass:"sp-text-base sp-cursor-pointer sp-font-semibold sp-text-neutral-60 sp-mr-8 hover:sp-text-neutral",class:{"sp-border-b-2 sp-border-primary sp-text-neutral sp-font-bold":2==t.tab},on:{click:function(s){t.showUpsellModal=!0}}},[t._v("\n "+t._s(t.txt_4)+"\n ")]),e("div",{staticClass:"sp-text-base sp-cursor-pointer sp-font-semibold sp-text-neutral-60 hover:sp-text-neutral",class:{"sp-border-b-2 sp-border-primary sp-text-neutral sp-font-bold":3==t.tab},on:{click:function(s){t.showUpsellModal=!0}}},[t._v("\n "+t._s(t.txt_5)+"\n ")])])]),2==t.tab?e("div",[e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.favs||t.favs.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.favs.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-"+s.id+".png"}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.save_template(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-80 sp-text-xs sp-font-bold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),s.favorited?e("span",{staticClass:"sp-text-red sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"detach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"}})])]):e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"attach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"}})])])])])}),0):e("div",{staticClass:"sp-text-center sp-text-base sp-m-20 sp-text-neutral"},[t._v("\n "+t._s(t.txt_6)+"\n "),e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.txt_24},expression:"{\n content: txt_24,\n }",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle sp-ml-2"})])])]):t._e(),3==t.tab?e("div",[e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.saved||t.saved.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.saved.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-saved.png"}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.save_template(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-80 sp-text-xs sp-font-bold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.remove_saved(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])])])}),0):e("div",{staticClass:"sp-text-center sp-text-base sp-m-20 sp-text-neutral"},[t._v("\n "+t._s(t.txt_7)+"\n "),e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.txt_25},expression:"{\n content: txt_25,\n }",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle sp-ml-2"})])])]):t._e(),1==t.tab?e("div",[e("div",{staticClass:"sp-px-8 sp-flex sp-items-center sp-pt-12"},[e("div",{staticClass:"sp-flex-1"},[e("span",{staticClass:"sp-text-neutral-60 sp-uppercase sp-text-12px sp-tracking-wider sp-mr-4 sp-font-semibold"},[t._v(t._s(t.txt_8))]),e("button",{staticClass:"sp-inline-block sp-px-4 sp-py-2 sp-rounded-sm sp-leading-none sp-no-underline sp-text-xs hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold sp-mr-2 sp-bg-neutral-15 sp-text-neutral-80",class:{"sp-cat-active":0==t.templatecat},on:{click:function(s){return t.filter_cat(0)}}},[t._v("\n "+t._s(t.txt_9)+"\n ")]),t._l(t.cats,function(s,o){return e("button",{key:o,staticClass:"sp-inline-block sp-px-4 sp-py-2 sp-rounded-sm sp-leading-none sp-no-underline sp-text-xs hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold sp-bg-neutral-15 sp-text-neutral-80 sp-mr-2 sp-mb-2",class:{"sp-cat-active":t.templatecat==s.id},on:{click:function(e){return t.filter_cat(s.id)}}},[t._v("\n "+t._s(s.name)+"\n ")])})],2),e("div",{staticClass:"sp-pl-5 sp-flex sp-justify-center sp-items-center sp-relative sp-w-280"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-26"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.templatesearch,expression:"templatesearch"}],staticClass:"sp-form-input sp-w-full sp-pl-8 sp-rounded sp-mr-1",attrs:{placeholder:t.txt_22},domProps:{value:t.templatesearch},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.search(s)},input:function(s){s.target.composing||(t.templatesearch=s.target.value)}}})]),""!=t.templatesearch?e("span",{staticClass:"sp-text-neutral-40 sp--ml-6 sp-relative sp-z-10 sp-cursor-pointer",on:{click:t.clear_search}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]):t._e()]),e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.themes||t.themes.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.themes.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-"+s.id+".png"}}),0==s.free?e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("\n PRO\n ")]):t._e(),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.save_template(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-80 sp-text-xs sp-font-bold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),s.favorited?e("span",{staticClass:"sp-text-red sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"detach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"}})])]):e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"attach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"}})])])])])}),0):e("div",{staticClass:"sp-text-center sp-m-20 sp-text-neutral"},[t._v("\n "+t._s(t.txt_10)+"\n ")])]),1!=t.themes.last_page?e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-text-xs sp-text-neutral-40"},[e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.first_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("first")}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"}}),e("path",{attrs:{d:"M24 24H0V0h24v24z",fill:"none"}})]),t._v(t._s(t.txt_18)+"\n ")]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.prev_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("prev")}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_19)+"\n ")]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.next_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("next")}}},[t._v("\n "+t._s(t.txt_20)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.last_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("last")}}},[t._v("\n "+t._s(t.txt_21)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]):t._e()]):t._e(),t.showPreview?e("div",{staticClass:"sp-fixed sp-top-0 sp-left-0 sp-bottom-0 sp-right-0",staticStyle:{"z-index":"99999"}},[e("div",{staticClass:"sp-absolute sp-bg-neutral-60 sp-top-0 sp-left-0 sp-bottom-0 sp-right-0 sp-opacity-75"}),e("div",{staticClass:"sp-relative sp-z-40 sp-bg-neutral sp-text-white sp-h-72px sp-flex sp-items-center sp-px-5 sp-justify-between"},[e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3"},[e("svg",{attrs:{width:"32",height:"34",viewBox:"0 0 32 34",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0 0C0 0 0.74666 0.0506396 16.0822 2.054C31.4178 4.05737 36.7255 19.603 27.3358 33.1707C28.7883 21.0478 26.13 8.47161 15.4523 7.00138C4.77453 5.53114 5.70455 5.75641 5.70455 5.75641C5.70455 5.75641 5.88147 8.42652 6.8834 15.6043C7.88534 22.7821 13.4921 26.3022 18.3988 28.1143C18.3988 28.1143 18.6866 19.714 15.949 16.0165C13.2114 12.3191 9.80548 9.86362 9.80548 9.86362C9.80548 9.86362 17.8094 10.8232 20.8313 16.4032C23.8532 21.9832 23.5588 33.7778 23.5588 33.7778L20.2989 33.6092C11.5273 32.556 3.33239 27.2759 1.939 16.198C0.545613 5.1201 0 0 0 0Z",fill:"#7B6B7A"}})]),e("span",{staticClass:"sp-pl-8 sp-text-base sp-text-neutral-40 sp-text-semibold"},[t._v(t._s(t.preview_page_name))])]),e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3 sp-justify-center"},[e("button",{staticClass:"sp-w-8 sp-h-8 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-mr-1 sp-cursor-pointer",class:{"sp-bg-white sp-text-neutral-80":"desktop"==t.preview_mode,"sp-bg-neutral-40":"mobile"==t.preview_mode},on:{click:function(s){return t.set_preview_mode("desktop")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"}})])]),e("button",{staticClass:"sp-w-8 sp-h-8 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-ml-2 sp-cursor-pointer",class:{"sp-bg-white sp-text-neutral-80":"mobile"==t.preview_mode,"sp-bg-neutral-40":"desktop"==t.preview_mode},on:{click:function(s){return t.set_preview_mode("mobile")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"}})])])]),e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3 sp-justify-end"},[e("button",{staticClass:"sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-sm hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold sp-mr-5",on:{click:function(s){return t.save_template(t.previewId)}}},[t._v("\n "+t._s(t.txt_12)+"\n ")]),e("button",{staticClass:"sp-text-neutral-40",on:{click:t.close_preview_template}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])])]),e("div",{staticClass:"sp-overflow-y-scroll sp-h-full"},[e("iframe",{class:{"sp-transition-width sp-duration-500 sp-ease-out sp-h-full sp-h-600px sp-relative sp-w-350px sp-mx-auto sp-my-10 sp-rounded-lg sp-p-3 sp-bg-white":"mobile"==t.preview_mode,"sp-h-full sp-relative sp-w-full ":"desktop"==t.preview_mode},attrs:{src:t.shared.template_preview_path+t.previewId+".html"}})])]):t._e(),t.showModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("h1",{staticClass:"sp-leading-none sp-text-2xl sp-font-bold sp-mb-3"},[t._v("\n "+t._s(t.txt_13)+"\n ")]),e("p",{staticClass:"sp-text-base sp-mb-10"},[t._v(t._s(t.txt_14))]),e("div",[e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-3 sp-inline-block"},[t._v(t._s(t.txt_15))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.page_name,expression:"page_name"},{name:"validate",rawName:"v-validate",value:"required",expression:"'required'"}],staticClass:"sp-form-input sp-w-full sp-px-5 sp-rounded sp-border sp-border-neutral-20 sp-p-4 sp-rounded-sm",staticStyle:{padding:"7px 18px",color:"#230820"},attrs:{type:"text","data-vv-as":"Page Name",name:"page_name",placeholder:t.txt_23},domProps:{value:t.page_name},on:{input:function(s){s.target.composing||(t.page_name=s.target.value)}}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("page_name"),expression:"errors.has('page_name')"}],staticClass:"sp-text-red sp-mt-1"},[t._v("\n "+t._s(t.errors.first("page_name"))+"\n ")])]),e("div",{staticClass:"sp-mt-8"},[e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-3 sp-inline-block"},[t._v(t._s(t.txt_16))])]),e("div",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded"},[e("span",{staticClass:"sp-rounded-tl sp-rounded-bl sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-5 sp-bg-neutral-5 sp-text-neutral-60 sp-text-lg",staticStyle:{padding:"23px 18px"}},[t._v(t._s(t.shared.home_url)+"/")]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.page_slug,expression:"page_slug"},{name:"validate",rawName:"v-validate",value:"alpha_dash|required",expression:"'alpha_dash|required'"}],staticClass:"sp-form-input sp-border-none sp-flex-1",staticStyle:{display:"inline-block",width:"300px",border:"none",color:"#230820"},attrs:{type:"text",name:"slug","data-vv-as":"Page URL"},domProps:{value:t.page_slug},on:{input:function(s){s.target.composing||(t.page_slug=s.target.value)}}})]),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("slug"),expression:"errors.has('slug')"}],staticClass:"sp-text-red sp-mt-1"},[t._v("\n "+t._s(t.errors.first("slug"))+"\n ")])]),e("button",{staticClass:"sp-mt-8 sp-inline-block sp-bg-primary sp-px-6 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-lg hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.going_to_next_step},on:{click:t.close_modal}},[t._v("\n "+t._s(t.txt_17)+"\n "),t.going_to_next_step?e("span",{staticClass:"sp-ml-2"},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):e("span",{staticClass:"sp-ml-2"},[t._v("→")])])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTATemplates")],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},O=[],j=(e("ac6a"),e("6b54"),e("a481"),e("714b")),M=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-text-center sp-w-full"},[e("div",[e("h1",{staticClass:" sp-mb-4 sp-leading-tight sp-text-2xl sp-font-bold sp-text-neutral"},[t._v("\n Templates are a PRO Feature\n ")]),e("p",{staticClass:"sp-mb-8 sp-text-base"},[t._v("\nWe're sorry, not all Templates are not available on your plan. Please upgrade to the PRO version to unlock all these awesome features.\n ")]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center hover:sp-text-white",staticStyle:{color:"#fff !important"},attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugintemplatepage",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")]),e("div",{staticClass:"sp-mt-3 sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")])])])])},S=[],H={name:"LiteCTASubscribers",data:function(){return{txt_1:Object(b["a"])("Dismiss this message","coming-soon"),txt_2:Object(b["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(b["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(b["a"])("Pro Features:","coming-soon"),txt_5:Object(b["a"])("Drag & Drop Page Builder","coming-soon"),txt_6:Object(b["a"])("More Premium Blocks","coming-soon"),txt_7:Object(b["a"])("Capture Emails and Leads","coming-soon"),txt_8:Object(b["a"])("Marketing & CRM Integrations","coming-soon"),txt_9:Object(b["a"])("Maintenance Access Controls","coming-soon"),txt_10:Object(b["a"])("Growing Library of Templates","coming-soon"),txt_11:Object(b["a"])("Smart Sections","coming-soon"),txt_12:Object(b["a"])("More Design Controls","coming-soon"),txt_13:Object(b["a"])("Coming Soon Access Controls","coming-soon"),txt_14:Object(b["a"])("Plus much more...","coming-soon"),txt_15:Object(b["a"])("Bonus:","coming-soon"),txt_16:Object(b["a"])("SeedProd Lite users get","coming-soon"),txt_17:Object(b["a"])("a discount off the regular price","coming-soon"),txt_18:Object(b["a"])("automatically applied at checkout.","coming-soon"),txt_19:Object(b["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon")}},methods:{dismiss:function(){var t=this,s=d.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},V=H,B=Object(w["a"])(V,M,S,!1,null,null,null),L=B.exports,T={name:"templatechooser",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("&larr; Go Back","coming-soon"),txt_2:Object(b["a"])("Choose a New Page Template","coming-soon"),txt_3:Object(b["a"])("All Templates","coming-soon"),txt_4:Object(b["a"])("Favorite Templates","coming-soon"),txt_5:Object(b["a"])("Saved Templates","coming-soon"),txt_6:Object(b["a"])("No Favorited Templates Found","coming-soon"),txt_7:Object(b["a"])("No Saved Templates Found","coming-soon"),txt_8:Object(b["a"])("Filter:","coming-soon"),txt_9:Object(b["a"])("All","coming-soon"),txt_10:Object(b["a"])("No Templates Found","coming-soon"),txt_11:Object(b["a"])("Choose This Template","coming-soon"),txt_12:Object(b["a"])("Choose This Template","coming-soon"),txt_13:Object(b["a"])("Enter your new page details","coming-soon"),txt_14:Object(b["a"])("You can always change it later in Page Settings.","coming-soon"),txt_15:Object(b["a"])("Page Name:","coming-soon"),txt_16:Object(b["a"])("Page URL:","coming-soon"),txt_17:Object(b["a"])("Save and Start Editing the Page","coming-soon"),txt_18:Object(b["a"])("First Page","coming-soon"),txt_19:Object(b["a"])("Prev","coming-soon"),txt_20:Object(b["a"])("Next","coming-soon"),txt_21:Object(b["a"])("Last Page","coming-soon"),txt_22:Object(b["a"])("Search templates...","coming-soon"),txt_23:Object(b["a"])("My Landing Page name goes here","coming-soon"),txt_24:Object(b["a"])("You can favorite any template by clicking the heart icon under the page template.","coming-soon"),txt_25:Object(b["a"])("You can save pages as templates in the builder. Any saved pages will be shown here.","coming-soon"),preview_mode:"desktop",preview_page_name:!1,previewId:!1,showPreview:!1,going_to_next_step:!1,selected_template_id:!1,page_name:"",page_slug:"",templatesearch:"",templatecat:"",tab:1,showModal:!1,showUpsellModal:!1,themes:!1,saved:!1,favs:!1,cats:!1,template_hover:!1,shared:seedprod_store,template_api_url:seedprod_remote_api+"templates?page=1",template_api_url_preview:seedprod_remote_api+"templates-preview?page=1",template_update_api_url:seedprod_remote_api+"template-update"}},created:function(){"cs"==this.shared.settings.page_type&&(this.templatecat=1),"mm"==this.shared.settings.page_type&&(this.templatecat=2),"p404"==this.shared.settings.page_type&&(this.templatecat=3),this.loadCats(),this.loadThemes()},watch:{page_name:{handler:function(t,s){this.page_slug=this.slugify(t)}}},methods:{slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},set_preview_mode:function(t){this.preview_mode=t},preview_template:function(t,s){this.previewId=t,this.showPreview=!0,this.preview_page_name=s,this.set_template_hover(!1)},close_preview_template:function(){this.previewId=!1,this.showPreview=!1,this.preview_page_name=!1},remove_saved:function(t){var s=this,e=t,o=this;g.a.start(),this.$swal({imageUrl:"",title:Object(b["a"])("Are you sure you want to delete?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:Object(b["a"])("Yes, delete it!","coming-soon")}).then(function(t){if(t.value){var i=d.a.stringify({template_id:e,method:"remove-saved",api_token:s.shared.api_token,site_token:s.shared.site_token});s.axios.post(s.template_update_api_url,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){for(var s in g.a.done(),o.saved.data)o.saved.data[s].id==e&&o.saved.data.splice(s,1)}).catch(function(t){console.log(t),g.a.done(),o.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})}),s.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(b["a"])("Deleted!","coming-soon"),toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})}else g.a.done()})},set_tab:function(t){this.tab=t,1==t&&this.loadThemes(),2==t&&this.loadFavs(),3==t&&this.loadSaved()},pagination:function(t){"first"==t&&this.themes.first_page_url&&(this.template_api_url=this.themes.first_page_url,this.loadThemes()),"prev"==t&&this.themes.prev_page_url&&(this.template_api_url=this.themes.prev_page_url,this.loadThemes()),"next"==t&&this.themes.next_page_url&&(this.template_api_url=this.themes.next_page_url,this.loadThemes()),"last"==t&&this.themes.last_page_url&&(this.template_api_url=this.themes.last_page_url,this.loadThemes())},search:function(){this.templatecat="",this.loadThemes()},clear_search:function(){this.templatesearch="",this.loadThemes()},filter_cat:function(t){this.templatesearch="",this.templatecat=t,this.loadThemes()},updateFavs:function(t,s){var e=d.a.stringify({template_id:t,method:s,api_token:this.shared.api_token,site_token:this.shared.site_token}),o=this.themes.data;o.forEach(function(s){s.id==t&&(s.favorited=!s.favorited)});o=this.favs.data;for(var i in this.favs.data)this.favs.data[i].id==t&&this.favs.data.splice(i,1);this.axios.post(this.template_update_api_url,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){g.a.done()}).catch(function(t){console.log(t.response),self.shared.doing_ajax=!1,self.$swal({imageUrl:self.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},recordPage:function(){var t=this;t.loading=!0,g.a.start();var s=d.a.stringify({page_uuid:this.shared.page_uuid,site_token:this.shared.site_token,api_token:this.shared.api_token,page_type:this.shared.page_type});t.axios.post(seedprod_remote_api+"record-page",s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})},loadCats:function(){var t=this;t.loading=!0,g.a.start();var s=this.template_api_url;0==this.shared.api_token&&(s=this.template_api_url_preview),this.axios.get(s+"&filter=cats&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.cats=s.data}).catch(function(s){console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},blankTemplate:function(){var t={id:99999,favorited:!1,name:"Blank Template"};return t},loadThemes:function(){var t=this;t.loading=!0,g.a.start();var s=this.template_api_url;0==this.shared.api_token&&(s=this.template_api_url_preview),this.axios.get(s+"&filter=templates&s="+this.templatesearch+"&cat="+this.templatecat+"&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done();var e=s.data.templates.data;0!=t.shared.api_token&&e.forEach(function(t){t.favorited=s.data.favs.includes(t.id)}),t.themes=s.data.templates}).catch(function(s){g.a.done(),console.log(s),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},loadFavs:function(){var t=this;t.loading=!0,g.a.start(),this.axios.get(this.template_api_url+"&filter=favorites&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done();var e=s.data.data;e.forEach(function(t){t.favorited=!0}),t.favs=s.data}).catch(function(s){g.a.done(),console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},loadSaved:function(){var t=this;t.loading=!0,g.a.start(),this.axios.get(this.template_api_url+"&filter=saved&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done(),t.saved=s.data}).catch(function(s){g.a.done(),console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},set_template_hover:function(t){this.template_hover=t},close_modal:function(){var t=this;this.$validator.validateAll().then(function(s){if(s){t.going_to_next_step=!0;var e=d.a.stringify({post_name:t.page_slug});t.axios.post(seedprod_slug_exists_url,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){s.data.success?(t.going_to_next_step=!0,t.save_template(t.selected_template_id)):(t.going_to_next_step=!1,t.page_slug="",alert("This page url already exisits. Please choose a unique page url."))})}else{var o="";t.errors.all().forEach(function(t){o=o+t+"\n"}),o+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:o,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})}})},save_template:function(t){for(var s=0;s<this.themes.data.length;s++)if(t==this.themes.data[s].id&&0==this.themes.data[s].free)return void(this.showUpsellModal=!0);var e=this;if(this.selected_template_id=t,"lp"==this.shared.settings.page_type&&""==this.page_name&&""==this.page_slug)return this.showModal=!0,!1;this.shared.lpage.post_title=this.page_name,this.shared.lpage.post_name=this.page_slug,this.shared.settings.template_id=t,this.shared.settings.is_new=!1;var o=d.a.stringify({lpage_id:this.shared.lpage.id,lpage_template_id:t,lpage_name:this.page_name,lpage_slug:this.page_slug,lpage_type:this.shared.settings.page_type});return g.a.start(),this.axios.post("admin-ajax.php?action="+this.shared.page_path+"_save_template&_wpnonce="+seedprod_nonce,o,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){if(g.a.done(),e.going_to_next_step=!1,"updated"==t.data.status)JSON.parse(t.data.code);var s="admin.php?page="+e.shared.page_path+"_builder&id="+e.shared.lpage.id+"#/setup/"+e.shared.lpage.id+"/block-options";location.replace(s)}).catch(function(t){g.a.done(),e.going_to_next_step=!1,e.$swal({imageUrl:e.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(b["a"])("Could not be saved. Please contact Support if you continue to experience this issue.","coming-soon"),toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})}),!1}},components:{modal:j["a"],LiteCTATemplates:L}},$=T,P=Object(w["a"])($,z,O,!1,null,null,null),N=P.exports,R=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticStyle:{width:"inherit"},attrs:{id:"sp-blocks-sections-wrapper"}},[t.$route.params.blockid?t._e():e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-sections"}},[e("div",{staticClass:"sp-w-1/2"},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer sp-secondary",on:{click:t.goto_sectiontemplates}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),e("div",{staticClass:"sp-fixed sp-z-50",staticStyle:{width:"inherit"}},[t.$route.params.blockid?e("div",{staticClass:"sp-flex sp-items-center sp-px-4",class:{"sp-block-type-row":"row"==t.shared.setup_page_meta.current_block.type||"col"==t.shared.setup_page_meta.current_block.type,"sp-block-type-section":"section"==t.shared.setup_page_meta.current_block.type},attrs:{id:"sp-blocks-editing"}},[e("div",{staticClass:"sp-flex-grow"},[e("span",{staticClass:"sp-pb-1"},[t._v(t._s(t.txt_6))]),t._v("\n "+t._s(t.get_display_name)+"\n ")]),e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Blocks",delay:{show:400,hide:0}},expression:"{content:'Blocks',delay:{ show: 400, hide: 0 }}"}],staticClass:"sp-cursor-pointer",on:{click:t.goto_blocks}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"}},[e("circle",{attrs:{cx:"1.68164",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"1.68164",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"1.68164",cy:"18.3306",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"18.3306",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"18.3306",r:"1.5"}})])])]):t._e()]),t.$route.params.blockid&&t.shared.setup_page_meta.current_block?e("div",{ref:"spoptionsbody",staticClass:"sp-options-body"},[e("div",{staticClass:"seedprod-sidebar-form-body seedprod-action-single"},["row"==t.shared.setup_page_meta.current_block.type?e("RowOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"section"==t.shared.setup_page_meta.current_block.type?e("SectionOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"col"==t.shared.setup_page_meta.current_block.type?e("ColOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"button"==t.shared.setup_page_meta.current_block.type?e("ButtonOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"icon"==t.shared.setup_page_meta.current_block.type?e("IconOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"feature"==t.shared.setup_page_meta.current_block.type?e("FeatureOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"iconfeature"==t.shared.setup_page_meta.current_block.type?e("IconFeatureOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"header"==t.shared.setup_page_meta.current_block.type?e("HeaderOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"text"==t.shared.setup_page_meta.current_block.type?e("TextOptions",{key:t.componentKey,attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"image"==t.shared.setup_page_meta.current_block.type?e("ImageOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"divider"==t.shared.setup_page_meta.current_block.type?e("DividerOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"spacer"==t.shared.setup_page_meta.current_block.type?e("SpacerOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"custom-html"==t.shared.setup_page_meta.current_block.type?e("CustomHTMLOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"shortcode"==t.shared.setup_page_meta.current_block.type?e("ShortcodeOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"bullet-list"==t.shared.setup_page_meta.current_block.type?e("BulletListOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"optin-form"==t.shared.setup_page_meta.current_block.type?e("OptinFormOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"form"==t.shared.setup_page_meta.current_block.type?e("MyFormOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"progress-bar"==t.shared.setup_page_meta.current_block.type?e("ProgressBarOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"social-profiles"==t.shared.setup_page_meta.current_block.type?e("SocialProfilesOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"social-sharing"==t.shared.setup_page_meta.current_block.type?e("SocialSharingOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"contact-form"==t.shared.setup_page_meta.current_block.type?e("ContactFormOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"giveaway"==t.shared.setup_page_meta.current_block.type?e("GiveawayOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"video"==t.shared.setup_page_meta.current_block.type?e("VideoOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"starrating"==t.shared.setup_page_meta.current_block.type?e("StarRatingOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"countdown"==t.shared.setup_page_meta.current_block.type?e("CountdownOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"nav"==t.shared.setup_page_meta.current_block.type?e("NavOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"anchor"==t.shared.setup_page_meta.current_block.type?e("AnchorOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e()],1)]):e("div",{attrs:{id:"seedprod-add-actions"}},[e("div",{staticClass:"sp-pt-5 sp-px-5 sp-pb-2 sp-flex sp-justify-center sp-items-center sp-relative"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-26"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.blocksearch,expression:"blocksearch"}],staticClass:"sp-form-input sp-w-full sp-pl-8",attrs:{placeholder:t.txt_7},domProps:{value:t.blocksearch},on:{input:function(s){s.target.composing||(t.blocksearch=s.target.value)}}})]),e("h3",{staticClass:"sp-flex sp-items-center sp-justify-between",class:{seedprod_collaspe:!t.shared.expand_collapse_state.show_entry_settings},on:{click:function(s){t.shared.expand_collapse_state.show_entry_settings=!t.shared.expand_collapse_state.show_entry_settings}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40"},[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.shared.expand_collapse_state.show_entry_settings},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.shared.expand_collapse_state.show_entry_settings},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.shared.expand_collapse_state.show_entry_settings?e("div",{staticClass:"seedprod-sidebar-form-body "},[e("draggable",{staticClass:"seedprod-drag-source sp-flex sp-flex-wrap",attrs:{sort:!1,clone:t.add_block_option,list:t.standardBlocks,group:{name:"blocks",pull:"clone",put:!1}},on:{start:t.start_move,end:t.end_move}},[t._l(t.standardBlocks,function(s,o){return e("div",{key:o,staticClass:"seedprod-block-option"},[e("button",{on:{mouseover:function(s){t.page_meta.show_icon=o},mouseleave:function(s){t.page_meta.show_icon=!1}}},[e("div",{staticClass:"sp-inline-block sp-mt-6",domProps:{innerHTML:t._s(s.icon)}}),e("span",{staticClass:"sp-font-semibold"},[t._v(t._s(s.name))])])])}),e("draggable",{staticClass:"seedprod-drag-source sp-flex sp-flex-wrap",attrs:{sort:!1,clone:t.add_block_option,list:t.shared.setup_page_meta.block_options,group:{name:"rows",pull:"clone",put:!1}},on:{start:t.start_move,end:t.end_move}},t._l(t.layoutBlocks,function(s,o){return e("div",{key:o,staticClass:"seedprod-block-option"},[e("button",{on:{mouseover:function(s){t.page_meta.show_icon=o},mouseleave:function(s){t.page_meta.show_icon=!1}}},[e("div",{staticClass:"sp-inline-block sp-mt-6",domProps:{innerHTML:t._s(s.icon)}}),e("span",{staticClass:"sp-font-semibold"},[t._v(t._s(s.name))])])])}),0)],2)],1):t._e()]),e("h3",{staticClass:"sp-flex sp-items-center sp-justify-between",class:{seedprod_collaspe:!t.shared.expand_collapse_state.show_entry_settings_2},on:{click:function(s){t.shared.expand_collapse_state.show_entry_settings_2=!t.shared.expand_collapse_state.show_entry_settings_2}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40"},[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.shared.expand_collapse_state.show_entry_settings_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.shared.expand_collapse_state.show_entry_settings_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.shared.expand_collapse_state.show_entry_settings_2?e("div",{staticClass:"seedprod-sidebar-form-body "},[e("draggable",{staticClass:"seedprod-drag-source sp-flex sp-flex-wrap",attrs:{sort:!1,clone:t.add_block_option,handle:".sp-blockdrag-handle",list:t.advancedBlocks,group:{name:"blocks",pull:"clone",put:!1}},on:{start:t.start_move,end:t.end_move}},t._l(t.advancedBlocks,function(s,o){return e("div",{key:o,staticClass:"seedprod-block-option sp-relative",class:{"sp-pro-only":s.is_pro}},[s.is_pro?e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-green sp-rounded sp-z-20 sp-px-1 sp-text-10px sp-font-semibold sp-mt-2 sp-mr-1"},[e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("g",{attrs:{fill:"none"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",opacity:".87"}})]),e("path",{attrs:{d:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"}})])]):t._e(),e("button",{class:{"sp-blockdrag-handle":!s.is_pro},on:{mouseover:function(s){t.page_meta.show_icon=o+100},mouseleave:function(s){t.page_meta.show_icon=!1},click:function(e){return t.maybe_show_upsell(s)}}},[e("div",{staticClass:"sp-inline-block sp-mt-6",domProps:{innerHTML:t._s(s.icon)}}),e("span",{staticClass:"sp-font-semibold"},[t._v(t._s(s.name))])])])}),0)],1):t._e()]),e("h3",{staticClass:"sp-border-t-0 sp-flex sp-items-center sp-justify-between",class:{seedprod_collaspe:!t.shared.expand_collapse_state.show_entry_settings_3},on:{click:function(s){t.feature="Saved Blocks",t.showUpsellModal=!0}}},[e("span",[t._v(t._s(t.txt_5)+" "),e("div",{staticClass:"sp-inline-block sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-ml-2"},[t._v("PRO")])]),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40"},[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.shared.expand_collapse_state.show_entry_settings_3},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.shared.expand_collapse_state.show_entry_settings_3},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.shared.expand_collapse_state.show_entry_settings_3?e("div",{staticClass:"seedprod-sidebar-form-body "}):t._e()])],1),e("br"),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"blocks",feature:t.feature}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},F=[],A=(e("8449"),e("310e")),E=e.n(A),I=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v(t._s(t.txt_22)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group",class:{input:!0,"has-error":t.errors.has("btnTxt")}},[e("div",[e("label",[t._v(t._s(t.txt_4))])]),e("editor",{attrs:{init:{height:100,branding:!1,menubar:!1,paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar1:"bold,italic,underline,strikethrough,link,wp_adv",toolbar2:"forecolor,backcolor"}},model:{value:t.block.settings.btnTxt,callback:function(s){t.$set(t.block.settings,"btnTxt",s)},expression:"block.settings.btnTxt"}}),e("span",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("btnTxt"),expression:"errors.has('btnTxt')"}],staticClass:"help-block has-error"},[t._v(t._s(t.errors.first("btnTxt")))])],1),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_9))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnSubTxt,expression:"block.settings.btnSubTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.btnSubTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"btnSubTxt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group",class:{"sp-mb-1":t.show_adv_link}},[e("label",[t._v(t._s(t.txt_10))]),e("span",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded-md focus-within:sp-border-neutral-80 sp-rounded"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.link,expression:"block.settings.link"}],staticClass:"sp-form-input sp-border-none sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"text"},domProps:{value:t.block.settings.link},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"link",s.target.value)}}}),e("button",{staticClass:"sp-form-input sp-rounded-tl-none sp-rounded-bl-none sp-h-40px sp-text-neutral-40 hover:sp-text-neutral-80 sp-outline-none sp-border-t-0 sp-border-r-0 sp-border-b-0",class:{"sp-text-neutral-80":t.show_adv_link},on:{click:function(s){t.show_adv_link=!t.show_adv_link}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])])]),t.show_adv_link?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-mb-4"},[e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.openNewWindow,expression:"block.settings.openNewWindow"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.block.settings.openNewWindow)?t._i(t.block.settings.openNewWindow,null)>-1:t.block.settings.openNewWindow},on:{change:function(s){var e=t.block.settings.openNewWindow,o=s.target,i=!!o.checked;if(Array.isArray(e)){var a=null,n=t._i(e,a);o.checked?n<0&&t.$set(t.block.settings,"openNewWindow",e.concat([a])):n>-1&&t.$set(t.block.settings,"openNewWindow",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(t.block.settings,"openNewWindow",i)}}}),e("span",{staticClass:"sp-ml-2 sp-text-sm"},[t._v(t._s(t.txt_11))])])]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.noFollow,expression:"block.settings.noFollow"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.block.settings.noFollow)?t._i(t.block.settings.noFollow,null)>-1:t.block.settings.noFollow},on:{change:function(s){var e=t.block.settings.noFollow,o=s.target,i=!!o.checked;if(Array.isArray(e)){var a=null,n=t._i(e,a);o.checked?n<0&&t.$set(t.block.settings,"noFollow",e.concat([a])):n>-1&&t.$set(t.block.settings,"noFollow",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(t.block.settings,"noFollow",i)}}}),e("span",{staticClass:"sp-ml-2 sp-text-sm"},[t._v(t._s(t.txt_6))])])])]):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("AlignControl",{attrs:{justify:!0,icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_15))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnSize,expression:"block.settings.btnSize"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"btnSize",s.target.multiple?e:e[0])},t.update_btn_size]}},[e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))])])])]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_2},on:{click:function(s){t.section_2=!t.section_2}}},[t._v("\n "+t._s(t.txt_19)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_2?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_20))]),e("IconPicker",{model:{value:t.block.settings.beforeIcon,callback:function(s){t.$set(t.block.settings,"beforeIcon",s)},expression:"block.settings.beforeIcon"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_21))]),e("IconPicker",{model:{value:t.block.settings.afterIcon,callback:function(s){t.$set(t.block.settings,"afterIcon",s)},expression:"block.settings.afterIcon"}})],1)]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-4"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_24))]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(1)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"rgb(30, 136, 229)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"100px"}},[t._v(t._s(t.txt_25))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(2)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"rgb(30, 136, 229)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px"}},[t._v(t._s(t.txt_26))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(3)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(30, 136, 229), rgb(23, 117, 200) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(22, 109, 186)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_27))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(4)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(124, 179, 66), rgb(106, 153, 56) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(98, 142, 52)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_28))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(5)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(67, 160, 71), rgb(56, 135, 60) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(52, 124, 55)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(6)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(251, 140, 0), rgb(215, 120, 0) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(200, 112, 0)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(7)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(229, 57, 53), rgb(218, 32, 28) 90%)",padding:"8px 12px",color:"rgb(255, 255, 255)","border-radius":"4px",border:"1px solid rgb(205, 30, 26)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_31))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(8)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(253, 216, 53), rgb(253, 209, 18) 90%)",color:"rgb(0, 0, 0)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(252, 206, 3)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_32))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(9)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(255, 255, 255), rgb(237, 237, 237) 90%)",color:"rgb(0, 0, 0)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(230, 230, 230)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_33))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(10)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(158, 158, 158), rgb(140, 140, 140) 90%)",color:"rgb(255,255,255,0.80)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(132, 132, 132)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_34))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(11)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(51, 51, 51), rgb(33, 33, 33) 90%)",color:"rgb(255,255,255, 0.80)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(26, 26, 26)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_35))])])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_8)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_43,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:t.block.settings.btnPaddingTop,callback:function(s){t.$set(t.block.settings,"btnPaddingTop",s)},expression:"block.settings.btnPaddingTop"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_17))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:t.block.settings.btnPaddingLeft,callback:function(s){t.$set(t.block.settings,"btnPaddingLeft",s)},expression:"block.settings.btnPaddingLeft"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_18))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.borderRadius,callback:function(s){t.$set(t.block.settings,"borderRadius",s)},expression:"block.settings.borderRadius"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_36))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnStyle,expression:"block.settings.btnStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"btnStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_37))]),e("option",{attrs:{value:"2d"}},[t._v(t._s(t.txt_38))]),e("option",{attrs:{value:"3d"}},[t._v(t._s(t.txt_39))]),e("option",{attrs:{value:"ghost"}},[t._v(t._s(t.txt_40))]),e("option",{attrs:{value:"link"}},[t._v(t._s(t.txt_107))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_41))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_100))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_101))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_42))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_100))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_101))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},U=[],D=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("v-popover",{attrs:{offset:"10"}},[e("div",{ref:"colorpicker",staticClass:"sp-flex sp-items-center sp-justify-between sp-relative sp-cursor-pointer",on:{click:function(s){return t.togglePicker()}}},[e("span",{staticClass:"sp-text-sm"},[t._v(t._s(t.label))]),e("div",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-60 sp-text-neutral-60 hover:sp-text-white sp-flex sp-p-2px sp-rounded-full",class:{"sp-active":t.displayPicker}},[e("span",{staticClass:"color-picker-container sp-bg-white sp-flex sp-items-center sp-border-white sp-border-2 sp-rounded-full"},[e("span",{staticClass:"sp-bg-cv-transparent sp-h-6 sp-w-16"},[e("span",{staticClass:"current-color sp-h-6 sp-w-16 sp-rounded-full sp-cursor-pointer",style:"background-color: "+t.colorValue})])]),e("div",{staticClass:"sp-flex sp-align-center sp-pl-2 sp-pr-2"},[t.displayPicker?t._e():e("span",{staticClass:"sp-flex sp-items-center sp-justify-center sp-cursor-pointer"},[e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"}}),e("circle",{attrs:{cx:"6.5",cy:"11.5",r:"1.5"}}),e("circle",{attrs:{cx:"9.5",cy:"7.5",r:"1.5"}}),e("circle",{attrs:{cx:"14.5",cy:"7.5",r:"1.5"}}),e("circle",{attrs:{cx:"17.5",cy:"11.5",r:"1.5"}})])]),t.displayPicker?e("span",{staticClass:"sp-flex sp-items-center sp-justify-center sp-cursor-pointer"},[e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])]):t._e()])])]),e("template",{slot:"popover"},[e("div",{ref:"cpfloat",staticClass:"color-picker-float-overflow"},[e("div",{staticClass:"sp-flex"},[e("div",{staticClass:"sp-flex-grow sp-flex sp-flex-col"},[e("div",{staticClass:"sp-bg-neutral-5 sp-rounded-6px sp-px-2 sp-py-2 sp-mb-2 sp-mr-2"},[e("div",{staticClass:"sp-uppercase sp-text-10px sp-mb-2"},[t._v(t._s(t.txt_1)+":")]),e("div",{staticClass:"sp-grid sp-grid-cols-5 sp-gap-1"},[e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.headerColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.headerColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.textColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.textColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.buttonColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.buttonColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.linkColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.linkColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.bgColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.bgColor)}}})])]),e("div",{staticClass:"sp-bg-neutral-5 sp-rounded-6px sp-px-2 sp-py-2 sp-mb-2 sp-mr-2"},[e("div",{staticClass:"sp-uppercase sp-text-10px sp-mb-2"},[t._v(t._s(t.txt_2)+":")]),e("div",{staticClass:"sp-grid sp-grid-cols-5 sp-gap-1"},[e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#e53935"},on:{click:function(s){return t.setColor("#e53935")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#fb8c00"},on:{click:function(s){return t.setColor("#fb8c00")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#fdd835"},on:{click:function(s){return t.setColor("#fdd835")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#43a047"},on:{click:function(s){return t.setColor("#43a047")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#7cb342"},on:{click:function(s){return t.setColor("#7cb342")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#1e88e5"},on:{click:function(s){return t.setColor("#1e88e5")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#ffffff"},on:{click:function(s){return t.setColor("#ffffff")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#cccccc"},on:{click:function(s){return t.setColor("#cccccc")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#9e9e9e"},on:{click:function(s){return t.setColor("#9e9e9e")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#000000"},on:{click:function(s){return t.setColor("#000000")}}})])]),e("div",{staticClass:"sp-bg-neutral-5 sp-rounded-6px sp-px-2 sp-py-2 sp-mr-2 sp-flex-grow"},[e("div",{staticClass:"sp-uppercase sp-text-10px sp-mb-2"},[t._v(t._s(t.txt_3)+":")]),e("div",{staticClass:"sp-grid sp-grid-cols-5 sp-gap-1"},t._l(t.shared.recent_colors,function(s,o){return e("button",{key:o,staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-inline-block sp-border sp-border-white",style:{background:s},on:{click:function(e){return t.setColor(s)}}})}),0)])]),e("div",{},[e("chrome-picker",{attrs:{value:t.colors},on:{input:t.updateFromPicker}}),e("div",{staticClass:"sp-flex sp-justify-end"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-6 sp-text-xs sp-font-semibold sp-leading-none sp-mr-2",on:{click:t.clear_color}},[t._v(t._s(t.txt_4))]),e("button",{directives:[{name:"close-popover",rawName:"v-close-popover",value:!0,expression:"true"}],staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-6 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.close}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_5)+"\n ")])])],1)])])])],2)],1)},W=[],G=e("e814"),Z=e.n(G),J=(e("28a5"),e("c345")),q={name:"ColorPicker",data:function(){return{txt_1:Object(b["a"])("Global Colors","coming-soon"),txt_2:Object(b["a"])("Common Colors","coming-soon"),txt_3:Object(b["a"])("Recently Used","coming-soon"),txt_4:Object(b["a"])("Clear","coming-soon"),txt_5:Object(b["a"])("Close","coming-soon"),colors:{hex:"#000000"},colorValue:"",displayPicker:!1,shared:seedprod_store}},mounted:function(){this.setColor(this.color||"")},beforeDestroy:function(){this.update_recent_color()},methods:{clear_color:function(){this.colorValue="",this.$emit("input","")},update_recent_color:function(){0==this.shared.recent_colors.includes(this.colorValue)&&(this.shared.recent_colors.length>10&&this.shared.recent_colors.pop(),this.shared.recent_colors.unshift(this.colorValue))},setColor:function(t){this.updateColors(t),this.colorValue=t,this.$emit("input",t)},updateColors:function(t){if("#"==t.slice(0,1))this.colors={hex:t};else if("rgba"==t.slice(0,4)){var s=t.replace(/^rgba?\(|\s+|\)$/g,"").split(","),e="#"+((1<<24)+(Z()(s[0])<<16)+(Z()(s[1])<<8)+Z()(s[2])).toString(16).slice(1);this.colors={hex:e,a:s[3]}}},showPicker:function(){this.displayPicker=!0},close:function(){document.removeEventListener("click",this.documentClick),this.displayPicker=!1},hidePicker:function(){this.displayPicker=!1},togglePicker:function(){this.displayPicker?this.hidePicker():this.showPicker()},updateFromInput:function(){this.updateColors(this.colorValue),this.$emit("input",this.colorValue)},updateFromPicker:function(t){this.colors=t,1==t.rgba.a?this.colorValue=t.hex:this.colorValue="rgba("+t.rgba.r+", "+t.rgba.g+", "+t.rgba.b+", "+t.rgba.a+")",this.$emit("input",this.colorValue)},documentClick:function(t){var s=this.$refs.colorpicker,e="";lodash.isEmpty(t.target)||(e=t.target),s===e||s.contains(e)||!1!==e.classList.toString().includes("vc-")||"vc-chrome-toggle-icon"===e.parentElement.classList.toString()||this.hidePicker()}},watch:{displayPicker:function(t,s){0==t&&1==s&&this.update_recent_color()},colorValue:function(t){this.updateColors(t)},color:function(t,s){this.setColor(t)}},props:["color","label"],components:{"chrome-picker":J["Chrome"]}},Y=q,X=Object(w["a"])(Y,D,W,!1,null,null,null),K=X.exports,Q=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-typography-control"},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-relative sp-cursor-pointer sp-relative"},[e("label",[t._v(t._s(t.label_prefix)+" "+t._s(t.txt_1))]),e("div",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-60 hover:sp-text-white sp-flex sp-p-2px sp-rounded-full sp-text-14px sp-font-semibold sp-pl-2 sp-pr-4 sp-py-1",class:{"sp-active":t.display_typography},on:{click:function(s){return t.toggle_typography()}}},[e("span",{staticClass:"sp-flex sp-items-center sp-justify-center sp-items-center sp-w-5"},[t.display_typography?e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]):t._e(),t.display_typography?t._e():e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),t._v(" "+t._s(t.txt_2)+"\n ")]),t.display_typography?e("div",{staticClass:"sp-absolute sp-bg-white sp-top-0 sp-right-0 sp-p-4 sp-z-10 sp-rounded-md sp-shadow-xl sp-mt-8 sp-mb-8"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("FontControl",{on:{change:function(s){return t.load_font(t.block.settings[t.pre+"font"],t.block.settings[t.pre+"fontVariant"])}},model:{value:t.block.settings[t.pre+"font"],callback:function(s){t.$set(t.block.settings,t.pre+"font",s)},expression:"block.settings[pre+'font']"}}),e("FontVariantControl",{attrs:{myfont:t.block.settings[t.pre+"font"]},on:{change:function(s){return t.load_font(t.block.settings[t.pre+"font"],t.block.settings[t.pre+"fontVarient"])}},model:{value:t.block.settings[t.pre+"fontVariant"],callback:function(s){t.$set(t.block.settings,t.pre+"fontVariant",s)},expression:"block.settings[pre+'fontVariant']"}})],1),e("div",{staticClass:"sp-flex sp-justify-between sp-items-center sp-my-2 sp-mt-4"},[e("div",{staticClass:"sp-flex"},[e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"desktop"==t.currently_editing_device},on:{click:function(s){return t.set_device("desktop")}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"mobile"==t.currently_editing_device},on:{click:function(s){return t.set_device("mobile")}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])]),e("div")]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),"desktop"==t.currently_editing_device?e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings[t.pre+"fontSize"],callback:function(s){t.$set(t.block.settings,t.pre+"fontSize",s)},expression:"block.settings[pre+'fontSize']"}}):e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings[t.pre+"fontSize_mobile"],callback:function(s){t.$set(t.block.settings,t.pre+"fontSize_mobile",s)},expression:"block.settings[pre+'fontSize_mobile']"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),"desktop"==t.currently_editing_device?e("SliderControl",{attrs:{min:.5,max:10,step:.1},model:{value:t.block.settings[t.pre+"lineHeight"],callback:function(s){t.$set(t.block.settings,t.pre+"lineHeight",s)},expression:"block.settings[pre+'lineHeight']"}}):e("SliderControl",{attrs:{min:.5,max:10,step:.1},model:{value:t.block.settings[t.pre+"lineHeight_mobile"],callback:function(s){t.$set(t.block.settings,t.pre+"lineHeight_mobile",s)},expression:"block.settings[pre+'lineHeight_mobile']"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),"desktop"==t.currently_editing_device?e("SliderControl",{attrs:{min:0,max:50,step:1},model:{value:t.block.settings[t.pre+"letterSpacing"],callback:function(s){t.$set(t.block.settings,t.pre+"letterSpacing",s)},expression:"block.settings[pre+'letterSpacing']"}}):e("SliderControl",{attrs:{min:0,max:50,step:1},model:{value:t.block.settings[t.pre+"letterSpacing_mobile"],callback:function(s){t.$set(t.block.settings,t.pre+"letterSpacing_mobile",s)},expression:"block.settings[pre+'letterSpacing_mobile']"}})],1),e("div",{staticClass:"sp-flex"},[e("div",{staticClass:"sp-form-group sp-w-full"},[e("label",[t._v(t._s(t.txt_8))]),e("div",{staticClass:"sp-flex "},[e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":1==t.block.settings[t.pre+"typographyBold"]},on:{click:function(s){return t.update_style("bold")}}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":1==t.block.settings[t.pre+"typographyItalic"]},on:{click:function(s){return t.update_style("italic")}}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":1==t.block.settings[t.pre+"typographyUnderline"]},on:{click:function(s){return t.update_style("underline")}}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z"}})])])])]),e("div",{staticClass:"sp-form-group sp-w-full"},[e("label",[t._v(t._s(t.txt_9))]),e("AlignControl",{model:{value:t.block.settings[t.pre+"align"],callback:function(s){t.$set(t.block.settings,t.pre+"align",s)},expression:"block.settings[pre+'align']"}})],1)]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("div",{staticClass:"sp-flex ",attrs:{id:"sp-letter-case-control"}},[e("button",{staticClass:"sp-w-20",class:{"sp-active":""==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]=""}}},[t._v(t._s(t.txt_11))]),e("button",{class:{"sp-active":"uppercase"==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]="uppercase"}}},[t._v("AG")]),e("button",{class:{"sp-active":"capitalize"==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]="capitalize"}}},[t._v("Ag")]),e("button",{class:{"sp-active":"lowercase"==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]="lowercase"}}},[t._v("ag")])])]),e("div",{staticClass:"sp-flex sp-justify-end sp-border-t sp-border-neutral-20 sp-mt-6"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-4 sp-text-xs sp-font-semibold sp-leading-none",on:{click:function(s){t.display_typography=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_3)+"\n ")])])]):t._e()])])},tt=[],st=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"font",staticClass:"sp-mb-1"},[e("select",{directives:[{name:"model",rawName:"v-model",value:t.font,expression:"font"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.font=s.target.multiple?e:e[0]},t.update_font]}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_1))]),t._l(t.shared.setup_page_meta.googlefonts,function(s,o){return e("optgroup",{key:o,attrs:{label:o}},t._l(s,function(s,i){return e("option",{key:i,domProps:{value:i}},[e("span","Standard Fonts"==o?[t._v(t._s(s))]:[t._v(t._s(i))])])}),0)})],2)])},et=[],ot={name:"FontControl",data:function(){return{txt_1:Object(b["a"])("Default","coming-soon"),font:this.value,shared:seedprod_store}},mounted:function(){},methods:{update_font:function(){this.$emit("input",this.font),this.$emit("change",this.font)}},watch:{value:function(t,s){this.font=t,this.update_font()}},props:["value"]},it=ot,at=Object(w["a"])(it,st,et,!1,null,null,null),nt=at.exports,lt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"variant"},[t.shared.setup_page_meta.googlefonts["Standard Fonts"][t.myfont]?e("select",{directives:[{name:"model",rawName:"v-model",value:t.variant,expression:"variant"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.variant=s.target.multiple?e:e[0]},t.update_variant]}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_1))]),e("option",{attrs:{value:"400"}},[t._v(t._s(t.txt_2))]),e("option",{attrs:{value:"700"}},[t._v(t._s(t.txt_3))])]):t._e(),t.shared.setup_page_meta.googlefonts["Google Fonts"][t.myfont]?e("select",{directives:[{name:"model",rawName:"v-model",value:t.variant,expression:"variant"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.variant=s.target.multiple?e:e[0]},t.update_variant]}},t._l(t.shared.setup_page_meta.googlefonts["Google Fonts"][t.myfont].variants,function(s,o){return e("option",{key:o,domProps:{value:s.id}},[t._v(t._s(s.name))])}),0):t._e()])},rt=[],ct={name:"FontVariantControl",data:function(){return{txt_1:Object(b["a"])("Select a Font Weight","coming-soon"),txt_2:Object(b["a"])("Normal 400","coming-soon"),txt_3:Object(b["a"])("Bold 700","coming-soon"),variant:this.value,shared:seedprod_store}},mounted:function(){},methods:{update_variant:function(){this.$emit("input",this.variant),this.$emit("change",this.variant)}},watch:{value:function(t,s){this.variant=t,this.update_variant()}},props:["value","myfont"]},pt=ct,dt=Object(w["a"])(pt,lt,rt,!1,null,null,null),ut=dt.exports,gt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"align",staticClass:"sp-align-control"},[e("div",{staticClass:"sp-flex sp-align-center"},[e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"left"==t.caligned},on:{click:function(s){return t.update_align("left")}}},["alt"==t.icons?e("svg",{staticClass:"sp-w-4 sp-fill-current sp-transform sp-rotate-90",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]):e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"center"==t.caligned},on:{click:function(s){return t.update_align("center")}}},["alt"==t.icons?e("svg",{staticClass:"sp-w-4 sp-fill-current sp-transform sp-rotate-90",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]):e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"right"==t.caligned},on:{click:function(s){return t.update_align("right")}}},["alt"==t.icons?e("svg",{staticClass:"sp-w-4 sp-fill-current sp-transform sp--rotate-90",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]):e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z"}})])]),t.justify?e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"full"==t.caligned},on:{click:function(s){return t.update_align("full")}}},["alt"==t.icons?e("svg",{staticClass:"sp-w-4 sp-fill-current sp-transform sp--rotate-90",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("g",[e("rect",{attrs:{fill:"none",height:"24",width:"24"}})]),e("g",[e("g"),e("polygon",{attrs:{points:"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"}})])]):e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z"}})])]):t._e()])])},ht=[],vt={name:"AlignControl",data:function(){return{align:this.value}},mounted:function(){},methods:{update_align:function(t){this.align=t,this.$emit("input",this.align)}},computed:{caligned:function(){return this.value}},props:["value","justify","icons"]},mt=vt,_t=Object(w["a"])(mt,gt,ht,!1,null,null,null),bt=_t.exports,ft=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"slider",staticClass:"sp-slider-control"},[e("div",{staticClass:"sp-flex"},[e("div",{staticClass:"sp-flex-1 sp-flex sp-items-center w-full sp-mr-3"},[e("vue-slider",{staticStyle:{width:"100%"},attrs:{value:t.value,silent:!0,tooltip:"none",min:t.min,max:t.max,interval:t.step},on:{change:t.update_v,error:t.error}})],1),e("div",{staticClass:"sp-w-16"},[e("input",{staticClass:"sp-form-input sp-w-16",attrs:{step:t.step,type:"number"},domProps:{value:t.value},on:{input:function(s){return t.$emit("input",s.target.value)},wheel:t.scroll}})])])])},xt=[],wt={VALUE:1,INTERVAL:2,MIN:3,MAX:4,ORDER:5},Ct={name:"SliderControl",data:function(){return{errorMsg:""}},mounted:function(){},methods:{scroll:function(t,s){},update_v:function(t){this.clearErrorMsg(),this.$emit("input",t)},error:function(t,s){switch(t){case wt.MIN:break;case wt.MAX:break;case wt.VALUE:break}this.errorMsg=s},clearErrorMsg:function(){this.errorMsg=""}},watch:{},props:["value","min","max","step"]},kt=Ct,yt=Object(w["a"])(kt,ft,xt,!1,null,null,null),zt=yt.exports,Ot={name:"TypographyControl",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Typography","coming-soon"),txt_2:Object(b["a"])("Edit","coming-soon"),txt_3:Object(b["a"])("Close","coming-soon"),txt_4:Object(b["a"])("Font Family","coming-soon"),txt_5:Object(b["a"])("Font Size","coming-soon"),txt_6:Object(b["a"])("Line Height","coming-soon"),txt_7:Object(b["a"])("Letter Spacing","coming-soon"),txt_8:Object(b["a"])("Style","coming-soon"),txt_9:Object(b["a"])("Alignment","coming-soon"),txt_10:Object(b["a"])("Letter Case","coming-soon"),txt_11:Object(b["a"])("Normal","coming-soon"),currently_editing_device:"desktop",display_typography:!1,shared:seedprod_store}},mounted:function(){},methods:{toggle_typography:function(){this.display_typography=!this.display_typography},update_style:function(t){"bold"==t&&(this.block.settings[this.pre+"typographyBold"]=!this.block.settings[this.pre+"typographyBold"]),"underline"==t&&(this.block.settings[this.pre+"typographyUnderline"]=!this.block.settings[this.pre+"typographyUnderline"]),"italic"==t&&(this.block.settings[this.pre+"typographyItalic"]=!this.block.settings[this.pre+"typographyItalic"])},set_device:function(t){this.currently_editing_device=t}},watch:{"block.settings.fontSize_mobile":function(t,s){this.debounce_update_mobile_css()},"block.settings.lineHeight_mobile":function(t,s){this.debounce_update_mobile_css()},"block.settings.letterSpacing_mobile":function(t,s){this.debounce_update_mobile_css()}},computed:{label_prefix:function(){var t="";return void 0!==this.prefix&&(t=this.prefix.charAt(0).toUpperCase()+this.prefix.slice(1)),t},pre:function(){return void 0===this.prefix?"":this.prefix}},components:{FontControl:nt,FontVariantControl:ut,AlignControl:bt,SliderControl:zt},props:{block:Object,prefix:String}},jt=Ot,Mt=Object(w["a"])(jt,Q,tt,!1,null,null,null),St=Mt.exports,Ht=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"fapicker sp-relative"},["min"==t.type?e("div",[this.value?e("button",{staticClass:"sp-border-r sp-border-neutral-20 sp-rounded-tl-md sp-rounded-bl-md sp-w-42px sp-h-42px sp-inline-block sp-border-r-0 sp-text-lg sp-flex sp-items-center sp-justify-center sp-bg-white sp-text-neutral-80",on:{click:function(s){return t.togglePicker()}}},[e("i",{class:this.value})]):e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Icon",delay:{show:1500,hide:0}},expression:"{content:'Add Icon',delay:{ show: 1500, hide: 0 }}"}],staticClass:"sp-border-r sp-border-neutral-20 sp-rounded-tl-md sp-rounded-bl-md sp-w-42px sp-h-42px sp-inline-block sp-border-r-0 sp-text-lg sp-flex sp-items-center sp-justify-center sp-bg-neutral-10 sp-text-neutral-40 hover:sp-bg-white hover:sp-text-neutral-80",on:{click:function(s){return t.togglePicker()}}},[e("i",{staticClass:"far fa-image"})])]):e("div",[this.value?t._e():e("div",[e("div",{staticClass:"sp-border sp-border-neutral-20 sp-rounded-md"},[e("div",{staticClass:"sp-border-2 sp-border-white sp-bg-neutral-10 sp-text-neutral-60 sp-font-semibold sp-flex sp-items-center sp-justify-center sp-flex-col sp-p-4 sp-rounded-md"},[e("svg",{staticClass:"sp-fill-current sp-w-12 sp-h-12",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"}})]),e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-mt-2"},[e("button",{staticClass:"sp-bg-neutral-15 hover:sp-bg-neutral-20 sp-text-neutral-80 sp-py-1 sp-px-2 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-11px sp-font-semibold",on:{click:function(s){return t.togglePicker()}}},[t._v(t._s(t.txt_4))])])])])]),this.value?e("div",[e("div",{staticClass:"sp-form-input sp-py-12 sp-flex sp-items-center sp-justify-center sp-cursor-pointer sp-relative",on:{mouseover:function(s){t.show_hover=!0},mouseleave:function(s){t.show_hover=!1}}},[e("i",{staticClass:"fa-fw fa-lg",class:this.value,staticStyle:{"font-size":"72px"}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.show_hover,expression:"show_hover"}],staticClass:"sp-form-input sp-absolute sp-top-0 sp-left-0 sp-hover-dim sp-w-full sp-h-full"},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-h-full"},[e("button",{staticClass:"sp-mr-1 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-w-10 sp-h-10 sp-rounded-full sp-flex sp-items-center sp-justify-center",on:{click:function(s){return s.stopPropagation(),t.togglePicker()}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"}})])]),e("button",{staticClass:"p-ml-1 sp-bg-neutral hover:sp-bg-neutral-80 sp-text-white sp-w-10 sp-h-10 sp-rounded-full sp-flex sp-items-center sp-justify-center",on:{click:function(s){return s.stopPropagation(),t.remove_icon(s)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])])])])]):t._e()]),t.displayPicker?e("modal",{on:{close:function(s){t.displayPicker=!1}}},[e("div",{staticClass:"sp-flex ",staticStyle:{"min-height":"700px"},attrs:{slot:"body"},slot:"body"},[e("div",{staticClass:"sp-modal-left sp-bg-neutral-5 sp-py-6 sp-px-10"},[e("h4",{staticClass:"sp-text-lg sp-font-bold sp-mb-8"},[t._v(t._s(t.txt_5))]),e("ul",[e("li",{staticClass:"sp-cursor-pointer sp-font-semibold sp-border-b sp-border-neutral-10 sp-py-4 sp-leading-none",class:{"sp-text-primary":""==t.iconp_cat},on:{click:function(s){t.iconp_cat=""}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(t.txt_1)+"\n "),""==t.iconp_cat?e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]):t._e()])]),e("li",{staticClass:"sp-cursor-pointer sp-font-semibold sp-border-b sp-border-neutral-10 sp-py-4 sp-leading-none",class:{"sp-text-primary":"fa"==t.iconp_cat},on:{click:function(s){t.iconp_cat="fa"}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(t.txt_2)+"\n "),"fa"==t.iconp_cat?e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]):t._e()])])])]),e("div",{staticClass:"sp-modal-right sp-bg-neutral-10 sp-flex-grow sp-py-5 sp-px-16 sp-relative"},[e("div",{staticClass:"sp-flex sp-justify-center sp-items-center sp-relative sp-mb-10"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-7"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.iconp_search,expression:"iconp_search"}],staticClass:"sp-form-input sp-w-full sp-pl-8",attrs:{placeholder:t.txt_3},domProps:{value:t.iconp_search},on:{input:function(s){s.target.composing||(t.iconp_search=s.target.value)}}})]),e("div",{staticClass:"sp-flex sp-flex-wrap sp--mx-4"},t._l(t.myIcons,function(s,o){return e("div",{key:o,staticClass:"sp-mb-10 sp-px-4 sp-text-center sp-cursor-pointer",on:{click:function(e){return t.insert_image(s.n)}}},[e("div",{staticClass:"sp-bg-white sp-rounded-6px sp-p-4 sp-border-2 sp-border-white hover:sp-border-primary sp-relative",on:{mouseover:function(s){t.iconp_hover=o},mouseleave:function(s){t.iconp_hover=!1}}},[e("i",{staticClass:"fa-fw fa-2x",class:s.n}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.iconp_hover===o,expression:"iconp_hover === i"}],staticClass:"sp-bg-primary sp-p-1 sp-absolute sp-bottom-0 sp-right-0 sp-rounded-tl-md sp-text-white"},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])])]),e("span",{staticClass:"sp-hidden sp-inline-block sp-pt-1 sp-text-sm sp-font-semibold sp-text-neutral-60"},[t._v(t._s(s.n))])])}),0),e("button",{staticClass:"sp-text-neutral-40 sp-absolute sp-top-0 sp-right-0 sp-mt-2 sp-mr-2",on:{click:function(s){t.displayPicker=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])]),e("div",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},Vt=[],Bt={name:"IconPicker",data:function(){return{txt_1:Object(b["a"])("All Icons","coming-soon"),txt_2:Object(b["a"])("Font Awesome","coming-soon"),txt_3:Object(b["a"])("Search icons...","coming-soon"),txt_4:Object(b["a"])("Choose Icon","coming-soon"),txt_5:Object(b["a"])("Icon Library","coming-soon"),show_hover:!1,iconp_hover:!1,iconp_cat:"",iconp_search:"",displayPicker:!1,icon:this.value,search_term:"",shared:seedprod_store}},mounted:function(){},methods:{remove_icon:function(){this.icon="",this.update_icon()},insert_image:function(t){this.icon=t,this.$forceUpdate(),this.update_icon()},update_icon:function(){this.$emit("input",this.icon),this.hidePicker(),this.show_hover=!1},showPicker:function(){this.displayPicker=!0},hidePicker:function(){this.displayPicker=!1},togglePicker:function(){this.displayPicker?this.hidePicker():this.showPicker()}},computed:{myIcons:function(){var t=this;return this.shared.setup_page_meta.icons.filter(function(s){return""!=t.iconp_cat?s.c==t.iconp_cat&&s.n.toLowerCase().includes(t.iconp_search.toLowerCase()):s.n.toLowerCase().includes(t.iconp_search.toLowerCase())})}},watch:{},props:["value","type"],components:{Modal:j["a"]}},Lt=Bt,Tt=Object(w["a"])(Lt,Ht,Vt,!1,null,null,null),$t=Tt.exports,Pt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_1))]),!1===t.block.settings.paddingSync?e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingTop,expression:"block.settings.paddingTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingRight,expression:"block.settings.paddingRight"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingRight},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingRight",s.target.value)}}}),t._v("\n "+t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingBottom,expression:"block.settings.paddingBottom"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingBottom},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingBottom",s.target.value)}}}),t._v("\n "+t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingLeft,expression:"block.settings.paddingLeft"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingLeft},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingLeft",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-neutral-20",on:{click:function(s){return t.sync_padding(!0)}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z"}}),e("path",{attrs:{d:"M0 24V0",fill:"none"}})])])]):e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingTop,expression:"block.settings.paddingTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingTop,expression:"block.settings.paddingTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingTop,expression:"block.settings.paddingTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.paddingTop,expression:"block.settings.paddingTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings.paddingTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"paddingTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-primary",on:{click:function(s){return t.sync_padding(!1)}}},[e("svg",{staticClass:"sp-fill-current sp-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"}})])])])])},Nt=[],Rt={name:"PaddingControl",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Padding","coming-soon"),txt_2:Object(b["a"])("Top","coming-soon"),txt_3:Object(b["a"])("Right","coming-soon"),txt_4:Object(b["a"])("Bottom","coming-soon"),txt_5:Object(b["a"])("Left","coming-soon"),shared:seedprod_store}},methods:{sync_padding:function(t){this.block.settings.paddingSync=t,this.block.settings.paddingLeft=this.block.settings.paddingTop,this.block.settings.paddingBottom=this.block.settings.paddingTop,this.block.settings.paddingRight=this.block.settings.paddingTop}},components:{},props:{block:Object}},Ft=Rt,At=Object(w["a"])(Ft,Pt,Nt,!1,null,null,null),Et=At.exports,It=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("span",{ref:"helptip",staticClass:"help_tip"},[e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.text},expression:"{\n\t\t\t\t\t\t\tcontent:\n\t\t\t\t\t\t\t\ttext\n\t\t\t\t\t\t}",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle"})])},Ut=[],Dt={name:"HelpTip",data:function(){return{}},mounted:function(){},methods:{},watch:{},props:["text"]},Wt=Dt,Gt=Object(w["a"])(Wt,It,Ut,!1,null,null,null),Zt=Gt.exports,Jt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_1)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_2))]),e("SliderControl",{attrs:{min:0,max:200,step:1},model:{value:t.block.settings.marginTop,callback:function(s){t.$set(t.block.settings,"marginTop",s)},expression:"block.settings.marginTop"}})],1),e("PaddingControl",{attrs:{block:t.block}})],1):t._e()])},qt=[],Yt={name:"SpacingSectionControl",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Spacing","coming-soon"),txt_2:Object(b["a"])("Top Margin","coming-soon"),section_1:!1,shared:seedprod_store}},methods:{},computed:{},components:{ColorPicker:K,PaddingControl:Et,SliderControl:zt},props:{block:Object}},Xt=Yt,Kt=Object(w["a"])(Xt,Jt,qt,!1,null,null,null),Qt=Kt.exports,ts=e("ca72"),ss={name:"ButtonOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Button","coming-soon"),txt_4:Object(b["a"])("Button Text","coming-soon"),txt_6:Object(b["a"])('Add "No Follow"',"coming-soon"),txt_7:Object(b["a"])("Align","coming-soon"),txt_8:Object(b["a"])("Styles","coming-soon"),txt_9:Object(b["a"])("Button Sub Text","coming-soon"),txt_10:Object(b["a"])("Link","coming-soon"),txt_11:Object(b["a"])("Open In New Window","coming-soon"),txt_15:Object(b["a"])("Size","coming-soon"),txt_16:Object(b["a"])("Vertical Padding","coming-soon"),txt_17:Object(b["a"])("Horizontal Padding","coming-soon"),txt_18:Object(b["a"])("Border Radius","coming-soon"),txt_19:Object(b["a"])("Icons","coming-soon"),txt_20:Object(b["a"])("Before Text Icon","coming-soon"),txt_21:Object(b["a"])("After Text Icon","coming-soon"),txt_22:Object(b["a"])("Templates","coming-soon"),txt_23:Object(b["a"])("Tiny","coming-soon"),txt_24:Object(b["a"])("Choose Your Style","coming-soon"),txt_25:Object(b["a"])("Pill Button","coming-soon"),txt_26:Object(b["a"])("Flat Button","coming-soon"),txt_27:Object(b["a"])("Blue Button","coming-soon"),txt_28:Object(b["a"])("Light Green Button","coming-soon"),txt_29:Object(b["a"])("Green Button","coming-soon"),txt_30:Object(b["a"])("Orange Button","coming-soon"),txt_31:Object(b["a"])("Red Button","coming-soon"),txt_32:Object(b["a"])("Yellow Button","coming-soon"),txt_33:Object(b["a"])("White Button","coming-soon"),txt_34:Object(b["a"])("Grey Button","coming-soon"),txt_35:Object(b["a"])("Black Button","coming-soon"),txt_36:Object(b["a"])("Button Style","coming-soon"),txt_37:Object(b["a"])("Flat","coming-soon"),txt_38:Object(b["a"])("2D","coming-soon"),txt_39:Object(b["a"])("Vintage","coming-soon"),txt_40:Object(b["a"])("Ghost","coming-soon"),txt_41:Object(b["a"])("Text Shadow","coming-soon"),txt_42:Object(b["a"])("Shadow","coming-soon"),txt_43:Object(b["a"])("Background Color","coming-soon"),txt_100:Object(b["a"])("None","coming-soon"),txt_101:Object(b["a"])("Hairline","coming-soon"),txt_102:Object(b["a"])("Small","coming-soon"),txt_103:Object(b["a"])("Medium","coming-soon"),txt_104:Object(b["a"])("Large","coming-soon"),txt_105:Object(b["a"])("X Large","coming-soon"),txt_106:Object(b["a"])("2X Large","coming-soon"),txt_107:Object(b["a"])("Link","coming-soon"),current_index:!1,show_adv_link:!1,view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.button,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{apply_template:function(t){1==t&&(this.block.settings.bgColor="#1E88E5",this.block.settings.borderRadius="100",this.block.settings.btnStyle=""),2==t&&(this.block.settings.bgColor="#1E88E5",this.block.settings.borderRadius="4",this.block.settings.btnStyle=""),3==t&&(this.block.settings.bgColor="#1E88E5",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),4==t&&(this.block.settings.bgColor="#7CB342",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),5==t&&(this.block.settings.bgColor="#43A047",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),6==t&&(this.block.settings.bgColor="#FB8C00",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),7==t&&(this.block.settings.bgColor="#e53935",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),8==t&&(this.block.settings.bgColor="#FDD835",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),9==t&&(this.block.settings.bgColor="#ffffff",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),10==t&&(this.block.settings.bgColor="#9E9E9E",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d"),11==t&&(this.block.settings.bgColor="#333",this.block.settings.borderRadius="4",this.block.settings.btnStyle="3d")},update_btn_size:function(){1==this.block.settings.btnSize&&(this.block.settings.fontSize=13,this.block.settings.btnPaddingTop=4,this.block.settings.btnPaddingLeft=8),2==this.block.settings.btnSize&&(this.block.settings.fontSize=15,this.block.settings.btnPaddingTop=8,this.block.settings.btnPaddingLeft=12),3==this.block.settings.btnSize&&(this.block.settings.fontSize=18,this.block.settings.btnPaddingTop=12,this.block.settings.btnPaddingLeft=16),4==this.block.settings.btnSize&&(this.block.settings.fontSize=22,this.block.settings.btnPaddingTop=16,this.block.settings.btnPaddingLeft=20),5==this.block.settings.btnSize&&(this.block.settings.fontSize=26,this.block.settings.btnPaddingTop=20,this.block.settings.btnPaddingLeft=26),6==this.block.settings.btnSize&&(this.block.settings.fontSize=32,this.block.settings.btnPaddingTop=28,this.block.settings.btnPaddingLeft=32)}},created:function(){},components:{ColorPicker:K,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt,TypographyControl:St,PaddingControl:Et,IconPicker:$t,SpacingSectionControl:Qt,Editor:ts["a"]},props:{block:Object}},es=ss,os=Object(w["a"])(es,I,U,!1,null,null,null),is=os.exports,as=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_6))])]),e("editor",{attrs:{init:{height:100,branding:!1,menubar:!1,paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar1:"bold,italic,underline,strikethrough,link,wp_adv",toolbar2:"forecolor,backcolor"}},on:{onExecCommand:t.sync_align},model:{value:t.block.settings.headerTxt,callback:function(s){t.$set(t.block.settings,"headerTxt",s)},expression:"block.settings.headerTxt"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("AlignControl",{model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings.fontSize,callback:function(s){t.$set(t.block.settings,"fontSize",s)},expression:"block.settings.fontSize"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_9))]),e("div",{staticClass:"sp-flex",attrs:{id:"sp-header-tag-control"}},[e("button",{class:{"sp-active":"h1"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h1")}}},[t._v(t._s(t.txt_10))]),e("button",{class:{"sp-active":"h2"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h2")}}},[t._v(t._s(t.txt_11))]),e("button",{class:{"sp-active":"h3"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h3")}}},[t._v(t._s(t.txt_12))]),e("button",{class:{"sp-active":"h4"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h4")}}},[t._v(t._s(t.txt_13))])])])]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group "},[e("ColorPicker",{attrs:{label:t.txt_25,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_14))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_18))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_19))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_20))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_21))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},ns=[],ls=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"fapicker sp-relative"},[e("div",{staticClass:"sp-form-input sp-flex sp-items-center",on:{click:function(s){return t.togglePicker()}}},[e("input",{staticClass:"sp-flex-1",attrs:{placeholder:t.txt_1},domProps:{value:t.value},on:{input:function(s){return t.$emit("input",s.target.value)}}}),e("i",{staticClass:"fa-fw fa-lg",class:t.icon})]),t.displayPicker?e("div",{staticClass:"sp-form-input sp-z-10"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.search_term,expression:"search_term"}],staticClass:"sp-form-input sp-w-full sp-mb-3 sp-mt-1",attrs:{placeholder:t.txt_2},domProps:{value:t.search_term},on:{input:function(s){s.target.composing||(t.search_term=s.target.value)}}}),e("div",{staticClass:"sp-flex sp-flex-wrap sp-overflow-y-scroll",staticStyle:{height:"200px",width:"245px"}},t._l(t.shared.setup_page_meta.fontawesome,function(s,o){return s.includes(t.search_term)?e("div",{key:o,staticClass:"sp-cursor-pointer sp-p-1 hover:sp-bg-gray-200",on:{click:function(e){return t.update_icon(s)}}},[e("i",{staticClass:"fa-fw fa-2x",class:s})]):t._e()}),0)]):t._e()])},rs=[],cs={name:"FontAwesomePicker",data:function(){return{txt_1:Object(b["a"])("Click to select an icon","coming-soon"),txt_2:Object(b["a"])("Search icons","coming-soon"),displayPicker:!1,icon:this.value,search_term:"",shared:seedprod_store}},mounted:function(){},methods:{update_icon:function(t){this.icon=t,this.$emit("input",t),this.hidePicker()},showPicker:function(){document.addEventListener("click",this.documentClick),this.displayPicker=!0},hidePicker:function(){document.removeEventListener("click",this.documentClick),this.displayPicker=!1},togglePicker:function(){this.displayPicker?this.hidePicker():this.showPicker()},documentClick:function(t){var s=this.$refs.fapicker,e="";void 0!==t.target&&(e=t.target),s===e||s.contains(e)||this.hidePicker()}},watch:{},props:["value"]},ps=cs,ds=Object(w["a"])(ps,ls,rs,!1,null,null,null),us=ds.exports,gs={name:"ButtonOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Headline","coming-soon"),txt_4:Object(b["a"])("Styles","coming-soon"),txt_5:Object(b["a"])("Icons","coming-soon"),txt_6:Object(b["a"])("Text","coming-soon"),txt_7:Object(b["a"])("Align","coming-soon"),txt_8:Object(b["a"])("Font Size","coming-soon"),txt_9:Object(b["a"])("Level","coming-soon"),txt_10:Object(b["a"])("h1","coming-soon"),txt_11:Object(b["a"])("h2","coming-soon"),txt_12:Object(b["a"])("h3","coming-soon"),txt_13:Object(b["a"])("h4","coming-soon"),txt_14:Object(b["a"])("Text Shadow","coming-soon"),txt_15:Object(b["a"])("None","coming-soon"),txt_16:Object(b["a"])("Hairline","coming-soon"),txt_17:Object(b["a"])("Small","coming-soon"),txt_18:Object(b["a"])("Medium","coming-soon"),txt_19:Object(b["a"])("Large","coming-soon"),txt_20:Object(b["a"])("X Large","coming-soon"),txt_21:Object(b["a"])("2X Large","coming-soon"),txt_22:Object(b["a"])("Background Color","coming-soon"),txt_23:Object(b["a"])("Before Text Icon","coming-soon"),txt_24:Object(b["a"])("After Text Icon","coming-soon"),txt_25:Object(b["a"])("Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.header,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{set_tag:function(t){this.shared.is_moving=!0,this.block.settings.tag=t,this.shared.is_moving=!1},sync_align:function(t,s){"JustifyLeft"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="left"),"JustifyRight"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="right"),"JustifyCenter"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="center"),s.queryCommandState(t.command)}},components:{ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt,Editor:ts["a"],PaddingControl:Et,TypographyControl:St,IconPicker:$t,SpacingSectionControl:Qt},props:{block:Object}},hs=gs,vs=Object(w["a"])(hs,as,ns,!1,null,null,null),ms=vs.exports,_s=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_5))])]),e("editor",{attrs:{init:{height:200,branding:!1,menubar:!1,plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar1:"bold,italic,underline,strikethrough,link,wp_adv",toolbar2:"alignleft,aligncenter,alignright,forecolor,backcolor"}},model:{value:t.block.settings.txt,callback:function(s){t.$set(t.block.settings,"txt",s)},expression:"block.settings.txt"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("AlignControl",{model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings.fontSize,callback:function(s){t.$set(t.block.settings,"fontSize",s)},expression:"block.settings.fontSize"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_18,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_15))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_15))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},bs=[],fs={name:"TextOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Text","coming-soon"),txt_4:Object(b["a"])("Styles","coming-soon"),txt_5:Object(b["a"])("Text","coming-soon"),txt_6:Object(b["a"])("Align","coming-soon"),txt_7:Object(b["a"])("Font Size","coming-soon"),txt_8:Object(b["a"])("Text Shadow","coming-soon"),txt_9:Object(b["a"])("None","coming-soon"),txt_10:Object(b["a"])("Hairline","coming-soon"),txt_11:Object(b["a"])("Small","coming-soon"),txt_12:Object(b["a"])("Medium","coming-soon"),txt_13:Object(b["a"])("Large","coming-soon"),txt_14:Object(b["a"])("X Large","coming-soon"),txt_15:Object(b["a"])("2X Large","coming-soon"),txt_16:Object(b["a"])("Shadow","coming-soon"),txt_17:Object(b["a"])("Background Color","coming-soon"),txt_18:Object(b["a"])("Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.text,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ColorPicker:K,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,PaddingControl:Et,HelpTip:Zt,editor:ts["a"],TypographyControl:St,SpacingSectionControl:Qt},props:{block:Object}},xs=fs,ws=Object(w["a"])(xs,_s,bs,!1,null,null,null),Cs=ws.exports,ks=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("draggable",{attrs:{list:t.block.settings.items,handle:".sp-drag-drop"}},t._l(t.block.settings.items,function(s,o){return e("div",{key:o,staticClass:"sp-mb-3",on:{mouseover:function(s){t.current_index=o},mouseleave:function(s){t.current_index=!1}}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("div",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded-md focus-within:sp-border-neutral-80"},[e("span",[e("IconPicker",{attrs:{type:"min"},model:{value:s.icon,callback:function(e){t.$set(s,"icon",e)},expression:"item.icon"}})],1),e("span",{staticClass:"sp-rounded-tl-none sp-rounded-bl-none sp-form-input sp-border-none sp-drag-drop sp-cursor-move sp-truncate",staticStyle:{width:"160px"},domProps:{textContent:t._s(s.txt)},on:{click:function(s){return t.show_settings(o)}}})]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate",delay:{show:1500,hide:0}},expression:"{content:'Duplicate',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.duplicate_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete",delay:{show:1500,hide:0}},expression:"{content:'Delete',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-2",on:{click:function(s){return t.remove_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])]),t.showsettings===o?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-mb-4 sp-w-full sp-mt-1"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_15))])]),e("editor",{attrs:{init:{height:100,branding:!1,menubar:!1,paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar1:"bold,italic,underline,strikethrough,link,wp_adv",toolbar2:"forecolor,backcolor"}},model:{value:s.txt,callback:function(e){t.$set(s,"txt",e)},expression:"item.txt"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("IconPicker",{model:{value:s.icon,callback:function(e){t.$set(s,"icon",e)},expression:"item.icon"}})],1)]):t._e()])}),0),e("button",{staticClass:"sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.add_item}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("\n "+t._s(t.txt_4)+"\n ")])],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_18,color:t.block.settings.iconColor},model:{value:t.block.settings.iconColor,callback:function(s){t.$set(t.block.settings,"iconColor",s)},expression:"block.settings.iconColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings.fontSize,callback:function(s){t.$set(t.block.settings,"fontSize",s)},expression:"block.settings.fontSize"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("SliderControl",{attrs:{min:1,max:100,step:1},model:{value:t.block.settings.spaceBetween,callback:function(s){t.$set(t.block.settings,"spaceBetween",s)},expression:"block.settings.spaceBetween"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("AlignControl",{model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-8 sp-optin-templates"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_17))]),e("button",{staticClass:"sp-mt-4",on:{click:function(s){return t.apply_template(0)}}},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})]),e("button",{staticClass:"sp-mt-4 sp-bulletlist-block-template-1",on:{click:function(s){return t.apply_template(1)}}},[e("span",{staticClass:"sp-icon-wrapper"},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})])]),e("button",{staticClass:"sp-mt-4 sp-bulletlist-block-template-2",on:{click:function(s){return t.apply_template(2)}}},[e("span",{staticClass:"sp-icon-wrapper"},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})])]),e("button",{staticClass:"sp-mt-4 sp-bulletlist-block-template-3",on:{click:function(s){return t.apply_template(3)}}},[e("span",{staticClass:"sp-icon-wrapper"},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})])]),e("button",{staticClass:"sp-mt-4 sp-bulletlist-block-template-4",on:{click:function(s){return t.apply_template(4)}}},[e("span",{staticClass:"sp-icon-wrapper"},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})])]),e("button",{staticClass:"sp-mt-4 sp-bulletlist-block-template-5",on:{click:function(s){return t.apply_template(5)}}},[e("span",{staticClass:"sp-icon-wrapper"},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})])]),e("button",{staticClass:"sp-mt-4 sp-bulletlist-block-template-6",on:{click:function(s){return t.apply_template(6)}}},[e("span",{staticClass:"sp-icon-wrapper"},[e("i",{staticClass:"fa-fw fas fa-check",style:{color:t.block.settings.iconColor}})])])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_8)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group sp-flex sp-justify-between sp-items-center"},[e("label",[t._v(t._s(t.txt_9))]),e("div",{staticClass:"sp-flex sp-justify-center sp-items-center"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-text-xs sp-font-semibold sp-leading-none sp-mr-1 sp-rounded-full",class:{"sp-active":"v"==t.block.settings.layout},on:{click:function(s){t.block.settings.layout="v"}}},[t._v(t._s(t.txt_10))]),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-text-xs sp-font-semibold sp-leading-none sp-rounded-full",class:{"sp-active":"h"==t.block.settings.layout},on:{click:function(s){t.block.settings.layout="h"}}},[t._v(t._s(t.txt_11))])])]),e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_12,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_100))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_101))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_107))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},ys=[],zs={name:"BulletListOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{current_index:!1,txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("List","coming-soon"),txt_4:Object(b["a"])("Add New Item","coming-soon"),txt_5:Object(b["a"])("Font Size","coming-soon"),txt_6:Object(b["a"])("Space Between","coming-soon"),txt_7:Object(b["a"])("Align","coming-soon"),txt_8:Object(b["a"])("Styles","coming-soon"),txt_9:Object(b["a"])("List Layout","coming-soon"),txt_10:Object(b["a"])("Vertical","coming-soon"),txt_11:Object(b["a"])("Horizontal","coming-soon"),txt_12:Object(b["a"])("Text Color","coming-soon"),txt_13:Object(b["a"])("Spacing","coming-soon"),txt_14:Object(b["a"])("Top Margin","coming-soon"),txt_15:Object(b["a"])("Text","coming-soon"),txt_16:Object(b["a"])("Icon","coming-soon"),txt_17:Object(b["a"])("Choose Your Style","coming-soon"),txt_18:Object(b["a"])("Icon Color","coming-soon"),txt_100:Object(b["a"])("Text Shadow","coming-soon"),txt_101:Object(b["a"])("None","coming-soon"),txt_102:Object(b["a"])("Hairline","coming-soon"),txt_103:Object(b["a"])("Small","coming-soon"),txt_104:Object(b["a"])("Medium","coming-soon"),txt_105:Object(b["a"])("Large","coming-soon"),txt_106:Object(b["a"])("X Large","coming-soon"),txt_107:Object(b["a"])("2X Large","coming-soon"),txt_200:Object(b["a"])("Padding","coming-soon"),txt_201:Object(b["a"])("Top","coming-soon"),txt_202:Object(b["a"])("Bottom","coming-soon"),txt_203:Object(b["a"])("Right","coming-soon"),txt_204:Object(b["a"])("Left","coming-soon"),showsettings:!1,view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.bulletlist,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{show_settings:function(t){this.current_index=t,this.showsettings!==t?this.showsettings=t:this.showsettings=!1},apply_template:function(t){this.block.settings.blockTemplateId=t},add_item:function(){var t=lodash.last(this.block.settings.items);void 0===t&&(t={},t.icon="");var s=this.block.settings.items.push({icon:t.icon,txt:"Item "+(Z()(this.block.settings.items.length)+1)});this.show_settings(s-1)},remove_item:function(t){this.$delete(this.block.settings.items,t)},duplicate_item:function(t){var s=JSON.parse(i()(this.block.settings.items[t]));this.block.settings.items.splice(t+1,0,s)}},components:{draggable:E.a,ColorPicker:K,IconPicker:$t,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,TypographyControl:St,PaddingControl:Et,SpacingSectionControl:Qt,HelpTip:Zt,Editor:ts["a"]},props:{block:Object}},Os=zs,js=Object(w["a"])(Os,ks,ys,!1,null,null,null),Ms=js.exports,Ss=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v(t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_3)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("ImageControl",{model:{value:t.block.settings.src,callback:function(s){t.$set(t.block.settings,"src",s)},expression:"block.settings.src"}})],1),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_12))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.altTxt,expression:"block.settings.altTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.altTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"altTxt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("div",{},[e("label",[t._v(t._s(t.txt_13))])]),e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.width,expression:"block.settings.width"}],staticClass:"sp-form-input sp-w-20",attrs:{type:"number"},domProps:{value:t.block.settings.width},on:{wheel:t.scroll,input:function(s){s.target.composing||t.$set(t.block.settings,"width",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n ")]),e("svg",{staticClass:"sp-mx-2 sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.height,expression:"block.settings.height"}],staticClass:"sp-form-input sp-w-20",attrs:{type:"number"},domProps:{value:t.block.settings.height},on:{wheel:t.scroll,input:function(s){s.target.composing||t.$set(t.block.settings,"height",s.target.value)}}}),t._v("\n Height\n ")]),e("div",{staticClass:"sp-text-sm"},[e("span",{staticClass:"sp-mx-2 sp-text-neutral-40 sp-cursor-pointer",class:{"sp-text-neutral-80 sp-underline":"px"==t.block.settings.unit},on:{click:function(s){t.block.settings.unit="px"}}},[t._v("PX")]),e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",class:{"sp-text-neutral-80 sp-underline":"%"==t.block.settings.unit},on:{click:function(s){t.block.settings.unit="%"}}},[t._v("%")])])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_14))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-4"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_15))]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(1)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-1",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(2)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-2",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(6)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-6",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(3)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-3",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(4)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-4",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(7)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-7",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(8)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-0",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(5)}}},[e("img",{staticClass:"sp-cursor-pointer sp-img-block-template-5",staticStyle:{width:"80%"},attrs:{src:this.shared.setup_page_meta.placeholder_image}})])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_6)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_18))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_19))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_20))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_21))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_22))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_23))]),e("option",{attrs:{value:"7"}},[t._v(t._s(t.txt_24))])])])]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_5},on:{click:function(s){t.section_5=!t.section_5}}},[t._v("\n "+t._s(t.txt_7)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_5?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_25))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.imageBorderRadius,callback:function(s){t.$set(t.block.settings,"imageBorderRadius",s)},expression:"block.settings.imageBorderRadius"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_26))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderStyle,expression:"block.settings.imageBorderStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"imageBorderStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"solid"}},[t._v(t._s(t.txt_27))]),e("option",{attrs:{value:"dotted"}},[t._v(t._s(t.txt_28))]),e("option",{attrs:{value:"dashed"}},[t._v(t._s(t.txt_29))])])]),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_32,color:t.block.settings.imageBorderColor},model:{value:t.block.settings.imageBorderColor,callback:function(s){t.$set(t.block.settings,"imageBorderColor",s)},expression:"block.settings.imageBorderColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_30))]),!1===t.block.settings.imageBorderSync?e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderTop,expression:"block.settings.imageBorderTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_8)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderRight,expression:"block.settings.imageBorderRight"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderRight},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderRight",s.target.value)}}}),t._v("\n "+t._s(t.txt_9)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderBottom,expression:"block.settings.imageBorderBottom"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderBottom},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderBottom",s.target.value)}}}),t._v("\n "+t._s(t.txt_10)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderLeft,expression:"block.settings.imageBorderLeft"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderLeft},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderLeft",s.target.value)}}}),t._v("\n "+t._s(t.txt_11)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-neutral-20",on:{click:function(s){return t.sync_image_border(!0)}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z"}}),e("path",{attrs:{d:"M0 24V0",fill:"none"}})])])]):e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderTop,expression:"block.settings.imageBorderTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_8)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderTop,expression:"block.settings.imageBorderTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_9)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderTop,expression:"block.settings.imageBorderTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_10)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.imageBorderTop,expression:"block.settings.imageBorderTop"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number"},domProps:{value:t.block.settings.imageBorderTop},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"imageBorderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_11)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-primary",on:{click:function(s){return t.sync_image_border(!1)}}},[e("svg",{staticClass:"sp-fill-current sp-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"}})])])])]),t.block.settings.imageBorderTop>0?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_31))]),e("SliderControl",{attrs:{min:0,max:50,step:1},model:{value:t.block.settings.imagePadding,callback:function(s){t.$set(t.block.settings,"imagePadding",s)},expression:"block.settings.imagePadding"}})],1):t._e()]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},Hs=[],Vs=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"image",staticClass:"sp-image-control sp-relative"},[t.value?t._e():e("div",[e("div",{staticClass:"sp-border sp-border-neutral-20 sp-rounded-5px"},[e("div",{staticClass:"sp-border-2 sp-border-white sp-bg-neutral-10 sp-text-neutral-60 sp-font-semibold sp-flex sp-items-center sp-justify-center sp-flex-col sp-p-4 sp-rounded-5px"},[e("svg",{staticClass:"sp-fill-current sp-w-12 sp-h-12",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"}})]),t._v("\n "+t._s(t.txt_1)+"\n "),e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-mt-2"},[e("button",{staticClass:"sp-bg-neutral-15 hover:sp-bg-neutral-20 sp-text-neutral-80 sp-py-1 sp-px-2 sp-rounded sp-flex sp-items-center sp-justify-center sp-mt-1 sp-text-11px sp-font-semibold",on:{click:t.insert_image}},[t._v("\n "+t._s(t.txt_6)+"\n "),e("br"),t._v(t._s(t.txt_7)+"\n ")]),e("span",{staticClass:"sp-px-4"},[t._v(t._s(t.txt_8))]),e("button",{staticClass:"sp-bg-neutral-15 hover:sp-bg-neutral-20 sp-text-neutral-80 sp-py-1 sp-px-2 sp-rounded sp-flex sp-items-center sp-justify-center sp-mt-1 sp-text-11px sp-font-semibold",on:{click:function(s){t.showModal=!0}}},[t._v("\n "+t._s(t.txt_11)+"\n "),e("br"),t._v(t._s(t.txt_12)+"\n ")])])])])]),t.value?e("div",[e("div",{staticClass:"seedprod-img-preview sp-border sp-border-neutral-20 sp-rounded-5px ",on:{mouseover:function(s){t.show_hover=!0},mouseleave:function(s){t.show_hover=!1}}},[e("div",{staticClass:"sp-border-2 sp-border-white sp-bg-neutral-10 sp-text-neutral-60 sp-font-semibold sp-flex sp-items-center sp-justify-center sp-flex-col sp-rounded-5px sp-relative sp-bg-white"},[e("img",{attrs:{src:t.preview_image}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.show_hover,expression:"show_hover"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-hover-dim sp-w-full sp-h-full"},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-h-full"},[e("button",{staticClass:"sp-mr-1 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-w-10 sp-h-10 sp-rounded-full sp-flex sp-items-center sp-justify-center",on:{click:function(s){return s.stopPropagation(),t.insert_image(s)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral hover:sp-bg-neutral-80 sp-text-white sp-w-10 sp-h-10 sp-rounded-full sp-flex sp-items-center sp-justify-center",on:{click:t.remove_image}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])])])])])]):t._e(),t.showModal?e("modal",{staticClass:"sp-w-masonary",on:{close:function(s){t.showModal=!1}}},[e("div",{staticClass:"sp-flex",attrs:{slot:"body"},slot:"body"},[e("div",{staticClass:"sp-relative sp-w-full sp-bg-neutral-5 sp-py-6 sp-px-10 sp-rounded-lg"},[e("h3",{staticClass:"sp-text-lg sp-font-bold sp-mb-8"},[t._v(t._s(t.txt_9)+" "),"seedprod_lite"==t.shared.page_path?e("div",{staticClass:"sp-inline-block sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-ml-2"},[t._v("PRO")]):t._e()]),e("div",{staticClass:"sp-flex sp-justify-center sp-items-center sp-relative sp-mb-10 "},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-7"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.q,expression:"q"}],staticClass:"sp-form-input sp-w-full sp-pl-8",attrs:{placeholder:t.txt_13},domProps:{value:t.q},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.select_stock_image()},input:function(s){s.target.composing||(t.q=s.target.value)}}}),e("button",{staticClass:"sp-w-32 sp-ml-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",on:{click:function(s){return t.select_stock_image()}}},[t.doing_unsplash_ajax?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):e("span",[t._v(t._s(t.txt_10))])])]),e("div",{class:{"sp-pro-only":"seedprod_lite"==t.shared.page_path}},[e("div",{directives:[{name:"masonry",rawName:"v-masonry"}],key:t.componentKey,attrs:{"transition-duration":"0.3s","item-selector":".item",gutter:10}},t._l(t.images,function(s,o){return e("div",{directives:[{name:"masonry-tile",rawName:"v-masonry-tile"}],key:o,staticClass:"item",attrs:{id:"seedprod-unsplash"}},[e("img",{attrs:{src:s.urls.thumb},on:{click:function(e){return t.set_unsplash_image(s.urls.regular)}}})])}),0)]),""!=t.q&&t.images.length>0?e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-text-xs sp-text-neutral-40"},[e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.pagination("first")}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"}}),e("path",{attrs:{d:"M24 24H0V0h24v24z",fill:"none"}})]),t._v(t._s(t.txt_2)+"\n ")]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.pagination("prev")}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_3)+"\n ")]),t.doing_unsplash_ajax?e("span",{staticClass:"sp-px-4"},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):e("span",{staticClass:"sp-px-4"},[t._v(t._s(t.current_page))]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.pagination("next")}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.pagination("last")}}},[t._v("\n "+t._s(t.txt_5)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]):t._e(),e("button",{staticClass:"sp-text-neutral-40 sp-absolute sp-top-0 sp-right-0 sp-mt-2 sp-mr-2",on:{click:function(s){t.showModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"stock-images",feature:"Stock Images"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},Bs=[],Ls=e("f408"),Ts={name:"ImageControl",data:function(){return{txt_1:Object(b["a"])("Choose New Image","coming-soon"),txt_2:Object(b["a"])("First Page","coming-soon"),txt_3:Object(b["a"])("Prev","coming-soon"),txt_4:Object(b["a"])("Next","coming-soon"),txt_5:Object(b["a"])("Last Page","coming-soon"),txt_6:Object(b["a"])("Use Your","coming-soon"),txt_7:Object(b["a"])("Own Image","coming-soon"),txt_8:Object(b["a"])("or","coming-soon"),txt_9:Object(b["a"])("Stock Images Library","coming-soon"),txt_10:Object(b["a"])("Search","coming-soon"),txt_11:Object(b["a"])("Use a","coming-soon"),txt_12:Object(b["a"])("Stock Image","coming-soon"),txt_13:Object(b["a"])("Search images...","coming-soon"),doing_unsplash_ajax:!1,was_removed:!1,show_hover:!1,containerId:"seedprod-unsplash",componentKey:0,showUpsellModal:!1,q:"",imagedata:{},images:{},showModal:!1,image:this.value,shared:seedprod_store,current_page:1,last_page:1,unsplash_api_url:seedprod_remote_api+"background_search"}},computed:{preview_image:function(){var t="";return!1===lodash.isEmpty(this.value)&&(t=this.value),t}},mounted:function(){},methods:{pagination:function(t){"first"==t&&(this.current_page=1,this.select_stock_image()),"prev"==t&&1!=this.current_page&&(this.current_page=Z()(this.current_page)-1,this.select_stock_image()),"next"==t&&this.current_page!=this.last_page&&(this.current_page=Z()(this.current_page)+1,this.select_stock_image()),"last"==t&&(this.current_page=this.last_page,this.select_stock_image())},set_unsplash_image:function(t){if("seedprod_lite"==this.shared.page_path)return this.showUpsellModal=!0,void(this.showModal=!1);this.image=t,this.showModal=!1,this.update_image();var s=this;this.axios.get(seedprod_backgrounds_download_url+"&image="+encodeURIComponent(t)).then(function(t){}).catch(function(t){}),this.axios.get(seedprod_backgrounds_sideload_url+"&image="+encodeURIComponent(t)).then(function(t){!1===s.was_removed&&(s.image=t.data)}).catch(function(t){})},select_stock_image:function(){this.was_removed=!1,this.showModal=!0,this.doing_unsplash_ajax=!0;var t=this;this.axios.get(this.unsplash_api_url+"?page="+t.current_page+"&query="+encodeURIComponent(this.q)+"&api_token="+t.shared.api_token).then(function(s){t.imagedata=s.data,t.doing_unsplash_ajax=!1,t.last_page=t.imagedata.backgrounds.total_pages,t.current_page=t.imagedata.page,t.imagedata.backgrounds.data?t.images=t.imagedata.backgrounds.data:(t.images=t.imagedata.backgrounds.results,t.componentKey++)}).catch(function(s){t.doing_unsplash_ajax=!1,console.log(s)})},update_image:function(){this.$emit("input",this.image)},insert_image:function(){this.was_removed=!1;var t,s=this;t&&t.open(),t=wp.media({title:"Select Image",multiple:!1,library:{type:"image"}}),t.on("close",function(){var e=t.state().get("selection");e.each(function(t){s.image=t.attributes.url}),s.$forceUpdate(),s.update_image()}),t.open()},remove_image:function(){this.was_removed=!0,this.image="",this.update_image()}},watch:{},components:{modal:j["a"],LiteCTABuilder:Ls["a"]},props:["value"]},$s=Ts,Ps=Object(w["a"])($s,Vs,Bs,!1,null,null,null),Ns=Ps.exports,Rs={name:"ImageOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Templates","coming-soon"),txt_3:Object(b["a"])("Advanced","coming-soon"),txt_4:Object(b["a"])("Image","coming-soon"),txt_5:Object(b["a"])("Width","coming-soon"),txt_6:Object(b["a"])("Styles","coming-soon"),txt_7:Object(b["a"])("Image Border","coming-soon"),txt_8:Object(b["a"])("Top","coming-soon"),txt_9:Object(b["a"])("Right","coming-soon"),txt_10:Object(b["a"])("Bottom","coming-soon"),txt_11:Object(b["a"])("Left","coming-soon"),txt_12:Object(b["a"])("Alt Text","coming-soon"),txt_13:Object(b["a"])("Image Size","coming-soon"),txt_14:Object(b["a"])("Align","coming-soon"),txt_15:Object(b["a"])("Choose Your Style","coming-soon"),txt_16:Object(b["a"])("Shadow","coming-soon"),txt_17:Object(b["a"])("None","coming-soon"),txt_18:Object(b["a"])("Hairline","coming-soon"),txt_19:Object(b["a"])("Small","coming-soon"),txt_20:Object(b["a"])("Medium","coming-soon"),txt_21:Object(b["a"])("Large","coming-soon"),txt_22:Object(b["a"])("X Large","coming-soon"),txt_23:Object(b["a"])("2X Large","coming-soon"),txt_24:Object(b["a"])("Bottom Drop Shadow","coming-soon"),txt_25:Object(b["a"])("Border Radius","coming-soon"),txt_26:Object(b["a"])("Border Style","coming-soon"),txt_27:Object(b["a"])("Solid","coming-soon"),txt_28:Object(b["a"])("Dotted","coming-soon"),txt_29:Object(b["a"])("Dashed","coming-soon"),txt_30:Object(b["a"])("Border Width","coming-soon"),txt_31:Object(b["a"])("Image Whitespace Padding","coming-soon"),txt_32:Object(b["a"])("Border Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,search_term:"",defaultColor:"#660000",shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.image,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{apply_template:function(t){this.block.settings.blockTemplateId=t,1==t&&(this.block.settings.imageBorderTop=1,this.block.settings.imagePadding="",this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="#dedede",this.block.settings.imageBorderRadius=0,this.block.settings.shadow=""),2==t&&(this.block.settings.imageBorderTop=1,this.block.settings.imagePadding=5,this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="#dedede",this.block.settings.imageBorderRadius=0,this.block.settings.shadow=""),6==t&&(this.block.settings.imageBorderTop=1,this.block.settings.imagePadding=1,this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="#dedede",this.block.settings.imageBorderRadius=0,this.block.settings.shadow=""),3==t&&(this.block.settings.imageBorderTop=1,this.block.settings.imagePadding=5,this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="#dedede",this.block.settings.imageBorderRadius=6,this.block.settings.shadow=""),4==t&&(this.block.settings.imageBorderTop=1,this.block.settings.imagePadding=1,this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="#dedede",this.block.settings.imageBorderRadius=6,this.block.settings.shadow=""),5==t&&(this.block.settings.imageBorderTop=1,this.block.settings.imagePadding=4,this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="#fff",this.block.settings.imageBorderRadius=0,this.block.settings.shadow=""),7==t&&(this.block.settings.imageBorderTop=0,this.block.settings.imagePadding="",this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="",this.block.settings.imageBorderRadius=0,this.block.settings.shadow="7"),8==t&&(this.block.settings.imageBorderTop=0,this.block.settings.imagePadding="",this.block.settings.imageBorderSync=!0,this.block.settings.imageBorderStyle="solid",this.block.settings.imageBorderColor="",this.block.settings.imageBorderRadius=0,this.block.settings.shadow="")},scroll:function(t,s){},sync_image_border:function(t){this.block.settings.imageBorderSync=t,t&&(this.block.settings.imageBorderLeft=this.block.settings.imageBorderTop,this.block.settings.imageBorderBottom=this.block.settings.imageBorderTop,this.block.settings.imageBorderRight=this.block.settings.imageBorderTop)}},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,PaddingControl:Et,FontControl:nt,FontVariantControl:ut,HelpTip:Zt,SpacingSectionControl:Qt},props:{block:Object}},Fs=Rs,As=Object(w["a"])(Fs,Ss,Hs,!1,null,null,null),Es=As.exports,Is=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.type,expression:"block.settings.type"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"type",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"youtube"}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:"custom"}},[t._v(t._s(t.txt_7))])])]),"youtube"==t.block.settings.type?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.youtubeUrl,expression:"block.settings.youtubeUrl"}],staticClass:"sp-form-input sp-w-full",domProps:{value:t.block.settings.youtubeUrl},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"youtubeUrl",s.target.value)}}})]):t._e(),"custom"==t.block.settings.type?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_9))]),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.code,expression:"block.settings.code"}],staticClass:"sp-form-textarea sp-w-full",domProps:{value:t.block.settings.code},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"code",s.target.value)}}})]):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("SliderControl",{attrs:{min:10,max:100,step:10},model:{value:t.block.settings.width,callback:function(s){t.$set(t.block.settings,"width",s)},expression:"block.settings.width"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_11))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_12))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_18))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_19))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},Us=[],Ds={name:"VideoOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Video","coming-soon"),txt_4:Object(b["a"])("Styles","coming-soon"),txt_5:Object(b["a"])("Type","coming-soon"),txt_6:Object(b["a"])("YouTube","coming-soon"),txt_7:Object(b["a"])("Custom","coming-soon"),txt_8:Object(b["a"])("YouTube URL","coming-soon"),txt_9:Object(b["a"])("Custom Video Code","coming-soon"),txt_10:Object(b["a"])("Width","coming-soon"),txt_11:Object(b["a"])("Align","coming-soon"),txt_12:Object(b["a"])("Shadow","coming-soon"),txt_13:Object(b["a"])("None","coming-soon"),txt_14:Object(b["a"])("Hairline","coming-soon"),txt_15:Object(b["a"])("Small","coming-soon"),txt_16:Object(b["a"])("Medium","coming-soon"),txt_17:Object(b["a"])("Large","coming-soon"),txt_18:Object(b["a"])("X Large","coming-soon"),txt_19:Object(b["a"])("2X Large","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.video,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{SliderControl:zt,AlignControl:bt,PaddingControl:Et,SpacingSectionControl:Qt},props:{block:Object}},Ws=Ds,Gs=Object(w["a"])(Ws,Is,Us,!1,null,null,null),Zs=Gs.exports,Js=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v(t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_3)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.countdownType,expression:"block.settings.countdownType"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"countdownType",s.target.multiple?e:e[0])},t.updateLabelSize]}},[e("option",{attrs:{value:"vt"}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:""}},[t._v(t._s(t.txt_7))])])]),"vt"==t.block.settings.countdownType?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.vtHours,expression:"block.settings.vtHours"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{min:"0",max:"24",type:"number"},domProps:{value:t.block.settings.vtHours},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"vtHours",s.target.value)}}}),t._v("\n Hours\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.vtMinutes,expression:"block.settings.vtMinutes"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{min:"0",max:"59",type:"number"},domProps:{value:t.block.settings.vtMinutes},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"vtMinutes",s.target.value)}}}),t._v("\n Minutes\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.vtSeconds,expression:"block.settings.vtSeconds"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{min:"0",max:"59",type:"number"},domProps:{value:t.block.settings.vtSeconds},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"vtSeconds",s.target.value)}}}),t._v("\n Seconds\n ")])])])]):e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_9))]),e("div",{staticClass:"sp-w-full"},[e("date-picker",{attrs:{type:"date",lang:"en",format:"YYYY-MM-DD","value-type":"format","not-before":t.shared.setup_page_meta.now},model:{value:t.block.settings.endDate,callback:function(s){t.$set(t.block.settings,"endDate",s)},expression:"block.settings.endDate"}})],1)]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("span",{staticClass:"sp-relative"},[e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.endTime,expression:"block.settings.endTime"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"endTime",s.target.multiple?e:e[0])}}},t._l(t.shared.setup_page_meta.times,function(s,o){return e("option",{key:o,domProps:{value:s.v}},[t._v(t._s(s.l))])}),0)])]),e("div",{staticClass:"sp-form-group",class:{input:!0,"has-error":t.errors.has("timezone")}},[e("label",{attrs:{for:"timezone"}},[t._v(t._s(t.txt_11))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.timezone,expression:"block.settings.timezone"}],staticClass:"sp-form-select sp-w-full",attrs:{name:"timezone"},on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"timezone",s.target.multiple?e:e[0])}}},t._l(t.shared.setup_page_meta.timezones,function(s,o){return e("optgroup",{key:o,attrs:{label:o}},t._l(s,function(s,o){return e("option",{key:o,domProps:{value:s.v}},[t._v(t._s(s.l))])}),0)}),0)])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_12))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_13))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.size,expression:"block.settings.size"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"size",s.target.multiple?e:e[0])},t.updateLabelSize]}},[e("option",{attrs:{value:"sm"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"md"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"lg"}},[t._v(t._s(t.txt_17))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_18))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.action,expression:"block.settings.action"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"action",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_19))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_20))])])]),"1"==t.block.settings.action?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_21))])]),e("editor",{attrs:{init:{height:200,branding:!1,menubar:!1,plugins:["link"],toolbar:"bold,italic,underline,strikethrough,link,alignleft,aligncenter,alignright"}},model:{value:t.block.settings.thankyouTxt,callback:function(s){t.$set(t.block.settings,"thankyouTxt",s)},expression:"block.settings.thankyouTxt"}})],1):t._e(),"2"==t.block.settings.action?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_22))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.redirectUrl,expression:"block.settings.redirectUrl"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.redirectUrl},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"redirectUrl",s.target.value)}}})]):t._e(),e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-mt-4 sp-mb-3"},[e("label",{staticClass:"sp-text-sm"},[t._v(t._s(t.txt_23))]),e("toggle-button",{attrs:{width:45},model:{value:t.customize_labels,callback:function(s){t.customize_labels=s},expression:"customize_labels"}})],1),t.customize_labels?e("div",[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_24))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.dayTxt,expression:"block.settings.dayTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.dayTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"dayTxt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_25))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.hourTxt,expression:"block.settings.hourTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.hourTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"hourTxt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_26))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.minuteTxt,expression:"block.settings.minuteTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.minuteTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"minuteTxt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_27))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.secondTxt,expression:"block.settings.secondTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.secondTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"secondTxt",s.target.value)}}})])]):t._e()]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-8 sp-optin-templates"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_28))]),e("div",{staticClass:"sp-template-preview",class:{"sp-template-preview-dark":"light"==t.luminance},on:{click:function(s){return t.apply_template(1)}}},[e("div",{staticClass:"sp-countdown-group"},[e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-hours"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"6px"},style:t.amountStyle},[t._v("01")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-minutes"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"6px"},style:t.amountStyle},[t._v("03")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-seconds"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"6px"},style:t.amountStyle},[t._v("19")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_31))])])])]),e("div",{staticClass:"sp-template-preview",class:{"sp-template-preview-dark":"light"==t.luminance},on:{click:function(s){return t.apply_template(2)}}},[e("div",{staticClass:"sp-countdown-group"},[e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-hours"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"0px"},style:t.amountStyle},[t._v("01")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-minutes"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"0px"},style:t.amountStyle},[t._v("03")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-seconds"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"0px"},style:t.amountStyle},[t._v("19")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_31))])])])]),e("div",{staticClass:"sp-template-preview",class:{"sp-template-preview-dark":"light"==t.luminance},on:{click:function(s){return t.apply_template(3)}}},[e("div",{staticClass:"sp-countdown-group"},[e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-hours"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"99px"},style:t.amountStyle},[t._v("01")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-minutes"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"99px"},style:t.amountStyle},[t._v("03")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-seconds"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(255, 255, 255)","background-color":"rgb(66, 153, 225)","border-radius":"99px"},style:t.amountStyle},[t._v("19")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_31))])])])]),e("div",{staticClass:"sp-template-preview",class:{"sp-template-preview-dark":"light"==t.luminance},on:{click:function(s){return t.apply_template(4)}}},[e("div",{staticClass:"sp-countdown-group"},[e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-hours"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(66, 153, 225)","border-radius":"6px"},style:t.textStyle},[t._v("01")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-minutes"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(66, 153, 225)","border-radius":"6px"},style:t.textStyle},[t._v("03")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-seconds"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(66, 153, 225)","border-radius":"6px"},style:t.textStyle},[t._v("19")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_31))])])])]),e("div",{staticClass:"sp-template-preview",class:{"sp-template-preview-dark":"light"==t.luminance},on:{click:function(s){return t.apply_template(5)}}},[e("div",{staticClass:"sp-countdown-group"},[e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-hours"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(66, 153, 225)","border-radius":"99px",border:"1px solid rgb(66, 153, 225)"},style:t.borderStyle},[t._v("01")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-minutes"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(66, 153, 225)","border-radius":"99px",border:"1px solid rgb(66, 153, 225)"},style:t.borderStyle},[t._v("03")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-cd-group ",staticStyle:{margin:"0px 10.5px"},attrs:{id:"sp-cd-seconds"}},[e("div",{staticClass:"sp-cd-amount",staticStyle:{"font-size":"20px",padding:"10px",color:"rgb(66, 153, 225)","border-radius":"99px",border:"1px solid rgb(66, 153, 225)"},style:t.borderStyle},[t._v("19")]),e("div",{staticClass:"sp-cd-unit sp-uppercase",staticStyle:{"font-size":"10px",color:"rgb(0, 0, 0)"}},[t._v(t._s(t.txt_31))])])])])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_42)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_43,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_44,color:t.block.settings.labelColor},model:{value:t.block.settings.labelColor,callback:function(s){t.$set(t.block.settings,"labelColor",s)},expression:"block.settings.labelColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_32))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.spaceBetween,callback:function(s){t.$set(t.block.settings,"spaceBetween",s)},expression:"block.settings.spaceBetween"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_33))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.borderRadius,callback:function(s){t.$set(t.block.settings,"borderRadius",s)},expression:"block.settings.borderRadius"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_34))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_35))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_36))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_37))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_38))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_39))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_40))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_41))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},qs=[],Ys=e("ea76"),Xs=e.n(Ys),Ks={name:"CountdownOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Templates","coming-soon"),txt_3:Object(b["a"])("Advanced","coming-soon"),txt_4:Object(b["a"])("Settings","coming-soon"),txt_5:Object(b["a"])("Countdown Type","coming-soon"),txt_6:Object(b["a"])("Visitor Timer (Evergreen)","coming-soon"),txt_7:Object(b["a"])("DateTime Countdown","coming-soon"),txt_8:Object(b["a"])("Set Timer For","coming-soon"),txt_9:Object(b["a"])("End Date","coming-soon"),txt_10:Object(b["a"])("End Time","coming-soon"),txt_11:Object(b["a"])("Timezone","coming-soon"),txt_12:Object(b["a"])("Align","coming-soon"),txt_13:Object(b["a"])("Size","coming-soon"),txt_14:Object(b["a"])("Tiny","coming-soon"),txt_15:Object(b["a"])("Small","coming-soon"),txt_16:Object(b["a"])("Medium","coming-soon"),txt_17:Object(b["a"])("Large","coming-soon"),txt_18:Object(b["a"])("Action To Take On Expires","coming-soon"),txt_19:Object(b["a"])("Show Message","coming-soon"),txt_20:Object(b["a"])("Redirect","coming-soon"),txt_21:Object(b["a"])("Message","coming-soon"),txt_22:Object(b["a"])("Redirect Url","coming-soon"),txt_23:Object(b["a"])("Customize Labels","coming-soon"),txt_24:Object(b["a"])("Day Label","coming-soon"),txt_25:Object(b["a"])("Hour Label","coming-soon"),txt_26:Object(b["a"])("Minute Label","coming-soon"),txt_27:Object(b["a"])("Second Label","coming-soon"),txt_28:Object(b["a"])("Choose Your Style","coming-soon"),txt_29:Object(b["a"])("Hours","coming-soon"),txt_30:Object(b["a"])("Minutes","coming-soon"),txt_31:Object(b["a"])("Seconds","coming-soon"),txt_32:Object(b["a"])("Space Between","coming-soon"),txt_33:Object(b["a"])("Border Radius","coming-soon"),txt_34:Object(b["a"])("Shadow","coming-soon"),txt_35:Object(b["a"])("None","coming-soon"),txt_36:Object(b["a"])("Hairline","coming-soon"),txt_37:Object(b["a"])("Small","coming-soon"),txt_38:Object(b["a"])("Medium","coming-soon"),txt_39:Object(b["a"])("Large","coming-soon"),txt_40:Object(b["a"])("X Large","coming-soon"),txt_41:Object(b["a"])("2X Large","coming-soon"),txt_42:Object(b["a"])("Styles","coming-soon"),txt_43:Object(b["a"])("Hightlight Color","coming-soon"),txt_44:Object(b["a"])("Label Color","coming-soon"),luminance:"dark",view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,customize_labels:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.countdown,function(s,e){t.set_default_val(t.block.settings,e,s)})},computed:{textStyle:function(){var t="";return t=""==this.block.settings.bgColor?this.shared.settings.document.settings.buttonColor:this.block.settings.bgColor,{color:t}},borderStyle:function(){var t="";return t=""==this.block.settings.bgColor?this.shared.settings.document.settings.buttonColor:this.block.settings.bgColor,{color:t,"border-color":t}},amountStyle:function(){var t="";t=""==this.block.settings.bgColor?this.shared.settings.document.settings.buttonColor:this.block.settings.bgColor;var s="",e=v()(t);return e.getLuminance()>=.5?(s="rgba(0,0,0,0.8)",this.luminance="light"):(s="#fff",this.luminance="dark"),{color:s,"background-color":t}}},created:function(){},watch:{"block.settings.endDate":{handler:function(t,s){this.update_countdown_view()}},"block.settings.endTime":{handler:function(t,s){this.update_countdown_view()}},"block.settings.timezone":{handler:function(t,s){this.update_countdown_view()}}},methods:{apply_template:function(t){this.block.settings.blockTemplateId=t,1==t&&(this.block.settings.borderRadius=6),2==t&&(this.block.settings.borderRadius=0),3==t&&(this.block.settings.borderRadius=999),5==t&&(this.block.settings.borderRadius=999)},updateLabelSize:function(){"sm"==this.block.settings.size&&(this.block.settings.fontSize=10),"md"==this.block.settings.size&&(this.block.settings.fontSize=13),"lg"==this.block.settings.size&&(this.block.settings.fontSize=16)},update_countdown_view:function(){var t=d.a.stringify({ends:this.block.settings.endDate,ends_time:this.block.settings.endTime,timezone:this.block.settings.timezone}),s=this;s.axios.post(seedprod_utc_url,t,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){s.block.settings.endTimestamp=t.data.ends_timestamp})}},components:{DatePicker:Xs.a,ColorPicker:K,AlignControl:bt,SliderControl:zt,FontControl:nt,PaddingControl:Et,FontVariantControl:ut,TypographyControl:St,editor:ts["a"],SpacingSectionControl:Qt},props:{block:Object}},Qs=Ks,te=Object(w["a"])(Qs,Js,qs,!1,null,null,null),se=te.exports,ee=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.style,expression:"block.settings.style"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"style",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"solid"}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:"dotted"}},[t._v(t._s(t.txt_7))]),e("option",{attrs:{value:"dashed"}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"double"}},[t._v(t._s(t.txt_9))])])]),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_19,color:t.block.settings.color},model:{value:t.block.settings.color,callback:function(s){t.$set(t.block.settings,"color",s)},expression:"block.settings.color"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("SliderControl",{attrs:{min:1,max:100,step:1},model:{value:t.block.settings.width,callback:function(s){t.$set(t.block.settings,"width",s)},expression:"block.settings.width"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_11))]),e("SliderControl",{attrs:{min:1,max:10,step:1},model:{value:t.block.settings.height,callback:function(s){t.$set(t.block.settings,"height",s)},expression:"block.settings.height"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_12))]),e("AlignControl",{attrs:{justify:!1},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_13))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_18))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},oe=[],ie={name:"DividerOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Divider","coming-soon"),txt_4:Object(b["a"])("Styles","coming-soon"),txt_5:Object(b["a"])("Style","coming-soon"),txt_6:Object(b["a"])("Solid Line","coming-soon"),txt_7:Object(b["a"])("Dotted","coming-soon"),txt_8:Object(b["a"])("Dashed","coming-soon"),txt_9:Object(b["a"])("Double","coming-soon"),txt_10:Object(b["a"])("Width","coming-soon"),txt_11:Object(b["a"])("Height","coming-soon"),txt_12:Object(b["a"])("Align","coming-soon"),txt_13:Object(b["a"])("Shadow","coming-soon"),txt_14:Object(b["a"])("None","coming-soon"),txt_15:Object(b["a"])("Hairline","coming-soon"),txt_16:Object(b["a"])("Small","coming-soon"),txt_17:Object(b["a"])("Medium","coming-soon"),txt_18:Object(b["a"])("Large","coming-soon"),txt_19:Object(b["a"])("Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.divider,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,PaddingControl:Et,FontVariantControl:ut,SpacingSectionControl:Qt,HelpTip:Zt},props:{block:Object}},ae=ie,ne=Object(w["a"])(ae,ee,oe,!1,null,null,null),le=ne.exports,re=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_1)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_2))]),e("SliderControl",{attrs:{min:0,max:500,step:1},model:{value:t.block.settings.height,callback:function(s){t.$set(t.block.settings,"height",s)},expression:"block.settings.height"}})],1)]):t._e()])},ce=[],pe={name:"SpacerOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Spacer","coming-soon"),txt_2:Object(b["a"])("Height","coming-soon"),section_1:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.spacer,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt},props:{block:Object}},de=pe,ue=Object(w["a"])(de,re,ce,!1,null,null,null),ge=ue.exports,he=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("Content\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v("Templates\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v("Advanced\n ")])]),2==t.view?e("div",{staticClass:"sp-templates sp-flex sp-items-center sp-flex-col"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(1)}}},[t._m(0)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(2)}}},[t._m(1)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(3)}}},[t._m(2)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(4)}}},[t._m(3)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(5)}}},[t._m(4)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(6)}}},[t._m(5)]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(7)}}},[t._m(6)]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(8)}}},[t._m(7)]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(9)}}},[t._m(8)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(10)}}},[t._m(9)]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(11)}}},[t._m(10)]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(12)}}},[t._m(11)])]):t._e(),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_33)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("draggable",{attrs:{list:t.block.settings.items,handle:".sp-drag-drop"}},t._l(t.block.settings.items,function(s,o){return e("div",{key:o,staticClass:"sp-mb-3",on:{mouseover:function(s){t.current_index=o},mouseleave:function(s){t.current_index=!1}}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("select",{directives:[{name:"model",rawName:"v-model",value:s.type,expression:"item.type"}],staticClass:"sp-form-select",staticStyle:{width:"160px"},on:{change:function(e){var o=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(s,"type",e.target.multiple?o:o[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_2))]),e("option",{attrs:{value:"facebook"}},[t._v(t._s(t.txt_3))]),e("option",{attrs:{value:"twitter"}},[t._v(t._s(t.txt_4))]),e("option",{attrs:{value:"linkedin"}},[t._v(t._s(t.txt_5))]),e("option",{attrs:{value:"pinterest"}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:"youtube"}},[t._v(t._s(t.txt_7))]),e("option",{attrs:{value:"instagram"}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"snapchat"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"wordpress"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"github"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"soundcloud"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"rss"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"envelope"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"phone"}},[t._v(t._s(t.txt_35))])]),e("span",{directives:[{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-drag-drop sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3 sp-cursor-pointer"},[e("i",{staticClass:"fas fa-arrows-alt"})]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Settings",delay:{show:1500,hide:0}},expression:"{content:'Settings',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.show_settings(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate",delay:{show:1500,hide:0}},expression:"{content:'Duplicate',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.duplicate_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete",delay:{show:1500,hide:0}},expression:"{content:'Delete',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-2",on:{click:function(s){return t.remove_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])]),t.showsettings===o?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-mb-4 sp-w-full sp-mt-1"},["envelope"==s.type?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_14))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.meta,expression:"item.meta"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:s.meta},on:{input:function(e){e.target.composing||t.$set(s,"meta",e.target.value)}}})]):e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_15))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.url,expression:"item.url"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:s.url},on:{input:function(e){e.target.composing||t.$set(s,"url",e.target.value)}}})])]):t._e()])}),0),e("button",{staticClass:"sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.add_item}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("Add New Share\n ")])],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.iconStyle,expression:"block.settings.iconStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"iconStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_18))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_19))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.size,expression:"block.settings.size"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"size",s.target.multiple?e:e[0])},t.update_size]}},[e("option",{attrs:{value:"sm"}},[t._v(t._s(t.txt_20))]),e("option",{attrs:{value:"md"}},[t._v(t._s(t.txt_21))]),e("option",{attrs:{value:"lg"}},[t._v(t._s(t.txt_22))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_23))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_34)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.iconStyle,expression:"block.settings.iconStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"iconStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_18))])])]),e("div",{staticClass:"sp-form-group sp-mt-4"},[e("ColorPicker",{attrs:{label:t.txt_32,color:t.block.settings.iconColor},model:{value:t.block.settings.iconColor,callback:function(s){t.$set(t.block.settings,"iconColor",s)},expression:"block.settings.iconColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_24))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.iconSize,callback:function(s){t.$set(t.block.settings,"iconSize",s)},expression:"block.settings.iconSize"}})],1),"2"==t.block.settings.iconStyle?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_25))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.borderRadius,callback:function(s){t.$set(t.block.settings,"borderRadius",s)},expression:"block.settings.borderRadius"}})],1):t._e(),"2"==t.block.settings.iconStyle?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_26))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.iconPadding,callback:function(s){t.$set(t.block.settings,"iconPadding",s)},expression:"block.settings.iconPadding"}})],1):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_27))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.spaceBetween,callback:function(s){t.$set(t.block.settings,"spaceBetween",s)},expression:"block.settings.spaceBetween"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_28))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_29))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_30))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_20))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_21))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_22))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_31))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},ve=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-facebook sp-sp-lg"},[e("i",{staticClass:"fa-fw fa-facebook fab sp-text-white"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-facebook sp-sp-lg sp-rounded"},[e("i",{staticClass:"fa-fw fa-facebook fab sp-text-white"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-facebook sp-sp-lg sp-rounded-full"},[e("i",{staticClass:"fa-fw fa-facebook fab sp-text-white"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-facebook sp-sp-lg sp-sp-black"},[e("i",{staticClass:"fa-fw fa-facebook fab sp-text-white"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-facebook sp-sp-lg sp-sp-black sp-rounded"},[e("i",{staticClass:"fa-fw fa-facebook fab sp-text-white"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-facebook sp-sp-lg sp-sp-black sp-rounded-full"},[e("i",{staticClass:"fa-fw fa-facebook fab sp-text-white"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp-text-black sp-sp sp-sp-facebook sp-sp-lg sp-sp-white"},[e("i",{staticClass:"fa-fw fa-facebook fab"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp-text-black sp-sp sp-sp-facebook sp-sp-lg sp-sp-white sp-rounded"},[e("i",{staticClass:"fa-fw fa-facebook fab"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp-text-black sp-sp sp-sp-facebook sp-sp-lg sp-sp-white sp-rounded-full"},[e("i",{staticClass:"fa-fw fa-facebook fab"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-lg sp-sp-transparent sp-sp-text-facebook"},[e("i",{staticClass:"fa-fw fa-facebook fab"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-lg sp-sp-transparent sp-sp-text-white"},[e("i",{staticClass:"fa-fw fa-facebook fab"})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("button",{staticClass:"sp-sp sp-sp-lg sp-sp-transparent sp-sp-text-black"},[e("i",{staticClass:"fa-fw fa-facebook fab"})])}],me={name:"SocialProfilesOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Choose Your Style","coming-soon"),txt_2:Object(b["a"])("Select a Type","coming-soon"),txt_3:Object(b["a"])("Facebook","coming-soon"),txt_4:Object(b["a"])("Twitter","coming-soon"),txt_5:Object(b["a"])("LinkedIn","coming-soon"),txt_6:Object(b["a"])("Pinterest","coming-soon"),txt_7:Object(b["a"])("YouTube","coming-soon"),txt_8:Object(b["a"])("Instagram","coming-soon"),txt_9:Object(b["a"])("Snapchat","coming-soon"),txt_10:Object(b["a"])("WordPress","coming-soon"),txt_11:Object(b["a"])("Github","coming-soon"),txt_12:Object(b["a"])("SoundCloud","coming-soon"),txt_13:Object(b["a"])("RSS","coming-soon"),txt_14:Object(b["a"])("Email","coming-soon"),txt_15:Object(b["a"])("URL","coming-soon"),txt_16:Object(b["a"])("Style","coming-soon"),txt_17:Object(b["a"])("Default","coming-soon"),txt_18:Object(b["a"])("Stacked","coming-soon"),txt_19:Object(b["a"])("Size","coming-soon"),txt_20:Object(b["a"])("Small","coming-soon"),txt_21:Object(b["a"])("Medium","coming-soon"),txt_22:Object(b["a"])("Large","coming-soon"),txt_23:Object(b["a"])("Align","coming-soon"),txt_24:Object(b["a"])("Icon Size","coming-soon"),txt_25:Object(b["a"])("Border Radius","coming-soon"),txt_26:Object(b["a"])("Icon Padding","coming-soon"),txt_27:Object(b["a"])("Space Between","coming-soon"),txt_28:Object(b["a"])("Shadow","coming-soon"),txt_29:Object(b["a"])("None","coming-soon"),txt_30:Object(b["a"])("Hairline","coming-soon"),txt_31:Object(b["a"])("X Large","coming-soon"),txt_32:Object(b["a"])("Icon Color","coming-soon"),txt_33:Object(b["a"])("Icon","coming-soon"),txt_34:Object(b["a"])("Styles","coming-soon"),txt_35:Object(b["a"])("Phone","coming-soon"),showsettings:!1,current_index:!1,view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.socialprofiles,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{update_size:function(){"sm"==this.block.settings.size&&(this.block.settings.iconSize=16,this.block.settings.iconPadding=14),"md"==this.block.settings.size&&(this.block.settings.iconSize=24,this.block.settings.iconPadding=14),"lg"==this.block.settings.size&&(this.block.settings.iconSize=32,this.block.settings.iconPadding=14)},apply_template:function(t){this.block.settings.blockTemplateId=t,1==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="",this.block.settings.borderRadius=0),2==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="",this.block.settings.borderRadius=4),3==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="",this.block.settings.borderRadius=99),4==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="#444444",this.block.settings.borderRadius=0),5==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="#444444",this.block.settings.borderRadius=4),6==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="#444444",this.block.settings.borderRadius=99),7==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="#ffffff",this.block.settings.borderRadius=0),8==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="#ffffff",this.block.settings.borderRadius=4),9==t&&(this.block.settings.iconStyle=2,this.block.settings.iconColor="#ffffff",this.block.settings.borderRadius=99),10==t&&(this.block.settings.iconStyle=1,this.block.settings.iconColor="",this.block.settings.borderRadius=0),11==t&&(this.block.settings.iconStyle=1,this.block.settings.iconColor="#ffffff",this.block.settings.borderRadius=0),12==t&&(this.block.settings.iconStyle=1,this.block.settings.iconColor="#000000",this.block.settings.borderRadius=0)},add_item:function(){this.block.settings.items.push({type:"",label:"",meta:"",url:""})},show_settings:function(t){this.current_index=t,this.showsettings!==t?this.showsettings=t:this.showsettings=!1},remove_item:function(t){this.$delete(this.block.settings.items,t)},duplicate_item:function(t){var s=JSON.parse(i()(this.block.settings.items[t]));this.block.settings.items.splice(t+1,0,s)}},components:{draggable:E.a,ColorPicker:K,PaddingControl:Et,IconPicker:$t,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,TypographyControl:St,HelpTip:Zt,ImageControl:Ns,SpacingSectionControl:Qt},props:{block:Object}},_e=me,be=Object(w["a"])(_e,he,ve,!1,null,null,null),fe=be.exports,xe=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("draggable",{attrs:{list:t.block.settings.items,handle:".sp-drag-drop"}},t._l(t.block.settings.items,function(s,o){return e("div",{key:o,staticClass:"sp-mb-3",on:{mouseover:function(s){t.current_index=o},mouseleave:function(s){t.current_index=!1}}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("select",{directives:[{name:"model",rawName:"v-model",value:s.type,expression:"item.type"}],staticClass:"sp-form-select",staticStyle:{width:"160px"},on:{change:function(e){var o=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(s,"type",e.target.multiple?o:o[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:"facebook"}},[t._v(t._s(t.txt_7))]),e("option",{attrs:{value:"twitter"}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"linkedin"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"pinterest"}},[t._v(t._s(t.txt_10))])]),e("span",{directives:[{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-drag-drop sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3 sp-cursor-pointer"},[e("i",{staticClass:"fas fa-arrows-alt"})]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Settings",delay:{show:1500,hide:0}},expression:"{content:'Settings',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.show_settings(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate",delay:{show:1500,hide:0}},expression:"{content:'Duplicate',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.duplicate_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete",delay:{show:1500,hide:0}},expression:"{content:'Delete',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-2",on:{click:function(s){return t.remove_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])]),t.showsettings===o?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-mb-4 sp-w-full sp-mt-1"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_11))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.label,expression:"item.label"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:s.label},on:{input:function(e){e.target.composing||t.$set(s,"label",e.target.value)}}})]),"twitter"==s.type?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_12))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.meta,expression:"item.meta"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:s.meta},on:{input:function(e){e.target.composing||t.$set(s,"meta",e.target.value)}}})]):t._e(),"pinterest"==s.type?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_13))])]),e("ImageControl",{model:{value:s.meta,callback:function(e){t.$set(s,"meta",e)},expression:"item.meta"}})],1):t._e()]):t._e()])}),0),e("button",{staticClass:"sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.add_item}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v(t._s(t.txt_4)+"\n ")])],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_14))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.size,expression:"block.settings.size"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"size",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"sm"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"md"}},[t._v(t._s(t.txt_18))]),e("option",{attrs:{value:"lg"}},[t._v(t._s(t.txt_19))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_22))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_5)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_23))]),e("SliderControl",{attrs:{min:1,max:100,step:1},model:{value:t.block.settings.spaceBetween,callback:function(s){t.$set(t.block.settings,"spaceBetween",s)},expression:"block.settings.spaceBetween"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_24))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_17))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_18))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_19))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_20))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_21))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},we=[],Ce={name:"SocialSharingOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{showsettings:!1,txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Social Sharing","coming-soon"),txt_4:Object(b["a"])("Add New Share","coming-soon"),txt_5:Object(b["a"])("Styles","coming-soon"),txt_6:Object(b["a"])("Select a Type","coming-soon"),txt_7:Object(b["a"])("Facebook","coming-soon"),txt_8:Object(b["a"])("Twitter","coming-soon"),txt_9:Object(b["a"])("LinkedIn","coming-soon"),txt_10:Object(b["a"])("Pinterest","coming-soon"),txt_11:Object(b["a"])("Label","coming-soon"),txt_12:Object(b["a"])("Tweet Text","coming-soon"),txt_13:Object(b["a"])("Image","coming-soon"),txt_14:Object(b["a"])("Size","coming-soon"),txt_15:Object(b["a"])("None","coming-soon"),txt_16:Object(b["a"])("Hairline","coming-soon"),txt_17:Object(b["a"])("Small","coming-soon"),txt_18:Object(b["a"])("Medium","coming-soon"),txt_19:Object(b["a"])("Large","coming-soon"),txt_20:Object(b["a"])("X Large","coming-soon"),txt_21:Object(b["a"])("2X Large","coming-soon"),txt_22:Object(b["a"])("Align","coming-soon"),txt_23:Object(b["a"])("Space Between","coming-soon"),txt_24:Object(b["a"])("Shadow","coming-soon"),current_index:!1,view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.socialsharing,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{add_item:function(){this.block.settings.items.push({type:"",label:"",meta:"",url:""})},show_settings:function(t){this.showsettings!==t?this.showsettings=t:this.showsettings=!1},remove_item:function(t){this.$delete(this.block.settings.items,t)},duplicate_item:function(t){var s=JSON.parse(i()(this.block.settings.items[t]));this.block.settings.items.splice(t+1,0,s)}},components:{draggable:E.a,ColorPicker:K,IconPicker:$t,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,PaddingControl:Et,TypographyControl:St,HelpTip:Zt,ImageControl:Ns,SpacingSectionControl:Qt},props:{block:Object}},ke=Ce,ye=Object(w["a"])(ke,xe,we,!1,null,null,null),ze=ye.exports,Oe=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.code,expression:"block.settings.code"}],staticClass:"sp-form-textarea sp-w-full sp-h-48",domProps:{value:t.block.settings.code},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"code",s.target.value)}}}),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2.5 sp-px-5 sp-rounded sp-flex sp-items-center sp-mt-3 sp-text-sm sp-font-semibold",on:{click:function(s){t.show_modal_customhtml=!0}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"}})]),t._v(t._s(t.txt_4)+"\n ")])])]):t._e()]):t._e(),3==t.view?e("div",[e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e(),t.show_modal_customhtml?e("modal",{staticClass:"sp-edit-custom-css-modal",on:{close:function(s){t.show_modal_customhtml=!1}}},[e("div",{staticClass:"sp-py-6 sp-px-10 sp-relative",attrs:{slot:"body"},slot:"body"},[e("h3",{staticClass:"sp-text-lg sp-font-bold sp-mb-6"},[t._v(t._s(t.txt_6))]),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.code,expression:"block.settings.code"}],staticClass:"sp-custom-css sp-form-textarea",domProps:{value:t.block.settings.code},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"code",s.target.value)}}}),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2.5 sp-px-5 sp-rounded sp-flex sp-items-center sp-mt-3 sp-text-sm sp-font-semibold",on:{click:function(s){t.show_modal_customhtml=!1}}},[t._v(t._s(t.txt_7))]),e("button",{staticClass:"sp-text-neutral-40 sp-absolute sp-top-0 sp-right-0 sp-mt-2 sp-mr-2",on:{click:function(s){t.show_modal_customhtml=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},je=[],Me={name:"CustomHTMLOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Settings","coming-soon"),txt_4:Object(b["a"])("Expand Editor","coming-soon"),txt_5:Object(b["a"])("Custom Code","coming-soon"),txt_6:Object(b["a"])("Edit Custom HMTL","coming-soon"),txt_7:Object(b["a"])("Close","coming-soon"),show_modal_customhtml:!1,view:1,section_1:!0,section_2:!1,section_3:!0,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.customhtml,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{SliderControl:zt,Modal:j["a"],PaddingControl:Et,SpacingSectionControl:Qt},props:{block:Object}},Se=Me,He=Object(w["a"])(Se,Oe,je,!1,null,null,null),Ve=He.exports,Be=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v(t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_3)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_5))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.txt,expression:"block.settings.txt"}],staticClass:"sp-form-input sp-w-full",domProps:{value:t.block.settings.txt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"txt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.width,callback:function(s){t.$set(t.block.settings,"width",s)},expression:"block.settings.width"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_19,color:t.block.settings.color},model:{value:t.block.settings.color,callback:function(s){t.$set(t.block.settings,"color",s)},expression:"block.settings.color"}})],1)]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-8"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_7))]),e("div",{staticClass:"sp-w-full sp-shadow-inner sp-progressbar-block-template-1 sp-mt-4",staticStyle:{"background-color":"rgb(247, 247, 247)","border-radius":"3px"},on:{click:function(s){return t.apply_template(1)}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-truncate sp-text-sm sp-py-1 sp-px-2",staticStyle:{"text-align":"center","justify-content":"center","border-radius":"3px",width:"60%"},style:t.innerStyleObject},[t._v(t._s(t.txt_8))])]),e("div",{staticClass:"sp-w-full sp-shadow-inner sp-progressbar-block-template-2 sp-mt-4",staticStyle:{"background-color":"rgb(247, 247, 247)","border-radius":"3px"},on:{click:function(s){return t.apply_template(2)}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-truncate sp-text-sm sp-py-1 sp-px-2",staticStyle:{"text-align":"center","justify-content":"center","border-radius":"3px",width:"60%"},style:t.innerStyleObject},[t._v(t._s(t.txt_8))])]),e("div",{staticClass:"sp-w-full sp-shadow-inner sp-progressbar-block-template-3 sp-mt-4",staticStyle:{"background-color":"rgb(247, 247, 247)","border-radius":"3px"},on:{click:function(s){return t.apply_template(3)}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-truncate sp-text-sm sp-py-1 sp-px-2",staticStyle:{"text-align":"center","justify-content":"center","border-radius":"3px",width:"60%"},style:t.innerStyleObject},[t._v(t._s(t.txt_8))])]),e("div",{staticClass:"sp-w-full sp-shadow-inner sp-progressbar-block-template-4 sp-mt-4",staticStyle:{"background-color":"rgb(247, 247, 247)","border-radius":"3px"},on:{click:function(s){return t.apply_template(4)}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-truncate sp-text-sm sp-py-1 sp-px-2",staticStyle:{"text-align":"center","justify-content":"center","border-radius":"3px",width:"60%"},style:t.innerStyleObject},[t._v(t._s(t.txt_8))])])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_21)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_20,color:t.block.settings.outerColor},model:{value:t.block.settings.outerColor,callback:function(s){t.$set(t.block.settings,"outerColor",s)},expression:"block.settings.outerColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_9))]),e("SliderControl",{attrs:{min:0,max:25,step:1},model:{value:t.block.settings.borderRadius,callback:function(s){t.$set(t.block.settings,"borderRadius",s)},expression:"block.settings.borderRadius"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_17))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_18))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_17))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},Le=[],Te={name:"ProgressBarOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Templates","coming-soon"),txt_3:Object(b["a"])("Advanced","coming-soon"),txt_4:Object(b["a"])("Progress Bar","coming-soon"),txt_5:Object(b["a"])("Bar Text","coming-soon"),txt_6:Object(b["a"])("Percent","coming-soon"),txt_7:Object(b["a"])("Choose Your Style","coming-soon"),txt_8:Object(b["a"])("My Text","coming-soon"),txt_9:Object(b["a"])("Border Radius","coming-soon"),txt_10:Object(b["a"])("Text Shadow","coming-soon"),txt_11:Object(b["a"])("None","coming-soon"),txt_12:Object(b["a"])("Hairline","coming-soon"),txt_13:Object(b["a"])("Small","coming-soon"),txt_14:Object(b["a"])("Medium","coming-soon"),txt_15:Object(b["a"])("Large","coming-soon"),txt_16:Object(b["a"])("X Large","coming-soon"),txt_17:Object(b["a"])("2X Large","coming-soon"),txt_18:Object(b["a"])("Shadow","coming-soon"),txt_19:Object(b["a"])("Color","coming-soon"),txt_20:Object(b["a"])("Background Color","coming-soon"),txt_21:Object(b["a"])("Styles","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.progressbar,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},computed:{innerStyleObject:function(){var t="";""!==this.block.settings.width&&(t=this.block.settings.width+"%");var s="",e=v()(this.block.settings.color);e.getLuminance()>=.5?(s="#000",this.luminance="light"):(s="#fff",this.luminance="dark");var o="";""!==this.block.settings.borderRadius&&(o=this.block.settings.borderRadius+"px");var i="";i=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var a="";a=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var n="";""!==this.block.settings.fontSize&&(n=this.block.settings.fontSize+"px");var l="";!0===this.block.settings.typographyUnderline&&(l="underline");var r="";""!==this.block.settings.lineHeight&&(r=this.block.settings.lineHeight);var c="";""!=this.block.settings.letterSpacing&&(c=this.block.settings.letterSpacing+"px");var p="";""!=this.block.settings.typographyLetterCase&&(p=this.block.settings.typographyLetterCase);var d="",u=this.block.settings.align;"left"==u&&(d="flex-start"),"right"==u&&(d="flex-end"),"center"==u&&(d="center");var g="";return g=""==this.block.settings.color?this.shared.settings.document.settings.buttonColor:this.block.settings.color,{"text-align":this.align_render(this.block.settings.align),"justify-content":d,"line-height":r,"letter-spacing":c,"text-transform":p,"text-decoration":l,"font-size":n,"font-weight":i,"font-style":a,"text-shadow":this.text_shadow(this.block.settings.textShadow,this.block.settings.textColor),"font-family":this.font_render(this.block.settings.font),"border-radius":o,"background-color":g,width:t,color:s}}},methods:{apply_template:function(t){this.block.settings.blockTemplateId=t}},components:{SliderControl:zt,ColorPicker:K,PaddingControl:Et,TypographyControl:St,SpacingSectionControl:Qt},props:{block:Object}},$e=Te,Pe=Object(w["a"])($e,Be,Le,!1,null,null,null),Ne=Pe.exports,Re=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_3)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_1))]),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shortcode,expression:"block.settings.shortcode"}],staticClass:"sp-form-textarea sp-w-full sp-h-48",domProps:{value:t.block.settings.shortcode},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"shortcode",s.target.value)}}})])]):t._e()]):t._e(),3==t.view?e("div",[e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},Fe=[],Ae={name:"ShortcodeOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Shortcode","coming-soon"),txt_2:Object(b["a"])("Content","coming-soon"),txt_3:Object(b["a"])("Advanced","coming-soon"),txt_4:Object(b["a"])("Settings","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!0,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.shortcode,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{PaddingControl:Et,SliderControl:zt,SpacingSectionControl:Qt},props:{block:Object}},Ee=Ae,Ie=Object(w["a"])(Ee,Re,Fe,!1,null,null,null),Ue=Ie.exports,De=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v(t._s(t.txt_2)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_3)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("draggable",{attrs:{list:t.block.settings.items,handle:".sp-drag-drop"}},t._l(t.block.settings.items,function(s,o){return e("div",{key:o,staticClass:"sp-mb-3",on:{mouseover:function(s){t.current_index=o},mouseleave:function(s){t.current_index=!1}}},[e("div",{staticClass:"focus-within:sp-border-neutral-80 sp-rounded sp-mb-4"},[e("span",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded"},[e("span",{staticClass:"sp-inline-block sp-w-full sp-form-input sp-border-none sp-rounded-tr-none sp-rounded-br-none sp-cursor-move sp-drag-drop",domProps:{textContent:t._s(s.txt)}}),!0===s.display&&"email"!=s.type?e("button",{staticClass:"sp-form-input sp-rounded-none sp-h-40px sp-text-neutral-40 hover:sp-text-neutral-80 sp-outline-none sp-border-r-0 sp-border-t-0 sp-border-b-0 focus:sp-border-neutral-20",on:{click:function(e){return t.toggle_dislay(s)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"}})])]):"email"!=s.type?e("button",{staticClass:"sp-form-input sp-rounded-none sp-h-40px sp-text-neutral-40 hover:sp-text-neutral-80 sp-outline-none sp-border-r-0 sp-border-t-0 sp-border-b-0 focus:sp-border-neutral-20",on:{click:function(e){return t.toggle_dislay(s)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z"}})])]):t._e(),e("button",{staticClass:"sp-form-input sp-rounded-tl-none sp-rounded-bl-none sp-h-40px sp-text-neutral-40 hover:sp-text-neutral-80 sp-outline-none sp-border-t-0 sp-border-b-0 sp-border-r-0 focus:sp-border-neutral-20",class:{"sp-text-neutral-80":t.showsettings===o},on:{click:function(s){return t.show_settings(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])]),t.showsettings===o?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-w-full sp-mt-1"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_10))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.label,expression:"item.label"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:s.label},on:{input:function(e){e.target.composing||t.$set(s,"label",e.target.value)}}}),e("div",{staticClass:"sp-form-group sp-mt-2"},[e("label",[t._v(t._s(t.txt_11))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:s.width,callback:function(e){t.$set(s,"width",e)},expression:"item.width"}})],1)]),"name"==s.type?e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-mt-4 sp-mb-3"},[e("label",{staticClass:"sp-text-sm"},[t._v(t._s(t.txt_12))]),e("toggle-button",{attrs:{width:45},model:{value:s.required,callback:function(e){t.$set(s,"required",e)},expression:"item.required"}})],1):t._e()]):t._e()])])}),0)],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_13))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnSize,expression:"block.settings.btnSize"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"btnSize",s.target.multiple?e:e[0])},t.update_btn_size]}},[e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_17))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_20))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_5},on:{click:function(s){t.section_5=!t.section_5}}},[t._v("\n "+t._s(t.txt_5)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_5?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group",class:{input:!0,"has-error":t.errors.has("btnTxt")}},[e("div",[e("label",[t._v(t._s(t.txt_51))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnTxt,expression:"block.settings.btnTxt"},{name:"validate",rawName:"v-validate",value:"required",expression:"'required'"}],staticClass:"sp-form-input",attrs:{name:"btnTxt",type:"text","data-vv-as":"Button Text"},domProps:{value:t.block.settings.btnTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"btnTxt",s.target.value)}}}),e("span",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("btnTxt"),expression:"errors.has('btnTxt')"}],staticClass:"help-block has-error"},[t._v(t._s(t.errors.first("btnTxt")))])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_11))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:t.block.settings.btnWidth,callback:function(s){t.$set(t.block.settings,"btnWidth",s)},expression:"block.settings.btnWidth"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_39,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1)]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_6},on:{click:function(s){t.section_6=!t.section_6}}},[t._v("\n "+t._s(t.txt_6)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_6},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_6},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_6?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_23))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.action,expression:"block.settings.action"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"action",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_24))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_25))])])]),"1"==t.block.settings.action?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_26))])]),e("editor",{attrs:{init:{height:200,branding:!1,menubar:!1,plugins:["link"],toolbar:"bold,italic,underline,strikethrough,link,alignleft,aligncenter,alignright"}},model:{value:t.block.settings.thankyouTxt,callback:function(s){t.$set(t.block.settings,"thankyouTxt",s)},expression:"block.settings.thankyouTxt"}})],1):t._e(),"2"==t.block.settings.action?e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_27))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.redirectUrl,expression:"block.settings.redirectUrl"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.redirectUrl},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"redirectUrl",s.target.value)}}})]):t._e()]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-8 sp-optin-templates"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_28))]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(!1)}}},[e("input",{staticClass:"sp-form-input sp-w-full",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_43}})]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(1)}}},[e("input",{staticClass:"sp-form-input sp-w-full sp-border-none",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_44}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(2)}}},[e("input",{staticClass:"sp-form-input sp-w-full sp-optin-block-template-2",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_45}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(4)}}},[e("input",{staticClass:"sp-form-input sp-w-full sp-optin-block-template-4",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_47}})]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(5)}}},[e("input",{staticClass:"sp-form-input sp-w-full sp-optin-block-template-5",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_48}})]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(6)}}},[e("input",{staticClass:"sp-form-input sp-w-full sp-optin-block-template-6",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_49}})]),e("div",{staticClass:"sp-template-preview-dark",on:{click:function(s){return t.apply_template(7)}}},[e("input",{staticClass:"sp-form-input sp-w-full sp-optin-block-template-7",staticStyle:{width:"80%"},attrs:{type:"text",placeholder:t.txt_50}})])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_7)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_29))]),e("FontControl",{on:{change:function(s){return t.load_font(t.block.settings.font,t.block.settings.fontVariant)}},model:{value:t.block.settings.font,callback:function(s){t.$set(t.block.settings,"font",s)},expression:"block.settings.font"}}),e("FontVariantControl",{attrs:{myfont:t.block.settings.font},on:{change:function(s){return t.load_font(t.block.settings.font,t.block.settings.fontVariant)}},model:{value:t.block.settings.fontVariant,callback:function(s){t.$set(t.block.settings,"fontVariant",s)},expression:"block.settings.fontVariant"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_30))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.borderRadius,callback:function(s){t.$set(t.block.settings,"borderRadius",s)},expression:"block.settings.borderRadius"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("span",{staticClass:"sp-mr-2 sp-text-sm"},[t._v(t._s(t.txt_31))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.gap,expression:"block.settings.gap"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.block.settings.gap)?t._i(t.block.settings.gap,null)>-1:t.block.settings.gap},on:{change:function(s){var e=t.block.settings.gap,o=s.target,i=!!o.checked;if(Array.isArray(e)){var a=null,n=t._i(e,a);o.checked?n<0&&t.$set(t.block.settings,"gap",e.concat([a])):n>-1&&t.$set(t.block.settings,"gap",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(t.block.settings,"gap",i)}}})])])]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_7},on:{click:function(s){t.section_7=!t.section_7}}},[t._v("\n "+t._s(t.txt_8)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_7},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_7},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_7?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_40,color:t.block.settings.fieldBGColor},model:{value:t.block.settings.fieldBGColor,callback:function(s){t.$set(t.block.settings,"fieldBGColor",s)},expression:"block.settings.fieldBGColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_41,color:t.block.settings.fieldTextColor},model:{value:t.block.settings.fieldTextColor,callback:function(s){t.$set(t.block.settings,"fieldTextColor",s)},expression:"block.settings.fieldTextColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_42,color:t.block.settings.fieldBorderColor},model:{value:t.block.settings.fieldBorderColor,callback:function(s){t.$set(t.block.settings,"fieldBorderColor",s)},expression:"block.settings.fieldBorderColor"}})],1),e("BorderWidthControl",{attrs:{block:t.block,prefix:"field"}})],1):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_2},on:{click:function(s){t.section_2=!t.section_2}}},[t._v("\n "+t._s(t.txt_9)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_2?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_32))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnStyle,expression:"block.settings.btnStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"btnStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_33))]),e("option",{attrs:{value:"ghost"}},[t._v(t._s(t.txt_34))]),e("option",{attrs:{value:"2d"}},[t._v(t._s(t.txt_35))]),e("option",{attrs:{value:"3d"}},[t._v(t._s(t.txt_36))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_37))]),e("IconPicker",{model:{value:t.block.settings.beforeIcon,callback:function(s){t.$set(t.block.settings,"beforeIcon",s)},expression:"block.settings.beforeIcon"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_38))]),e("IconPicker",{model:{value:t.block.settings.afterIcon,callback:function(s){t.$set(t.block.settings,"afterIcon",s)},expression:"block.settings.afterIcon"}})],1)]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},We=[],Ge=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.label_prefix)+" "+t._s(t.txt_1))]),!1===t.block.settings[t.pre+"borderSync"]?e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderTop"],expression:"block.settings[pre + 'borderTop']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderTop"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRight"],expression:"block.settings[pre + 'borderRight']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRight"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRight",s.target.value)}}}),t._v("\n "+t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderBottom"],expression:"block.settings[pre + 'borderBottom']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderBottom"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderBottom",s.target.value)}}}),t._v("\n "+t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderLeft"],expression:"block.settings[pre + 'borderLeft']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderLeft"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderLeft",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-neutral-20",on:{click:function(s){return t.sync_border(!0)}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z"}}),e("path",{attrs:{d:"M0 24V0",fill:"none"}})])])]):e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderTop"],expression:"block.settings[pre + 'borderTop']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderTop"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderTop"],expression:"block.settings[pre + 'borderTop']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderTop"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderTop"],expression:"block.settings[pre + 'borderTop']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderTop"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderTop"],expression:"block.settings[pre + 'borderTop']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderTop"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderTop",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-primary",on:{click:function(s){return t.sync_border(!1)}}},[e("svg",{staticClass:"sp-fill-current sp-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"}})])])])])},Ze=[],Je={name:"BorderWidthControl",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Border Width","coming-soon"),txt_2:Object(b["a"])("Top","coming-soon"),txt_3:Object(b["a"])("Right","coming-soon"),txt_4:Object(b["a"])("Bottom","coming-soon"),txt_5:Object(b["a"])("Left","coming-soon"),shared:seedprod_store}},methods:{sync_border:function(t){this.block.settings[this.pre+"borderSync"]=t,this.block.settings[this.pre+"borderLeft"]=this.block.settings.borderTop,this.block.settings[this.pre+"borderBottom"]=this.block.settings.borderTop,this.block.settings[this.pre+"borderRight"]=this.block.settings.borderTop}},computed:{label_prefix:function(){var t="";return void 0!==this.prefix&&(t=this.prefix.charAt(0).toUpperCase()+this.prefix.slice(1)),t},pre:function(){return void 0===this.prefix?"":this.prefix}},components:{},props:{block:Object,prefix:String}},qe=Je,Ye=Object(w["a"])(qe,Ge,Ze,!1,null,null,null),Xe=Ye.exports,Ke={name:"OptinFormOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Templates","coming-soon"),txt_3:Object(b["a"])("Advanced","coming-soon"),txt_4:Object(b["a"])("Fields","coming-soon"),txt_5:Object(b["a"])("Submit Button","coming-soon"),txt_6:Object(b["a"])("Success Action","coming-soon"),txt_7:Object(b["a"])("Form","coming-soon"),txt_8:Object(b["a"])("Fields","coming-soon"),txt_9:Object(b["a"])("Button","coming-soon"),txt_10:Object(b["a"])("Label","coming-soon"),txt_11:Object(b["a"])("Width","coming-soon"),txt_12:Object(b["a"])("Required","coming-soon"),txt_13:Object(b["a"])("Size","coming-soon"),txt_14:Object(b["a"])("Tiny","coming-soon"),txt_15:Object(b["a"])("Small","coming-soon"),txt_16:Object(b["a"])("Medium","coming-soon"),txt_17:Object(b["a"])("Large","coming-soon"),txt_18:Object(b["a"])("X Large","coming-soon"),txt_19:Object(b["a"])("2X Large","coming-soon"),txt_20:Object(b["a"])("Align","coming-soon"),txt_21:Object(b["a"])("Button Sub Text","coming-soon"),txt_22:Object(b["a"])("Input Sizes","coming-soon"),txt_23:Object(b["a"])("Action To Take","coming-soon"),txt_24:Object(b["a"])("Show Message","coming-soon"),txt_25:Object(b["a"])("Redirect","coming-soon"),txt_26:Object(b["a"])("Message","coming-soon"),txt_27:Object(b["a"])("Redirect Url","coming-soon"),txt_28:Object(b["a"])("Choose Your Style","coming-soon"),txt_29:Object(b["a"])("Font Family","coming-soon"),txt_30:Object(b["a"])("Border Radius","coming-soon"),txt_31:Object(b["a"])("Remove Inline Padding","coming-soon"),txt_32:Object(b["a"])("Button Style","coming-soon"),txt_33:Object(b["a"])("Flat","coming-soon"),txt_34:Object(b["a"])("Ghost","coming-soon"),txt_35:Object(b["a"])("2D","coming-soon"),txt_36:Object(b["a"])("3D","coming-soon"),txt_37:Object(b["a"])("Before Text Icon","coming-soon"),txt_38:Object(b["a"])("After Text Icon","coming-soon"),txt_39:Object(b["a"])("Background Color","coming-soon"),txt_40:Object(b["a"])("Field Background Color","coming-soon"),txt_41:Object(b["a"])("Field Text Color","coming-soon"),txt_42:Object(b["a"])("Field Border Color","coming-soon"),txt_43:Object(b["a"])("Light Input Field","coming-soon"),txt_44:Object(b["a"])("No Border Input Field","coming-soon"),txt_45:Object(b["a"])("Wide Border Input Field","coming-soon"),txt_46:Object(b["a"])("Inner Shadow Input Field","coming-soon"),txt_47:Object(b["a"])("Grey Input Field","coming-soon"),txt_48:Object(b["a"])("Dark Input Field","coming-soon"),txt_49:Object(b["a"])("Bottom Border Field","coming-soon"),txt_50:Object(b["a"])("Transparent Input Field","coming-soon"),txt_51:Object(b["a"])("Button text","coming-soon"),showsettings:!1,current_index:!1,view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,section_6:!1,section_7:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.optinform,function(s,e){t.set_default_val(t.block.settings,e,s)})},watch:{"block.settings.fieldTextColor":function(t,s){this.debounce_update_placeholder_css()}},created:function(){},methods:{apply_template:function(t){0==t&&(this.block.settings.fieldBGColor="#ffffff",this.block.settings.fieldTextColor="#444444",this.block.settings.fieldBorderColor="#dedede",this.block.settings.fieldborderTop=1,this.block.settings.fieldborderRight=1,this.block.settings.fieldborderBottom=1,this.block.settings.fieldborderLeft=1,this.block.settings.borderRadius=6,this.block.settings.fieldborderSync=!0),1==t&&(this.block.settings.fieldBGColor="#ffffff",this.block.settings.fieldTextColor="#444444",this.block.settings.fieldBorderColor="#ffffff",this.block.settings.fieldborderTop=1,this.block.settings.fieldborderRight=1,this.block.settings.fieldborderBottom=1,this.block.settings.fieldborderLeft=1,this.block.settings.borderRadius=6,this.block.settings.fieldborderSync=!0),2==t&&(this.block.settings.fieldBGColor="#ffffff",this.block.settings.fieldTextColor="#444444",this.block.settings.fieldBorderColor="#dedede",this.block.settings.fieldborderTop=2,this.block.settings.fieldborderRight=2,this.block.settings.fieldborderBottom=2,this.block.settings.fieldborderLeft=2,this.block.settings.borderRadius=6,this.block.settings.fieldborderSync=!0),4==t&&(this.block.settings.fieldBGColor="#f0f0f0",this.block.settings.fieldTextColor="#444444",this.block.settings.fieldBorderColor="#dedede",this.block.settings.fieldborderTop=1,this.block.settings.fieldborderRight=1,this.block.settings.fieldborderBottom=1,this.block.settings.fieldborderLeft=1,this.block.settings.borderRadius=6,this.block.settings.fieldborderSync=!0),5==t&&(this.block.settings.fieldBGColor="#414141",this.block.settings.fieldTextColor="#ffffff",this.block.settings.fieldBorderColor="#dedede",this.block.settings.fieldborderTop=1,this.block.settings.fieldborderRight=1,this.block.settings.fieldborderBottom=1,this.block.settings.fieldborderLeft=1,this.block.settings.borderRadius=6,this.block.settings.fieldborderSync=!0),6==t&&(this.block.settings.fieldBGColor="#ffffff",this.block.settings.fieldTextColor="#444444",this.block.settings.fieldBorderColor="#dedede",this.block.settings.fieldborderTop=0,this.block.settings.fieldborderRight=0,this.block.settings.fieldborderBottom=2,this.block.settings.fieldborderLeft=0,this.block.settings.fieldborderSync=!1,this.block.settings.borderRadius=6),7==t&&(this.block.settings.fieldBGColor="rgba(255,255,255,0.7)",this.block.settings.fieldTextColor="#444444",this.block.settings.fieldBorderColor="rgba(255,255,255,0.3)",this.block.settings.fieldborderTop=1,this.block.settings.fieldborderRight=1,this.block.settings.fieldborderBottom=1,this.block.settings.fieldborderLeft=1,this.block.settings.fieldborderSync=!0,this.block.settings.borderRadius=6)},toggle_dislay:function(t){"email"!=t.type&&(t.display=!t.display)},show_settings:function(t){this.showsettings!==t?this.showsettings=t:this.showsettings=!1},update_input_size:function(){this.block.settings.inputSize,this.block.settings.inputSize,3==this.block.settings.inputSize&&(this.block.settings.inputPadding=8),4==this.block.settings.inputSize&&(this.block.settings.inputPadding=12),this.block.settings.inputSize,this.block.settings.inputSize},update_btn_size:function(){1==this.block.settings.btnSize&&(this.block.settings.fontSize=13,this.block.settings.btnPaddingTop=4,this.block.settings.btnPaddingLeft=8),2==this.block.settings.btnSize&&(this.block.settings.fontSize=15,this.block.settings.btnPaddingTop=8,this.block.settings.btnPaddingLeft=12,this.block.settings.inputPadding=6,this.block.settings.inputSize=13),3==this.block.settings.btnSize&&(this.block.settings.fontSize=18,this.block.settings.btnPaddingTop=11,this.block.settings.btnPaddingLeft=16,this.block.settings.inputPadding=8,this.block.settings.inputSize=16),4==this.block.settings.btnSize&&(this.block.settings.fontSize=22,this.block.settings.btnPaddingTop=16,this.block.settings.btnPaddingLeft=20,this.block.settings.inputPadding=12,this.block.settings.inputSize=20),5==this.block.settings.btnSize&&(this.block.settings.fontSize=26,this.block.settings.btnPaddingTop=20,this.block.settings.btnPaddingLeft=26),6==this.block.settings.btnSize&&(this.block.settings.fontSize=32,this.block.settings.btnPaddingTop=28,this.block.settings.btnPaddingLeft=32)}},components:{draggable:E.a,ColorPicker:K,IconPicker:$t,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,TypographyControl:St,PaddingControl:Et,HelpTip:Zt,editor:ts["a"],BorderWidthControl:Xe,SpacingSectionControl:Qt},props:{block:Object}},Qe=Ke,to=Object(w["a"])(Qe,De,We,!1,null,null,null),so=to.exports,eo=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("draggable",{attrs:{list:t.block.settings.items}},t._l(t.block.settings.items,function(s,o){return e("div",{key:o,staticClass:"sp-flex sp-items-center sp-mb-3",on:{mouseover:function(s){t.current_index=o},mouseleave:function(s){t.current_index=!1}}},[s.icon?e("button",{staticClass:"sp-border sp-border-neutral-20 sp-rounded-tl-md sp-rounded-bl-md sp-w-42px sp-h-42px sp-inline-block sp-border-r-0 sp-text-lg sp-flex sp-items-center sp-justify-center sp-bg-white sp-text-neutral-80"},[e("i",{class:s.icon})]):e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Icon",delay:{show:1500,hide:0}},expression:"{content:'Add Icon',delay:{ show: 1500, hide: 0 }}"}],staticClass:"sp-border sp-border-neutral-20 sp-rounded-tl-md sp-rounded-bl-md sp-w-42px sp-h-42px sp-inline-block sp-border-r-0 sp-text-lg sp-flex sp-items-center sp-justify-center sp-bg-neutral-10 sp-text-neutral-40 hover:sp-bg-white hover:sp-text-neutral-80"},[e("i",{staticClass:"far fa-image"})]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.txt,expression:"item.txt"}],staticClass:"sp-rounded-tl-none sp-rounded-bl-none sp-form-input",staticStyle:{width:"178px"},domProps:{value:s.txt},on:{input:function(e){e.target.composing||t.$set(s,"txt",e.target.value)}}}),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate",delay:{show:1500,hide:0}},expression:"{content:'Duplicate',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.duplicate_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete",delay:{show:1500,hide:0}},expression:"{content:'Delete',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-2",on:{click:function(s){return t.remove_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])])}),0),e("button",{staticClass:"sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.add_item}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v(t._s(t.txt_4)+"\n ")])],1)]):t._e()]):t._e()])},oo=[],io={name:"FormOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Settings","coming-soon"),txt_4:Object(b["a"])("Add New Item","coming-soon"),current_index:!1,view:1,section_1:!0,shared:seedprod_store}},mounted:function(){},created:function(){},methods:{add_item:function(){this.block.settings.items.push({icon:"",txt:""})},remove_item:function(t){this.$delete(this.block.settings.items,t)},duplicate_item:function(t){var s=JSON.parse(i()(this.block.settings.items[t]));this.block.settings.items.splice(t+1,0,s)}},components:{draggable:E.a},props:{block:Object}},ao=io,no=Object(w["a"])(ao,eo,oo,!1,null,null,null),lo=no.exports,ro=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_14)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-w-full"},[t._v(t._s(t.txt_4)+"\n "),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.formId,expression:"block.settings.formId"}],staticClass:"sp-form-select sp-mb-2",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"formId",s.target.multiple?e:e[0])},t.onChange]}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_6))]),t._l(t.forms,function(s){return e("option",{key:s.ID,domProps:{value:s.ID}},[t._v(t._s(s.post_title))])})],2)]),e("div",{staticClass:"sp-text-sm sp-italic sp-font-semibold"},[t.forms.length&&t.block.settings.formId?e("div",{staticClass:"sp-mb-2"},[e("a",{attrs:{href:"#"},on:{click:t.editLinkClick}},[t._v(t._s(t.txt_7))])]):t._e(),e("div",{staticClass:"sp-text-center"},[e("button",{staticClass:"sp-wp-button sp-wp-button-transparent",attrs:{type:"button"},on:{click:t.createNewLinkClick}},[t._v(t._s(t.txt_9))])])])])]):t._e(),t.forms.length&&t.block.settings.formId?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_2},on:{click:function(s){t.section_2=!t.section_2}}},[t._v("\n "+t._s(t.txt_15)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_2?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-w-full"},[t._v(t._s(t.txt_12)+"\n "),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.formTitle,expression:"block.settings.formTitle"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"formTitle",s.target.multiple?e:e[0])},t.onChange]}},[e("option",{attrs:{value:"false"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"true"}},[t._v(t._s(t.txt_10))])])])]),e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-w-full"},[t._v(t._s(t.txt_13)+"\n "),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.formDescription,expression:"block.settings.formDescription"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"formDescription",s.target.multiple?e:e[0])},t.onChange]}},[e("option",{attrs:{value:"false"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"true"}},[t._v(t._s(t.txt_10))])])])])]):t._e()]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_5,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1)]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},co=[],po=e("81f6"),uo={name:"ContactFormOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Advanced Styles","coming-soon"),txt_4:Object(b["a"])("Select a Form","coming-soon"),txt_5:Object(b["a"])("Text Color","coming-soon"),txt_6:Object(b["a"])("Select","coming-soon"),txt_7:Object(b["a"])("Need to make changes? Edit the selected form.","coming-soon"),txt_9:Object(b["a"])("+ New Form","coming-soon"),txt_10:Object(b["a"])("Show","coming-soon"),txt_11:Object(b["a"])("Hide","coming-soon"),txt_12:Object(b["a"])("Form Name","coming-soon"),txt_13:Object(b["a"])("Form Description","coming-soon"),txt_14:Object(b["a"])("Form","coming-soon"),txt_15:Object(b["a"])("Display Options","coming-soon"),forms:[],view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store,wpforms:seedprod_data.wpforms}},methods:{editLinkClick:function(t){if(t){var s=this.block.settings.formId>0?this.wpforms.edit_form_url+this.block.settings.formId:this.wpforms.add_form_url;po["a"].$emit("editLinkClicked",s)}},createNewLinkClick:function(t){t&&po["a"].$emit("createNewLinkClicked",this.wpforms.add_form_url)},onChange:function(t){t&&po["a"].$emit("formSelected",this.getFormSettings())},getFormSettings:function(){return{form_id:this.block.settings.formId,form_title:this.block.settings.formTitle,form_description:this.block.settings.formDescription}},loadForms:function(){var t=this;t.axios.get("admin-ajax.php?action="+t.shared.page_path+"_get_wpforms&_wpnonce="+seedprod_nonce).then(function(s){t.forms=s.data,po["a"].$emit("formsLoaded",s.data)}).catch(function(t){console.log(t)})}},mounted:function(){var t=this;t.loadForms(),po["a"].$on("pluginActivated",t.loadForms).$on("newFormCreated",t.loadForms),lodash.forOwn(this.shared.block_templates["contactform"],function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},components:{ColorPicker:K,TypographyControl:St,PaddingControl:Et,SliderControl:zt,SpacingSectionControl:Qt},props:{block:Object}},go=uo,ho=Object(w["a"])(go,ro,co,!1,null,null,null),vo=ho.exports,mo=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-w-full"},[t._v(t._s(t.txt_4)+"\n "),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.formId,expression:"block.settings.formId"}],staticClass:"sp-form-select sp-mb-2",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"formId",s.target.multiple?e:e[0])},t.onChange]}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_6))]),t._l(t.forms,function(s){return e("option",{key:s.id,domProps:{value:s.id}},[t._v(t._s(s.name))])})],2)]),e("div",{staticClass:"sp-text-sm sp-italic sp-font-semibold"},[t.forms.length&&t.block.settings.formId?e("div",{staticClass:"sp-mb-2"},[e("a",{attrs:{href:t.edit_giveaway,target:"_blank"}},[t._v(t._s(t.txt_7))])]):t._e(),e("div",{staticClass:"sp-text-center"},[e("a",{staticClass:"sp-wp-button sp-wp-button-transparent",attrs:{href:t.rafflepress.add_form_url,target:"_blank"}},[t._v(t._s(t.txt_9))])])])])]):t._e(),3==t.view?e("div",[e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},_o=[],bo={name:"GiveawayOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Advanced Styles","coming-soon"),txt_4:Object(b["a"])("Select a Giveaway","coming-soon"),txt_5:Object(b["a"])("Text Color","coming-soon"),txt_6:Object(b["a"])("Select a Giveaway","coming-soon"),txt_7:Object(b["a"])("Need to make changes? Edit the selected giveaway.","coming-soon"),txt_9:Object(b["a"])("+ New Giveaway","coming-soon"),txt_10:Object(b["a"])("Show","coming-soon"),txt_11:Object(b["a"])("Hide","coming-soon"),txt_12:Object(b["a"])("Form Name","coming-soon"),txt_13:Object(b["a"])("Form Description","coming-soon"),txt_14:Object(b["a"])("Form","coming-soon"),txt_15:Object(b["a"])("Display Options","coming-soon"),forms:[],view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store,rafflepress:seedprod_data.rafflepress}},computed:{edit_giveaway:function(){return this.rafflepress.edit_form_url.replace("$id$",this.block.settings.formId)}},methods:{editLinkClick:function(t){if(t){var s=this.block.settings.formId>0?this.rafflepress.edit_form_url+this.block.settings.formId:this.rafflepress.add_form_url;po["a"].$emit("geditLinkClicked",s)}},createNewLinkClick:function(t){t&&po["a"].$emit("gcreateNewLinkClicked",this.rafflepress.add_form_url)},onChange:function(t){t&&po["a"].$emit("gformSelected",this.getFormSettings())},getFormSettings:function(){return{form_id:this.block.settings.formId,form_title:this.block.settings.formTitle,form_description:this.block.settings.formDescription}},loadForms:function(){var t=this;t.axios.get("admin-ajax.php?action="+t.shared.page_path+"_get_rafflepress&_wpnonce="+seedprod_nonce).then(function(s){t.forms=s.data,po["a"].$emit("gformsLoaded",s.data)}).catch(function(t){console.log(t)})}},mounted:function(){var t=this;t.loadForms(),po["a"].$on("pluginActivated",t.loadForms).$on("newFormCreated",t.loadForms),lodash.forOwn(this.shared.block_templates["giveaway"],function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},components:{ColorPicker:K,TypographyControl:St,PaddingControl:Et,SliderControl:zt,SpacingSectionControl:Qt},props:{block:Object}},fo=bo,xo=Object(w["a"])(fo,mo,_o,!1,null,null,null),wo=xo.exports,Co=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("IconPicker",{model:{value:t.block.settings.icon,callback:function(s){t.$set(t.block.settings,"icon",s)},expression:"block.settings.icon"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group sp-mt-4"},[e("ColorPicker",{attrs:{label:t.txt_15,color:t.block.settings.color},model:{value:t.block.settings.color,callback:function(s){t.$set(t.block.settings,"color",s)},expression:"block.settings.color"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("SliderControl",{attrs:{min:10,max:150,step:1},model:{value:t.block.settings.fontSize,callback:function(s){t.$set(t.block.settings,"fontSize",s)},expression:"block.settings.fontSize"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_14))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},ko=[],yo={name:"IconOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Styles","coming-soon"),txt_4:Object(b["a"])("Icon","coming-soon"),txt_5:Object(b["a"])("Align","coming-soon"),txt_6:Object(b["a"])("Size","coming-soon"),txt_7:Object(b["a"])("Shadow","coming-soon"),txt_8:Object(b["a"])("None","coming-soon"),txt_9:Object(b["a"])("Hairline","coming-soon"),txt_10:Object(b["a"])("Small","coming-soon"),txt_11:Object(b["a"])("Medium","coming-soon"),txt_12:Object(b["a"])("Large","coming-soon"),txt_13:Object(b["a"])("X Large","coming-soon"),txt_14:Object(b["a"])("2X Large","coming-soon"),txt_15:Object(b["a"])("Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.icon,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{set_tag:function(t){this.shared.is_moving=!0,this.block.settings.tag=t,this.shared.is_moving=!1},sync_align:function(t,s){"JustifyLeft"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="left"),"JustifyRight"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="right"),"JustifyCenter"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="center"),s.queryCommandState(t.command)}},components:{ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt,Editor:ts["a"],TypographyControl:St,PaddingControl:Et,IconPicker:$t,SpacingSectionControl:Qt},props:{block:Object}},zo=yo,Oo=Object(w["a"])(zo,Co,ko,!1,null,null,null),jo=Oo.exports,Mo=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_13)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_14)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n Image\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},["image"==t.block.settings.layout?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_2))]),e("ImageControl",{model:{value:t.block.settings.src,callback:function(s){t.$set(t.block.settings,"src",s)},expression:"block.settings.src"}})],1),e("div",{staticClass:"sp-form-group"},[e("div",{},[e("label",[t._v(t._s(t.txt_4))])]),e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.width,expression:"block.settings.width"}],staticClass:"sp-form-input sp-w-20",attrs:{type:"number"},domProps:{value:t.block.settings.width},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"width",s.target.value)}}}),t._v("\n Width\n ")]),e("svg",{staticClass:"sp-mx-2 sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.height,expression:"block.settings.height"}],staticClass:"sp-form-input sp-w-20",attrs:{type:"number"},domProps:{value:t.block.settings.height},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"height",s.target.value)}}}),t._v("\n Height\n ")]),e("div",{staticClass:"sp-text-sm"},[e("span",{staticClass:"sp-mx-2 sp-text-neutral-40 sp-cursor-pointer",class:{"sp-text-neutral-80 sp-underline":"px"==t.block.settings.unit},on:{click:function(s){t.block.settings.unit="px"}}},[t._v("PX")]),e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",class:{"sp-text-neutral-80 sp-underline":"%"==t.block.settings.unit},on:{click:function(s){t.block.settings.unit="%"}}},[t._v("%")])])])])]):t._e(),"icon"==t.block.settings.layout?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_3))]),e("IconPicker",{model:{value:t.block.settings.icon,callback:function(s){t.$set(t.block.settings,"icon",s)},expression:"block.settings.icon"}})],1),e("div",{staticClass:"sp-form-group sp-mt-4"},[e("ColorPicker",{attrs:{label:t.txt_11,color:t.block.settings.iconColor},model:{value:t.block.settings.iconColor,callback:function(s){t.$set(t.block.settings,"iconColor",s)},expression:"block.settings.iconColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("SliderControl",{attrs:{min:10,max:150,step:1},model:{value:t.block.settings.iconFontSize,callback:function(s){t.$set(t.block.settings,"iconFontSize",s)},expression:"block.settings.iconFontSize"}})],1)]):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_5},on:{click:function(s){t.section_5=!t.section_5}}},[t._v("\n Text\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_5?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_7))])]),e("editor",{attrs:{init:{height:100,branding:!1,menubar:!1,paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"bold,italic,underline,strikethrough,link"}},on:{onExecCommand:t.sync_align},model:{value:t.block.settings.headerTxt,callback:function(s){t.$set(t.block.settings,"headerTxt",s)},expression:"block.settings.headerTxt"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("div",{staticClass:"sp-flex",attrs:{id:"sp-header-tag-control"}},[e("button",{class:{"sp-active":"h1"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h1")}}},[t._v("h1")]),e("button",{class:{"sp-active":"h2"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h2")}}},[t._v("h2")]),e("button",{class:{"sp-active":"h3"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h3")}}},[t._v("h3")]),e("button",{class:{"sp-active":"h4"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h4")}}},[t._v("h4")])])]),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_9))])]),e("editor",{attrs:{init:{height:200,branding:!1,menubar:!1,plugins:["link"],toolbar:"bold,italic,underline,strikethrough,link"}},model:{value:t.block.settings.txt,callback:function(s){t.$set(t.block.settings,"txt",s)},expression:"block.settings.txt"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n Styles\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block,prefix:"header"}})],1),e("div",{staticClass:"sp-form-group "},[e("ColorPicker",{attrs:{label:t.txt_12,color:t.block.settings.headerColor},model:{value:t.block.settings.headerColor,callback:function(s){t.$set(t.block.settings,"headerColor",s)},expression:"block.settings.headerColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group "},[e("ColorPicker",{attrs:{label:"txt_11",color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1)]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},So=[],Ho={name:"FeatureOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Type","coming-soon"),txt_2:Object(b["a"])("Image","coming-soon"),txt_3:Object(b["a"])("Icon","coming-soon"),txt_4:Object(b["a"])("Image Size","coming-soon"),txt_5:Object(b["a"])("Size","coming-soon"),txt_6:Object(b["a"])("Align","coming-soon"),txt_7:Object(b["a"])("Header Text","coming-soon"),txt_8:Object(b["a"])("Level","coming-soon"),txt_9:Object(b["a"])("Text","coming-soon"),txt_10:Object(b["a"])("Background Color","coming-soon"),txt_11:Object(b["a"])("Color","coming-soon"),txt_12:Object(b["a"])("Header Color","coming-soon"),txt_13:Object(b["a"])("Content","coming-soon"),txt_14:Object(b["a"])("Advanced","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.feature,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{set_tag:function(t){this.shared.is_moving=!0,this.block.settings.tag=t,this.shared.is_moving=!1},sync_align:function(t,s){"JustifyLeft"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="left"),"JustifyRight"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="right"),"JustifyCenter"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="center"),s.queryCommandState(t.command)}},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt,Editor:ts["a"],PaddingControl:Et,TypographyControl:St,IconPicker:$t,SpacingSectionControl:Qt},props:{block:Object}},Vo=Ho,Bo=Object(w["a"])(Vo,Mo,So,!1,null,null,null),Lo=Bo.exports,To=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_13)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_14)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n Image\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},["image"==t.block.settings.layout?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_2))]),e("ImageControl",{model:{value:t.block.settings.src,callback:function(s){t.$set(t.block.settings,"src",s)},expression:"block.settings.src"}})],1),e("div",{staticClass:"sp-form-group"},[e("div",{},[e("label",[t._v(t._s(t.txt_4))])]),e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.width,expression:"block.settings.width"}],staticClass:"sp-form-input sp-w-20",attrs:{type:"number"},domProps:{value:t.block.settings.width},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"width",s.target.value)}}}),t._v("\n Width\n ")]),e("svg",{staticClass:"sp-mx-2 sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})]),e("span",{staticClass:"sp-flex sp-flex-col sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.height,expression:"block.settings.height"}],staticClass:"sp-form-input sp-w-20",attrs:{type:"number"},domProps:{value:t.block.settings.height},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"height",s.target.value)}}}),t._v("\n Height\n ")]),e("div",{staticClass:"sp-text-sm"},[e("span",{staticClass:"sp-mx-2 sp-text-neutral-40 sp-cursor-pointer",class:{"sp-text-neutral-80 sp-underline":"px"==t.block.settings.unit},on:{click:function(s){t.block.settings.unit="px"}}},[t._v("PX")]),e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",class:{"sp-text-neutral-80 sp-underline":"%"==t.block.settings.unit},on:{click:function(s){t.block.settings.unit="%"}}},[t._v("%")])])])])]):t._e(),"icon"==t.block.settings.layout?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_3))]),e("IconPicker",{model:{value:t.block.settings.icon,callback:function(s){t.$set(t.block.settings,"icon",s)},expression:"block.settings.icon"}})],1),e("div",{staticClass:"sp-form-group sp-mt-4"},[e("ColorPicker",{attrs:{label:t.txt_11,color:t.block.settings.iconColor},model:{value:t.block.settings.iconColor,callback:function(s){t.$set(t.block.settings,"iconColor",s)},expression:"block.settings.iconColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("SliderControl",{attrs:{min:10,max:150,step:1},model:{value:t.block.settings.iconFontSize,callback:function(s){t.$set(t.block.settings,"iconFontSize",s)},expression:"block.settings.iconFontSize"}})],1)]):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("AlignControl",{attrs:{icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_5},on:{click:function(s){t.section_5=!t.section_5}}},[t._v("\n Text\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_5?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_7))])]),e("editor",{attrs:{init:{height:100,branding:!1,menubar:!1,paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"bold,italic,underline,strikethrough,link"}},on:{onExecCommand:t.sync_align},model:{value:t.block.settings.headerTxt,callback:function(s){t.$set(t.block.settings,"headerTxt",s)},expression:"block.settings.headerTxt"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("div",{staticClass:"sp-flex",attrs:{id:"sp-header-tag-control"}},[e("button",{class:{"sp-active":"h1"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h1")}}},[t._v("h1")]),e("button",{class:{"sp-active":"h2"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h2")}}},[t._v("h2")]),e("button",{class:{"sp-active":"h3"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h3")}}},[t._v("h3")]),e("button",{class:{"sp-active":"h4"==t.block.settings.tag},on:{click:function(s){return t.set_tag("h4")}}},[t._v("h4")])])]),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_9))])]),e("editor",{attrs:{init:{height:200,branding:!1,menubar:!1,plugins:["link"],toolbar:"bold,italic,underline,strikethrough,link"}},model:{value:t.block.settings.txt,callback:function(s){t.$set(t.block.settings,"txt",s)},expression:"block.settings.txt"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n Styles\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block,prefix:"header"}})],1),e("div",{staticClass:"sp-form-group "},[e("ColorPicker",{attrs:{label:t.txt_12,color:t.block.settings.headerColor},model:{value:t.block.settings.headerColor,callback:function(s){t.$set(t.block.settings,"headerColor",s)},expression:"block.settings.headerColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group "},[e("ColorPicker",{attrs:{label:t.txt_11,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1)]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},$o=[],Po={name:"IconFeatureOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Type","coming-soon"),txt_2:Object(b["a"])("Image","coming-soon"),txt_3:Object(b["a"])("Icon","coming-soon"),txt_4:Object(b["a"])("Image Size","coming-soon"),txt_5:Object(b["a"])("Size","coming-soon"),txt_6:Object(b["a"])("Align","coming-soon"),txt_7:Object(b["a"])("Header Text","coming-soon"),txt_8:Object(b["a"])("Level","coming-soon"),txt_9:Object(b["a"])("Text","coming-soon"),txt_10:Object(b["a"])("Background Color","coming-soon"),txt_11:Object(b["a"])("Color","coming-soon"),txt_12:Object(b["a"])("Header Color","coming-soon"),txt_13:Object(b["a"])("Content","coming-soon"),txt_14:Object(b["a"])("Advanced","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.iconfeature,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{set_tag:function(t){this.shared.is_moving=!0,this.block.settings.tag=t,this.shared.is_moving=!1},sync_align:function(t,s){"JustifyLeft"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="left"),"JustifyRight"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="right"),"JustifyCenter"==t.command&&!1===s.queryCommandState(t.command)&&(this.block.settings.align="center"),s.queryCommandState(t.command)}},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt,Editor:ts["a"],PaddingControl:Et,TypographyControl:St,IconPicker:$t,SpacingSectionControl:Qt},props:{block:Object}},No=Po,Ro=Object(w["a"])(No,To,$o,!1,null,null,null),Fo=Ro.exports,Ao=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_20)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_21)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_22)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("BackgroundControl",{attrs:{block:t.block}}),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_1))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.contentWidth,expression:"block.settings.contentWidth"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"contentWidth",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_2))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_3))])])]),2==t.block.settings.contentWidth?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("SliderControl",{attrs:{min:400,max:1e3,step:10},model:{value:t.block.settings.width,callback:function(s){t.$set(t.block.settings,"width",s)},expression:"block.settings.width"}})],1):t._e()],1):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_23)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_18,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_7))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_12))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}}),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_5},on:{click:function(s){t.section_5=!t.section_5}}},[t._v("\n "+t._s(t.txt_24)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_5},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_5?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("BorderRadiusControl",{attrs:{block:t.block}}),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_14))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.borderStyle,expression:"block.settings.borderStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"borderStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"solid"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"dotted"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"dashed"}},[t._v(t._s(t.txt_17))])])]),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_19,color:t.block.settings.borderColor},model:{value:t.block.settings.borderColor,callback:function(s){t.$set(t.block.settings,"borderColor",s)},expression:"block.settings.borderColor"}})],1),e("BorderWidthControl",{attrs:{block:t.block}})],1):t._e()],1):t._e()])},Eo=[],Io=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.label_prefix)+" "+t._s(t.txt_1))]),!1===t.block.settings[t.pre+"borderRadiusSync"]?e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusTL"],expression:"block.settings[pre + 'borderRadiusTL']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusTL"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusTL",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n "),e("br"),t._v(t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusTR"],expression:"block.settings[pre + 'borderRadiusTR']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusTR"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusTR",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n "),e("br"),t._v(t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusBL"],expression:"block.settings[pre + 'borderRadiusBL']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusBL"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusBL",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n "),e("br"),t._v(t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusBR"],expression:"block.settings[pre + 'borderRadiusBR']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusBR"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusBR",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n "),e("br"),t._v(t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-neutral-20",on:{click:function(s){return t.sync_borderRadius(!0)}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z"}}),e("path",{attrs:{d:"M0 24V0",fill:"none"}})])])]):e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusTL"],expression:"block.settings[pre + 'borderRadiusTL']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusTL"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusTL",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n "),e("br"),t._v(t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusTL"],expression:"block.settings[pre + 'borderRadiusTL']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusTL"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusTL",s.target.value)}}}),t._v("\n "+t._s(t.txt_2)+"\n "),e("br"),t._v(t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusTL"],expression:"block.settings[pre + 'borderRadiusTL']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-border-r-0 sp-rounded-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusTL"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusTL",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n "),e("br"),t._v(t._s(t.txt_3)+"\n ")]),e("span",{staticClass:"sp-flex sp-flex-col sp-text-center sp-items-center sp-text-11px"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings[t.pre+"borderRadiusTL"],expression:"block.settings[pre + 'borderRadiusTL']"}],staticClass:"sp-form-input focus:sp-border-neutral-20 sp-w-16 sp-rounded-tl-none sp-rounded-bl-none",attrs:{type:"number",min:"0"},domProps:{value:t.block.settings[t.pre+"borderRadiusTL"]},on:{input:function(s){s.target.composing||t.$set(t.block.settings,t.pre+"borderRadiusTL",s.target.value)}}}),t._v("\n "+t._s(t.txt_5)+"\n "),e("br"),t._v(t._s(t.txt_4)+"\n ")]),e("span",{staticClass:"sp-ml-2 sp-text-primary",on:{click:function(s){return t.sync_borderRadius(!1)}}},[e("svg",{staticClass:"sp-fill-current sp-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"}})])])])])},Uo=[],Do={name:"BorderRadiusControl",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Border Radius","coming-soon"),txt_2:Object(b["a"])("Top","coming-soon"),txt_3:Object(b["a"])("Left","coming-soon"),txt_4:Object(b["a"])("Right","coming-soon"),txt_5:Object(b["a"])("Bottom","coming-soon"),shared:seedprod_store}},methods:{sync_borderRadius:function(t){this.block.settings[this.pre+"borderRadiusSync"]=t,this.block.settings[this.pre+"borderRadiusTR"]=this.block.settings[this.pre+"borderRadiusTL"],this.block.settings[this.pre+"borderRadiusBL"]=this.block.settings[this.pre+"borderRadiusTL"],this.block.settings[this.pre+"borderRadiusBR"]=this.block.settings[this.pre+"borderRadiusTL"]}},computed:{label_prefix:function(){var t="";return void 0!==this.prefix&&(t=this.prefix.charAt(0).toUpperCase()+this.prefix.slice(1)),t},pre:function(){return void 0===this.prefix?"":this.prefix}},components:{},props:{block:Object,prefix:String}},Wo=Do,Go=Object(w["a"])(Wo,Io,Uo,!1,null,null,null),Zo=Go.exports,Jo=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-form-group sp-flex sp-justify-between sp-items-center"},[e("label",[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-flex sp-justify-center sp-items-center"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-text-xs sp-font-semibold sp-leading-none sp-mr-1 sp-rounded-full",class:{"sp-active":"s"==t.block.settings.bgStyle},on:{click:function(s){t.block.settings.bgStyle="s"}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M20.71 5.63l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z"}})]),t._v(" "+t._s(t.txt_2)+"\n ")]),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-text-xs sp-font-semibold sp-leading-none sp-rounded-full",class:{"sp-active":"g"==t.block.settings.bgStyle},on:{click:function(s){t.block.settings.bgStyle="g"}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z"}})]),t._v(t._s(t.txt_3)+"\n ")])])]),"g"==t.block.settings.bgStyle?e("div",[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.bgGradient.type,expression:"block.settings.bgGradient.type"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings.bgGradient,"type",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"radial"}},[t._v(t._s(t.txt_5))]),e("option",{attrs:{value:"linear"}},[t._v(t._s(t.txt_6))])])]),"linear"==t.block.settings.bgGradient.type?e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-mb-0"},[t._v(t._s(t.txt_7))]),e("SliderControl",{attrs:{min:0,max:360,step:1},model:{value:t.block.settings.bgGradient.angle,callback:function(s){t.$set(t.block.settings.bgGradient,"angle",s)},expression:"block.settings.bgGradient.angle"}})],1):t._e(),"radial"==t.block.settings.bgGradient.type?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_8))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.bgGradient.position,expression:"block.settings.bgGradient.position"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings.bgGradient,"position",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"top center"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"top left"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"top right"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"center"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"center left"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"center right"}},[t._v(t._s(t.txt_14))]),e("option",{attrs:{value:"bottom center"}},[t._v(t._s(t.txt_15))]),e("option",{attrs:{value:"bottom left"}},[t._v(t._s(t.txt_16))]),e("option",{attrs:{value:"bottom right"}},[t._v(t._s(t.txt_17))])])]):t._e(),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_27,color:t.block.settings.bgGradient.color1},model:{value:t.block.settings.bgGradient.color1,callback:function(s){t.$set(t.block.settings.bgGradient,"color1",s)},expression:"block.settings.bgGradient.color1"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-mb-0"},[t._v(t._s(t.txt_18))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.bgGradient.color1location,callback:function(s){t.$set(t.block.settings.bgGradient,"color1location",s)},expression:"block.settings.bgGradient.color1location"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_28,color:t.block.settings.bgGradient.color2},model:{value:t.block.settings.bgGradient.color2,callback:function(s){t.$set(t.block.settings.bgGradient,"color2",s)},expression:"block.settings.bgGradient.color2"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-mb-0"},[t._v(t._s(t.txt_19))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.bgGradient.color2location,callback:function(s){t.$set(t.block.settings.bgGradient,"color2location",s)},expression:"block.settings.bgGradient.color2location"}})],1)]):t._e(),"s"==t.block.settings.bgStyle?e("div",[e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_29,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1)]):t._e(),e("div",{staticClass:"sp-form-group",class:{input:!0,"has-error":t.errors.has("page_background_image")}},[e("label",{attrs:{for:"page_background_image"}},[t._v(t._s(t.txt_33))]),e("ImageControl",{model:{value:t.block.settings.bgImage,callback:function(s){t.$set(t.block.settings,"bgImage",s)},expression:"block.settings.bgImage"}})],1),""!=t.block.settings.bgImage?e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_20))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.bgPosition,expression:"block.settings.bgPosition"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"bgPosition",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_31))]),e("option",{attrs:{value:"cover"}},[t._v(t._s(t.txt_21))]),e("option",{attrs:{value:"full"}},[t._v(t._s(t.txt_22))]),e("option",{attrs:{value:"fullbottom"}},[t._v(t._s(t.txt_30))]),e("option",{attrs:{value:"repeat"}},[t._v(t._s(t.txt_23))]),e("option",{attrs:{value:"repeattop"}},[t._v(t._s(t.txt_24))]),e("option",{attrs:{value:"repeatbottom"}},[t._v(t._s(t.txt_25))]),e("option",{attrs:{value:"repeatvc"}},[t._v(t._s(t.txt_26))])])]):t._e()])},qo=[],Yo={name:"BackgroundControl",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Background Style","coming-soon"),txt_2:Object(b["a"])("Solid","coming-soon"),txt_3:Object(b["a"])("Gradient","coming-soon"),txt_4:Object(b["a"])("Gradient Type","coming-soon"),txt_5:Object(b["a"])("Radial","coming-soon"),txt_6:Object(b["a"])("Linear","coming-soon"),txt_7:Object(b["a"])("Angle","coming-soon"),txt_8:Object(b["a"])("Position","coming-soon"),txt_9:Object(b["a"])("Top Center","coming-soon"),txt_10:Object(b["a"])("Top Left","coming-soon"),txt_11:Object(b["a"])("Top Right","coming-soon"),txt_12:Object(b["a"])("Center Center","coming-soon"),txt_13:Object(b["a"])("Center Left","coming-soon"),txt_14:Object(b["a"])("Center Right","coming-soon"),txt_15:Object(b["a"])("Bottom Center","coming-soon"),txt_16:Object(b["a"])("Bottom Left","coming-soon"),txt_17:Object(b["a"])("Bottom Right","coming-soon"),txt_18:Object(b["a"])("First Color Location","coming-soon"),txt_19:Object(b["a"])("Second Color Location","coming-soon"),txt_20:Object(b["a"])("Background Position","coming-soon"),txt_21:Object(b["a"])("Full Screen Cover","coming-soon"),txt_22:Object(b["a"])("100% Width Top","coming-soon"),txt_23:Object(b["a"])("Repeat","coming-soon"),txt_24:Object(b["a"])("Repeat Horizontal Top","coming-soon"),txt_25:Object(b["a"])("Repeat Horizontal Bottom","coming-soon"),txt_26:Object(b["a"])("Repeat Vertical Center","coming-soon"),txt_27:Object(b["a"])("First Color","coming-soon"),txt_28:Object(b["a"])("Second Color","coming-soon"),txt_29:Object(b["a"])("Background Color","coming-soon"),txt_30:Object(b["a"])("100% Width Bottom","coming-soon"),txt_31:Object(b["a"])("","coming-soon"),txt_32:Object(b["a"])("Custom Position","coming-soon"),txt_33:Object(b["a"])("Background Image","coming-soon"),shared:seedprod_store}},methods:{},components:{ColorPicker:K,ImageControl:Ns,SliderControl:zt},props:{block:Object}},Xo=Yo,Ko=Object(w["a"])(Xo,Jo,qo,!1,null,null,null),Qo=Ko.exports,ti={name:"SectionOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Section Width","coming-soon"),txt_2:Object(b["a"])("Full Screen","coming-soon"),txt_3:Object(b["a"])("Fixed Width","coming-soon"),txt_4:Object(b["a"])("Content Width","coming-soon"),txt_5:Object(b["a"])("Shadow","coming-soon"),txt_6:Object(b["a"])("None","coming-soon"),txt_7:Object(b["a"])("Hairline","coming-soon"),txt_8:Object(b["a"])("Small","coming-soon"),txt_9:Object(b["a"])("Medium","coming-soon"),txt_10:Object(b["a"])("Large","coming-soon"),txt_11:Object(b["a"])("X Large","coming-soon"),txt_12:Object(b["a"])("2X Large","coming-soon"),txt_13:Object(b["a"])("Border Radius","coming-soon"),txt_14:Object(b["a"])("Border Style","coming-soon"),txt_15:Object(b["a"])("Solid","coming-soon"),txt_16:Object(b["a"])("Dotted","coming-soon"),txt_17:Object(b["a"])("Dashed","coming-soon"),txt_18:Object(b["a"])("Background Color","coming-soon"),txt_19:Object(b["a"])("Border Color","coming-soon"),txt_20:Object(b["a"])("Content","coming-soon"),txt_21:Object(b["a"])("Advanced","coming-soon"),txt_22:Object(b["a"])("Background","coming-soon"),txt_23:Object(b["a"])("Advanced Styles","coming-soon"),txt_24:Object(b["a"])("Border","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.section,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ColorPicker:K,SliderControl:zt,PaddingControl:Et,BorderWidthControl:Xe,BorderRadiusControl:Zo,ImageControl:Ns,BackgroundControl:Qo,SpacingSectionControl:Qt},props:{block:Object}},si=ti,ei=Object(w["a"])(si,Ao,Eo,!1,null,null,null),oi=ei.exports,ii=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n Background\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("BackgroundControl",{attrs:{block:t.block}}),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_3))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:t.block.settings.colWidth,callback:function(s){t.$set(t.block.settings,"colWidth",s)},expression:"block.settings.colWidth"}})],1)],1):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n Advanced Styles\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_12,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_5))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_6))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_7))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_11))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}}),e("BorderSectionControl",{attrs:{block:t.block}})],1):t._e()])},ai=[],ni=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_1)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("BorderRadiusControl",{attrs:{block:t.block}}),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_3))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.borderStyle,expression:"block.settings.borderStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"borderStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"solid"}},[t._v(t._s(t.txt_4))]),e("option",{attrs:{value:"dotted"}},[t._v(t._s(t.txt_5))]),e("option",{attrs:{value:"dashed"}},[t._v(t._s(t.txt_6))])])]),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_7,color:t.block.settings.borderColor},model:{value:t.block.settings.borderColor,callback:function(s){t.$set(t.block.settings,"borderColor",s)},expression:"block.settings.borderColor"}})],1),e("BorderWidthControl",{attrs:{block:t.block}})],1):t._e()])},li=[],ri={name:"BorderSectionControl",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Border","coming-soon"),txt_2:Object(b["a"])("Border Radius","coming-soon"),txt_3:Object(b["a"])("Border Style","coming-soon"),txt_4:Object(b["a"])("Solid","coming-soon"),txt_5:Object(b["a"])("Dotted","coming-soon"),txt_6:Object(b["a"])("Dashed","coming-soon"),txt_7:Object(b["a"])("Border Color","coming-soon"),section_1:!1,shared:seedprod_store}},methods:{},computed:{},components:{ColorPicker:K,BorderWidthControl:Xe,BorderRadiusControl:Zo},props:{block:Object}},ci=ri,pi=Object(w["a"])(ci,ni,li,!1,null,null,null),di=pi.exports,ui={name:"ColOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{current_index:!1,txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Column Width","coming-soon"),txt_4:Object(b["a"])("Text Shadow","coming-soon"),txt_5:Object(b["a"])("None","coming-soon"),txt_6:Object(b["a"])("Hairline","coming-soon"),txt_7:Object(b["a"])("Small","coming-soon"),txt_8:Object(b["a"])("Medium","coming-soon"),txt_9:Object(b["a"])("Large","coming-soon"),txt_10:Object(b["a"])("X Large","coming-soon"),txt_11:Object(b["a"])("2X Large","coming-soon"),txt_12:Object(b["a"])("Background Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.col,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ColorPicker:K,SliderControl:zt,PaddingControl:Et,BorderWidthControl:Xe,BorderRadiusControl:Zo,ImageControl:Ns,BackgroundControl:Qo,BorderSectionControl:di,SpacingSectionControl:Qt},props:{block:Object}},gi=ui,hi=Object(w["a"])(gi,ii,ai,!1,null,null,null),vi=hi.exports,mi=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("BackgroundControl",{attrs:{block:t.block}}),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("SliderControl",{attrs:{min:400,max:1e3,step:10},model:{value:t.block.settings.width,callback:function(s){t.$set(t.block.settings,"width",s)},expression:"block.settings.width"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("SliderControl",{attrs:{min:0,max:50,step:1},model:{value:t.block.settings.colGutter,callback:function(s){t.$set(t.block.settings,"colGutter",s)},expression:"block.settings.colGutter"}})],1)],1):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_8))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_9))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_10))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_11))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_12))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_13))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_14))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}}),e("BorderSectionControl",{attrs:{block:t.block}})],1):t._e()])},_i=[],bi={name:"RowOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Background","coming-soon"),txt_4:Object(b["a"])("Styles","coming-soon"),txt_5:Object(b["a"])("Width","coming-soon"),txt_6:Object(b["a"])("Column Gutter","coming-soon"),txt_7:Object(b["a"])("Shadow","coming-soon"),txt_8:Object(b["a"])("None","coming-soon"),txt_9:Object(b["a"])("Hairline","coming-soon"),txt_10:Object(b["a"])("Small","coming-soon"),txt_11:Object(b["a"])("Medium","coming-soon"),txt_12:Object(b["a"])("Large","coming-soon"),txt_13:Object(b["a"])("X Large","coming-soon"),txt_14:Object(b["a"])("2X Large","coming-soon"),txt_15:Object(b["a"])("Background Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,section_5:!1,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.row,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ColorPicker:K,SliderControl:zt,ImageControl:Ns,BorderSectionControl:di,SpacingSectionControl:Qt,BackgroundControl:Qo},props:{block:Object}},fi=bi,xi=Object(w["a"])(fi,mi,_i,!1,null,null,null),wi=xi.exports,Ci=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("draggable",{attrs:{list:t.block.settings.items,handle:".sp-drag-drop"}},t._l(t.block.settings.items,function(s,o){return e("div",{key:o,staticClass:"sp-mb-3",on:{mouseover:function(s){t.current_index=o},mouseleave:function(s){t.current_index=!1}}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("div",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded-md focus-within:sp-border-neutral-80"},[e("button",{staticClass:"sp-border-r sp-border-neutral-20 sp-rounded-tl-md sp-rounded-bl-md sp-w-42px sp-h-42px sp-inline-block sp-border-r-0 sp-text-lg sp-flex sp-items-center sp-justify-center sp-bg-white sp-text-neutral-80 sp-cursor-move sp-drag-drop"},[e("i",{staticClass:"fas fa-bars"})]),e("span",{staticClass:"sp-rounded-tl-none sp-rounded-bl-none sp-form-input sp-border-none sp-truncate",staticStyle:{width:"160px"},domProps:{textContent:t._s(s.txt)},on:{click:function(s){return t.show_settings(o)}}})]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate",delay:{show:1500,hide:0}},expression:"{content:'Duplicate',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-3",on:{click:function(s){return t.duplicate_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete",delay:{show:1500,hide:0}},expression:"{content:'Delete',delay:{ show: 1500, hide: 0 }}"},{name:"show",rawName:"v-show",value:t.current_index===o,expression:"current_index === index"}],staticClass:"sp-text-neutral-40 hover:sp-text-neutral-80 sp-ml-2",on:{click:function(s){return t.remove_item(o)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"}})])])]),t.showsettings===o?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-mb-4 sp-w-full sp-mt-1"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_13))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.txt,expression:"item.txt"}],staticClass:"sp-form-input sp-w-full",domProps:{value:s.txt},on:{input:function(e){e.target.composing||t.$set(s,"txt",e.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_14))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:s.url,expression:"item.url"}],staticClass:"sp-form-input sp-w-full",domProps:{value:s.url},on:{input:function(e){e.target.composing||t.$set(s,"url",e.target.value)}}})]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:s.openNewWindow,expression:"item.openNewWindow"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(s.openNewWindow)?t._i(s.openNewWindow,null)>-1:s.openNewWindow},on:{change:function(e){var o=s.openNewWindow,i=e.target,a=!!i.checked;if(Array.isArray(o)){var n=null,l=t._i(o,n);i.checked?l<0&&t.$set(s,"openNewWindow",o.concat([n])):l>-1&&t.$set(s,"openNewWindow",o.slice(0,l).concat(o.slice(l+1)))}else t.$set(s,"openNewWindow",a)}}}),e("span",{staticClass:"sp-ml-2 sp-text-sm"},[t._v(t._s(t.txt_15))])])]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:s.noFollow,expression:"item.noFollow"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(s.noFollow)?t._i(s.noFollow,null)>-1:s.noFollow},on:{change:function(e){var o=s.noFollow,i=e.target,a=!!i.checked;if(Array.isArray(o)){var n=null,l=t._i(o,n);i.checked?l<0&&t.$set(s,"noFollow",o.concat([n])):l>-1&&t.$set(s,"noFollow",o.slice(0,l).concat(o.slice(l+1)))}else t.$set(s,"noFollow",a)}}}),e("span",{staticClass:"sp-ml-2 sp-text-sm"},[t._v(t._s(t.txt_16))])])])]):t._e()])}),0),e("button",{staticClass:"sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.add_item}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})]),t._v("\n "+t._s(t.txt_4)+"\n ")])],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings.fontSize,callback:function(s){t.$set(t.block.settings,"fontSize",s)},expression:"block.settings.fontSize"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),e("SliderControl",{attrs:{min:1,max:100,step:1},model:{value:t.block.settings.spaceBetween,callback:function(s){t.$set(t.block.settings,"spaceBetween",s)},expression:"block.settings.spaceBetween"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("AlignControl",{model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1)]):t._e()]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_8)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group sp-flex sp-justify-between sp-items-center"},[e("label",[t._v(t._s(t.txt_9))]),e("div",{staticClass:"sp-flex sp-justify-center sp-items-center"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-text-xs sp-font-semibold sp-leading-none sp-mr-1 sp-rounded-full",class:{"sp-active":"v"==t.block.settings.layout},on:{click:function(s){t.block.settings.layout="v"}}},[t._v(t._s(t.txt_10))]),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-text-xs sp-font-semibold sp-leading-none sp-rounded-full",class:{"sp-active":"h"==t.block.settings.layout},on:{click:function(s){t.block.settings.layout="h"}}},[t._v(t._s(t.txt_11))])])]),e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_12,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_100))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_101))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_106))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_107))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},ki=[],yi={name:"BulletListOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Settings","coming-soon"),txt_4:Object(b["a"])("Add New Item","coming-soon"),txt_5:Object(b["a"])("Font Size","coming-soon"),txt_6:Object(b["a"])("Space Between","coming-soon"),txt_7:Object(b["a"])("Align","coming-soon"),txt_8:Object(b["a"])("Advanced Styles","coming-soon"),txt_9:Object(b["a"])("List Layout","coming-soon"),txt_10:Object(b["a"])("Vertical","coming-soon"),txt_11:Object(b["a"])("Horizontal","coming-soon"),txt_12:Object(b["a"])("Text Color","coming-soon"),txt_13:Object(b["a"])("Text","coming-soon"),txt_14:Object(b["a"])("URL Link","coming-soon"),txt_15:Object(b["a"])("Open In New Window","coming-soon"),txt_16:Object(b["a"])('Add "No Follow"',"coming-soon"),txt_100:Object(b["a"])("Text Shadow","coming-soon"),txt_101:Object(b["a"])("None","coming-soon"),txt_102:Object(b["a"])("Hairline","coming-soon"),txt_103:Object(b["a"])("Small","coming-soon"),txt_104:Object(b["a"])("Medium","coming-soon"),txt_105:Object(b["a"])("Large","coming-soon"),txt_106:Object(b["a"])("X Large","coming-soon"),txt_107:Object(b["a"])("2X Large","coming-soon"),showsettings:!1,current_index:!1,view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.nav,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{show_settings:function(t){this.current_index=t,this.showsettings!==t?this.showsettings=t:this.showsettings=!1},add_item:function(){var t=lodash.last(this.block.settings.items);void 0===t&&(t={},t.icon=""),console.log(t);this.block.settings.items.push({icon:t.icon,txt:"Item "+(Z()(this.block.settings.items.length)+1)})},remove_item:function(t){this.$delete(this.block.settings.items,t)},duplicate_item:function(t){var s=JSON.parse(i()(this.block.settings.items[t]));this.block.settings.items.splice(t+1,0,s)}},components:{draggable:E.a,ColorPicker:K,IconPicker:$t,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,TypographyControl:St,PaddingControl:Et,HelpTip:Zt,editor:ts["a"],SpacingSectionControl:Qt},props:{block:Object}},zi=yi,Oi=Object(w["a"])(zi,Ci,ki,!1,null,null,null),ji=Oi.exports,Mi=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_9))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.scale,expression:"block.settings.scale"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"scale",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"5"}},[t._v("0-5")]),e("option",{attrs:{value:"10"}},[t._v("0-10")])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),"5"==t.block.settings.scale?e("SliderControl",{attrs:{min:.5,max:5,step:.5},model:{value:t.block.settings.rating,callback:function(s){t.$set(t.block.settings,"rating",s)},expression:"block.settings.rating"}}):t._e(),"10"==t.block.settings.scale?e("SliderControl",{attrs:{min:.5,max:10,step:.5},model:{value:t.block.settings.rating,callback:function(s){t.$set(t.block.settings,"rating",s)},expression:"block.settings.rating"}}):t._e()],1),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_11))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.label,expression:"block.settings.label"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.label},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"label",s.target.value)}}})]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("AlignControl",{attrs:{justify:!1,icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_12))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.iconSize,callback:function(s){t.$set(t.block.settings,"iconSize",s)},expression:"block.settings.iconSize"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_13))]),e("SliderControl",{attrs:{min:1,max:100,step:1},model:{value:t.block.settings.spaceBetween,callback:function(s){t.$set(t.block.settings,"spaceBetween",s)},expression:"block.settings.spaceBetween"}})],1)]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_8)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_14,color:t.block.settings.color},model:{value:t.block.settings.color,callback:function(s){t.$set(t.block.settings,"color",s)},expression:"block.settings.color"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_15,color:t.block.settings.textColor},model:{value:t.block.settings.textColor,callback:function(s){t.$set(t.block.settings,"textColor",s)},expression:"block.settings.textColor"}})],1)]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},Si=[],Hi={name:"StarRatingOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{current_index:!1,txt_1:Object(b["a"])("Content","coming-soon"),txt_2:Object(b["a"])("Advanced","coming-soon"),txt_3:Object(b["a"])("Star Rating","coming-soon"),txt_7:Object(b["a"])("Align","coming-soon"),txt_8:Object(b["a"])("Styles","coming-soon"),txt_9:Object(b["a"])("Scale","coming-soon"),txt_10:Object(b["a"])("Rating","coming-soon"),txt_11:Object(b["a"])("Label","coming-soon"),txt_12:Object(b["a"])("Size","coming-soon"),txt_13:Object(b["a"])("Space Between","coming-soon"),txt_14:Object(b["a"])("Star Color","coming-soon"),txt_15:Object(b["a"])("Text Color","coming-soon"),view:1,section_1:!0,section_2:!1,section_3:!1,section_4:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.starrating,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,TypographyControl:St,FontVariantControl:ut,SpacingSectionControl:Qt,HelpTip:Zt},props:{block:Object}},Vi=Hi,Bi=Object(w["a"])(Vi,Mi,Si,!1,null,null,null),Li=Bi.exports,Ti=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_1)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_2))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.name,expression:"block.settings.name"},{name:"validate",rawName:"v-validate",value:"required|alpha_dash",expression:"'required|alpha_dash'"}],staticClass:"sp-form-input sp-w-full",attrs:{name:"anchorName",type:"text","data-vv-as":"Name"},domProps:{value:t.block.settings.name},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"name",s.target.value)}}}),e("span",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("anchorName"),expression:"errors.has('anchorName')"}],staticClass:"help-block has-error sp-text-red"},[t._v(t._s(t.errors.first("anchorName")))])])]):t._e()])},$i=[],Pi={name:"AnchorOptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Anchor","coming-soon"),txt_2:Object(b["a"])("Name","coming-soon"),section_1:!0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.anchor,function(s,e){t.set_default_val(t.block.settings,e,s)})},created:function(){},methods:{},components:{ImageControl:Ns,ColorPicker:K,FontAwesomePicker:us,AlignControl:bt,SliderControl:zt,FontControl:nt,FontVariantControl:ut,HelpTip:Zt},props:{block:Object}},Ni=Pi,Ri=Object(w["a"])(Ni,Ti,$i,!1,null,null,null),Fi=Ri.exports,Ai={name:"settingsentryoptions",mixins:[m["a"]],data:function(){return{showUpsellModal:!1,txt_1:Object(b["a"])("Blocks","coming-soon"),txt_2:Object(b["a"])("Sections","coming-soon"),txt_3:Object(b["a"])("Standard","coming-soon"),txt_4:Object(b["a"])("Advanced","coming-soon"),txt_5:Object(b["a"])("Saved Blocks","coming-soon"),txt_6:Object(b["a"])("Editing:","coming-soon"),txt_7:Object(b["a"])("Search blocks...","coming-soon"),template_api_url:seedprod_remote_api+"templates?page=1",componentKey:0,blocksearch:"",feature:"",page_meta:{show_icon:!1},shared:seedprod_store}},inject:{$validator:"$validator"},computed:{get_display_name:function(){var t=this,s=this.shared.setup_page_meta.current_block.type;return this.shared.setup_page_meta.block_options.forEach(function(e){e.type==t.shared.setup_page_meta.current_block.type&&(s=e.name)}),s},advancedBlocks:function(){var t=this;return this.shared.setup_page_meta.block_options.filter(function(s){return"adv"===s.cat&&s.name.toLowerCase().includes(t.blocksearch.toLowerCase())})},standardBlocks:function(){var t=this;return this.shared.setup_page_meta.block_options.filter(function(s){return"common"===s.cat&&s.name.toLowerCase().includes(t.blocksearch.toLowerCase())})},layoutBlocks:function(){var t=this;return this.shared.setup_page_meta.block_options.filter(function(s){return"layout"===s.cat&&s.name.toLowerCase().includes(t.blocksearch.toLowerCase())})},savedBlocks:function(){var t=this;return this.shared.saved_blocks.filter(function(s){return s.name.toLowerCase().includes(t.blocksearch.toLowerCase())})}},methods:{maybe_show_upsell:function(t){t.is_pro&&(console.log(t),this.feature=t.name+" Block",this.showUpsellModal=!0)},loadSavedBlocks:function(){},goto_sectiontemplates:function(){this.$router.push({name:"sectiontemplates"})},goto_blocks:function(){this.$router.push({name:"setup_block_options"})},render_block:function(t){},add_block_option:function(t){t.id;var s=t.type,e=t.cat,o=t.code;if("layout"==e){var a;a={id:this.uid(),type:"row",cols:[],settings:JSON.parse(i()(this.shared.block_templates.row))}}else{var n={};if("block"==s)return o=JSON.parse(o),o.id=this.uid(),o;"button"==s&&(n=JSON.parse(i()(this.shared.block_templates.button))),"header"==s&&(n=JSON.parse(i()(this.shared.block_templates.header))),"text"==s&&(n=JSON.parse(i()(this.shared.block_templates.text))),"image"==s&&(n=JSON.parse(i()(this.shared.block_templates.image))),"divider"==s&&(n=JSON.parse(i()(this.shared.block_templates.divider))),"spacer"==s&&(n=JSON.parse(i()(this.shared.block_templates.spacer))),"custom-html"==s&&(n=JSON.parse(i()(this.shared.block_templates.customhtml))),"shortcode"==s&&(n=JSON.parse(i()(this.shared.block_templates.shortcode))),"video"==s&&(n=JSON.parse(i()(this.shared.block_templates.video))),"countdown"==s&&(n=JSON.parse(i()(this.shared.block_templates.countdown))),"bullet-list"==s&&(n=JSON.parse(i()(this.shared.block_templates.bulletlist))),"nav"==s&&(n=JSON.parse(i()(this.shared.block_templates.nav))),"form"==s&&(n=JSON.parse(i()(this.shared.block_templates.form))),"optin-form"==s&&(n=JSON.parse(i()(this.shared.block_templates.optinform))),"contact-form"==s&&(n=JSON.parse(i()(this.shared.block_templates.contactform))),"progress-bar"==s&&(n=JSON.parse(i()(this.shared.block_templates.progressbar))),"social-profiles"==s&&(n=JSON.parse(i()(this.shared.block_templates.socialprofiles))),"social-sharing"==s&&(n=JSON.parse(i()(this.shared.block_templates.socialsharing))),"icon"==s&&(n=JSON.parse(i()(this.shared.block_templates.icon))),"feature"==s&&(n=JSON.parse(i()(this.shared.block_templates.feature))),"iconfeature"==s&&(n=JSON.parse(i()(this.shared.block_templates.iconfeature))),"anchor"==s&&(n=JSON.parse(i()(this.shared.block_templates.anchor)));var l=this.uid();a={id:l,elType:"block",type:s,settings:n},this.shared.last_block_added=l}return a},goto_block_option_view:function(){if("setup_block_options"==this.$route.name&&this.$route.params.blockid&&0!=this.$route.params.blockid){var t=this;this.shared.settings.document.sections.forEach(function(s){s.id==t.$route.params.blockid&&(t.shared.setup_page_meta.current_block=s),s.rows&&s.rows.forEach(function(s){s.id==t.$route.params.blockid&&(t.shared.setup_page_meta.current_block=s),s.cols&&s.cols.forEach(function(s){s.id==t.$route.params.blockid&&(t.shared.setup_page_meta.current_block=s),s.blocks&&s.blocks.forEach(function(s){s.id==t.$route.params.blockid&&(t.shared.setup_page_meta.current_block=s,s.type)})})})})}}},components:{draggable:E.a,ButtonOptions:is,HeaderOptions:ms,TextOptions:Cs,BulletListOptions:Ms,ImageOptions:Es,VideoOptions:Zs,CountdownOptions:se,DividerOptions:le,SpacerOptions:ge,SocialProfilesOptions:fe,SocialSharingOptions:ze,CustomHTMLOptions:Ve,ShortcodeOptions:Ue,OptinFormOptions:so,MyFormOptions:lo,ContactFormOptions:vo,GiveawayOptions:wo,IconOptions:jo,FeatureOptions:Lo,IconFeatureOptions:Fo,ProgressBarOptions:Ne,SectionOptions:oi,ColOptions:vi,RowOptions:wi,NavOptions:ji,AnchorOptions:Fi,StarRatingOptions:Li,LiteCTABuilder:Ls["a"],modal:j["a"]},created:function(){!1===this.shared.checked_for_saved_blocks&&(this.loadSavedBlocks(),this.shared.checked_for_saved_blocks=!0)},mounted:function(){this.goto_block_option_view()},watch:{$route:function(t,s){this.goto_block_option_view(),jQuery(".seedprod-sidebar-form").scrollTop(0)}},beforeRouteLeave:function(t,s,e){var o=this;this.$validator.validateAll().then(function(t){if(t)e();else{e(!1);var s="";o.errors.all().forEach(function(t){s=s+t+"\n"}),o.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})}})},beforeRouteUpdate:function(t,s,e){var o=this;this.$validator.validateAll().then(function(t){if(t)e();else{e(!1);var s="";o.errors.all().forEach(function(t){s=s+t+"\n"}),o.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:3e3})}})}},Ei=Ai,Ii=Object(w["a"])(Ei,R,F,!1,null,null,null),Ui=Ii.exports,Di=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{attrs:{id:"sp-global-design"}},[e("div",{staticClass:"sp-flex sp-items-center sp-px-4 sp-block-type-global",attrs:{id:"sp-blocks-editing"}},[e("div",{staticClass:"sp-flex-grow"},[e("span",{staticClass:"sp-pb-1"},[t._v(t._s(t.txt_1))]),t._v("\n "+t._s(t.txt_2)+"\n ")]),e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Blocks",delay:{show:400,hide:0}},expression:"{content:'Blocks',delay:{ show: 400, hide: 0 }}"}],staticClass:"sp-cursor-pointer",on:{click:t.goto_blocks}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"}},[e("circle",{attrs:{cx:"1.68164",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"1.68164",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"1.68164",cy:"18.3306",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"18.3306",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"18.3306",r:"1.5"}})])])]),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_25)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.section_1?e("div",{staticClass:"seedprod-sidebar-form-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_3))]),e("FontControl",{on:{change:function(s){return t.load_header_font(t.shared.settings.document.settings.headerFont,t.shared.settings.document.settings.headerFontVariant)}},model:{value:t.shared.settings.document.settings.headerFont,callback:function(s){t.$set(t.shared.settings.document.settings,"headerFont",s)},expression:"shared.settings.document.settings.headerFont"}}),e("FontVariantControl",{attrs:{myfont:t.shared.settings.document.settings.headerFont},on:{change:function(s){return t.load_header_font(t.shared.settings.document.settings.headerFont,t.shared.settings.document.settings.headerFontVariant)}},model:{value:t.shared.settings.document.settings.headerFontVariant,callback:function(s){t.$set(t.shared.settings.document.settings,"headerFontVariant",s)},expression:"shared.settings.document.settings.headerFontVariant"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("FontControl",{on:{change:function(s){return t.load_font(t.shared.settings.document.settings.textFont,t.shared.settings.document.settings.textFontVariant)}},model:{value:t.shared.settings.document.settings.textFont,callback:function(s){t.$set(t.shared.settings.document.settings,"textFont",s)},expression:"shared.settings.document.settings.textFont"}}),e("FontVariantControl",{attrs:{myfont:t.shared.settings.document.settings.textFont},on:{change:function(s){return t.load_font(t.shared.settings.document.settings.textFont,t.shared.settings.document.settings.textFontVariant)}},model:{value:t.shared.settings.document.settings.textFontVariant,callback:function(s){t.$set(t.shared.settings.document.settings,"textFontVariant",s)},expression:"shared.settings.document.settings.textFontVariant"}})],1),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2.5 sp-px-5 sp-rounded sp-flex sp-items-center sp-mt-1 sp-text-sm sp-font-semibold",on:{click:function(s){t.show_modal_typography=!0}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("g",[e("rect",{attrs:{fill:"none",height:"24",width:"24"}})]),e("g",[e("g",[e("g",[e("path",{attrs:{d:"M2.5,4v3h5v12h3V7h5V4H2.5z M21.5,9h-9v3h3v7h3v-7h3V9z"}})])])])]),t._v(t._s(t.txt_22)+"\n ")])]):t._e()]),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_2},on:{click:function(s){t.section_2=!t.section_2}}},[t._v("\n "+t._s(t.txt_26)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.section_2?e("div",{staticClass:"seedprod-sidebar-form-body"},[e("div",{staticClass:"sp-form-group"},[e("ColorPickerSimple",{attrs:{label:t.txt_17,color:t.shared.settings.document.settings.headerColor},on:{change:function(s){return t.update_head_css()}},model:{value:t.shared.settings.document.settings.headerColor,callback:function(s){t.$set(t.shared.settings.document.settings,"headerColor",s)},expression:"shared.settings.document.settings.headerColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPickerSimple",{attrs:{label:t.txt_18,color:t.shared.settings.document.settings.textColor},on:{change:function(s){return t.update_head_css()}},model:{value:t.shared.settings.document.settings.textColor,callback:function(s){t.$set(t.shared.settings.document.settings,"textColor",s)},expression:"shared.settings.document.settings.textColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPickerSimple",{attrs:{label:t.txt_19,color:t.shared.settings.document.settings.buttonColor},on:{change:function(s){return t.update_head_css()}},model:{value:t.shared.settings.document.settings.buttonColor,callback:function(s){t.$set(t.shared.settings.document.settings,"buttonColor",s)},expression:"shared.settings.document.settings.buttonColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPickerSimple",{attrs:{label:t.txt_20,color:t.shared.settings.document.settings.linkColor},on:{change:function(s){return t.update_head_css()}},model:{value:t.shared.settings.document.settings.linkColor,callback:function(s){t.$set(t.shared.settings.document.settings,"linkColor",s)},expression:"shared.settings.document.settings.linkColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPickerSimple",{attrs:{label:t.txt_21,color:t.shared.settings.document.settings.bgColor},on:{change:function(s){return t.update_head_css()}},model:{value:t.shared.settings.document.settings.bgColor,callback:function(s){t.$set(t.shared.settings.document.settings,"bgColor",s)},expression:"shared.settings.document.settings.bgColor"}})],1),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2.5 sp-px-5 sp-rounded sp-flex sp-items-center sp-mt-6 sp-text-sm sp-font-semibold",on:{click:function(s){t.show_modal_colors=!0}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"}}),e("circle",{attrs:{cx:"6.5",cy:"11.5",r:"1.5"}}),e("circle",{attrs:{cx:"9.5",cy:"7.5",r:"1.5"}}),e("circle",{attrs:{cx:"14.5",cy:"7.5",r:"1.5"}}),e("circle",{attrs:{cx:"17.5",cy:"11.5",r:"1.5"}})]),t._v(t._s(t.txt_23)+"\n ")])]):t._e()]),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_3},on:{click:function(s){t.section_3=!t.section_3}}},[t._v("\n "+t._s(t.txt_27)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_3},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_3},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.section_3?e("div",{staticClass:"seedprod-sidebar-form-body"},[e("BackgroundControl",{attrs:{block:t.shared.settings.document}}),t.shared.settings.document.settings.bgImage?e("div",{staticClass:"sp-form-group"},[e("label",{staticClass:"sp-mb-0"},[t._v(t._s(t.txt_5))]),e("SliderControl",{attrs:{min:0,max:90,step:5},model:{value:t.shared.settings.document.settings.bgDimming,callback:function(s){t.$set(t.shared.settings.document.settings,"bgDimming",s)},expression:"shared.settings.document.settings.bgDimming"}})],1):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v("Content Position")]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.document.settings.contentPosition,expression:"shared.settings.document.settings.contentPosition"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.shared.settings.document.settings,"contentPosition",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:"1"}},[t._v("Top Center")]),e("option",{attrs:{value:"2"}},[t._v("Top Left")]),e("option",{attrs:{value:"3"}},[t._v("Top Right")]),e("option",{attrs:{value:"4"}},[t._v("Center Center")]),e("option",{attrs:{value:"5"}},[t._v("Center Left")]),e("option",{attrs:{value:"6"}},[t._v("Center Right")]),e("option",{attrs:{value:"7"}},[t._v("Bottom Center")]),e("option",{attrs:{value:"8"}},[t._v("Bottom Left")]),e("option",{attrs:{value:"9"}},[t._v("Bottom Right")])])]),e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-form-group sp-pro-only",on:{click:function(s){t.feature="Video Background",t.showUpsellModal=!0}}},[e("label",{staticClass:"sp-text-sm"},[t._v(t._s(t.txt_6))]),e("toggle-button",{attrs:{width:45}})],1),e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-form-group sp-pro-only",on:{click:function(s){t.feature="Slideshow Background",t.showUpsellModal=!0}}},[e("label",{staticClass:"sp-text-sm"},[t._v(t._s(t.txt_33))]),e("toggle-button",{attrs:{width:45}})],1)],1):t._e()]),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_28)+"\n "),e("span",{staticClass:"sp-cursor-pointer"},[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.section_4?e("div",{staticClass:"seedprod-sidebar-form-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("textarea",{directives:[{name:"model",rawName:"v-model.lazy",value:t.shared.settings.document.settings.customCss,expression:"shared.settings.document.settings.customCss",modifiers:{lazy:!0}}],staticClass:"sp-custom-css sp-form-textarea",domProps:{value:t.shared.settings.document.settings.customCss},on:{change:function(s){return t.$set(t.shared.settings.document.settings,"customCss",s.target.value)}}}),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2.5 sp-px-5 sp-rounded sp-flex sp-items-center sp-mt-3 sp-text-sm sp-font-semibold",on:{click:function(s){t.show_modal_customcss=!0}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg","enable-background":"new 0 0 24 24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"}})]),t._v(t._s(t.txt_24)+"\n ")])])]):t._e()]),t.show_modal_customcss?e("modal",{staticClass:"sp-edit-custom-css-modal",on:{close:function(s){t.show_modal_customcss=!1}}},[e("div",{staticClass:"sp-py-6 sp-px-10 sp-relative",attrs:{slot:"body"},slot:"body"},[e("h3",{staticClass:"sp-text-lg sp-font-bold sp-mb-6"},[t._v(t._s(t.txt_11))]),e("textarea",{directives:[{name:"model",rawName:"v-model.lazy",value:t.shared.settings.document.settings.customCss,expression:"shared.settings.document.settings.customCss",modifiers:{lazy:!0}}],staticClass:"sp-custom-css sp-form-textarea",domProps:{value:t.shared.settings.document.settings.customCss},on:{change:function(s){return t.$set(t.shared.settings.document.settings,"customCss",s.target.value)}}}),e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2.5 sp-px-5 sp-rounded sp-flex sp-items-center sp-mt-3 sp-text-sm sp-font-semibold",on:{click:function(s){t.show_modal_customcss=!1}}},[t._v(t._s(t.txt_12))]),e("button",{staticClass:"sp-text-neutral-40 sp-absolute sp-top-0 sp-right-0 sp-mt-2 sp-mr-2",on:{click:function(s){t.show_modal_customcss=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.show_modal_colors?e("modal",{on:{close:function(s){t.show_modal_colors=!1}}},[e("div",{staticClass:"sp-flex",attrs:{slot:"body"},slot:"body"},[e("div",{staticClass:"sp-modal-left sp-bg-neutral-5 sp-py-6 sp-px-10"},[e("h3",{staticClass:"sp-text-lg sp-font-bold sp-mb-8"},[t._v(t._s(t.txt_13)+" "),e("div",{staticClass:"sp-inline-block sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-ml-2"},[t._v("PRO")])]),e("ul",[e("li",{staticClass:"sp-cursor-pointer sp-font-semibold sp-border-b sp-border-neutral-10 sp-py-4 sp-leading-none",class:{"sp-text-primary":""==t.color_theme_cat},on:{click:function(s){t.color_theme_cat=""}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(t.txt_29)+"\n "),""==t.color_theme_cat?e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]):t._e()])])])]),e("div",{staticClass:"sp-modal-right sp-bg-neutral-10 sp-flex-grow sp-py-5 sp-px-16 sp-relative sp-pro-only"},[e("div",{staticClass:"sp-flex sp-justify-center sp-items-center sp-relative sp-mb-10"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-7"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.color_theme_search,expression:"color_theme_search"}],staticClass:"sp-form-input sp-w-full sp-pl-8",attrs:{placeholder:t.txt_15},domProps:{value:t.color_theme_search},on:{input:function(s){s.target.composing||(t.color_theme_search=s.target.value)}}})]),e("div",{staticClass:"sp-flex sp-flex-wrap sp--mx-4"},t._l(t.colorThemes,function(s,o){return e("div",{key:o,staticClass:"sp-mb-10 sp-w-1/3 sp-px-4 sp-text-center sp-cursor-pointer",on:{click:function(s){return t.set_color_theme(o)}}},[e("div",{staticClass:"sp-bg-white sp-rounded-6px sp-p-2 sp-border-2 sp-border-white hover:sp-border-primary sp-relative",staticStyle:{"max-width":"220px"},on:{mouseover:function(s){t.color_theme_hover=o},mouseleave:function(s){t.color_theme_hover=!1}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-center"},[e("span",{staticClass:"sp-rounded sp-border sp-border-neutral-20 sp-color-38-72",style:{"background-color":s.colors[0]}}),e("span",{staticClass:"sp-rounded sp-border sp-border-neutral-20 sp-color-38-72",style:{"background-color":s.colors[1]}}),e("span",{staticClass:"sp-rounded sp-border sp-border-neutral-20 sp-color-38-72",style:{"background-color":s.colors[2]}}),e("span",{staticClass:"sp-rounded sp-border sp-border-neutral-20 sp-color-38-72",style:{"background-color":s.colors[3]}}),e("span",{staticClass:"sp-rounded sp-border sp-border-neutral-20 sp-color-38-72",style:{"background-color":s.colors[4]}})]),e("div",{directives:[{name:"show",rawName:"v-show",value:t.color_theme_hover===o,expression:"color_theme_hover === i"}],staticClass:"sp-bg-primary sp-p-1 sp-absolute sp-bottom-0 sp-right-0 sp-rounded-tl-md sp-text-white"},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])])])])}),0),e("button",{staticClass:"sp-text-neutral-40 sp-absolute sp-top-0 sp-right-0 sp-mt-2 sp-mr-2",on:{click:function(s){t.show_modal_colors=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])]),e("div",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.show_modal_typography?e("modal",{on:{close:function(s){t.show_modal_typography=!1}}},[e("div",{staticClass:"sp-flex",attrs:{slot:"body"},slot:"body"},[e("div",{staticClass:"sp-modal-left sp-bg-neutral-5 sp-py-6 sp-px-10"},[e("h3",{staticClass:"sp-text-lg sp-font-bold sp-mb-8"},[t._v(t._s(t.txt_14)+" "),e("div",{staticClass:"sp-inline-block sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-ml-2"},[t._v("PRO")])]),e("ul",[e("li",{staticClass:"sp-cursor-pointer sp-font-semibold sp-border-b sp-border-neutral-10 sp-py-4 sp-leading-none",class:{"sp-text-primary":""==t.font_pairing_cat},on:{click:function(s){t.font_pairing_cat=""}}},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(t.txt_30)+"\n "),""==t.font_pairing_cat?e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]):t._e()])])])]),e("div",{staticClass:"sp-modal-right sp-bg-neutral-10 sp-flex-grow sp-py-5 sp-px-16 sp-relative sp-pro-only"},[e("div",{staticClass:"sp-flex sp-justify-center sp-items-center sp-relative sp-mb-10"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-7"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.font_pairing_search,expression:"font_pairing_search"}],staticClass:"sp-form-input sp-w-full sp-pl-8",attrs:{placeholder:t.txt_16},domProps:{value:t.font_pairing_search},on:{input:function(s){s.target.composing||(t.font_pairing_search=s.target.value)}}})]),e("div",{staticClass:"sp-flex sp-flex-wrap sp--mx-4"},t._l(t.fontPairings,function(s,o){return e("div",{key:o,staticClass:"sp-mb-10 sp-w-1/2 sp-px-4 sp-text-center sp-cursor-pointer",on:{click:function(s){return t.set_pairing(o)}}},[e("div",{staticClass:"sp-bg-white sp-rounded-6px sp-border-2 sp-border-white hover:sp-border-primary sp-relative",on:{mouseover:function(s){t.font_pairing_hover=o},mouseleave:function(s){t.font_pairing_hover=!1}}},[e("img",{staticClass:"sp-border-none",attrs:{src:t.shared.plugin_path+"public/img/font-previews/"+s.id+".png",alt:"Font Paring"+s.id}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.font_pairing_hover===o,expression:"font_pairing_hover === i"}],staticClass:"sp-bg-primary sp-p-1 sp-absolute sp-bottom-0 sp-right-0 sp-rounded-tl-md sp-text-white"},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])])]),e("span",{staticClass:"sp-inline-block sp-pt-1 sp-text-xs sp-font-semibold sp-text-neutral-60"},[t._v(t._s(s.name))])])}),0),e("button",{staticClass:"sp-text-neutral-40 sp-absolute sp-top-0 sp-right-0 sp-mt-2 sp-mr-2",on:{click:function(s){t.show_modal_typography=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])]),e("div",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"global-design",feature:t.feature}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},Wi=[],Gi=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-relative"},[e("div",{ref:"colorpicker",staticClass:"simple-color-picker sp-flex sp-items-center sp-relative",on:{mouseover:function(s){t.show_edit=!0},mouseleave:function(s){t.show_edit=!1}}},[e("span",{staticClass:"simple-color-picker-container sp-rounded-full sp-bg-white sp-flex sp-items-center sp-mr-4"},[e("span",{staticClass:"sp-bg-cv-transparent"},[e("span",{staticClass:"current-color sp-h-5 sp-w-5 sp-cursor-pointer",style:"background-color: "+t.colorValue,on:{click:function(s){return t.togglePicker()}}})])]),e("span",{staticClass:"sp-cp-label",on:{click:function(s){return t.togglePicker()}}},[t._v(t._s(t.label))]),e("div",{staticClass:"sp-flex-grow sp-flex sp-justify-end sp-pr-2"},[t.show_edit&&!t.displayPicker?e("span",{staticClass:"sp-w-6 sp-h-6 sp-bg-neutral-10 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-text-neutral-60 sp-cursor-pointer",on:{click:function(s){return t.togglePicker()}}},[e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]):t._e(),t.displayPicker?e("span",{staticClass:"sp-w-6 sp-h-6 sp-bg-neutral-60 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-text-white sp-cursor-pointer",on:{click:function(s){return t.togglePicker()}}},[e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])]):t._e()])]),t.displayPicker?e("div",{staticClass:"color-picker-float"},[e("chrome-picker",{attrs:{value:t.colors},on:{input:t.updateFromPicker}})],1):t._e()])},Zi=[],Ji={name:"ColorPickerSimple",data:function(){return{show_edit:!1,colors:{hex:"#000000"},colorValue:"",displayPicker:!1}},mounted:function(){this.setColor(this.color||"")},methods:{setColor:function(t){this.updateColors(t),this.colorValue=t},updateColors:function(t){if("#"==t.slice(0,1))this.colors={hex:t};else if("rgba"==t.slice(0,4)){var s=t.replace(/^rgba?\(|\s+|\)$/g,"").split(","),e="#"+((1<<24)+(Z()(s[0])<<16)+(Z()(s[1])<<8)+Z()(s[2])).toString(16).slice(1);this.colors={hex:e,a:s[3]}}},showPicker:function(){document.addEventListener("click",this.documentClick),this.displayPicker=!0},hidePicker:function(){document.removeEventListener("click",this.documentClick),this.displayPicker=!1},togglePicker:function(){this.displayPicker?this.hidePicker():this.showPicker()},updateFromInput:function(){this.updateColors(this.colorValue)},updateFromPicker:function(t){this.colors=t,1==t.rgba.a?this.colorValue=t.hex:this.colorValue="rgba("+t.rgba.r+", "+t.rgba.g+", "+t.rgba.b+", "+t.rgba.a+")"},documentClick:function(t){var s=this.$refs.colorpicker,e=t.target;s===e||s.contains(e)||!1!==e.classList.toString().includes("vc-")||"vc-chrome-toggle-icon"===e.parentElement.classList.toString()||this.hidePicker()}},watch:{colorValue:function(t){this.updateColors(t),this.$emit("input",t),this.$emit("change",t)},color:function(t,s){this.setColor(t)}},props:["color","label"],components:{"chrome-picker":J["Chrome"]}},qi=Ji,Yi=Object(w["a"])(qi,Gi,Zi,!1,null,null,null),Xi=Yi.exports,Ki={name:"setupdesign",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Editing:","coming-soon"),txt_2:Object(b["a"])("Global Settings","coming-soon"),txt_3:Object(b["a"])("Header Font","coming-soon"),txt_4:Object(b["a"])("Body Text Font","coming-soon"),txt_5:Object(b["a"])("Dim Background","coming-soon"),txt_6:Object(b["a"])("Video Background","coming-soon"),txt_7:Object(b["a"])("YouTube URL","coming-soon"),txt_8:Object(b["a"])("The video background will not be displayed on mobile devices or in the editor preview.","coming-soon"),txt_9:Object(b["a"])("Play on auto-loop","coming-soon"),txt_10:Object(b["a"])("Enter your custom css below","coming-soon"),txt_11:Object(b["a"])("Edit Custom CSS","coming-soon"),txt_12:Object(b["a"])("Close","coming-soon"),txt_13:Object(b["a"])("Color Palettes","coming-soon"),txt_14:Object(b["a"])("Font Themes Library","coming-soon"),txt_15:Object(b["a"])("Search colors...","coming-soon"),txt_16:Object(b["a"])("Search fonts...","coming-soon"),txt_17:Object(b["a"])("Headers","coming-soon"),txt_18:Object(b["a"])("Text","coming-soon"),txt_19:Object(b["a"])("Buttons","coming-soon"),txt_20:Object(b["a"])("Links","coming-soon"),txt_21:Object(b["a"])("Background","coming-soon"),txt_22:Object(b["a"])("Font Themes","coming-soon"),txt_23:Object(b["a"])("Color Palettes","coming-soon"),txt_24:Object(b["a"])("Expand Editor","coming-soon"),txt_25:Object(b["a"])("Fonts","coming-soon"),txt_26:Object(b["a"])("Colors","coming-soon"),txt_27:Object(b["a"])("Background","coming-soon"),txt_28:Object(b["a"])("Custom CSS","coming-soon"),txt_29:Object(b["a"])("All Palettes","coming-soon"),txt_30:Object(b["a"])("All Themes","coming-soon"),txt_31:Object(b["a"])("Serif","coming-soon"),txt_32:Object(b["a"])("Sans Serif","coming-soon"),txt_33:Object(b["a"])("Background Slideshow","coming-soon"),txt_34:Object(b["a"])("Slideshow Images","coming-soon"),txt_35:Object(b["a"])("Add New Slide","coming-soon"),txt_36:Object(b["a"])("The background slideshow will not be shown in the editor preview. The slides will only be displayed in the live preview.","coming-soon"),color_theme_hover:!1,color_theme_cat:"",color_theme_search:"",font_pairing_hover:!1,font_pairing_cat:"",font_pairing_search:"",show_modal_customcss:!1,show_modal_typography:!1,show_modal_colors:!1,showUpsellModal:!1,section_1:!1,section_2:!1,section_3:!1,section_4:!1,feature:"",shared:seedprod_store,font_pairings:[{id:1,name:"Roboto Slab / Open Sans",cat:"serif",pairing:{headerFont:"Roboto Slab",headerWeight:"500",bodyFont:"Open Sans",bodyWeight:"400"}},{id:2,name:"Roboto Condensed / Vollkorn",cat:"serif",pairing:{headerFont:"Roboto Condensed",headerWeight:"700",bodyFont:"Vollkorn",bodyWeight:"400"}},{id:3,name:"PT Sans Narrow / PT Sans",cat:"serif",pairing:{headerFont:"PT Sans Narrow",headerWeight:"400",bodyFont:"PT Sans",bodyWeight:"400"}},{id:4,name:"Playfair Display / Lora",cat:"serif",pairing:{headerFont:"Playfair Display",headerWeight:"700",bodyFont:"Lora",bodyWeight:"400"}},{id:5,name:"Cinzel Decorative / PT Serif",cat:"serif",pairing:{headerFont:"Cinzel Decorative",headerWeight:"700",bodyFont:"PT Serif",bodyWeight:"400"}},{id:6,name:"Roboto Slab / Neuton",cat:"serif",pairing:{headerFont:"Roboto Slab",headerWeight:"400",bodyFont:"Neuton",bodyWeight:"400"}},{id:7,name:"Oswald / Arvo",cat:"serif",pairing:{headerFont:"Oswald",headerWeight:"500",bodyFont:"Arvo",bodyWeight:"400"}},{id:8,name:"Merriweather / Roboto",cat:"serif",pairing:{headerFont:"Merriweather",headerWeight:"400",bodyFont:"Roboto",bodyWeight:"400"}},{id:9,name:"Old Standard TT / Merriweather",cat:"serif",pairing:{headerFont:"Old Standard TT",headerWeight:"400",bodyFont:"Merriweather",bodyWeight:"400"}},{id:10,name:"Fjalla One / PT Serif",cat:"serif",pairing:{headerFont:"Fjalla One",headerWeight:"400",bodyFont:"PT Serif",bodyWeight:"400"}},{id:11,name:"Work Sans / Crimson Text",cat:"serif",pairing:{headerFont:"Work Sans",headerWeight:"400",bodyFont:"Crimson Text",bodyWeight:"400"}},{id:12,name:"Source Sans Pro / Open Sans",cat:"serif",pairing:{headerFont:"Source Sans Pro",headerWeight:"700",bodyFont:"Open Sans",bodyWeight:"400"}},{id:13,name:"Alegreya / Alegreya Sans",cat:"serif",pairing:{headerFont:"Alegreya",headerWeight:"700",bodyFont:"Alegreya Sans",bodyWeight:"400"}},{id:14,name:"Vollkorn / Roboto",cat:"serif",pairing:{headerFont:"Vollkorn",headerWeight:"400italic",bodyFont:"Roboto",bodyWeight:"400"}},{id:15,name:"Playfair Display / Libre Baskerville",cat:"serif",pairing:{headerFont:"Playfair Display",headerWeight:"400",bodyFont:"Libre Baskerville",bodyWeight:"400"}},{id:16,name:"Fjalla One / Lora",cat:"serif",pairing:{headerFont:"Fjalla One",headerWeight:"400",bodyFont:"Lora",bodyWeight:"400"}},{id:17,name:"Squada One / Libre Baskerville",cat:"serif",pairing:{headerFont:"Squada One",headerWeight:"400",bodyFont:"Libre Baskerville",bodyWeight:"400"}},{id:18,name:"Poppins / Roboto",cat:"serif",pairing:{headerFont:"Poppins",headerWeight:"400",bodyFont:"Roboto",bodyWeight:"400"}}],color_themes:[{name:"1",cat:"cat 1",colors:["#222222","#222222","#0074e4","#0074e4","#ffffff"]},{name:"Default Dark",cat:"cat 1",colors:["#ffffff","#ffffff","#0074e4","#0074e4","#222222"]},{name:"3",cat:"cat 1",colors:["#ffffff","#ffffff","#f64c72","#f64c72","#2f2fa2"]},{name:"4",cat:"cat 1",colors:["#323b3c","#516163","#cce8e5","#323b3c","#ffffff"]},{name:"5",cat:"cat 1",colors:["#2B292B","#403C34","#AC8435","#AC8435","#F7F2E9"]},{name:"6",cat:"cat 1",colors:["#CC4425","#3E4147","#CC4425","#CC4425","#EAECEF"]},{name:"7",cat:"cat 1",colors:["#111111","#333333","#F8CA00","#F8CA00","#FFFFFF"]},{name:"8",cat:"cat 1",colors:["#3FA291","#42393B","#D56E20","#D56E20","#FFFFFF"]},{name:"9",cat:"cat 1",colors:["#340410","#340410","#E70D3D","#E70D3D","#FCEAEE"]},{name:"10",cat:"cat 1",colors:["#ffffff","#edf5e1","#053868","#053868","#5cdb95"]},{name:"11",cat:"cat 1",colors:["#66fcf1","#c5c6c7","#45a29e","#45a29e","#0b0c10"]},{name:"12",cat:"cat 1",colors:["#2c363f","#2c363f","#e75a7c","#BBC7A4","#f2f5ea"]},{name:"13",cat:"cat 1",colors:["#222E50","#222E50","#E9D985","#439A86","#BCD8C1"]},{name:"14",cat:"cat 1",colors:["#440381","#440381","#EC368D","#51E5FF","#FFD6C0"]},{name:"15",cat:"cat 1",colors:["#742A2A","#742A2A","#E53E3E","#E53E3E","#FFF5F5"]},{name:"16",cat:"cat 1",colors:["#7B341E","#7B341E","#DD6B20","#DD6B20","#FFFAF0"]},{name:"17",cat:"cat 1",colors:["#744210","#744210","#D69E2E","#D69E2E","#FFFFF0"]},{name:"18",cat:"cat 1",colors:["#22543D","#22543D","#38A169","#38A169","#F0FFF4"]},{name:"19",cat:"cat 1",colors:["#234E52","#234E52","#319795","#319795","#E6FFFA"]},{name:"20",cat:"cat 1",colors:["#2A4365","#2A4365","#3182CE","#3182CE","#EBF8FF"]},{name:"21",cat:"cat 1",colors:["#3C366B","#3C366B","#5A67D8","#5A67D8","#EBF4FF"]},{name:"22",cat:"cat 1",colors:["#44337A","#44337A","#805AD5","#805AD5","#FAF5FF"]},{name:"23",cat:"cat 1",colors:["#702459","#702459","#D53F8C","#D53F8C","#FFF5F7"]},{name:"24",cat:"cat 1",colors:["#1A202C","#1A202C","#718096","#718096","#F7FAFC"]}]}},methods:{set_pairing:function(t){this.feature="Font Themes Library",this.showUpsellModal=!0,this.show_modal_typography=!1},set_color_theme:function(t){this.feature="Color Palettes Library",this.showUpsellModal=!0,this.show_modal_colors=!1},goto_blocks:function(){this.$router.push({name:"setup_block_options"})},load_header_font:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";this.load_font(t,s),this.update_head_css()}},watch:{"shared.settings.document.settings.customCss":function(t,s){this.update_head_css()}},computed:{colorThemes:function(){var t=this;return this.color_themes.filter(function(s){return""!=t.color_theme_cat?s.cat==t.color_theme_cat&&s.name.toLowerCase().includes(t.color_theme_search.toLowerCase()):s.name.toLowerCase().includes(t.color_theme_search.toLowerCase())})},fontPairings:function(){var t=this;return this.font_pairings.filter(function(s){return""!=t.font_pairing_cat?s.cat==t.font_pairing_cat&&s.name.toLowerCase().includes(t.font_pairing_search.toLowerCase()):s.name.toLowerCase().includes(t.font_pairing_search.toLowerCase())})}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.document,function(s,e){t.set_default_val(t.shared.settings.document.settings,e,s)})},components:{ColorPickerSimple:Xi,ColorPicker:K,FontAwesomePicker:us,HelpTip:Zt,FontControl:nt,FontVariantControl:ut,ImageControl:Ns,BulletListOptions:Ms,Modal:j["a"],SliderControl:zt,BackgroundControl:Qo,draggable:E.a,LiteCTABuilder:Ls["a"]}},Qi=Ki,ta=Object(w["a"])(Qi,Di,Wi,!1,null,null,null),sa=ta.exports,ea=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"list-group",attrs:{id:"seedprod-settings"}},[e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_general",params:{id:t.shared.lpage.id}},tag:"button",exact:""}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6 sp-mr-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})]),t._v("\n "+t._s(t.txt_6)+"\n ")]),"setup_settings_general"===t.$route.name?e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}})]):t._e()]),"cs"==t.shared.page_type||"mm"==t.shared.page_type?e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_access",params:{id:t.shared.lpage.id}},tag:"button",exact:""}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6 sp-mr-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("g",{attrs:{fill:"none"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",opacity:".87"}})]),e("path",{attrs:{d:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"}})]),t._v("\n "+t._s(t.txt_1)+"\n ")]),"setup_settings_access"===t.$route.name?e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}})]):t._e()]):t._e(),e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_seo",params:{id:t.shared.lpage.id}},tag:"button",exact:""}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6 sp-mr-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")]),"setup_settings_seo"===t.$route.name?e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}})]):t._e()]),!0!==t.shared.settings.no_conflict_mode?e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_analytics",params:{id:t.shared.lpage.id}},tag:"button",exact:""}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6 sp-mr-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_3)+"\n ")]),"setup_settings_analytics"===t.$route.name?e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}})]):t._e()]):t._e(),e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_scripts",params:{id:t.shared.lpage.id}},tag:"button",exact:""}},[e("div",{staticClass:"sp-flex sp-items-center"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6 sp-mr-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"}})]),t._v("\n "+t._s(t.txt_4)+"\n ")]),"setup_settings_scripts"===t.$route.name?e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}})]):t._e()]),(t.shared.page_type,t._e()),(t.shared.page_type,t._e())],1)])},oa=[],ia={name:"setupsettings",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Access Control","coming-soon"),txt_2:Object(b["a"])("SEO","coming-soon"),txt_3:Object(b["a"])("Analytics","coming-soon"),txt_4:Object(b["a"])("Scripts","coming-soon"),txt_5:Object(b["a"])("Custom Domain","coming-soon"),txt_6:Object(b["a"])("General","coming-soon"),shared:seedprod_store}}},aa=ia,na=Object(w["a"])(aa,ea,oa,!1,null,null,null),la=na.exports,ra=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("h1",[t._v(t._s(t.txt_1))]),t.shared.settings.no_conflict_mode?e("div",[e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v("SEO Title:")]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.seo_title,expression:"shared.settings.seo_title"}],staticClass:"sp-form-input sp-w-full sp-flex-1",attrs:{type:"text"},domProps:{value:t.shared.settings.seo_title},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"seo_title",s.target.value)}}})]),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v("SEO Description:")]),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.seo_description,expression:"shared.settings.seo_description"}],staticClass:"sp-form-textarea ",staticStyle:{width:"400px",height:"200px"},domProps:{value:t.shared.settings.seo_description},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"seo_description",s.target.value)}}})]),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v("Favicon:")]),e("ImageControl",{model:{value:t.shared.settings.favicon,callback:function(s){t.$set(t.shared.settings,"favicon",s)},expression:"shared.settings.favicon"}})],1),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v("Social Media Thumbnail:")]),e("ImageControl",{model:{value:t.shared.settings.social_thumbnail,callback:function(s){t.$set(t.shared.settings,"social_thumbnail",s)},expression:"shared.settings.social_thumbnail"}})],1),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v("Enable No Index:")]),e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36},model:{value:t.shared.settings.no_index,callback:function(s){t.$set(t.shared.settings,"no_index",s)},expression:"shared.settings.no_index"}})],1)]):e("div",[t.has_an_seo_plugin_active?e("div",t._l(this.shared.seo_plugins_installed,function(s,o){return e("div",{key:o},["yoast"==o&&1===s?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_2))]),t._v("\n "+t._s(t.txt_3)+"\n "),e("br"),"lp"==t.shared.page_type?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"post.php?post="+t.shared.lpage.ID+"&action=edit",target:"_blank"}},[t._v(t._s(t.txt_4))]):e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=wpseo_titles",target:"_blank"}},[t._v(t._s(t.txt_4))])]):"rank-math"==o&&1===s?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_2))]),t._v(" Rank Math\n "),e("br"),"lp"==t.shared.page_type?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"post.php?post="+t.shared.lpage.ID+"&action=edit",target:"_blank"}},[t._v(t._s(t.txt_4))]):e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=rank-math-options-titles",target:"_blank"}},[t._v(t._s(t.txt_4))])]):"seo-framework"==o&&1===s?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_2))]),t._v(" SEO Framework\n "),e("br"),"lp"==t.shared.page_type?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"post.php?post="+t.shared.lpage.ID+"&action=edit",target:"_blank"}},[t._v(t._s(t.txt_4))]):e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=theseoframework-settings",target:"_blank"}},[t._v(t._s(t.txt_4))])]):"all-in-one"==o&&1===s?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_2))]),t._v(" All In One SEO\n "),e("br"),"lp"==t.shared.page_type?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"post.php?post="+t.shared.lpage.ID+"&action=edit",target:"_blank"}},[t._v(t._s(t.txt_4))]):e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=all-in-one-seo-pack%2Fall-in-onep_class.php",target:"_blank"}},[t._v(t._s(t.txt_4))])]):t._e()])}),0):e("div",[e("div",[0===t.shared.plugins_installed["all-in-one-pro"].status?e("div",[1!==t.plugins["all-in-one"].status_code?e("div",{staticClass:"sp-text-center sp-bg-primary-10 sp-text-primary sp-border sp-border-primary sp-p-4 sp-font-sans"},[e("span",{staticClass:"sp-text-base sp-font-semibold sp-font-sans"},[t._v(t._s(t.txt_11))]),e("br"),0===t.plugins["all-in-one"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_seo_install_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("all-in-one")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_33)+" All In One SEO")])]):t._e(),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e(),2===t.plugins["all-in-one"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_seo_activate_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("all-in-one")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_44)+" All In One SEO")]),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]):t._e()]):t._e(),1===t.plugins["all-in-one"].status_code||1===t.shared.plugins_installed["all-in-one-pro"].status?e("div",["lp"==t.shared.page_type?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"post.php?post="+t.shared.lpage.ID+"&action=edit",target:"_blank"}},[t._v(t._s(t.txt_4))]):e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=all-in-one-seo-pack%2Fall-in-onep_class.php",target:"_blank"}},[t._v(t._s(t.txt_4))])]):t._e()]):t._e()])])])])])},ca=[],pa={name:"settingseo",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("SEO","coming-soon"),txt_2:Object(b["a"])("Your SEO settings are being managed by:","coming-soon"),txt_3:Object(b["a"])("Yoast SEO","coming-soon"),txt_4:Object(b["a"])("Edit this page's SEO Settings","coming-soon"),txt_5:Object(b["a"])("Install SEO plugin:","coming-soon"),txt_6:Object(b["a"])("Install All In One SEO","coming-soon"),txt_7:Object(b["a"])("Activate All in One SEO","coming-soon"),txt_11:Object(b["a"])("Install SEO plugin:","coming-soon"),txt_33:Object(b["a"])("Install","coming-soon"),txt_44:Object(b["a"])("Activate","coming-soon"),seedprod_seo_install_link:seedprod_seo_install_link,seedprod_seo_activate_link:seedprod_seo_activate_link,showModal:!1,shared:seedprod_store,has_an_seo_plugin_active:!1,doing_install:!1,plugins:{"all-in-one":{slug_base:"all-in-one-seo-pack",slug:"all-in-one-seo-pack/all_in_one_seo_pack.php",url:"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip",status:"",status_code:"",is_pro:!1}}}},components:{ImageControl:Ns},mounted:function(){var t=this;lodash.each(this.shared.plugins_installed,function(s,e){void 0!==t.plugins[e]&&(t.plugins[e].status=t.shared.plugins_installed[e].label,t.plugins[e].status_code=t.shared.plugins_installed[e].status)}),lodash.each(this.shared.seo_plugins_installed,function(s,e){1===s&&(t.has_an_seo_plugin_active=!0)})},methods:{plugin_action:function(t){var s=this,e="",o="",i=t;if(this.doing_install=!0,0===this.plugins[t].status_code){e=seedprod_get_install_addon_url;var a=d.a.stringify({plugin:this.plugins[t].url,type:"plugin"});o="install"}if(1===this.plugins[t].status_code){e=seedprod_deactivate_addon_url;a=d.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="deactivate"}if(2===this.plugins[t].status_code){e=seedprod_activate_addon_url;a=d.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="activate"}this.axios.post(e,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(e){if(s.shared.doing_ajax=!1,"install"==o)if(e.data.error){s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.error,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3});var a=d.a.stringify({plugin:s.plugins[i].slug_base});s.axios.post(seedprod_plugin_nonce_url,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data&&window.open("update.php?action=install-plugin&plugin="+s.plugins[i].slug_base+"&_wpnonce="+t.data,"_blank")})}else s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Plugin Installed, click Activate",toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.plugin_action("all-in-one"),s.$forceUpdate();"activate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Active",s.plugins[t].status_code=1,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})),"deactivate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3}))}).catch(function(t){s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})}}},da=pa,ua=Object(w["a"])(da,ra,ca,!1,null,null,null),ga=ua.exports,ha=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("h1",[t._v(t._s(t.txt_1))]),t.has_an_analytics_plugin_active?e("div",t._l(this.shared.analytics_plugins_installed,function(s,o){return e("div",{key:o},["monster-insights"==o&&1===s?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_2))]),t._v(" MonsterInsights\n "),e("br"),e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=monsterinsights_settings#/",target:"_blank"}},[t._v(t._s(t.txt_3))])]):"exactmetrics"==o&&1===s?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_4))]),t._v(" Rank Math\n "),e("br"),e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=exactmetrics_reports#/",target:"_blank"}},[t._v(t._s(t.txt_3))])]):t._e()])}),0):e("div",[e("div",[0===t.shared.plugins_installed["monsterinsights-pro"].status?e("div",[1!==t.plugins["monsterinsights"].status_code?e("div",{staticClass:"sp-text-center sp-bg-primary-10 sp-text-primary sp-border sp-border-primary sp-p-4 sp-font-sans"},[e("span",{staticClass:"sp-text-base sp-font-semibold sp-font-sans"},[t._v(t._s(t.txt_11))]),e("br"),0===t.plugins["monsterinsights"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_seo_install_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("monsterinsights")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_33)+" MonsterInsights")])]):t._e(),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e(),2===t.plugins["monsterinsights"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_analytics_activate_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("monsterinsights")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_44)+" MonsterInsights")]),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]):t._e()]):t._e(),1===t.plugins["monsterinsights"].status_code||1===t.shared.plugins_installed["monsterinsights-pro"].status?e("div",[e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=monsterinsights_settings#/",target:"_blank"}},[t._v(t._s(t.txt_3))])]):1===t.plugins["exactmetrics"].status_code||1===t.shared.plugins_installed["exactmetrics-pro"].status?e("div",[e("span",{staticClass:"sp-text-base sp-font-semibold"},[t._v(t._s(t.txt_4))]),t._v(" Exact Metrics\n "),e("br"),e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block",attrs:{href:"admin.php?page=exactmetrics_reports#/",target:"_blank"}},[t._v(t._s(t.txt_3))])]):t._e()]):t._e()])])])])},va=[],ma={name:"settingsanalytics",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Analytics","coming-soon"),txt_2:Object(b["a"])("Your Analytics settings are being managed by:","coming-soon"),txt_3:Object(b["a"])("Edit Analytics Settings","coming-soon"),txt_4:Object(b["a"])("Your SEO settings are being managed by:","coming-soon"),txt_5:Object(b["a"])("Install Google Analytics plugin:","coming-soon"),txt_6:Object(b["a"])("Install MonsterInsights","coming-soon"),txt_7:Object(b["a"])("Activate MonsterInsights","coming-soon"),txt_11:Object(b["a"])("Install Analytics plugin:","coming-soon"),txt_33:Object(b["a"])("Install","coming-soon"),txt_44:Object(b["a"])("Activate","coming-soon"),seedprod_analytics_install_link:seedprod_analytics_install_link,seedprod_analytics_activate_link:seedprod_analytics_activate_link,showModal:!1,shared:seedprod_store,has_an_analytics_plugin_active:!1,doing_install:!1,plugins:{monsterinsights:{slug_base:"google-analytics-for-wordpress",slug:"google-analytics-for-wordpress/googleanalytics.php",url:"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip",status:"",status_code:"",is_pro:!1},exactmetrics:{slug_base:"google-analytics-dashboard-for-wp",slug:"google-analytics-dashboard-for-wp/gadwp.php",url:"https://downloads.wordpress.org/plugin/google-analytics-dashboard-for-wp.zip",status:"",status_code:"",is_pro:!1}}}},components:{ImageControl:Ns},mounted:function(){var t=this;lodash.each(this.shared.plugins_installed,function(s,e){void 0!==t.plugins[e]&&(t.plugins[e].status=t.shared.plugins_installed[e].label,t.plugins[e].status_code=t.shared.plugins_installed[e].status)}),lodash.each(this.shared.analytics_plugins_installed,function(s,e){1===s&&(t.has_an_analytics_plugin_active=!0)})},methods:{plugin_action:function(t){var s=this,e="",o="",i=t;if(this.doing_install=!0,0===this.plugins[t].status_code){e=seedprod_get_install_addon_url;var a=d.a.stringify({plugin:this.plugins[t].url,type:"plugin"});o="install"}if(1===this.plugins[t].status_code){e=seedprod_deactivate_addon_url;a=d.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="deactivate"}if(2===this.plugins[t].status_code){e=seedprod_activate_addon_url;a=d.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="activate"}this.axios.post(e,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(e){if(s.shared.doing_ajax=!1,"install"==o)if(e.data.error){s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.error,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3});var a=d.a.stringify({plugin:s.plugins[i].slug_base});s.axios.post(seedprod_plugin_nonce_url,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data&&window.open("update.php?action=install-plugin&plugin="+s.plugins[i].slug_base+"&_wpnonce="+t.data,"_blank")})}else s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Plugin Installed, click Activate",toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.plugin_action("monsterinsights"),s.$forceUpdate();"activate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Active",s.plugins[t].status_code=1,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})),"deactivate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3}))}).catch(function(t){s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})}}},_a=ma,ba=Object(w["a"])(_a,ha,va,!1,null,null,null),fa=ba.exports,xa=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("h1",[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_2))]),e("div",{staticClass:"sp-flex sp-flex-col sp-flex-1 sp-h-48"},[e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.header_scripts,expression:"shared.settings.header_scripts"}],staticClass:"sp-form-textarea sp-w-full sp-flex-1",domProps:{value:t.shared.settings.header_scripts},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"header_scripts",s.target.value)}}}),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60",domProps:{innerHTML:t._s(t.txt_3)}})])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_6))]),e("div",{staticClass:"sp-flex sp-flex-col sp-flex-1 sp-h-48"},[e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.body_scripts,expression:"shared.settings.body_scripts"}],staticClass:"sp-form-textarea sp-w-full sp-flex-1",domProps:{value:t.shared.settings.body_scripts},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"body_scripts",s.target.value)}}}),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60",domProps:{innerHTML:t._s(t.txt_7)}})])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_4))]),e("div",{staticClass:"sp-flex sp-flex-col sp-flex-1 sp-h-48"},[e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.footer_scripts,expression:"shared.settings.footer_scripts"}],staticClass:"sp-form-textarea sp-w-full sp-flex-1",domProps:{value:t.shared.settings.footer_scripts},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"footer_scripts",s.target.value)}}}),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60",domProps:{innerHTML:t._s(t.txt_5)}})])])])])},wa=[],Ca={name:"settingsscripts",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Scripts","coming-soon"),txt_2:Object(b["a"])("Header Scripts:","coming-soon"),txt_3:Object(b["a"])("This code will be rendered before the closing &lt;/head&gt; tag.","coming-soon"),txt_4:Object(b["a"])("Footer Scripts:","coming-soon"),txt_5:Object(b["a"])("The code will be rendered before the closing &lt;/body&gt; tag.","coming-soon"),txt_6:Object(b["a"])("Body Scripts:","coming-soon"),txt_7:Object(b["a"])("The code will be rendered after the &lt;/body&gt; tag.","coming-soon"),shared:seedprod_store}},methods:{},components:{}},ka=Ca,ya=Object(w["a"])(ka,xa,wa,!1,null,null,null),za=ya.exports,Oa=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("h1",[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_2))]),e("div",[e("div",{staticClass:"sp-border sp-border-neutral-10 sp-rounded-full sp-p-2px sp-bg-white sp-h-full sp-flex sp-align-center"},[e("button",{staticClass:"sp-cursor-pointer sp-rounded-full sp-h-42px sp-text-sm sp-font-semibold sp-px-6",class:{"sp-bg-primary sp-text-white hover:sp-bg-primary-darker":0==t.shared.settings.domain_mapping_status,"sp-bg-white sp-text-neutral-60 hover:sp-bg-neutral-10":0!=t.shared.settings.domain_mapping_status},on:{click:function(s){t.shared.settings.domain_mapping_status=!1}}},[t._v(t._s(t.txt_3))]),e("button",{staticClass:"sp-cursor-pointer sp-rounded-full sp-h-42px sp-text-sm sp-font-semibold sp-px-6",class:{"sp-bg-green sp-text-white hover:sp-bg-green-darker":1==t.shared.settings.domain_mapping_status,"sp-bg-white sp-text-neutral-60 hover:sp-bg-neutral-10":1!=t.shared.settings.domain_mapping_status},on:{click:function(s){t.shared.settings.domain_mapping_status=!0}}},[t._v(t._s(t.txt_4))])])])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48 sp-mt-2"},[t._v(t._s(t.txt_5))]),e("div",[e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.domain_mapping,expression:"shared.settings.domain_mapping"}],staticClass:"sp-form-input sp-w-full sp-flex-1",attrs:{type:"text"},domProps:{value:t.shared.settings.domain_mapping},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"domain_mapping",s.target.value)}}}),e("div",[t._v(t._s(t.txt_6)),e("br"),e("a",{staticClass:"sp-text-primary hover:sp-text-primary-lighter sp-underline",attrs:{href:"",target:"_target"}},[t._v(t._s(t.txt_7))]),t._v(" "+t._s(t.txt_8))])])])])])},ja=[],Ma={name:"settingsdomain",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Custom Domain","coming-soon"),txt_2:Object(b["a"])("Custom Domain:","coming-soon"),txt_3:Object(b["a"])("OFF","coming-soon"),txt_4:Object(b["a"])("ON","coming-soon"),txt_5:Object(b["a"])("Domain Name:","coming-soon"),txt_6:Object(b["a"])("Enter your domain.","coming-soon"),txt_7:Object(b["a"])("Click here to learn more","coming-soon"),txt_8:Object(b["a"])("how to map your custom domain.","coming-soon"),shared:seedprod_store}},methods:{},components:{}},Sa=Ma,Ha=Object(w["a"])(Sa,Oa,ja,!1,null,null,null),Va=Ha.exports,Ba=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("h1",[t._v(t._s(t.txt_14))]),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_1))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.lpage.post_title,expression:"shared.lpage.post_title"}],staticClass:"sp-form-input sp-w-full sp-flex-1",attrs:{type:"text"},domProps:{value:t.shared.lpage.post_title},on:{input:function(s){s.target.composing||t.$set(t.shared.lpage,"post_title",s.target.value)}}})]),"lp"==t.shared.page_type?e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_2))]),e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-bg-neutral-10 sp-border sp-border-neutral-20 sp-inline-block sp-border-r-0 sp-rounded-tl-6px sp-rounded-bl-6px sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-2"},[e("svg",{staticClass:"sp-inline-block sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("span",{staticClass:"sp-border-t sp-border-b sp-border-neutral-20 sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-4"},[t._v(t._s(t.shared.home_url)+"/")]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.lpage.post_name,expression:"shared.lpage.post_name"},{name:"validate",rawName:"v-validate",value:"alpha_dash",expression:"'alpha_dash'"}],staticClass:"sp-form-input sp-rounded-none sp-border-r-0 sp-border-l-0 focus:sp-border-neutral-20",class:{"seedprod-highlight-option-target":"page_permalink"==t.shared.highlight_option_target},staticStyle:{display:"inline-block",width:"300px"},attrs:{type:"text",name:"slug"},domProps:{value:t.shared.lpage.post_name},on:{mouseover:function(s){t.shared.highlight_option_target=!1},input:function(s){s.target.composing||t.$set(t.shared.lpage,"post_name",s.target.value)}}}),e("button",{staticClass:"sp-bg-white sp-border sp-border-neutral-20 sp-inline-block sp-border-l-0 sp-rounded-tr-6px sp-rounded-br-6px sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-2",on:{click:t.preview_page}},[e("svg",{staticClass:"sp-inline-block sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"}})])]),e("span",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("slug"),expression:"errors.has('slug')"}],staticClass:"help-block error"},[t._v("\n "+t._s(t.errors.first("slug"))+"\n ")])])]):t._e(),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_3))]),e("div",[e("div",{staticClass:"sp-border sp-border-neutral-10 sp-rounded-full sp-p-2px sp-bg-white sp-h-full sp-flex sp-align-center"},[e("button",{staticClass:"sp-cursor-pointer sp-rounded-full sp-h-42px sp-text-sm sp-font-semibold sp-px-6",class:{"sp-bg-primary sp-text-white hover:sp-bg-primary-darker":"draft"==t.shared.lpage.post_status,"sp-bg-white sp-text-neutral-60 hover:sp-bg-neutral-10":"draft"!=t.shared.lpage.post_status},on:{click:function(s){t.shared.lpage.post_status="draft"}}},[t._v(t._s(t.txt_4))]),e("button",{staticClass:"sp-cursor-pointer sp-rounded-full sp-h-42px sp-text-sm sp-font-semibold sp-px-6",class:{"sp-bg-green sp-text-white hover:sp-bg-green-darker":"publish"==t.shared.lpage.post_status,"sp-bg-white sp-text-neutral-60 hover:sp-bg-neutral-10":"publish"!=t.shared.lpage.post_status},on:{click:function(s){t.shared.lpage.post_status="publish"}}},[t._v(t._s(t.txt_5))])])])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_15)+":")]),e("div",{staticClass:"sp-flex-1"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36},model:{value:t.shared.settings.show_powered_by_link,callback:function(s){t.$set(t.shared.settings,"show_powered_by_link",s)},expression:"shared.settings.show_powered_by_link"}}),t._v(t._s(t.txt_8)+"\n "),e("strong",[t._v(t._s(t.txt_6))]),t._v(" "+t._s(t.txt_7)+"\n "),e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-mt-6 sp-p-5"},[e("div",{staticClass:"sp-text-sm sp-mb-2"},[t._v(t._s(t.txt_16))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.affiliate_url,expression:"shared.settings.affiliate_url"}],staticClass:"sp-form-input sp-w-full",attrs:{type:"text"},domProps:{value:t.shared.settings.affiliate_url},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"affiliate_url",s.target.value)}}}),e("div",{staticClass:"sp-mt-2 sp-text-sm"},[e("a",{staticClass:"sp-text-primary hover:sp-text-page_type-darker",attrs:{href:"https://www.seedprod.com/affiliates/",target:"_blank"}},[t._v(t._s(t.txt_17))]),t._v("\n "+t._s(t.txt_18)+"\n ")])])],1)]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_19)+":")]),e("div",{staticClass:"sp-flex-1"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36},model:{value:t.shared.settings.no_conflict_mode,callback:function(s){t.$set(t.shared.settings,"no_conflict_mode",s)},expression:"shared.settings.no_conflict_mode"}}),t._v(t._s(t.txt_12)+"\n \n "),t._m(0)],1)]),"lp"!=t.shared.settings.page_type?e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_10)+":")]),e("div",{staticClass:"sp-flex-1"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36},model:{value:t.shared.settings.redirect_mode,callback:function(s){t.$set(t.shared.settings,"redirect_mode",s)},expression:"shared.settings.redirect_mode"}}),t._v(t._s(t.txt_12)+"\n \n "),e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-mt-6 sp-p-5"},["p404"==t.shared.settings.page_type?e("div",{staticClass:"sp-text-sm sp-mb-2"},[t._v(t._s(t.txt_13))]):e("div",{staticClass:"sp-text-sm sp-mb-2"},[t._v(t._s(t.txt_11))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.redirect_url,expression:"shared.settings.redirect_url"}],staticClass:"sp-form-input sp-w-full",attrs:{type:"text"},domProps:{value:t.shared.settings.redirect_url},on:{input:function(s){s.target.composing||t.$set(t.shared.settings,"redirect_url",s.target.value)}}})])],1)]):t._e(),"lp"!=t.shared.settings.page_type?e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_9))]),e("div",{staticClass:"sp-flex-1"},[e("a",{staticClass:"sp-mt-2 sp-bg-red hover:sp-bg-red-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:"#"},on:{click:function(s){return s.preventDefault(),t.reset_template(s)}}},[e("span",{staticClass:"sp-text-white"},[t._v("Choose Template")])]),t._m(1)])]):t._e()])])},La=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-mt-6 sp-p-5"},[e("div",{staticClass:"sp-text-sm sp-mb-2"},[t._v("Isolation Mode prevents two WordPress hooks from running called wp_head and wp_footer. This will prevent conflicts with your theme or other plugins. While it prevents conflicts, it also means other plugins would not run on the page such as SEO and analytics plugins. You can manually set these under the SEO and Scripts menus on the left. ")])])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("span",{staticClass:"sp-ml-4 sp-text-sm sp-text-neutral-30"},[t._v("("),e("strong",[t._v("Warning:")]),t._v(" This will delete the current template and content.)")])}],Ta={name:"settingsdisplayoptions",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{txt_1:Object(b["a"])("Page Title:","coming-soon"),txt_2:Object(b["a"])("Page URL:","coming-soon"),txt_3:Object(b["a"])("Page Status:","coming-soon"),txt_4:Object(b["a"])("Draft","coming-soon"),txt_5:Object(b["a"])("Publish","coming-soon"),txt_6:Object(b["a"])('"Powered by SeedProd"',"coming-soon"),txt_7:Object(b["a"])("Link","coming-soon"),txt_8:Object(b["a"])("Show","coming-soon"),txt_9:Object(b["a"])("Choose New Template:","coming-soon"),txt_10:Object(b["a"])("Redirect Mode","coming-soon"),txt_11:Object(b["a"])("Redirect URL: A temporary redirect (302 status) will be created to the url entered.","coming-soon"),txt_12:Object(b["a"])("Enable","coming-soon"),txt_13:Object(b["a"])("Redirect URL: A permanent redirect (301 status) will be created to the url entered.","coming-soon"),txt_14:Object(b["a"])("General","coming-soon"),txt_15:Object(b["a"])("SeedProd Link","coming-soon"),txt_16:Object(b["a"])("Enter Your Affiliate URL and Make Money with SeedProd","coming-soon"),txt_17:Object(b["a"])("Join our affiliate program","coming-soon"),txt_18:Object(b["a"])("and get a 20% commission on all sales generated from your powered by link.","coming-soon"),txt_19:Object(b["a"])("Isolation Mode","coming-soon"),shared:seedprod_store}},computed:{slug:function(){var t=this.slugify(this.shared.lpage.slug);return t}},watch:{"shared.lpage.post_title":{handler:function(t,s){this.shared.settings.post_title=t}},"shared.lpage.post_name":{handler:function(t,s){this.shared.settings.post_name=t}},"shared.lpage.post_status":{handler:function(t,s){this.shared.settings.post_status=t}}},methods:{reset_template:function(){var t=this.$route.params.id;location.href="admin.php?page="+this.shared.page_path+"_template&id="+t+"#/template/"+t},maybe_show_unlock:function(){this.shared.per.includes("lp")||this.show_uplock_notice("Standalone Landing Pages","Standalone Landing Page","landing-page")},preview_page:function(){i()(seedprod_store.settings)===seedprod_store.settings_org?window.open(this.shared.home_url+"/"+this.shared.lpage.post_name,"_blank"):alert("Save your changes before previewing.")}},components:{}},$a=Ta,Pa=Object(w["a"])($a,Ba,La,!1,null,null,null),Na=Pa.exports,Ra=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-p-6 sp-px-8 sp-pb-40 ",attrs:{id:"app"}},[e("div",{staticClass:"sp-text-20px sp-font-bold sp-mt-2 sp-text-neutral-80"},[t._v("Email Marketing")]),e("div",{staticClass:"sp-flex sp-flex-wrap sp-pt-8"},[e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"80px","margin-top":"5px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/activecampaign-logo.svg"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("ActiveCampaign")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"52px","margin-top":"10px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/aweber-logo.svg"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("AWeber")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"52px","margin-top":"10px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/campaignmonitor-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Campaign Monitor")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"46px","margin-top":"15px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/contact-contact.svg"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Constant Contact")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"40px","margin-top":"18px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/convertkit-logo.svg"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("ConvertKit")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"35px","margin-top":"15px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/drip-logo.svg"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Drip")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"52px","margin-top":"10px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/getresponse-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("GetResponse")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"25px","margin-top":"15px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/icontact-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("iContact")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"30px","margin-top":"15px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/madmimi-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Mad Mimi")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"48px","margin-top":"15px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/mailchimp-logo.svg"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Mailchimp")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"45px","margin-top":"15px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/sendy-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Sendy")])])])]),e("div",{staticClass:"sp-text-20px sp-font-bold sp-mt-2 sp-text-neutral-80"},[t._v("Other")]),e("div",{staticClass:"sp-flex sp-flex-wrap sp-pt-8"},[e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"50px","margin-top":"5px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/zapier-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Zapier")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:t.goto_analytics}},[e("div",{staticClass:"es"},[e("div"),e("span",[e("img",{staticStyle:{width:"52px","margin-top":"10px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/ga-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Google Analytics")])])]),e("div",{staticClass:"es-wrapper sp-cursor-pointer",on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),e("div",{staticClass:"es",staticStyle:{opacity:"0.6"}},[e("div"),e("span",[e("img",{staticStyle:{width:"56px","margin-top":"10px"},attrs:{src:t.shared.plugin_path+"/public/svg/logos/recaptcha-logo.png"}})]),e("span",{staticClass:"sp-mb-5 sp-text-neutral-80 sp-font-semibold sp-text-15px"},[t._v("Recaptcha")])])])]),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"connect",feature:"Email Integrations"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},Fa=[],Aa={name:"settingsconnect",mixins:[m["a"]],inject:{$validator:"$validator"},data:function(){return{shared:seedprod_store,showUpsellModal:!1}},computed:{},beforeDestroy:function(){},methods:{goto_analytics:function(){this.$router.push({name:"setup_settings_analytics",params:{id:this.shared.lpage.id}})}},components:{modal:j["a"],LiteCTABuilder:Ls["a"]}},Ea=Aa,Ia=Object(w["a"])(Ea,Ra,Fa,!1,null,null,null),Ua=Ia.exports,Da=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{attrs:{id:"sp-revision-history"}},[t.shared.doing_revisions_ajax?e("div",[e("p",[t._v("\n "+t._s(t.txt_1)+"\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})])]):e("div",[t.shared.revisions&&t.shared.revisions.length>0?e("div",[e("p",[t._v(t._s(t.txt_2))]),e("button",{class:{"active-current":-1==t.shared.current_revision_active_index},on:{click:function(s){return t.set_revision("current")}}},[e("img",{attrs:{src:"https://www.gravatar.com/avatar/"+t.shared.current_user_email_hash}}),e("div",{staticClass:"sp-flex sp-flex-col sp-items-start"},[e("span",{staticClass:"sp-rev-datefull"},[t._v(t._s(t.txt_3))]),e("span",{staticClass:"sp-rev-author"},[t._v(t._s(t.txt_4)+" "+t._s(t.shared.current_user_name))])])]),e("div",{attrs:{id:"sp-revision-timeline"}},t._l(t.revisions_with_data,function(s,o){return e("div",{key:o,staticClass:"sp-revision-item",class:{active:t.shared.current_revision_active_index==o}},[e("span",{staticClass:"sp-revision-item-circle"}),e("span",{staticClass:"sp-revision-item-line"}),e("button",{on:{click:function(s){return t.set_revision(o)}}},[e("img",{attrs:{src:"https://www.gravatar.com/avatar/"+s.author_email+"?s=39"}}),e("div",{staticClass:"sp-flex sp-flex-col sp-items-start"},[e("span",{staticClass:"sp-rev-datefull"},[t._v("\n "+t._s(s.time_ago)+" "+t._s(t.txt_6)+"\n "),e("span",{staticClass:"sp-rev-date"},[t._v("("+t._s(s.post_date_formated)+")")])]),e("span",{staticClass:"sp-rev-author"},[t._v(t._s(t.txt_4)+" "+t._s(s.author_name))])])])])}),0)]):e("div",[e("p",[t._v(t._s(t.txt_5))])])])])},Wa=[],Ga={name:"revisions",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Loading Revisons","coming-soon"),txt_2:Object(b["a"])("Click to preview version:","coming-soon"),txt_3:Object(b["a"])("Current Version","coming-soon"),txt_4:Object(b["a"])("by","coming-soon"),txt_5:Object(b["a"])("There are no revisons to show.","coming-soon"),txt_6:Object(b["a"])("ago","coming-soon"),shared:seedprod_store}},mounted:function(){this.get_revisisons()},computed:{revisions_with_data:function(){return this.shared.revisions.filter(function(t){return""!=t.post_content_filtered})}},methods:{get_revisisons:function(){var t=this,s=d.a.stringify({lpage_id:this.shared.lpage.id});t.shared.doing_revisions_ajax=!0,this.axios.post("admin-ajax.php?action="+this.shared.page_path+"_get_revisions&_wpnonce="+seedprod_nonce,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){t.shared.revisions=s.data.revisions,t.shared.doing_revisions_ajax=!1}).catch(function(s){t.shared.doing_revisions_ajax=!1})},set_revision:function(t){-1==this.shared.current_revision_active_index&&(this.shared.current_revision_store=i()(this.shared.settings)),"current"==t?(this.shared.current_revision_active_index=-1,this.shared.settings=JSON.parse(this.shared.current_revision_store)):(this.shared.current_revision_active_index=t,this.shared.settings=JSON.parse(this.shared.revisions[t].post_content_filtered)),this.update_head_css(),this.update_mobile_css(),this.update_placeholder_css()}}},Za=Ga,Ja=Object(w["a"])(Za,Da,Wa,!1,null,null,null),qa=Ja.exports,Ya=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-text-xs",attrs:{id:"sp-layout-nav"}},[e("div",{staticClass:"sp-p-2 sp-text-sm sp-border sp-border-t-0 sp-border-neutral-20"},[e("button",{staticClass:"hover:sp-underline",on:{click:t.expand_all}},[t._v(t._s(t.txt_1))]),t._v(" /\n "),e("button",{staticClass:"hover:sp-underline",on:{click:t.collapse_all}},[t._v(t._s(t.txt_2))])]),e("draggable",{attrs:{id:"sp-ln-page",list:t.shared.settings.document.sections,group:"sections"}},t._l(t.shared.settings.document.sections,function(s,o){return e("div",{key:o},[e("div",{staticClass:"sp-py-1 sp-px-2 sp-flex sp-items-center sp-justify-between sp-border sp-border-t-0 sp-border-neutral-20",class:{"sp-bg-white":t.highlight==s.id},on:{mouseover:function(e){return e.stopPropagation(),t.show_block(s.id)},click:function(e){return t.toggle_section_children(s.id)}}},[e("span",{staticClass:"sp-flex sp-items-center sp-cursor-move"},[t.in_hide_child(s.id)?e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 17l5-5-5-5v10z"}}),e("path",{attrs:{d:"M0 24V0h24v24H0z",fill:"none"}})]):e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M7 10l5 5 5-5z"}})]),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"}})]),e("span",{staticClass:"sp-font-bold sp-text-base"},[t._v(t._s(t.txt_3))])]),e("span",{staticClass:"sp-flex sp-items-center sp-justify-between"},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-cursor-pointer",class:{"sp-hidden":t.highlight!=s.id},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},on:{click:function(e){return t.edit_block(s.id,null,!0)}}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])]),e("draggable",{staticClass:"sp-ln-row",attrs:{list:s.rows,group:"rows"}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.show_child(s.id),expression:"show_child(section.id)"}]},t._l(s.rows,function(o,i){return e("div",{key:i},[e("div",{staticClass:"sp-pl-6 sp-py-1 sp-px-2 sp-flex sp-items-center sp-justify-between sp-border sp-border-t-0 sp-border-neutral-20",class:{"sp-bg-white":t.highlight==o.id},on:{click:function(s){return t.toggle_section_children(o.id)},mouseover:function(s){return s.stopPropagation(),t.show_block(o.id)}}},[e("span",{staticClass:"sp-flex sp-items-center sp-cursor-move"},[t.in_hide_child(s.id)?e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 17l5-5-5-5v10z"}}),e("path",{attrs:{d:"M0 24V0h24v24H0z",fill:"none"}})]):e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M7 10l5 5 5-5z"}})]),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M4 6v12h17V6H4zm15 10H6v-3h13v3zM6 11V8h13v3H6z"}})]),e("span",{staticClass:"sp-text-15px"},[t._v(t._s(t.txt_4))])]),e("span",{staticClass:"sp-flex sp-items-center sp-justify-between"},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-cursor-pointer",class:{"sp-hidden":t.highlight!=o.id},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},on:{click:function(s){return t.edit_block(o.id,null,!0)}}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])]),e("draggable",{attrs:{list:o.cols,group:"cols"}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.show_child(o.id),expression:"show_child(row.id)"}]},t._l(o.cols,function(s,o){return e("div",{key:o},[e("div",{staticClass:"sp-pl-12 sp-py-1 sp-px-2 sp-flex sp-items-center sp-justify-between sp-border sp-border-t-0 sp-border-neutral-20",class:{"sp-bg-white":t.highlight==s.id},on:{mouseover:function(e){return e.stopPropagation(),t.show_block(s.id)},click:function(e){return t.toggle_section_children(s.id)}}},[e("span",{staticClass:"sp-flex sp-items-center sp-cursor-move"},[t.in_hide_child(s.id)?e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 17l5-5-5-5v10z"}}),e("path",{attrs:{d:"M0 24V0h24v24H0z",fill:"none"}})]):e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M7 10l5 5 5-5z"}})]),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M4 5v13h17V5H4zm10 2v9h-3V7h3zM6 7h3v9H6V7zm13 9h-3V7h3v9z"}})]),e("span",{staticClass:"sp-text-14px"},[t._v(t._s(t.txt_5))])]),e("span",{staticClass:"sp-flex sp-items-center sp-justify-between"},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-cursor-pointer",class:{"sp-hidden":t.highlight!=s.id},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},on:{click:function(e){return t.edit_block(s.id,null,!0)}}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])]),e("draggable",{attrs:{list:s.blocks,group:"blocks"}},t._l(s.blocks,function(o,i){return e("div",{directives:[{name:"show",rawName:"v-show",value:t.show_child(s.id),expression:"show_child(col.id)"}],key:o.id},[e("div",{staticClass:"sp-pl-20 sp-py-1 sp-px-2 sp-flex sp-items-center sp-justify-between sp-border sp-border-t-0 sp-border-neutral-20",class:{"sp-bg-white":t.highlight==o.id},on:{mouseover:function(s){return s.stopPropagation(),t.show_block(o.id)}}},[e("span",{staticClass:"sp-flex sp-items-center sp-cursor-move"},[e("span",{staticClass:"sp-layout-icon",class:"sp-layout-"+o.type,domProps:{innerHTML:t._s(t.get_icon(o))}}),e("span",{domProps:{textContent:t._s(t.get_display_name(o))}})]),e("span",{staticClass:"sp-flex sp-items-center sp-justify-between"},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-cursor-pointer",class:{"sp-hidden":t.highlight!=o.id},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},on:{click:function(s){return t.edit_block(o.id,null,!0)}}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])])])}),0)],1)}),0)])],1)}),0)])],1)}),0)],1)},Xa=[],Ka={name:"layoutnav",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Expand All","coming-soon"),txt_2:Object(b["a"])("Collapse All","coming-soon"),txt_3:Object(b["a"])("Section","coming-soon"),txt_4:Object(b["a"])("Row","coming-soon"),txt_5:Object(b["a"])("Column","coming-soon"),highlight:!1,hide_child:[],shared:seedprod_store}},computed:{},mounted:function(){},methods:{in_hide_child:function(t){var s=this.hide_child.indexOf(t);return-1!==s},collapse_all:function(){var t=this;this.shared.settings.document.sections.forEach(function(s){t.hide_child.push(s.id),s.rows&&s.rows.forEach(function(e){t.hide_child.push(e.id),s.cols&&e.cols.forEach(function(s){t.hide_child.push(s.id)})})})},expand_all:function(){this.hide_child=[]},toggle_section_children:function(t){var s=this.hide_child.indexOf(t);-1===s?this.hide_child.push(t):this.hide_child.splice(s,1)},show_child:function(t){return!this.hide_child.includes(t);//!this.ca ||
2
- },show_block:function(t){this.highlight=t,this.shared.highlight_option_target=t,this.focus_block(t)},get_icon:function(t){var s="";return this.shared.setup_page_meta.block_options.forEach(function(e){e.type==t.type&&(s=e.icon)}),s},get_display_name:function(t){var s="";return this.shared.setup_page_meta.block_options.forEach(function(e){e.type==t.type&&(s=e.name)}),s}},components:{draggable:E.a}},Qa=Ka,tn=Object(w["a"])(Qa,Ya,Xa,!1,null,null,null),sn=tn.exports,en=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer sp-secondary",on:{click:t.goto_blocks}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2"},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),e("div",{staticClass:"sp-p-4"},[e("div",{staticClass:"sp-text-neutral-60 sp-uppercase sp-text-12px sp-pt-1 sp-pb-2 sp-font-semibold"},[t._v(t._s(t.txt_5))]),e("ul",{staticClass:"sp-section-categories"},[e("li",{staticClass:"sp-cursor-pointer sp-flex sp-justify-between sp-items-center",class:{"sp-section-cat-active":0==t.shared.sections_templates.templatecat}},[t._v("\n "+t._s(t.txt_3)+"\n "),0==t.shared.sections_templates.templatecat?e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]):t._e()]),t._l(t.shared.sections_templates.cats,function(s,o){return e("li",{key:o,staticClass:"sp-cursor-pointer sp-flex sp-justify-between sp-items-center",class:{"sp-section-cat-active":t.shared.sections_templates.templatecat==s}},[t._v("\n "+t._s(s.charAt(0).toUpperCase()+s.slice(1))+"\n "),t.shared.sections_templates.templatecat==s?e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]):t._e()])}),e("li",{staticClass:"sp-cursor-pointer sp-flex sp-justify-between sp-items-center",class:{"sp-section-cat-active":"favs"==t.shared.sections_templates.templatecat}},[t._v("\n "+t._s(t.txt_4)+"\n "),"favs"==t.shared.sections_templates.templatecat?e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]):t._e()])],2)])])},on=[],an={methods:{filter_cat:function(t){this.shared.sections_templates.templatesearch="",this.shared.sections_templates.templatecat=t,this.loadSections()},loadCats:function(){var t=this;t.loading=!0,g.a.start();var s=this.template_api_url;0==this.shared.api_token&&(s=this.template_api_url_preview),this.axios.get(s+"&filter=section_cats&api_token="+t.shared.api_token).then(function(s){t.shared.sections_templates.cats=s.data}).catch(function(s){console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},loadSections:function(){var t=this;t.loading=!0,g.a.start();var s=this.template_api_url;0==this.shared.api_token&&(s=this.template_api_url_preview),this.axios.get(s+"&filter=sections&s="+t.shared.sections_templates.templatesearch+"&cat="+t.shared.sections_templates.templatecat+"&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done();var e=s.data.sections.data;e.forEach(function(e){e.favorited=s.data.favs.includes(e.id),"saved"==t.shared.sections_templates.templatecat&&(e.saved=!0)}),t.shared.sections_templates.themes=s.data.sections}).catch(function(s){g.a.done(),console.log(s),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})}}},nn={name:"sectiontemplates",mixins:[an],data:function(){return{txt_1:Object(b["a"])("Blocks","coming-soon"),txt_2:Object(b["a"])("Sections","coming-soon"),txt_3:Object(b["a"])("All Sections","coming-soon"),txt_4:Object(b["a"])("Favorites","coming-soon"),txt_5:Object(b["a"])("Categories:","coming-soon"),template_api_url:seedprod_remote_api+"templates?page=1",template_api_url_preview:seedprod_remote_api+"templates-preview?page=1",shared:seedprod_store}},methods:{goto_blocks:function(){this.$router.push({name:"setup_block_options"})}},created:function(){this.loadCats()}},ln=nn,rn=Object(w["a"])(ln,en,on,!1,null,null,null),cn=rn.exports,pn=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.shared.sections_templates.themes||t.shared.sections_templates.themes.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.shared.sections_templates.themes.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("PRO")]),"saved"==s.section_category?e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-saved.png"}}):e("img",{staticClass:"sp-border-none",staticStyle:{opacity:"0.5"},attrs:{src:"https://assets.seedprod.com/preview-"+s.id+".png"}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.add_template_section(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-3 sp-text-neutral-60 sp-text-xs sp-font-semibold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),s.saved?e("span",[e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.remove_saved(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]):e("span",[s.favorited?e("span",{staticClass:"sp-text-red sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"detach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"}})])]):e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"attach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"}})])])])])])}),0):e("div",{staticClass:"sp-text-center sp-m-20 sp-text-neutral"},[t._v(t._s(t.txt_1))])])]),t.showPreview?e("div",{staticClass:"sp-fixed sp-top-0 sp-left-0 sp-bottom-0 sp-right-0",staticStyle:{"z-index":"99999"}},[e("div",{staticClass:"sp-absolute sp-bg-neutral-60 sp-top-0 sp-left-0 sp-bottom-0 sp-right-0 sp-opacity-75"}),e("div",{staticClass:"sp-relative sp-z-40 sp-bg-neutral sp-text-white sp-h-72px sp-flex sp-items-center sp-px-5 sp-justify-between"},[e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3"},[e("svg",{attrs:{width:"32",height:"34",viewBox:"0 0 32 34",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0 0C0 0 0.74666 0.0506396 16.0822 2.054C31.4178 4.05737 36.7255 19.603 27.3358 33.1707C28.7883 21.0478 26.13 8.47161 15.4523 7.00138C4.77453 5.53114 5.70455 5.75641 5.70455 5.75641C5.70455 5.75641 5.88147 8.42652 6.8834 15.6043C7.88534 22.7821 13.4921 26.3022 18.3988 28.1143C18.3988 28.1143 18.6866 19.714 15.949 16.0165C13.2114 12.3191 9.80548 9.86362 9.80548 9.86362C9.80548 9.86362 17.8094 10.8232 20.8313 16.4032C23.8532 21.9832 23.5588 33.7778 23.5588 33.7778L20.2989 33.6092C11.5273 32.556 3.33239 27.2759 1.939 16.198C0.545613 5.1201 0 0 0 0Z",fill:"#7B6B7A"}})]),e("span",{staticClass:"sp-pl-8 sp-text-base sp-text-neutral-40 sp-text-semibold"},[t._v(t._s(t.preview_page_name))])]),e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3 sp-justify-center"},[e("button",{staticClass:"sp-w-8 sp-h-8 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-mr-1 sp-cursor-pointer",class:{"sp-bg-white sp-text-neutral-80":"desktop"==t.preview_mode,"sp-bg-neutral-40":"mobile"==t.preview_mode},on:{click:function(s){return t.set_preview_mode("desktop")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"}})])]),e("button",{staticClass:"sp-w-8 sp-h-8 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-ml-2 sp-cursor-pointer",class:{"sp-bg-white sp-text-neutral-80":"mobile"==t.preview_mode,"sp-bg-neutral-40":"desktop"==t.preview_mode},on:{click:function(s){return t.set_preview_mode("mobile")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"}})])])]),e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3 sp-justify-end"},[e("button",{staticClass:"sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-sm hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold sp-mr-5",on:{click:function(s){return t.add_template_section(t.previewId)}}},[t._v(t._s(t.txt_2))]),e("button",{staticClass:"sp-text-neutral-40",on:{click:t.close_preview_template}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])])]),e("div",{staticClass:"sp-overflow-y-scroll sp-h-full"},[e("iframe",{class:{"sp-transition-width sp-duration-500 sp-ease-out sp-h-full sp-h-600px sp-relative sp-w-350px sp-mx-auto sp-my-10 sp-rounded-lg sp-p-3 sp-bg-white":"mobile"==t.preview_mode,"sp-h-full sp-relative sp-w-full ":"desktop"==t.preview_mode},attrs:{src:t.shared.template_preview_path+t.previewId+".html"}})])]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"sections",feature:"Sections"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},dn=[],un={name:"sectiontemplateoptions",mixins:[an,m["a"]],data:function(){return{txt_1:Object(b["a"])("No Templates Found","coming-soon"),txt_2:Object(b["a"])("Choose This Section","coming-soon"),preview_mode:"desktop",preview_page_name:!1,previewId:!1,showPreview:!1,template_api_url:seedprod_remote_api+"templates?page=1",template_update_api_url:seedprod_remote_api+"template-update",template_api_url_preview:seedprod_remote_api+"templates-preview?page=1",template_hover:!1,showUpsellModal:!1,shared:seedprod_store}},components:{modal:j["a"],LiteCTABuilder:Ls["a"]},methods:{preview_template:function(t,s){this.previewId=t,this.showPreview=!0,this.preview_page_name=s,this.set_template_hover(!1)},close_preview_template:function(){this.previewId=!1,this.showPreview=!1,this.preview_page_name=!1},set_preview_mode:function(t){this.preview_mode=t},remove_saved:function(t){var s=this,e=t,o=this;g.a.start(),this.$swal({imageUrl:"",title:Object(b["a"])("Are you sure you want to delete?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:Object(b["a"])("Yes, delete it!","coming-soon")}).then(function(i){if(i.value){var a=d.a.stringify({template_id:e,method:"remove-saved-section",api_token:s.shared.api_token,site_token:s.shared.site_token});s.axios.post(s.template_update_api_url,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){g.a.done();var e=o.shared.sections_templates.themes.data;for(var i in e)e[i].id==t&&e.splice(i,1)}).catch(function(t){console.log(t),g.a.done(),o.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})}),s.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(b["a"])("Deleted!","coming-soon"),toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})}else g.a.done()})},set_template_hover:function(t){this.template_hover=t},uid:function(){var t=String.fromCharCode(97+Math.floor(26*Math.random()))+Math.random().toString(36).substring(2,15).toLowerCase();return t},updateFavs:function(t,s){},add_template_section:function(t){this.showUpsellModal=!0}},created:function(){this.loadSections()}},gn=un,hn=Object(w["a"])(gn,pn,dn,!1,null,null,null),vn=hn.exports,mn=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"seedprod-settings-page"},[e("div",{staticClass:"seedprod-settings-page-wrapper"},[e("h1",{staticClass:"sp-flex sp-items-center"},[t._v(t._s(t.txt_1)+" "),e("div",{staticClass:"sp-inline-block sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-ml-2"},[t._v("PRO")])]),e("div",{staticStyle:{opacity:"0.5"},on:{click:function(s){t.showUpsellModal=!0}}},[e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48 sp-flex-shrink-0"},[t._v(t._s(t.txt_2))]),e("div",[e("div",{staticClass:"sp-flex-1"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36}}),t.shared.settings.disable_default_excluded_urls?e("span",{staticClass:"sp-text-11px sp-uppercase sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_3))]):e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_4))])],1),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60"},[t._v(t._s(t.txt_5))])])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48 sp-flex-shrink-0"},[t._v(t._s(t.txt_6))]),e("div",[e("div",{staticClass:"sp-flex-1"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36}}),t.shared.settings.bypass_cookie?e("span",{staticClass:"sp-text-11px sp-uppercase sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_3))]):e("span",{staticClass:"sp-text-11px sp-uppercase sp-text-neutral-40 sp-pl-1 sp-font-bold"},[t._v(t._s(t.txt_4))])],1),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60"},[t._v(t._s(t.txt_7))])])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48 sp-flex-shrink-0"},[t._v(t._s(t.txt_8))]),e("div",[e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-bg-neutral-10 sp-border sp-border-neutral-20 sp-inline-block sp-border-r-0 sp-rounded-tl-6px sp-rounded-bl-6px sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-2"},[e("svg",{staticClass:"sp-inline-block sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("span",{staticClass:"sp-border-t sp-border-b sp-border-neutral-20 sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-4"},[t._v(t._s(t.shared.home_url)+"/")]),e("input",{directives:[{name:"validate",rawName:"v-validate",value:"alpha_dash",expression:"'alpha_dash'"}],staticClass:"sp-form-input sp-rounded-none sp-border-l-0 sp-rounded-tr-6px sp-rounded-br-6px",staticStyle:{display:"inline-block",width:"300px"},attrs:{type:"text",name:"slug"}}),e("span",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("slug"),expression:"errors.has('slug')"}],staticClass:"help-block error"},[t._v("\n "+t._s(t.errors.first("slug"))+"\n ")])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60"},[t._v("\n "+t._s(t.txt_20)+"\n "+t._s(t.txt_21)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-center sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_9))]),e("div",{},[e("select",{staticClass:"sp-form-select sp-w-auto"},t._l(t.shared.setup_page_meta.expire_times,function(s,o){return e("option",{key:o,domProps:{value:o}},[t._v(t._s(s))])}),0)])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_10))]),e("div",{staticClass:"sp-flex sp-flex-col sp-flex-1 sp-h-48"},[e("textarea",{staticClass:"sp-form-textarea sp-w-full sp-flex-1",attrs:{placeholder:t.txt_22}}),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60"},[t._v("\n "+t._s(t.txt_23)+"\n "),e("br"),t._v("\n "+t._s(t.txt_24)+" "+t._s(t.shared.my_ip)+"\n ")])])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_11))]),e("div",{staticClass:"sp-flex-1"},[e("div",{staticClass:"sp-bg-neutral-10 sp-rounded sp-pl-2 sp-pt-2 sp-flex sp-flex-wrap"},[t._l(t.shared.settings.access_by_role,function(s,o){return e("span",{key:o,staticClass:"sp-bg-neutral-60 hover:sp-bg-neutral-70 sp-text-white sp-font-semibold sp-py-3 sp-px-4 sp-rounded sp-leading-none sp-inline-block sp-flex sp-items-align sp-mr-2 sp-mb-2"},[t._v("\n "+t._s(s)+"\n "),e("span",{staticClass:"sp-text-neutral-20 sp-ml-2 sp-cursor-pointer",on:{click:function(s){return t.remove_role(o)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])}),e("span",{staticClass:"sp-relative"},[e("button",{staticClass:"sp-bg-white hover:sp-bg-neutral-5 sp-neutral-40 sp-font-semibold sp-py-3 sp-px-4 sp-rounded sp-leading-none sp-inline-block sp-flex sp-items-align sp-mr-2 sp-mb-2",on:{click:function(s){t.show_roles=!t.show_roles}}},[e("span",{staticClass:"sp-mr-2"},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])]),t._v(" "+t._s(t.txt_25)+"\n ")]),!0===t.show_roles?e("div",{staticClass:"sp-absolute sp-left-0 sp-rounded sp-bg-white sp-border sp-border-neutral-20 sp-p-1 sp--mt-2 sp-h-40 sp-overflow-y-scroll"},t._l(this.shared.setup_page_meta.roles,function(s,o){return e("div",{key:o,staticClass:"hover:sp-bg-neutral-10 sp-rounded sp-p-1",class:{"sp-hidden":t.shared.settings.access_by_role.includes(s)},on:{click:function(e){return t.add_role(s)}}},[t._v(t._s(s))])}),0):t._e()])],2),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60"},[t._v(t._s(t.txt_12))])])]),e("div",{staticClass:"sp-flex sp-items-start sp-mb-8"},[e("label",{staticClass:"sp-w-48"},[t._v(t._s(t.txt_13))]),e("div",{staticClass:"sp-flex sp-flex-col sp-flex-1"},[e("div",{staticClass:"sp-mr-8"},[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{staticClass:"sp-form-radio sp-text-primary",attrs:{type:"radio",name:"radio",value:"0",checked:""}}),e("span",{staticClass:"sp-ml-2"},[t._v(t._s(t.txt_14))])])]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{staticClass:"sp-form-radio sp-text-primary",attrs:{type:"radio",name:"radio",value:"1"}}),e("span",{staticClass:"sp-ml-2"},[t._v(t._s(t.txt_16))])])]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{staticClass:"sp-form-radio sp-text-primary",attrs:{type:"radio",name:"radio",value:"2"}}),e("span",{staticClass:"sp-ml-2"},[t._v(t._s(t.txt_17))])]),2==t.shared.settings.include_exclude_type?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-my-4 sp-p-5"},[e("textarea",{staticClass:"sp-form-textarea sp-w-full sp-flex-1"}),e("div",{staticClass:"sp-text-sm"},[t._v("\n "+t._s(t.txt_26)+"\n "),e("br"),t._v(t._s(t.txt_27)+"\n ")])]):t._e()]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{staticClass:"sp-form-radio sp-text-primary",attrs:{type:"radio",name:"radio",value:"3"}}),e("span",{staticClass:"sp-ml-2"},[t._v(t._s(t.txt_18))])]),3==t.shared.settings.include_exclude_type?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-my-4 sp-p-5"},[e("textarea",{staticClass:"sp-form-textarea sp-w-full sp-flex-1",attrs:{placeholder:t.txt_29}}),e("div",{staticClass:"sp-text-sm"},[t._v("\n "+t._s(t.txt_28)+"\n "),e("br"),t._v(t._s(t.txt_27)+"\n ")])]):t._e()]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-60"},[t._v(t._s(t.txt_19))])])])])]),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"access-control",feature:"Access Controls"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},_n=[],bn={name:"settingsaccess",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Access Control","coming-soon"),txt_2:Object(b["a"])("Exclude Default:","coming-soon"),txt_3:Object(b["a"])("Yes","coming-soon"),txt_4:Object(b["a"])("No","coming-soon"),txt_5:Object(b["a"])("By default we exclude urls with the terms: login, admin, dashboard and account to prevent lockouts.","coming-soon"),txt_6:Object(b["a"])("Bypass Cookie:","coming-soon"),txt_7:Object(b["a"])("Use cookies instead of creating a WordPress user for the bypass. Note: this may not work on sites that are cached. Learn More","coming-soon"),txt_8:Object(b["a"])("Bypass URL:","coming-soon"),txt_9:Object(b["a"])("Bypass URL Expires:","coming-soon"),txt_10:Object(b["a"])("Access by IP:","coming-soon"),txt_11:Object(b["a"])("Access by Role:","coming-soon"),txt_12:Object(b["a"])("By default anyone logged in will see the regular website and not the coming soon page. To override this select Roles that will be given access to see the regular website.","coming-soon"),txt_13:Object(b["a"])("Include/Exclude URLs:","coming-soon"),txt_14:Object(b["a"])("Show on the Entire Website","coming-soon"),txt_15:Object(b["a"])("Show on the Entire Website except for the Blog","coming-soon"),txt_16:Object(b["a"])("Show on the Home Page Only","coming-soon"),txt_17:Object(b["a"])("Include URLs","coming-soon"),txt_18:Object(b["a"])("Exclude URLs","coming-soon"),txt_19:Object(b["a"])("By default the Coming Soon/Maintenance page is shown on every page. Use the 'Show on the Home Page Only' option to only show on the home page. Alternatively Include or Exclude URLs.","coming-soon"),txt_20:Object(b["a"])("Enter a phrase above and give your visitors a secret url that will allow them to bypass the Coming Soon page.","coming-soon"),txt_21:Object(b["a"])("After the bypass url expires the user will need to revisit the bypass url to regain access.","coming-soon"),txt_22:Object(b["a"])("One IP Address per line","coming-soon"),txt_23:Object(b["a"])("All visitors from certain IP's to bypass the Coming Soon page.","coming-soon"),txt_24:Object(b["a"])("Put each IP on it's own line. Your current IP is:","coming-soon"),txt_25:Object(b["a"])("Add Role","coming-soon"),txt_26:Object(b["a"])("Include certain urls to display the Coming Soon or Maintenance Page.","coming-soon"),txt_27:Object(b["a"])("One per line. You may also enter a page or post id.","coming-soon"),txt_28:Object(b["a"])("Exclude certain urls to display the Coming Soon or Maintenance Page.","coming-soon"),txt_29:Object(b["a"])("Example: /about-us/","coming-soon"),show_roles:!1,shared:seedprod_store,unused_roles:{},showUpsellModal:!1}},components:{LiteCTABuilder:Ls["a"],modal:j["a"]},mounted:function(){},methods:{add_role:function(t){},remove_role:function(t){}}},fn=bn,xn=Object(w["a"])(fn,mn,_n,!1,null,null,null),wn=xn.exports,Cn=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"seedprodhtml",staticClass:"sp-flex sp-flex-col",class:{"sp-mobile-view":"mobile"==t.shared.preview_mode},style:t.builderStyles,attrs:{id:"seedprod-builder-view"}},[e("div",{staticClass:"sp-flex-grow sp-html",attrs:{id:"sp-html-code"},on:{mouseleave:function(s){t.shared.highlight_option_target=!1},"!click":function(s){return t.goto_global()}}},[e("draggable",{class:t.pageClasses,style:t.pageStyles,attrs:{id:"sp-page",list:t.shared.settings.document.sections,group:"sections",handle:".sp-drag-section"},on:{start:t.start_move,end:t.end_move}},t._l(t.shared.settings.document.sections,function(t,s){return e("Section",{key:t.id,attrs:{section:t,sindex:s}})}),1)],1),e("div",{staticClass:"sp-bg-white sp-px-1 sp-py-3",attrs:{id:"sp-sp-bottom-section-dropzone"}},[!1===t.show_cols?e("div",[e("draggable",{staticClass:"sp-bottom-section-dropzone",attrs:{list:t.section_dropzone,group:{name:"blocks",put:!0,pull:!1},draggable:".none","ghost-class":"sp-exclude-ghost","chosen-class":"sp-exclude-chosen"},on:{add:t.add_new_section_block}},t._l(t.section_dropzone,function(s,o){return e("div",{key:o,staticClass:"sp-flex sp-justify-center sp-py-2 sp-items-center sp-bg-secondary-10 sp-border-secondary sp-border-dotted sp-border-2"},[e("div",{staticClass:"sp-flex sp-justify-center sp-items-center"},[e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Columns",delay:{show:1500,hide:0}},expression:"{content:'Add Columns',delay:{ show: 1500, hide: 0 }}"}],staticClass:"sp-bg-secondary-50 hover:sp-bg-primary sp-flex sp-justify-center sp-items-center sp-w-8 sp-h-8 sp-rounded-full sp-text-white sp-mr-2",on:{click:function(s){return t.set_show_cols(!0)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Section",delay:{show:1500,hide:0}},expression:"{content:'Add Section',delay:{ show: 1500, hide: 0 }}"}],staticClass:"sp-bg-secondary-50 hover:sp-bg-primary sp-flex sp-justify-center sp-items-center sp-w-8 sp-h-8 sp-rounded-full sp-text-white",on:{click:t.goto_template_section}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"}})])])]),e("div",{staticClass:"sp-px-2 sp-italic sp-text-xs sp-text-secondary"},[t._v(t._s(t.txt_1))]),e("div",{staticClass:"sp-font-bold sp-text-xs sp-text-secondary sp-cursor-pointer",on:{click:t.add_block}},[t._v(t._s(t.txt_2))])])}),0)],1):e("div",[e("div",{staticClass:"sp-flex sp-justify-center sp-py-2 sp-items-center sp-bg-secondary-10 sp-border-secondary sp-border-dotted sp-border-2 sp-relative sp-flex-col"},[e("div",{staticClass:"sp-font-bold sp-text-xs sp-text-secondary sp-pb-6 sp-pt-2 sp-font-sans"},[t._v(t._s(t.txt_3))]),e("div",{staticClass:"sp-flex sp-text-secondary-50 sp-pb-5"},[e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("1-col")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("rect",{attrs:{width:"80",height:"32",rx:"1"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("right-sidebar")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 0.999999 32H52C52.5523 32 53 31.5523 53 31V1C53 0.447715 52.5523 0 52 0H1Z"}}),e("path",{attrs:{d:"M57 0C56.4477 0 56 0.447715 56 1V31C56 31.5523 56.4477 32 57 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H57Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("left-sidebar")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M24 0C24.5523 0 25 0.447715 25 1V31C25 31.5523 24.5523 32 24 32H1C0.447716 32 0 31.5523 0 31V1C0 0.447715 0.447716 0 1 0H24Z"}}),e("path",{attrs:{d:"M80 0C80.5523 0 81 0.447715 81 1V31C81 31.5523 80.5523 32 80 32H29C28.4477 32 28 31.5523 28 31V1C28 0.447715 28.4477 0 29 0H80Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("2-col")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 1 32H38C38.5523 32 39 31.5523 39 31V1C39 0.447715 38.5523 0 38 0H1Z"}}),e("path",{attrs:{d:"M43 0C42.4477 0 42 0.447715 42 1V31C42 31.5523 42.4477 32 43 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H43Z"}})])])]),e("div",{staticClass:"sp-flex sp-text-secondary-50 sp-pb-4"},[e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("3-col")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M0 1C0 0.447715 0.447715 0 1 0H24C24.5523 0 25 0.447715 25 1V31C25 31.5523 24.5523 32 24 32H1C0.447716 32 0 31.5523 0 31V1Z"}}),e("path",{attrs:{d:"M28 1C28 0.447715 28.4477 0 29 0H52C52.5523 0 53 0.447715 53 1V31C53 31.5523 52.5523 32 52 32H29C28.4477 32 28 31.5523 28 31V1Z"}}),e("path",{attrs:{d:"M57 0C56.4477 0 56 0.447715 56 1V31C56 31.5523 56.4477 32 57 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H57Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("4-col")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447716 32 1 32H17C17.5523 32 18 31.5523 18 31V1C18 0.447715 17.5523 0 17 0H1Z"}}),e("path",{attrs:{d:"M22 0C21.4477 0 21 0.447715 21 1V31C21 31.5523 21.4477 32 22 32H38C38.5523 32 39 31.5523 39 31V1C39 0.447715 38.5523 0 38 0H22Z"}}),e("path",{attrs:{d:"M42 1C42 0.447715 42.4477 0 43 0H59C59.5523 0 60 0.447715 60 1V31C60 31.5523 59.5523 32 59 32H43C42.4477 32 42 31.5523 42 31V1Z"}}),e("path",{attrs:{d:"M64 0C63.4477 0 63 0.447715 63 1V31C63 31.5523 63.4477 32 64 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H64Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("5-col")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M0 1C0 0.447715 0.447715 0 1 0H13C13.5523 0 14 0.447715 14 1V31C14 31.5523 13.5523 32 13 32H1C0.447716 32 0 31.5523 0 31V1Z"}}),e("path",{attrs:{d:"M17 1C17 0.447715 17.4477 0 18 0H30C30.5523 0 31 0.447715 31 1V31C31 31.5523 30.5523 32 30 32H18C17.4477 32 17 31.5523 17 31V1Z"}}),e("path",{attrs:{d:"M35 0C34.4477 0 34 0.447715 34 1V31C34 31.5523 34.4477 32 35 32H47C47.5523 32 48 31.5523 48 31V1C48 0.447715 47.5523 0 47 0H35Z"}}),e("path",{attrs:{d:"M51 1C51 0.447715 51.4477 0 52 0H64C64.5523 0 65 0.447715 65 1V31C65 31.5523 64.5523 32 64 32H52C51.4477 32 51 31.5523 51 31V1Z"}}),e("path",{attrs:{d:"M69 0C68.4477 0 68 0.447715 68 1V31C68 31.5523 68.4477 32 69 32H81C81.5523 32 82 31.5523 82 31V1C82 0.447715 81.5523 0 81 0H69Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("6-col")}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 1 32H10C10.5523 32 11 31.5523 11 31V1C11 0.447715 10.5523 0 10 0H1Z"}}),e("path",{attrs:{d:"M15 0C14.4477 0 14 0.447715 14 1V31C14 31.5523 14.4477 32 15 32H24C24.5523 32 25 31.5523 25 31V1C25 0.447715 24.5523 0 24 0H15Z"}}),e("path",{attrs:{d:"M28 1C28 0.447715 28.4477 0 29 0H38C38.5523 0 39 0.447715 39 1V31C39 31.5523 38.5523 32 38 32H29C28.4477 32 28 31.5523 28 31V1Z"}}),e("path",{attrs:{d:"M43 0C42.4477 0 42 0.447715 42 1V31C42 31.5523 42.4477 32 43 32H52C52.5523 32 53 31.5523 53 31V1C53 0.447715 52.5523 0 52 0H43Z"}}),e("path",{attrs:{d:"M56 1C56 0.447715 56.4477 0 57 0H66C66.5523 0 67 0.447715 67 1V31C67 31.5523 66.5523 32 66 32H57C56.4477 32 56 31.5523 56 31V1Z"}}),e("path",{attrs:{d:"M71 0C70.4477 0 70 0.447715 70 1V31C70 31.5523 70.4477 32 71 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H71Z"}})])])]),e("button",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-secondary sp-mt-2 sp-mr-2",on:{click:function(s){return t.set_show_cols(!1)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])])]),"seedprod_lite"==t.shared.page_path&&t.shared.show_bottombar_cta?e("div",{staticClass:"sp-bg-green sp-text-white sp-py-2 sp-px-8 sp-text-sm sp-flex sp-justify-center sp-leading-normal sp-relative",class:{"sp-hidden":t.hidebottombar}},[t._v("\n You’re using SeedProd Lite. To unlock more features consider\n "),e("a",{staticClass:"sp-ml-1 sp-text-white hover:sp-text-white sp-no-underline sp-border-0 sp-border-b sp-border-white sp-border-dotted",attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginbuilderbottombar",target:"_blank"}},[t._v("upgrading to Pro")]),t._v(".\n "),e("span",{staticClass:"sp-text-white sp-absolute sp-cursor-pointer sp-right-0 sp-top-0 sp-opacity-75 sp-mt-2 sp-mr-1",on:{click:t.dismiss_upsell}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTATemplates")],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},kn=[],yn=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("section",{ref:"sp-"+t.section.id,staticClass:"sp-el-section sp-relative",class:t.sectionClasses,style:t.sectionStyleObject,attrs:{id:"sp-"+t.section.id},on:{mouseover:function(s){return s.stopPropagation(),t.highlight_option_target(t.section.id)},"!click":function(s){return t.edit_block(t.section.id)}}},[e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),0===t.section.rows.length?e("div",{staticClass:"sp-el-col sp-p-3 sp-w-full"},[e("div",{staticClass:"sp-bg-white sp-px-1 sp-py-3",attrs:{id:"sp-sp-bottom-section-dropzone"}},[!1===t.show_cols?e("div",[e("draggable",{staticClass:"sp-bottom-section-dropzone",attrs:{list:t.section_dropzone,group:{name:"blocks",put:!0,pull:!1},draggable:".none","ghost-class":"sp-exclude-ghost","chosen-class":"sp-exclude-chosen"},on:{add:t.add_new_section_block}},t._l(t.section_dropzone,function(s,o){return e("div",{key:o,staticClass:"sp-flex sp-justify-center sp-py-2 sp-items-center sp-bg-secondary-10 sp-border-secondary sp-border-dotted sp-border-2 sp-relative"},[e("div",{staticClass:"sp-flex sp-justify-center sp-items-center"},[e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Columns",delay:{show:500,hide:0}},expression:"{content:'Add Columns',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-bg-secondary-50 hover:sp-bg-primary sp-flex sp-justify-center sp-items-center sp-w-8 sp-h-8 sp-rounded-full sp-text-white sp-mr-2",on:{click:function(s){return t.set_show_cols(!0)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Section",delay:{show:500,hide:0}},expression:"{content:'Add Section',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-bg-secondary-50 hover:sp-bg-primary sp-flex sp-justify-center sp-items-center sp-w-8 sp-h-8 sp-rounded-full sp-text-white",on:{click:function(s){return t.set_sindex_stub(t.sindex)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"}})])])]),e("div",{staticClass:"sp-px-2 sp-italic sp-text-xs sp-text-secondary"},[t._v(t._s(t.txt_2))]),e("div",{staticClass:"sp-font-bold sp-text-xs sp-text-secondary sp-cursor-pointer",on:{click:t.add_block}},[t._v(t._s(t.txt_3))]),e("button",{staticClass:"sp-absolute sp-right-0 sp-text-secondary sp-mr-2",on:{click:function(s){return t.delete_blank_element(t.sindex)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])}),0)],1):e("div",[e("div",{staticClass:"sp-flex sp-justify-center sp-py-2 sp-items-center sp-bg-secondary-10 sp-border-secondary sp-border-dotted sp-border-2 sp-relative sp-flex-col"},[e("div",{staticClass:"sp-font-bold sp-text-xs sp-text-secondary sp-pb-6 sp-pt-2 sp-font-sans"},[t._v(t._s(t.txt_8))]),e("div",{staticClass:"sp-flex sp-text-secondary-50 sp-pb-5"},[e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("1-col",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("rect",{attrs:{width:"80",height:"32",rx:"1"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("right-sidebar",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 0.999999 32H52C52.5523 32 53 31.5523 53 31V1C53 0.447715 52.5523 0 52 0H1Z"}}),e("path",{attrs:{d:"M57 0C56.4477 0 56 0.447715 56 1V31C56 31.5523 56.4477 32 57 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H57Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("left-sidebar",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M24 0C24.5523 0 25 0.447715 25 1V31C25 31.5523 24.5523 32 24 32H1C0.447716 32 0 31.5523 0 31V1C0 0.447715 0.447716 0 1 0H24Z"}}),e("path",{attrs:{d:"M80 0C80.5523 0 81 0.447715 81 1V31C81 31.5523 80.5523 32 80 32H29C28.4477 32 28 31.5523 28 31V1C28 0.447715 28.4477 0 29 0H80Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("2-col",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 1 32H38C38.5523 32 39 31.5523 39 31V1C39 0.447715 38.5523 0 38 0H1Z"}}),e("path",{attrs:{d:"M43 0C42.4477 0 42 0.447715 42 1V31C42 31.5523 42.4477 32 43 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H43Z"}})])])]),e("div",{staticClass:"sp-flex sp-text-secondary-50 sp-pb-4"},[e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("3-col",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M0 1C0 0.447715 0.447715 0 1 0H24C24.5523 0 25 0.447715 25 1V31C25 31.5523 24.5523 32 24 32H1C0.447716 32 0 31.5523 0 31V1Z"}}),e("path",{attrs:{d:"M28 1C28 0.447715 28.4477 0 29 0H52C52.5523 0 53 0.447715 53 1V31C53 31.5523 52.5523 32 52 32H29C28.4477 32 28 31.5523 28 31V1Z"}}),e("path",{attrs:{d:"M57 0C56.4477 0 56 0.447715 56 1V31C56 31.5523 56.4477 32 57 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H57Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("4-col",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447716 32 1 32H17C17.5523 32 18 31.5523 18 31V1C18 0.447715 17.5523 0 17 0H1Z"}}),e("path",{attrs:{d:"M22 0C21.4477 0 21 0.447715 21 1V31C21 31.5523 21.4477 32 22 32H38C38.5523 32 39 31.5523 39 31V1C39 0.447715 38.5523 0 38 0H22Z"}}),e("path",{attrs:{d:"M42 1C42 0.447715 42.4477 0 43 0H59C59.5523 0 60 0.447715 60 1V31C60 31.5523 59.5523 32 59 32H43C42.4477 32 42 31.5523 42 31V1Z"}}),e("path",{attrs:{d:"M64 0C63.4477 0 63 0.447715 63 1V31C63 31.5523 63.4477 32 64 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H64Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("5-col",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M0 1C0 0.447715 0.447715 0 1 0H13C13.5523 0 14 0.447715 14 1V31C14 31.5523 13.5523 32 13 32H1C0.447716 32 0 31.5523 0 31V1Z"}}),e("path",{attrs:{d:"M17 1C17 0.447715 17.4477 0 18 0H30C30.5523 0 31 0.447715 31 1V31C31 31.5523 30.5523 32 30 32H18C17.4477 32 17 31.5523 17 31V1Z"}}),e("path",{attrs:{d:"M35 0C34.4477 0 34 0.447715 34 1V31C34 31.5523 34.4477 32 35 32H47C47.5523 32 48 31.5523 48 31V1C48 0.447715 47.5523 0 47 0H35Z"}}),e("path",{attrs:{d:"M51 1C51 0.447715 51.4477 0 52 0H64C64.5523 0 65 0.447715 65 1V31C65 31.5523 64.5523 32 64 32H52C51.4477 32 51 31.5523 51 31V1Z"}}),e("path",{attrs:{d:"M69 0C68.4477 0 68 0.447715 68 1V31C68 31.5523 68.4477 32 69 32H81C81.5523 32 82 31.5523 82 31V1C82 0.447715 81.5523 0 81 0H69Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-secondary",on:{click:function(s){return t.insert_section_row_layout("6-col",t.sindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 1 32H10C10.5523 32 11 31.5523 11 31V1C11 0.447715 10.5523 0 10 0H1Z"}}),e("path",{attrs:{d:"M15 0C14.4477 0 14 0.447715 14 1V31C14 31.5523 14.4477 32 15 32H24C24.5523 32 25 31.5523 25 31V1C25 0.447715 24.5523 0 24 0H15Z"}}),e("path",{attrs:{d:"M28 1C28 0.447715 28.4477 0 29 0H38C38.5523 0 39 0.447715 39 1V31C39 31.5523 38.5523 32 38 32H29C28.4477 32 28 31.5523 28 31V1Z"}}),e("path",{attrs:{d:"M43 0C42.4477 0 42 0.447715 42 1V31C42 31.5523 42.4477 32 43 32H52C52.5523 32 53 31.5523 53 31V1C53 0.447715 52.5523 0 52 0H43Z"}}),e("path",{attrs:{d:"M56 1C56 0.447715 56.4477 0 57 0H66C66.5523 0 67 0.447715 67 1V31C67 31.5523 66.5523 32 66 32H57C56.4477 32 56 31.5523 56 31V1Z"}}),e("path",{attrs:{d:"M71 0C70.4477 0 70 0.447715 70 1V31C70 31.5523 70.4477 32 71 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H71Z"}})])])]),e("button",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-secondary sp-mt-2 sp-mr-2",on:{click:function(s){return t.set_show_cols(!1)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])])])])]):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{class:{"sp-highlight-section":0!==t.section.rows.length&&t.shared.highlight_option_target==t.section.id&&0==t.shared.is_moving||0!==t.section.rows.length&&this.shared.setup_page_meta.current_block.id==t.section.id&&this.$route.params.blockid}}),e("div",{directives:[{name:"show",rawName:"v-show",value:0!==t.section.rows.length&&t.shared.highlight_option_target==t.section.id&&0==t.shared.is_moving,expression:"section.rows.length !== 0 && shared.highlight_option_target == section.id && shared.is_moving == false"}],staticClass:"sp-flex sp-absolute sp-top-0 sp-left-0 sp-w-full sp-z-50 sp-justify-center"},[e("div",{staticClass:"sp-section-toolbar sp-flex sp-text-white sp-tb-top",class:{"sp-tb-bottom":this.shared.builder_top<25&&0===t.sindex}},[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Move Section",delay:{show:500,hide:0}},expression:"{content:'Move Section',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-drag-section sp-cursor-move sp-p-1 hover:sp-bg-secondary-darker"},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z"}}),e("circle",{attrs:{cx:"12",cy:"12",r:"3"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Section Settings",delay:{show:500,hide:0}},expression:"{content:'Section Settings',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-secondary-darker",on:{click:function(s){return t.edit_block(t.section.id)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Save Section",delay:{show:500,hide:0}},expression:"{content:'Save Section',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-secondary-darker",on:{click:function(s){return t.save_element(t.section,"section")}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate Section",delay:{show:500,hide:0}},expression:"{content:'Duplicate Section',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-secondary-darker",on:{click:function(s){return t.duplicate_element(t.section,t.sindex)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete Section",delay:{show:500,hide:0}},expression:"{content:'Delete Section',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-secondary-darker",on:{click:function(s){return t.delete_element(t.sindex)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z"}})])])])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),e("draggable",{staticClass:"sp-el-row-wrapper",attrs:{tag:"main",list:t.section.rows,group:"rows",handle:".sp-drag-row"},on:{start:t.start_move,end:t.end_move}},t._l(t.section.rows,function(s,o){return e("Row",{key:s.id,attrs:{row:s,sindex:t.sindex,rindex:o}})}),1),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{directives:[{name:"show",rawName:"v-show",value:0!==t.section.rows.length&&t.shared.highlight_option_target==t.section.id&&0==t.shared.is_moving,expression:"section.rows.length !== 0 && shared.highlight_option_target == section.id && shared.is_moving == false "}],staticClass:"sp-flex sp-absolute sp-el-toolbar-add"},[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Section",delay:{show:500,hide:0}},expression:"{content:'Add Section',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-cursor-pointer sp-bg-secondary hover:sp-bg-secondary-darker sp-text-white sp-rounded-full",on:{click:function(s){return t.add_section(t.section,t.sindex)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),t.showTemplateModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showTemplateModal=!1}}},[e("div",{staticClass:"sp-p-10 sp-text-neutral sp-font-sans",attrs:{slot:"body"},slot:"body"},[e("div",[e("div",{staticClass:"sp-text-neutral-20 sp-flex sp-justify-center sp-mb-6"},[e("svg",{staticClass:"sp-fill-current sp-w-24",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"}})])]),e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-2 sp-inline-block"},[t._v(t._s(t.txt_5))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.template_section_name,expression:"template_section_name"},{name:"validate",rawName:"v-validate",value:"required",expression:"'required'"}],staticClass:"sp-form-input sp-w-full",staticStyle:{"border-width":"1px"},attrs:{type:"text","data-vv-as":"Section Template Name",name:"template_section_name",placeholder:""},domProps:{value:t.template_section_name},on:{input:function(s){s.target.composing||(t.template_section_name=s.target.value)}}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("template_section_name"),expression:"errors.has('template_section_name')"}],staticClass:"help-block error"},[t._v("\n "+t._s(t.errors.first("template_section_name"))+"\n ")])]),e("button",{staticClass:"sp-mt-4 sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.saving_template},on:{click:function(s){return t.save_template_step1("page")}}},[t._v("\n "+t._s(t.txt_7)+"\n "),t.saving_template?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]),e("button",{staticClass:"sp-ml-3 sp-mt-8 sp-inline-block sp-bg-neutral-15 sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-base hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold",on:{click:function(s){t.showTemplateModal=!1}}},[t._v(t._s(t.txt_6))])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"saved-templates",feature:"Saved Templates"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},zn=[],On=(e("c5f6"),e("797f")),jn={name:"Section",mixins:[m["a"]],props:{section:Object,sindex:Number},data:function(){return{txt_2:Object(b["a"])("or","coming-soon"),txt_3:Object(b["a"])("Drag a new block here","coming-soon"),txt_5:Object(b["a"])("Enter a new section template name:","coming-soon"),txt_6:Object(b["a"])("Cancel","coming-soon"),txt_7:Object(b["a"])("Save Template","coming-soon"),txt_8:Object(b["a"])("Choose your layout:","coming-soon"),show_cols:!1,section_dropzone:[{id:0}],root:!1,saving_template:!1,template_section_name:"",shared:seedprod_store,showTemplateModal:!1,showUpsellModal:!1,code:!1}},watch:{"section.rows":function(t,s){if(0==t.length){var e={id:this.uid(),type:"row",colType:"1-col",cols:[],settings:JSON.parse(i()(this.shared.block_templates.row))};this.section.rows=[e]}}},methods:{set_sindex_stub:function(t){this.shared.section_template_id_stub_index=t,this.goto_template_section()},insert_section_row_layout:function(t,s){var e,o=this.generate_cols(t);e={id:this.uid(),type:"row",colType:t,cols:o,settings:JSON.parse(i()(this.shared.block_templates.row))},this.section.rows=[e],this.show_cols=!1},set_show_cols:function(t){this.show_cols=t,this.focus_block("sp-bottom-section-dropzone","bottom")},add_new_section_block:function(t){if(0==this.section_dropzone[0].id){var s=JSON.parse(i()(this.section_dropzone[1]));this.section_dropzone.splice(1,1)}else{s=JSON.parse(i()(this.section_dropzone[0]));this.section_dropzone.splice(0,1)}if("row"!=s.type){var e={id:this.uid(),type:"row",colType:"1-col",cols:[{id:this.uid(),type:"col",blocks:[s],settings:JSON.parse(i()(this.shared.block_templates.col))}],settings:JSON.parse(i()(this.shared.block_templates.row))};this.section.rows=[e],this.edit_block(s.id),this.focus_block(s.id)}else this.show_cols=!0},goto_template_section:function(){this.$router.push({name:"sectiontemplates"})},show_tooltip:function(t){var s=this;setTimeout(function(){s.shared.mousedown_el=t},1500)},save_element:function(t){arguments.length>1&&void 0!==arguments[1]&&arguments[1];if("seedprod_lite"==this.shared.page_path)return this.showUpsellModal=!0,!1;this.showTemplateModal=!0;JSON.parse(i()(t));this.code=i()(t)},save_template_step1:function(){var t=this;this.$validator.validateAll().then(function(s){if(s)t.saving_template=!0,t.save_template_step2(t.selected_template_id);else{var e="";t.errors.all().forEach(function(t){e=e+t+"\n"}),e+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:e,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})}})},save_template_step2:function(t){arguments.length>1&&void 0!==arguments[1]&&arguments[1];var s=this;g.a.start();var e={api_token:this.shared.api_token,site_token:this.shared.site_token,type:"section",code:this.code,name:this.template_section_name};this.axios.post(seedprod_remote_api+"template-save",e).then(function(t){g.a.done(),s.showTemplateModal=!1,s.saving_template=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Template has been saved!",toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e4})}).catch(function(t){console.log(t),g.a.done(),s.saving_template=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:t.response.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:6e3})})}},computed:{sectionClasses:function(){var t={};return""!=this.section.settings.bgPosition&&(t["spBg"+this.section.settings.bgPosition]=!0),t},sectionStyleObject:function(){var t="100%",s="100%";2==this.section.settings.contentWidth&&(t=this.section.settings.width+"px");var e="";e=this.section.settings.paddingSync?this.padding_render(this.section.settings.paddingTop,this.section.settings.paddingTop,this.section.settings.paddingTop,this.section.settings.paddingTop):this.padding_render(this.section.settings.paddingTop,this.section.settings.paddingRight,this.section.settings.paddingBottom,this.section.settings.paddingLeft);var o="";""!=this.section.settings.marginTop&&(o=this.section.settings.marginTop+"px");var i="";""!=this.section.settings.borderRadius&&(i=this.section.settings.borderRadius+"px"),i=!1===this.section.settings.borderRadiusSync?this.border_radius_render(this.section.settings.borderRadiusTL,this.section.settings.borderRadiusTR,this.section.settings.borderRadiusBR,this.section.settings.borderRadiusBL):this.section.settings.borderRadiusTL+"px";var a=this.section.settings.borderTop,n=this.section.settings.borderRight,l=this.section.settings.borderBottom,r=this.section.settings.borderLeft;this.section.settings.borderSync&&(n=a,l=a,r=a);var c="";return""!=this.section.settings.bgImage&&(c="url('"+this.section.settings.bgImage+"')"),""==c&&"g"==this.section.settings.bgStyle&&(c="linear"==this.section.settings.bgGradient.type?"linear-gradient("+this.section.settings.bgGradient.angle+"deg, "+this.section.settings.bgGradient.color1+" "+this.section.settings.bgGradient.color1location+"%, "+this.section.settings.bgGradient.color2+" "+this.section.settings.bgGradient.color2location+"%)":"radial-gradient(circle at "+this.section.settings.bgGradient.position+", "+this.section.settings.bgGradient.color1+" "+this.section.settings.bgGradient.color1location+"%, "+this.section.settings.bgGradient.color2+" "+this.section.settings.bgGradient.color2location+"%)"),{"background-image":c,"border-top":this.border_render(a,this.section.settings.borderStyle,this.section.settings.borderColor),"border-right":this.border_render(n,this.section.settings.borderStyle,this.section.settings.borderColor),"border-bottom":this.border_render(l,this.section.settings.borderStyle,this.section.settings.borderColor),"border-left":this.border_render(r,this.section.settings.borderStyle,this.section.settings.borderColor),"background-color":this.section.settings.bgColor,width:t,"max-width":s,padding:e,"margin-top":o,"box-shadow":this.box_shadow(this.section.settings.shadow),"border-radius":i}}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.section,function(s,e){t.set_default_val(t.section.settings,e,s)})},components:{draggable:E.a,Row:On["default"],modal:j["a"],LiteCTABuilder:Ls["a"]}},Mn=jn,Sn=Object(w["a"])(Mn,yn,zn,!1,null,null,null),Hn=Sn.exports,Vn={comments:!0,name:"builder_view",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("or","coming-soon"),txt_2:Object(b["a"])("Drag a new block here","coming-soon"),txt_3:Object(b["a"])("Choose your layout:","coming-soon"),show_cols:!1,showUpsellModal:!1,hidebottombar:!1,section_dropzone:[{id:0}],page_meta:{highlight_option:!1},shared:seedprod_store}},inject:{$validator:"$validator"},methods:{dismiss_upsell:function(){var t=d.a.stringify({id:2});this.hidebottombar=!0,this.axios.post(seedprod_dismiss_upsell,t,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data.status})},goto_global:function(){},insert_section_row_layout:function(t){var s,e=this.generate_cols(t);s={id:this.uid(),type:"row",colType:t,cols:e,settings:JSON.parse(i()(this.shared.block_templates.row))};var o=this.uid(),a={id:o,type:"section",rows:[s],settings:JSON.parse(i()(this.shared.block_templates.section))};this.shared.settings.document.sections.push(a),this.show_cols=!1,this.focus_block(o),this.edit_block(o,null,!0)},set_show_cols:function(t){this.show_cols=t,this.focus_block("sp-bottom-section-dropzone","bottom")},add_new_section_block:function(t){if(0==this.section_dropzone[0].id){var s=JSON.parse(i()(this.section_dropzone[1]));this.section_dropzone.splice(1,1)}else{s=JSON.parse(i()(this.section_dropzone[0]));this.section_dropzone.splice(0,1)}if("row"!=s.type){var e={id:this.uid(),type:"section",rows:[{id:this.uid(),type:"row",colType:"1-col",cols:[{id:this.uid(),type:"col",blocks:[s],settings:JSON.parse(i()(this.shared.block_templates.col))}],settings:JSON.parse(i()(this.shared.block_templates.row))}],settings:JSON.parse(i()(this.shared.block_templates.section))};this.shared.settings.document.sections.push(e),this.edit_block(s.id),this.focus_block(s.id)}else this.show_cols=!0},goto_template_section:function(){this.$router.push({name:"sectiontemplates"})},update_toolbar_position:function(){try{this.shared.builder_top=jQuery(".sp-el-section:first").offset().top-jQuery("#sp-page").offset().top}catch(t){}}},computed:{pageClasses:function(){var t={};return""!=this.shared.settings.document.settings.bgPosition&&(t["spBg"+this.shared.settings.document.settings.bgPosition]=!0),""!=this.shared.settings.document.settings.contentPosition&&(t["sp-content-"+this.shared.settings.document.settings.contentPosition]=!0),t},builderStyles:function(){var t,s;return"desktop"==this.shared.preview_mode?(t="100%",s="100%"):(t="360px",s="680px"),{width:t,"max-height":s,transition:"width 0.5s"}},pageStyles:function(){var t="";""!=this.shared.settings.document.settings.bgImage&&(t="url('"+this.shared.settings.document.settings.bgImage+"')"),""!=this.shared.settings.document.settings.bgImage&&""!=this.shared.settings.document.settings.bgDimming&&(t="linear-gradient(0deg, rgba(0,0,0,0."+this.shared.settings.document.settings.bgDimming+"), rgba(0,0,0,0."+this.shared.settings.document.settings.bgDimming+")),url('"+this.shared.settings.document.settings.bgImage+"')");var s="";""!=this.shared.settings.document.settings.textFont&&(s=this.shared.settings.document.settings.textFont,!1===s.includes(",")&&(s+=", sans-serif"));var e="",o="";return""!=this.shared.settings.document.settings.textFontVariant&&(e=Z()(this.shared.settings.document.settings.textFontVariant),!1===lodash.isEmpty(this.shared.settings.document.settings.textFontVariant)&&(o=this.shared.settings.document.settings.textFontVariant.replace(/[0-9]/g,""))),""==this.shared.settings.document.settings.bgImage&&"g"==this.shared.settings.document.settings.bgStyle&&(t="linear"==this.shared.settings.document.settings.bgGradient.type?"linear-gradient("+this.shared.settings.document.settings.bgGradient.angle+"deg, "+this.shared.settings.document.settings.bgGradient.color1+" "+this.shared.settings.document.settings.bgGradient.color1location+"%, "+this.shared.settings.document.settings.bgGradient.color2+" "+this.shared.settings.document.settings.bgGradient.color2location+"%)":"radial-gradient(circle at "+this.shared.settings.document.settings.bgGradient.position+", "+this.shared.settings.document.settings.bgGradient.color1+" "+this.shared.settings.document.settings.bgGradient.color1location+"%, "+this.shared.settings.document.settings.bgGradient.color2+" "+this.shared.settings.document.settings.bgGradient.color2location+"%)"),{"background-color":this.shared.settings.document.settings.bgColor,"background-image":t,"font-family":s,"font-weight":e,"font-style":o}}},mounted:function(){var t=this;t.update_toolbar_position(),jQuery(window).resize(function(){t.update_toolbar_position()}),this.update_placeholder_css(),this.shared.code_container=this.$el.querySelector("#seedprod-builder-view"),this.shared.code_container=this.$refs.seedprodhtml},components:{draggable:E.a,Section:Hn,LiteCTATemplates:L,modal:j["a"]},beforeRouteLeave:function(t,s,e){var o=this,i=this;this.$validator.validateAll().then(function(t){if(t)e();else{var s="";o.errors.all().forEach(function(t){s=s+t+"\n"}),s+="",o.$swal({imageUrl:i.shared.plugin_path+"public/svg/success-24px-white.svg",text:s,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3})}})}},Bn=Vn,Ln=Object(w["a"])(Bn,Cn,kn,!1,null,null,null),Tn=Ln.exports,$n=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{attrs:{id:"seedprod-customizer-wrapper"}},[e("div",{staticClass:"sp-w-full",attrs:{id:"sp-builder-top"}},[e("div",{staticClass:"sp-flex sp-justify-between sp-items-center"},[e("div",{staticClass:"sp-flex sp-justify-between sp-items-center sp-h-full"},[e("svg",{staticClass:"sp-mx-6",attrs:{width:"32",height:"34",viewBox:"0 0 32 34",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0 0C0 0 0.74666 0.0506396 16.0822 2.054C31.4178 4.05737 36.7255 19.603 27.3358 33.1707C28.7883 21.0478 26.13 8.47161 15.4523 7.00138C4.77453 5.53114 5.70455 5.75641 5.70455 5.75641C5.70455 5.75641 5.88147 8.42652 6.8834 15.6043C7.88534 22.7821 13.4921 26.3022 18.3988 28.1143C18.3988 28.1143 18.6866 19.714 15.949 16.0165C13.2114 12.3191 9.80548 9.86362 9.80548 9.86362C9.80548 9.86362 17.8094 10.8232 20.8313 16.4032C23.8532 21.9832 23.5588 33.7778 23.5588 33.7778L20.2989 33.6092C11.5273 32.556 3.33239 27.2759 1.939 16.198C0.545613 5.1201 0 0 0 0Z",fill:"#7B6B7A"}})]),e("div",{staticClass:"sp-flex sp-justify-center sp-items-center",attrs:{id:"sp-builder-top-main-nav"}},[e("div",{staticClass:"sp-w-1/3"},[e("router-link",{attrs:{tag:"a",to:{name:"setup_block_options",params:{id:t.shared.lpage.id}}}},[e("div",[t._v(t._s(t.txt_1))])])],1),e("div",{staticClass:"sp-w-1/3"},[e("router-link",{attrs:{tag:"a",to:{name:"setup_settings_connect",params:{id:t.shared.lpage.id}},exact:""}},[e("div",[t._v(t._s(t.txt_2))])])],1),e("div",{staticClass:"sp-w-1/3"},[e("router-link",{attrs:{tag:"a",to:{name:"setup_settings",params:{id:t.shared.lpage.id}}}},[e("div",{staticClass:"sp-whitespace-no-wrap"},[t._v(t._s(t.txt_3))])])],1)])]),e("div",{attrs:{id:"sp-builder-top-main-nav-utlity"}},[e("a",{attrs:{id:"seedprod-builder-help",href:"https://seedprod.com/docs/",target:"_blank"}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"}})]),t._v("\n "+t._s(t.txt_20)+"\n ")]),e("div",{staticClass:"sp-relative"},[e("span",{staticClass:"sp-flex sp-items-center"},[e("button",{staticClass:"sp-btn sp-btn-primary sp-leading-none",attrs:{id:"seedprod-builder-save",disabled:1==t.shared.doing_ajax},on:{click:function(s){return s.preventDefault(),t.save_lpage(!1)}}},[e("span",{staticClass:"sp-flex sp-items-center"},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"}})]),t._v("\n "+t._s(t.txt_21)+"\n ")])]),e("button",{staticClass:"sp-btn sp-btn-primary",class:{active:t.show_adv_save_menu},attrs:{id:"seedprod-builder-save-dropdown"},on:{click:function(s){t.show_adv_save_menu=!t.show_adv_save_menu}}},[e("i",{staticClass:"fas fa-caret-down"})])]),e("transition",{attrs:{name:"seedprod"}},[!0===t.show_adv_save_menu?e("div",{staticClass:"sp-absolute",attrs:{id:"seedprod-builder-save-dropdown-menu"}},[e("button",{staticClass:"sp-btn sp-btn-publish sp-font-semibold",on:{click:t.update_post_status}},["draft"==this.shared.lpage.post_status?e("span",[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline sp-mr-2",attrs:{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7 17C6 17 3 14 3 13C3 12.667 3.333 12 4 11L0 10L2 7L6 8C10 2 16 0 20 0C20 4 18 10 12 14L13 18L10 20L9 16C8 16.667 7.333 17 7 17ZM6.04 13.96C6.394 14.315 6.759 14.632 7.063 14.85C7.286 14.726 7.564 14.554 7.891 14.336L10.891 12.336C14.789 9.736 17.13 5.92 17.799 2.201C14.08 2.871 10.263 5.211 7.664 9.109L5.664 12.109C5.446 12.436 5.274 12.714 5.149 12.937C5.369 13.241 5.685 13.607 6.039 13.961L6.04 13.96Z"}}),e("path",{attrs:{d:"M13.5 8C14.3284 8 15 7.32843 15 6.5C15 5.67157 14.3284 5 13.5 5C12.6716 5 12 5.67157 12 6.5C12 7.32843 12.6716 8 13.5 8Z"}}),e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2 14L3 15.5C2.333 16.167 2 17 2 18C3 18 3.833 17.667 4.5 17L6 18C4.667 19.333 2.667 20 0 20C0 17.333 0.667 15.333 2 14Z"}})]),t._v(t._s(t.txt_12)+"\n ")]):e("span",[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline sp-mr-2",attrs:{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7 17C6 17 3 14 3 13C3 12.667 3.333 12 4 11L0 10L2 7L6 8C10 2 16 0 20 0C20 4 18 10 12 14L13 18L10 20L9 16C8 16.667 7.333 17 7 17ZM6.04 13.96C6.394 14.315 6.759 14.632 7.063 14.85C7.286 14.726 7.564 14.554 7.891 14.336L10.891 12.336C14.789 9.736 17.13 5.92 17.799 2.201C14.08 2.871 10.263 5.211 7.664 9.109L5.664 12.109C5.446 12.436 5.274 12.714 5.149 12.937C5.369 13.241 5.685 13.607 6.039 13.961L6.04 13.96Z"}}),e("path",{attrs:{d:"M13.5 8C14.3284 8 15 7.32843 15 6.5C15 5.67157 14.3284 5 13.5 5C12.6716 5 12 5.67157 12 6.5C12 7.32843 12.6716 8 13.5 8Z"}}),e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2 14L3 15.5C2.333 16.167 2 17 2 18C3 18 3.833 17.667 4.5 17L6 18C4.667 19.333 2.667 20 0 20C0 17.333 0.667 15.333 2 14Z"}})]),t._v(t._s(t.txt_13)+"\n ")])]),e("button",{staticClass:"sp-btn sp-font-semibold",class:{"sp-pro-only":"seedprod_lite"==this.shared.page_path},on:{click:t.save_as_template}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"}})]),t._v(t._s(t.txt_15)+"\n ")])]):t._e()])],1),e("button",{attrs:{id:"seedprod-builder-close"},on:{click:t.close_builder}},[e("svg",{staticClass:"sp-w-6 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])])])]),e("div",{staticClass:"sp-flex sp-h-full"},["setup_settings_connect"!==t.$route.name?e("div",{staticClass:"sp-relative sp-transition-width sp-duration-700 sp-ease-out",class:{"sp-sidebar-drawer-closed":!t.sidebar,"sp-settings-page":t.$route.name.includes("settings")},attrs:{id:"seedprod-sidebar-wrapper"}},[t.$route.name.includes("settings")?t._e():e("div",{attrs:{id:"sp-bottom-nav-actions"}},[e("div",{staticClass:"sp-flex sp-justify-around sp-items-center sp-h-full"},[e("router-link",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Global Settings",offset:10,delay:{show:500,hide:0}},expression:"{content:'Global Settings',offset:10,delay:{ show: 500, hide: 0 }}"}],attrs:{tag:"button",to:{name:"setup_design",params:{id:t.shared.lpage.id}},exact:""}},[e("svg",{staticClass:"sp-w-5 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Layout Navigation",offset:10,delay:{show:500,hide:0}},expression:"{content:'Layout Navigation',offset:10,delay:{ show: 500, hide: 0 }}"}],class:{active:"layoutnav"==t.$router.currentRoute.name},on:{click:t.goto_layoutnav}},[e("svg",{staticClass:"sp-w-5 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Revision History",offset:10,delay:{show:500,hide:0}},expression:"{content:'Revision History',offset:10,delay:{ show: 500, hide: 0 }}"}],class:{active:"revisions"==t.$router.currentRoute.name},on:{click:t.goto_revisions}},[e("svg",{staticClass:"sp-w-5 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:t.devicettmsg,offset:10,delay:{show:500,hide:0}},expression:"{content:devicettmsg,offset:10,delay:{ show: 500, hide: 0 }}"}],on:{click:t.update_preview_mode}},["mobile"==t.shared.preview_mode?e("svg",{staticClass:"sp-w-5 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"}})]):e("svg",{staticClass:"sp-w-5 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"}})])]),e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Live Preview",offset:10,delay:{show:500,hide:0}},expression:"{content:'Live Preview',offset:10,delay:{ show: 500, hide: 0 }}"}],on:{click:t.preview}},[e("svg",{staticClass:"sp-w-5 sp-fill-current sp-inline-block",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"}})])])],1)]),e("div",{staticClass:"sp-flex sp-h-full",staticStyle:{width:"inherit"}},[e("div",{staticClass:"seedprod-sidebar-form sp-flex-grow sp-h-full sp-overflow-y-auto",staticStyle:{width:"inherit"}},[e("transition",{attrs:{name:"seedprod"}},[e("router-view",{attrs:{name:"sidebar"}})],1)],1),e("div",{staticClass:"sp-flex sp-items-center"},[e("span",{staticClass:"sp-flex sp-items-center sp-fixed sp-z-20 sp-text-neutral-40 hover:sp-text-primary",attrs:{id:"sp-sidebar-drawer"},on:{click:function(s){t.sidebar=!t.sidebar}}},[e("svg",{staticClass:"sp-w-6 sp-h-6 sp-fill-current",class:{"sp-hidden":!t.sidebar},attrs:{xmlns:"http://www.w3.org/2000/svg",height:"32",viewBox:"0 0 24 24",width:"32"}},[e("path",{attrs:{d:"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-6 sp-h-6 sp-fill-current",class:{"sp-hidden":t.sidebar},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])])])]):t._e(),e("div",{staticClass:"sp-flex-1",class:["sp-"+t.$route.name,{"sp-mobile-view-wrapper":"mobile"==t.shared.preview_mode}],attrs:{id:"seedprod-preview-wrapper"}},[e("router-view",{attrs:{name:"main"}})],1)]),t.showCloseModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showCloseModal=!1}}},[e("div",{staticClass:"sp-p-10 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("span",{staticClass:"sp-absolute sp-top-0 sp-right-0 hover:sp-text-neutral-60 sp-text-neutral-40 sp-cursor-pointer sp-mt-3 sp-mr-3",on:{click:function(s){t.showCloseModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),e("div",[e("div",{staticClass:"sp-text-neutral-20 sp-flex sp-justify-center sp-mb-6"},[e("svg",{staticClass:"sp-fill-current sp-w-24",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"}})])]),e("div",[t._v(t._s(t.txt_4))])]),e("button",{staticClass:"sp-mt-4 sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.saving_template},on:{click:function(s){return t.save_exit()}}},[t._v("\n "+t._s(t.txt_19)+"\n "),t.saving_template?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]),e("a",{staticClass:"sp-ml-3 sp-mt-8 sp-inline-block sp-bg-neutral-15 sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-base hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold",attrs:{href:"?page="+t.shared.page_path}},[t._v(t._s(t.txt_5))])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showTemplateConfirmModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showTemplateConfirmModal=!1}}},[e("div",{staticClass:"sp-p-10 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showTemplateConfirmModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("div",{staticClass:"sp-text-neutral-20 sp-flex sp-justify-center sp-mb-6"},[e("svg",{staticClass:"sp-fill-current sp-w-24",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"}})])]),e("div",{staticClass:"sp-font-bold sp-text-lg"},[t._v('"'+t._s(t.template_page_name)+'" '+t._s(t.txt_6))]),e("div",{staticClass:"sp-text-lg sp-mt-2"},[t._v(t._s(t.txt_7))]),e("button",{staticClass:"sp-mt-5 sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.saving_template},on:{click:function(s){t.showTemplateConfirmModal=!1}}},[t._v("\n "+t._s(t.txt_16)+"\n "),t.saving_template?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showTemplateModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showTemplateModal=!1}}},[e("div",{staticClass:"sp-p-10 sp-text-neutral sp-relative sp-font-sans",attrs:{slot:"body"},slot:"body"},[e("div",[e("div",{staticClass:"sp-text-neutral-20 sp-flex sp-justify-center sp-mb-6"},[e("svg",{staticClass:"sp-fill-current sp-w-24",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"}})])]),e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-2 sp-inline-block"},[t._v(t._s(t.txt_8))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.template_page_name,expression:"template_page_name"},{name:"validate",rawName:"v-validate",value:"required",expression:"'required'"}],staticClass:"sp-form-input sp-w-full",attrs:{type:"text","data-vv-as":"Template Name",name:"template_page_name",placeholder:""},domProps:{value:t.template_page_name},on:{input:function(s){s.target.composing||(t.template_page_name=s.target.value)}}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("template_page_name"),expression:"errors.has('template_page_name')"}],staticClass:"help-block error"},[t._v("\n "+t._s(t.errors.first("template_page_name"))+"\n ")])]),e("button",{staticClass:"sp-mt-4 sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.saving_template},on:{click:function(s){return t.save_template_step1("page")}}},[t._v("\n "+t._s(t.txt_17)+"\n "),t.saving_template?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]),e("button",{staticClass:"sp-ml-3 sp-mt-8 sp-inline-block sp-bg-neutral-15 sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-base hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold",on:{click:function(s){t.showTemplateModal=!1}}},[t._v(t._s(t.txt_9))])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showPublishModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showPublishModal=!1}}},[e("div",{staticClass:"sp-p-10 sp-text-neutral sp-flex sp-flex-col sp-items-center",attrs:{slot:"body"},slot:"body"},[e("div",{staticClass:"sp-text-neutral-20 sp-flex sp-justify-center sp-mb-6"},[e("svg",{staticClass:"sp-fill-current sp-w-24",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7 17C6 17 3 14 3 13C3 12.667 3.333 12 4 11L0 10L2 7L6 8C10 2 16 0 20 0C20 4 18 10 12 14L13 18L10 20L9 16C8 16.667 7.333 17 7 17ZM6.04 13.96C6.394 14.315 6.759 14.632 7.063 14.85C7.286 14.726 7.564 14.554 7.891 14.336L10.891 12.336C14.789 9.736 17.13 5.92 17.799 2.201C14.08 2.871 10.263 5.211 7.664 9.109L5.664 12.109C5.446 12.436 5.274 12.714 5.149 12.937C5.369 13.241 5.685 13.607 6.039 13.961L6.04 13.96Z"}}),e("path",{attrs:{d:"M13.5 8C14.3284 8 15 7.32843 15 6.5C15 5.67157 14.3284 5 13.5 5C12.6716 5 12 5.67157 12 6.5C12 7.32843 12.6716 8 13.5 8Z"}}),e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2 14L3 15.5C2.333 16.167 2 17 2 18C3 18 3.833 17.667 4.5 17L6 18C4.667 19.333 2.667 20 0 20C0 17.333 0.667 15.333 2 14Z"}})])]),e("div",{staticClass:"sp-text-2xl sp-font-bold sp-text-neutral sp-my-4"},[t._v(t._s(t.txt_10))]),e("div",{staticClass:"sp-flex sp-items-center sp-mt-4"},[e("button",{staticClass:"sp-inline-block sp-bg-green sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.saving_template},on:{click:function(s){return t.preview()}}},[t._v("\n "+t._s(t.txt_18)+"\n "),t.saving_template?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]),e("button",{staticClass:"sp-ml-3 sp-inline-block sp-bg-neutral-15 sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-base hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold",on:{click:function(s){t.showPublishModal=!1}}},[t._v(t._s(t.txt_11))])])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"saved-template",feature:"Saved Templates"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},Pn=[],Nn={name:"setup",mixins:[m["a"]],data:function(){return{txt_1:Object(b["a"])("Design","coming-soon"),txt_2:Object(b["a"])("Connect","coming-soon"),txt_3:Object(b["a"])("Page Settings","coming-soon"),txt_4:Object(b["a"])("You have unsaved changes. Are you sure you want to lose these changes?","coming-soon"),txt_5:Object(b["a"])("Exit Without Saving","coming-soon"),txt_6:Object(b["a"])("template has been saved!","coming-soon"),txt_7:Object(b["a"])("You can find it in your template library when you create a new landing page.","coming-soon"),txt_8:Object(b["a"])("Enter a new template name:","coming-soon"),txt_9:Object(b["a"])("Cancel","coming-soon"),txt_10:Object(b["a"])("Your page has been published!","coming-soon"),txt_11:Object(b["a"])("Close","coming-soon"),txt_12:Object(b["a"])("Publish","coming-soon"),txt_13:Object(b["a"])("Unpublish","coming-soon"),txt_14:Object(b["a"])("Schedule","coming-soon"),txt_15:Object(b["a"])("Save as Template","coming-soon"),txt_16:Object(b["a"])("Return to Page Editor","coming-soon"),txt_17:Object(b["a"])("Save Template","coming-soon"),txt_18:Object(b["a"])("See Live Page","coming-soon"),txt_19:Object(b["a"])("Save and Exit","coming-soon"),txt_20:Object(b["a"])("Help","coming-soon"),txt_21:Object(b["a"])("Save","coming-soon"),txt_22:Object(b["a"])("Saved!","coming-soon"),showCloseModal:!1,showPublishModal:!1,saving_template:!1,template_page_name:"",showTemplateModal:!1,showTemplateConfirmModal:!1,sidebar:!0,show_adv_save_menu:!1,shared:seedprod_store,showUpsellModal:!1}},components:{LiteCTABuilder:Ls["a"],modal:j["a"]},inject:{$validator:"$validator"},computed:{sidebar_close_text:function(){var t="Hide Sidebar";return this.sidebar||(t="Show Sidebar"),t},sidebarStyleObject:function(){var t="0";return this.sidebar||(t="-320px"),{"margin-left":t}},devicettmsg:function(){var t="Desktop Preview";return"desktop"==this.shared.preview_mode&&(t="Mobile Preview"),t}},methods:{keycode:function(){console.log(this),console.log("key")},save_as_template:function(){"seedprod_lite"!=this.shared.page_path?(this.showTemplateModal=!0,this.show_adv_save_menu=!1):this.showUpsellModal=!0},save_template_step1:function(){if("seedprod_lite"==this.shared.page_path)return this.showUpsellModal=!0,!1;var t=this;this.$validator.validateAll().then(function(s){if(s)t.saving_template=!0,t.save_template_step2(t.selected_template_id);else{var e="";t.errors.all().forEach(function(t){e=e+t+"\n"}),e+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:e,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})}})},save_template_step2:function(t){arguments.length>1&&void 0!==arguments[1]&&arguments[1];var s=this;g.a.start();var e={api_token:this.shared.api_token,site_token:this.shared.site_token,type:"page",code:i()({document:this.shared.settings.document}),name:this.template_page_name};this.axios.post(seedprod_remote_api+"template-save",e).then(function(t){g.a.done(),s.showTemplateModal=!1,s.saving_template=!1,s.showTemplateConfirmModal=!0}).catch(function(t){g.a.done(),s.saving_template=!1,console.log(t),s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:6e3})})},goto_layoutnav:function(){"layoutnav"!=this.$router.currentRoute.name&&this.$router.push({name:"layoutnav"})},goto_revisions:function(){"revisions"!=this.$router.currentRoute.name&&this.$router.push({name:"revisions"})},update_preview_mode:function(){"desktop"==this.shared.preview_mode?(this.shared.preview_mode="mobile",this.update_mobile_css()):this.shared.preview_mode="desktop"},update_post_status:function(){var t="draft";"draft"==this.shared.lpage.post_status?(t="publish",this.showPublishModal=!0,this.shared.lpage.post_status=t,this.save_lpage(!0)):(this.shared.lpage.post_status=t,this.save_lpage())},preview:function(){this.save_lpage(!1,!1,"autosave")},save_exit:function(){this.save_lpage(!1,!0)},close_builder:function(){i()(seedprod_store.settings)!==seedprod_store.settings_org?this.showCloseModal=!0:window.location.href="?page="+this.shared.page_path},save_lpage:function(){var t=this,s=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"save";this.update_head_css(),this.update_placeholder_css(),this.update_mobile_css(),this.shared.lpage.html=jQuery("#seedprod-builder-view #sp-html-code").html(),this.show_adv_save_menu=!1,this.shared.active_inline_editor_id=!1;var a=this;this.$validator.validateAll().then(function(n){if(n){var l="";if(!1===lodash.isEmpty(t.shared.lpage.html)){l=t.shared.lpage.html;l=l.replace(/<span class=\"sp-hidden\">START-REMOVE<\/span>[\s\S]+?<span class=\"sp-hidden\">END-REMOVE<\/span>/g,""),l=l.replace(/<span class=\"sp-hidden\">START-COUNTDOWN-REMOVE<\/span>[\s\S]+?<span class=\"sp-hidden\">END-COUNTDOWN-REMOVE<\/span>/g,"00"),l=l.replace(/<\s*main[^>]*>/g,""),l=l.replace(/<\/main>/g,""),l=l.replace(/sp-relative/g,""),l=l.replace(/<!---->/g,""),l=l.replace(/&quot;/g,"'")}var r=d.a.stringify({save_type:o,lpage_id:t.shared.lpage.id,lpage_name:t.shared.lpage.post_title,lpage_slug:t.shared.lpage.post_name,lpage_html:l,lpage_post_status:t.shared.lpage.post_status,settings:i()(t.shared.settings)});return!1===s&&(a.shared.doing_ajax=!0,g.a.configure({showSpinner:!1}),g.a.start()),void t.axios.post("admin-ajax.php?action="+t.shared.page_path+"_save_lpage&_wpnonce="+seedprod_nonce,r,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){"autosave"===o&&window.open(a.shared.preview_link,"wp-preview-"+a.shared.lpage.id),!1===s&&(g.a.done(),a.shared.doing_ajax=!1,a.$swal({imageUrl:a.shared.plugin_path+"public/svg/success-24px-white.svg",text:Object(b["a"])("Saved!","coming-soon"),toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3})),a.shared.settings_org=i()(a.shared.settings),a.shared.current_revision_active_index=-1,e&&(window.location.href="?page="+a.shared.page_path)}).catch(function(t){console.log(t),g.a.done();var s=Object(b["a"])("Something has prevented the page from being saved. The host you are using may have a security setting preventing it from being saved. Refresh the page and try again.","coming-soon");t.response.data.msg&&(s=t.response.data.msg),a.shared.doing_ajax=!1,a.$swal({imageUrl:a.shared.plugin_path+"public/svg/error-24px-white.svg",text:s,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:6e3})})}var c="";t.errors.all().forEach(function(t){c=c+t+"\n"}),c+="",t.$swal({imageUrl:a.shared.plugin_path+"public/svg/error-24px-white.svg",text:c,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})}},created:function(){!0===this.shared.settings.is_new&&(this.shared.settings.is_new=!1),""===this.shared.settings.template_id&&location.replace("admin.php?page="+this.shared.page_path+"_template&id="+this.shared.lpage.id+"#/template/"+this.shared.lpage.id)},mounted:function(){"setup"==this.$route.name&&this.$router.push({name:"setup_block_options",params:{id:this.shared.lpage.id}})},beforeRouteLeave:function(t,s,e){var o=!0;i()(seedprod_store.settings)!==seedprod_store.settings_org&&(o=window.confirm(Object(b["a"])("Changes not saved, are you sure you want to leave?","coming-soon"))),o?(seedprod_store.settings=JSON.parse(seedprod_store.settings_org),e()):e(!1)}},Rn=Nn,Fn=Object(w["a"])(Rn,$n,Pn,!1,null,null,null),An=Fn.exports;a["default"].use(y["a"]);var En=new y["a"]({routes:[{path:"/",redirect:{name:"setup_block_options"}},{name:"template",path:"/template/:id?",component:N},{path:"/setup/:id",component:An,name:"setup",children:[{name:"setup_block_options",path:"block-options/:blockid?",components:{sidebar:Ui,main:Tn}},{name:"revisions",path:"revisions",components:{sidebar:qa,main:Tn}},{name:"layoutnav",path:"layoutnav",components:{sidebar:sn,main:Tn}},{name:"sectiontemplates",path:"sectiontemplates",components:{sidebar:cn,main:vn}},{name:"setup_design",path:"global",components:{sidebar:sa,main:Tn}},{name:"setup_settings",path:"settings",components:{sidebar:la,main:Na}},{name:"setup_settings_general",path:"settings/general",components:{sidebar:la,main:Na}},{name:"setup_settings_seo",path:"settings/seo",components:{sidebar:la,main:ga}},{name:"setup_settings_domain",path:"settings/domain",components:{sidebar:la,main:Va}},{name:"setup_settings_analytics",path:"settings/analytics",components:{sidebar:la,main:fa}},{name:"setup_settings_scripts",path:"settings/scripts",components:{sidebar:la,main:za}},{name:"setup_settings_connect",path:"connect",components:{sidebar:null,main:Ua}},{name:"setup_settings_access",path:"settings/access",components:{sidebar:la,main:wn}}]}],linkActiveClass:"active"}),In=y["a"].prototype.push;y["a"].prototype.push=function(t){return In.call(this,t).catch(function(t){return t})};var Un=En,Dn=e("7bb1"),Wn=e("4eb5"),Gn=e.n(Wn),Zn=e("e37d"),Jn=e("619c"),qn=e("bc3a"),Yn=e.n(qn),Xn=e("a7fe"),Kn=e.n(Xn),Qn=e("f206"),tl=e("407d"),sl=e.n(tl),el=e("4971"),ol=e.n(el),il=(e("24df"),e("3f9b"));a["default"].config.devtools=!0,window.tinymce=tinymce,window.lodash=_.noConflict(),a["default"].component(sl.a.name,sl.a),a["default"].component("VueSlider",ol.a),a["default"].use(il["a"]),a["default"].component("ToggleButton",Qn["ToggleButton"]),a["default"].use(Dn["a"]),a["default"].use(Jn["a"]),a["default"].use(Gn.a),a["default"].use(Zn["a"],{defaultClass:"seedprod-tooltip"}),a["default"].use(Kn.a,Yn.a),a["default"].config.productionTip=!1;var al={show_bottombar_cta:seedprod_data.show_bottombar_cta,last_block_added:!1,section_template_id_stub_index:!1,template_preview_path:seedprod_data.template_preview_path,page_uuid:seedprod_data.page_uuid,stop:!0,my_ip:seedprod_data.my_ip,plugins_installed:seedprod_data.plugins_installed,giveaway_plugins_installed:seedprod_data.giveaway_plugins_installed,form_plugins_installed:seedprod_data.form_plugins_installed,seo_plugins_installed:seedprod_data.seo_plugins_installed,analytics_plugins_installed:seedprod_data.analytics_plugins_installed,saved_blocks:[],checked_for_saved_blocks:!1,page_type:seedprod_data.page_type,recent_colors:[],current_revision_store:!1,current_revision_active_index:-1,current_user_name:seedprod_data.current_user_name,current_user_email_hash:seedprod_data.current_user_email_hash,code_container:!1,active_inline_editor_id:!1,revisions:[],preview_mode:"desktop",preview_link:seedprod_data.preview_link,builder_top:!1,api_token:seedprod_data.api_token,seedprod_user_id:seedprod_data.seedprod_user_id,site_token:seedprod_data.site_token,license_key:seedprod_data.license_key,per:seedprod_data.per,view:"builder",page_path:seedprod_data.page_path,web_path:seedprod_data.web_path,upgrade_link:seedprod_data.upgrade_link,doing_ajax:!1,doing_revisions_ajax:!1,highlight_option:!1,highlight_option_target:!1,is_moving:!1,mousedown_el:!1,home_url:seedprod_data.home_url,block_templates:seedprod_data.block_templates,sections_templates:{cats:!1,templatecat:"",templatesearch:"",themes:!1,saved:!1,favs:!1},setup_page_meta:{placeholder_image:seedprod_data.placeholder_image,placeholder_sm_image:seedprod_data.placeholder_sm_image,expire_times:seedprod_data.expire_times,current_block:!1,timezones:seedprod_data.timezones,times:seedprod_data.times,show_stockphotos_modal:!1,block_options:seedprod_data.block_options,icons:seedprod_data.icons,googlefonts:seedprod_data.googlefonts,email_integration_url:seedprod_data.email_integration_url,roles:seedprod_data.roles},plugin_path:seedprod_data.plugin_path,lpage:seedprod_data.lpage,settings:seedprod_data.settings,expand_collapse_state:{show_detail_settings:!0,show_time_settings:!0,show_entry_settings:!0,show_entry_settings_2:!0,show_entry_settings_3:!0,show_design_settings:!0,show_background_settings:!0,show_customcss_settings:!0,show_action_refer_a_friend:!0,show_action_refer_a_friend_fb:!1,show_action_refer_a_friend_twitter:!1,show_action_refer_a_friend_pinterest:!1,show_action_refer_a_friend_linkedin:!1,show_action_refer_a_friend_email:!1,show_action_visit_fb:!0,show_action_twitter_follow:!0,show_action_instagram_follow:!0,show_action_pinterest_follow:!0,show_action_youtube_follow:!0,show_action_join_newsletter:!0,show_action_fb_page_post:!0,show_action_instagram_page_post:!0,show_action_watch_a_video:!0,show_action_tweet:!0,show_action_visit_a_page:!0,show_action_question:!0,show_action_invent_your_own:!0,show_action_automatic_entry:!0,show_action_images:!0,show_action_polls:!0}};void 0==al.settings.show_powered_by_link&&"seedprod_pro"==al.page_path&&(al.settings.show_powered_by_link=!0),void 0==al.settings.show_powered_by_link&&"seedprod_lite"==al.page_path&&(al.settings.show_powered_by_link=!1),window.seedprod_store=al;var nl,ll=new a["default"]({router:Un,comments:!0,mounted:function(){document.getElementsByClassName("seedprod-builder")[0]&&(document.getElementsByClassName("seedprod-builder")[0].style.display="block"),al.settings_org=i()(al.settings)},render:function(t){return t(k)}}).$mount("#seedprod-vue-app-builder");window.seedprod_app=ll,window.media_uploader=nl;var rl=function(){iFrameResize({log:!1,checkOrigin:!1},"#inline-help")};window.help_iframe=rl},"714b":function(t,s,e){"use strict";var o=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("transition",{attrs:{name:"seedprod-modal"}},[e("div",{staticClass:"seedprod-modal-mask",on:{click:function(s){return s.target!==s.currentTarget?null:t.$emit("close")}}},[e("div",{staticClass:"seedprod-modal-wrapper"},[e("div",{staticClass:"seedprod-modal-container"},[e("div",{staticClass:"seedprod-modal-header"},[t._t("header",[t._v(t._s(t.txt_1))])],2),e("div",{staticClass:"seedprod-modal-body"},[t._t("body",[t._v(t._s(t.txt_2))])],2)])])])])},i=[],a=e("561c"),n={data:function(){return{txt_1:Object(a["a"])("default header","coming-soon"),txt_2:Object(a["a"])("default body","coming-soon")}},name:"modal"},l=n,r=e("2877"),c=Object(r["a"])(l,o,i,!1,null,null,null);s["a"]=c.exports},"797f":function(t,s,e){"use strict";e.r(s);var o,i,a,n,l,r,c,p,d,u,g,h,v,m,_,b,f,x,w,C,k,y,z,O,j,M,S=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-el-row sm:sp-flex sp-justify-between sp-w-full sp-relative sp-m-auto",class:t.rowClasses,style:t.rowStyleObject,attrs:{id:"sp-"+t.row.id},on:{mouseover:function(s){return s.stopPropagation(),t.highlight_option_target(t.row.id)},"!click":function(s){return t.edit_block(t.row.id,t.row.cols.length)}}},[e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),0===t.row.cols.length?e("div",{staticClass:"sp-el-col sp-p-4 sp-w-full"},[e("div",{staticClass:"sp-bg-white",attrs:{id:"sp-sp-bottom-row-dropzone"}},[!1===t.show_cols?e("div",[e("draggable",{staticClass:"sp-bottom-row-dropzone",attrs:{list:t.section_dropzone,group:{name:"blocks",put:!0,pull:!1},"ghost-class":"sp-exclude-ghost","chosen-class":"sp-exclude-chosen",draggable:".none"},on:{add:function(s){return t.add_new_row_block(s,t.row,t.sindex,t.rindex)}}},t._l(t.section_dropzone,function(s,o){return e("div",{key:o,staticClass:"sp-flex sp-justify-center sp-py-2 sp-items-center sp-bg-blue-10 sp-border-blue sp-border-dotted sp-border-2 sp-relative"},[e("div",{staticClass:"sp-flex sp-justify-center sp-items-center"},[e("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Columns",delay:{show:500,hide:0}},expression:"{content:'Add Columns',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-bg-blue hover:sp-bg-primary sp-flex sp-justify-center sp-items-center sp-w-8 sp-h-8 sp-rounded-full sp-text-white sp-mr-2",on:{click:function(s){return t.set_show_cols(!0)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z"}})])])]),e("div",{staticClass:"sp-px-2 sp-italic sp-text-xs sp-text-blue sp-font-sans"},[t._v(t._s(t.txt_2))]),e("div",{staticClass:"sp-font-bold sp-text-xs sp-text-blue sp-cursor-pointer sp-font-sans",on:{click:t.add_block}},[t._v(t._s(t.txt_3))]),t.shared.settings.document.sections[t.sindex].rows.length>1?e("button",{staticClass:"sp-absolute sp-right-0 sp-text-blue sp-mr-2",on:{click:function(s){return t.delete_blank_element(t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]):t._e()])}),0)],1):e("div",[e("div",{staticClass:"sp-flex sp-justify-center sp-py-2 sp-items-center sp-bg-blue-10 sp-border-blue sp-border-dotted sp-border-2 sp-relative sp-flex-col"},[e("div",{staticClass:"sp-font-bold sp-text-xs sp-text-blue sp-pb-6 sp-pt-2 sp-font-sans"},[t._v(t._s(t.txt_4))]),e("div",{staticClass:"sp-flex sp-text-blue-50 sp-pb-5"},[e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("1-col",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("rect",{attrs:{width:"80",height:"32",rx:"1"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("right-sidebar",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 0.999999 32H52C52.5523 32 53 31.5523 53 31V1C53 0.447715 52.5523 0 52 0H1Z"}}),e("path",{attrs:{d:"M57 0C56.4477 0 56 0.447715 56 1V31C56 31.5523 56.4477 32 57 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H57Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("left-sidebar",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M24 0C24.5523 0 25 0.447715 25 1V31C25 31.5523 24.5523 32 24 32H1C0.447716 32 0 31.5523 0 31V1C0 0.447715 0.447716 0 1 0H24Z"}}),e("path",{attrs:{d:"M80 0C80.5523 0 81 0.447715 81 1V31C81 31.5523 80.5523 32 80 32H29C28.4477 32 28 31.5523 28 31V1C28 0.447715 28.4477 0 29 0H80Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("2-col",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 1 32H38C38.5523 32 39 31.5523 39 31V1C39 0.447715 38.5523 0 38 0H1Z"}}),e("path",{attrs:{d:"M43 0C42.4477 0 42 0.447715 42 1V31C42 31.5523 42.4477 32 43 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H43Z"}})])])]),e("div",{staticClass:"sp-flex sp-text-blue-50 sp-pb-4"},[e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("3-col",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M0 1C0 0.447715 0.447715 0 1 0H24C24.5523 0 25 0.447715 25 1V31C25 31.5523 24.5523 32 24 32H1C0.447716 32 0 31.5523 0 31V1Z"}}),e("path",{attrs:{d:"M28 1C28 0.447715 28.4477 0 29 0H52C52.5523 0 53 0.447715 53 1V31C53 31.5523 52.5523 32 52 32H29C28.4477 32 28 31.5523 28 31V1Z"}}),e("path",{attrs:{d:"M57 0C56.4477 0 56 0.447715 56 1V31C56 31.5523 56.4477 32 57 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H57Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("4-col",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447716 32 1 32H17C17.5523 32 18 31.5523 18 31V1C18 0.447715 17.5523 0 17 0H1Z"}}),e("path",{attrs:{d:"M22 0C21.4477 0 21 0.447715 21 1V31C21 31.5523 21.4477 32 22 32H38C38.5523 32 39 31.5523 39 31V1C39 0.447715 38.5523 0 38 0H22Z"}}),e("path",{attrs:{d:"M42 1C42 0.447715 42.4477 0 43 0H59C59.5523 0 60 0.447715 60 1V31C60 31.5523 59.5523 32 59 32H43C42.4477 32 42 31.5523 42 31V1Z"}}),e("path",{attrs:{d:"M64 0C63.4477 0 63 0.447715 63 1V31C63 31.5523 63.4477 32 64 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H64Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("5-col",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M0 1C0 0.447715 0.447715 0 1 0H13C13.5523 0 14 0.447715 14 1V31C14 31.5523 13.5523 32 13 32H1C0.447716 32 0 31.5523 0 31V1Z"}}),e("path",{attrs:{d:"M17 1C17 0.447715 17.4477 0 18 0H30C30.5523 0 31 0.447715 31 1V31C31 31.5523 30.5523 32 30 32H18C17.4477 32 17 31.5523 17 31V1Z"}}),e("path",{attrs:{d:"M35 0C34.4477 0 34 0.447715 34 1V31C34 31.5523 34.4477 32 35 32H47C47.5523 32 48 31.5523 48 31V1C48 0.447715 47.5523 0 47 0H35Z"}}),e("path",{attrs:{d:"M51 1C51 0.447715 51.4477 0 52 0H64C64.5523 0 65 0.447715 65 1V31C65 31.5523 64.5523 32 64 32H52C51.4477 32 51 31.5523 51 31V1Z"}}),e("path",{attrs:{d:"M69 0C68.4477 0 68 0.447715 68 1V31C68 31.5523 68.4477 32 69 32H81C81.5523 32 82 31.5523 82 31V1C82 0.447715 81.5523 0 81 0H69Z"}})])]),e("button",{staticClass:"sp-px-3 hover:sp-text-blue",on:{click:function(s){return t.add_cols_action("6-col",t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current",attrs:{width:"81",height:"32",viewBox:"0 0 81 32",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M1 0C0.447715 0 0 0.447715 0 1V31C0 31.5523 0.447715 32 1 32H10C10.5523 32 11 31.5523 11 31V1C11 0.447715 10.5523 0 10 0H1Z"}}),e("path",{attrs:{d:"M15 0C14.4477 0 14 0.447715 14 1V31C14 31.5523 14.4477 32 15 32H24C24.5523 32 25 31.5523 25 31V1C25 0.447715 24.5523 0 24 0H15Z"}}),e("path",{attrs:{d:"M28 1C28 0.447715 28.4477 0 29 0H38C38.5523 0 39 0.447715 39 1V31C39 31.5523 38.5523 32 38 32H29C28.4477 32 28 31.5523 28 31V1Z"}}),e("path",{attrs:{d:"M43 0C42.4477 0 42 0.447715 42 1V31C42 31.5523 42.4477 32 43 32H52C52.5523 32 53 31.5523 53 31V1C53 0.447715 52.5523 0 52 0H43Z"}}),e("path",{attrs:{d:"M56 1C56 0.447715 56.4477 0 57 0H66C66.5523 0 67 0.447715 67 1V31C67 31.5523 66.5523 32 66 32H57C56.4477 32 56 31.5523 56 31V1Z"}}),e("path",{attrs:{d:"M71 0C70.4477 0 70 0.447715 70 1V31C70 31.5523 70.4477 32 71 32H80C80.5523 32 81 31.5523 81 31V1C81 0.447715 80.5523 0 80 0H71Z"}})])])]),0!=t.rindex?e("button",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-blue sp-mt-2 sp-mr-2",on:{click:function(s){return t.delete_blank_element(t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]):t._e()])])])]):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{staticClass:"sp-flex sp-absolute sp-block-toolbar sp-justify-center sp-top-0 sp-left-0",class:{"sp-tb-row-bottom":t.shared.builder_top<25&&0===t.rindex&&0===t.sindex}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.shared.highlight_option_target==t.row.id&&0==t.shared.is_moving&&0!==t.row.cols.length,expression:"shared.highlight_option_target == row.id && shared.is_moving == false && row.cols.length !== 0 "}],staticClass:"sp-flex sp-border-none sp-text-white sp-z-60"},[e("span",{staticClass:"sp-text-blue",staticStyle:{"margin-right":"-2px"}},[e("svg",{staticClass:"sp-fill-current sp-w-5",staticStyle:{width:"31.2px"},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 30.2 27.7"}},[e("path",{attrs:{d:"M29.9,27.5V0.1c-5.6,0-10.7,3.1-13.3,8L9.1,22.2c-1.7,3.3-5.1,5.3-8.8,5.3L29.9,27.5z"}})])]),e("span",{staticClass:"sp-bg-blue sp-flex sp-items-center"},[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Move Row",delay:{show:500,hide:0}},expression:"{content:'Move Row',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-drag-row sp-cursor-move sp-p-1 hover:sp-bg-blue-darker"},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z"}}),e("circle",{attrs:{cx:"12",cy:"12",r:"3"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Row Settings",delay:{show:500,hide:0}},expression:"{content:'Row Settings',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-blue-darker",on:{click:function(s){return t.edit_block(t.row.id)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),t.row.cols&&t.row.cols.length>1?e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Resize Columns",delay:{show:500,hide:0}},expression:"{content:'Resize Columns',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-blue-darker",on:{click:function(s){return t.resize_cols(t.row)}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z"}})])]):t._e(),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate Row",delay:{show:500,hide:0}},expression:"{content:'Duplicate Row',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-blue-darker",on:{click:function(s){return t.duplicate_element(t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete Row",delay:{show:500,hide:0}},expression:"{content:'Delete Row',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-blue-darker",on:{click:function(s){return t.delete_element(t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z"}})])])]),e("span",{staticClass:"sp-text-blue",staticStyle:{"margin-left":"-1px"}},[e("svg",{staticClass:"sp-fill-current sp-w-5",staticStyle:{width:"31.2px"},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 30.2 27.7"}},[e("path",{attrs:{d:"M29.9,27.6c-3.7,0-7.1-2.1-8.8-5.3L13.6,8.1c-2.6-4.9-7.7-8-13.3-8v27.4L29.9,27.6z"}})])])])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),t._l(t.row.cols,function(s,o){return e("div",{key:s.id,staticClass:"sp-el-col sp-p-4 sp-relative",class:t.colClass(t.row,o,s),style:t.col_style(t.row.settings,s.settings,t.row),attrs:{id:"sp-"+s.id},on:{click:function(e){return t.maybe_add_block(s.blocks.length)}}},[e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("span",{directives:[{name:"show",rawName:"v-show",value:t.shared.highlight_option_target==t.row.id&&0==t.shared.is_moving&&0!==t.row.cols.length,expression:"shared.highlight_option_target == row.id && shared.is_moving == false && row.cols.length !== 0"},{name:"tooltip",rawName:"v-tooltip",value:{content:"Column Settings",delay:{show:500,hide:0}},expression:"{content:'Column Settings',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-absolute sp-top-0 sp-right-0 sp-z-40 hover:sp-bg-blue-darker sp-bg-blue sp-text-white sp-p-1 sp-rounded-bl sp-cursor-pointer",on:{click:function(e){return t.edit_block(s.id,null,!0)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),e("draggable",{staticClass:"sp-el-block-wrapper",attrs:{tag:"main",list:s.blocks,group:"blocks",handle:".sp-drag-block",move:t.moving},on:{start:t.start_move,end:t.end_move}},t._l(s.blocks,function(s,i){return e("main",{key:s.id,staticClass:"sp-el-block",class:"sp-"+s.type,attrs:{id:"sp-"+s.id}},[e("main",{staticClass:"sp-relative sp-w-full",class:{"sp-highlight-block":"image"!=s.type&&"video"!=s.type&&"button2"!=s.type&&(t.shared.highlight_option_target==s.id&&0==t.shared.is_moving||t.shared.setup_page_meta.current_block.id==s.id&&t.$route.params.blockid)},on:{mouseover:function(e){return e.stopPropagation(),t.highlight_option_target(s.id)},click:function(e){return t.edit_block(s.id)}}},[e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),"image"==s.type||"video"==s.type||"2button"==s.type?e("div",{staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0",class:{"sp-highlight-block":t.shared.highlight_option_target==s.id&&0==t.shared.is_moving||t.shared.setup_page_meta.current_block.id==s.id&&t.$route.params.blockid},on:{click:function(e){return t.edit_block(s.id)}}}):t._e(),e("div",{staticClass:"sp-flex sp-absolute sp-block-toolbar sp-justify-center",class:{"sp-tb-block-bottom":t.shared.builder_top<25&&0===i&&0===t.rindex&&0===t.sindex}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.shared.highlight_option_target==s.id&&0==t.shared.is_moving,expression:" shared.highlight_option_target == block.id && shared.is_moving == false"}],staticClass:"sp-flex sp-border-none sp-border sp-text-white sp-z-70"},[e("span",{staticClass:"sp-text-primary",staticStyle:{"margin-right":"-2px"}},[e("svg",{staticClass:"sp-fill-current sp-w-5",staticStyle:{width:"31.2px"},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 30.2 27.7"}},[e("path",{attrs:{d:"M29.9,27.5V0.1c-5.6,0-10.7,3.1-13.3,8L9.1,22.2c-1.7,3.3-5.1,5.3-8.8,5.3L29.9,27.5z"}})])]),e("span",{staticClass:"sp-bg-primary sp-flex sp-items-center"},[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Move Row",delay:{show:500,hide:0}},expression:"{content:'Move Row',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-drag-block sp-cursor-move sp-p-1 hover:sp-bg-primary-darker",on:{mousedown:function(e){return t.remove_editor(s.id)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z"}}),e("circle",{attrs:{cx:"12",cy:"12",r:"3"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Block Settings",delay:{show:500,hide:0}},expression:"{content:'Block Settings',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-primary-darker",on:{click:function(e){return t.edit_block(s.id)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Save Block",delay:{show:500,hide:0}},expression:"{content:'Save Block',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-primary-darker",on:{click:function(e){return t.save_element(s,"block")}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Duplicate Block",delay:{show:500,hide:0}},expression:"{content:'Duplicate Block',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-primary-darker",on:{click:function(e){return t.duplicate_element(s,t.sindex,t.rindex,o,i)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"}})])]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Delete Row",delay:{show:500,hide:0}},expression:"{content:'Delete Row',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-rounded-full sp-cursor-pointer sp-p-1 hover:sp-bg-primary-darker",on:{click:function(s){return t.delete_element(t.sindex,t.rindex,o,i)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z"}})])])]),e("span",{staticClass:"sp-text-primary",staticStyle:{"margin-left":"-1px"}},[e("svg",{staticClass:"sp-fill-current sp-w-5",staticStyle:{width:"31.2px"},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 30.2 27.7"}},[e("path",{attrs:{d:"M29.9,27.6c-3.7,0-7.1-2.1-8.8-5.3L13.6,8.1c-2.6-4.9-7.7-8-13.3-8v27.4L29.9,27.6z"}})])])])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),"button"==s.type?e("MyButton",{attrs:{block:s}}):t._e(),"header"==s.type?e("Header",{attrs:{block:s}}):t._e(),"icon"==s.type?e("Icon",{attrs:{block:s}}):t._e(),"feature"==s.type?e("Feature",{attrs:{block:s}}):t._e(),"iconfeature"==s.type?e("IconFeature",{attrs:{block:s}}):t._e(),"text"==s.type?e("MyText",{attrs:{block:s}}):t._e(),"bullet-list"==s.type?e("BulletList",{attrs:{block:s}}):t._e(),"image"==s.type?e("MyImage",{attrs:{block:s}}):t._e(),"video"==s.type?e("MyVideo",{attrs:{block:s}}):t._e(),"countdown"==s.type?e("Countdown",{attrs:{block:s}}):t._e(),"divider"==s.type?e("Divider",{attrs:{block:s}}):t._e(),"spacer"==s.type?e("Spacer",{attrs:{block:s}}):t._e(),"social-profiles"==s.type?e("SocialProfiles",{attrs:{block:s}}):t._e(),"social-sharing"==s.type?e("SocialSharing",{attrs:{block:s}}):t._e(),"custom-html"==s.type?e("CustomHTML",{attrs:{block:s}}):t._e(),"shortcode"==s.type?e("Shortcode",{attrs:{block:s}}):t._e(),"optin-form"==s.type?e("OptinForm",{attrs:{block:s}}):t._e(),"contact-form"==s.type?e("ContactForm",{attrs:{block:s}}):t._e(),"giveaway"==s.type?e("Giveaway",{attrs:{block:s}}):t._e(),"form"==s.type?e("MyForm",{attrs:{block:s}}):t._e(),"nav"==s.type?e("Nav",{attrs:{block:s}}):t._e(),"starrating"==s.type?e("StarRating",{attrs:{block:s}}):t._e(),"anchor"==s.type?e("Anchor",{attrs:{block:s}}):t._e(),"progress-bar"==s.type?e("ProgressBar",{attrs:{block:s}}):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{directives:[{name:"show",rawName:"v-show",value:t.shared.highlight_option_target==s.id&&0==t.shared.is_moving,expression:"shared.highlight_option_target == block.id && shared.is_moving == false "}],staticClass:"sp-flex sp-absolute sp-el-toolbar-add sp-w-full sp-z-70"},[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Block",delay:{show:500,hide:0}},expression:"{content:'Add Block',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-cursor-pointer sp-bg-primary hover:sp-bg-primary-darker sp-text-white sp-rounded-full",on:{click:function(s){return s.stopPropagation(),t.add_block()}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])],1)])}),0)],1)}),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{directives:[{name:"show",rawName:"v-show",value:t.shared.highlight_option_target==t.row.id&&0==t.shared.is_moving&&0!==t.row.cols.length,expression:"shared.highlight_option_target == row.id && shared.is_moving == false && row.cols.length !== 0"}],staticClass:"sp-flex sp-absolute sp-el-toolbar-add sp-w-full"},[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Add Row",delay:{show:500,hide:0}},expression:"{content:'Add Row',delay:{ show: 500, hide: 0 }}"}],staticClass:"sp-flex sp-items-center sp-justify-center sp-w-26px sp-h-26px sp-cursor-pointer sp-bg-blue hover:sp-bg-blue-darker sp-text-white sp-rounded-full",on:{click:function(s){return t.add_row(t.row,t.sindex,t.rindex)}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"}})])])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),t.showTemplateModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showTemplateModal=!1}}},[e("div",{staticClass:"sp-p-10 sp-text-neutral sp-font-sans",attrs:{slot:"body"},slot:"body"},[e("div",[e("div",{staticClass:"sp-text-neutral-20 sp-flex sp-justify-center sp-mb-6"},[e("svg",{staticClass:"sp-fill-current sp-w-24",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"}})])]),e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-2 sp-inline-block"},[t._v(t._s(t.txt_6))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.template_block_name,expression:"template_block_name"},{name:"validate",rawName:"v-validate",value:"required",expression:"'required'"}],staticClass:"sp-form-input sp-w-full",staticStyle:{"border-width":"1px"},attrs:{type:"text","data-vv-as":"Block Template Name",name:"template_block_name",placeholder:""},domProps:{value:t.template_block_name},on:{input:function(s){s.target.composing||(t.template_block_name=s.target.value)}}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("template_block_name"),expression:"errors.has('template_block_name')"}],staticClass:"help-block error"},[t._v("\n "+t._s(t.errors.first("template_block_name"))+"\n ")])]),e("button",{staticClass:"sp-mt-4 sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.saving_template},on:{click:function(s){return s.stopPropagation(),t.save_template_step1("page")}}},[t._v("\n "+t._s(t.txt_8)+"\n "),t.saving_template?e("span",[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]),e("button",{staticClass:"sp-ml-3 sp-mt-8 sp-inline-block sp-bg-neutral-15 sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-neutral-80 sp-no-underline sp-text-base hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold",on:{click:function(s){t.showTemplateModal=!1}}},[t._v(t._s(t.txt_7))])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"saved-templates",feature:"Saved Templates"}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],2)},H=[],V=(e("ac6a"),e("f499")),B=e.n(V),L=(e("c5f6"),e("561c")),T=e("310e"),$=e.n(T),P=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-button-wrapper",style:t.buttonWrapperStyleObject,on:{click:function(s){return t.set_has_focus(!0)}}},[e("a",{staticClass:"sp-button sp-css-target",class:t.classObject,style:t.buttonStyleObject,attrs:{href:t.block.settings.link,id:"sp-"+t.block.id,target:t.target,rel:t.rel},on:{click:function(t){t.preventDefault()}}},[t.block.settings.beforeIcon&&""!=t.block.settings.beforeIcon?e("i",{staticClass:"sp-mr-2",class:t.block.settings.beforeIcon}):t._e(),t.shared.is_moving||t.shared.active_inline_editor_id!=t.block.id?e("span",{style:t.buttonTxtStyleObject,domProps:{innerHTML:t._s(t.block.settings.btnTxt)}}):e("editor",{key:t.componentKey,style:t.buttonTxtStyleObject,attrs:{id:t.block.id,inline:!0,"tag-name":"span",disabled:t.shared.is_moving,init:{paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",branding:!1,menubar:!1,plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"help,bold,italic,underline,help"}},on:{onBlur:function(s){return t.set_has_focus(!1)}},model:{value:t.block.settings.btnTxt,callback:function(s){t.$set(t.block.settings,"btnTxt",s)},expression:"block.settings.btnTxt"}}),""!=t.block.settings.afterIcon?e("i",{staticClass:"sp-ml-2",class:t.block.settings.afterIcon}):t._e(),t.block.settings.btnSubTxt?e("span",[t.shared.is_moving||t.shared.active_inline_editor_id!=t.block.id?e("span",{staticClass:"sp-button-sub-txt",class:t.subButtonClassObject,style:t.subButtonStyleObject,domProps:{innerHTML:t._s(t.block.settings.btnSubTxt)}}):e("editor",{key:t.componentKey+1,class:t.subButtonClassObject,style:t.subButtonStyleObject,attrs:{inline:!0,"tag-name":"span",disabled:t.shared.is_moving,init:{paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",branding:!1,menubar:!1,plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"help,bold,italic,underline,help"}},model:{value:t.block.settings.btnSubTxt,callback:function(s){t.$set(t.block.settings,"btnSubTxt",s)},expression:"block.settings.btnSubTxt"}})],1):t._e()],1)])},N=[],R=e("e814"),F=e.n(R),A=(e("6b54"),e("b132")),E=e("66cb"),I=e.n(E),U=e("ca72"),D={name:"MyButton",mixins:[A["a"]],props:{block:Object},data:function(){return{componentKey:0,luminance:"light",shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.button,function(s,e){t.set_default_val(t.block.settings,e,s)})},components:{editor:U["a"]},methods:{set_has_focus:function(t){this.shared.active_inline_editor_id=!0===t&&this.block.id}},set_cursor:function(t,s){s.focus},computed:{target:function(){var t="";return this.block.settings.openNewWindow&&(t="_blank"),t},rel:function(){var t="";return this.block.settings.noFollow&&(t="nofollow"),t},classObject:function(){return{"sp-text-center":!0,"sp-inline-block":!0,"sp-leading-none":!0}},buttonWrapperStyleObject:function(){var t="";""!=this.block.settings.marginTop&&(t=this.block.settings.marginTop+"px");var s="";return s=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft),{padding:s,"margin-top":t,"text-align":this.align_render(this.block.settings.align)}},buttonStyleObject:function(){var t=!1,s="";s=""==this.block.settings.bgColor?this.shared.settings.document.settings.buttonColor:this.block.settings.bgColor;var e="",o=I()(s);o.getLuminance()>=.5?(e="#000",this.luminance="light"):(e="#fff",this.luminance="dark");var i="",a=this.box_shadow(this.block.settings.shadow);if(""!=this.block.settings.btnStyle){if("link"==this.block.settings.btnStyle&&(i="0px solid"+s,e=s,s=""),"ghost"==this.block.settings.btnStyle&&(i="1px solid"+s,e=s,s=""),this.block.settings.btnStyle,"2d"==this.block.settings.btnStyle){var n=I()(s).darken(10).toString();i="",t="3px solid"+n}if("3d"==this.block.settings.btnStyle){var l=I()(s).darken(7).toString();n=I()(s).darken(10).toString();s="linear-gradient(-180deg,"+s+","+l+" 90%)",i="1px solid"+n,a="inset 0 1px 0 rgba(255, 255, 255, 0.2)"}}var r="";""!==this.block.settings.lineHeight&&(r=this.block.settings.lineHeight);var c="";""!=this.block.settings.letterSpacing&&(c=this.block.settings.letterSpacing+"px");var p="";""!=this.block.settings.typographyLetterCase&&(p=this.block.settings.typographyLetterCase);var d="";d=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var u="";u=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var g="";return!0===this.block.settings.typographyUnderline&&(g="underline"),{"text-shadow":this.text_shadow(this.block.settings.textShadow,this.block.settings.textColor),"line-height":r,"letter-spacing":c,"text-transform":p,"text-decoration":g,"font-size":this.block.settings.fontSize+"px","font-weight":d,"font-style":u,background:s,color:e,width:this.align_render(this.block.settings.align,"width"),padding:this.padding_render(this.block.settings.btnPaddingTop,this.block.settings.btnPaddingLeft,this.block.settings.btnPaddingTop,this.block.settings.btnPaddingLeft),"border-radius":this.block.settings.borderRadius+"px ",border:i,"border-bottom":t,"box-shadow":a}},buttonTxtStyleObject:function(){var t="";return"light"==this.luminance&&(t="0.80"),{"font-family":this.font_render(this.block.settings.font),opacity:t}},subButtonStyleObject:function(){var t=F()(this.block.settings.fontSize)-6;return{"font-size":t+"px","font-family":this.font_render(this.block.settings.font),"line-height":1}},subButtonClassObject:function(){return{"sp-block":!0,"sp-mt-1":!0,"sp-opacity-75":!0}}}},W=D,G=e("2877"),Z=Object(G["a"])(W,P,N,!1,null,null,null),J=Z.exports,q=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("main",{on:{click:function(s){return t.set_has_focus(!0)}}},[t.shared.is_moving||t.shared.active_inline_editor_id!=t.block.id?e(t.block.settings.tag,{tag:"component",staticClass:"sp-css-target",style:[t.headerStyleObject,t.headerWrapperStyleObject],attrs:{id:"sp-"+t.block.id},domProps:{innerHTML:t._s(t.compHeaderTxt)}}):e("editor",{key:t.componentKey,staticClass:"sp-css-target",style:[t.headerStyleObject,t.headerWrapperStyleObject],attrs:{id:t.block.id,inline:!0,"tag-name":t.block.settings.tag,disabled:t.shared.is_moving,init:{paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",branding:!1,menubar:!1,plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"help,bold,italic,underline,strikethrough,link,alignleft,aligncenter,alignright,help"}},on:{onExecCommand:t.sync_align,onInit:t.set_cursor,onBlur:function(s){return t.set_has_focus(!1)}},model:{value:t.block.settings.headerTxt,callback:function(s){t.$set(t.block.settings,"headerTxt",s)},expression:"block.settings.headerTxt"}})],1)},Y=[],X={name:"Header",mixins:[A["a"]],props:{block:Object},data:function(){return{componentKey:0,shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.header,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{set_has_focus:function(t){this.shared.active_inline_editor_id=!0===t&&this.block.id},set_cursor:function(t,s){s.focus},sync_align:function(t,s){"JustifyLeft"==t.command&&(this.block.settings.align="left"),"JustifyRight"==t.command&&(this.block.settings.align="right"),"JustifyCenter"==t.command&&(this.block.settings.align="center")}},components:{editor:U["a"]},watch:{"block.settings.tag":function(t){this.componentKey++}},computed:{headerWrapperStyleObject:function(){var t="";""!=this.block.settings.fontSize&&(t=this.block.settings.fontSize+"px");var s=this.block.settings.align;var e="";""!=this.block.settings.marginTop&&(e=this.block.settings.marginTop+"px");var o="";return o=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft),{"text-align":this.align_render(this.block.settings.align),padding:o,"font-size":t,"margin-top":e}},compHeaderTxt:function(){var t=this.block.settings.headerTxt,s="",e="";return""!=this.block.settings.beforeIcon&&(s='<i class="sp-mr-4 '+this.block.settings.beforeIcon+'"></i>'),""!=this.block.settings.afterIcon&&(e='<i class="sp-ml-4 '+this.block.settings.afterIcon+'"></i>'),s+t+e},iconStyleObject:function(){return{color:this.block.settings.textColor}},headerStyleObject:function(){var t="";""!=this.block.settings.fontSize&&(t=this.block.settings.fontSize+"px");var s="";""!==this.block.settings.lineHeight&&(s=this.block.settings.lineHeight);var e="";""!=this.block.settings.letterSpacing&&(e=this.block.settings.letterSpacing+"px");var o="";""!=this.block.settings.typographyLetterCase&&(o=this.block.settings.typographyLetterCase);var i="";i=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var a="";a=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var n="";return!0===this.block.settings.typographyUnderline&&(n="underline"),{"font-size":t,"font-weight":i,"font-style":a,"text-decoration":n,"background-color":this.block.settings.bgColor,"font-family":this.font_render(this.block.settings.font),"line-height":s,"letter-spacing":e,"text-transform":o,color:this.block.settings.textColor,"box-shadow":this.box_shadow(this.block.settings.shadow),"text-shadow":this.text_shadow(this.block.settings.textShadow,this.block.settings.textColor)}}}},K=X,Q=Object(G["a"])(K,q,Y,!1,null,null,null),tt=Q.exports,st={},et=Object(G["a"])(st,o,i,!1,null,null,null),ot=et.exports,it={},at=Object(G["a"])(it,a,n,!1,null,null,null),nt=at.exports,lt={},rt=Object(G["a"])(lt,l,r,!1,null,null,null),ct=rt.exports,pt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("main",{on:{click:function(s){return t.set_has_focus(!0)}}},[t.shared.is_moving||t.shared.active_inline_editor_id!=t.block.id?e("div",{staticClass:"sp-css-target sp-text-wrapper",style:[t.textStyleObject,t.textWrapperStyleObject],attrs:{id:"sp-"+t.block.id},domProps:{innerHTML:t._s(t.block.settings.txt)}}):e("editor",{staticClass:"sp-css-target sp-text-wrapper",style:[t.textStyleObject,t.textWrapperStyleObject],attrs:{inline:!0,disabled:t.shared.is_moving,init:{branding:!1,menubar:!1,plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"help,bold,italic,underline,strikethrough,link,alignleft,aligncenter,alignright,help"}},on:{onFocus:function(s){return t.edit_block(t.block.id)}},model:{value:t.block.settings.txt,callback:function(s){t.$set(t.block.settings,"txt",s)},expression:"block.settings.txt"}})],1)},dt=[],ut={name:"MyText",mixins:[A["a"]],props:{block:Object},data:function(){return{componentKey:0,shared:seedprod_store,hasFocus:!1}},components:{editor:U["a"]},methods:{set_has_focus:function(t){this.shared.active_inline_editor_id=!0===t&&this.block.id},setup_editor:function(){}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.text,function(s,e){t.set_default_val(t.block.settings,e,s)})},watch:{},computed:{compTxt:function(){var t=this.block.settings.txt,s="";return""!=this.block.settings.beforeIcon&&(s='<i class="sp-mr-2 '+this.block.settings.beforeIcon+'"></i>'),s+t},textWrapperStyleObject:function(){var t="";""!=this.block.settings.marginTop&&(t=this.block.settings.marginTop+"px");var s="";return s=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft),{padding:s,"margin-top":t,"text-align":this.align_render(this.block.settings.align),"box-shadow":this.box_shadow(this.block.settings.shadow)}},textStyleObject:function(){var t="";""!==this.block.settings.lineHeight&&(t=this.block.settings.lineHeight);var s="";""!=this.block.settings.letterSpacing&&(s=this.block.settings.letterSpacing+"px");var e="";e=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var o="";o=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var i="";!0===this.block.settings.typographyUnderline&&(i="underline");var a="";return""!=this.block.settings.typographyLetterCase&&(a=this.block.settings.typographyLetterCase),{"line-height":t,"letter-spacing":s,"text-transform":a,"text-decoration":i,"font-size":this.block.settings.fontSize+"px","font-weight":e,"font-style":o,"font-family":this.font_render(this.block.settings.font),"background-color":this.block.settings.bgColor,color:this.block.settings.textColor,"text-shadow":this.text_shadow(this.block.settings.textShadow,this.block.settings.textColor)}}}},gt=ut,ht=Object(G["a"])(gt,pt,dt,!1,null,null,null),vt=ht.exports,mt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-flex sp-css-target",class:["sp-bulletlist-block-template-"+t.blockTemplateId,{"sp-justify-center":"center"==t.block.settings.align,"sp-justify-start":"left"==t.block.settings.align,"sp-justify-end":"right"==t.block.settings.align}],style:t.blockStyleObject,attrs:{id:"sp-"+t.block.id},on:{click:function(s){return t.set_has_focus(!0)}}},[e("ul",{staticClass:"sp-bulletlist-wrapper",class:{"sp-flex sp-flex-wrap":"h"==t.block.settings.layout,"sp-items-center":"h"==t.block.settings.layout}},t._l(t.block.settings.items,function(s,o){return e("li",{key:o,staticClass:"sp-flex sp-items-center",class:{"sp-justify-center":"center"==t.block.settings.align,"sp-justify-start":"left"==t.block.settings.align,"sp-justify-end":"right"==t.block.settings.align},style:t.liStyleObject(o)},[e("span",{staticClass:"sp-icon-wrapper sp-mr-4"},[s.icon?e("i",{staticClass:"fa-fw fa-lg",class:s.icon,style:t.iconStyleObject}):t._e()]),t.shared.is_moving||t.shared.active_inline_editor_id!=t.block.id?e("span",{domProps:{innerHTML:t._s(s.txt)}}):e("editor",{key:t.componentKey,staticClass:"sp-inline-block",attrs:{inline:!0,"tag-name":"span",disabled:t.shared.is_moving,init:{paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",branding:!1,menubar:!1,plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar:"help,bold,italic,underline,strikethrough,link,help"}},on:{onBlur:function(s){return t.set_has_focus(!1)}},model:{value:s.txt,callback:function(e){t.$set(s,"txt",e)},expression:"item.txt"}})],1)}),0)])},_t=[],bt=e("a4bb"),ft=e.n(bt),xt={name:"BulletList",mixins:[A["a"]],props:{block:Object},data:function(){return{componentKey:0,shared:seedprod_store}},components:{editor:U["a"]},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.bulletlist,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{set_has_focus:function(t){this.shared.active_inline_editor_id=!0===t&&this.block.id},liStyleObject:function(t){if("v"==this.block.settings.layout)var s=this.padding_render("0","0",this.block.settings.spaceBetween,"0");if("h"==this.block.settings.layout)s=this.padding_render("0",this.block.settings.spaceBetween,"0","0");return t==ft()(this.block.settings.items).length-1&&this.block.settings.items.length>0&&(s=""),{padding:s}}},computed:{blockTemplateId:function(){var t=0;return!1!==this.block.settings.blockTemplateId&&(t=this.block.settings.blockTemplateId),t},blockStyleObject:function(){var t="px";this.block.settings.typographyUnit&&(t=this.block.settings.typographyUnit);var s="";""!=this.block.settings.fontSize&&(s=this.block.settings.fontSize+t);var e="";1==this.block.settings.typographyUnderline&&(e="underline");var o="";o=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var i="";i=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var a="";""!=this.block.settings.lineHeight&&(a=this.block.settings.lineHeight);var n="";""!=this.block.settings.letterSpacing&&(n=this.block.settings.letterSpacing+"px");var l="";"normal"!=this.block.settings.typographyLetterCase&&(l=this.block.settings.typographyLetterCase);var r="";""!=this.block.settings.marginTop&&(r=this.block.settings.marginTop+"px");var c="";return c=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft),{padding:c,"margin-top":r,"text-transform":l,"font-size":s,"text-decoration":e,"line-height":a,"letter-spacing":n,color:this.block.settings.textColor,"font-family":this.font_render(this.block.settings.font),"font-weight":o,"font-style":i,"text-shadow":this.text_shadow(this.block.settings.textShadow,this.block.settings.textColor)}},iconStyleObject:function(){var t="px";this.block.settings.typographyUnit&&(t=this.block.settings.typographyUnit);var s="16";""!=this.block.settings.fontSize&&(s=this.block.settings.fontSize+t);var e="32px";""!=this.block.settings.fontSize&&(e=2*this.block.settings.fontSize+t);var o="32px";return""!=this.block.settings.fontSize&&(o=2*this.block.settings.fontSize+t),{width:e,lineHeight:o,fontSize:s,color:this.block.settings.iconColor}}}},wt=xt,Ct=Object(G["a"])(wt,mt,_t,!1,null,null,null),kt=Ct.exports,yt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("figure",{staticClass:"sp-image-wrapper",style:t.imageWrapperStyleObject,attrs:{id:"sp-"+t.block.id}},[""!=this.block.settings.src?e("img",{style:t.imageStyleObject,attrs:{src:this.block.settings.src,alt:this.block.settings.altTxt}}):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),""==this.block.settings.src?e("img",{style:t.imageStyleObject,attrs:{src:this.shared.setup_page_meta.placeholder_image,alt:this.block.settings.altTxt}}):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])])},zt=[],Ot={name:"MyImage",mixins:[A["a"]],props:{block:Object},data:function(){return{shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.image,function(s,e){t.set_default_val(t.block.settings,e,s)})},computed:{blockTemplateId:function(){var t=0;return!1!==this.block.settings.blockTemplateId&&(t=this.block.settings.blockTemplateId),t},imageWrapperStyleObject:function(){var t="";t=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft);var s="";return""!=this.block.settings.marginTop&&(s=this.block.settings.marginTop+"px"),{"margin-top":s,padding:t,"text-align":this.align_render(this.block.settings.align)}},imageStyleObject:function(){var t="";""!=this.block.settings.width&&(t=this.block.settings.width+this.block.settings.unit);var s="";""!=this.block.settings.height&&(s=this.block.settings.height+this.block.settings.unit);var e="";""!=this.block.settings.imageBorderRadius&&(e=this.block.settings.imageBorderRadius+"px");var o=this.block.settings.imageBorderTop,i=this.block.settings.imageBorderRight,a=this.block.settings.imageBorderBottom,n=this.block.settings.imageBorderLeft;this.block.settings.imageBorderSync&&(i=o,a=o,n=o);var l="",r="";return""!=this.block.settings.imagePadding&&(l=this.padding_render(this.block.settings.imagePadding,this.block.settings.imagePadding,this.block.settings.imagePadding,this.block.settings.imagePadding),this.block.settings.imagePadding>0&&(r="#fff")),{padding:l,"background-color":r,width:t,height:s,"border-top":this.border_render(o,this.block.settings.imageBorderStyle,this.block.settings.imageBorderColor),"border-right":this.border_render(i,this.block.settings.imageBorderStyle,this.block.settings.imageBorderColor),"border-bottom":this.border_render(a,this.block.settings.imageBorderStyle,this.block.settings.imageBorderColor),"border-left":this.border_render(n,this.block.settings.imageBorderStyle,this.block.settings.imageBorderColor),"border-radius":e,"box-shadow":this.box_shadow(this.block.settings.shadow)}}}},jt=Ot,Mt=Object(G["a"])(jt,yt,zt,!1,null,null,null),St=Mt.exports,Ht=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-video-control sp-flex",style:t.controlWrapper,attrs:{id:"sp-"+t.block.id}},[e("div",{staticClass:"sp-video-wrapper",style:t.styleWrapper},["youtube"==t.block.settings.type?e("div",{staticClass:"sp-video-responsive"},[e("iframe",{attrs:{width:"560",height:"315",src:"https://www.youtube.com/embed/"+t.youtube_parser(t.block.settings.youtubeUrl),frameborder:"0",allowfullscreen:""}})]):e("div",{domProps:{innerHTML:t._s(t.block.settings.code)}})])])},Vt=[],Bt=(e("4917"),{name:"Video",mixins:[A["a"]],props:{block:Object},data:function(){return{shared:seedprod_store,classObject:{"sp-bg-blue-500":!0,"hover:sp-bg-blue-700":!0,"sp-text-white":!0,"sp-py-2":!0,"sp-px-4":!0,"sp-rounded":!0,"sp-leading-none":!0}}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.video,function(s,e){t.set_default_val(t.block.settings,e,s)})},methods:{youtube_parser:function(t){if(!0===lodash.isEmpty(t))return"";var s=/^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/,e=t.match(s);return!(!e||11!=e[7].length)&&e[7]}},computed:{controlWrapper:function(){var t="";t=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft);var s="";""!=this.block.settings.marginTop&&(s=this.block.settings.marginTop+"px");var e="center";return""!=this.block.settings.align&&("left"==this.block.settings.align&&(e="flex-start"),"right"==this.block.settings.align&&(e="flex-end")),{padding:t,"justify-content":e,"margin-top":s}},styleWrapper:function(){var t="100%",s="100%";return""!=this.block.settings.width&&(t=this.block.settings.width+"%"),{width:t,"max-width":s,"box-shadow":this.box_shadow(this.block.settings.shadow)}},videoWrapperStyleObject:function(){var t="center";return"Left"==this.block.settings.align&&(t="left"),"Right"==this.block.settings.align&&(t="right"),{"text-align":t}}}}),Lt=Bt,Tt=Object(G["a"])(Lt,Ht,Vt,!1,null,null,null),$t=Tt.exports,Pt={},Nt=Object(G["a"])(Pt,c,p,!1,null,null,null),Rt=Nt.exports,Ft=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-divider-wrapper sp-flex",style:t.dividerWrapperStyleObject,attrs:{id:"sp-"+t.block.id}},[e("div",{staticClass:"sp-divider",class:t.classObject,style:t.dividerStyleObject})])},At=[],Et={name:"Divider",mixins:[A["a"]],props:{block:Object},data:function(){return{shared:seedprod_store,classObject:{"sp-flex":!0}}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.divider,function(s,e){t.set_default_val(t.block.settings,e,s)})},computed:{dividerWrapperStyleObject:function(){var t="";t=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft);var s="";""!=this.block.settings.marginTop&&(s=this.block.settings.marginTop+"px");var e="",o=this.block.settings.align;return"left"==o&&(e="flex-start"),"right"==o&&(e="flex-end"),"center"==o&&(e="center"),{"margin-top":s,"justify-content":e,padding:t}},dividerStyleObject:function(){var t="";""!=this.block.settings.width&&(t=this.block.settings.width+"%");var s=this.shared.settings.document.settings.buttonColor;return""!=this.block.settings.color&&(s=this.block.settings.color),{width:t,"border-top":this.border_render(this.block.settings.height,this.block.settings.style,s),"box-shadow":this.divider_shadow(this.block.settings.shadow)}}}},It=Et,Ut=Object(G["a"])(It,Ft,At,!1,null,null,null),Dt=Ut.exports,Wt=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-spacer",style:t.spacerStyleObject,attrs:{id:"sp-"+t.block.id}})},Gt=[],Zt={name:"Spacer",mixins:[A["a"]],props:{block:Object},data:function(){return{shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.spacer,function(s,e){t.set_default_val(t.block.settings,e,s)})},computed:{spacerStyleObject:function(){var t="20px",s=F()(this.block.settings.height);return!1!==lodash.isEmpty(s)&&(t=s+"px"),{height:t}}}},Jt=Zt,qt=Object(G["a"])(Jt,Wt,Gt,!1,null,null,null),Yt=qt.exports,Xt={},Kt=Object(G["a"])(Xt,d,u,!1,null,null,null),Qt=Kt.exports,ts={},ss=Object(G["a"])(ts,g,h,!1,null,null,null),es=ss.exports,os=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-code-wrapper",style:t.codeWrapperStyleObject,attrs:{id:"sp-"+t.block.id}},[t.code?e("div",{domProps:{innerHTML:t._s(t.code)}}):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),t.code?t._e():e("div",{staticClass:"sp-text-center sp-bg-primary-10 sp-text-primary sp-border sp-border-primary sp-p-4"},[e("pre",{staticClass:"sp-font-sans sp-text-sm sp-font-bold"},[t._v(t._s(t.txt_1))])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])])},is=[],as={name:"CustomHTML",mixins:[A["a"]],props:{block:Object},data:function(){return{txt_1:Object(L["a"])("Enter Your HTML","coming-soon"),shared:seedprod_store}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.customhtml,function(s,e){t.set_default_val(t.block.settings,e,s)})},computed:{codeWrapperStyleObject:function(){var t="";t=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft);var s="";return""!=this.block.settings.marginTop&&(s=this.block.settings.marginTop+"px"),{padding:t,"margin-top":s}},code:function(){return this.block.settings.code}}},ns=as,ls=Object(G["a"])(ns,os,is,!1,null,null,null),rs=ls.exports,cs={},ps=Object(G["a"])(cs,v,m,!1,null,null,null),ds=ps.exports,us={},gs=Object(G["a"])(us,_,b,!1,null,null,null),hs=gs.exports,vs={},ms=Object(G["a"])(vs,f,x,!1,null,null,null),_s=ms.exports,bs={},fs=Object(G["a"])(bs,w,C,!1,null,null,null),xs=fs.exports,ws={},Cs=Object(G["a"])(ws,k,y,!1,null,null,null),ks=Cs.exports,ys={},zs=Object(G["a"])(ys,z,O,!1,null,null,null),Os=zs.exports,js=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-form-wrapper",class:{"sp-has-form":""!==t.block.settings.formId},style:t.formWrapperStyleObject,attrs:{id:"sp-"+t.block.id}},[e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),0===t.shared.plugins_installed["wpforms-pro"].status?e("div",[1!==t.plugins["wpforms"].status_code?e("div",{staticClass:"sp-text-center sp-bg-primary-10 sp-text-primary sp-border sp-border-primary sp-p-4 sp-font-sans"},[e("span",{staticClass:"sp-text-base sp-font-semibold sp-font-sans"},[t._v(t._s(t.txt_1))]),e("br"),0===t.plugins["wpforms"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_form_install_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("wpforms")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_3)+" WPForms")])]):t._e(),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e(),2===t.plugins["wpforms"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_form_activate_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("wpforms")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_4)+" WPForms")]),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]):t._e()]):t._e()]):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),1===t.plugins["wpforms"].status_code||1===t.shared.plugins_installed["wpforms-pro"].status?e("div",[e("div",{staticClass:"sp-preview-hidden"},[t._v('[wpforms id="'+t._s(t.block.settings.formId)+'"]')]),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{style:t.formPreviewStyleObject,domProps:{innerHTML:t._s(t.preview)}}),e("div",{directives:[{name:"show",rawName:"v-show",value:!t.preview,expression:"!preview"}],staticClass:"sp-text-center sp-text-sm"},[e("div",{staticClass:"sp-mb-2",domProps:{innerHTML:t._s(t.placeholder)}}),t.forms.length?e("div",[e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.formId,expression:"block.settings.formId"}],staticClass:"sp-form-select sp-w-full",staticStyle:{"max-width":"300px"},on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"formId",s.target.multiple?e:e[0])},t.selectFormPreviewOnChange]}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_7))]),t._l(t.forms,function(s){return e("option",{key:s.ID,domProps:{value:s.ID}},[t._v(t._s(s.post_title))])})],2)]):t._e(),t.forms.length?t._e():e("div",[t._v(t._s(t.txt_8))])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])]):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("transition",{attrs:{name:"fade"}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.is_visible_iframe,expression:"is_visible_iframe"}],attrs:{id:"wpforms-builder-elementor-popup"}},[e("iframe",{attrs:{src:t.iframe_src,width:"100%",height:"100%",frameborder:"0",id:"wpforms-builder-iframe"}})])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])],1)},Ms=[],Ss=e("5d73"),Hs=e.n(Ss),Vs=e("81f6"),Bs=e("4328"),Ls=e.n(Bs),Ts={name:"ContactForm",mixins:[A["a"]],props:{block:Object},data:function(){return{txt_1:Object(L["a"])("Install Contact Form plugin:","coming-soon"),txt_3:Object(L["a"])("Install","coming-soon"),txt_4:Object(L["a"])("Activate","coming-soon"),txt_5:Object(L["a"])("Contact Form","coming-soon"),txt_6:Object(L["a"])("(This shortcode will be rendered on the live preview.)","coming-soon"),txt_7:Object(L["a"])("Select a Form","coming-soon"),txt_8:Object(L["a"])("You can use WPForms to build contact forms, surveys, payment forms, and more with just a few clicks.","coming-soon"),seedprod_form_install_link:seedprod_form_install_link,seedprod_form_activate_link:seedprod_form_activate_link,has_an_form_plugin_active:!1,shared:seedprod_store,doing_install:!1,plugins:{wpforms:{slug_base:"wpforms-lite",slug:"wpforms-lite/wpforms.php",url:"https://downloads.wordpress.org/plugin/wpforms-lite.zip",status:"",status_code:"",is_pro:!1}},create_new_form:!1,is_visible_iframe:!1,iframe_src:"about:blank",placeholder:seedprod_data.wpforms?seedprod_data.wpforms.placeholder:"",preview:"",forms:[]}},methods:{plugin_action:function(t){var s=this,e="",o="",i=t;if(this.doing_install=!0,0===this.plugins[t].status_code){e=seedprod_get_install_addon_url;var a=Ls.a.stringify({plugin:this.plugins[t].url,type:"plugin"});o="install"}if(1===this.plugins[t].status_code){e=seedprod_deactivate_addon_url;a=Ls.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="deactivate"}if(2===this.plugins[t].status_code){e=seedprod_activate_addon_url;a=Ls.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="activate"}this.axios.post(e,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(e){if(s.shared.doing_ajax=!1,"install"==o)if(e.data.error){s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.error,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3});var a=Ls.a.stringify({plugin:s.plugins[i].slug_base});s.axios.post(seedprod_plugin_nonce_url,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data&&window.open("update.php?action=install-plugin&plugin="+s.plugins[i].slug_base+"&_wpnonce="+t.data,"_blank")})}else s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Plugin Installed, click Activate",toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.plugin_action("wpforms"),s.$forceUpdate();"activate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Active",s.plugins[t].status_code=1,s.placeholder="<img src='"+s.shared.plugin_path+"public/img/plugin-wpforms.png' width='80px' alt=''/>",s.$forceUpdate(),Vs["a"].$emit("pluginActivated")):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})),"deactivate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3}))}).catch(function(t){s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})},selectFormPreviewOnChange:function(t){t&&this.loadForm(t.target.value)},loadForm:function(t,s){s=s||{};var e=this,o=s.form_title?s.form_title:"false",i=s.form_description?s.form_description:"false";e.block.settings.formId!=t&&(e.block.settings.formId=t),t?e.axios.get("admin-ajax.php?action="+e.shared.page_path+"_get_wpform&_wpnonce="+seedprod_nonce+"&form_id="+t+"&form_title="+o+"&form_description="+i).then(function(t){t.data&&(e.preview=t.data)}).catch(function(t){console.log(t)}):e.preview=""},initObserver:function(t){var s=this,e=null;s.is_visible_iframe=!0,s.iframe_src=t,e=new MutationObserver(function(t){var o=!0,i=!1,a=void 0;try{for(var n,l=Hs()(t);!(o=(n=l.next()).done);o=!0){var r=n.value;if("attributes"===r.type&&"style"===r.attributeName&&"none"===r.target.style.display){s.is_visible_iframe=!1,s.iframe_src="about:blank",Vs["a"].$emit("iframeClosed",e);break}}}catch(c){i=!0,a=c}finally{try{o||null==l.return||l.return()}finally{if(i)throw a}}}),e.observe(document.getElementById("wpforms-builder-elementor-popup"),{attributes:!0,attributeFilter:["style"]})},getFormSettings:function(){return{form_id:this.block.settings.formId,form_title:this.block.settings.formTitle,form_description:this.block.settings.formDescription}}},mounted:function(){var t=this;t.loadForm(t.block.settings.formId,t.getFormSettings()),lodash.each(this.shared.plugins_installed,function(s,e){void 0!==t.plugins[e]&&(t.plugins[e].status=t.shared.plugins_installed[e].label,t.plugins[e].status_code=t.shared.plugins_installed[e].status)}),lodash.each(this.shared.from_plugins_installed,function(s,e){1===s&&(t.has_an_form_plugin_active=!0)}),lodash.forOwn(this.shared.block_templates["contactform"],function(s,e){t.set_default_val(t.block.settings,e,s)}),Vs["a"].$on("formsLoaded",function(s){t.forms=s.length?s:[]}).$on("formSelected",function(s){t.loadForm(s.form_id,s)}).$on("iframeClosed",function(t,s){s.disconnect()}).$on("createNewLinkClicked",function(s){t.create_new_form=!0,t.initObserver(s)}).$on("editLinkClicked",function(s){t.initObserver(s)}),"undefined"!=typeof jQuery&&jQuery("#wpforms-builder-elementor-popup").on("wpformsBuilderInPopupClose",function(s,e,o){o&&t.loadForm(o),o&&t.create_new_form&&Vs["a"].$emit("newFormCreated",o),t.create_new_form=!1})},computed:{formWrapperStyleObject:function(){var t="";""!=this.block.settings.marginTop&&(t=this.block.settings.marginTop+"px");var s="";s=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft);var e="";""!=this.block.settings.textColor&&(e=this.block.settings.textColor);var o="";""!==this.block.settings.lineHeight&&(o=this.block.settings.lineHeight);var i="";""!=this.block.settings.letterSpacing&&(i=this.block.settings.letterSpacing+"px");var a="";""!=this.block.settings.typographyLetterCase&&(a=this.block.settings.typographyLetterCase);var n="";n=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var l="";l=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var r="";!0===this.block.settings.typographyUnderline&&(r="underline");var c="";return""!==this.block.settings.fontSize&&(c=this.block.settings.fontSize+"px"),{"font-family":this.font_render(this.block.settings.font),"line-height":o,"letter-spacing":i,"text-transform":a,"text-decoration":r,"font-size":c,"font-weight":n,"font-style":l,color:e,padding:s,"margin-top":t,"text-align":this.align_render(this.block.settings.align)}},formPreviewStyleObject:function(){return{"pointer-events":"none",curser:"default"}}}},$s=Ts,Ps=Object(G["a"])($s,js,Ms,!1,null,null,null),Ns=Ps.exports,Rs=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-giveaway-wrapper",class:{"sp-has-form":""!==t.block.settings.formId},style:t.giveawayWrapperStyleObject,attrs:{id:"sp-"+t.block.id}},[e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),0===t.shared.plugins_installed["rafflepress-pro"].status?e("div",[1!==t.plugins["rafflepress"].status_code?e("div",{staticClass:"sp-text-center sp-bg-primary-10 sp-text-primary sp-border sp-border-primary sp-p-4 sp-font-sans"},[e("span",{staticClass:"sp-text-base sp-font-semibold sp-font-sans"},[t._v(t._s(t.txt_1))]),e("br"),0===t.plugins["rafflepress"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_giveaway_install_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("rafflepress")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_3)+" RafflePress")]),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]):t._e(),2===t.plugins["rafflepress"].status_code&&!1===t.doing_install?e("a",{staticClass:"sp-mt-2 sp-bg-primary hover:sp-bg-primary-lighter sp-text-white sp-font-semibold sp-py-3 sp-px-5 sp-rounded sp-leading-none sp-inline-block sp-font-sans",attrs:{href:t.seedprod_giveaway_activate_link,target:"_blank"},on:{click:function(s){return s.preventDefault(),t.plugin_action("rafflepress")}}},[e("span",{staticClass:"sp-text-white"},[t._v(t._s(t.txt_4)+" RafflePress")]),!0===t.doing_install?e("span",[t._v("\n Installing\n "),e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()]):t._e()]):t._e()]):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")]),1===t.plugins["rafflepress"].status_code||1===t.shared.plugins_installed["rafflepress-pro"].status?e("div",[e("div",{staticClass:"sp-preview-hidden"},[t._v('[rafflepress id="'+t._s(t.block.settings.formId)+'"]')]),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("div",{style:t.giveawayPreviewStyleObject,domProps:{innerHTML:t._s(t.preview)}}),e("div",{directives:[{name:"show",rawName:"v-show",value:!t.preview,expression:"!preview"}],staticClass:"sp-text-center sp-text-sm"},[e("div",{staticClass:"sp-mb-2",domProps:{innerHTML:t._s(t.placeholder)}}),t.forms.length?e("div",[e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.formId,expression:"block.settings.formId"}],staticClass:"sp-form-select sp-w-full",staticStyle:{"max-width":"300px"},on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"formId",s.target.multiple?e:e[0])},t.selectFormPreviewOnChange]}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_7))]),t._l(t.forms,function(s){return e("option",{key:s.id,domProps:{value:s.id}},[t._v(t._s(s.name))])})],2)]):t._e(),t.forms.length?t._e():e("div",[t._v(t._s(t.txt_8))])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])]):t._e(),e("span",{staticClass:"sp-hidden"},[t._v("START-REMOVE")]),e("transition",{attrs:{name:"fade"}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.is_visible_iframe,expression:"is_visible_iframe"}],attrs:{id:"wpforms-builder-elementor-popup"}},[e("iframe",{attrs:{src:t.iframe_src,width:"100%",height:"100%",frameborder:"0",id:"wpforms-builder-iframe"}})])]),e("span",{staticClass:"sp-hidden"},[t._v("END-REMOVE")])],1)},Fs=[],As={name:"Giveaway",mixins:[A["a"]],props:{block:Object},data:function(){return{txt_1:Object(L["a"])("Install Giveaway plugin:","coming-soon"),txt_3:Object(L["a"])("Install","coming-soon"),txt_4:Object(L["a"])("Activate","coming-soon"),txt_5:Object(L["a"])("Giveaway","coming-soon"),txt_6:Object(L["a"])("(This shortcode will be rendered on the live preview.)","coming-soon"),txt_7:Object(L["a"])("Select a Giveway","coming-soon"),txt_8:Object(L["a"])("You can use RafflePress to build viral giveaways in minutes and explode your email list.","coming-soon"),seedprod_form_install_link:seedprod_form_install_link,seedprod_form_activate_link:seedprod_form_activate_link,has_an_form_plugin_active:!1,shared:seedprod_store,doing_install:!1,plugins:{rafflepress:{slug_base:"rafflepress",slug:"rafflepress/rafflepress.php",url:"https://downloads.wordpress.org/plugin/rafflepress.zip",status:"",status_code:"",is_pro:!1}},create_new_form:!1,is_visible_iframe:!1,iframe_src:"about:blank",placeholder:seedprod_data.rafflepress?seedprod_data.rafflepress.placeholder:"",preview:"",forms:[]}},methods:{plugin_action:function(t){var s=this,e="",o="",i=t;if(this.doing_install=!0,0===this.plugins[t].status_code){e=seedprod_get_install_addon_url;var a=Ls.a.stringify({plugin:this.plugins[t].url,type:"plugin"});o="install"}if(1===this.plugins[t].status_code){e=seedprod_deactivate_addon_url;a=Ls.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="deactivate"}if(2===this.plugins[t].status_code){e=seedprod_activate_addon_url;a=Ls.a.stringify({plugin:this.plugins[t].slug,type:"plugin"});o="activate"}this.axios.post(e,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(e){if(s.shared.doing_ajax=!1,"install"==o)if(e.data.error){s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.error,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3});var a=Ls.a.stringify({plugin:s.plugins[i].slug_base});s.axios.post(seedprod_plugin_nonce_url,a,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){t.data&&window.open("update.php?action=install-plugin&plugin="+s.plugins[i].slug_base+"&_wpnonce="+t.data,"_blank")})}else s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Plugin Installed, click Activate",toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.plugin_action("rafflepress"),s.$forceUpdate();"activate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-success",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Active",s.plugins[t].status_code=1,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})),"deactivate"==o&&(e.data.success?(s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e3}),s.plugins[t].status="Inactive",s.plugins[t].status_code=2,s.$forceUpdate()):s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:e.data.data,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3}))}).catch(function(t){s.shared.doing_ajax=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})})},selectFormPreviewOnChange:function(t){t&&this.loadForm(t.target.value)},loadForm:function(t,s){s=s||{};var e=this,o=s.form_title?s.form_title:"false",i=s.form_description?s.form_description:"false";e.block.settings.formId!=t&&(e.block.settings.formId=t),t?e.axios.get("admin-ajax.php?action="+e.shared.page_path+"_get_rafflepress_code&_wpnonce="+seedprod_nonce+"&form_id="+t+"&form_title="+o+"&form_description="+i).then(function(t){t.data&&(e.preview=t.data)}).catch(function(t){console.log(t)}):e.preview=""},initObserver:function(t){var s=this,e=null;s.is_visible_iframe=!0,s.iframe_src=t,e=new MutationObserver(function(t){var o=!0,i=!1,a=void 0;try{for(var n,l=Hs()(t);!(o=(n=l.next()).done);o=!0){var r=n.value;if("attributes"===r.type&&"style"===r.attributeName&&"none"===r.target.style.display){s.is_visible_iframe=!1,s.iframe_src="about:blank",Vs["a"].$emit("iframeClosed",e);break}}}catch(c){i=!0,a=c}finally{try{o||null==l.return||l.return()}finally{if(i)throw a}}}),e.observe(document.getElementById("wpforms-builder-elementor-popup"),{attributes:!0,attributeFilter:["style"]})},getFormSettings:function(){return{form_id:this.block.settings.formId,form_title:this.block.settings.formTitle,form_description:this.block.settings.formDescription}}},mounted:function(){var t=this;t.loadForm(t.block.settings.formId,t.getFormSettings()),lodash.each(this.shared.plugins_installed,function(s,e){void 0!==t.plugins[e]&&(t.plugins[e].status=t.shared.plugins_installed[e].label,t.plugins[e].status_code=t.shared.plugins_installed[e].status)}),lodash.each(this.shared.from_plugins_installed,function(s,e){1===s&&(t.has_an_form_plugin_active=!0)}),lodash.forOwn(this.shared.block_templates["giveaway"],function(s,e){t.set_default_val(t.block.settings,e,s)}),Vs["a"].$on("gformsLoaded",function(s){t.forms=s.length?s:[]}).$on("gformSelected",function(s){t.loadForm(s.form_id,s)}).$on("giframeClosed",function(t,s){s.disconnect()}).$on("gcreateNewLinkClicked",function(s){t.create_new_form=!0,t.initObserver(s)}).$on("geditLinkClicked",function(s){t.initObserver(s)}),"undefined"!=typeof jQuery&&jQuery("#wpforms-builder-elementor-popup").on("wpformsBuilderInPopupClose",function(s,e,o){o&&t.loadForm(o),o&&t.create_new_form&&Vs["a"].$emit("newFormCreated",o),t.create_new_form=!1})},computed:{giveawayWrapperStyleObject:function(){var t="";""!=this.block.settings.marginTop&&(t=this.block.settings.marginTop+"px");var s="";s=this.block.settings.paddingSync?this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop,this.block.settings.paddingTop):this.padding_render(this.block.settings.paddingTop,this.block.settings.paddingRight,this.block.settings.paddingBottom,this.block.settings.paddingLeft);var e="";""!=this.block.settings.textColor&&(e=this.block.settings.textColor);var o="";""!==this.block.settings.lineHeight&&(o=this.block.settings.lineHeight);var i="";""!=this.block.settings.letterSpacing&&(i=this.block.settings.letterSpacing+"px");var a="";""!=this.block.settings.typographyLetterCase&&(a=this.block.settings.typographyLetterCase);var n="";n=!0===this.block.settings.typographyBold?"bold":this.font_variant_render(this.block.settings.fontVariant,"weight");var l="";l=!0===this.block.settings.typographyItalic?"italic":this.font_variant_render(this.block.settings.fontVariant,"style");var r="";!0===this.block.settings.typographyUnderline&&(r="underline");var c="";return""!==this.block.settings.fontSize&&(c=this.block.settings.fontSize+"px"),{"font-family":this.font_render(this.block.settings.font),"line-height":o,"letter-spacing":i,"text-transform":a,"text-decoration":r,"font-size":c,"font-weight":n,"font-style":l,color:e,padding:s,"margin-top":t,"text-align":this.align_render(this.block.settings.align)}},giveawayPreviewStyleObject:function(){return{"pointer-events":"none",curser:"default"}}}},Es=As,Is=Object(G["a"])(Es,Rs,Fs,!1,null,null,null),Us=Is.exports,Ds={},Ws=Object(G["a"])(Ds,j,M,!1,null,null,null),Gs=Ws.exports,Zs=e("1970"),Js=e("714b"),qs=e("f408"),Ys=e("323e"),Xs=e.n(Ys),Ks={name:"Row",mixins:[A["a"]],props:{row:Object,sindex:Number,rindex:Number},data:function(){return{txt_2:Object(L["a"])("or","coming-soon"),txt_3:Object(L["a"])("Drag a new block here","coming-soon"),txt_4:Object(L["a"])("Choose your layout:","coming-soon"),txt_6:Object(L["a"])("Enter a new block template name:","coming-soon"),txt_7:Object(L["a"])("Cancel","coming-soon"),txt_8:Object(L["a"])("Save Template","coming-soon"),show_cols:!0,showUpsellModal:!1,section_dropzone:[{id:0}],template_block_name:"",code:!1,saving_template:!1,showTemplateModal:!1,resizeCol:{},shared:seedprod_store}},methods:{add_cols_action:function(t,s,e,o){this.add_cols(t,s,e,o),this.show_cols=!1},col_style:function(t,s,e){var o="";o=s.paddingSync?this.padding_render(s.paddingTop,s.paddingTop,s.paddingTop,s.paddingTop):this.padding_render(s.paddingTop,s.paddingRight,s.paddingBottom,s.paddingLeft);var i="";""!=s.marginTop&&(i=s.marginTop+"px");var a="";""!=s.borderRadius&&(a=s.borderRadius+"px"),a=!1===s.borderRadiusSync?this.border_radius_render(s.borderRadiusTL,s.borderRadiusTR,s.borderRadiusBR,s.borderRadiusBL):s.borderRadiusTL+"px";var n=s.borderTop,l=s.borderRight,r=s.borderBottom,c=s.borderLeft;s.borderSync&&(l=n,r=n,c=n);var p="";""!=s.bgImage&&(p="url('"+s.bgImage+"')"),""==p&&"g"==s.bgStyle&&(p="linear"==s.bgGradient.type?"linear-gradient("+s.bgGradient.angle+"deg, "+s.bgGradient.color1+" "+s.bgGradient.color1location+"%, "+s.bgGradient.color2+" "+s.bgGradient.color2location+"%)":"radial-gradient(circle at "+s.bgGradient.position+", "+s.bgGradient.color1+" "+s.bgGradient.color1location+"%, "+s.bgGradient.color2+" "+s.bgGradient.color2location+"%)");var d=!1;return d=""!=s.colWidth?"calc("+s.colWidth+"% - "+t.colGutter+"px)":"calc(100%/"+e.cols.length+" - "+t.colGutter+"px)",{"border-radius":a,"box-shadow":this.box_shadow(s.shadow),"background-color":s.bgColor,width:d,padding:o,"margin-top":i,"background-image":p,"border-top":this.border_render(n,s.borderStyle,s.borderColor),"border-right":this.border_render(l,s.borderStyle,s.borderColor),"border-bottom":this.border_render(r,s.borderStyle,s.borderColor),"border-left":this.border_render(c,s.borderStyle,s.borderColor)}},set_show_cols:function(t){this.show_cols=t,this.focus_block("sp-bottom-row-dropzone","bottom")},add_new_row_block:function(t,s,e,o){if(0==this.section_dropzone[0].id){var i=JSON.parse(B()(this.section_dropzone[1]));this.section_dropzone.splice(1,1)}else{i=JSON.parse(B()(this.section_dropzone[0]));this.section_dropzone.splice(0,1)}return"section"!=i.type&&("row"==i.type?(this.show_cols=!0,!1):(this.add_cols_action("1-col",s,e,o),this.shared.settings.document.sections[e].rows[o].cols[0].blocks=[i],this.edit_block(i.id),void this.focus_block(i.id)))},save_element:function(t){arguments.length>1&&void 0!==arguments[1]&&arguments[1];if("seedprod_lite"==this.shared.page_path)return this.showUpsellModal=!0,!1;this.shared.highlight_option_target=!1,this.showTemplateModal=!0;JSON.parse(B()(t));this.code=B()(t)},save_template_step1:function(){var t=this;this.$validator.validateAll().then(function(s){if(s)t.saving_template=!0,t.save_template_step2(t.selected_template_id);else{var e="";t.errors.all().forEach(function(t){e=e+t+"\n"}),e+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:e,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})}})},save_template_step2:function(t){arguments.length>1&&void 0!==arguments[1]&&arguments[1];var s=this;Xs.a.start();var e={api_token:this.shared.api_token,site_token:this.shared.site_token,type:"block",code:this.code,name:this.template_block_name};this.axios.post(seedprod_remote_api+"template-save",e).then(function(t){Xs.a.done(),s.showTemplateModal=!1,s.saving_template=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/success-24px-white.svg",text:"Template has been saved!",toast:!0,type:null,customClass:"sp-toast-success",position:"top-end",showConfirmButton:!1,timer:3e4})}).catch(function(t){console.log(t),Xs.a.done(),s.saving_template=!1,s.$swal({imageUrl:s.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.message,toast:!0,type:null,position:"top-end",showConfirmButton:!1,timer:6e3})})},maybe_add_block:function(t){0===t&&this.$router.push({name:"setup_block_options"})},remove_editor:function(t){},colClass:function(t,s,e){var o={};return""!=e.settings.bgPosition&&(o["spBg"+e.settings.bgPosition]=!0),o["sp-w-full"]=!0,o["sp-highlight-row"]=this.shared.highlight_option_target==t.id&&0==this.shared.is_moving||this.shared.setup_page_meta.current_block.id==t.id&&this.$route.params.blockid||this.shared.highlight_option_target==e.id&&0==this.shared.is_moving||this.shared.setup_page_meta.current_block.id==e.id&&this.$route.params.blockid,o},resize_cols:function(t){var s=[],e=[],o=0,i=0;if(t.cols.forEach(function(t){o=jQuery("#sp-"+t.id).outerWidth(),i+=o}),t.cols.forEach(function(t){s.push("#sp-"+t.id),o=jQuery("#sp-"+t.id).outerWidth(),e.push(Math.round(o/i*100))}),!1===this.resizeCol.hasOwnProperty(t.id)){var a=Object(Zs["a"])(s,{sizes:e,gutterSize:6,dragInterval:1,onDrag:function(){},onDragEnd:function(s){var e=0;t.cols.forEach(function(t){t.settings.colWidth=Math.round(s[e]),e++})}});this.resizeCol[t.id]=a}}},mounted:function(){var t=this;lodash.forOwn(this.shared.block_templates.row,function(s,e){t.set_default_val(t.row.settings,e,s)})},computed:{rowClasses:function(){var t={};return""!=this.row.settings.bgPosition&&(t["spBg"+this.row.settings.bgPosition]=!0),t},rowStyleObject:function(){var t="100%",s="100%";""!=this.row.settings.width&&(t="auto",s=this.row.settings.width+"px");var e="";""!=this.row.settings.marginTop&&(e=this.row.settings.marginTop+"px");var o="";""!=this.row.settings.borderRadius&&(o=this.row.settings.borderRadius+"px"),o=!1===this.row.settings.borderRadiusSync?this.border_radius_render(this.row.settings.borderRadiusTL,this.row.settings.borderRadiusTR,this.row.settings.borderRadiusBR,this.row.settings.borderRadiusBL):this.row.settings.borderRadiusTL+"px";var i=this.row.settings.borderTop,a=this.row.settings.borderRight,n=this.row.settings.borderBottom,l=this.row.settings.borderLeft;this.row.settings.borderSync&&(a=i,n=i,l=i);var r="";""!=this.row.settings.bgImage&&(r="url('"+this.row.settings.bgImage+"')");var c="";return c=this.row.settings.paddingSync?this.padding_render(this.row.settings.paddingTop,this.row.settings.paddingTop,this.row.settings.paddingTop,this.row.settings.paddingTop):this.padding_render(this.row.settings.paddingTop,this.row.settings.paddingRight,this.row.settings.paddingBottom,this.row.settings.paddingLeft),""==r&&"g"==this.row.settings.bgStyle&&(r="linear"==this.row.settings.bgGradient.type?"linear-gradient("+this.row.settings.bgGradient.angle+"deg, "+this.row.settings.bgGradient.color1+" "+this.row.settings.bgGradient.color1location+"%, "+this.row.settings.bgGradient.color2+" "+this.row.settings.bgGradient.color2location+"%)":"radial-gradient(circle at "+this.row.settings.bgGradient.position+", "+this.row.settings.bgGradient.color1+" "+this.row.settings.bgGradient.color1location+"%, "+this.row.settings.bgGradient.color2+" "+this.row.settings.bgGradient.color2location+"%)"),{padding:c,"background-image":r,"border-top":this.border_render(i,this.row.settings.borderStyle,this.row.settings.borderColor),"border-right":this.border_render(a,this.row.settings.borderStyle,this.row.settings.borderColor),"border-bottom":this.border_render(n,this.row.settings.borderStyle,this.row.settings.borderColor),"border-left":this.border_render(l,this.row.settings.borderStyle,this.row.settings.borderColor),"background-color":this.row.settings.bgColor,width:t,"max-width":s,"margin-top":e,"box-shadow":this.box_shadow(this.row.settings.shadow),"border-radius":o}}},components:{LiteCTABuilder:qs["a"],draggable:$.a,MyButton:J,Header:tt,Icon:ot,Feature:nt,IconFeature:ct,MyText:vt,BulletList:kt,MyImage:St,MyVideo:$t,Countdown:Rt,Divider:Dt,Spacer:Yt,SocialProfiles:Qt,SocialSharing:es,CustomHTML:rs,Shortcode:ds,OptinForm:hs,ContactForm:Ns,Giveaway:Us,ProgressBar:Gs,Split:Zs["a"],modal:Js["a"],MyForm:_s,Nav:xs,Anchor:Os,StarRating:ks,Row:function(){return Promise.resolve().then(e.bind(null,"797f"))}}},Qs=Ks,te=Object(G["a"])(Qs,S,H,!1,null,null,null);s["default"]=te.exports},"81f6":function(t,s,e){"use strict";e.d(s,"a",function(){return i});var o=e("2b0e"),i=new o["default"]},f408:function(t,s,e){"use strict";var o=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-text-center sp-w-full"},[e("div",[e("h1",{staticClass:"sp-mb-4 sp-leading-tight sp-text-2xl sp-font-bold sp-text-neutral"},[t._v("\n "+t._s(this.feature)+" is a PRO Feature\n ")]),e("p",{staticClass:"sp-mb-8 sp-text-base"},[t._v("\nWe're sorry, "+t._s(t.feature)+" is not available on your plan. Please upgrade to the PRO version to unlock all these awesome features.\n ")]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center hover:sp-text-white",staticStyle:{color:"#fff !important"},attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=pluginbuilder-"+t.feature_source,target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")]),e("div",{staticClass:"sp-mt-3 sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")])])])])},i=[],a=e("bd86"),n=e("561c"),l=e("4328"),r=e.n(l),c={name:"LiteCTASubscribers",data:function(){var t;return t={txt_1:Object(n["a"])("Dismiss this message","coming-soon"),txt_2:Object(n["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(n["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(n["a"])("Pro Features:","coming-soon"),txt_995:Object(n["a"])("Drag & Drop Page Builder","coming-soon"),txt_996:Object(n["a"])("20+ PRO Page Blocks","coming-soon"),txt_997:Object(n["a"])("PRO Email Marketing Integrations","coming-soon"),txt_998:Object(n["a"])("Custom 404 Pages","coming-soon"),txt_999:Object(n["a"])("Page Access Controls","coming-soon"),txt_9910:Object(n["a"])("100+ PRO Page Templates","coming-soon"),txt_9911:Object(n["a"])("PRO Smart Sections","coming-soon"),txt_9912:Object(n["a"])("Email Subscriber Management","coming-soon"),txt_9913:Object(n["a"])("Saved Templates","coming-soon"),txt_9914:Object(n["a"])("Plus much more...","coming-soon"),txt_15:Object(n["a"])("Bonus:","coming-soon")},Object(a["a"])(t,"txt_15",Object(n["a"])("Bonus:","coming-soon")),Object(a["a"])(t,"txt_16",Object(n["a"])("SeedProd Lite users get","coming-soon")),Object(a["a"])(t,"txt_17",Object(n["a"])("a discount off the regular price","coming-soon")),Object(a["a"])(t,"txt_18",Object(n["a"])("automatically applied at checkout.","coming-soon")),Object(a["a"])(t,"txt_19",Object(n["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon")),t},props:{feature_source:{type:String,default:""},feature:{type:String,default:""}},methods:{dismiss:function(){var t=this,s=r.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},p=c,d=e("2877"),u=Object(d["a"])(p,o,i,!1,null,null,null);s["a"]=u.exports}});
1
+ (function(t){function s(s){for(var o,n,l=s[0],r=s[1],c=s[2],d=0,u=[];d<l.length;d++)n=l[d],i[n]&&u.push(i[n][0]),i[n]=0;for(o in r)Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o]);p&&p(s);while(u.length)u.shift()();return a.push.apply(a,c||[]),e()}function e(){for(var t,s=0;s<a.length;s++){for(var e=a[s],o=!0,l=1;l<e.length;l++){var r=e[l];0!==i[r]&&(o=!1)}o&&(a.splice(s--,1),t=n(n.s=e[0]))}return t}var o={},i={index:0},a=[];function n(s){if(o[s])return o[s].exports;var e=o[s]={i:s,l:!1,exports:{}};return t[s].call(e.exports,e,e.exports,n),e.l=!0,e.exports}n.m=t,n.c=o,n.d=function(t,s,e){n.o(t,s)||Object.defineProperty(t,s,{enumerable:!0,get:e})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,s){if(1&s&&(t=n(t)),8&s)return t;if(4&s&&"object"===typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(n.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&s&&"string"!=typeof t)for(var o in t)n.d(e,o,function(s){return t[s]}.bind(null,o));return e},n.n=function(t){var s=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(s,"a",s),s},n.o=function(t,s){return Object.prototype.hasOwnProperty.call(t,s)},n.p="/wp-content/plugins/seedprod-pro/public/lite/vue-backend/";var l=window["webpackJsonp"]=window["webpackJsonp"]||[],r=l.push.bind(l);l.push=s,l=l.slice();for(var c=0;c<l.length;c++)s(l[c]);var p=r;a.push([0,"chunk-vendors","chunk-common"]),e()})({0:function(t,s,e){t.exports=e("56d7")},"56d7":function(t,s,e){"use strict";e.r(s);var o=e("f499"),i=e.n(o),a=(e("7f7f"),e("cadf"),e("551c"),e("f751"),e("097d"),e("2b0e")),n=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",["template"==t.$router.currentRoute.name?e("div",{key:t.componentKey,ref:"spbuilder",staticClass:"sp--ml-5 sp-antialiased sp-font-sans",attrs:{id:"seedprod-customizer"}},[e("keep-alive",[e("router-view")],1),t.shared.doing_ajax?e("div",{attrs:{id:"seedprod-ajax-status"}},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()],1):e("div",{key:t.componentKey,ref:"spbuilder",staticClass:"seedprod sp-fixed sp-bg-neutral-5 sp-top-0 sp-left-0 sp-bottom-0 sp-right-0 sp-h-full sp-z-10 sp-antialiased sp-font-sans",class:{"sp-overflow-y-scroll":"publish"==t.$router.currentRoute.name||"template"==t.$router.currentRoute.name},attrs:{id:"seedprod-customizer"}},[e("router-view"),t.shared.doing_ajax?e("div",{attrs:{id:"seedprod-ajax-status"}},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):t._e()],1)])},l=[],r=(e("6762"),e("2fdb"),e("2ef0")),c=e.n(r),p=e("4328"),d=e.n(p),u=e("323e"),g=e.n(u),h=e("66cb"),m=e.n(h),v=e("b132"),b=e("561c"),f={mixins:[v["a"]],data:function(){return{shared:seedprod_store,componentKey:0,renderComponent:!0}},components:{},created:function(){},mounted:function(){localStorage.removeItem("history"),this.update_head_css()},watch:{$route:function(t,s){("template"==s.name&&"setup_details"==t.name||"template"==s.name&&"publish"==t.name)&&this.save_lpage(!0)},"shared.settings.document":{handler:function(t){this.update_storage()},deep:!0}},methods:{kb_shortcuts:function(t){t.expectedEvent.keyCode&&this.$router.push({name:"setup_block_options"})},update_storage:c.a.debounce(function(){if(null===localStorage.getItem("history"))var t=[];else t=JSON.parse(localStorage.getItem("history"));var s=this.shared.settings.document;t.length>10&&t.shift(),t.push(s),localStorage.setItem("history",i()(t))},500),undome:function(){var t=JSON.parse(localStorage.getItem("history"));this.shared.settings.document=t[0],this.forceRerender()},forceRerender:function(){var t=this;this.renderComponent=!1,this.$nextTick().then(function(){t.renderComponent=!0})}}};window.onbeforeunload=function(){if(!seedprod_page.includes("_template")&&i()(seedprod_store.settings)!==seedprod_store.settings_org)return Object(b["a"])("Changes not saved, are you sure you want to leave?","coming-soon")};var x=f,w=e("2877"),C=Object(w["a"])(x,n,l,!1,null,null,null),k=C.exports,y=e("8c4f"),z=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{},[e("div",{staticClass:"sp-bg-white"},["welcome"!=t.$router.currentRoute.name?e("div",{staticClass:"sp-bg-white sp-pt-6 sp-pb-10 sp-px-8 sp-text-neutral sp-flex sp-justify-between"},[e("div",{staticClass:"sp-flex sp-justify-center sp-flex-1 sp-flex-col"},[e("a",{staticClass:"sp-text-neutral-60 sp-text-12px sp-font-semibold sp-uppercase sp-mb-2",attrs:{href:"admin.php?page="+t.shared.page_path+"#/"},domProps:{innerHTML:t._s(t.txt_1)}}),e("h1",{staticClass:"sp-text-neutral sp-text-xl sp-font-bold"},[t._v(t._s(t.txt_2))])]),e("div",[e("a",{staticClass:"sp-bg-neutral-10 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-p-c63 sp-text-neutral-60",attrs:{href:"https://www.seedprod.com/docs/",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"}})])])])]):t._e(),e("div",{staticClass:"sp-flex sp-px-8 sp-bg-white"},[e("div",{staticClass:"sp-text-base sp-cursor-pointer sp-font-semibold sp-text-neutral-60 sp-pb-5 sp-mr-8 hover:sp-text-neutral",class:{"sp-border-b-2 sp-border-primary sp-text-neutral sp-font-bold":1==t.tab},on:{click:function(s){return t.set_tab(1)}}},[t._v("\n "+t._s(t.txt_3)+"\n ")]),e("div",{staticClass:"sp-text-base sp-cursor-pointer sp-font-semibold sp-text-neutral-60 sp-mr-8 hover:sp-text-neutral",class:{"sp-border-b-2 sp-border-primary sp-text-neutral sp-font-bold":2==t.tab},on:{click:function(s){t.showUpsellModal=!0}}},[t._v("\n "+t._s(t.txt_4)+"\n ")]),e("div",{staticClass:"sp-text-base sp-cursor-pointer sp-font-semibold sp-text-neutral-60 hover:sp-text-neutral",class:{"sp-border-b-2 sp-border-primary sp-text-neutral sp-font-bold":3==t.tab},on:{click:function(s){t.showUpsellModal=!0}}},[t._v("\n "+t._s(t.txt_5)+"\n ")])])]),2==t.tab?e("div",[e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.favs||t.favs.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.favs.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-"+s.id+".png"}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.save_template(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-80 sp-text-xs sp-font-bold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),s.favorited?e("span",{staticClass:"sp-text-red sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"detach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"}})])]):e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"attach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"}})])])])])}),0):e("div",{staticClass:"sp-text-center sp-text-base sp-m-20 sp-text-neutral"},[t._v("\n "+t._s(t.txt_6)+"\n "),e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.txt_24},expression:"{\n content: txt_24,\n }",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle sp-ml-2"})])])]):t._e(),3==t.tab?e("div",[e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.saved||t.saved.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.saved.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-saved.png"}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.save_template(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-80 sp-text-xs sp-font-bold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.remove_saved(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])])])}),0):e("div",{staticClass:"sp-text-center sp-text-base sp-m-20 sp-text-neutral"},[t._v("\n "+t._s(t.txt_7)+"\n "),e("i",{directives:[{name:"tooltip",rawName:"v-tooltip.top-left",value:{content:t.txt_25},expression:"{\n content: txt_25,\n }",modifiers:{"top-left":!0}}],staticClass:"fas fa-question-circle sp-ml-2"})])])]):t._e(),1==t.tab?e("div",[e("div",{staticClass:"sp-px-8 sp-flex sp-items-center sp-pt-12"},[e("div",{staticClass:"sp-flex-1"},[e("span",{staticClass:"sp-text-neutral-60 sp-uppercase sp-text-12px sp-tracking-wider sp-mr-4 sp-font-semibold"},[t._v(t._s(t.txt_8))]),e("button",{staticClass:"sp-inline-block sp-px-4 sp-py-2 sp-rounded-sm sp-leading-none sp-no-underline sp-text-xs hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold sp-mr-2 sp-bg-neutral-15 sp-text-neutral-80",class:{"sp-cat-active":0==t.templatecat},on:{click:function(s){return t.filter_cat(0)}}},[t._v("\n "+t._s(t.txt_9)+"\n ")]),t._l(t.cats,function(s,o){return e("button",{key:o,staticClass:"sp-inline-block sp-px-4 sp-py-2 sp-rounded-sm sp-leading-none sp-no-underline sp-text-xs hover:sp-bg-neutral-20 sp-cursor-pointer sp-font-semibold sp-bg-neutral-15 sp-text-neutral-80 sp-mr-2 sp-mb-2",class:{"sp-cat-active":t.templatecat==s.id},on:{click:function(e){return t.filter_cat(s.id)}}},[t._v("\n "+t._s(s.name)+"\n ")])})],2),e("div",{staticClass:"sp-pl-5 sp-flex sp-justify-center sp-items-center sp-relative sp-w-280"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-26"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.templatesearch,expression:"templatesearch"}],staticClass:"sp-form-input sp-w-full sp-pl-8 sp-rounded sp-mr-1",attrs:{placeholder:t.txt_22},domProps:{value:t.templatesearch},on:{keyup:function(s){return!s.type.indexOf("key")&&t._k(s.keyCode,"enter",13,s.key,"Enter")?null:t.search(s)},input:function(s){s.target.composing||(t.templatesearch=s.target.value)}}})]),""!=t.templatesearch?e("span",{staticClass:"sp-text-neutral-40 sp--ml-6 sp-relative sp-z-10 sp-cursor-pointer",on:{click:t.clear_search}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]):t._e()]),e("div",{staticClass:"sp-p-8 theme-browser"},[!1===t.themes||t.themes.data.length>0?e("div",{staticClass:"themes clearfix"},t._l(t.themes.data,function(s){return e("div",{key:s.id,staticClass:"theme",staticStyle:{border:"none","margin-bottom":"2%"}},[e("div",{staticClass:"sp-bg-white sp-p-1 sp-border sp-border-neutral-15 sp-relative",on:{mouseenter:function(e){return t.set_template_hover(s.id)},mouseleave:function(s){return t.set_template_hover(!1)}}},[e("img",{staticClass:"sp-border-none",attrs:{src:"https://assets.seedprod.com/preview-"+s.id+".png"}}),0==s.free?e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-mt-2 sp-mr-2"},[t._v("\n PRO\n ")]):t._e(),e("div",{directives:[{name:"show",rawName:"v-show",value:t.template_hover==s.id,expression:"template_hover == theme.id"}],staticClass:"sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-flex sp-items-center sp-justify-center"},[e("div",{staticClass:"sp-bg-neutral sp-opacity-75 sp-absolute sp-top-0 sp-left-0 sp-right-0 sp-bottom-0 sp-m-1"}),e("button",{staticClass:"sp-mr-1 sp-bg-primary sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",attrs:{disabled:!!t.shared.doing_ajax},on:{click:function(e){return t.save_template(s.id)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"}})])]),e("button",{staticClass:"sp-ml-1 sp-bg-neutral sp-w-10 sp-h-10 sp-rounded-full sp-z-10 sp-text-white sp-flex sp-items-center sp-justify-center",on:{click:function(e){return t.preview_template(s.id,s.name)}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"}})])])])]),e("div",{staticClass:"sp-mt-2 sp-text-neutral-80 sp-text-xs sp-font-bold sp-flex sp-items-center sp-justify-between"},[t._v("\n "+t._s(s.name)+"\n "),s.favorited?e("span",{staticClass:"sp-text-red sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"detach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"}})])]):e("span",{staticClass:"sp-text-neutral-40 sp-cursor-pointer",on:{click:function(e){return t.updateFavs(s.id,"attach")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"}})])])])])}),0):e("div",{staticClass:"sp-text-center sp-m-20 sp-text-neutral"},[t._v("\n "+t._s(t.txt_10)+"\n ")])]),1!=t.themes.last_page?e("div",{staticClass:"sp-flex sp-items-center sp-justify-center sp-text-xs sp-text-neutral-40"},[e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.first_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("first")}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"}}),e("path",{attrs:{d:"M24 24H0V0h24v24z",fill:"none"}})]),t._v(t._s(t.txt_18)+"\n ")]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.prev_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("prev")}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_19)+"\n ")]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.next_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("next")}}},[t._v("\n "+t._s(t.txt_20)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),e("a",{staticClass:"sp-mx-2 sp-flex sp-items-center",attrs:{href:"#",disabled:!t.themes.last_page_url},on:{click:function(s){return s.preventDefault(),t.pagination("last")}}},[t._v("\n "+t._s(t.txt_21)+"\n "),e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]):t._e()]):t._e(),t.showPreview?e("div",{staticClass:"sp-fixed sp-top-0 sp-left-0 sp-bottom-0 sp-right-0",staticStyle:{"z-index":"99999"}},[e("div",{staticClass:"sp-absolute sp-bg-neutral-60 sp-top-0 sp-left-0 sp-bottom-0 sp-right-0 sp-opacity-75"}),e("div",{staticClass:"sp-relative sp-z-40 sp-bg-neutral sp-text-white sp-h-72px sp-flex sp-items-center sp-px-5 sp-justify-between"},[e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3"},[e("svg",{attrs:{width:"32",height:"34",viewBox:"0 0 32 34",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0 0C0 0 0.74666 0.0506396 16.0822 2.054C31.4178 4.05737 36.7255 19.603 27.3358 33.1707C28.7883 21.0478 26.13 8.47161 15.4523 7.00138C4.77453 5.53114 5.70455 5.75641 5.70455 5.75641C5.70455 5.75641 5.88147 8.42652 6.8834 15.6043C7.88534 22.7821 13.4921 26.3022 18.3988 28.1143C18.3988 28.1143 18.6866 19.714 15.949 16.0165C13.2114 12.3191 9.80548 9.86362 9.80548 9.86362C9.80548 9.86362 17.8094 10.8232 20.8313 16.4032C23.8532 21.9832 23.5588 33.7778 23.5588 33.7778L20.2989 33.6092C11.5273 32.556 3.33239 27.2759 1.939 16.198C0.545613 5.1201 0 0 0 0Z",fill:"#7B6B7A"}})]),e("span",{staticClass:"sp-pl-8 sp-text-base sp-text-neutral-40 sp-text-semibold"},[t._v(t._s(t.preview_page_name))])]),e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3 sp-justify-center"},[e("button",{staticClass:"sp-w-8 sp-h-8 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-mr-1 sp-cursor-pointer",class:{"sp-bg-white sp-text-neutral-80":"desktop"==t.preview_mode,"sp-bg-neutral-40":"mobile"==t.preview_mode},on:{click:function(s){return t.set_preview_mode("desktop")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"}})])]),e("button",{staticClass:"sp-w-8 sp-h-8 sp-rounded-full sp-flex sp-items-center sp-justify-center sp-ml-2 sp-cursor-pointer",class:{"sp-bg-white sp-text-neutral-80":"mobile"==t.preview_mode,"sp-bg-neutral-40":"desktop"==t.preview_mode},on:{click:function(s){return t.set_preview_mode("mobile")}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-h-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"}})])])]),e("div",{staticClass:"sp-flex sp-items-center sp-w-1/3 sp-justify-end"},[e("button",{staticClass:"sp-inline-block sp-bg-primary sp-px-4 sp-py-3 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-sm hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold sp-mr-5",on:{click:function(s){return t.save_template(t.previewId)}}},[t._v("\n "+t._s(t.txt_12)+"\n ")]),e("button",{staticClass:"sp-text-neutral-40",on:{click:t.close_preview_template}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])])])]),e("div",{staticClass:"sp-overflow-y-scroll sp-h-full"},[e("iframe",{class:{"sp-transition-width sp-duration-500 sp-ease-out sp-h-full sp-h-600px sp-relative sp-w-350px sp-mx-auto sp-my-10 sp-rounded-lg sp-p-3 sp-bg-white":"mobile"==t.preview_mode,"sp-h-full sp-relative sp-w-full ":"desktop"==t.preview_mode},attrs:{src:t.shared.template_preview_path+t.previewId+".html"}})])]):t._e(),t.showModal?e("modal",{staticClass:"sp-w-720px",on:{close:function(s){t.showModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("h1",{staticClass:"sp-leading-none sp-text-2xl sp-font-bold sp-mb-3"},[t._v("\n "+t._s(t.txt_13)+"\n ")]),e("p",{staticClass:"sp-text-base sp-mb-10"},[t._v(t._s(t.txt_14))]),e("div",[e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-3 sp-inline-block"},[t._v(t._s(t.txt_15))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.page_name,expression:"page_name"},{name:"validate",rawName:"v-validate",value:"required",expression:"'required'"}],staticClass:"sp-form-input sp-w-full sp-px-5 sp-rounded sp-border sp-border-neutral-20 sp-p-4 sp-rounded-sm",staticStyle:{padding:"7px 18px",color:"#230820"},attrs:{type:"text","data-vv-as":"Page Name",name:"page_name",placeholder:t.txt_23},domProps:{value:t.page_name},on:{input:function(s){s.target.composing||(t.page_name=s.target.value)}}}),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("page_name"),expression:"errors.has('page_name')"}],staticClass:"sp-text-red sp-mt-1"},[t._v("\n "+t._s(t.errors.first("page_name"))+"\n ")])]),e("div",{staticClass:"sp-mt-8"},[e("div",[e("label",{staticClass:"sp-text-lg sp-font-bold sp-mb-3 sp-inline-block"},[t._v(t._s(t.txt_16))])]),e("div",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded"},[e("span",{staticClass:"sp-rounded-tl sp-rounded-bl sp-h-42px sp-flex sp-items-center sp-justify-center sp-px-5 sp-bg-neutral-5 sp-text-neutral-60 sp-text-lg",staticStyle:{padding:"23px 18px"}},[t._v(t._s(t.shared.home_url)+"/")]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.page_slug,expression:"page_slug"},{name:"validate",rawName:"v-validate",value:"alpha_dash|required",expression:"'alpha_dash|required'"}],staticClass:"sp-form-input sp-border-none sp-flex-1",staticStyle:{display:"inline-block",width:"300px",border:"none",color:"#230820"},attrs:{type:"text",name:"slug","data-vv-as":"Page URL"},domProps:{value:t.page_slug},on:{input:function(s){s.target.composing||(t.page_slug=s.target.value)}}})]),e("div",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("slug"),expression:"errors.has('slug')"}],staticClass:"sp-text-red sp-mt-1"},[t._v("\n "+t._s(t.errors.first("slug"))+"\n ")])]),e("button",{staticClass:"sp-mt-8 sp-inline-block sp-bg-primary sp-px-6 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-lg hover:sp-bg-primary-lighter sp-cursor-pointer sp-font-semibold",attrs:{disabled:t.going_to_next_step},on:{click:t.close_modal}},[t._v("\n "+t._s(t.txt_17)+"\n "),t.going_to_next_step?e("span",{staticClass:"sp-ml-2"},[e("i",{staticClass:"fas fa-spinner fa-spin"})]):e("span",{staticClass:"sp-ml-2"},[t._v("→")])])]),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e(),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTATemplates")],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},O=[],j=(e("ac6a"),e("6b54"),e("a481"),e("714b")),M=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-text-center sp-w-full"},[e("div",[e("h1",{staticClass:" sp-mb-4 sp-leading-tight sp-text-2xl sp-font-bold sp-text-neutral"},[t._v("\n Templates are a PRO Feature\n ")]),e("p",{staticClass:"sp-mb-8 sp-text-base"},[t._v("\nWe're sorry, not all Templates are not available on your plan. Please upgrade to the PRO version to unlock all these awesome features.\n ")]),e("a",{staticClass:"sp-bg-green sp-px-8 sp-py-4 sp-rounded sp-leading-none sp-text-white sp-no-underline sp-text-base hover:sp-bg-green-lighter sp-cursor-pointer sp-font-semibold sp-inline-flex sp-items-center sp-justify-center hover:sp-text-white",staticStyle:{color:"#fff !important"},attrs:{href:"https://seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugintemplatepage",target:"_blank"}},[e("svg",{staticClass:"sp-fill-current sp-mr-2 sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(" Upgrade to SeedProd PRO Now\n ")]),e("div",{staticClass:"sp-mt-3 sp-text-primary sp-text-lg sp-font-bold"},[t._v("Special Upgrade Offer - Save 50% Off")])])])])},S=[],H={name:"LiteCTASubscribers",data:function(){return{txt_1:Object(b["a"])("Dismiss this message","coming-soon"),txt_2:Object(b["a"])("Get SeedProd Pro and Unlock all the Powerful Features","coming-soon"),txt_3:Object(b["a"])("Thanks for being a loyal SeedProd Lite user. Upgrade to\nSeedProd Pro to unlock all the awesome features and\nexperience why SeedProd is the best WordPress landing\npage plugin.","coming-soon"),txt_4:Object(b["a"])("Pro Features:","coming-soon"),txt_5:Object(b["a"])("Drag & Drop Page Builder","coming-soon"),txt_6:Object(b["a"])("More Premium Blocks","coming-soon"),txt_7:Object(b["a"])("Capture Emails and Leads","coming-soon"),txt_8:Object(b["a"])("Marketing & CRM Integrations","coming-soon"),txt_9:Object(b["a"])("Maintenance Access Controls","coming-soon"),txt_10:Object(b["a"])("Growing Library of Templates","coming-soon"),txt_11:Object(b["a"])("Smart Sections","coming-soon"),txt_12:Object(b["a"])("More Design Controls","coming-soon"),txt_13:Object(b["a"])("Coming Soon Access Controls","coming-soon"),txt_14:Object(b["a"])("Plus much more...","coming-soon"),txt_15:Object(b["a"])("Bonus:","coming-soon"),txt_16:Object(b["a"])("SeedProd Lite users get","coming-soon"),txt_17:Object(b["a"])("a discount off the regular price","coming-soon"),txt_18:Object(b["a"])("automatically applied at checkout.","coming-soon"),txt_19:Object(b["a"])("Get SeedProd Pro Today and Unlock all the Powerful Features »","coming-soon")}},methods:{dismiss:function(){var t=this,s=d.a.stringify({dismiss:!0});this.shared.settings_page_meta.dismiss_settings_lite_cta=!0,t.axios.post(seedprod_dismiss_settings_lite_cta_url,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})}}},V=H,B=Object(w["a"])(V,M,S,!1,null,null,null),L=B.exports,T={name:"templatechooser",mixins:[v["a"]],data:function(){return{txt_1:Object(b["a"])("&larr; Go Back","coming-soon"),txt_2:Object(b["a"])("Choose a New Page Template","coming-soon"),txt_3:Object(b["a"])("All Templates","coming-soon"),txt_4:Object(b["a"])("Favorite Templates","coming-soon"),txt_5:Object(b["a"])("Saved Templates","coming-soon"),txt_6:Object(b["a"])("No Favorited Templates Found","coming-soon"),txt_7:Object(b["a"])("No Saved Templates Found","coming-soon"),txt_8:Object(b["a"])("Filter:","coming-soon"),txt_9:Object(b["a"])("All","coming-soon"),txt_10:Object(b["a"])("No Templates Found","coming-soon"),txt_11:Object(b["a"])("Choose This Template","coming-soon"),txt_12:Object(b["a"])("Choose This Template","coming-soon"),txt_13:Object(b["a"])("Enter your new page details","coming-soon"),txt_14:Object(b["a"])("You can always change it later in Page Settings.","coming-soon"),txt_15:Object(b["a"])("Page Name:","coming-soon"),txt_16:Object(b["a"])("Page URL:","coming-soon"),txt_17:Object(b["a"])("Save and Start Editing the Page","coming-soon"),txt_18:Object(b["a"])("First Page","coming-soon"),txt_19:Object(b["a"])("Prev","coming-soon"),txt_20:Object(b["a"])("Next","coming-soon"),txt_21:Object(b["a"])("Last Page","coming-soon"),txt_22:Object(b["a"])("Search templates...","coming-soon"),txt_23:Object(b["a"])("My Landing Page name goes here","coming-soon"),txt_24:Object(b["a"])("You can favorite any template by clicking the heart icon under the page template.","coming-soon"),txt_25:Object(b["a"])("You can save pages as templates in the builder. Any saved pages will be shown here.","coming-soon"),preview_mode:"desktop",preview_page_name:!1,previewId:!1,showPreview:!1,going_to_next_step:!1,selected_template_id:!1,page_name:"",page_slug:"",templatesearch:"",templatecat:"",tab:1,showModal:!1,showUpsellModal:!1,themes:!1,saved:!1,favs:!1,cats:!1,template_hover:!1,shared:seedprod_store,template_api_url:seedprod_remote_api+"templates?page=1",template_api_url_preview:seedprod_remote_api+"templates-preview?page=1",template_update_api_url:seedprod_remote_api+"template-update"}},created:function(){"cs"==this.shared.settings.page_type&&(this.templatecat=1),"mm"==this.shared.settings.page_type&&(this.templatecat=2),"p404"==this.shared.settings.page_type&&(this.templatecat=3),this.loadCats(),this.loadThemes()},watch:{page_name:{handler:function(t,s){this.page_slug=this.slugify(t)}}},methods:{slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},set_preview_mode:function(t){this.preview_mode=t},preview_template:function(t,s){this.previewId=t,this.showPreview=!0,this.preview_page_name=s,this.set_template_hover(!1)},close_preview_template:function(){this.previewId=!1,this.showPreview=!1,this.preview_page_name=!1},remove_saved:function(t){var s=this,e=t,o=this;g.a.start(),this.$swal({imageUrl:"",title:Object(b["a"])("Are you sure you want to delete?","coming-soon"),type:null,showCancelButton:!0,confirmButtonColor:"#d33",confirmButtonText:Object(b["a"])("Yes, delete it!","coming-soon")}).then(function(t){if(t.value){var i=d.a.stringify({template_id:e,method:"remove-saved",api_token:s.shared.api_token,site_token:s.shared.site_token});s.axios.post(s.template_update_api_url,i,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){for(var s in g.a.done(),o.saved.data)o.saved.data[s].id==e&&o.saved.data.splice(s,1)}).catch(function(t){console.log(t),g.a.done(),o.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})}),s.$swal({imageUrl:o.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(b["a"])("Deleted!","coming-soon"),toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})}else g.a.done()})},set_tab:function(t){this.tab=t,1==t&&this.loadThemes(),2==t&&this.loadFavs(),3==t&&this.loadSaved()},pagination:function(t){"first"==t&&this.themes.first_page_url&&(this.template_api_url=this.themes.first_page_url,this.loadThemes()),"prev"==t&&this.themes.prev_page_url&&(this.template_api_url=this.themes.prev_page_url,this.loadThemes()),"next"==t&&this.themes.next_page_url&&(this.template_api_url=this.themes.next_page_url,this.loadThemes()),"last"==t&&this.themes.last_page_url&&(this.template_api_url=this.themes.last_page_url,this.loadThemes())},search:function(){this.templatecat="",this.loadThemes()},clear_search:function(){this.templatesearch="",this.loadThemes()},filter_cat:function(t){this.templatesearch="",this.templatecat=t,this.loadThemes()},updateFavs:function(t,s){var e=d.a.stringify({template_id:t,method:s,api_token:this.shared.api_token,site_token:this.shared.site_token}),o=this.themes.data;o.forEach(function(s){s.id==t&&(s.favorited=!s.favorited)});o=this.favs.data;for(var i in this.favs.data)this.favs.data[i].id==t&&this.favs.data.splice(i,1);this.axios.post(this.template_update_api_url,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){g.a.done()}).catch(function(t){console.log(t.response),self.shared.doing_ajax=!1,self.$swal({imageUrl:self.shared.plugin_path+"public/svg/error-24px-white.svg",text:t.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},recordPage:function(){var t=this;t.loading=!0,g.a.start();var s=d.a.stringify({page_uuid:this.shared.page_uuid,site_token:this.shared.site_token,api_token:this.shared.api_token,page_type:this.shared.page_type});t.axios.post(seedprod_remote_api+"record-page",s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"})},loadCats:function(){var t=this;t.loading=!0,g.a.start();var s=this.template_api_url;0==this.shared.api_token&&(s=this.template_api_url_preview),this.axios.get(s+"&filter=cats&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.cats=s.data}).catch(function(s){console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},blankTemplate:function(){var t={id:99999,favorited:!1,name:"Blank Template"};return t},loadThemes:function(){var t=this;t.loading=!0,g.a.start();var s=this.template_api_url;0==this.shared.api_token&&(s=this.template_api_url_preview),this.axios.get(s+"&filter=templates&s="+this.templatesearch+"&cat="+this.templatecat+"&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done();var e=s.data.templates.data;0!=t.shared.api_token&&e.forEach(function(t){t.favorited=s.data.favs.includes(t.id)}),t.themes=s.data.templates}).catch(function(s){g.a.done(),console.log(s),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},loadFavs:function(){var t=this;t.loading=!0,g.a.start(),this.axios.get(this.template_api_url+"&filter=favorites&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done();var e=s.data.data;e.forEach(function(t){t.favorited=!0}),t.favs=s.data}).catch(function(s){g.a.done(),console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},loadSaved:function(){var t=this;t.loading=!0,g.a.start(),this.axios.get(this.template_api_url+"&filter=saved&api_token="+t.shared.api_token+"&site_token="+t.shared.site_token).then(function(s){t.loading=!1,g.a.done(),t.saved=s.data}).catch(function(s){g.a.done(),console.log(s.response),t.shared.doing_ajax=!1,t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:s.response.data.message,toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:5e3})})},set_template_hover:function(t){this.template_hover=t},close_modal:function(){var t=this;this.$validator.validateAll().then(function(s){if(s){t.going_to_next_step=!0;var e=d.a.stringify({post_name:t.page_slug});t.axios.post(seedprod_slug_exists_url,e,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){s.data.success?(t.going_to_next_step=!0,t.save_template(t.selected_template_id)):(t.going_to_next_step=!1,t.page_slug="",alert("This page url already exisits. Please choose a unique page url."))})}else{var o="";t.errors.all().forEach(function(t){o=o+t+"\n"}),o+="",t.$swal({imageUrl:t.shared.plugin_path+"public/svg/error-24px-white.svg",text:o,toast:!0,type:null,position:"top-end",customClass:"sp-toast-error",showConfirmButton:!1,timer:3e3})}})},save_template:function(t){for(var s=0;s<this.themes.data.length;s++)if(t==this.themes.data[s].id&&0==this.themes.data[s].free)return void(this.showUpsellModal=!0);var e=this;if(this.selected_template_id=t,"lp"==this.shared.settings.page_type&&""==this.page_name&&""==this.page_slug)return this.showModal=!0,!1;this.shared.lpage.post_title=this.page_name,this.shared.lpage.post_name=this.page_slug,this.shared.settings.template_id=t,this.shared.settings.is_new=!1;var o=d.a.stringify({lpage_id:this.shared.lpage.id,lpage_template_id:t,lpage_name:this.page_name,lpage_slug:this.page_slug,lpage_type:this.shared.settings.page_type});return g.a.start(),this.axios.post("admin-ajax.php?action="+this.shared.page_path+"_save_template&_wpnonce="+seedprod_nonce,o,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(t){if(g.a.done(),e.going_to_next_step=!1,"updated"==t.data.status)JSON.parse(t.data.code);var s="admin.php?page="+e.shared.page_path+"_builder&id="+e.shared.lpage.id+"#/setup/"+e.shared.lpage.id+"/block-options";location.replace(s)}).catch(function(t){g.a.done(),e.going_to_next_step=!1,e.$swal({imageUrl:e.shared.plugin_path+"public/svg/error-24px-white.svg",text:Object(b["a"])("Could not be saved. Please contact Support if you continue to experience this issue.","coming-soon"),toast:!0,type:null,customClass:"sp-toast-error",position:"top-end",showConfirmButton:!1,timer:3e3})}),!1}},components:{modal:j["a"],LiteCTATemplates:L}},$=T,P=Object(w["a"])($,z,O,!1,null,null,null),N=P.exports,R=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticStyle:{width:"inherit"},attrs:{id:"sp-blocks-sections-wrapper"}},[t.$route.params.blockid?t._e():e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-sections"}},[e("div",{staticClass:"sp-w-1/2"},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z"}})]),t._v(t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer sp-secondary",on:{click:t.goto_sectiontemplates}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-inline-block sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"}})]),t._v(t._s(t.txt_2)+"\n ")])]),e("div",{staticClass:"sp-fixed sp-z-50",staticStyle:{width:"inherit"}},[t.$route.params.blockid?e("div",{staticClass:"sp-flex sp-items-center sp-px-4",class:{"sp-block-type-row":"row"==t.shared.setup_page_meta.current_block.type||"col"==t.shared.setup_page_meta.current_block.type,"sp-block-type-section":"section"==t.shared.setup_page_meta.current_block.type},attrs:{id:"sp-blocks-editing"}},[e("div",{staticClass:"sp-flex-grow"},[e("span",{staticClass:"sp-pb-1"},[t._v(t._s(t.txt_6))]),t._v("\n "+t._s(t.get_display_name)+"\n ")]),e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:"Blocks",delay:{show:400,hide:0}},expression:"{content:'Blocks',delay:{ show: 400, hide: 0 }}"}],staticClass:"sp-cursor-pointer",on:{click:t.goto_blocks}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"}},[e("circle",{attrs:{cx:"1.68164",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"1.68164",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"1.68164",cy:"18.3306",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"9.68164",cy:"18.3306",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"2.33057",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"10.3306",r:"1.5"}}),e("circle",{attrs:{cx:"17.6816",cy:"18.3306",r:"1.5"}})])])]):t._e()]),t.$route.params.blockid&&t.shared.setup_page_meta.current_block?e("div",{ref:"spoptionsbody",staticClass:"sp-options-body"},[e("div",{staticClass:"seedprod-sidebar-form-body seedprod-action-single"},["row"==t.shared.setup_page_meta.current_block.type?e("RowOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"section"==t.shared.setup_page_meta.current_block.type?e("SectionOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"col"==t.shared.setup_page_meta.current_block.type?e("ColOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"button"==t.shared.setup_page_meta.current_block.type?e("ButtonOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"icon"==t.shared.setup_page_meta.current_block.type?e("IconOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"feature"==t.shared.setup_page_meta.current_block.type?e("FeatureOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"iconfeature"==t.shared.setup_page_meta.current_block.type?e("IconFeatureOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"header"==t.shared.setup_page_meta.current_block.type?e("HeaderOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"text"==t.shared.setup_page_meta.current_block.type?e("TextOptions",{key:t.componentKey,attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"image"==t.shared.setup_page_meta.current_block.type?e("ImageOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"divider"==t.shared.setup_page_meta.current_block.type?e("DividerOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"spacer"==t.shared.setup_page_meta.current_block.type?e("SpacerOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"custom-html"==t.shared.setup_page_meta.current_block.type?e("CustomHTMLOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"shortcode"==t.shared.setup_page_meta.current_block.type?e("ShortcodeOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"bullet-list"==t.shared.setup_page_meta.current_block.type?e("BulletListOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"optin-form"==t.shared.setup_page_meta.current_block.type?e("OptinFormOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"form"==t.shared.setup_page_meta.current_block.type?e("MyFormOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"progress-bar"==t.shared.setup_page_meta.current_block.type?e("ProgressBarOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"social-profiles"==t.shared.setup_page_meta.current_block.type?e("SocialProfilesOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"social-sharing"==t.shared.setup_page_meta.current_block.type?e("SocialSharingOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"contact-form"==t.shared.setup_page_meta.current_block.type?e("ContactFormOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"giveaway"==t.shared.setup_page_meta.current_block.type?e("GiveawayOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"video"==t.shared.setup_page_meta.current_block.type?e("VideoOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"starrating"==t.shared.setup_page_meta.current_block.type?e("StarRatingOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"countdown"==t.shared.setup_page_meta.current_block.type?e("CountdownOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"nav"==t.shared.setup_page_meta.current_block.type?e("NavOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e(),"anchor"==t.shared.setup_page_meta.current_block.type?e("AnchorOptions",{attrs:{block:t.shared.setup_page_meta.current_block}}):t._e()],1)]):e("div",{attrs:{id:"seedprod-add-actions"}},[e("div",{staticClass:"sp-pt-5 sp-px-5 sp-pb-2 sp-flex sp-justify-center sp-items-center sp-relative"},[e("span",{staticClass:"sp-text-neutral-40 sp-absolute sp-left-26"},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"}})])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.blocksearch,expression:"blocksearch"}],staticClass:"sp-form-input sp-w-full sp-pl-8",attrs:{placeholder:t.txt_7},domProps:{value:t.blocksearch},on:{input:function(s){s.target.composing||(t.blocksearch=s.target.value)}}})]),e("h3",{staticClass:"sp-flex sp-items-center sp-justify-between",class:{seedprod_collaspe:!t.shared.expand_collapse_state.show_entry_settings},on:{click:function(s){t.shared.expand_collapse_state.show_entry_settings=!t.shared.expand_collapse_state.show_entry_settings}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40"},[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.shared.expand_collapse_state.show_entry_settings},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.shared.expand_collapse_state.show_entry_settings},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.shared.expand_collapse_state.show_entry_settings?e("div",{staticClass:"seedprod-sidebar-form-body "},[e("draggable",{staticClass:"seedprod-drag-source sp-flex sp-flex-wrap",attrs:{sort:!1,clone:t.add_block_option,list:t.standardBlocks,group:{name:"blocks",pull:"clone",put:!1}},on:{start:t.start_move,end:t.end_move}},[t._l(t.standardBlocks,function(s,o){return e("div",{key:o,staticClass:"seedprod-block-option"},[e("button",{on:{mouseover:function(s){t.page_meta.show_icon=o},mouseleave:function(s){t.page_meta.show_icon=!1}}},[e("div",{staticClass:"sp-inline-block sp-mt-6",domProps:{innerHTML:t._s(s.icon)}}),e("span",{staticClass:"sp-font-semibold"},[t._v(t._s(s.name))])])])}),e("draggable",{staticClass:"seedprod-drag-source sp-flex sp-flex-wrap",attrs:{sort:!1,clone:t.add_block_option,list:t.shared.setup_page_meta.block_options,group:{name:"rows",pull:"clone",put:!1}},on:{start:t.start_move,end:t.end_move}},t._l(t.layoutBlocks,function(s,o){return e("div",{key:o,staticClass:"seedprod-block-option"},[e("button",{on:{mouseover:function(s){t.page_meta.show_icon=o},mouseleave:function(s){t.page_meta.show_icon=!1}}},[e("div",{staticClass:"sp-inline-block sp-mt-6",domProps:{innerHTML:t._s(s.icon)}}),e("span",{staticClass:"sp-font-semibold"},[t._v(t._s(s.name))])])])}),0)],2)],1):t._e()]),e("h3",{staticClass:"sp-flex sp-items-center sp-justify-between",class:{seedprod_collaspe:!t.shared.expand_collapse_state.show_entry_settings_2},on:{click:function(s){t.shared.expand_collapse_state.show_entry_settings_2=!t.shared.expand_collapse_state.show_entry_settings_2}}},[t._v("\n "+t._s(t.txt_4)+"\n "),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40"},[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.shared.expand_collapse_state.show_entry_settings_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.shared.expand_collapse_state.show_entry_settings_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.shared.expand_collapse_state.show_entry_settings_2?e("div",{staticClass:"seedprod-sidebar-form-body "},[e("draggable",{staticClass:"seedprod-drag-source sp-flex sp-flex-wrap",attrs:{sort:!1,clone:t.add_block_option,handle:".sp-blockdrag-handle",list:t.advancedBlocks,group:{name:"blocks",pull:"clone",put:!1}},on:{start:t.start_move,end:t.end_move}},t._l(t.advancedBlocks,function(s,o){return e("div",{key:o,staticClass:"seedprod-block-option sp-relative",class:{"sp-pro-only":s.is_pro}},[s.is_pro?e("div",{staticClass:"sp-absolute sp-top-0 sp-right-0 sp-text-green sp-rounded sp-z-20 sp-px-1 sp-text-10px sp-font-semibold sp-mt-2 sp-mr-1"},[e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("g",{attrs:{fill:"none"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",opacity:".87"}})]),e("path",{attrs:{d:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"}})])]):t._e(),e("button",{class:{"sp-blockdrag-handle":!s.is_pro},on:{mouseover:function(s){t.page_meta.show_icon=o+100},mouseleave:function(s){t.page_meta.show_icon=!1},click:function(e){return t.maybe_show_upsell(s)}}},[e("div",{staticClass:"sp-inline-block sp-mt-6",domProps:{innerHTML:t._s(s.icon)}}),e("span",{staticClass:"sp-font-semibold"},[t._v(t._s(s.name))])])])}),0)],1):t._e()]),e("h3",{staticClass:"sp-border-t-0 sp-flex sp-items-center sp-justify-between",class:{seedprod_collaspe:!t.shared.expand_collapse_state.show_entry_settings_3},on:{click:function(s){t.feature="Saved Blocks",t.showUpsellModal=!0}}},[e("span",[t._v(t._s(t.txt_5)+" "),e("div",{staticClass:"sp-inline-block sp-bg-green sp-rounded sp-text-white sp-z-20 sp-py-1 sp-px-2 sp-text-12px sp-font-semibold sp-ml-2"},[t._v("PRO")])]),e("span",{staticClass:"sp-cursor-pointer sp-text-neutral-40"},[e("svg",{staticClass:"sp-w-6 sp-fill-current",class:{"sp-hidden":!t.shared.expand_collapse_state.show_entry_settings_3},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.shared.expand_collapse_state.show_entry_settings_3},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),e("transition",{attrs:{name:"seedprod"}},[t.shared.expand_collapse_state.show_entry_settings_3?e("div",{staticClass:"seedprod-sidebar-form-body "}):t._e()])],1),e("br"),t.showUpsellModal?e("modal",{staticClass:"sp-w-550px",on:{close:function(s){t.showUpsellModal=!1}}},[e("div",{staticClass:"sp-px-10 sp-py-12 sp-text-neutral sp-relative",attrs:{slot:"body"},slot:"body"},[e("button",{staticClass:"sp-text-neutral-40 hover:sp-text-neutral-60 sp-absolute sp-top-0 sp-right-0 sp-m-2",on:{click:function(s){t.showUpsellModal=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-6 sp-h-6",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])]),e("LiteCTABuilder",{attrs:{feature_source:"blocks",feature:t.feature}})],1),e("h3",{attrs:{slot:"header"},slot:"header"})]):t._e()],1)},F=[],A=(e("8449"),e("310e")),E=e.n(A),I=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("div",{staticClass:"sp-flex",attrs:{id:"sp-blocks-edit-sections"}},[e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":1!=t.view},on:{click:function(s){t.view=1}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v("\n "+t._s(t.txt_1)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":2!=t.view},on:{click:function(s){t.view=2}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"}})]),t._v(t._s(t.txt_22)+"\n ")]),e("div",{staticClass:"sp-w-1/2 sp-cursor-pointer",class:{"sp-secondary":3!=t.view},on:{click:function(s){t.view=3}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current sp-mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"}})]),t._v("\n "+t._s(t.txt_2)+"\n ")])]),1==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_1},on:{click:function(s){t.section_1=!t.section_1}}},[t._v("\n "+t._s(t.txt_3)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_1},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_1?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group",class:{input:!0,"has-error":t.errors.has("btnTxt")}},[e("div",[e("label",[t._v(t._s(t.txt_4))])]),e("editor",{attrs:{init:{height:100,branding:!1,menubar:!1,paste_as_text:!0,force_br_newlines:!0,force_p_newlines:!1,forced_root_block:"",plugins:["charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern"],toolbar1:"bold,italic,underline,strikethrough,link,wp_adv",toolbar2:"forecolor,backcolor"}},model:{value:t.block.settings.btnTxt,callback:function(s){t.$set(t.block.settings,"btnTxt",s)},expression:"block.settings.btnTxt"}}),e("span",{directives:[{name:"show",rawName:"v-show",value:t.errors.has("btnTxt"),expression:"errors.has('btnTxt')"}],staticClass:"help-block has-error"},[t._v(t._s(t.errors.first("btnTxt")))])],1),e("div",{staticClass:"sp-form-group"},[e("div",[e("label",[t._v(t._s(t.txt_9))])]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnSubTxt,expression:"block.settings.btnSubTxt"}],staticClass:"sp-form-input",attrs:{type:"text"},domProps:{value:t.block.settings.btnSubTxt},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"btnSubTxt",s.target.value)}}})]),e("div",{staticClass:"sp-form-group",class:{"sp-mb-1":t.show_adv_link}},[e("label",[t._v(t._s(t.txt_10))]),e("span",{staticClass:"sp-flex sp-items-center sp-border sp-border-neutral-20 sp-rounded-md focus-within:sp-border-neutral-80 sp-rounded"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.link,expression:"block.settings.link"}],staticClass:"sp-form-input sp-border-none sp-rounded-tr-none sp-rounded-br-none",attrs:{type:"text"},domProps:{value:t.block.settings.link},on:{input:function(s){s.target.composing||t.$set(t.block.settings,"link",s.target.value)}}}),e("button",{staticClass:"sp-form-input sp-rounded-tl-none sp-rounded-bl-none sp-h-40px sp-text-neutral-40 hover:sp-text-neutral-80 sp-outline-none sp-border-t-0 sp-border-r-0 sp-border-b-0",class:{"sp-text-neutral-80":t.show_adv_link},on:{click:function(s){t.show_adv_link=!t.show_adv_link}}},[e("svg",{staticClass:"sp-fill-current sp-w-5 sp-h-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}})])])])]),t.show_adv_link?e("div",{staticClass:"sp-bg-neutral-10 sp-rounded-6px sp-p-2 sp-mb-4"},[e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.openNewWindow,expression:"block.settings.openNewWindow"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.block.settings.openNewWindow)?t._i(t.block.settings.openNewWindow,null)>-1:t.block.settings.openNewWindow},on:{change:function(s){var e=t.block.settings.openNewWindow,o=s.target,i=!!o.checked;if(Array.isArray(e)){var a=null,n=t._i(e,a);o.checked?n<0&&t.$set(t.block.settings,"openNewWindow",e.concat([a])):n>-1&&t.$set(t.block.settings,"openNewWindow",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(t.block.settings,"openNewWindow",i)}}}),e("span",{staticClass:"sp-ml-2 sp-text-sm"},[t._v(t._s(t.txt_11))])])]),e("div",[e("label",{staticClass:"sp-inline-flex sp-items-center"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.noFollow,expression:"block.settings.noFollow"}],staticClass:"sp-form-checkbox sp-h-4 sp-w-4 sp-text-primary",attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.block.settings.noFollow)?t._i(t.block.settings.noFollow,null)>-1:t.block.settings.noFollow},on:{change:function(s){var e=t.block.settings.noFollow,o=s.target,i=!!o.checked;if(Array.isArray(e)){var a=null,n=t._i(e,a);o.checked?n<0&&t.$set(t.block.settings,"noFollow",e.concat([a])):n>-1&&t.$set(t.block.settings,"noFollow",e.slice(0,n).concat(e.slice(n+1)))}else t.$set(t.block.settings,"noFollow",i)}}}),e("span",{staticClass:"sp-ml-2 sp-text-sm"},[t._v(t._s(t.txt_6))])])])]):t._e(),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),e("AlignControl",{attrs:{justify:!0,icons:"alt"},model:{value:t.block.settings.align,callback:function(s){t.$set(t.block.settings,"align",s)},expression:"block.settings.align"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_15))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnSize,expression:"block.settings.btnSize"}],staticClass:"sp-form-select",on:{change:[function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"btnSize",s.target.multiple?e:e[0])},t.update_btn_size]}},[e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))])])])]):t._e(),e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_2},on:{click:function(s){t.section_2=!t.section_2}}},[t._v("\n "+t._s(t.txt_19)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_2},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_2?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_20))]),e("IconPicker",{model:{value:t.block.settings.beforeIcon,callback:function(s){t.$set(t.block.settings,"beforeIcon",s)},expression:"block.settings.beforeIcon"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_21))]),e("IconPicker",{model:{value:t.block.settings.afterIcon,callback:function(s){t.$set(t.block.settings,"afterIcon",s)},expression:"block.settings.afterIcon"}})],1)]):t._e()]):t._e(),2==t.view?e("div",{staticClass:"sp-flex sp-items-center sp-flex-col sp-pb-4"},[e("div",{staticClass:"sp-uppercase sp-text-12px sp-font-semibold sp-text-neutral-60 sp-mt-2"},[t._v(t._s(t.txt_24))]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(1)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"rgb(30, 136, 229)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"100px"}},[t._v(t._s(t.txt_25))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(2)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"rgb(30, 136, 229)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px"}},[t._v(t._s(t.txt_26))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(3)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(30, 136, 229), rgb(23, 117, 200) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(22, 109, 186)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_27))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(4)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(124, 179, 66), rgb(106, 153, 56) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(98, 142, 52)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_28))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(5)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(67, 160, 71), rgb(56, 135, 60) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(52, 124, 55)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_29))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(6)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(251, 140, 0), rgb(215, 120, 0) 90%)",color:"rgb(255, 255, 255)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(200, 112, 0)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_30))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(7)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(229, 57, 53), rgb(218, 32, 28) 90%)",padding:"8px 12px",color:"rgb(255, 255, 255)","border-radius":"4px",border:"1px solid rgb(205, 30, 26)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_31))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(8)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(253, 216, 53), rgb(253, 209, 18) 90%)",color:"rgb(0, 0, 0)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(252, 206, 3)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_32))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(9)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(255, 255, 255), rgb(237, 237, 237) 90%)",color:"rgb(0, 0, 0)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(230, 230, 230)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_33))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(10)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(158, 158, 158), rgb(140, 140, 140) 90%)",color:"rgb(255,255,255,0.80)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(132, 132, 132)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_34))])]),e("div",{staticClass:"sp-template-preview",on:{click:function(s){return t.apply_template(11)}}},[e("button",{staticStyle:{width:"80%","font-size":"15px",background:"linear-gradient(-180deg, rgb(51, 51, 51), rgb(33, 33, 33) 90%)",color:"rgb(255,255,255, 0.80)",padding:"8px 12px","border-radius":"4px",border:"1px solid rgb(26, 26, 26)","box-shadow":"rgba(255, 255, 255, 0.2) 0px 1px 0px inset"}},[t._v(t._s(t.txt_35))])])]):t._e(),3==t.view?e("div",[e("h3",{staticClass:"sp-sidebar-headers",class:{seedprod_collaspe:!t.section_4},on:{click:function(s){t.section_4=!t.section_4}}},[t._v("\n "+t._s(t.txt_8)+"\n "),e("span",[e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":!t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]),e("svg",{staticClass:"sp-w-5 sp-fill-current",class:{"sp-hidden":t.section_4},attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])])]),t.section_4?e("div",{staticClass:"seedprod-sidebar-action-body"},[e("div",{staticClass:"sp-form-group"},[e("TypographyControl",{attrs:{block:t.block}})],1),e("div",{staticClass:"sp-form-group"},[e("ColorPicker",{attrs:{label:t.txt_43,color:t.block.settings.bgColor},model:{value:t.block.settings.bgColor,callback:function(s){t.$set(t.block.settings,"bgColor",s)},expression:"block.settings.bgColor"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_16))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:t.block.settings.btnPaddingTop,callback:function(s){t.$set(t.block.settings,"btnPaddingTop",s)},expression:"block.settings.btnPaddingTop"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_17))]),e("SliderControl",{attrs:{min:10,max:100,step:1},model:{value:t.block.settings.btnPaddingLeft,callback:function(s){t.$set(t.block.settings,"btnPaddingLeft",s)},expression:"block.settings.btnPaddingLeft"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_18))]),e("SliderControl",{attrs:{min:0,max:100,step:1},model:{value:t.block.settings.borderRadius,callback:function(s){t.$set(t.block.settings,"borderRadius",s)},expression:"block.settings.borderRadius"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_36))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.btnStyle,expression:"block.settings.btnStyle"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"btnStyle",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_37))]),e("option",{attrs:{value:"2d"}},[t._v(t._s(t.txt_38))]),e("option",{attrs:{value:"3d"}},[t._v(t._s(t.txt_39))]),e("option",{attrs:{value:"ghost"}},[t._v(t._s(t.txt_40))]),e("option",{attrs:{value:"link"}},[t._v(t._s(t.txt_107))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_41))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.textShadow,expression:"block.settings.textShadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"textShadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_100))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_101))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))])])]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_42))]),e("select",{directives:[{name:"model",rawName:"v-model",value:t.block.settings.shadow,expression:"block.settings.shadow"}],staticClass:"sp-form-select",on:{change:function(s){var e=Array.prototype.filter.call(s.target.options,function(t){return t.selected}).map(function(t){var s="_value"in t?t._value:t.value;return s});t.$set(t.block.settings,"shadow",s.target.multiple?e:e[0])}}},[e("option",{attrs:{value:""}},[t._v(t._s(t.txt_100))]),e("option",{attrs:{value:"1"}},[t._v(t._s(t.txt_101))]),e("option",{attrs:{value:"2"}},[t._v(t._s(t.txt_102))]),e("option",{attrs:{value:"3"}},[t._v(t._s(t.txt_103))]),e("option",{attrs:{value:"4"}},[t._v(t._s(t.txt_104))]),e("option",{attrs:{value:"5"}},[t._v(t._s(t.txt_105))]),e("option",{attrs:{value:"6"}},[t._v(t._s(t.txt_106))])])])]):t._e(),e("SpacingSectionControl",{attrs:{block:t.block}})],1):t._e()])},U=[],D=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",[e("v-popover",{attrs:{offset:"10"}},[e("div",{ref:"colorpicker",staticClass:"sp-flex sp-items-center sp-justify-between sp-relative sp-cursor-pointer",on:{click:function(s){return t.togglePicker()}}},[e("span",{staticClass:"sp-text-sm"},[t._v(t._s(t.label))]),e("div",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-60 sp-text-neutral-60 hover:sp-text-white sp-flex sp-p-2px sp-rounded-full",class:{"sp-active":t.displayPicker}},[e("span",{staticClass:"color-picker-container sp-bg-white sp-flex sp-items-center sp-border-white sp-border-2 sp-rounded-full"},[e("span",{staticClass:"sp-bg-cv-transparent sp-h-6 sp-w-16"},[e("span",{staticClass:"current-color sp-h-6 sp-w-16 sp-rounded-full sp-cursor-pointer",style:"background-color: "+t.colorValue})])]),e("div",{staticClass:"sp-flex sp-align-center sp-pl-2 sp-pr-2"},[t.displayPicker?t._e():e("span",{staticClass:"sp-flex sp-items-center sp-justify-center sp-cursor-pointer"},[e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}}),e("path",{attrs:{d:"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"}}),e("circle",{attrs:{cx:"6.5",cy:"11.5",r:"1.5"}}),e("circle",{attrs:{cx:"9.5",cy:"7.5",r:"1.5"}}),e("circle",{attrs:{cx:"14.5",cy:"7.5",r:"1.5"}}),e("circle",{attrs:{cx:"17.5",cy:"11.5",r:"1.5"}})])]),t.displayPicker?e("span",{staticClass:"sp-flex sp-items-center sp-justify-center sp-cursor-pointer"},[e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})])]):t._e()])])]),e("template",{slot:"popover"},[e("div",{ref:"cpfloat",staticClass:"color-picker-float-overflow"},[e("div",{staticClass:"sp-flex"},[e("div",{staticClass:"sp-flex-grow sp-flex sp-flex-col"},[e("div",{staticClass:"sp-bg-neutral-5 sp-rounded-6px sp-px-2 sp-py-2 sp-mb-2 sp-mr-2"},[e("div",{staticClass:"sp-uppercase sp-text-10px sp-mb-2"},[t._v(t._s(t.txt_1)+":")]),e("div",{staticClass:"sp-grid sp-grid-cols-5 sp-gap-1"},[e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.headerColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.headerColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.textColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.textColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.buttonColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.buttonColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.linkColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.linkColor)}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:t.shared.settings.document.settings.bgColor},on:{click:function(s){return t.setColor(t.shared.settings.document.settings.bgColor)}}})])]),e("div",{staticClass:"sp-bg-neutral-5 sp-rounded-6px sp-px-2 sp-py-2 sp-mb-2 sp-mr-2"},[e("div",{staticClass:"sp-uppercase sp-text-10px sp-mb-2"},[t._v(t._s(t.txt_2)+":")]),e("div",{staticClass:"sp-grid sp-grid-cols-5 sp-gap-1"},[e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#e53935"},on:{click:function(s){return t.setColor("#e53935")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#fb8c00"},on:{click:function(s){return t.setColor("#fb8c00")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#fdd835"},on:{click:function(s){return t.setColor("#fdd835")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#43a047"},on:{click:function(s){return t.setColor("#43a047")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#7cb342"},on:{click:function(s){return t.setColor("#7cb342")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#1e88e5"},on:{click:function(s){return t.setColor("#1e88e5")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#ffffff"},on:{click:function(s){return t.setColor("#ffffff")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#cccccc"},on:{click:function(s){return t.setColor("#cccccc")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#9e9e9e"},on:{click:function(s){return t.setColor("#9e9e9e")}}}),e("button",{staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-border sp-border-white",style:{background:"#000000"},on:{click:function(s){return t.setColor("#000000")}}})])]),e("div",{staticClass:"sp-bg-neutral-5 sp-rounded-6px sp-px-2 sp-py-2 sp-mr-2 sp-flex-grow"},[e("div",{staticClass:"sp-uppercase sp-text-10px sp-mb-2"},[t._v(t._s(t.txt_3)+":")]),e("div",{staticClass:"sp-grid sp-grid-cols-5 sp-gap-1"},t._l(t.shared.recent_colors,function(s,o){return e("button",{key:o,staticClass:"sp-rounded-full sp-w-6 sp-h-6 sp-bg-secondary sp-inline-block sp-border sp-border-white",style:{background:s},on:{click:function(e){return t.setColor(s)}}})}),0)])]),e("div",{},[e("chrome-picker",{attrs:{value:t.colors},on:{input:t.updateFromPicker}}),e("div",{staticClass:"sp-flex sp-justify-end"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-6 sp-text-xs sp-font-semibold sp-leading-none sp-mr-2",on:{click:t.clear_color}},[t._v(t._s(t.txt_4))]),e("button",{directives:[{name:"close-popover",rawName:"v-close-popover",value:!0,expression:"true"}],staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-6 sp-text-xs sp-font-semibold sp-leading-none",on:{click:t.close}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_5)+"\n ")])])],1)])])])],2)],1)},W=[],G=e("e814"),Z=e.n(G),J=(e("28a5"),e("c345")),q={name:"ColorPicker",data:function(){return{txt_1:Object(b["a"])("Global Colors","coming-soon"),txt_2:Object(b["a"])("Common Colors","coming-soon"),txt_3:Object(b["a"])("Recently Used","coming-soon"),txt_4:Object(b["a"])("Clear","coming-soon"),txt_5:Object(b["a"])("Close","coming-soon"),colors:{hex:"#000000"},colorValue:"",displayPicker:!1,shared:seedprod_store}},mounted:function(){this.setColor(this.color||"")},beforeDestroy:function(){this.update_recent_color()},methods:{clear_color:function(){this.colorValue="",this.$emit("input","")},update_recent_color:function(){0==this.shared.recent_colors.includes(this.colorValue)&&(this.shared.recent_colors.length>10&&this.shared.recent_colors.pop(),this.shared.recent_colors.unshift(this.colorValue))},setColor:function(t){this.updateColors(t),this.colorValue=t,this.$emit("input",t)},updateColors:function(t){if("#"==t.slice(0,1))this.colors={hex:t};else if("rgba"==t.slice(0,4)){var s=t.replace(/^rgba?\(|\s+|\)$/g,"").split(","),e="#"+((1<<24)+(Z()(s[0])<<16)+(Z()(s[1])<<8)+Z()(s[2])).toString(16).slice(1);this.colors={hex:e,a:s[3]}}},showPicker:function(){this.displayPicker=!0},close:function(){document.removeEventListener("click",this.documentClick),this.displayPicker=!1},hidePicker:function(){this.displayPicker=!1},togglePicker:function(){this.displayPicker?this.hidePicker():this.showPicker()},updateFromInput:function(){this.updateColors(this.colorValue),this.$emit("input",this.colorValue)},updateFromPicker:function(t){this.colors=t,1==t.rgba.a?this.colorValue=t.hex:this.colorValue="rgba("+t.rgba.r+", "+t.rgba.g+", "+t.rgba.b+", "+t.rgba.a+")",this.$emit("input",this.colorValue)},documentClick:function(t){var s=this.$refs.colorpicker,e="";lodash.isEmpty(t.target)||(e=t.target),s===e||s.contains(e)||!1!==e.classList.toString().includes("vc-")||"vc-chrome-toggle-icon"===e.parentElement.classList.toString()||this.hidePicker()}},watch:{displayPicker:function(t,s){0==t&&1==s&&this.update_recent_color()},colorValue:function(t){this.updateColors(t)},color:function(t,s){this.setColor(t)}},props:["color","label"],components:{"chrome-picker":J["Chrome"]}},Y=q,X=Object(w["a"])(Y,D,W,!1,null,null,null),K=X.exports,Q=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"sp-typography-control"},[e("div",{staticClass:"sp-flex sp-items-center sp-justify-between sp-relative sp-cursor-pointer sp-relative"},[e("label",[t._v(t._s(t.label_prefix)+" "+t._s(t.txt_1))]),e("div",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-60 hover:sp-text-white sp-flex sp-p-2px sp-rounded-full sp-text-14px sp-font-semibold sp-pl-2 sp-pr-4 sp-py-1",class:{"sp-active":t.display_typography},on:{click:function(s){return t.toggle_typography()}}},[e("span",{staticClass:"sp-flex sp-items-center sp-justify-center sp-items-center sp-w-5"},[t.display_typography?e("svg",{staticClass:"sp-fill-current sp-w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}}),e("path",{attrs:{d:"M0 0h24v24H0V0z",fill:"none"}})]):t._e(),t.display_typography?t._e():e("svg",{staticClass:"sp-fill-current sp-w-3",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),t._v(" "+t._s(t.txt_2)+"\n ")]),t.display_typography?e("div",{staticClass:"sp-absolute sp-bg-white sp-top-0 sp-right-0 sp-p-4 sp-z-10 sp-rounded-md sp-shadow-xl sp-mt-8 sp-mb-8"},[e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_4))]),e("FontControl",{on:{change:function(s){return t.load_font(t.block.settings[t.pre+"font"],t.block.settings[t.pre+"fontVariant"])}},model:{value:t.block.settings[t.pre+"font"],callback:function(s){t.$set(t.block.settings,t.pre+"font",s)},expression:"block.settings[pre+'font']"}}),e("FontVariantControl",{attrs:{myfont:t.block.settings[t.pre+"font"]},on:{change:function(s){return t.load_font(t.block.settings[t.pre+"font"],t.block.settings[t.pre+"fontVarient"])}},model:{value:t.block.settings[t.pre+"fontVariant"],callback:function(s){t.$set(t.block.settings,t.pre+"fontVariant",s)},expression:"block.settings[pre+'fontVariant']"}})],1),e("div",{staticClass:"sp-flex sp-justify-between sp-items-center sp-my-2 sp-mt-4"},[e("div",{staticClass:"sp-flex"},[e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"desktop"==t.currently_editing_device},on:{click:function(s){return t.set_device("desktop")}}},[e("svg",{staticClass:"sp-w-4 sp-h-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":"mobile"==t.currently_editing_device},on:{click:function(s){return t.set_device("mobile")}}},[e("svg",{staticClass:"sp-w-4 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])])]),e("div")]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_5))]),"desktop"==t.currently_editing_device?e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings[t.pre+"fontSize"],callback:function(s){t.$set(t.block.settings,t.pre+"fontSize",s)},expression:"block.settings[pre+'fontSize']"}}):e("SliderControl",{attrs:{min:10,max:72,step:1},model:{value:t.block.settings[t.pre+"fontSize_mobile"],callback:function(s){t.$set(t.block.settings,t.pre+"fontSize_mobile",s)},expression:"block.settings[pre+'fontSize_mobile']"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_6))]),"desktop"==t.currently_editing_device?e("SliderControl",{attrs:{min:.5,max:10,step:.1},model:{value:t.block.settings[t.pre+"lineHeight"],callback:function(s){t.$set(t.block.settings,t.pre+"lineHeight",s)},expression:"block.settings[pre+'lineHeight']"}}):e("SliderControl",{attrs:{min:.5,max:10,step:.1},model:{value:t.block.settings[t.pre+"lineHeight_mobile"],callback:function(s){t.$set(t.block.settings,t.pre+"lineHeight_mobile",s)},expression:"block.settings[pre+'lineHeight_mobile']"}})],1),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_7))]),"desktop"==t.currently_editing_device?e("SliderControl",{attrs:{min:0,max:50,step:1},model:{value:t.block.settings[t.pre+"letterSpacing"],callback:function(s){t.$set(t.block.settings,t.pre+"letterSpacing",s)},expression:"block.settings[pre+'letterSpacing']"}}):e("SliderControl",{attrs:{min:0,max:50,step:1},model:{value:t.block.settings[t.pre+"letterSpacing_mobile"],callback:function(s){t.$set(t.block.settings,t.pre+"letterSpacing_mobile",s)},expression:"block.settings[pre+'letterSpacing_mobile']"}})],1),e("div",{staticClass:"sp-flex"},[e("div",{staticClass:"sp-form-group sp-w-full"},[e("label",[t._v(t._s(t.txt_8))]),e("div",{staticClass:"sp-flex "},[e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":1==t.block.settings[t.pre+"typographyBold"]},on:{click:function(s){return t.update_style("bold")}}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":1==t.block.settings[t.pre+"typographyItalic"]},on:{click:function(s){return t.update_style("italic")}}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z"}})])]),e("button",{staticClass:"sp-w-32px sp-h-32px sp-bg-neutral-10 sp-rounded-full sp-flex sp-justify-center sp-items-center sp-mr-1 hover:sp-bg-neutral-15",class:{"sp-active":1==t.block.settings[t.pre+"typographyUnderline"]},on:{click:function(s){return t.update_style("underline")}}},[e("svg",{staticClass:"sp-w-5 sp-fill-current",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z"}})])])])]),e("div",{staticClass:"sp-form-group sp-w-full"},[e("label",[t._v(t._s(t.txt_9))]),e("AlignControl",{model:{value:t.block.settings[t.pre+"align"],callback:function(s){t.$set(t.block.settings,t.pre+"align",s)},expression:"block.settings[pre+'align']"}})],1)]),e("div",{staticClass:"sp-form-group"},[e("label",[t._v(t._s(t.txt_10))]),e("div",{staticClass:"sp-flex ",attrs:{id:"sp-letter-case-control"}},[e("button",{staticClass:"sp-w-20",class:{"sp-active":""==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]=""}}},[t._v(t._s(t.txt_11))]),e("button",{class:{"sp-active":"uppercase"==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]="uppercase"}}},[t._v("AG")]),e("button",{class:{"sp-active":"capitalize"==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]="capitalize"}}},[t._v("Ag")]),e("button",{class:{"sp-active":"lowercase"==t.block.settings[t.pre+"typographyLetterCase"]},on:{click:function(s){t.block.settings[t.pre+"typographyLetterCase"]="lowercase"}}},[t._v("ag")])])]),e("div",{staticClass:"sp-flex sp-justify-end sp-border-t sp-border-neutral-20 sp-mt-6"},[e("button",{staticClass:"sp-bg-neutral-10 hover:sp-bg-neutral-15 sp-text-neutral-80 sp-py-2 sp-px-3 sp-rounded sp-flex sp-items-center sp-mt-4 sp-text-xs sp-font-semibold sp-leading-none",on:{click:function(s){t.display_typography=!1}}},[e("svg",{staticClass:"sp-fill-current sp-w-4 sp-mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}}),e("path",{attrs:{d:"M0 0h24v24H0z",fill:"none"}})]),t._v(t._s(t.txt_3)+"\n ")])])]):t._e()])])},tt=[],st=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{ref:"font",staticClass:"sp-mb-1"},[e("select