Coming Soon Page & Maintenance Mode by SeedProd - Version 6.0.8.5

Version Description

  • Added - debug tools
  • Tweak - make sure wp-mediaelement gets loaded in the builder
  • Tweak - feedback request
Download this release

Release Info

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

Code changes from version 6.0.8.4 to 6.0.8.5

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.4
9
  Text Domain: coming-soon
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -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.4 =
146
  * Fixed - Landing page preview link
147
  * Fixed - Duplicate Page
@@ -302,6 +307,11 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
302
  * Initial Commit
303
 
304
  == Upgrade Notice ==
 
 
 
 
 
305
  = 6.0.8.3 =
306
  * Tweak - menus require manage_options capability
307
 
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 6.0.8.5
9
  Text Domain: coming-soon
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
142
 
143
 
144
  == Changelog ==
145
+ = 6.0.8.5 =
146
+ * Added - debug tools
147
+ * Tweak - make sure wp-mediaelement gets loaded in the builder
148
+ * Tweak - feedback request
149
+
150
  = 6.0.8.4 =
151
  * Fixed - Landing page preview link
152
  * Fixed - Duplicate Page
307
  * Initial Commit
308
 
309
  == Upgrade Notice ==
310
+ = 6.0.8.5 =
311
+ * Added - Debug tools
312
+ * Tweak - make sure wp-mediaelement gets loaded in the builder
313
+ * Tweak - feedback request
314
+
315
  = 6.0.8.3 =
316
  * Tweak - menus require manage_options capability
317
 
app/bootstrap.php CHANGED
@@ -225,11 +225,11 @@ function seedprod_lite_deregister_backend_styles()
225
  // remove scripts registered by the theme so they don't screw up our page's style
226
  if (isset($_GET['page']) && strpos($_GET['page'], 'seedprod_lite_builder') !== false) {
227
  wp_dequeue_style( 'dashicons',9999 );
228
-
229
- if (empty($_GET['sp-debug'])) {
230
  global $wp_styles;
231
  // list of styles to keep else remove
232
- $keep_styles = "media-views|editor-buttons|imgareaselect|buttons|wp-auth-check|wpforms-full";
233
  $s = explode("|", $keep_styles);
234
 
235
  $wpforms_url = plugins_url('wpforms');
@@ -262,7 +262,7 @@ function seedprod_lite_deregister_backend_styles()
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;
225
  // remove scripts registered by the theme so they don't screw up our page's style
226
  if (isset($_GET['page']) && strpos($_GET['page'], 'seedprod_lite_builder') !== false) {
227
  wp_dequeue_style( 'dashicons',9999 );
228
+ $seedprod_builder_debug = get_option('seedprod_builder_debug');
229
+ if (empty($seedprod_builder_debug)) {
230
  global $wp_styles;
231
  // list of styles to keep else remove
232
+ $keep_styles = "media-views|editor-buttons|imgareaselect|buttons|wp-auth-check|wpforms-full|thickbox|wp-mediaelement";
233
  $s = explode("|", $keep_styles);
234
 
235
  $wpforms_url = plugins_url('wpforms');
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|wp-mediaelement';
266
  $d = explode("|", urldecode($s));
267
 
268
  global $wp_scripts;
app/functions-utils.php CHANGED
@@ -743,7 +743,6 @@ function seedprod_lite_get_expire_times(){
743
  $return .= 'ABSPATH: ' . ABSPATH . "\n";
744
  $return .= 'Table Prefix: ' . 'Length: ' . strlen( $wpdb->prefix ) . ' Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n";
745
  $return .= 'WP_DEBUG: ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n";
746
- $return .= 'WPFORMS_DEBUG: ' . ( defined( 'WPFORMS_DEBUG' ) ? WPFORMS_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n";
747
  $return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n";
748
  $return .= 'Registered Post Stati: ' . implode( ', ', get_post_stati() ) . "\n";
749
 
743
  $return .= 'ABSPATH: ' . ABSPATH . "\n";
744
  $return .= 'Table Prefix: ' . 'Length: ' . strlen( $wpdb->prefix ) . ' Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n";
745
  $return .= 'WP_DEBUG: ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n";
 
746
  $return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n";
747
  $return .= 'Registered Post Stati: ' . implode( ', ', get_post_stati() ) . "\n";
748
 
app/load_controller.php CHANGED
@@ -19,7 +19,7 @@ if (is_admin()) {
19
  //require_once(SEEDPROD_PLUGIN_PATH.'app/subscriber.php');
20
  require_once(SEEDPROD_PLUGIN_PATH.'app/functions-addons.php');
21
  if(SEEDPROD_BUILD == 'lite'){
22
- //require_once(SEEDPROD_PLUGIN_PATH.'app/review.php');
23
  }
24
  } else {
25
  // Public only
19
  //require_once(SEEDPROD_PLUGIN_PATH.'app/subscriber.php');
20
  require_once(SEEDPROD_PLUGIN_PATH.'app/functions-addons.php');
21
  if(SEEDPROD_BUILD == 'lite'){
22
+ require_once(SEEDPROD_PLUGIN_PATH.'app/review.php');
23
  }
24
  } else {
25
  // Public only
app/render-csp-mm.php CHANGED
@@ -207,300 +207,6 @@ class seedprod_lite_Render
207
  $enable_redirect_mode = false;
208
  }
209
 
210
- // Countdown Launch
211
- // if(!empty($settings['countdown_date']) && !empty($settings['enable_countdown']) && !empty($settings['countdown_launch'])){
212
-
213
- // $date = new DateTime($settings['countdown_date'], new DateTimeZone($settings['countdown_timezone']));
214
- // $timestamp = $date->format('U');
215
- // // var_dump($timestamp);
216
- // // var_dump(time());
217
-
218
- // // Launch this biatch
219
- // if($timestamp <= time()){
220
- // // Email the admin the site has been launched
221
- // $message = __(sprintf('%s has been launched.',home_url()), 'seedprod');
222
- // $result = wp_mail( get_option('admin_email'), __(sprintf('%s has been launched.',home_url()), 'seedprod'), $message);
223
-
224
- // $o = get_option('seed_cspv5_settings_content');
225
- // //var_dump($o);
226
- // $o['status'] = 0;
227
- // update_option('seed_cspv5_settings_content', $o);
228
- // return false;
229
-
230
- // }
231
- // }
232
-
233
-
234
- // Check for Bypass Code
235
- $bypass_param = false;
236
- if (!empty($_GET['bypass'])) {
237
- $bypass_param = $_GET['bypass'];
238
- }
239
- if (is_multisite() || $settings->bypass_cookie) {
240
-
241
- //Check for Client View
242
- if (isset($_COOKIE['wp-seedprod-bypass']) && ((strtolower(basename($_SERVER['REQUEST_URI'])) == trim(strtolower($settings->bypass_phrase))) || (strtolower($bypass_param) == trim(strtolower($settings->bypass_phrase)))) && !empty($settings->bypass_phrase)) {
243
- if (!empty($_REQUEST['return'])) {
244
- nocache_headers();
245
- header('Cache-Control: max-age=0, private');
246
- header('Location: '.urldecode($_REQUEST['return'])) ;
247
- exit;
248
- } else {
249
- nocache_headers();
250
- header('Cache-Control: max-age=0, private');
251
- header('Location: '.home_url().'?'.rand()) ;
252
- exit;
253
- }
254
- }
255
-
256
- // Don't show Coming Soon Page if client View is active
257
- $bypass_hash = md5($settings->bypass_phrase . get_current_blog_id());
258
- if (isset($_COOKIE['wp-seedprod-bypass']) && $_COOKIE['wp-seedprod-bypass'] == $bypass_hash && !empty($settings->bypass_phrase)) {
259
- nocache_headers();
260
- header('Cache-Control: max-age=0, private');
261
- return false;
262
- } else {
263
- nocache_headers();
264
- header('Cache-Control: max-age=0, private');
265
- setcookie("wp-seedprod-bypass", "", time()-3600);
266
- }
267
-
268
-
269
-
270
- // If Client view is not empty and we are on the client view url set cookie.
271
- if (!empty($settings->bypass_phrase)) {
272
- if ((strtolower(basename($_SERVER['REQUEST_URI'])) == trim(strtolower($settings->bypass_phrase))) || (strtolower($bypass_param) == trim(strtolower($settings->bypass_phrase)))) {
273
- if (!empty($settings->bypass_expires)) {
274
- $exipres_in = time()+ (3600 * $settings->bypass_expires);
275
- } else {
276
- $exipres_in = time()+172800;
277
- }
278
-
279
-
280
- setcookie("wp-seedprod-bypass", $bypass_hash, $exipres_in, COOKIEPATH, COOKIE_DOMAIN, false);
281
-
282
-
283
- if (!empty($_REQUEST['return'])) {
284
- nocache_headers();
285
- header('Cache-Control: max-age=0, private');
286
- header('Location: '.urldecode($_REQUEST['return'])) ;
287
- exit;
288
- } else {
289
- nocache_headers();
290
- header('Cache-Control: max-age=0, private');
291
- header('Location: '.home_url().'?'.rand()) ;
292
- exit;
293
- }
294
- }
295
- }
296
- } else {
297
-
298
-
299
- // ClientView
300
- if (!empty($settings->bypass_phrase)) {
301
-
302
-
303
- // If client view url is passed in log user in
304
- if ((strtolower(basename($_SERVER['REQUEST_URI'])) == trim(strtolower($settings->bypass_phrase))) || (strtolower($bypass_param) == trim(strtolower($settings->bypass_phrase)))) {
305
- if (!username_exists('seedprod_bypass_user_'.$settings->bypass_phrase)) {
306
- $user_id = wp_create_user('seedprod_bypass_user_'.$settings->bypass_phrase, wp_generate_password());
307
- $user = new WP_User($user_id);
308
- $user->set_role('none');
309
- }
310
-
311
-
312
- if (!empty($settings->bypass_expires)) {
313
- global $seedprod_bypass_expires;
314
- $seedprod_bypass_expires = (3600 * $settings->bypass_expires);
315
- }
316
-
317
- $bypass_hash = md5($settings->bypass_phrase . get_current_blog_id());
318
- setcookie("wp-seedprod-bypass", $bypass_hash, 0, COOKIEPATH, COOKIE_DOMAIN, false);
319
-
320
-
321
- add_filter('auth_cookie_expiration', 'seedprod_lite_change_wp_cookie_logout');
322
-
323
- // Log user in auto
324
- $username = 'seedprod_bypass_user_'.$settings->bypass_phrase;
325
- if (!is_user_logged_in()) {
326
- $user = get_user_by('login', $username);
327
- $user_id = $user->ID;
328
- wp_set_current_user($user_id, $username);
329
- wp_set_auth_cookie($user_id);
330
- do_action('wp_login', $username, $user);
331
- update_user_meta($user_id, 'show_admin_bar_front', false);
332
- }
333
-
334
- if (!empty($_REQUEST['return'])) {
335
- nocache_headers();
336
- header('Cache-Control: max-age=0, private');
337
- header('Location: '.urldecode($_REQUEST['return'])) ;
338
- exit;
339
- } else {
340
- nocache_headers();
341
- header('Cache-Control: max-age=0, private');
342
- header('Location: '.home_url().'?'.rand()) ;
343
- exit;
344
- }
345
- }
346
- }
347
- }
348
-
349
- // Check for excluded IP's
350
- if (!empty($settings->access_by_ip)) {
351
- $ip = seedprod_lite_get_ip();
352
- $exclude_ips = explode("\n", $settings->access_by_ip);
353
- if (is_array($exclude_ips) && in_array($ip, $exclude_ips)) {
354
- return false;
355
- }
356
- }
357
-
358
-
359
-
360
- if (!empty($settings->include_exclude_type) && $settings->include_exclude_type == '2') {
361
- if (substr($settings->include_list, 0, 3) != '>>>') {
362
-
363
- // Check for included pages
364
- if (!empty($settings->include_list)) {
365
- //$url = preg_replace('/\?ref=\d*/','',$_SERVER['REQUEST_URI']);
366
- // TODO lok for when wordpress is in sub folder
367
- $request_uri = explode('?', $_SERVER['REQUEST_URI']);
368
- $url = rtrim(ltrim($request_uri[0], '/'), '/');
369
-
370
- $r = array_intersect(explode('/', $url), explode('/', home_url()));
371
-
372
- $url = str_replace($r, '', $url);
373
-
374
- $url = str_replace('/', '', $url);
375
- //var_dump($url);
376
-
377
- $include_urls = explode("\n", $settings->include_list);
378
- $include_urls = array_filter($include_urls);
379
- $include_urls = str_replace(home_url(), "", $include_urls);
380
- $include_urls = str_replace('/', '', $include_urls);
381
- //$include_urls = array_filter($include_urls);
382
- //var_dump($include_urls);
383
- //var_dump($url);
384
- $post_id = '';
385
- global $post;
386
- //var_dump($post->ID);
387
- if (!empty($post->ID)) {
388
- $post_id = $post->ID;
389
- }
390
-
391
- $show_coming_soon_page = false;
392
-
393
- if (is_array($include_urls) && (in_array($url, $include_urls) || in_array($post_id, $include_urls))) {
394
- $show_coming_soon_page = true;
395
- }
396
-
397
- // check wildcard urls
398
- $urls_to_test = $include_urls;
399
- $urls_to_test = str_replace(home_url(), "", $urls_to_test);
400
- $url_uri = $_SERVER['REQUEST_URI'];
401
- foreach ($urls_to_test as $url_to_test) {
402
- if (strpos($url_to_test, '*') !== false) {
403
- // Wildcard url
404
- $url_to_test = str_replace("*", "", $url_to_test);
405
- if (strpos($url_uri, untrailingslashit($url_to_test)) !== false) {
406
- $show_coming_soon_page = true;
407
- }
408
- }
409
- }
410
-
411
- if ($show_coming_soon_page === false) {
412
- return false;
413
- }
414
- }
415
- } else {
416
- // Check for included pages regex
417
- $settings->include_list = substr($settings->include_list, 3);
418
- if (!empty($settings->include_list) && @preg_match("/{$settings->include_list}/", $_SERVER['REQUEST_URI']) == 0) {
419
- return false;
420
- }
421
- }
422
- }
423
-
424
- // Check for excludes pages
425
- if (!empty($settings->include_exclude_type) && $settings->include_exclude_type == '3') {
426
- if (substr($settings->exclude_list, 0, 3) != '>>>') {
427
- if (!empty($settings->exclude_list)) {
428
- //$url = preg_replace('/\?ref=\d*/','',$_SERVER['REQUEST_URI']);
429
- $request_uri = explode('?', $_SERVER['REQUEST_URI']);
430
- $url = rtrim(ltrim($request_uri[0], '/'), '/');
431
-
432
- $r = array_intersect(explode('/', $url), explode('/', home_url()));
433
-
434
- $url = str_replace($r, '', $url);
435
-
436
- $url = str_replace('/', '', $url);
437
- //var_dump($url);
438
-
439
- $exclude_urls = explode("\n", $settings->exclude_list);
440
- $exclude_urls = array_filter($exclude_urls);
441
- $exclude_urls = str_replace(home_url(), "", $exclude_urls);
442
- $exclude_urls = str_replace('/', '', $exclude_urls);
443
- //$exclude_urls = array_filter($exclude_urls);
444
- $post_id = '';
445
- global $post;
446
- //var_dump($post->ID);
447
- if (!empty($post->ID)) {
448
- $post_id = $post->ID;
449
- }
450
-
451
- // check exact urls
452
- if (is_array($exclude_urls) && (in_array($url, $exclude_urls) || in_array($post_id, $exclude_urls))) {
453
- return false;
454
- }
455
-
456
- // check wildcard urls
457
- $urls_to_test = $exclude_urls;
458
- $urls_to_test = str_replace(home_url(), "", $urls_to_test);
459
- $url_uri = $_SERVER['REQUEST_URI'];
460
- foreach ($urls_to_test as $url_to_test) {
461
- if (strpos($url_to_test, '*') !== false) {
462
- // Wildcard url
463
- $url_to_test = str_replace("*", "", $url_to_test);
464
- if (strpos($url_uri, untrailingslashit($url_to_test)) !== false) {
465
- return false;
466
- }
467
- }
468
- }
469
-
470
- // Check for affiliateWP
471
- if (class_exists('Affiliate_WP') && (strpos($url, 'ref') !== false)) {
472
- return false;
473
- }
474
- }
475
- } else {
476
-
477
- // Check for excluded pages
478
- $settings->exclude_list = substr($settings->exclude_list, 3);
479
- if (!empty($settings->exclude_list) && @preg_match("/{$settings->exclude_list}/", $_SERVER['REQUEST_URI']) > 0) {
480
- return false;
481
- }
482
- }
483
- }
484
-
485
-
486
-
487
- // Only show the Coming Soon Page on the home page
488
- if (!empty($settings->include_exclude_type) && $settings->include_exclude_type == '1') {
489
- if ($_SERVER['REQUEST_URI'] == "/" || substr($_SERVER['REQUEST_URI'], 0, 2) == '/?') {
490
- } else {
491
- return false;
492
- }
493
- }
494
-
495
-
496
-
497
- // Check if redirect url and exclude
498
- if (!empty($enable_redirect_mode) && !empty($redirect_url)) {
499
- $r_url = parse_url($redirect_url);
500
- if ($r_url['host'] == $_SERVER['HTTP_HOST'] && $r_url['path'] == $_SERVER['REQUEST_URI']) {
501
- return false;
502
- }
503
- }
504
 
505
  // Exit if a custom login page
506
  if (!empty($settings->disable_default_excluded_urls)) {
207
  $enable_redirect_mode = false;
208
  }
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
 
211
  // Exit if a custom login page
212
  if (!empty($settings->disable_default_excluded_urls)) {
app/review.php CHANGED
@@ -67,14 +67,17 @@ class seedprod_lite_Review {
67
  * @since 7.0.7
68
  */
69
  public function review() {
70
- return;
71
  // Fetch when plugin was initially installed.
72
  $activated = get_option( 'seedprod_over_time', array() );
73
- if ( ! empty( $activated['installed_date'] ) ) {
74
- // Only continue if plugin has been installed for at least 7 days.
75
- // if ( ( $activated['installed_date'] + ( DAY_IN_SECONDS * 7 ) ) > time() ) {
76
- // return;
77
- // }
 
 
 
 
78
  } else {
79
  $data = array(
80
  'installed_version' => SEEDPROD_VERSION,
@@ -85,15 +88,6 @@ class seedprod_lite_Review {
85
  return;
86
  }
87
 
88
- // Only proceed if they have created at least 1 lpage that is atleast 7 days old
89
- global $wpdb;
90
- $tablename = $wpdb->prefix . 'seedprod_pages';
91
- $sql = "SELECT id FROM $tablename WHERE deleted_at IS NULL and created_at <= (DATE(NOW()) - INTERVAL 7 DAY) ORDER BY created_at LIMIT 1";
92
- $number_of_lpages = $wpdb->get_var($sql);
93
- if ( empty( $number_of_lpages ) ) {
94
- return;
95
- }
96
-
97
 
98
  $feedback_url = 'https://www.seedprod.com/plugin-feedback/?utm_source=liteplugin&utm_medium=review-notice&utm_campaign=feedback&utm_content='.SEEDPROD_VERSION;
99
  // We have a candidate! Output a review message.
@@ -117,7 +111,7 @@ class seedprod_lite_Review {
117
  <p><?php esc_html_e( 'That’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'coming-soon' ); ?></p>
118
  <p><strong><?php echo wp_kses( __( '~ John Turner<br>Co-Founder of SeedProd', 'coming-soon' ), array( 'br' => array() ) ); ?></strong></p>
119
  <p>
120
- <a href="https://wordpress.org/support/plugin/seedprod/reviews/?filter=5#new-post" class="seedprod-dismiss-review-notice seedprod-review-out" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Ok, you deserve it', 'coming-soon' ); ?></a><br>
121
  <a href="#" class="seedprod-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Nope, maybe later', 'coming-soon' ); ?></a><br>
122
  <a href="#" class="seedprod-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'I already did', 'coming-soon' ); ?></a>
123
  </p>
67
  * @since 7.0.7
68
  */
69
  public function review() {
 
70
  // Fetch when plugin was initially installed.
71
  $activated = get_option( 'seedprod_over_time', array() );
72
+ if ( ! empty( $activated['installed_date'] )) {
73
+ //Only continue if plugin has been installed for at least 7 days.
74
+ if ( ( $activated['installed_date'] + ( DAY_IN_SECONDS * 7 ) ) > time() ) {
75
+ return;
76
+ }
77
+ // only if version great than or = to 6.0.8.5
78
+ if(!empty($activated['installed_version']) && version_compare ( $activated['installed_version'],'6.0.8.5' ) < 0 ){
79
+ return;
80
+ }
81
  } else {
82
  $data = array(
83
  'installed_version' => SEEDPROD_VERSION,
88
  return;
89
  }
90
 
 
 
 
 
 
 
 
 
 
91
 
92
  $feedback_url = 'https://www.seedprod.com/plugin-feedback/?utm_source=liteplugin&utm_medium=review-notice&utm_campaign=feedback&utm_content='.SEEDPROD_VERSION;
93
  // We have a candidate! Output a review message.
111
  <p><?php esc_html_e( 'That’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'coming-soon' ); ?></p>
112
  <p><strong><?php echo wp_kses( __( '~ John Turner<br>Co-Founder of SeedProd', 'coming-soon' ), array( 'br' => array() ) ); ?></strong></p>
113
  <p>
114
+ <a href="https://wordpress.org/support/plugin/coming-soon/reviews/?filter=5#new-post" class="seedprod-dismiss-review-notice seedprod-review-out" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Ok, you deserve it', 'coming-soon' ); ?></a><br>
115
  <a href="#" class="seedprod-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Nope, maybe later', 'coming-soon' ); ?></a><br>
116
  <a href="#" class="seedprod-dismiss-review-notice" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'I already did', 'coming-soon' ); ?></a>
117
  </p>
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.4
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.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__));
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.5
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.5');
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/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"),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",{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=[],mt={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"]},vt=mt,_t=Object(w["a"])(vt,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:[v["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:[v["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:[v["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:[v["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:[v["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,ms=Object(w["a"])(hs,as,ns,!1,null,null,null),vs=ms.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:[v["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:[v["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:[v["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:[v["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:[v["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=m()(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:[v["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:[v["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()])},me=[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"})])}],ve={name:"SocialProfilesOptions",mixins:[v["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=ve,be=Object(w["a"])(_e,he,me,!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:[v["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:[v["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:[v["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=m()(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:[v["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:[v["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:[v["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:[v["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:[v["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),mo=ho.exports,vo=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:[v["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,vo,_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:[v["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:[v["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:[v["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:[v["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:[v["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:[v["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:[v["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:[v["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),mi=hi.exports,vi=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:[v["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,vi,_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:[v["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:[v["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:[v["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:[v["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:vs,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:mo,GiveawayOptions:wo,IconOptions:jo,FeatureOptions:Lo,IconFeatureOptions:Fo,ProgressBarOptions:Ne,SectionOptions:oi,ColOptions:mi,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:[v["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()]),"lp"==t.shared.page_type&&t.shared.per.includes("dm")&&"seedprod_pro"==t.shared.page_path?e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_domain",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 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"}})]),t._v("\n "+t._s(t.txt_5)+"\n ")]),"setup_settings_domain"===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(),(t.shared.page_type,t._e())],1)])},oa=[],ia={name:"setupsettings",mixins:[v["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:[v["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()])])])])},ma=[],va={name:"settingsanalytics",mixins:[v["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=va,ba=Object(w["a"])(_a,ha,ma,!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:[v["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("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.scheme))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.domain_mapping,expression:"shared.settings.domain_mapping"},{name:"validate",rawName:"v-validate",value:"url",expression:"'url'"}],staticClass:"sp-form-input sp-border-l-0 sp-rounded-none focus:sp-border-neutral-20",staticStyle:{display:"inline-block",width:"300px"},attrs:{type:"text",id:"domain-mapping-url",name:"domain_mapping_url_input","data-vv-as":"Domain Name"},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("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.open_mapped_url}},[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",{staticClass:"sp-text-red"},[t._v(t._s(t.errors.first("domain_mapping_url_input")))])]),e("div",[t._v("\n "+t._s(t.txt_6)+"\n "),e("br"),t._v("\n "+t._s(t.txt_12)+"\n "),e("br"),t._v("\n "+t._s(t.txt_13)+"\n "),e("br"),e("a",{staticClass:"sp-text-primary hover:sp-text-primary-lighter sp-underline",attrs:{href:"https://www.seedprod.com/docs/domain-mapping-setup/",target:"_target"}},[t._v(t._s(t.txt_7))]),t._v(" "+t._s(t.txt_8)+"\n ")])])]),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_9))]),e("div",{staticClass:"sp-mt-2"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36},model:{value:t.shared.settings.domain_mapping_force_https,callback:function(s){t.$set(t.shared.settings,"domain_mapping_force_https",s)},expression:"shared.settings.domain_mapping_force_https"}}),t._v(t._s(t.txt_10)+"\n ")],1)])])])},ja=[],Ma={name:"settingsdomain",mixins:[v["a"]],inject:{$validator:"$validator"},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"])("Please 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"),txt_9:Object(b["a"])("Force HTTPS","coming-soon"),txt_10:Object(b["a"])("Only enable this if you have an SSL certificate installed and you wish to redirect users to https://","coming-soon"),txt_11:Object(b["a"])("Please enter a valid URL that will be pointed to this landing page, such as","coming-soon"),txt_12:Object(b["a"])("It should look something like, 'mynewdomain.com' or 'mynewdomain.com/coming-soon'","coming-soon"),txt_13:Object(b["a"])("You can leave out the 'http://'. If you are using 'https://', turn on Force HTTPS below.","coming-soon"),shared:seedprod_store}},created:function(){var t=this,s=d.a.stringify({lpage_id:this.shared.lpage.id});this.axios.post("admin-ajax.php?action=seedprod_pro_get_domain_mapping_domain&_wpnonce="+seedprod_nonce,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(s&&null!==s.data){var e=s.data.domain+"/"+s.data.path;t.shared.settings.domain_mapping=e}})},methods:{open_mapped_url:function(){window.open(this.scheme+this.shared.settings.domain_mapping,"open_mapped_url")}},computed:{scheme:function(){return this.shared.settings.domain_mapping_force_https?"https://":"http://"}}},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:[v["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:[v["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:[v["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:[v["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 ||
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-"+t.feature_source,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=[],mt={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"]},vt=mt,_t=Object(w["a"])(vt,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:[v["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:[v["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:[v["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:[v["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:[v["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,ms=Object(w["a"])(hs,as,ns,!1,null,null,null),vs=ms.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:[v["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:[v["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:[v["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:[v["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:[v["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=m()(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:[v["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:[v["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()])},me=[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"})])}],ve={name:"SocialProfilesOptions",mixins:[v["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=ve,be=Object(w["a"])(_e,he,me,!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:[v["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:[v["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:[v["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=m()(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:[v["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:[v["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:[v["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:[v["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:[v["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),mo=ho.exports,vo=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:[v["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,vo,_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:[v["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:[v["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:[v["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:[v["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:[v["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:[v["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:[v["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:[v["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),mi=hi.exports,vi=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:[v["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,vi,_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:[v["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:[v["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:[v["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:[v["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:"",feature_source:"",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:{slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},maybe_show_upsell:function(t){t.is_pro&&(console.log(t),this.feature=t.name+" Block",this.feature_source=this.slugify(t.name),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:vs,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:mo,GiveawayOptions:wo,IconOptions:jo,FeatureOptions:Lo,IconFeatureOptions:Fo,ProgressBarOptions:Ne,SectionOptions:oi,ColOptions:mi,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:[v["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()]),"lp"==t.shared.page_type&&t.shared.per.includes("dm")&&"seedprod_pro"==t.shared.page_path?e("router-link",{class:"list-group-item",attrs:{to:{name:"setup_settings_domain",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 0h24v24H0z",fill:"none"}}),e("path",{attrs:{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"}})]),t._v("\n "+t._s(t.txt_5)+"\n ")]),"setup_settings_domain"===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(),(t.shared.page_type,t._e())],1)])},oa=[],ia={name:"setupsettings",mixins:[v["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:[v["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()])])])])},ma=[],va={name:"settingsanalytics",mixins:[v["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=va,ba=Object(w["a"])(_a,ha,ma,!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:[v["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("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.scheme))]),e("input",{directives:[{name:"model",rawName:"v-model",value:t.shared.settings.domain_mapping,expression:"shared.settings.domain_mapping"},{name:"validate",rawName:"v-validate",value:"url",expression:"'url'"}],staticClass:"sp-form-input sp-border-l-0 sp-rounded-none focus:sp-border-neutral-20",staticStyle:{display:"inline-block",width:"300px"},attrs:{type:"text",id:"domain-mapping-url",name:"domain_mapping_url_input","data-vv-as":"Domain Name"},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("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.open_mapped_url}},[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",{staticClass:"sp-text-red"},[t._v(t._s(t.errors.first("domain_mapping_url_input")))])]),e("div",[t._v("\n "+t._s(t.txt_6)+"\n "),e("br"),t._v("\n "+t._s(t.txt_12)+"\n "),e("br"),t._v("\n "+t._s(t.txt_13)+"\n "),e("br"),e("a",{staticClass:"sp-text-primary hover:sp-text-primary-lighter sp-underline",attrs:{href:"https://www.seedprod.com/docs/domain-mapping-setup/",target:"_target"}},[t._v(t._s(t.txt_7))]),t._v(" "+t._s(t.txt_8)+"\n ")])])]),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_9))]),e("div",{staticClass:"sp-mt-2"},[e("toggle-button",{staticClass:"sp-mr-2",attrs:{width:36},model:{value:t.shared.settings.domain_mapping_force_https,callback:function(s){t.$set(t.shared.settings,"domain_mapping_force_https",s)},expression:"shared.settings.domain_mapping_force_https"}}),t._v(t._s(t.txt_10)+"\n ")],1)])])])},ja=[],Ma={name:"settingsdomain",mixins:[v["a"]],inject:{$validator:"$validator"},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"])("Please 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"),txt_9:Object(b["a"])("Force HTTPS","coming-soon"),txt_10:Object(b["a"])("Only enable this if you have an SSL certificate installed and you wish to redirect users to https://","coming-soon"),txt_11:Object(b["a"])("Please enter a valid URL that will be pointed to this landing page, such as","coming-soon"),txt_12:Object(b["a"])("It should look something like, 'mynewdomain.com' or 'mynewdomain.com/coming-soon'","coming-soon"),txt_13:Object(b["a"])("You can leave out the 'http://'. If you are using 'https://', turn on Force HTTPS below.","coming-soon"),shared:seedprod_store}},created:function(){var t=this,s=d.a.stringify({lpage_id:this.shared.lpage.id});this.axios.post("admin-ajax.php?action=seedprod_pro_get_domain_mapping_domain&_wpnonce="+seedprod_nonce,s,{"Content-Type":"application/x-www-form-urlencoded;charset=UTF-8"}).then(function(s){if(s&&null!==s.data){var e=s.data.domain+"/"+s.data.path;t.shared.settings.domain_mapping=e}})},methods:{open_mapped_url:function(){window.open(this.scheme+this.shared.settings.domain_mapping,"open_mapped_url")}},computed:{scheme:function(){return this.shared.settings.domain_mapping_force_https?"https://":"http://"}}},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:[v["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:[v["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:[v["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-